blob: 6f20eeef7548790e9f8cd5e0aea6e2c29725a7f0 [file] [log] [blame]
Jesse Barnes79e53942008-11-07 14:24:08 -08001/*
2 * Copyright © 2006-2007 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21 * DEALINGS IN THE SOFTWARE.
22 *
23 * Authors:
24 * Eric Anholt <eric@anholt.net>
25 */
26
Daniel Vetter618563e2012-04-01 13:38:50 +020027#include <linux/dmi.h>
Jesse Barnesc1c7af62009-09-10 15:28:03 -070028#include <linux/module.h>
29#include <linux/input.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080030#include <linux/i2c.h>
Shaohua Li7662c8b2009-06-26 11:23:55 +080031#include <linux/kernel.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090032#include <linux/slab.h>
Jesse Barnes9cce37f2010-08-13 15:11:26 -070033#include <linux/vgaarb.h>
Wu Fengguange0dac652011-09-05 14:25:34 +080034#include <drm/drm_edid.h>
David Howells760285e2012-10-02 18:01:07 +010035#include <drm/drmP.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080036#include "intel_drv.h"
David Howells760285e2012-10-02 18:01:07 +010037#include <drm/i915_drm.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080038#include "i915_drv.h"
Jesse Barnese5510fa2010-07-01 16:48:37 -070039#include "i915_trace.h"
David Howells760285e2012-10-02 18:01:07 +010040#include <drm/drm_dp_helper.h>
41#include <drm/drm_crtc_helper.h>
Keith Packardc0f372b32011-11-16 22:24:52 -080042#include <linux/dma_remapping.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080043
Chon Ming Leeef9348c2014-04-09 13:28:18 +030044#define DIV_ROUND_CLOSEST_ULL(ll, d) \
45 ({ unsigned long long _tmp = (ll)+(d)/2; do_div(_tmp, d); _tmp; })
46
Daniel Vetter3dec0092010-08-20 21:40:52 +020047static void intel_increase_pllclock(struct drm_crtc *crtc);
Chris Wilson6b383a72010-09-13 13:54:26 +010048static void intel_crtc_update_cursor(struct drm_crtc *crtc, bool on);
Jesse Barnes79e53942008-11-07 14:24:08 -080049
Jesse Barnesf1f644d2013-06-27 00:39:25 +030050static void i9xx_crtc_clock_get(struct intel_crtc *crtc,
51 struct intel_crtc_config *pipe_config);
Ville Syrjälä18442d02013-09-13 16:00:08 +030052static void ironlake_pch_clock_get(struct intel_crtc *crtc,
53 struct intel_crtc_config *pipe_config);
Jesse Barnesf1f644d2013-06-27 00:39:25 +030054
Damien Lespiaue7457a92013-08-08 22:28:59 +010055static int intel_set_mode(struct drm_crtc *crtc, struct drm_display_mode *mode,
56 int x, int y, struct drm_framebuffer *old_fb);
Jesse Barneseb1bfe82014-02-12 12:26:25 -080057static int intel_framebuffer_init(struct drm_device *dev,
58 struct intel_framebuffer *ifb,
59 struct drm_mode_fb_cmd2 *mode_cmd,
60 struct drm_i915_gem_object *obj);
Daniel Vetter5b18e572014-04-24 23:55:06 +020061static void intel_dp_set_m_n(struct intel_crtc *crtc);
62static void i9xx_set_pipeconf(struct intel_crtc *intel_crtc);
63static void intel_set_pipe_timings(struct intel_crtc *intel_crtc);
Daniel Vetter29407aa2014-04-24 23:55:08 +020064static void intel_cpu_transcoder_set_m_n(struct intel_crtc *crtc,
65 struct intel_link_m_n *m_n);
66static void ironlake_set_pipeconf(struct drm_crtc *crtc);
Daniel Vetter229fca92014-04-24 23:55:09 +020067static void haswell_set_pipeconf(struct drm_crtc *crtc);
68static void intel_set_pipe_csc(struct drm_crtc *crtc);
Damien Lespiaue7457a92013-08-08 22:28:59 +010069
Jesse Barnes79e53942008-11-07 14:24:08 -080070typedef struct {
Akshay Joshi0206e352011-08-16 15:34:10 -040071 int min, max;
Jesse Barnes79e53942008-11-07 14:24:08 -080072} intel_range_t;
73
74typedef struct {
Akshay Joshi0206e352011-08-16 15:34:10 -040075 int dot_limit;
76 int p2_slow, p2_fast;
Jesse Barnes79e53942008-11-07 14:24:08 -080077} intel_p2_t;
78
Ma Lingd4906092009-03-18 20:13:27 +080079typedef struct intel_limit intel_limit_t;
80struct intel_limit {
Akshay Joshi0206e352011-08-16 15:34:10 -040081 intel_range_t dot, vco, n, m, m1, m2, p, p1;
82 intel_p2_t p2;
Ma Lingd4906092009-03-18 20:13:27 +080083};
Jesse Barnes79e53942008-11-07 14:24:08 -080084
Daniel Vetterd2acd212012-10-20 20:57:43 +020085int
86intel_pch_rawclk(struct drm_device *dev)
87{
88 struct drm_i915_private *dev_priv = dev->dev_private;
89
90 WARN_ON(!HAS_PCH_SPLIT(dev));
91
92 return I915_READ(PCH_RAWCLK_FREQ) & RAWCLK_FREQ_MASK;
93}
94
Chris Wilson021357a2010-09-07 20:54:59 +010095static inline u32 /* units of 100MHz */
96intel_fdi_link_freq(struct drm_device *dev)
97{
Chris Wilson8b99e682010-10-13 09:59:17 +010098 if (IS_GEN5(dev)) {
99 struct drm_i915_private *dev_priv = dev->dev_private;
100 return (I915_READ(FDI_PLL_BIOS_0) & FDI_PLL_FB_CLOCK_MASK) + 2;
101 } else
102 return 27;
Chris Wilson021357a2010-09-07 20:54:59 +0100103}
104
Daniel Vetter5d536e22013-07-06 12:52:06 +0200105static const intel_limit_t intel_limits_i8xx_dac = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400106 .dot = { .min = 25000, .max = 350000 },
Ville Syrjälä9c333712013-12-09 18:54:17 +0200107 .vco = { .min = 908000, .max = 1512000 },
Ville Syrjälä91dbe5f2013-12-09 18:54:14 +0200108 .n = { .min = 2, .max = 16 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400109 .m = { .min = 96, .max = 140 },
110 .m1 = { .min = 18, .max = 26 },
111 .m2 = { .min = 6, .max = 16 },
112 .p = { .min = 4, .max = 128 },
113 .p1 = { .min = 2, .max = 33 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700114 .p2 = { .dot_limit = 165000,
115 .p2_slow = 4, .p2_fast = 2 },
Keith Packarde4b36692009-06-05 19:22:17 -0700116};
117
Daniel Vetter5d536e22013-07-06 12:52:06 +0200118static const intel_limit_t intel_limits_i8xx_dvo = {
119 .dot = { .min = 25000, .max = 350000 },
Ville Syrjälä9c333712013-12-09 18:54:17 +0200120 .vco = { .min = 908000, .max = 1512000 },
Ville Syrjälä91dbe5f2013-12-09 18:54:14 +0200121 .n = { .min = 2, .max = 16 },
Daniel Vetter5d536e22013-07-06 12:52:06 +0200122 .m = { .min = 96, .max = 140 },
123 .m1 = { .min = 18, .max = 26 },
124 .m2 = { .min = 6, .max = 16 },
125 .p = { .min = 4, .max = 128 },
126 .p1 = { .min = 2, .max = 33 },
127 .p2 = { .dot_limit = 165000,
128 .p2_slow = 4, .p2_fast = 4 },
129};
130
Keith Packarde4b36692009-06-05 19:22:17 -0700131static const intel_limit_t intel_limits_i8xx_lvds = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400132 .dot = { .min = 25000, .max = 350000 },
Ville Syrjälä9c333712013-12-09 18:54:17 +0200133 .vco = { .min = 908000, .max = 1512000 },
Ville Syrjälä91dbe5f2013-12-09 18:54:14 +0200134 .n = { .min = 2, .max = 16 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400135 .m = { .min = 96, .max = 140 },
136 .m1 = { .min = 18, .max = 26 },
137 .m2 = { .min = 6, .max = 16 },
138 .p = { .min = 4, .max = 128 },
139 .p1 = { .min = 1, .max = 6 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700140 .p2 = { .dot_limit = 165000,
141 .p2_slow = 14, .p2_fast = 7 },
Keith Packarde4b36692009-06-05 19:22:17 -0700142};
Eric Anholt273e27c2011-03-30 13:01:10 -0700143
Keith Packarde4b36692009-06-05 19:22:17 -0700144static const intel_limit_t intel_limits_i9xx_sdvo = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400145 .dot = { .min = 20000, .max = 400000 },
146 .vco = { .min = 1400000, .max = 2800000 },
147 .n = { .min = 1, .max = 6 },
148 .m = { .min = 70, .max = 120 },
Patrik Jakobsson4f7dfb62013-02-13 22:20:22 +0100149 .m1 = { .min = 8, .max = 18 },
150 .m2 = { .min = 3, .max = 7 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400151 .p = { .min = 5, .max = 80 },
152 .p1 = { .min = 1, .max = 8 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700153 .p2 = { .dot_limit = 200000,
154 .p2_slow = 10, .p2_fast = 5 },
Keith Packarde4b36692009-06-05 19:22:17 -0700155};
156
157static const intel_limit_t intel_limits_i9xx_lvds = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400158 .dot = { .min = 20000, .max = 400000 },
159 .vco = { .min = 1400000, .max = 2800000 },
160 .n = { .min = 1, .max = 6 },
161 .m = { .min = 70, .max = 120 },
Patrik Jakobsson53a7d2d2013-02-13 22:20:21 +0100162 .m1 = { .min = 8, .max = 18 },
163 .m2 = { .min = 3, .max = 7 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400164 .p = { .min = 7, .max = 98 },
165 .p1 = { .min = 1, .max = 8 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700166 .p2 = { .dot_limit = 112000,
167 .p2_slow = 14, .p2_fast = 7 },
Keith Packarde4b36692009-06-05 19:22:17 -0700168};
169
Eric Anholt273e27c2011-03-30 13:01:10 -0700170
Keith Packarde4b36692009-06-05 19:22:17 -0700171static const intel_limit_t intel_limits_g4x_sdvo = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700172 .dot = { .min = 25000, .max = 270000 },
173 .vco = { .min = 1750000, .max = 3500000},
174 .n = { .min = 1, .max = 4 },
175 .m = { .min = 104, .max = 138 },
176 .m1 = { .min = 17, .max = 23 },
177 .m2 = { .min = 5, .max = 11 },
178 .p = { .min = 10, .max = 30 },
179 .p1 = { .min = 1, .max = 3},
180 .p2 = { .dot_limit = 270000,
181 .p2_slow = 10,
182 .p2_fast = 10
Ma Ling044c7c42009-03-18 20:13:23 +0800183 },
Keith Packarde4b36692009-06-05 19:22:17 -0700184};
185
186static const intel_limit_t intel_limits_g4x_hdmi = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700187 .dot = { .min = 22000, .max = 400000 },
188 .vco = { .min = 1750000, .max = 3500000},
189 .n = { .min = 1, .max = 4 },
190 .m = { .min = 104, .max = 138 },
191 .m1 = { .min = 16, .max = 23 },
192 .m2 = { .min = 5, .max = 11 },
193 .p = { .min = 5, .max = 80 },
194 .p1 = { .min = 1, .max = 8},
195 .p2 = { .dot_limit = 165000,
196 .p2_slow = 10, .p2_fast = 5 },
Keith Packarde4b36692009-06-05 19:22:17 -0700197};
198
199static const intel_limit_t intel_limits_g4x_single_channel_lvds = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700200 .dot = { .min = 20000, .max = 115000 },
201 .vco = { .min = 1750000, .max = 3500000 },
202 .n = { .min = 1, .max = 3 },
203 .m = { .min = 104, .max = 138 },
204 .m1 = { .min = 17, .max = 23 },
205 .m2 = { .min = 5, .max = 11 },
206 .p = { .min = 28, .max = 112 },
207 .p1 = { .min = 2, .max = 8 },
208 .p2 = { .dot_limit = 0,
209 .p2_slow = 14, .p2_fast = 14
Ma Ling044c7c42009-03-18 20:13:23 +0800210 },
Keith Packarde4b36692009-06-05 19:22:17 -0700211};
212
213static const intel_limit_t intel_limits_g4x_dual_channel_lvds = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700214 .dot = { .min = 80000, .max = 224000 },
215 .vco = { .min = 1750000, .max = 3500000 },
216 .n = { .min = 1, .max = 3 },
217 .m = { .min = 104, .max = 138 },
218 .m1 = { .min = 17, .max = 23 },
219 .m2 = { .min = 5, .max = 11 },
220 .p = { .min = 14, .max = 42 },
221 .p1 = { .min = 2, .max = 6 },
222 .p2 = { .dot_limit = 0,
223 .p2_slow = 7, .p2_fast = 7
Ma Ling044c7c42009-03-18 20:13:23 +0800224 },
Keith Packarde4b36692009-06-05 19:22:17 -0700225};
226
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500227static const intel_limit_t intel_limits_pineview_sdvo = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400228 .dot = { .min = 20000, .max = 400000},
229 .vco = { .min = 1700000, .max = 3500000 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700230 /* Pineview's Ncounter is a ring counter */
Akshay Joshi0206e352011-08-16 15:34:10 -0400231 .n = { .min = 3, .max = 6 },
232 .m = { .min = 2, .max = 256 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700233 /* Pineview only has one combined m divider, which we treat as m2. */
Akshay Joshi0206e352011-08-16 15:34:10 -0400234 .m1 = { .min = 0, .max = 0 },
235 .m2 = { .min = 0, .max = 254 },
236 .p = { .min = 5, .max = 80 },
237 .p1 = { .min = 1, .max = 8 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700238 .p2 = { .dot_limit = 200000,
239 .p2_slow = 10, .p2_fast = 5 },
Keith Packarde4b36692009-06-05 19:22:17 -0700240};
241
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500242static const intel_limit_t intel_limits_pineview_lvds = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400243 .dot = { .min = 20000, .max = 400000 },
244 .vco = { .min = 1700000, .max = 3500000 },
245 .n = { .min = 3, .max = 6 },
246 .m = { .min = 2, .max = 256 },
247 .m1 = { .min = 0, .max = 0 },
248 .m2 = { .min = 0, .max = 254 },
249 .p = { .min = 7, .max = 112 },
250 .p1 = { .min = 1, .max = 8 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700251 .p2 = { .dot_limit = 112000,
252 .p2_slow = 14, .p2_fast = 14 },
Keith Packarde4b36692009-06-05 19:22:17 -0700253};
254
Eric Anholt273e27c2011-03-30 13:01:10 -0700255/* Ironlake / Sandybridge
256 *
257 * We calculate clock using (register_value + 2) for N/M1/M2, so here
258 * the range value for them is (actual_value - 2).
259 */
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800260static const intel_limit_t intel_limits_ironlake_dac = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700261 .dot = { .min = 25000, .max = 350000 },
262 .vco = { .min = 1760000, .max = 3510000 },
263 .n = { .min = 1, .max = 5 },
264 .m = { .min = 79, .max = 127 },
265 .m1 = { .min = 12, .max = 22 },
266 .m2 = { .min = 5, .max = 9 },
267 .p = { .min = 5, .max = 80 },
268 .p1 = { .min = 1, .max = 8 },
269 .p2 = { .dot_limit = 225000,
270 .p2_slow = 10, .p2_fast = 5 },
Keith Packarde4b36692009-06-05 19:22:17 -0700271};
272
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800273static const intel_limit_t intel_limits_ironlake_single_lvds = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700274 .dot = { .min = 25000, .max = 350000 },
275 .vco = { .min = 1760000, .max = 3510000 },
276 .n = { .min = 1, .max = 3 },
277 .m = { .min = 79, .max = 118 },
278 .m1 = { .min = 12, .max = 22 },
279 .m2 = { .min = 5, .max = 9 },
280 .p = { .min = 28, .max = 112 },
281 .p1 = { .min = 2, .max = 8 },
282 .p2 = { .dot_limit = 225000,
283 .p2_slow = 14, .p2_fast = 14 },
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800284};
285
286static const intel_limit_t intel_limits_ironlake_dual_lvds = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700287 .dot = { .min = 25000, .max = 350000 },
288 .vco = { .min = 1760000, .max = 3510000 },
289 .n = { .min = 1, .max = 3 },
290 .m = { .min = 79, .max = 127 },
291 .m1 = { .min = 12, .max = 22 },
292 .m2 = { .min = 5, .max = 9 },
293 .p = { .min = 14, .max = 56 },
294 .p1 = { .min = 2, .max = 8 },
295 .p2 = { .dot_limit = 225000,
296 .p2_slow = 7, .p2_fast = 7 },
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800297};
298
Eric Anholt273e27c2011-03-30 13:01:10 -0700299/* LVDS 100mhz refclk limits. */
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800300static const intel_limit_t intel_limits_ironlake_single_lvds_100m = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700301 .dot = { .min = 25000, .max = 350000 },
302 .vco = { .min = 1760000, .max = 3510000 },
303 .n = { .min = 1, .max = 2 },
304 .m = { .min = 79, .max = 126 },
305 .m1 = { .min = 12, .max = 22 },
306 .m2 = { .min = 5, .max = 9 },
307 .p = { .min = 28, .max = 112 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400308 .p1 = { .min = 2, .max = 8 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700309 .p2 = { .dot_limit = 225000,
310 .p2_slow = 14, .p2_fast = 14 },
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800311};
312
313static const intel_limit_t intel_limits_ironlake_dual_lvds_100m = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700314 .dot = { .min = 25000, .max = 350000 },
315 .vco = { .min = 1760000, .max = 3510000 },
316 .n = { .min = 1, .max = 3 },
317 .m = { .min = 79, .max = 126 },
318 .m1 = { .min = 12, .max = 22 },
319 .m2 = { .min = 5, .max = 9 },
320 .p = { .min = 14, .max = 42 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400321 .p1 = { .min = 2, .max = 6 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700322 .p2 = { .dot_limit = 225000,
323 .p2_slow = 7, .p2_fast = 7 },
Zhao Yakui45476682009-12-31 16:06:04 +0800324};
325
Ville Syrjälädc730512013-09-24 21:26:30 +0300326static const intel_limit_t intel_limits_vlv = {
Ville Syrjäläf01b7962013-09-27 16:55:49 +0300327 /*
328 * These are the data rate limits (measured in fast clocks)
329 * since those are the strictest limits we have. The fast
330 * clock and actual rate limits are more relaxed, so checking
331 * them would make no difference.
332 */
333 .dot = { .min = 25000 * 5, .max = 270000 * 5 },
Daniel Vetter75e53982013-04-18 21:10:43 +0200334 .vco = { .min = 4000000, .max = 6000000 },
Jesse Barnesa0c4da22012-06-15 11:55:13 -0700335 .n = { .min = 1, .max = 7 },
Jesse Barnesa0c4da22012-06-15 11:55:13 -0700336 .m1 = { .min = 2, .max = 3 },
337 .m2 = { .min = 11, .max = 156 },
Ville Syrjäläb99ab662013-09-24 21:26:26 +0300338 .p1 = { .min = 2, .max = 3 },
Ville Syrjälä5fdc9c492013-09-24 21:26:29 +0300339 .p2 = { .p2_slow = 2, .p2_fast = 20 }, /* slow=min, fast=max */
Jesse Barnesa0c4da22012-06-15 11:55:13 -0700340};
341
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300342static const intel_limit_t intel_limits_chv = {
343 /*
344 * These are the data rate limits (measured in fast clocks)
345 * since those are the strictest limits we have. The fast
346 * clock and actual rate limits are more relaxed, so checking
347 * them would make no difference.
348 */
349 .dot = { .min = 25000 * 5, .max = 540000 * 5},
350 .vco = { .min = 4860000, .max = 6700000 },
351 .n = { .min = 1, .max = 1 },
352 .m1 = { .min = 2, .max = 2 },
353 .m2 = { .min = 24 << 22, .max = 175 << 22 },
354 .p1 = { .min = 2, .max = 4 },
355 .p2 = { .p2_slow = 1, .p2_fast = 14 },
356};
357
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300358static void vlv_clock(int refclk, intel_clock_t *clock)
359{
360 clock->m = clock->m1 * clock->m2;
361 clock->p = clock->p1 * clock->p2;
Ville Syrjäläed5ca772013-12-02 19:00:45 +0200362 if (WARN_ON(clock->n == 0 || clock->p == 0))
363 return;
Ville Syrjäläfb03ac02013-10-14 14:50:30 +0300364 clock->vco = DIV_ROUND_CLOSEST(refclk * clock->m, clock->n);
365 clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p);
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300366}
367
Paulo Zanonie0638cd2013-09-24 13:52:54 -0300368/**
369 * Returns whether any output on the specified pipe is of the specified type
370 */
371static bool intel_pipe_has_type(struct drm_crtc *crtc, int type)
372{
373 struct drm_device *dev = crtc->dev;
374 struct intel_encoder *encoder;
375
376 for_each_encoder_on_crtc(dev, crtc, encoder)
377 if (encoder->type == type)
378 return true;
379
380 return false;
381}
382
Chris Wilson1b894b52010-12-14 20:04:54 +0000383static const intel_limit_t *intel_ironlake_limit(struct drm_crtc *crtc,
384 int refclk)
Zhenyu Wang2c072452009-06-05 15:38:42 +0800385{
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800386 struct drm_device *dev = crtc->dev;
Zhenyu Wang2c072452009-06-05 15:38:42 +0800387 const intel_limit_t *limit;
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800388
389 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
Daniel Vetter1974cad2012-11-26 17:22:09 +0100390 if (intel_is_dual_link_lvds(dev)) {
Chris Wilson1b894b52010-12-14 20:04:54 +0000391 if (refclk == 100000)
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800392 limit = &intel_limits_ironlake_dual_lvds_100m;
393 else
394 limit = &intel_limits_ironlake_dual_lvds;
395 } else {
Chris Wilson1b894b52010-12-14 20:04:54 +0000396 if (refclk == 100000)
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800397 limit = &intel_limits_ironlake_single_lvds_100m;
398 else
399 limit = &intel_limits_ironlake_single_lvds;
400 }
Daniel Vetterc6bb3532013-04-19 11:14:33 +0200401 } else
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800402 limit = &intel_limits_ironlake_dac;
Zhenyu Wang2c072452009-06-05 15:38:42 +0800403
404 return limit;
405}
406
Ma Ling044c7c42009-03-18 20:13:23 +0800407static const intel_limit_t *intel_g4x_limit(struct drm_crtc *crtc)
408{
409 struct drm_device *dev = crtc->dev;
Ma Ling044c7c42009-03-18 20:13:23 +0800410 const intel_limit_t *limit;
411
412 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
Daniel Vetter1974cad2012-11-26 17:22:09 +0100413 if (intel_is_dual_link_lvds(dev))
Keith Packarde4b36692009-06-05 19:22:17 -0700414 limit = &intel_limits_g4x_dual_channel_lvds;
Ma Ling044c7c42009-03-18 20:13:23 +0800415 else
Keith Packarde4b36692009-06-05 19:22:17 -0700416 limit = &intel_limits_g4x_single_channel_lvds;
Ma Ling044c7c42009-03-18 20:13:23 +0800417 } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI) ||
418 intel_pipe_has_type(crtc, INTEL_OUTPUT_ANALOG)) {
Keith Packarde4b36692009-06-05 19:22:17 -0700419 limit = &intel_limits_g4x_hdmi;
Ma Ling044c7c42009-03-18 20:13:23 +0800420 } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_SDVO)) {
Keith Packarde4b36692009-06-05 19:22:17 -0700421 limit = &intel_limits_g4x_sdvo;
Ma Ling044c7c42009-03-18 20:13:23 +0800422 } else /* The option is for other outputs */
Keith Packarde4b36692009-06-05 19:22:17 -0700423 limit = &intel_limits_i9xx_sdvo;
Ma Ling044c7c42009-03-18 20:13:23 +0800424
425 return limit;
426}
427
Chris Wilson1b894b52010-12-14 20:04:54 +0000428static const intel_limit_t *intel_limit(struct drm_crtc *crtc, int refclk)
Jesse Barnes79e53942008-11-07 14:24:08 -0800429{
430 struct drm_device *dev = crtc->dev;
431 const intel_limit_t *limit;
432
Eric Anholtbad720f2009-10-22 16:11:14 -0700433 if (HAS_PCH_SPLIT(dev))
Chris Wilson1b894b52010-12-14 20:04:54 +0000434 limit = intel_ironlake_limit(crtc, refclk);
Zhenyu Wang2c072452009-06-05 15:38:42 +0800435 else if (IS_G4X(dev)) {
Ma Ling044c7c42009-03-18 20:13:23 +0800436 limit = intel_g4x_limit(crtc);
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500437 } else if (IS_PINEVIEW(dev)) {
Shaohua Li21778322009-02-23 15:19:16 +0800438 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS))
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500439 limit = &intel_limits_pineview_lvds;
Shaohua Li21778322009-02-23 15:19:16 +0800440 else
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500441 limit = &intel_limits_pineview_sdvo;
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300442 } else if (IS_CHERRYVIEW(dev)) {
443 limit = &intel_limits_chv;
Jesse Barnesa0c4da22012-06-15 11:55:13 -0700444 } else if (IS_VALLEYVIEW(dev)) {
Ville Syrjälädc730512013-09-24 21:26:30 +0300445 limit = &intel_limits_vlv;
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100446 } else if (!IS_GEN2(dev)) {
447 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS))
448 limit = &intel_limits_i9xx_lvds;
449 else
450 limit = &intel_limits_i9xx_sdvo;
Jesse Barnes79e53942008-11-07 14:24:08 -0800451 } else {
452 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS))
Keith Packarde4b36692009-06-05 19:22:17 -0700453 limit = &intel_limits_i8xx_lvds;
Daniel Vetter5d536e22013-07-06 12:52:06 +0200454 else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DVO))
Keith Packarde4b36692009-06-05 19:22:17 -0700455 limit = &intel_limits_i8xx_dvo;
Daniel Vetter5d536e22013-07-06 12:52:06 +0200456 else
457 limit = &intel_limits_i8xx_dac;
Jesse Barnes79e53942008-11-07 14:24:08 -0800458 }
459 return limit;
460}
461
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500462/* m1 is reserved as 0 in Pineview, n is a ring counter */
463static void pineview_clock(int refclk, intel_clock_t *clock)
Jesse Barnes79e53942008-11-07 14:24:08 -0800464{
Shaohua Li21778322009-02-23 15:19:16 +0800465 clock->m = clock->m2 + 2;
466 clock->p = clock->p1 * clock->p2;
Ville Syrjäläed5ca772013-12-02 19:00:45 +0200467 if (WARN_ON(clock->n == 0 || clock->p == 0))
468 return;
Ville Syrjäläfb03ac02013-10-14 14:50:30 +0300469 clock->vco = DIV_ROUND_CLOSEST(refclk * clock->m, clock->n);
470 clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p);
Shaohua Li21778322009-02-23 15:19:16 +0800471}
472
Daniel Vetter7429e9d2013-04-20 17:19:46 +0200473static uint32_t i9xx_dpll_compute_m(struct dpll *dpll)
474{
475 return 5 * (dpll->m1 + 2) + (dpll->m2 + 2);
476}
477
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200478static void i9xx_clock(int refclk, intel_clock_t *clock)
Shaohua Li21778322009-02-23 15:19:16 +0800479{
Daniel Vetter7429e9d2013-04-20 17:19:46 +0200480 clock->m = i9xx_dpll_compute_m(clock);
Jesse Barnes79e53942008-11-07 14:24:08 -0800481 clock->p = clock->p1 * clock->p2;
Ville Syrjäläed5ca772013-12-02 19:00:45 +0200482 if (WARN_ON(clock->n + 2 == 0 || clock->p == 0))
483 return;
Ville Syrjäläfb03ac02013-10-14 14:50:30 +0300484 clock->vco = DIV_ROUND_CLOSEST(refclk * clock->m, clock->n + 2);
485 clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p);
Jesse Barnes79e53942008-11-07 14:24:08 -0800486}
487
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300488static void chv_clock(int refclk, intel_clock_t *clock)
489{
490 clock->m = clock->m1 * clock->m2;
491 clock->p = clock->p1 * clock->p2;
492 if (WARN_ON(clock->n == 0 || clock->p == 0))
493 return;
494 clock->vco = DIV_ROUND_CLOSEST_ULL((uint64_t)refclk * clock->m,
495 clock->n << 22);
496 clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p);
497}
498
Jesse Barnes7c04d1d2009-02-23 15:36:40 -0800499#define INTELPllInvalid(s) do { /* DRM_DEBUG(s); */ return false; } while (0)
Jesse Barnes79e53942008-11-07 14:24:08 -0800500/**
501 * Returns whether the given set of divisors are valid for a given refclk with
502 * the given connectors.
503 */
504
Chris Wilson1b894b52010-12-14 20:04:54 +0000505static bool intel_PLL_is_valid(struct drm_device *dev,
506 const intel_limit_t *limit,
507 const intel_clock_t *clock)
Jesse Barnes79e53942008-11-07 14:24:08 -0800508{
Ville Syrjäläf01b7962013-09-27 16:55:49 +0300509 if (clock->n < limit->n.min || limit->n.max < clock->n)
510 INTELPllInvalid("n out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800511 if (clock->p1 < limit->p1.min || limit->p1.max < clock->p1)
Akshay Joshi0206e352011-08-16 15:34:10 -0400512 INTELPllInvalid("p1 out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800513 if (clock->m2 < limit->m2.min || limit->m2.max < clock->m2)
Akshay Joshi0206e352011-08-16 15:34:10 -0400514 INTELPllInvalid("m2 out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800515 if (clock->m1 < limit->m1.min || limit->m1.max < clock->m1)
Akshay Joshi0206e352011-08-16 15:34:10 -0400516 INTELPllInvalid("m1 out of range\n");
Ville Syrjäläf01b7962013-09-27 16:55:49 +0300517
518 if (!IS_PINEVIEW(dev) && !IS_VALLEYVIEW(dev))
519 if (clock->m1 <= clock->m2)
520 INTELPllInvalid("m1 <= m2\n");
521
522 if (!IS_VALLEYVIEW(dev)) {
523 if (clock->p < limit->p.min || limit->p.max < clock->p)
524 INTELPllInvalid("p out of range\n");
525 if (clock->m < limit->m.min || limit->m.max < clock->m)
526 INTELPllInvalid("m out of range\n");
527 }
528
Jesse Barnes79e53942008-11-07 14:24:08 -0800529 if (clock->vco < limit->vco.min || limit->vco.max < clock->vco)
Akshay Joshi0206e352011-08-16 15:34:10 -0400530 INTELPllInvalid("vco out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800531 /* XXX: We may need to be checking "Dot clock" depending on the multiplier,
532 * connector, etc., rather than just a single range.
533 */
534 if (clock->dot < limit->dot.min || limit->dot.max < clock->dot)
Akshay Joshi0206e352011-08-16 15:34:10 -0400535 INTELPllInvalid("dot out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800536
537 return true;
538}
539
Ma Lingd4906092009-03-18 20:13:27 +0800540static bool
Daniel Vetteree9300b2013-06-03 22:40:22 +0200541i9xx_find_best_dpll(const intel_limit_t *limit, struct drm_crtc *crtc,
Sean Paulcec2f352012-01-10 15:09:36 -0800542 int target, int refclk, intel_clock_t *match_clock,
543 intel_clock_t *best_clock)
Jesse Barnes79e53942008-11-07 14:24:08 -0800544{
545 struct drm_device *dev = crtc->dev;
Jesse Barnes79e53942008-11-07 14:24:08 -0800546 intel_clock_t clock;
Jesse Barnes79e53942008-11-07 14:24:08 -0800547 int err = target;
548
Daniel Vettera210b022012-11-26 17:22:08 +0100549 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
Jesse Barnes79e53942008-11-07 14:24:08 -0800550 /*
Daniel Vettera210b022012-11-26 17:22:08 +0100551 * For LVDS just rely on its current settings for dual-channel.
552 * We haven't figured out how to reliably set up different
553 * single/dual channel state, if we even can.
Jesse Barnes79e53942008-11-07 14:24:08 -0800554 */
Daniel Vetter1974cad2012-11-26 17:22:09 +0100555 if (intel_is_dual_link_lvds(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -0800556 clock.p2 = limit->p2.p2_fast;
557 else
558 clock.p2 = limit->p2.p2_slow;
559 } else {
560 if (target < limit->p2.dot_limit)
561 clock.p2 = limit->p2.p2_slow;
562 else
563 clock.p2 = limit->p2.p2_fast;
564 }
565
Akshay Joshi0206e352011-08-16 15:34:10 -0400566 memset(best_clock, 0, sizeof(*best_clock));
Jesse Barnes79e53942008-11-07 14:24:08 -0800567
Zhao Yakui42158662009-11-20 11:24:18 +0800568 for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max;
569 clock.m1++) {
570 for (clock.m2 = limit->m2.min;
571 clock.m2 <= limit->m2.max; clock.m2++) {
Daniel Vetterc0efc382013-06-03 20:56:24 +0200572 if (clock.m2 >= clock.m1)
Zhao Yakui42158662009-11-20 11:24:18 +0800573 break;
574 for (clock.n = limit->n.min;
575 clock.n <= limit->n.max; clock.n++) {
576 for (clock.p1 = limit->p1.min;
577 clock.p1 <= limit->p1.max; clock.p1++) {
Jesse Barnes79e53942008-11-07 14:24:08 -0800578 int this_err;
579
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200580 i9xx_clock(refclk, &clock);
Chris Wilson1b894b52010-12-14 20:04:54 +0000581 if (!intel_PLL_is_valid(dev, limit,
582 &clock))
Jesse Barnes79e53942008-11-07 14:24:08 -0800583 continue;
Sean Paulcec2f352012-01-10 15:09:36 -0800584 if (match_clock &&
585 clock.p != match_clock->p)
586 continue;
Jesse Barnes79e53942008-11-07 14:24:08 -0800587
588 this_err = abs(clock.dot - target);
589 if (this_err < err) {
590 *best_clock = clock;
591 err = this_err;
592 }
593 }
594 }
595 }
596 }
597
598 return (err != target);
599}
600
Ma Lingd4906092009-03-18 20:13:27 +0800601static bool
Daniel Vetteree9300b2013-06-03 22:40:22 +0200602pnv_find_best_dpll(const intel_limit_t *limit, struct drm_crtc *crtc,
603 int target, int refclk, intel_clock_t *match_clock,
604 intel_clock_t *best_clock)
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200605{
606 struct drm_device *dev = crtc->dev;
607 intel_clock_t clock;
608 int err = target;
609
610 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
611 /*
612 * For LVDS just rely on its current settings for dual-channel.
613 * We haven't figured out how to reliably set up different
614 * single/dual channel state, if we even can.
615 */
616 if (intel_is_dual_link_lvds(dev))
617 clock.p2 = limit->p2.p2_fast;
618 else
619 clock.p2 = limit->p2.p2_slow;
620 } else {
621 if (target < limit->p2.dot_limit)
622 clock.p2 = limit->p2.p2_slow;
623 else
624 clock.p2 = limit->p2.p2_fast;
625 }
626
627 memset(best_clock, 0, sizeof(*best_clock));
628
629 for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max;
630 clock.m1++) {
631 for (clock.m2 = limit->m2.min;
632 clock.m2 <= limit->m2.max; clock.m2++) {
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200633 for (clock.n = limit->n.min;
634 clock.n <= limit->n.max; clock.n++) {
635 for (clock.p1 = limit->p1.min;
636 clock.p1 <= limit->p1.max; clock.p1++) {
637 int this_err;
638
639 pineview_clock(refclk, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -0800640 if (!intel_PLL_is_valid(dev, limit,
641 &clock))
642 continue;
643 if (match_clock &&
644 clock.p != match_clock->p)
645 continue;
646
647 this_err = abs(clock.dot - target);
648 if (this_err < err) {
649 *best_clock = clock;
650 err = this_err;
651 }
652 }
653 }
654 }
655 }
656
657 return (err != target);
658}
659
Ma Lingd4906092009-03-18 20:13:27 +0800660static bool
Daniel Vetteree9300b2013-06-03 22:40:22 +0200661g4x_find_best_dpll(const intel_limit_t *limit, struct drm_crtc *crtc,
662 int target, int refclk, intel_clock_t *match_clock,
663 intel_clock_t *best_clock)
Ma Lingd4906092009-03-18 20:13:27 +0800664{
665 struct drm_device *dev = crtc->dev;
Ma Lingd4906092009-03-18 20:13:27 +0800666 intel_clock_t clock;
667 int max_n;
668 bool found;
Adam Jackson6ba770d2010-07-02 16:43:30 -0400669 /* approximately equals target * 0.00585 */
670 int err_most = (target >> 8) + (target >> 9);
Ma Lingd4906092009-03-18 20:13:27 +0800671 found = false;
672
673 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
Daniel Vetter1974cad2012-11-26 17:22:09 +0100674 if (intel_is_dual_link_lvds(dev))
Ma Lingd4906092009-03-18 20:13:27 +0800675 clock.p2 = limit->p2.p2_fast;
676 else
677 clock.p2 = limit->p2.p2_slow;
678 } else {
679 if (target < limit->p2.dot_limit)
680 clock.p2 = limit->p2.p2_slow;
681 else
682 clock.p2 = limit->p2.p2_fast;
683 }
684
685 memset(best_clock, 0, sizeof(*best_clock));
686 max_n = limit->n.max;
Gilles Espinassef77f13e2010-03-29 15:41:47 +0200687 /* based on hardware requirement, prefer smaller n to precision */
Ma Lingd4906092009-03-18 20:13:27 +0800688 for (clock.n = limit->n.min; clock.n <= max_n; clock.n++) {
Gilles Espinassef77f13e2010-03-29 15:41:47 +0200689 /* based on hardware requirement, prefere larger m1,m2 */
Ma Lingd4906092009-03-18 20:13:27 +0800690 for (clock.m1 = limit->m1.max;
691 clock.m1 >= limit->m1.min; clock.m1--) {
692 for (clock.m2 = limit->m2.max;
693 clock.m2 >= limit->m2.min; clock.m2--) {
694 for (clock.p1 = limit->p1.max;
695 clock.p1 >= limit->p1.min; clock.p1--) {
696 int this_err;
697
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200698 i9xx_clock(refclk, &clock);
Chris Wilson1b894b52010-12-14 20:04:54 +0000699 if (!intel_PLL_is_valid(dev, limit,
700 &clock))
Ma Lingd4906092009-03-18 20:13:27 +0800701 continue;
Chris Wilson1b894b52010-12-14 20:04:54 +0000702
703 this_err = abs(clock.dot - target);
Ma Lingd4906092009-03-18 20:13:27 +0800704 if (this_err < err_most) {
705 *best_clock = clock;
706 err_most = this_err;
707 max_n = clock.n;
708 found = true;
709 }
710 }
711 }
712 }
713 }
Zhenyu Wang2c072452009-06-05 15:38:42 +0800714 return found;
715}
Ma Lingd4906092009-03-18 20:13:27 +0800716
Zhenyu Wang2c072452009-06-05 15:38:42 +0800717static bool
Daniel Vetteree9300b2013-06-03 22:40:22 +0200718vlv_find_best_dpll(const intel_limit_t *limit, struct drm_crtc *crtc,
719 int target, int refclk, intel_clock_t *match_clock,
720 intel_clock_t *best_clock)
Jesse Barnesa0c4da22012-06-15 11:55:13 -0700721{
Ville Syrjäläf01b7962013-09-27 16:55:49 +0300722 struct drm_device *dev = crtc->dev;
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300723 intel_clock_t clock;
Ville Syrjälä69e4f9002013-09-24 21:26:20 +0300724 unsigned int bestppm = 1000000;
Ville Syrjälä27e639b2013-09-24 21:26:24 +0300725 /* min update 19.2 MHz */
726 int max_n = min(limit->n.max, refclk / 19200);
Ville Syrjälä49e497e2013-09-24 21:26:31 +0300727 bool found = false;
Jesse Barnesa0c4da22012-06-15 11:55:13 -0700728
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300729 target *= 5; /* fast clock */
730
731 memset(best_clock, 0, sizeof(*best_clock));
Jesse Barnesa0c4da22012-06-15 11:55:13 -0700732
733 /* based on hardware requirement, prefer smaller n to precision */
Ville Syrjälä27e639b2013-09-24 21:26:24 +0300734 for (clock.n = limit->n.min; clock.n <= max_n; clock.n++) {
Ville Syrjälä811bbf02013-09-24 21:26:25 +0300735 for (clock.p1 = limit->p1.max; clock.p1 >= limit->p1.min; clock.p1--) {
Ville Syrjälä889059d2013-09-24 21:26:27 +0300736 for (clock.p2 = limit->p2.p2_fast; clock.p2 >= limit->p2.p2_slow;
Ville Syrjäläc1a9ae42013-09-24 21:26:23 +0300737 clock.p2 -= clock.p2 > 10 ? 2 : 1) {
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300738 clock.p = clock.p1 * clock.p2;
Jesse Barnesa0c4da22012-06-15 11:55:13 -0700739 /* based on hardware requirement, prefer bigger m1,m2 values */
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300740 for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max; clock.m1++) {
Ville Syrjälä69e4f9002013-09-24 21:26:20 +0300741 unsigned int ppm, diff;
742
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300743 clock.m2 = DIV_ROUND_CLOSEST(target * clock.p * clock.n,
744 refclk * clock.m1);
Ville Syrjälä43b0ac52013-09-24 21:26:18 +0300745
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300746 vlv_clock(refclk, &clock);
747
Ville Syrjäläf01b7962013-09-27 16:55:49 +0300748 if (!intel_PLL_is_valid(dev, limit,
749 &clock))
Ville Syrjälä43b0ac52013-09-24 21:26:18 +0300750 continue;
751
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300752 diff = abs(clock.dot - target);
753 ppm = div_u64(1000000ULL * diff, target);
754
755 if (ppm < 100 && clock.p > best_clock->p) {
Ville Syrjälä43b0ac52013-09-24 21:26:18 +0300756 bestppm = 0;
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300757 *best_clock = clock;
Ville Syrjälä49e497e2013-09-24 21:26:31 +0300758 found = true;
Ville Syrjälä43b0ac52013-09-24 21:26:18 +0300759 }
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300760
Ville Syrjäläc6861222013-09-24 21:26:21 +0300761 if (bestppm >= 10 && ppm < bestppm - 10) {
Ville Syrjälä69e4f9002013-09-24 21:26:20 +0300762 bestppm = ppm;
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300763 *best_clock = clock;
Ville Syrjälä49e497e2013-09-24 21:26:31 +0300764 found = true;
Jesse Barnesa0c4da22012-06-15 11:55:13 -0700765 }
766 }
767 }
768 }
769 }
Jesse Barnesa0c4da22012-06-15 11:55:13 -0700770
Ville Syrjälä49e497e2013-09-24 21:26:31 +0300771 return found;
Jesse Barnesa0c4da22012-06-15 11:55:13 -0700772}
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700773
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300774static bool
775chv_find_best_dpll(const intel_limit_t *limit, struct drm_crtc *crtc,
776 int target, int refclk, intel_clock_t *match_clock,
777 intel_clock_t *best_clock)
778{
779 struct drm_device *dev = crtc->dev;
780 intel_clock_t clock;
781 uint64_t m2;
782 int found = false;
783
784 memset(best_clock, 0, sizeof(*best_clock));
785
786 /*
787 * Based on hardware doc, the n always set to 1, and m1 always
788 * set to 2. If requires to support 200Mhz refclk, we need to
789 * revisit this because n may not 1 anymore.
790 */
791 clock.n = 1, clock.m1 = 2;
792 target *= 5; /* fast clock */
793
794 for (clock.p1 = limit->p1.max; clock.p1 >= limit->p1.min; clock.p1--) {
795 for (clock.p2 = limit->p2.p2_fast;
796 clock.p2 >= limit->p2.p2_slow;
797 clock.p2 -= clock.p2 > 10 ? 2 : 1) {
798
799 clock.p = clock.p1 * clock.p2;
800
801 m2 = DIV_ROUND_CLOSEST_ULL(((uint64_t)target * clock.p *
802 clock.n) << 22, refclk * clock.m1);
803
804 if (m2 > INT_MAX/clock.m1)
805 continue;
806
807 clock.m2 = m2;
808
809 chv_clock(refclk, &clock);
810
811 if (!intel_PLL_is_valid(dev, limit, &clock))
812 continue;
813
814 /* based on hardware requirement, prefer bigger p
815 */
816 if (clock.p > best_clock->p) {
817 *best_clock = clock;
818 found = true;
819 }
820 }
821 }
822
823 return found;
824}
825
Ville Syrjälä20ddf662013-09-04 18:25:25 +0300826bool intel_crtc_active(struct drm_crtc *crtc)
827{
828 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
829
830 /* Be paranoid as we can arrive here with only partial
831 * state retrieved from the hardware during setup.
832 *
Damien Lespiau241bfc32013-09-25 16:45:37 +0100833 * We can ditch the adjusted_mode.crtc_clock check as soon
Ville Syrjälä20ddf662013-09-04 18:25:25 +0300834 * as Haswell has gained clock readout/fastboot support.
835 *
Dave Airlie66e514c2014-04-03 07:51:54 +1000836 * We can ditch the crtc->primary->fb check as soon as we can
Ville Syrjälä20ddf662013-09-04 18:25:25 +0300837 * properly reconstruct framebuffers.
838 */
Matt Roperf4510a22014-04-01 15:22:40 -0700839 return intel_crtc->active && crtc->primary->fb &&
Damien Lespiau241bfc32013-09-25 16:45:37 +0100840 intel_crtc->config.adjusted_mode.crtc_clock;
Ville Syrjälä20ddf662013-09-04 18:25:25 +0300841}
842
Paulo Zanonia5c961d2012-10-24 15:59:34 -0200843enum transcoder intel_pipe_to_cpu_transcoder(struct drm_i915_private *dev_priv,
844 enum pipe pipe)
845{
846 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
847 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
848
Daniel Vetter3b117c82013-04-17 20:15:07 +0200849 return intel_crtc->config.cpu_transcoder;
Paulo Zanonia5c961d2012-10-24 15:59:34 -0200850}
851
Ville Syrjälä57e22f42013-11-06 13:56:28 -0200852static void g4x_wait_for_vblank(struct drm_device *dev, int pipe)
Paulo Zanonia928d532012-05-04 17:18:15 -0300853{
854 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä57e22f42013-11-06 13:56:28 -0200855 u32 frame, frame_reg = PIPE_FRMCOUNT_GM45(pipe);
Paulo Zanonia928d532012-05-04 17:18:15 -0300856
857 frame = I915_READ(frame_reg);
858
859 if (wait_for(I915_READ_NOTRACE(frame_reg) != frame, 50))
Jesse Barnes93937072014-04-04 16:12:09 -0700860 WARN(1, "vblank wait timed out\n");
Paulo Zanonia928d532012-05-04 17:18:15 -0300861}
862
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700863/**
864 * intel_wait_for_vblank - wait for vblank on a given pipe
865 * @dev: drm device
866 * @pipe: pipe to wait for
867 *
868 * Wait for vblank to occur on a given pipe. Needed for various bits of
869 * mode setting code.
870 */
871void intel_wait_for_vblank(struct drm_device *dev, int pipe)
Jesse Barnes79e53942008-11-07 14:24:08 -0800872{
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700873 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800874 int pipestat_reg = PIPESTAT(pipe);
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700875
Ville Syrjälä57e22f42013-11-06 13:56:28 -0200876 if (IS_G4X(dev) || INTEL_INFO(dev)->gen >= 5) {
877 g4x_wait_for_vblank(dev, pipe);
Paulo Zanonia928d532012-05-04 17:18:15 -0300878 return;
879 }
880
Chris Wilson300387c2010-09-05 20:25:43 +0100881 /* Clear existing vblank status. Note this will clear any other
882 * sticky status fields as well.
883 *
884 * This races with i915_driver_irq_handler() with the result
885 * that either function could miss a vblank event. Here it is not
886 * fatal, as we will either wait upon the next vblank interrupt or
887 * timeout. Generally speaking intel_wait_for_vblank() is only
888 * called during modeset at which time the GPU should be idle and
889 * should *not* be performing page flips and thus not waiting on
890 * vblanks...
891 * Currently, the result of us stealing a vblank from the irq
892 * handler is that a single frame will be skipped during swapbuffers.
893 */
894 I915_WRITE(pipestat_reg,
895 I915_READ(pipestat_reg) | PIPE_VBLANK_INTERRUPT_STATUS);
896
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700897 /* Wait for vblank interrupt bit to set */
Chris Wilson481b6af2010-08-23 17:43:35 +0100898 if (wait_for(I915_READ(pipestat_reg) &
899 PIPE_VBLANK_INTERRUPT_STATUS,
900 50))
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700901 DRM_DEBUG_KMS("vblank wait timed out\n");
902}
903
Ville Syrjäläfbf49ea2013-10-11 14:21:31 +0300904static bool pipe_dsl_stopped(struct drm_device *dev, enum pipe pipe)
905{
906 struct drm_i915_private *dev_priv = dev->dev_private;
907 u32 reg = PIPEDSL(pipe);
908 u32 line1, line2;
909 u32 line_mask;
910
911 if (IS_GEN2(dev))
912 line_mask = DSL_LINEMASK_GEN2;
913 else
914 line_mask = DSL_LINEMASK_GEN3;
915
916 line1 = I915_READ(reg) & line_mask;
917 mdelay(5);
918 line2 = I915_READ(reg) & line_mask;
919
920 return line1 == line2;
921}
922
Keith Packardab7ad7f2010-10-03 00:33:06 -0700923/*
924 * intel_wait_for_pipe_off - wait for pipe to turn off
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700925 * @dev: drm device
926 * @pipe: pipe to wait for
927 *
928 * After disabling a pipe, we can't wait for vblank in the usual way,
929 * spinning on the vblank interrupt status bit, since we won't actually
930 * see an interrupt when the pipe is disabled.
931 *
Keith Packardab7ad7f2010-10-03 00:33:06 -0700932 * On Gen4 and above:
933 * wait for the pipe register state bit to turn off
934 *
935 * Otherwise:
936 * wait for the display line value to settle (it usually
937 * ends up stopping at the start of the next frame).
Chris Wilson58e10eb2010-10-03 10:56:11 +0100938 *
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700939 */
Chris Wilson58e10eb2010-10-03 10:56:11 +0100940void intel_wait_for_pipe_off(struct drm_device *dev, int pipe)
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700941{
942 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni702e7a52012-10-23 18:29:59 -0200943 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
944 pipe);
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700945
Keith Packardab7ad7f2010-10-03 00:33:06 -0700946 if (INTEL_INFO(dev)->gen >= 4) {
Paulo Zanoni702e7a52012-10-23 18:29:59 -0200947 int reg = PIPECONF(cpu_transcoder);
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700948
Keith Packardab7ad7f2010-10-03 00:33:06 -0700949 /* Wait for the Pipe State to go off */
Chris Wilson58e10eb2010-10-03 10:56:11 +0100950 if (wait_for((I915_READ(reg) & I965_PIPECONF_ACTIVE) == 0,
951 100))
Daniel Vetter284637d2012-07-09 09:51:57 +0200952 WARN(1, "pipe_off wait timed out\n");
Keith Packardab7ad7f2010-10-03 00:33:06 -0700953 } else {
Keith Packardab7ad7f2010-10-03 00:33:06 -0700954 /* Wait for the display line to settle */
Ville Syrjäläfbf49ea2013-10-11 14:21:31 +0300955 if (wait_for(pipe_dsl_stopped(dev, pipe), 100))
Daniel Vetter284637d2012-07-09 09:51:57 +0200956 WARN(1, "pipe_off wait timed out\n");
Keith Packardab7ad7f2010-10-03 00:33:06 -0700957 }
Jesse Barnes79e53942008-11-07 14:24:08 -0800958}
959
Damien Lespiaub0ea7d32012-12-13 16:09:00 +0000960/*
961 * ibx_digital_port_connected - is the specified port connected?
962 * @dev_priv: i915 private structure
963 * @port: the port to test
964 *
965 * Returns true if @port is connected, false otherwise.
966 */
967bool ibx_digital_port_connected(struct drm_i915_private *dev_priv,
968 struct intel_digital_port *port)
969{
970 u32 bit;
971
Damien Lespiauc36346e2012-12-13 16:09:03 +0000972 if (HAS_PCH_IBX(dev_priv->dev)) {
Robin Schroereba905b2014-05-18 02:24:50 +0200973 switch (port->port) {
Damien Lespiauc36346e2012-12-13 16:09:03 +0000974 case PORT_B:
975 bit = SDE_PORTB_HOTPLUG;
976 break;
977 case PORT_C:
978 bit = SDE_PORTC_HOTPLUG;
979 break;
980 case PORT_D:
981 bit = SDE_PORTD_HOTPLUG;
982 break;
983 default:
984 return true;
985 }
986 } else {
Robin Schroereba905b2014-05-18 02:24:50 +0200987 switch (port->port) {
Damien Lespiauc36346e2012-12-13 16:09:03 +0000988 case PORT_B:
989 bit = SDE_PORTB_HOTPLUG_CPT;
990 break;
991 case PORT_C:
992 bit = SDE_PORTC_HOTPLUG_CPT;
993 break;
994 case PORT_D:
995 bit = SDE_PORTD_HOTPLUG_CPT;
996 break;
997 default:
998 return true;
999 }
Damien Lespiaub0ea7d32012-12-13 16:09:00 +00001000 }
1001
1002 return I915_READ(SDEISR) & bit;
1003}
1004
Jesse Barnesb24e7172011-01-04 15:09:30 -08001005static const char *state_string(bool enabled)
1006{
1007 return enabled ? "on" : "off";
1008}
1009
1010/* Only for pre-ILK configs */
Daniel Vetter55607e82013-06-16 21:42:39 +02001011void assert_pll(struct drm_i915_private *dev_priv,
1012 enum pipe pipe, bool state)
Jesse Barnesb24e7172011-01-04 15:09:30 -08001013{
1014 int reg;
1015 u32 val;
1016 bool cur_state;
1017
1018 reg = DPLL(pipe);
1019 val = I915_READ(reg);
1020 cur_state = !!(val & DPLL_VCO_ENABLE);
1021 WARN(cur_state != state,
1022 "PLL state assertion failure (expected %s, current %s)\n",
1023 state_string(state), state_string(cur_state));
1024}
Jesse Barnesb24e7172011-01-04 15:09:30 -08001025
Jani Nikula23538ef2013-08-27 15:12:22 +03001026/* XXX: the dsi pll is shared between MIPI DSI ports */
1027static void assert_dsi_pll(struct drm_i915_private *dev_priv, bool state)
1028{
1029 u32 val;
1030 bool cur_state;
1031
1032 mutex_lock(&dev_priv->dpio_lock);
1033 val = vlv_cck_read(dev_priv, CCK_REG_DSI_PLL_CONTROL);
1034 mutex_unlock(&dev_priv->dpio_lock);
1035
1036 cur_state = val & DSI_PLL_VCO_EN;
1037 WARN(cur_state != state,
1038 "DSI PLL state assertion failure (expected %s, current %s)\n",
1039 state_string(state), state_string(cur_state));
1040}
1041#define assert_dsi_pll_enabled(d) assert_dsi_pll(d, true)
1042#define assert_dsi_pll_disabled(d) assert_dsi_pll(d, false)
1043
Daniel Vetter55607e82013-06-16 21:42:39 +02001044struct intel_shared_dpll *
Daniel Vettere2b78262013-06-07 23:10:03 +02001045intel_crtc_to_shared_dpll(struct intel_crtc *crtc)
Jesse Barnes040484a2011-01-03 12:14:26 -08001046{
Daniel Vettere2b78262013-06-07 23:10:03 +02001047 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
1048
Daniel Vettera43f6e02013-06-07 23:10:32 +02001049 if (crtc->config.shared_dpll < 0)
Daniel Vettere2b78262013-06-07 23:10:03 +02001050 return NULL;
1051
Daniel Vettera43f6e02013-06-07 23:10:32 +02001052 return &dev_priv->shared_dplls[crtc->config.shared_dpll];
Daniel Vettere2b78262013-06-07 23:10:03 +02001053}
1054
Jesse Barnesb24e7172011-01-04 15:09:30 -08001055/* For ILK+ */
Daniel Vetter55607e82013-06-16 21:42:39 +02001056void assert_shared_dpll(struct drm_i915_private *dev_priv,
1057 struct intel_shared_dpll *pll,
1058 bool state)
Jesse Barnes040484a2011-01-03 12:14:26 -08001059{
Jesse Barnes040484a2011-01-03 12:14:26 -08001060 bool cur_state;
Daniel Vetter53589012013-06-05 13:34:16 +02001061 struct intel_dpll_hw_state hw_state;
Jesse Barnes040484a2011-01-03 12:14:26 -08001062
Eugeni Dodonov9d82aa12012-05-09 15:37:17 -03001063 if (HAS_PCH_LPT(dev_priv->dev)) {
1064 DRM_DEBUG_DRIVER("LPT detected: skipping PCH PLL test\n");
1065 return;
1066 }
1067
Chris Wilson92b27b02012-05-20 18:10:50 +01001068 if (WARN (!pll,
Daniel Vetter46edb022013-06-05 13:34:12 +02001069 "asserting DPLL %s with no DPLL\n", state_string(state)))
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001070 return;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001071
Daniel Vetter53589012013-06-05 13:34:16 +02001072 cur_state = pll->get_hw_state(dev_priv, pll, &hw_state);
Chris Wilson92b27b02012-05-20 18:10:50 +01001073 WARN(cur_state != state,
Daniel Vetter53589012013-06-05 13:34:16 +02001074 "%s assertion failure (expected %s, current %s)\n",
1075 pll->name, state_string(state), state_string(cur_state));
Jesse Barnes040484a2011-01-03 12:14:26 -08001076}
Jesse Barnes040484a2011-01-03 12:14:26 -08001077
1078static void assert_fdi_tx(struct drm_i915_private *dev_priv,
1079 enum pipe pipe, bool state)
1080{
1081 int reg;
1082 u32 val;
1083 bool cur_state;
Paulo Zanoniad80a812012-10-24 16:06:19 -02001084 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
1085 pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08001086
Paulo Zanoniaffa9352012-11-23 15:30:39 -02001087 if (HAS_DDI(dev_priv->dev)) {
1088 /* DDI does not have a specific FDI_TX register */
Paulo Zanoniad80a812012-10-24 16:06:19 -02001089 reg = TRANS_DDI_FUNC_CTL(cpu_transcoder);
Eugeni Dodonovbf507ef2012-05-09 15:37:18 -03001090 val = I915_READ(reg);
Paulo Zanoniad80a812012-10-24 16:06:19 -02001091 cur_state = !!(val & TRANS_DDI_FUNC_ENABLE);
Eugeni Dodonovbf507ef2012-05-09 15:37:18 -03001092 } else {
1093 reg = FDI_TX_CTL(pipe);
1094 val = I915_READ(reg);
1095 cur_state = !!(val & FDI_TX_ENABLE);
1096 }
Jesse Barnes040484a2011-01-03 12:14:26 -08001097 WARN(cur_state != state,
1098 "FDI TX state assertion failure (expected %s, current %s)\n",
1099 state_string(state), state_string(cur_state));
1100}
1101#define assert_fdi_tx_enabled(d, p) assert_fdi_tx(d, p, true)
1102#define assert_fdi_tx_disabled(d, p) assert_fdi_tx(d, p, false)
1103
1104static void assert_fdi_rx(struct drm_i915_private *dev_priv,
1105 enum pipe pipe, bool state)
1106{
1107 int reg;
1108 u32 val;
1109 bool cur_state;
1110
Paulo Zanonid63fa0d2012-11-20 13:27:35 -02001111 reg = FDI_RX_CTL(pipe);
1112 val = I915_READ(reg);
1113 cur_state = !!(val & FDI_RX_ENABLE);
Jesse Barnes040484a2011-01-03 12:14:26 -08001114 WARN(cur_state != state,
1115 "FDI RX state assertion failure (expected %s, current %s)\n",
1116 state_string(state), state_string(cur_state));
1117}
1118#define assert_fdi_rx_enabled(d, p) assert_fdi_rx(d, p, true)
1119#define assert_fdi_rx_disabled(d, p) assert_fdi_rx(d, p, false)
1120
1121static void assert_fdi_tx_pll_enabled(struct drm_i915_private *dev_priv,
1122 enum pipe pipe)
1123{
1124 int reg;
1125 u32 val;
1126
1127 /* ILK FDI PLL is always enabled */
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001128 if (INTEL_INFO(dev_priv->dev)->gen == 5)
Jesse Barnes040484a2011-01-03 12:14:26 -08001129 return;
1130
Eugeni Dodonovbf507ef2012-05-09 15:37:18 -03001131 /* On Haswell, DDI ports are responsible for the FDI PLL setup */
Paulo Zanoniaffa9352012-11-23 15:30:39 -02001132 if (HAS_DDI(dev_priv->dev))
Eugeni Dodonovbf507ef2012-05-09 15:37:18 -03001133 return;
1134
Jesse Barnes040484a2011-01-03 12:14:26 -08001135 reg = FDI_TX_CTL(pipe);
1136 val = I915_READ(reg);
1137 WARN(!(val & FDI_TX_PLL_ENABLE), "FDI TX PLL assertion failure, should be active but is disabled\n");
1138}
1139
Daniel Vetter55607e82013-06-16 21:42:39 +02001140void assert_fdi_rx_pll(struct drm_i915_private *dev_priv,
1141 enum pipe pipe, bool state)
Jesse Barnes040484a2011-01-03 12:14:26 -08001142{
1143 int reg;
1144 u32 val;
Daniel Vetter55607e82013-06-16 21:42:39 +02001145 bool cur_state;
Jesse Barnes040484a2011-01-03 12:14:26 -08001146
1147 reg = FDI_RX_CTL(pipe);
1148 val = I915_READ(reg);
Daniel Vetter55607e82013-06-16 21:42:39 +02001149 cur_state = !!(val & FDI_RX_PLL_ENABLE);
1150 WARN(cur_state != state,
1151 "FDI RX PLL assertion failure (expected %s, current %s)\n",
1152 state_string(state), state_string(cur_state));
Jesse Barnes040484a2011-01-03 12:14:26 -08001153}
1154
Jesse Barnesea0760c2011-01-04 15:09:32 -08001155static void assert_panel_unlocked(struct drm_i915_private *dev_priv,
1156 enum pipe pipe)
1157{
1158 int pp_reg, lvds_reg;
1159 u32 val;
1160 enum pipe panel_pipe = PIPE_A;
Thomas Jarosch0de3b482011-08-25 15:37:45 +02001161 bool locked = true;
Jesse Barnesea0760c2011-01-04 15:09:32 -08001162
1163 if (HAS_PCH_SPLIT(dev_priv->dev)) {
1164 pp_reg = PCH_PP_CONTROL;
1165 lvds_reg = PCH_LVDS;
1166 } else {
1167 pp_reg = PP_CONTROL;
1168 lvds_reg = LVDS;
1169 }
1170
1171 val = I915_READ(pp_reg);
1172 if (!(val & PANEL_POWER_ON) ||
1173 ((val & PANEL_UNLOCK_REGS) == PANEL_UNLOCK_REGS))
1174 locked = false;
1175
1176 if (I915_READ(lvds_reg) & LVDS_PIPEB_SELECT)
1177 panel_pipe = PIPE_B;
1178
1179 WARN(panel_pipe == pipe && locked,
1180 "panel assertion failure, pipe %c regs locked\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001181 pipe_name(pipe));
Jesse Barnesea0760c2011-01-04 15:09:32 -08001182}
1183
Jani Nikula93ce0ba2013-09-13 11:03:08 +03001184static void assert_cursor(struct drm_i915_private *dev_priv,
1185 enum pipe pipe, bool state)
1186{
1187 struct drm_device *dev = dev_priv->dev;
1188 bool cur_state;
1189
Paulo Zanonid9d82082014-02-27 16:30:56 -03001190 if (IS_845G(dev) || IS_I865G(dev))
Jani Nikula93ce0ba2013-09-13 11:03:08 +03001191 cur_state = I915_READ(_CURACNTR) & CURSOR_ENABLE;
Paulo Zanonid9d82082014-02-27 16:30:56 -03001192 else if (INTEL_INFO(dev)->gen <= 6 || IS_VALLEYVIEW(dev))
Jani Nikula93ce0ba2013-09-13 11:03:08 +03001193 cur_state = I915_READ(CURCNTR(pipe)) & CURSOR_MODE;
Paulo Zanonid9d82082014-02-27 16:30:56 -03001194 else
1195 cur_state = I915_READ(CURCNTR_IVB(pipe)) & CURSOR_MODE;
Jani Nikula93ce0ba2013-09-13 11:03:08 +03001196
1197 WARN(cur_state != state,
1198 "cursor on pipe %c assertion failure (expected %s, current %s)\n",
1199 pipe_name(pipe), state_string(state), state_string(cur_state));
1200}
1201#define assert_cursor_enabled(d, p) assert_cursor(d, p, true)
1202#define assert_cursor_disabled(d, p) assert_cursor(d, p, false)
1203
Jesse Barnesb840d907f2011-12-13 13:19:38 -08001204void assert_pipe(struct drm_i915_private *dev_priv,
1205 enum pipe pipe, bool state)
Jesse Barnesb24e7172011-01-04 15:09:30 -08001206{
1207 int reg;
1208 u32 val;
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001209 bool cur_state;
Paulo Zanoni702e7a52012-10-23 18:29:59 -02001210 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
1211 pipe);
Jesse Barnesb24e7172011-01-04 15:09:30 -08001212
Daniel Vetter8e636782012-01-22 01:36:48 +01001213 /* if we need the pipe A quirk it must be always on */
1214 if (pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE)
1215 state = true;
1216
Imre Deakda7e29b2014-02-18 00:02:02 +02001217 if (!intel_display_power_enabled(dev_priv,
Paulo Zanonib97186f2013-05-03 12:15:36 -03001218 POWER_DOMAIN_TRANSCODER(cpu_transcoder))) {
Paulo Zanoni69310162013-01-29 16:35:19 -02001219 cur_state = false;
1220 } else {
1221 reg = PIPECONF(cpu_transcoder);
1222 val = I915_READ(reg);
1223 cur_state = !!(val & PIPECONF_ENABLE);
1224 }
1225
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001226 WARN(cur_state != state,
1227 "pipe %c assertion failure (expected %s, current %s)\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001228 pipe_name(pipe), state_string(state), state_string(cur_state));
Jesse Barnesb24e7172011-01-04 15:09:30 -08001229}
1230
Chris Wilson931872f2012-01-16 23:01:13 +00001231static void assert_plane(struct drm_i915_private *dev_priv,
1232 enum plane plane, bool state)
Jesse Barnesb24e7172011-01-04 15:09:30 -08001233{
1234 int reg;
1235 u32 val;
Chris Wilson931872f2012-01-16 23:01:13 +00001236 bool cur_state;
Jesse Barnesb24e7172011-01-04 15:09:30 -08001237
1238 reg = DSPCNTR(plane);
1239 val = I915_READ(reg);
Chris Wilson931872f2012-01-16 23:01:13 +00001240 cur_state = !!(val & DISPLAY_PLANE_ENABLE);
1241 WARN(cur_state != state,
1242 "plane %c assertion failure (expected %s, current %s)\n",
1243 plane_name(plane), state_string(state), state_string(cur_state));
Jesse Barnesb24e7172011-01-04 15:09:30 -08001244}
1245
Chris Wilson931872f2012-01-16 23:01:13 +00001246#define assert_plane_enabled(d, p) assert_plane(d, p, true)
1247#define assert_plane_disabled(d, p) assert_plane(d, p, false)
1248
Jesse Barnesb24e7172011-01-04 15:09:30 -08001249static void assert_planes_disabled(struct drm_i915_private *dev_priv,
1250 enum pipe pipe)
1251{
Ville Syrjälä653e1022013-06-04 13:49:05 +03001252 struct drm_device *dev = dev_priv->dev;
Jesse Barnesb24e7172011-01-04 15:09:30 -08001253 int reg, i;
1254 u32 val;
1255 int cur_pipe;
1256
Ville Syrjälä653e1022013-06-04 13:49:05 +03001257 /* Primary planes are fixed to pipes on gen4+ */
1258 if (INTEL_INFO(dev)->gen >= 4) {
Adam Jackson28c057942011-10-07 14:38:42 -04001259 reg = DSPCNTR(pipe);
1260 val = I915_READ(reg);
Damien Lespiau83f26f12014-03-17 17:59:48 +00001261 WARN(val & DISPLAY_PLANE_ENABLE,
Adam Jackson28c057942011-10-07 14:38:42 -04001262 "plane %c assertion failure, should be disabled but not\n",
1263 plane_name(pipe));
Jesse Barnes19ec1352011-02-02 12:28:02 -08001264 return;
Adam Jackson28c057942011-10-07 14:38:42 -04001265 }
Jesse Barnes19ec1352011-02-02 12:28:02 -08001266
Jesse Barnesb24e7172011-01-04 15:09:30 -08001267 /* Need to check both planes against the pipe */
Damien Lespiau08e2a7d2013-07-11 20:10:54 +01001268 for_each_pipe(i) {
Jesse Barnesb24e7172011-01-04 15:09:30 -08001269 reg = DSPCNTR(i);
1270 val = I915_READ(reg);
1271 cur_pipe = (val & DISPPLANE_SEL_PIPE_MASK) >>
1272 DISPPLANE_SEL_PIPE_SHIFT;
1273 WARN((val & DISPLAY_PLANE_ENABLE) && pipe == cur_pipe,
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001274 "plane %c assertion failure, should be off on pipe %c but is still active\n",
1275 plane_name(i), pipe_name(pipe));
Jesse Barnesb24e7172011-01-04 15:09:30 -08001276 }
1277}
1278
Jesse Barnes19332d72013-03-28 09:55:38 -07001279static void assert_sprites_disabled(struct drm_i915_private *dev_priv,
1280 enum pipe pipe)
1281{
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001282 struct drm_device *dev = dev_priv->dev;
Damien Lespiau1fe47782014-03-03 17:31:47 +00001283 int reg, sprite;
Jesse Barnes19332d72013-03-28 09:55:38 -07001284 u32 val;
1285
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001286 if (IS_VALLEYVIEW(dev)) {
Damien Lespiau1fe47782014-03-03 17:31:47 +00001287 for_each_sprite(pipe, sprite) {
1288 reg = SPCNTR(pipe, sprite);
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001289 val = I915_READ(reg);
Damien Lespiau83f26f12014-03-17 17:59:48 +00001290 WARN(val & SP_ENABLE,
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001291 "sprite %c assertion failure, should be off on pipe %c but is still active\n",
Damien Lespiau1fe47782014-03-03 17:31:47 +00001292 sprite_name(pipe, sprite), pipe_name(pipe));
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001293 }
1294 } else if (INTEL_INFO(dev)->gen >= 7) {
1295 reg = SPRCTL(pipe);
Jesse Barnes19332d72013-03-28 09:55:38 -07001296 val = I915_READ(reg);
Damien Lespiau83f26f12014-03-17 17:59:48 +00001297 WARN(val & SPRITE_ENABLE,
Ville Syrjälä06da8da2013-04-17 17:48:51 +03001298 "sprite %c assertion failure, should be off on pipe %c but is still active\n",
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001299 plane_name(pipe), pipe_name(pipe));
1300 } else if (INTEL_INFO(dev)->gen >= 5) {
1301 reg = DVSCNTR(pipe);
1302 val = I915_READ(reg);
Damien Lespiau83f26f12014-03-17 17:59:48 +00001303 WARN(val & DVS_ENABLE,
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001304 "sprite %c assertion failure, should be off on pipe %c but is still active\n",
1305 plane_name(pipe), pipe_name(pipe));
Jesse Barnes19332d72013-03-28 09:55:38 -07001306 }
1307}
1308
Paulo Zanoni89eff4b2014-01-08 11:12:28 -02001309static void ibx_assert_pch_refclk_enabled(struct drm_i915_private *dev_priv)
Jesse Barnes92f25842011-01-04 15:09:34 -08001310{
1311 u32 val;
1312 bool enabled;
1313
Paulo Zanoni89eff4b2014-01-08 11:12:28 -02001314 WARN_ON(!(HAS_PCH_IBX(dev_priv->dev) || HAS_PCH_CPT(dev_priv->dev)));
Eugeni Dodonov9d82aa12012-05-09 15:37:17 -03001315
Jesse Barnes92f25842011-01-04 15:09:34 -08001316 val = I915_READ(PCH_DREF_CONTROL);
1317 enabled = !!(val & (DREF_SSC_SOURCE_MASK | DREF_NONSPREAD_SOURCE_MASK |
1318 DREF_SUPERSPREAD_SOURCE_MASK));
1319 WARN(!enabled, "PCH refclk assertion failure, should be active but is disabled\n");
1320}
1321
Daniel Vetterab9412b2013-05-03 11:49:46 +02001322static void assert_pch_transcoder_disabled(struct drm_i915_private *dev_priv,
1323 enum pipe pipe)
Jesse Barnes92f25842011-01-04 15:09:34 -08001324{
1325 int reg;
1326 u32 val;
1327 bool enabled;
1328
Daniel Vetterab9412b2013-05-03 11:49:46 +02001329 reg = PCH_TRANSCONF(pipe);
Jesse Barnes92f25842011-01-04 15:09:34 -08001330 val = I915_READ(reg);
1331 enabled = !!(val & TRANS_ENABLE);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001332 WARN(enabled,
1333 "transcoder assertion failed, should be off on pipe %c but is still active\n",
1334 pipe_name(pipe));
Jesse Barnes92f25842011-01-04 15:09:34 -08001335}
1336
Keith Packard4e634382011-08-06 10:39:45 -07001337static bool dp_pipe_enabled(struct drm_i915_private *dev_priv,
1338 enum pipe pipe, u32 port_sel, u32 val)
Keith Packardf0575e92011-07-25 22:12:43 -07001339{
1340 if ((val & DP_PORT_EN) == 0)
1341 return false;
1342
1343 if (HAS_PCH_CPT(dev_priv->dev)) {
1344 u32 trans_dp_ctl_reg = TRANS_DP_CTL(pipe);
1345 u32 trans_dp_ctl = I915_READ(trans_dp_ctl_reg);
1346 if ((trans_dp_ctl & TRANS_DP_PORT_SEL_MASK) != port_sel)
1347 return false;
Chon Ming Lee44f37d12014-04-09 13:28:21 +03001348 } else if (IS_CHERRYVIEW(dev_priv->dev)) {
1349 if ((val & DP_PIPE_MASK_CHV) != DP_PIPE_SELECT_CHV(pipe))
1350 return false;
Keith Packardf0575e92011-07-25 22:12:43 -07001351 } else {
1352 if ((val & DP_PIPE_MASK) != (pipe << 30))
1353 return false;
1354 }
1355 return true;
1356}
1357
Keith Packard1519b992011-08-06 10:35:34 -07001358static bool hdmi_pipe_enabled(struct drm_i915_private *dev_priv,
1359 enum pipe pipe, u32 val)
1360{
Paulo Zanonidc0fa712013-02-19 16:21:46 -03001361 if ((val & SDVO_ENABLE) == 0)
Keith Packard1519b992011-08-06 10:35:34 -07001362 return false;
1363
1364 if (HAS_PCH_CPT(dev_priv->dev)) {
Paulo Zanonidc0fa712013-02-19 16:21:46 -03001365 if ((val & SDVO_PIPE_SEL_MASK_CPT) != SDVO_PIPE_SEL_CPT(pipe))
Keith Packard1519b992011-08-06 10:35:34 -07001366 return false;
Chon Ming Lee44f37d12014-04-09 13:28:21 +03001367 } else if (IS_CHERRYVIEW(dev_priv->dev)) {
1368 if ((val & SDVO_PIPE_SEL_MASK_CHV) != SDVO_PIPE_SEL_CHV(pipe))
1369 return false;
Keith Packard1519b992011-08-06 10:35:34 -07001370 } else {
Paulo Zanonidc0fa712013-02-19 16:21:46 -03001371 if ((val & SDVO_PIPE_SEL_MASK) != SDVO_PIPE_SEL(pipe))
Keith Packard1519b992011-08-06 10:35:34 -07001372 return false;
1373 }
1374 return true;
1375}
1376
1377static bool lvds_pipe_enabled(struct drm_i915_private *dev_priv,
1378 enum pipe pipe, u32 val)
1379{
1380 if ((val & LVDS_PORT_EN) == 0)
1381 return false;
1382
1383 if (HAS_PCH_CPT(dev_priv->dev)) {
1384 if ((val & PORT_TRANS_SEL_MASK) != PORT_TRANS_SEL_CPT(pipe))
1385 return false;
1386 } else {
1387 if ((val & LVDS_PIPE_MASK) != LVDS_PIPE(pipe))
1388 return false;
1389 }
1390 return true;
1391}
1392
1393static bool adpa_pipe_enabled(struct drm_i915_private *dev_priv,
1394 enum pipe pipe, u32 val)
1395{
1396 if ((val & ADPA_DAC_ENABLE) == 0)
1397 return false;
1398 if (HAS_PCH_CPT(dev_priv->dev)) {
1399 if ((val & PORT_TRANS_SEL_MASK) != PORT_TRANS_SEL_CPT(pipe))
1400 return false;
1401 } else {
1402 if ((val & ADPA_PIPE_SELECT_MASK) != ADPA_PIPE_SELECT(pipe))
1403 return false;
1404 }
1405 return true;
1406}
1407
Jesse Barnes291906f2011-02-02 12:28:03 -08001408static void assert_pch_dp_disabled(struct drm_i915_private *dev_priv,
Keith Packardf0575e92011-07-25 22:12:43 -07001409 enum pipe pipe, int reg, u32 port_sel)
Jesse Barnes291906f2011-02-02 12:28:03 -08001410{
Jesse Barnes47a05ec2011-02-07 13:46:40 -08001411 u32 val = I915_READ(reg);
Keith Packard4e634382011-08-06 10:39:45 -07001412 WARN(dp_pipe_enabled(dev_priv, pipe, port_sel, val),
Jesse Barnes291906f2011-02-02 12:28:03 -08001413 "PCH DP (0x%08x) enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001414 reg, pipe_name(pipe));
Daniel Vetterde9a35a2012-06-05 11:03:40 +02001415
Daniel Vetter75c5da22012-09-10 21:58:29 +02001416 WARN(HAS_PCH_IBX(dev_priv->dev) && (val & DP_PORT_EN) == 0
1417 && (val & DP_PIPEB_SELECT),
Daniel Vetterde9a35a2012-06-05 11:03:40 +02001418 "IBX PCH dp port still using transcoder B\n");
Jesse Barnes291906f2011-02-02 12:28:03 -08001419}
1420
1421static void assert_pch_hdmi_disabled(struct drm_i915_private *dev_priv,
1422 enum pipe pipe, int reg)
1423{
Jesse Barnes47a05ec2011-02-07 13:46:40 -08001424 u32 val = I915_READ(reg);
Xu, Anhuab70ad582012-08-13 03:08:33 +00001425 WARN(hdmi_pipe_enabled(dev_priv, pipe, val),
Adam Jackson23c99e72011-10-07 14:38:43 -04001426 "PCH HDMI (0x%08x) enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001427 reg, pipe_name(pipe));
Daniel Vetterde9a35a2012-06-05 11:03:40 +02001428
Paulo Zanonidc0fa712013-02-19 16:21:46 -03001429 WARN(HAS_PCH_IBX(dev_priv->dev) && (val & SDVO_ENABLE) == 0
Daniel Vetter75c5da22012-09-10 21:58:29 +02001430 && (val & SDVO_PIPE_B_SELECT),
Daniel Vetterde9a35a2012-06-05 11:03:40 +02001431 "IBX PCH hdmi port still using transcoder B\n");
Jesse Barnes291906f2011-02-02 12:28:03 -08001432}
1433
1434static void assert_pch_ports_disabled(struct drm_i915_private *dev_priv,
1435 enum pipe pipe)
1436{
1437 int reg;
1438 u32 val;
Jesse Barnes291906f2011-02-02 12:28:03 -08001439
Keith Packardf0575e92011-07-25 22:12:43 -07001440 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_B, TRANS_DP_PORT_SEL_B);
1441 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_C, TRANS_DP_PORT_SEL_C);
1442 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_D, TRANS_DP_PORT_SEL_D);
Jesse Barnes291906f2011-02-02 12:28:03 -08001443
1444 reg = PCH_ADPA;
1445 val = I915_READ(reg);
Xu, Anhuab70ad582012-08-13 03:08:33 +00001446 WARN(adpa_pipe_enabled(dev_priv, pipe, val),
Jesse Barnes291906f2011-02-02 12:28:03 -08001447 "PCH VGA enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001448 pipe_name(pipe));
Jesse Barnes291906f2011-02-02 12:28:03 -08001449
1450 reg = PCH_LVDS;
1451 val = I915_READ(reg);
Xu, Anhuab70ad582012-08-13 03:08:33 +00001452 WARN(lvds_pipe_enabled(dev_priv, pipe, val),
Jesse Barnes291906f2011-02-02 12:28:03 -08001453 "PCH LVDS enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001454 pipe_name(pipe));
Jesse Barnes291906f2011-02-02 12:28:03 -08001455
Paulo Zanonie2debe92013-02-18 19:00:27 -03001456 assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMIB);
1457 assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMIC);
1458 assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMID);
Jesse Barnes291906f2011-02-02 12:28:03 -08001459}
1460
Jesse Barnes40e9cf62013-10-03 11:35:46 -07001461static void intel_init_dpio(struct drm_device *dev)
1462{
1463 struct drm_i915_private *dev_priv = dev->dev_private;
1464
1465 if (!IS_VALLEYVIEW(dev))
1466 return;
1467
Chon Ming Leea09cadd2014-04-09 13:28:14 +03001468 /*
1469 * IOSF_PORT_DPIO is used for VLV x2 PHY (DP/HDMI B and C),
1470 * CHV x1 PHY (DP/HDMI D)
1471 * IOSF_PORT_DPIO_2 is used for CHV x2 PHY (DP/HDMI B and C)
1472 */
1473 if (IS_CHERRYVIEW(dev)) {
1474 DPIO_PHY_IOSF_PORT(DPIO_PHY0) = IOSF_PORT_DPIO_2;
1475 DPIO_PHY_IOSF_PORT(DPIO_PHY1) = IOSF_PORT_DPIO;
1476 } else {
1477 DPIO_PHY_IOSF_PORT(DPIO_PHY0) = IOSF_PORT_DPIO;
1478 }
Jesse Barnes5382f5f352013-12-16 16:34:24 -08001479}
1480
1481static void intel_reset_dpio(struct drm_device *dev)
1482{
1483 struct drm_i915_private *dev_priv = dev->dev_private;
1484
1485 if (!IS_VALLEYVIEW(dev))
1486 return;
1487
Imre Deake5cbfbf2014-01-09 17:08:16 +02001488 /*
1489 * Enable the CRI clock source so we can get at the display and the
1490 * reference clock for VGA hotplug / manual detection.
1491 */
Imre Deak404faab2014-01-09 17:08:15 +02001492 I915_WRITE(DPLL(PIPE_B), I915_READ(DPLL(PIPE_B)) |
Imre Deake5cbfbf2014-01-09 17:08:16 +02001493 DPLL_REFA_CLK_ENABLE_VLV |
Imre Deak404faab2014-01-09 17:08:15 +02001494 DPLL_INTEGRATED_CRI_CLK_VLV);
1495
Chon Ming Lee076ed3b2014-04-09 13:28:17 +03001496 if (IS_CHERRYVIEW(dev)) {
1497 enum dpio_phy phy;
1498 u32 val;
1499
1500 for (phy = DPIO_PHY0; phy < I915_NUM_PHYS_VLV; phy++) {
1501 /* Poll for phypwrgood signal */
1502 if (wait_for(I915_READ(DISPLAY_PHY_STATUS) &
1503 PHY_POWERGOOD(phy), 1))
1504 DRM_ERROR("Display PHY %d is not power up\n", phy);
1505
1506 /*
1507 * Deassert common lane reset for PHY.
1508 *
1509 * This should only be done on init and resume from S3
1510 * with both PLLs disabled, or we risk losing DPIO and
1511 * PLL synchronization.
1512 */
1513 val = I915_READ(DISPLAY_PHY_CONTROL);
1514 I915_WRITE(DISPLAY_PHY_CONTROL,
1515 PHY_COM_LANE_RESET_DEASSERT(phy, val));
1516 }
1517
1518 } else {
1519 /*
1520 * From VLV2A0_DP_eDP_DPIO_driver_vbios_notes_10.docx -
1521 * 6. De-assert cmn_reset/side_reset. Same as VLV X0.
1522 * a. GUnit 0x2110 bit[0] set to 1 (def 0)
1523 * b. The other bits such as sfr settings / modesel may all
1524 * be set to 0.
1525 *
1526 * This should only be done on init and resume from S3 with
1527 * both PLLs disabled, or we risk losing DPIO and PLL
1528 * synchronization.
1529 */
1530 I915_WRITE(DPIO_CTL, I915_READ(DPIO_CTL) | DPIO_CMNRST);
1531 }
Jesse Barnes40e9cf62013-10-03 11:35:46 -07001532}
1533
Daniel Vetter426115c2013-07-11 22:13:42 +02001534static void vlv_enable_pll(struct intel_crtc *crtc)
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001535{
Daniel Vetter426115c2013-07-11 22:13:42 +02001536 struct drm_device *dev = crtc->base.dev;
1537 struct drm_i915_private *dev_priv = dev->dev_private;
1538 int reg = DPLL(crtc->pipe);
1539 u32 dpll = crtc->config.dpll_hw_state.dpll;
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001540
Daniel Vetter426115c2013-07-11 22:13:42 +02001541 assert_pipe_disabled(dev_priv, crtc->pipe);
Daniel Vetter58c6eaa2013-04-11 16:29:09 +02001542
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001543 /* No really, not for ILK+ */
Daniel Vetter87442f72013-06-06 00:52:17 +02001544 BUG_ON(!IS_VALLEYVIEW(dev_priv->dev));
1545
1546 /* PLL is protected by panel, make sure we can write it */
1547 if (IS_MOBILE(dev_priv->dev) && !IS_I830(dev_priv->dev))
Daniel Vetter426115c2013-07-11 22:13:42 +02001548 assert_panel_unlocked(dev_priv, crtc->pipe);
Daniel Vetter87442f72013-06-06 00:52:17 +02001549
Daniel Vetter426115c2013-07-11 22:13:42 +02001550 I915_WRITE(reg, dpll);
1551 POSTING_READ(reg);
1552 udelay(150);
1553
1554 if (wait_for(((I915_READ(reg) & DPLL_LOCK_VLV) == DPLL_LOCK_VLV), 1))
1555 DRM_ERROR("DPLL %d failed to lock\n", crtc->pipe);
1556
1557 I915_WRITE(DPLL_MD(crtc->pipe), crtc->config.dpll_hw_state.dpll_md);
1558 POSTING_READ(DPLL_MD(crtc->pipe));
Daniel Vetter87442f72013-06-06 00:52:17 +02001559
1560 /* We do this three times for luck */
Daniel Vetter426115c2013-07-11 22:13:42 +02001561 I915_WRITE(reg, dpll);
Daniel Vetter87442f72013-06-06 00:52:17 +02001562 POSTING_READ(reg);
1563 udelay(150); /* wait for warmup */
Daniel Vetter426115c2013-07-11 22:13:42 +02001564 I915_WRITE(reg, dpll);
Daniel Vetter87442f72013-06-06 00:52:17 +02001565 POSTING_READ(reg);
1566 udelay(150); /* wait for warmup */
Daniel Vetter426115c2013-07-11 22:13:42 +02001567 I915_WRITE(reg, dpll);
Daniel Vetter87442f72013-06-06 00:52:17 +02001568 POSTING_READ(reg);
1569 udelay(150); /* wait for warmup */
1570}
1571
Chon Ming Lee9d556c92014-05-02 14:27:47 +03001572static void chv_enable_pll(struct intel_crtc *crtc)
1573{
1574 struct drm_device *dev = crtc->base.dev;
1575 struct drm_i915_private *dev_priv = dev->dev_private;
1576 int pipe = crtc->pipe;
1577 enum dpio_channel port = vlv_pipe_to_channel(pipe);
1578 int dpll = DPLL(crtc->pipe);
1579 u32 tmp;
1580
1581 assert_pipe_disabled(dev_priv, crtc->pipe);
1582
1583 BUG_ON(!IS_CHERRYVIEW(dev_priv->dev));
1584
1585 mutex_lock(&dev_priv->dpio_lock);
1586
1587 /* Enable back the 10bit clock to display controller */
1588 tmp = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW14(port));
1589 tmp |= DPIO_DCLKP_EN;
1590 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port), tmp);
1591
1592 /*
1593 * Need to wait > 100ns between dclkp clock enable bit and PLL enable.
1594 */
1595 udelay(1);
1596
1597 /* Enable PLL */
1598 tmp = I915_READ(dpll);
1599 tmp |= DPLL_VCO_ENABLE;
1600 I915_WRITE(dpll, tmp);
1601
1602 /* Check PLL is locked */
1603 if (wait_for(((I915_READ(dpll) & DPLL_LOCK_VLV) == DPLL_LOCK_VLV), 1))
1604 DRM_ERROR("PLL %d failed to lock\n", pipe);
1605
1606 /* Deassert soft data lane reset*/
1607 tmp = vlv_dpio_read(dev_priv, pipe, VLV_PCS_DW0(port));
1608 tmp |= (DPIO_PCS_TX_LANE2_RESET | DPIO_PCS_TX_LANE1_RESET);
1609 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW0(port), tmp);
1610
1611
1612 mutex_unlock(&dev_priv->dpio_lock);
1613}
1614
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001615static void i9xx_enable_pll(struct intel_crtc *crtc)
Daniel Vetter87442f72013-06-06 00:52:17 +02001616{
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001617 struct drm_device *dev = crtc->base.dev;
1618 struct drm_i915_private *dev_priv = dev->dev_private;
1619 int reg = DPLL(crtc->pipe);
1620 u32 dpll = crtc->config.dpll_hw_state.dpll;
Daniel Vetter87442f72013-06-06 00:52:17 +02001621
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001622 assert_pipe_disabled(dev_priv, crtc->pipe);
Daniel Vetter87442f72013-06-06 00:52:17 +02001623
1624 /* No really, not for ILK+ */
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001625 BUG_ON(INTEL_INFO(dev)->gen >= 5);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001626
1627 /* PLL is protected by panel, make sure we can write it */
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001628 if (IS_MOBILE(dev) && !IS_I830(dev))
1629 assert_panel_unlocked(dev_priv, crtc->pipe);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001630
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001631 I915_WRITE(reg, dpll);
1632
1633 /* Wait for the clocks to stabilize. */
1634 POSTING_READ(reg);
1635 udelay(150);
1636
1637 if (INTEL_INFO(dev)->gen >= 4) {
1638 I915_WRITE(DPLL_MD(crtc->pipe),
1639 crtc->config.dpll_hw_state.dpll_md);
1640 } else {
1641 /* The pixel multiplier can only be updated once the
1642 * DPLL is enabled and the clocks are stable.
1643 *
1644 * So write it again.
1645 */
1646 I915_WRITE(reg, dpll);
1647 }
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001648
1649 /* We do this three times for luck */
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001650 I915_WRITE(reg, dpll);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001651 POSTING_READ(reg);
1652 udelay(150); /* wait for warmup */
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001653 I915_WRITE(reg, dpll);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001654 POSTING_READ(reg);
1655 udelay(150); /* wait for warmup */
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001656 I915_WRITE(reg, dpll);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001657 POSTING_READ(reg);
1658 udelay(150); /* wait for warmup */
1659}
1660
1661/**
Daniel Vetter50b44a42013-06-05 13:34:33 +02001662 * i9xx_disable_pll - disable a PLL
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001663 * @dev_priv: i915 private structure
1664 * @pipe: pipe PLL to disable
1665 *
1666 * Disable the PLL for @pipe, making sure the pipe is off first.
1667 *
1668 * Note! This is for pre-ILK only.
1669 */
Daniel Vetter50b44a42013-06-05 13:34:33 +02001670static void i9xx_disable_pll(struct drm_i915_private *dev_priv, enum pipe pipe)
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001671{
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001672 /* Don't disable pipe A or pipe A PLLs if needed */
1673 if (pipe == PIPE_A && (dev_priv->quirks & QUIRK_PIPEA_FORCE))
1674 return;
1675
1676 /* Make sure the pipe isn't still relying on us */
1677 assert_pipe_disabled(dev_priv, pipe);
1678
Daniel Vetter50b44a42013-06-05 13:34:33 +02001679 I915_WRITE(DPLL(pipe), 0);
1680 POSTING_READ(DPLL(pipe));
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001681}
1682
Jesse Barnesf6071162013-10-01 10:41:38 -07001683static void vlv_disable_pll(struct drm_i915_private *dev_priv, enum pipe pipe)
1684{
1685 u32 val = 0;
1686
1687 /* Make sure the pipe isn't still relying on us */
1688 assert_pipe_disabled(dev_priv, pipe);
1689
Imre Deake5cbfbf2014-01-09 17:08:16 +02001690 /*
1691 * Leave integrated clock source and reference clock enabled for pipe B.
1692 * The latter is needed for VGA hotplug / manual detection.
1693 */
Jesse Barnesf6071162013-10-01 10:41:38 -07001694 if (pipe == PIPE_B)
Imre Deake5cbfbf2014-01-09 17:08:16 +02001695 val = DPLL_INTEGRATED_CRI_CLK_VLV | DPLL_REFA_CLK_ENABLE_VLV;
Jesse Barnesf6071162013-10-01 10:41:38 -07001696 I915_WRITE(DPLL(pipe), val);
1697 POSTING_READ(DPLL(pipe));
Chon Ming Lee076ed3b2014-04-09 13:28:17 +03001698
1699}
1700
1701static void chv_disable_pll(struct drm_i915_private *dev_priv, enum pipe pipe)
1702{
1703 int dpll = DPLL(pipe);
1704 u32 val;
1705
1706 /* Set PLL en = 0 */
1707 val = I915_READ(dpll);
1708 val &= ~DPLL_VCO_ENABLE;
1709 I915_WRITE(dpll, val);
1710
Jesse Barnesf6071162013-10-01 10:41:38 -07001711}
1712
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001713void vlv_wait_port_ready(struct drm_i915_private *dev_priv,
1714 struct intel_digital_port *dport)
Jesse Barnes89b667f2013-04-18 14:51:36 -07001715{
1716 u32 port_mask;
Chon Ming Lee00fc31b2014-04-09 13:28:15 +03001717 int dpll_reg;
Jesse Barnes89b667f2013-04-18 14:51:36 -07001718
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001719 switch (dport->port) {
1720 case PORT_B:
Jesse Barnes89b667f2013-04-18 14:51:36 -07001721 port_mask = DPLL_PORTB_READY_MASK;
Chon Ming Lee00fc31b2014-04-09 13:28:15 +03001722 dpll_reg = DPLL(0);
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001723 break;
1724 case PORT_C:
Jesse Barnes89b667f2013-04-18 14:51:36 -07001725 port_mask = DPLL_PORTC_READY_MASK;
Chon Ming Lee00fc31b2014-04-09 13:28:15 +03001726 dpll_reg = DPLL(0);
1727 break;
1728 case PORT_D:
1729 port_mask = DPLL_PORTD_READY_MASK;
1730 dpll_reg = DPIO_PHY_STATUS;
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001731 break;
1732 default:
1733 BUG();
1734 }
Jesse Barnes89b667f2013-04-18 14:51:36 -07001735
Chon Ming Lee00fc31b2014-04-09 13:28:15 +03001736 if (wait_for((I915_READ(dpll_reg) & port_mask) == 0, 1000))
Jesse Barnes89b667f2013-04-18 14:51:36 -07001737 WARN(1, "timed out waiting for port %c ready: 0x%08x\n",
Chon Ming Lee00fc31b2014-04-09 13:28:15 +03001738 port_name(dport->port), I915_READ(dpll_reg));
Jesse Barnes89b667f2013-04-18 14:51:36 -07001739}
1740
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001741/**
Daniel Vettere72f9fb2013-06-05 13:34:06 +02001742 * ironlake_enable_shared_dpll - enable PCH PLL
Jesse Barnes92f25842011-01-04 15:09:34 -08001743 * @dev_priv: i915 private structure
1744 * @pipe: pipe PLL to enable
1745 *
1746 * The PCH PLL needs to be enabled before the PCH transcoder, since it
1747 * drives the transcoder clock.
1748 */
Daniel Vettere2b78262013-06-07 23:10:03 +02001749static void ironlake_enable_shared_dpll(struct intel_crtc *crtc)
Jesse Barnes92f25842011-01-04 15:09:34 -08001750{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001751 struct drm_device *dev = crtc->base.dev;
1752 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vettere2b78262013-06-07 23:10:03 +02001753 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
Jesse Barnes92f25842011-01-04 15:09:34 -08001754
Chris Wilson48da64a2012-05-13 20:16:12 +01001755 /* PCH PLLs only available on ILK, SNB and IVB */
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001756 BUG_ON(INTEL_INFO(dev)->gen < 5);
Daniel Vetter87a875b2013-06-05 13:34:19 +02001757 if (WARN_ON(pll == NULL))
Chris Wilson48da64a2012-05-13 20:16:12 +01001758 return;
1759
1760 if (WARN_ON(pll->refcount == 0))
1761 return;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001762
Daniel Vetter46edb022013-06-05 13:34:12 +02001763 DRM_DEBUG_KMS("enable %s (active %d, on? %d)for crtc %d\n",
1764 pll->name, pll->active, pll->on,
Daniel Vettere2b78262013-06-07 23:10:03 +02001765 crtc->base.base.id);
Jesse Barnes92f25842011-01-04 15:09:34 -08001766
Daniel Vettercdbd2312013-06-05 13:34:03 +02001767 if (pll->active++) {
1768 WARN_ON(!pll->on);
Daniel Vettere9d69442013-06-05 13:34:15 +02001769 assert_shared_dpll_enabled(dev_priv, pll);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001770 return;
1771 }
Daniel Vetterf4a091c2013-06-10 17:28:22 +02001772 WARN_ON(pll->on);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001773
Daniel Vetter46edb022013-06-05 13:34:12 +02001774 DRM_DEBUG_KMS("enabling %s\n", pll->name);
Daniel Vettere7b903d2013-06-05 13:34:14 +02001775 pll->enable(dev_priv, pll);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001776 pll->on = true;
Jesse Barnes92f25842011-01-04 15:09:34 -08001777}
1778
Daniel Vettere2b78262013-06-07 23:10:03 +02001779static void intel_disable_shared_dpll(struct intel_crtc *crtc)
Jesse Barnes92f25842011-01-04 15:09:34 -08001780{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001781 struct drm_device *dev = crtc->base.dev;
1782 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vettere2b78262013-06-07 23:10:03 +02001783 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
Jesse Barnes4c609cb2011-09-02 12:52:11 -07001784
Jesse Barnes92f25842011-01-04 15:09:34 -08001785 /* PCH only available on ILK+ */
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001786 BUG_ON(INTEL_INFO(dev)->gen < 5);
Daniel Vetter87a875b2013-06-05 13:34:19 +02001787 if (WARN_ON(pll == NULL))
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001788 return;
1789
Chris Wilson48da64a2012-05-13 20:16:12 +01001790 if (WARN_ON(pll->refcount == 0))
1791 return;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001792
Daniel Vetter46edb022013-06-05 13:34:12 +02001793 DRM_DEBUG_KMS("disable %s (active %d, on? %d) for crtc %d\n",
1794 pll->name, pll->active, pll->on,
Daniel Vettere2b78262013-06-07 23:10:03 +02001795 crtc->base.base.id);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001796
Chris Wilson48da64a2012-05-13 20:16:12 +01001797 if (WARN_ON(pll->active == 0)) {
Daniel Vettere9d69442013-06-05 13:34:15 +02001798 assert_shared_dpll_disabled(dev_priv, pll);
Chris Wilson48da64a2012-05-13 20:16:12 +01001799 return;
1800 }
1801
Daniel Vettere9d69442013-06-05 13:34:15 +02001802 assert_shared_dpll_enabled(dev_priv, pll);
Daniel Vetterf4a091c2013-06-10 17:28:22 +02001803 WARN_ON(!pll->on);
Daniel Vettercdbd2312013-06-05 13:34:03 +02001804 if (--pll->active)
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001805 return;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001806
Daniel Vetter46edb022013-06-05 13:34:12 +02001807 DRM_DEBUG_KMS("disabling %s\n", pll->name);
Daniel Vettere7b903d2013-06-05 13:34:14 +02001808 pll->disable(dev_priv, pll);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001809 pll->on = false;
Jesse Barnes92f25842011-01-04 15:09:34 -08001810}
1811
Paulo Zanonib8a4f402012-10-31 18:12:42 -02001812static void ironlake_enable_pch_transcoder(struct drm_i915_private *dev_priv,
1813 enum pipe pipe)
Jesse Barnes040484a2011-01-03 12:14:26 -08001814{
Daniel Vetter23670b322012-11-01 09:15:30 +01001815 struct drm_device *dev = dev_priv->dev;
Paulo Zanoni7c26e5c2012-02-14 17:07:09 -02001816 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
Daniel Vettere2b78262013-06-07 23:10:03 +02001817 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter23670b322012-11-01 09:15:30 +01001818 uint32_t reg, val, pipeconf_val;
Jesse Barnes040484a2011-01-03 12:14:26 -08001819
1820 /* PCH only available on ILK+ */
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001821 BUG_ON(INTEL_INFO(dev)->gen < 5);
Jesse Barnes040484a2011-01-03 12:14:26 -08001822
1823 /* Make sure PCH DPLL is enabled */
Daniel Vettere72f9fb2013-06-05 13:34:06 +02001824 assert_shared_dpll_enabled(dev_priv,
Daniel Vettere9d69442013-06-05 13:34:15 +02001825 intel_crtc_to_shared_dpll(intel_crtc));
Jesse Barnes040484a2011-01-03 12:14:26 -08001826
1827 /* FDI must be feeding us bits for PCH ports */
1828 assert_fdi_tx_enabled(dev_priv, pipe);
1829 assert_fdi_rx_enabled(dev_priv, pipe);
1830
Daniel Vetter23670b322012-11-01 09:15:30 +01001831 if (HAS_PCH_CPT(dev)) {
1832 /* Workaround: Set the timing override bit before enabling the
1833 * pch transcoder. */
1834 reg = TRANS_CHICKEN2(pipe);
1835 val = I915_READ(reg);
1836 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
1837 I915_WRITE(reg, val);
Eugeni Dodonov59c859d2012-05-09 15:37:19 -03001838 }
Daniel Vetter23670b322012-11-01 09:15:30 +01001839
Daniel Vetterab9412b2013-05-03 11:49:46 +02001840 reg = PCH_TRANSCONF(pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08001841 val = I915_READ(reg);
Paulo Zanoni5f7f7262012-02-03 17:47:15 -02001842 pipeconf_val = I915_READ(PIPECONF(pipe));
Jesse Barnese9bcff52011-06-24 12:19:20 -07001843
1844 if (HAS_PCH_IBX(dev_priv->dev)) {
1845 /*
1846 * make the BPC in transcoder be consistent with
1847 * that in pipeconf reg.
1848 */
Daniel Vetterdfd07d72012-12-17 11:21:38 +01001849 val &= ~PIPECONF_BPC_MASK;
1850 val |= pipeconf_val & PIPECONF_BPC_MASK;
Jesse Barnese9bcff52011-06-24 12:19:20 -07001851 }
Paulo Zanoni5f7f7262012-02-03 17:47:15 -02001852
1853 val &= ~TRANS_INTERLACE_MASK;
1854 if ((pipeconf_val & PIPECONF_INTERLACE_MASK) == PIPECONF_INTERLACED_ILK)
Paulo Zanoni7c26e5c2012-02-14 17:07:09 -02001855 if (HAS_PCH_IBX(dev_priv->dev) &&
1856 intel_pipe_has_type(crtc, INTEL_OUTPUT_SDVO))
1857 val |= TRANS_LEGACY_INTERLACED_ILK;
1858 else
1859 val |= TRANS_INTERLACED;
Paulo Zanoni5f7f7262012-02-03 17:47:15 -02001860 else
1861 val |= TRANS_PROGRESSIVE;
1862
Jesse Barnes040484a2011-01-03 12:14:26 -08001863 I915_WRITE(reg, val | TRANS_ENABLE);
1864 if (wait_for(I915_READ(reg) & TRANS_STATE_ENABLE, 100))
Ville Syrjälä4bb6f1f2013-04-17 17:48:50 +03001865 DRM_ERROR("failed to enable transcoder %c\n", pipe_name(pipe));
Jesse Barnes040484a2011-01-03 12:14:26 -08001866}
1867
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001868static void lpt_enable_pch_transcoder(struct drm_i915_private *dev_priv,
Paulo Zanoni937bb612012-10-31 18:12:47 -02001869 enum transcoder cpu_transcoder)
Jesse Barnes040484a2011-01-03 12:14:26 -08001870{
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001871 u32 val, pipeconf_val;
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001872
1873 /* PCH only available on ILK+ */
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001874 BUG_ON(INTEL_INFO(dev_priv->dev)->gen < 5);
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001875
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001876 /* FDI must be feeding us bits for PCH ports */
Daniel Vetter1a240d42012-11-29 22:18:51 +01001877 assert_fdi_tx_enabled(dev_priv, (enum pipe) cpu_transcoder);
Paulo Zanoni937bb612012-10-31 18:12:47 -02001878 assert_fdi_rx_enabled(dev_priv, TRANSCODER_A);
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001879
Paulo Zanoni223a6fd2012-10-31 18:12:52 -02001880 /* Workaround: set timing override bit. */
1881 val = I915_READ(_TRANSA_CHICKEN2);
Daniel Vetter23670b322012-11-01 09:15:30 +01001882 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
Paulo Zanoni223a6fd2012-10-31 18:12:52 -02001883 I915_WRITE(_TRANSA_CHICKEN2, val);
1884
Paulo Zanoni25f3ef12012-10-31 18:12:49 -02001885 val = TRANS_ENABLE;
Paulo Zanoni937bb612012-10-31 18:12:47 -02001886 pipeconf_val = I915_READ(PIPECONF(cpu_transcoder));
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001887
Paulo Zanoni9a76b1c2012-10-31 18:12:48 -02001888 if ((pipeconf_val & PIPECONF_INTERLACE_MASK_HSW) ==
1889 PIPECONF_INTERLACED_ILK)
Paulo Zanonia35f2672012-10-31 18:12:45 -02001890 val |= TRANS_INTERLACED;
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001891 else
1892 val |= TRANS_PROGRESSIVE;
1893
Daniel Vetterab9412b2013-05-03 11:49:46 +02001894 I915_WRITE(LPT_TRANSCONF, val);
1895 if (wait_for(I915_READ(LPT_TRANSCONF) & TRANS_STATE_ENABLE, 100))
Paulo Zanoni937bb612012-10-31 18:12:47 -02001896 DRM_ERROR("Failed to enable PCH transcoder\n");
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001897}
1898
Paulo Zanonib8a4f402012-10-31 18:12:42 -02001899static void ironlake_disable_pch_transcoder(struct drm_i915_private *dev_priv,
1900 enum pipe pipe)
Jesse Barnes040484a2011-01-03 12:14:26 -08001901{
Daniel Vetter23670b322012-11-01 09:15:30 +01001902 struct drm_device *dev = dev_priv->dev;
1903 uint32_t reg, val;
Jesse Barnes040484a2011-01-03 12:14:26 -08001904
1905 /* FDI relies on the transcoder */
1906 assert_fdi_tx_disabled(dev_priv, pipe);
1907 assert_fdi_rx_disabled(dev_priv, pipe);
1908
Jesse Barnes291906f2011-02-02 12:28:03 -08001909 /* Ports must be off as well */
1910 assert_pch_ports_disabled(dev_priv, pipe);
1911
Daniel Vetterab9412b2013-05-03 11:49:46 +02001912 reg = PCH_TRANSCONF(pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08001913 val = I915_READ(reg);
1914 val &= ~TRANS_ENABLE;
1915 I915_WRITE(reg, val);
1916 /* wait for PCH transcoder off, transcoder state */
1917 if (wait_for((I915_READ(reg) & TRANS_STATE_ENABLE) == 0, 50))
Ville Syrjälä4bb6f1f2013-04-17 17:48:50 +03001918 DRM_ERROR("failed to disable transcoder %c\n", pipe_name(pipe));
Daniel Vetter23670b322012-11-01 09:15:30 +01001919
1920 if (!HAS_PCH_IBX(dev)) {
1921 /* Workaround: Clear the timing override chicken bit again. */
1922 reg = TRANS_CHICKEN2(pipe);
1923 val = I915_READ(reg);
1924 val &= ~TRANS_CHICKEN2_TIMING_OVERRIDE;
1925 I915_WRITE(reg, val);
1926 }
Jesse Barnes040484a2011-01-03 12:14:26 -08001927}
1928
Paulo Zanoniab4d9662012-10-31 18:12:55 -02001929static void lpt_disable_pch_transcoder(struct drm_i915_private *dev_priv)
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001930{
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001931 u32 val;
1932
Daniel Vetterab9412b2013-05-03 11:49:46 +02001933 val = I915_READ(LPT_TRANSCONF);
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001934 val &= ~TRANS_ENABLE;
Daniel Vetterab9412b2013-05-03 11:49:46 +02001935 I915_WRITE(LPT_TRANSCONF, val);
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001936 /* wait for PCH transcoder off, transcoder state */
Daniel Vetterab9412b2013-05-03 11:49:46 +02001937 if (wait_for((I915_READ(LPT_TRANSCONF) & TRANS_STATE_ENABLE) == 0, 50))
Paulo Zanoni8a52fd92012-10-31 18:12:51 -02001938 DRM_ERROR("Failed to disable PCH transcoder\n");
Paulo Zanoni223a6fd2012-10-31 18:12:52 -02001939
1940 /* Workaround: clear timing override bit. */
1941 val = I915_READ(_TRANSA_CHICKEN2);
Daniel Vetter23670b322012-11-01 09:15:30 +01001942 val &= ~TRANS_CHICKEN2_TIMING_OVERRIDE;
Paulo Zanoni223a6fd2012-10-31 18:12:52 -02001943 I915_WRITE(_TRANSA_CHICKEN2, val);
Jesse Barnes92f25842011-01-04 15:09:34 -08001944}
1945
1946/**
Chris Wilson309cfea2011-01-28 13:54:53 +00001947 * intel_enable_pipe - enable a pipe, asserting requirements
Paulo Zanoni03722642014-01-17 13:51:09 -02001948 * @crtc: crtc responsible for the pipe
Jesse Barnesb24e7172011-01-04 15:09:30 -08001949 *
Paulo Zanoni03722642014-01-17 13:51:09 -02001950 * Enable @crtc's pipe, making sure that various hardware specific requirements
Jesse Barnesb24e7172011-01-04 15:09:30 -08001951 * are met, if applicable, e.g. PLL enabled, LVDS pairs enabled, etc.
Jesse Barnesb24e7172011-01-04 15:09:30 -08001952 */
Paulo Zanonie1fdc472014-01-17 13:51:12 -02001953static void intel_enable_pipe(struct intel_crtc *crtc)
Jesse Barnesb24e7172011-01-04 15:09:30 -08001954{
Paulo Zanoni03722642014-01-17 13:51:09 -02001955 struct drm_device *dev = crtc->base.dev;
1956 struct drm_i915_private *dev_priv = dev->dev_private;
1957 enum pipe pipe = crtc->pipe;
Paulo Zanoni702e7a52012-10-23 18:29:59 -02001958 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
1959 pipe);
Daniel Vetter1a240d42012-11-29 22:18:51 +01001960 enum pipe pch_transcoder;
Jesse Barnesb24e7172011-01-04 15:09:30 -08001961 int reg;
1962 u32 val;
1963
Daniel Vetter58c6eaa2013-04-11 16:29:09 +02001964 assert_planes_disabled(dev_priv, pipe);
Jani Nikula93ce0ba2013-09-13 11:03:08 +03001965 assert_cursor_disabled(dev_priv, pipe);
Daniel Vetter58c6eaa2013-04-11 16:29:09 +02001966 assert_sprites_disabled(dev_priv, pipe);
1967
Paulo Zanoni681e5812012-12-06 11:12:38 -02001968 if (HAS_PCH_LPT(dev_priv->dev))
Paulo Zanonicc391bb2012-11-20 13:27:37 -02001969 pch_transcoder = TRANSCODER_A;
1970 else
1971 pch_transcoder = pipe;
1972
Jesse Barnesb24e7172011-01-04 15:09:30 -08001973 /*
1974 * A pipe without a PLL won't actually be able to drive bits from
1975 * a plane. On ILK+ the pipe PLLs are integrated, so we don't
1976 * need the check.
1977 */
1978 if (!HAS_PCH_SPLIT(dev_priv->dev))
Paulo Zanonifbf32182014-01-17 13:51:11 -02001979 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_DSI))
Jani Nikula23538ef2013-08-27 15:12:22 +03001980 assert_dsi_pll_enabled(dev_priv);
1981 else
1982 assert_pll_enabled(dev_priv, pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08001983 else {
Paulo Zanoni30421c42014-01-17 13:51:10 -02001984 if (crtc->config.has_pch_encoder) {
Jesse Barnes040484a2011-01-03 12:14:26 -08001985 /* if driving the PCH, we need FDI enabled */
Paulo Zanonicc391bb2012-11-20 13:27:37 -02001986 assert_fdi_rx_pll_enabled(dev_priv, pch_transcoder);
Daniel Vetter1a240d42012-11-29 22:18:51 +01001987 assert_fdi_tx_pll_enabled(dev_priv,
1988 (enum pipe) cpu_transcoder);
Jesse Barnes040484a2011-01-03 12:14:26 -08001989 }
1990 /* FIXME: assert CPU port conditions for SNB+ */
1991 }
Jesse Barnesb24e7172011-01-04 15:09:30 -08001992
Paulo Zanoni702e7a52012-10-23 18:29:59 -02001993 reg = PIPECONF(cpu_transcoder);
Jesse Barnesb24e7172011-01-04 15:09:30 -08001994 val = I915_READ(reg);
Paulo Zanoni7ad25d42014-01-17 13:51:13 -02001995 if (val & PIPECONF_ENABLE) {
1996 WARN_ON(!(pipe == PIPE_A &&
1997 dev_priv->quirks & QUIRK_PIPEA_FORCE));
Chris Wilson00d70b12011-03-17 07:18:29 +00001998 return;
Paulo Zanoni7ad25d42014-01-17 13:51:13 -02001999 }
Chris Wilson00d70b12011-03-17 07:18:29 +00002000
2001 I915_WRITE(reg, val | PIPECONF_ENABLE);
Paulo Zanoni851855d2013-12-19 19:12:29 -02002002 POSTING_READ(reg);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002003}
2004
2005/**
Chris Wilson309cfea2011-01-28 13:54:53 +00002006 * intel_disable_pipe - disable a pipe, asserting requirements
Jesse Barnesb24e7172011-01-04 15:09:30 -08002007 * @dev_priv: i915 private structure
2008 * @pipe: pipe to disable
2009 *
2010 * Disable @pipe, making sure that various hardware specific requirements
2011 * are met, if applicable, e.g. plane disabled, panel fitter off, etc.
2012 *
2013 * @pipe should be %PIPE_A or %PIPE_B.
2014 *
2015 * Will wait until the pipe has shut down before returning.
2016 */
2017static void intel_disable_pipe(struct drm_i915_private *dev_priv,
2018 enum pipe pipe)
2019{
Paulo Zanoni702e7a52012-10-23 18:29:59 -02002020 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
2021 pipe);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002022 int reg;
2023 u32 val;
2024
2025 /*
2026 * Make sure planes won't keep trying to pump pixels to us,
2027 * or we might hang the display.
2028 */
2029 assert_planes_disabled(dev_priv, pipe);
Jani Nikula93ce0ba2013-09-13 11:03:08 +03002030 assert_cursor_disabled(dev_priv, pipe);
Jesse Barnes19332d72013-03-28 09:55:38 -07002031 assert_sprites_disabled(dev_priv, pipe);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002032
2033 /* Don't disable pipe A or pipe A PLLs if needed */
2034 if (pipe == PIPE_A && (dev_priv->quirks & QUIRK_PIPEA_FORCE))
2035 return;
2036
Paulo Zanoni702e7a52012-10-23 18:29:59 -02002037 reg = PIPECONF(cpu_transcoder);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002038 val = I915_READ(reg);
Chris Wilson00d70b12011-03-17 07:18:29 +00002039 if ((val & PIPECONF_ENABLE) == 0)
2040 return;
2041
2042 I915_WRITE(reg, val & ~PIPECONF_ENABLE);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002043 intel_wait_for_pipe_off(dev_priv->dev, pipe);
2044}
2045
Keith Packardd74362c2011-07-28 14:47:14 -07002046/*
2047 * Plane regs are double buffered, going from enabled->disabled needs a
2048 * trigger in order to latch. The display address reg provides this.
2049 */
Ville Syrjälä1dba99f2013-10-01 18:02:18 +03002050void intel_flush_primary_plane(struct drm_i915_private *dev_priv,
2051 enum plane plane)
Keith Packardd74362c2011-07-28 14:47:14 -07002052{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00002053 struct drm_device *dev = dev_priv->dev;
2054 u32 reg = INTEL_INFO(dev)->gen >= 4 ? DSPSURF(plane) : DSPADDR(plane);
Ville Syrjälä1dba99f2013-10-01 18:02:18 +03002055
2056 I915_WRITE(reg, I915_READ(reg));
2057 POSTING_READ(reg);
Keith Packardd74362c2011-07-28 14:47:14 -07002058}
2059
Jesse Barnesb24e7172011-01-04 15:09:30 -08002060/**
Matt Roper262ca2b2014-03-18 17:22:55 -07002061 * intel_enable_primary_hw_plane - enable the primary plane on a given pipe
Jesse Barnesb24e7172011-01-04 15:09:30 -08002062 * @dev_priv: i915 private structure
2063 * @plane: plane to enable
2064 * @pipe: pipe being fed
2065 *
2066 * Enable @plane on @pipe, making sure that @pipe is running first.
2067 */
Matt Roper262ca2b2014-03-18 17:22:55 -07002068static void intel_enable_primary_hw_plane(struct drm_i915_private *dev_priv,
2069 enum plane plane, enum pipe pipe)
Jesse Barnesb24e7172011-01-04 15:09:30 -08002070{
Ville Syrjälä939c2fe2013-10-01 18:02:10 +03002071 struct intel_crtc *intel_crtc =
2072 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002073 int reg;
2074 u32 val;
2075
2076 /* If the pipe isn't enabled, we can't pump pixels and may hang */
2077 assert_pipe_enabled(dev_priv, pipe);
2078
Ville Syrjälä98ec7732014-04-30 17:43:01 +03002079 if (intel_crtc->primary_enabled)
2080 return;
Ville Syrjälä0037f712013-10-01 18:02:20 +03002081
Ville Syrjälä4c445e02013-10-09 17:24:58 +03002082 intel_crtc->primary_enabled = true;
Ville Syrjälä939c2fe2013-10-01 18:02:10 +03002083
Jesse Barnesb24e7172011-01-04 15:09:30 -08002084 reg = DSPCNTR(plane);
2085 val = I915_READ(reg);
Ville Syrjälä10efa932014-04-28 15:53:25 +03002086 WARN_ON(val & DISPLAY_PLANE_ENABLE);
Chris Wilson00d70b12011-03-17 07:18:29 +00002087
2088 I915_WRITE(reg, val | DISPLAY_PLANE_ENABLE);
Ville Syrjälä1dba99f2013-10-01 18:02:18 +03002089 intel_flush_primary_plane(dev_priv, plane);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002090 intel_wait_for_vblank(dev_priv->dev, pipe);
2091}
2092
Jesse Barnesb24e7172011-01-04 15:09:30 -08002093/**
Matt Roper262ca2b2014-03-18 17:22:55 -07002094 * intel_disable_primary_hw_plane - disable the primary hardware plane
Jesse Barnesb24e7172011-01-04 15:09:30 -08002095 * @dev_priv: i915 private structure
2096 * @plane: plane to disable
2097 * @pipe: pipe consuming the data
2098 *
2099 * Disable @plane; should be an independent operation.
2100 */
Matt Roper262ca2b2014-03-18 17:22:55 -07002101static void intel_disable_primary_hw_plane(struct drm_i915_private *dev_priv,
2102 enum plane plane, enum pipe pipe)
Jesse Barnesb24e7172011-01-04 15:09:30 -08002103{
Ville Syrjälä939c2fe2013-10-01 18:02:10 +03002104 struct intel_crtc *intel_crtc =
2105 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002106 int reg;
2107 u32 val;
2108
Ville Syrjälä98ec7732014-04-30 17:43:01 +03002109 if (!intel_crtc->primary_enabled)
2110 return;
Ville Syrjälä0037f712013-10-01 18:02:20 +03002111
Ville Syrjälä4c445e02013-10-09 17:24:58 +03002112 intel_crtc->primary_enabled = false;
Ville Syrjälä939c2fe2013-10-01 18:02:10 +03002113
Jesse Barnesb24e7172011-01-04 15:09:30 -08002114 reg = DSPCNTR(plane);
2115 val = I915_READ(reg);
Ville Syrjälä10efa932014-04-28 15:53:25 +03002116 WARN_ON((val & DISPLAY_PLANE_ENABLE) == 0);
Chris Wilson00d70b12011-03-17 07:18:29 +00002117
2118 I915_WRITE(reg, val & ~DISPLAY_PLANE_ENABLE);
Ville Syrjälä1dba99f2013-10-01 18:02:18 +03002119 intel_flush_primary_plane(dev_priv, plane);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002120 intel_wait_for_vblank(dev_priv->dev, pipe);
2121}
2122
Chris Wilson693db182013-03-05 14:52:39 +00002123static bool need_vtd_wa(struct drm_device *dev)
2124{
2125#ifdef CONFIG_INTEL_IOMMU
2126 if (INTEL_INFO(dev)->gen >= 6 && intel_iommu_gfx_mapped)
2127 return true;
2128#endif
2129 return false;
2130}
2131
Jesse Barnesa57ce0b2014-02-07 12:10:35 -08002132static int intel_align_height(struct drm_device *dev, int height, bool tiled)
2133{
2134 int tile_height;
2135
2136 tile_height = tiled ? (IS_GEN2(dev) ? 16 : 8) : 1;
2137 return ALIGN(height, tile_height);
2138}
2139
Chris Wilson127bd2a2010-07-23 23:32:05 +01002140int
Chris Wilson48b956c2010-09-14 12:50:34 +01002141intel_pin_and_fence_fb_obj(struct drm_device *dev,
Chris Wilson05394f32010-11-08 19:18:58 +00002142 struct drm_i915_gem_object *obj,
Chris Wilson919926a2010-11-12 13:42:53 +00002143 struct intel_ring_buffer *pipelined)
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002144{
Chris Wilsonce453d82011-02-21 14:43:56 +00002145 struct drm_i915_private *dev_priv = dev->dev_private;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002146 u32 alignment;
2147 int ret;
2148
Chris Wilson05394f32010-11-08 19:18:58 +00002149 switch (obj->tiling_mode) {
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002150 case I915_TILING_NONE:
Chris Wilson534843d2010-07-05 18:01:46 +01002151 if (IS_BROADWATER(dev) || IS_CRESTLINE(dev))
2152 alignment = 128 * 1024;
Chris Wilsona6c45cf2010-09-17 00:32:17 +01002153 else if (INTEL_INFO(dev)->gen >= 4)
Chris Wilson534843d2010-07-05 18:01:46 +01002154 alignment = 4 * 1024;
2155 else
2156 alignment = 64 * 1024;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002157 break;
2158 case I915_TILING_X:
2159 /* pin() will align the object as required by fence */
2160 alignment = 0;
2161 break;
2162 case I915_TILING_Y:
Daniel Vetter80075d42013-10-09 21:23:52 +02002163 WARN(1, "Y tiled bo slipped through, driver bug!\n");
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002164 return -EINVAL;
2165 default:
2166 BUG();
2167 }
2168
Chris Wilson693db182013-03-05 14:52:39 +00002169 /* Note that the w/a also requires 64 PTE of padding following the
2170 * bo. We currently fill all unused PTE with the shadow page and so
2171 * we should always have valid PTE following the scanout preventing
2172 * the VT-d warning.
2173 */
2174 if (need_vtd_wa(dev) && alignment < 256 * 1024)
2175 alignment = 256 * 1024;
2176
Chris Wilsonce453d82011-02-21 14:43:56 +00002177 dev_priv->mm.interruptible = false;
Chris Wilson2da3b9b2011-04-14 09:41:17 +01002178 ret = i915_gem_object_pin_to_display_plane(obj, alignment, pipelined);
Chris Wilson48b956c2010-09-14 12:50:34 +01002179 if (ret)
Chris Wilsonce453d82011-02-21 14:43:56 +00002180 goto err_interruptible;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002181
2182 /* Install a fence for tiled scan-out. Pre-i965 always needs a
2183 * fence, whereas 965+ only requires a fence if using
2184 * framebuffer compression. For simplicity, we always install
2185 * a fence as the cost is not that onerous.
2186 */
Chris Wilson06d98132012-04-17 15:31:24 +01002187 ret = i915_gem_object_get_fence(obj);
Chris Wilson9a5a53b2012-03-22 15:10:00 +00002188 if (ret)
2189 goto err_unpin;
Chris Wilson1690e1e2011-12-14 13:57:08 +01002190
Chris Wilson9a5a53b2012-03-22 15:10:00 +00002191 i915_gem_object_pin_fence(obj);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002192
Chris Wilsonce453d82011-02-21 14:43:56 +00002193 dev_priv->mm.interruptible = true;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002194 return 0;
Chris Wilson48b956c2010-09-14 12:50:34 +01002195
2196err_unpin:
Chris Wilsoncc98b412013-08-09 12:25:09 +01002197 i915_gem_object_unpin_from_display_plane(obj);
Chris Wilsonce453d82011-02-21 14:43:56 +00002198err_interruptible:
2199 dev_priv->mm.interruptible = true;
Chris Wilson48b956c2010-09-14 12:50:34 +01002200 return ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002201}
2202
Chris Wilson1690e1e2011-12-14 13:57:08 +01002203void intel_unpin_fb_obj(struct drm_i915_gem_object *obj)
2204{
2205 i915_gem_object_unpin_fence(obj);
Chris Wilsoncc98b412013-08-09 12:25:09 +01002206 i915_gem_object_unpin_from_display_plane(obj);
Chris Wilson1690e1e2011-12-14 13:57:08 +01002207}
2208
Daniel Vetterc2c75132012-07-05 12:17:30 +02002209/* Computes the linear offset to the base tile and adjusts x, y. bytes per pixel
2210 * is assumed to be a power-of-two. */
Chris Wilsonbc752862013-02-21 20:04:31 +00002211unsigned long intel_gen4_compute_page_offset(int *x, int *y,
2212 unsigned int tiling_mode,
2213 unsigned int cpp,
2214 unsigned int pitch)
Daniel Vetterc2c75132012-07-05 12:17:30 +02002215{
Chris Wilsonbc752862013-02-21 20:04:31 +00002216 if (tiling_mode != I915_TILING_NONE) {
2217 unsigned int tile_rows, tiles;
Daniel Vetterc2c75132012-07-05 12:17:30 +02002218
Chris Wilsonbc752862013-02-21 20:04:31 +00002219 tile_rows = *y / 8;
2220 *y %= 8;
Daniel Vetterc2c75132012-07-05 12:17:30 +02002221
Chris Wilsonbc752862013-02-21 20:04:31 +00002222 tiles = *x / (512/cpp);
2223 *x %= 512/cpp;
2224
2225 return tile_rows * pitch * 8 + tiles * 4096;
2226 } else {
2227 unsigned int offset;
2228
2229 offset = *y * pitch + *x * cpp;
2230 *y = 0;
2231 *x = (offset & 4095) / cpp;
2232 return offset & -4096;
2233 }
Daniel Vetterc2c75132012-07-05 12:17:30 +02002234}
2235
Jesse Barnes46f297f2014-03-07 08:57:48 -08002236int intel_format_to_fourcc(int format)
2237{
2238 switch (format) {
2239 case DISPPLANE_8BPP:
2240 return DRM_FORMAT_C8;
2241 case DISPPLANE_BGRX555:
2242 return DRM_FORMAT_XRGB1555;
2243 case DISPPLANE_BGRX565:
2244 return DRM_FORMAT_RGB565;
2245 default:
2246 case DISPPLANE_BGRX888:
2247 return DRM_FORMAT_XRGB8888;
2248 case DISPPLANE_RGBX888:
2249 return DRM_FORMAT_XBGR8888;
2250 case DISPPLANE_BGRX101010:
2251 return DRM_FORMAT_XRGB2101010;
2252 case DISPPLANE_RGBX101010:
2253 return DRM_FORMAT_XBGR2101010;
2254 }
2255}
2256
Jesse Barnes484b41d2014-03-07 08:57:55 -08002257static bool intel_alloc_plane_obj(struct intel_crtc *crtc,
Jesse Barnes46f297f2014-03-07 08:57:48 -08002258 struct intel_plane_config *plane_config)
2259{
2260 struct drm_device *dev = crtc->base.dev;
2261 struct drm_i915_gem_object *obj = NULL;
2262 struct drm_mode_fb_cmd2 mode_cmd = { 0 };
2263 u32 base = plane_config->base;
2264
Chris Wilsonff2652e2014-03-10 08:07:02 +00002265 if (plane_config->size == 0)
2266 return false;
2267
Jesse Barnes46f297f2014-03-07 08:57:48 -08002268 obj = i915_gem_object_create_stolen_for_preallocated(dev, base, base,
2269 plane_config->size);
2270 if (!obj)
Jesse Barnes484b41d2014-03-07 08:57:55 -08002271 return false;
Jesse Barnes46f297f2014-03-07 08:57:48 -08002272
2273 if (plane_config->tiled) {
2274 obj->tiling_mode = I915_TILING_X;
Dave Airlie66e514c2014-04-03 07:51:54 +10002275 obj->stride = crtc->base.primary->fb->pitches[0];
Jesse Barnes46f297f2014-03-07 08:57:48 -08002276 }
2277
Dave Airlie66e514c2014-04-03 07:51:54 +10002278 mode_cmd.pixel_format = crtc->base.primary->fb->pixel_format;
2279 mode_cmd.width = crtc->base.primary->fb->width;
2280 mode_cmd.height = crtc->base.primary->fb->height;
2281 mode_cmd.pitches[0] = crtc->base.primary->fb->pitches[0];
Jesse Barnes46f297f2014-03-07 08:57:48 -08002282
2283 mutex_lock(&dev->struct_mutex);
2284
Dave Airlie66e514c2014-04-03 07:51:54 +10002285 if (intel_framebuffer_init(dev, to_intel_framebuffer(crtc->base.primary->fb),
Jesse Barnes484b41d2014-03-07 08:57:55 -08002286 &mode_cmd, obj)) {
Jesse Barnes46f297f2014-03-07 08:57:48 -08002287 DRM_DEBUG_KMS("intel fb init failed\n");
2288 goto out_unref_obj;
2289 }
2290
2291 mutex_unlock(&dev->struct_mutex);
Jesse Barnes484b41d2014-03-07 08:57:55 -08002292
2293 DRM_DEBUG_KMS("plane fb obj %p\n", obj);
2294 return true;
Jesse Barnes46f297f2014-03-07 08:57:48 -08002295
2296out_unref_obj:
2297 drm_gem_object_unreference(&obj->base);
2298 mutex_unlock(&dev->struct_mutex);
Jesse Barnes484b41d2014-03-07 08:57:55 -08002299 return false;
2300}
2301
2302static void intel_find_plane_obj(struct intel_crtc *intel_crtc,
2303 struct intel_plane_config *plane_config)
2304{
2305 struct drm_device *dev = intel_crtc->base.dev;
2306 struct drm_crtc *c;
2307 struct intel_crtc *i;
2308 struct intel_framebuffer *fb;
2309
Dave Airlie66e514c2014-04-03 07:51:54 +10002310 if (!intel_crtc->base.primary->fb)
Jesse Barnes484b41d2014-03-07 08:57:55 -08002311 return;
2312
2313 if (intel_alloc_plane_obj(intel_crtc, plane_config))
2314 return;
2315
Dave Airlie66e514c2014-04-03 07:51:54 +10002316 kfree(intel_crtc->base.primary->fb);
2317 intel_crtc->base.primary->fb = NULL;
Jesse Barnes484b41d2014-03-07 08:57:55 -08002318
2319 /*
2320 * Failed to alloc the obj, check to see if we should share
2321 * an fb with another CRTC instead
2322 */
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01002323 for_each_crtc(dev, c) {
Jesse Barnes484b41d2014-03-07 08:57:55 -08002324 i = to_intel_crtc(c);
2325
2326 if (c == &intel_crtc->base)
2327 continue;
2328
Dave Airlie66e514c2014-04-03 07:51:54 +10002329 if (!i->active || !c->primary->fb)
Jesse Barnes484b41d2014-03-07 08:57:55 -08002330 continue;
2331
Dave Airlie66e514c2014-04-03 07:51:54 +10002332 fb = to_intel_framebuffer(c->primary->fb);
Jesse Barnes484b41d2014-03-07 08:57:55 -08002333 if (i915_gem_obj_ggtt_offset(fb->obj) == plane_config->base) {
Dave Airlie66e514c2014-04-03 07:51:54 +10002334 drm_framebuffer_reference(c->primary->fb);
2335 intel_crtc->base.primary->fb = c->primary->fb;
Jesse Barnes484b41d2014-03-07 08:57:55 -08002336 break;
2337 }
2338 }
Jesse Barnes46f297f2014-03-07 08:57:48 -08002339}
2340
Daniel Vetter29b9bde2014-04-24 23:55:01 +02002341static void i9xx_update_primary_plane(struct drm_crtc *crtc,
2342 struct drm_framebuffer *fb,
2343 int x, int y)
Jesse Barnes81255562010-08-02 12:07:50 -07002344{
2345 struct drm_device *dev = crtc->dev;
2346 struct drm_i915_private *dev_priv = dev->dev_private;
2347 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2348 struct intel_framebuffer *intel_fb;
Chris Wilson05394f32010-11-08 19:18:58 +00002349 struct drm_i915_gem_object *obj;
Jesse Barnes81255562010-08-02 12:07:50 -07002350 int plane = intel_crtc->plane;
Daniel Vettere506a0c2012-07-05 12:17:29 +02002351 unsigned long linear_offset;
Jesse Barnes81255562010-08-02 12:07:50 -07002352 u32 dspcntr;
Chris Wilson5eddb702010-09-11 13:48:45 +01002353 u32 reg;
Jesse Barnes81255562010-08-02 12:07:50 -07002354
Jesse Barnes81255562010-08-02 12:07:50 -07002355 intel_fb = to_intel_framebuffer(fb);
2356 obj = intel_fb->obj;
Jesse Barnes81255562010-08-02 12:07:50 -07002357
Chris Wilson5eddb702010-09-11 13:48:45 +01002358 reg = DSPCNTR(plane);
2359 dspcntr = I915_READ(reg);
Jesse Barnes81255562010-08-02 12:07:50 -07002360 /* Mask out pixel format bits in case we change it */
2361 dspcntr &= ~DISPPLANE_PIXFORMAT_MASK;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002362 switch (fb->pixel_format) {
2363 case DRM_FORMAT_C8:
Jesse Barnes81255562010-08-02 12:07:50 -07002364 dspcntr |= DISPPLANE_8BPP;
2365 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002366 case DRM_FORMAT_XRGB1555:
2367 case DRM_FORMAT_ARGB1555:
2368 dspcntr |= DISPPLANE_BGRX555;
Jesse Barnes81255562010-08-02 12:07:50 -07002369 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002370 case DRM_FORMAT_RGB565:
2371 dspcntr |= DISPPLANE_BGRX565;
2372 break;
2373 case DRM_FORMAT_XRGB8888:
2374 case DRM_FORMAT_ARGB8888:
2375 dspcntr |= DISPPLANE_BGRX888;
2376 break;
2377 case DRM_FORMAT_XBGR8888:
2378 case DRM_FORMAT_ABGR8888:
2379 dspcntr |= DISPPLANE_RGBX888;
2380 break;
2381 case DRM_FORMAT_XRGB2101010:
2382 case DRM_FORMAT_ARGB2101010:
2383 dspcntr |= DISPPLANE_BGRX101010;
2384 break;
2385 case DRM_FORMAT_XBGR2101010:
2386 case DRM_FORMAT_ABGR2101010:
2387 dspcntr |= DISPPLANE_RGBX101010;
Jesse Barnes81255562010-08-02 12:07:50 -07002388 break;
2389 default:
Daniel Vetterbaba1332013-03-27 00:45:00 +01002390 BUG();
Jesse Barnes81255562010-08-02 12:07:50 -07002391 }
Ville Syrjälä57779d02012-10-31 17:50:14 +02002392
Chris Wilsona6c45cf2010-09-17 00:32:17 +01002393 if (INTEL_INFO(dev)->gen >= 4) {
Chris Wilson05394f32010-11-08 19:18:58 +00002394 if (obj->tiling_mode != I915_TILING_NONE)
Jesse Barnes81255562010-08-02 12:07:50 -07002395 dspcntr |= DISPPLANE_TILED;
2396 else
2397 dspcntr &= ~DISPPLANE_TILED;
2398 }
2399
Ville Syrjäläde1aa622013-06-07 10:47:01 +03002400 if (IS_G4X(dev))
2401 dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE;
2402
Chris Wilson5eddb702010-09-11 13:48:45 +01002403 I915_WRITE(reg, dspcntr);
Jesse Barnes81255562010-08-02 12:07:50 -07002404
Daniel Vettere506a0c2012-07-05 12:17:29 +02002405 linear_offset = y * fb->pitches[0] + x * (fb->bits_per_pixel / 8);
Jesse Barnes81255562010-08-02 12:07:50 -07002406
Daniel Vetterc2c75132012-07-05 12:17:30 +02002407 if (INTEL_INFO(dev)->gen >= 4) {
2408 intel_crtc->dspaddr_offset =
Chris Wilsonbc752862013-02-21 20:04:31 +00002409 intel_gen4_compute_page_offset(&x, &y, obj->tiling_mode,
2410 fb->bits_per_pixel / 8,
2411 fb->pitches[0]);
Daniel Vetterc2c75132012-07-05 12:17:30 +02002412 linear_offset -= intel_crtc->dspaddr_offset;
2413 } else {
Daniel Vettere506a0c2012-07-05 12:17:29 +02002414 intel_crtc->dspaddr_offset = linear_offset;
Daniel Vetterc2c75132012-07-05 12:17:30 +02002415 }
Daniel Vettere506a0c2012-07-05 12:17:29 +02002416
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002417 DRM_DEBUG_KMS("Writing base %08lX %08lX %d %d %d\n",
2418 i915_gem_obj_ggtt_offset(obj), linear_offset, x, y,
2419 fb->pitches[0]);
Ville Syrjälä01f2c772011-12-20 00:06:49 +02002420 I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]);
Chris Wilsona6c45cf2010-09-17 00:32:17 +01002421 if (INTEL_INFO(dev)->gen >= 4) {
Daniel Vetter85ba7b72014-01-24 10:31:44 +01002422 I915_WRITE(DSPSURF(plane),
2423 i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset);
Chris Wilson5eddb702010-09-11 13:48:45 +01002424 I915_WRITE(DSPTILEOFF(plane), (y << 16) | x);
Daniel Vettere506a0c2012-07-05 12:17:29 +02002425 I915_WRITE(DSPLINOFF(plane), linear_offset);
Chris Wilson5eddb702010-09-11 13:48:45 +01002426 } else
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002427 I915_WRITE(DSPADDR(plane), i915_gem_obj_ggtt_offset(obj) + linear_offset);
Chris Wilson5eddb702010-09-11 13:48:45 +01002428 POSTING_READ(reg);
Jesse Barnes17638cd2011-06-24 12:19:23 -07002429}
2430
Daniel Vetter29b9bde2014-04-24 23:55:01 +02002431static void ironlake_update_primary_plane(struct drm_crtc *crtc,
2432 struct drm_framebuffer *fb,
2433 int x, int y)
Jesse Barnes17638cd2011-06-24 12:19:23 -07002434{
2435 struct drm_device *dev = crtc->dev;
2436 struct drm_i915_private *dev_priv = dev->dev_private;
2437 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2438 struct intel_framebuffer *intel_fb;
2439 struct drm_i915_gem_object *obj;
2440 int plane = intel_crtc->plane;
Daniel Vettere506a0c2012-07-05 12:17:29 +02002441 unsigned long linear_offset;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002442 u32 dspcntr;
2443 u32 reg;
2444
Jesse Barnes17638cd2011-06-24 12:19:23 -07002445 intel_fb = to_intel_framebuffer(fb);
2446 obj = intel_fb->obj;
2447
2448 reg = DSPCNTR(plane);
2449 dspcntr = I915_READ(reg);
2450 /* Mask out pixel format bits in case we change it */
2451 dspcntr &= ~DISPPLANE_PIXFORMAT_MASK;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002452 switch (fb->pixel_format) {
2453 case DRM_FORMAT_C8:
Jesse Barnes17638cd2011-06-24 12:19:23 -07002454 dspcntr |= DISPPLANE_8BPP;
2455 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002456 case DRM_FORMAT_RGB565:
2457 dspcntr |= DISPPLANE_BGRX565;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002458 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002459 case DRM_FORMAT_XRGB8888:
2460 case DRM_FORMAT_ARGB8888:
2461 dspcntr |= DISPPLANE_BGRX888;
2462 break;
2463 case DRM_FORMAT_XBGR8888:
2464 case DRM_FORMAT_ABGR8888:
2465 dspcntr |= DISPPLANE_RGBX888;
2466 break;
2467 case DRM_FORMAT_XRGB2101010:
2468 case DRM_FORMAT_ARGB2101010:
2469 dspcntr |= DISPPLANE_BGRX101010;
2470 break;
2471 case DRM_FORMAT_XBGR2101010:
2472 case DRM_FORMAT_ABGR2101010:
2473 dspcntr |= DISPPLANE_RGBX101010;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002474 break;
2475 default:
Daniel Vetterbaba1332013-03-27 00:45:00 +01002476 BUG();
Jesse Barnes17638cd2011-06-24 12:19:23 -07002477 }
2478
2479 if (obj->tiling_mode != I915_TILING_NONE)
2480 dspcntr |= DISPPLANE_TILED;
2481 else
2482 dspcntr &= ~DISPPLANE_TILED;
2483
Ville Syrjäläb42c6002013-11-03 13:47:27 +02002484 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Paulo Zanoni1f5d76d2013-08-23 19:51:28 -03002485 dspcntr &= ~DISPPLANE_TRICKLE_FEED_DISABLE;
2486 else
2487 dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002488
2489 I915_WRITE(reg, dspcntr);
2490
Daniel Vettere506a0c2012-07-05 12:17:29 +02002491 linear_offset = y * fb->pitches[0] + x * (fb->bits_per_pixel / 8);
Daniel Vetterc2c75132012-07-05 12:17:30 +02002492 intel_crtc->dspaddr_offset =
Chris Wilsonbc752862013-02-21 20:04:31 +00002493 intel_gen4_compute_page_offset(&x, &y, obj->tiling_mode,
2494 fb->bits_per_pixel / 8,
2495 fb->pitches[0]);
Daniel Vetterc2c75132012-07-05 12:17:30 +02002496 linear_offset -= intel_crtc->dspaddr_offset;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002497
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002498 DRM_DEBUG_KMS("Writing base %08lX %08lX %d %d %d\n",
2499 i915_gem_obj_ggtt_offset(obj), linear_offset, x, y,
2500 fb->pitches[0]);
Ville Syrjälä01f2c772011-12-20 00:06:49 +02002501 I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]);
Daniel Vetter85ba7b72014-01-24 10:31:44 +01002502 I915_WRITE(DSPSURF(plane),
2503 i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset);
Paulo Zanonib3dc6852013-11-02 21:07:33 -07002504 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Damien Lespiaubc1c91e2012-10-29 12:14:21 +00002505 I915_WRITE(DSPOFFSET(plane), (y << 16) | x);
2506 } else {
2507 I915_WRITE(DSPTILEOFF(plane), (y << 16) | x);
2508 I915_WRITE(DSPLINOFF(plane), linear_offset);
2509 }
Jesse Barnes17638cd2011-06-24 12:19:23 -07002510 POSTING_READ(reg);
Jesse Barnes17638cd2011-06-24 12:19:23 -07002511}
2512
2513/* Assume fb object is pinned & idle & fenced and just update base pointers */
2514static int
2515intel_pipe_set_base_atomic(struct drm_crtc *crtc, struct drm_framebuffer *fb,
2516 int x, int y, enum mode_set_atomic state)
2517{
2518 struct drm_device *dev = crtc->dev;
2519 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002520
Chris Wilson6b8e6ed2012-04-17 15:08:19 +01002521 if (dev_priv->display.disable_fbc)
2522 dev_priv->display.disable_fbc(dev);
Daniel Vetter3dec0092010-08-20 21:40:52 +02002523 intel_increase_pllclock(crtc);
Jesse Barnes81255562010-08-02 12:07:50 -07002524
Daniel Vetter29b9bde2014-04-24 23:55:01 +02002525 dev_priv->display.update_primary_plane(crtc, fb, x, y);
2526
2527 return 0;
Jesse Barnes81255562010-08-02 12:07:50 -07002528}
2529
Ville Syrjälä96a02912013-02-18 19:08:49 +02002530void intel_display_handle_reset(struct drm_device *dev)
2531{
2532 struct drm_i915_private *dev_priv = dev->dev_private;
2533 struct drm_crtc *crtc;
2534
2535 /*
2536 * Flips in the rings have been nuked by the reset,
2537 * so complete all pending flips so that user space
2538 * will get its events and not get stuck.
2539 *
2540 * Also update the base address of all primary
2541 * planes to the the last fb to make sure we're
2542 * showing the correct fb after a reset.
2543 *
2544 * Need to make two loops over the crtcs so that we
2545 * don't try to grab a crtc mutex before the
2546 * pending_flip_queue really got woken up.
2547 */
2548
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01002549 for_each_crtc(dev, crtc) {
Ville Syrjälä96a02912013-02-18 19:08:49 +02002550 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2551 enum plane plane = intel_crtc->plane;
2552
2553 intel_prepare_page_flip(dev, plane);
2554 intel_finish_page_flip_plane(dev, plane);
2555 }
2556
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01002557 for_each_crtc(dev, crtc) {
Ville Syrjälä96a02912013-02-18 19:08:49 +02002558 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2559
2560 mutex_lock(&crtc->mutex);
Chris Wilson947fdaadf2013-11-27 12:01:32 +00002561 /*
2562 * FIXME: Once we have proper support for primary planes (and
2563 * disabling them without disabling the entire crtc) allow again
Dave Airlie66e514c2014-04-03 07:51:54 +10002564 * a NULL crtc->primary->fb.
Chris Wilson947fdaadf2013-11-27 12:01:32 +00002565 */
Matt Roperf4510a22014-04-01 15:22:40 -07002566 if (intel_crtc->active && crtc->primary->fb)
Matt Roper262ca2b2014-03-18 17:22:55 -07002567 dev_priv->display.update_primary_plane(crtc,
Dave Airlie66e514c2014-04-03 07:51:54 +10002568 crtc->primary->fb,
Matt Roper262ca2b2014-03-18 17:22:55 -07002569 crtc->x,
2570 crtc->y);
Ville Syrjälä96a02912013-02-18 19:08:49 +02002571 mutex_unlock(&crtc->mutex);
2572 }
2573}
2574
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002575static int
Chris Wilson14667a42012-04-03 17:58:35 +01002576intel_finish_fb(struct drm_framebuffer *old_fb)
2577{
2578 struct drm_i915_gem_object *obj = to_intel_framebuffer(old_fb)->obj;
2579 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
2580 bool was_interruptible = dev_priv->mm.interruptible;
2581 int ret;
2582
Chris Wilson14667a42012-04-03 17:58:35 +01002583 /* Big Hammer, we also need to ensure that any pending
2584 * MI_WAIT_FOR_EVENT inside a user batch buffer on the
2585 * current scanout is retired before unpinning the old
2586 * framebuffer.
2587 *
2588 * This should only fail upon a hung GPU, in which case we
2589 * can safely continue.
2590 */
2591 dev_priv->mm.interruptible = false;
2592 ret = i915_gem_object_finish_gpu(obj);
2593 dev_priv->mm.interruptible = was_interruptible;
2594
2595 return ret;
2596}
2597
Chris Wilson7d5e3792014-03-04 13:15:08 +00002598static bool intel_crtc_has_pending_flip(struct drm_crtc *crtc)
2599{
2600 struct drm_device *dev = crtc->dev;
2601 struct drm_i915_private *dev_priv = dev->dev_private;
2602 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2603 unsigned long flags;
2604 bool pending;
2605
2606 if (i915_reset_in_progress(&dev_priv->gpu_error) ||
2607 intel_crtc->reset_counter != atomic_read(&dev_priv->gpu_error.reset_counter))
2608 return false;
2609
2610 spin_lock_irqsave(&dev->event_lock, flags);
2611 pending = to_intel_crtc(crtc)->unpin_work != NULL;
2612 spin_unlock_irqrestore(&dev->event_lock, flags);
2613
2614 return pending;
2615}
2616
Chris Wilson14667a42012-04-03 17:58:35 +01002617static int
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -05002618intel_pipe_set_base(struct drm_crtc *crtc, int x, int y,
Daniel Vetter94352cf2012-07-05 22:51:56 +02002619 struct drm_framebuffer *fb)
Jesse Barnes79e53942008-11-07 14:24:08 -08002620{
2621 struct drm_device *dev = crtc->dev;
Chris Wilson6b8e6ed2012-04-17 15:08:19 +01002622 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -08002623 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter94352cf2012-07-05 22:51:56 +02002624 struct drm_framebuffer *old_fb;
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002625 int ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08002626
Chris Wilson7d5e3792014-03-04 13:15:08 +00002627 if (intel_crtc_has_pending_flip(crtc)) {
2628 DRM_ERROR("pipe is still busy with an old pageflip\n");
2629 return -EBUSY;
2630 }
2631
Jesse Barnes79e53942008-11-07 14:24:08 -08002632 /* no fb bound */
Daniel Vetter94352cf2012-07-05 22:51:56 +02002633 if (!fb) {
Jesse Barnesa5071c22011-07-19 15:38:56 -07002634 DRM_ERROR("No FB bound\n");
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002635 return 0;
2636 }
2637
Ben Widawsky7eb552a2013-03-13 14:05:41 -07002638 if (intel_crtc->plane > INTEL_INFO(dev)->num_pipes) {
Ville Syrjälä84f44ce2013-04-17 17:48:49 +03002639 DRM_ERROR("no plane for crtc: plane %c, num_pipes %d\n",
2640 plane_name(intel_crtc->plane),
2641 INTEL_INFO(dev)->num_pipes);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002642 return -EINVAL;
Jesse Barnes79e53942008-11-07 14:24:08 -08002643 }
2644
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002645 mutex_lock(&dev->struct_mutex);
Chris Wilson265db952010-09-20 15:41:01 +01002646 ret = intel_pin_and_fence_fb_obj(dev,
Daniel Vetter94352cf2012-07-05 22:51:56 +02002647 to_intel_framebuffer(fb)->obj,
Chris Wilson919926a2010-11-12 13:42:53 +00002648 NULL);
Ville Syrjälä8ac36ec2014-03-11 19:37:33 +02002649 mutex_unlock(&dev->struct_mutex);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002650 if (ret != 0) {
Jesse Barnesa5071c22011-07-19 15:38:56 -07002651 DRM_ERROR("pin & fence failed\n");
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002652 return ret;
2653 }
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -05002654
Damien Lespiaubb2043d2013-09-30 14:21:49 +01002655 /*
2656 * Update pipe size and adjust fitter if needed: the reason for this is
2657 * that in compute_mode_changes we check the native mode (not the pfit
2658 * mode) to see if we can flip rather than do a full mode set. In the
2659 * fastboot case, we'll flip, but if we don't update the pipesrc and
2660 * pfit state, we'll end up with a big fb scanned out into the wrong
2661 * sized surface.
2662 *
2663 * To fix this properly, we need to hoist the checks up into
2664 * compute_mode_changes (or above), check the actual pfit state and
2665 * whether the platform allows pfit disable with pipe active, and only
2666 * then update the pipesrc and pfit state, even on the flip path.
2667 */
Jani Nikulad330a952014-01-21 11:24:25 +02002668 if (i915.fastboot) {
Damien Lespiaud7bf63f2013-09-30 14:21:50 +01002669 const struct drm_display_mode *adjusted_mode =
2670 &intel_crtc->config.adjusted_mode;
2671
Jesse Barnes4d6a3e62013-06-26 01:38:18 +03002672 I915_WRITE(PIPESRC(intel_crtc->pipe),
Damien Lespiaud7bf63f2013-09-30 14:21:50 +01002673 ((adjusted_mode->crtc_hdisplay - 1) << 16) |
2674 (adjusted_mode->crtc_vdisplay - 1));
Chris Wilsonfd4daa92013-08-27 17:04:17 +01002675 if (!intel_crtc->config.pch_pfit.enabled &&
Jesse Barnes4d6a3e62013-06-26 01:38:18 +03002676 (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) ||
2677 intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP))) {
2678 I915_WRITE(PF_CTL(intel_crtc->pipe), 0);
2679 I915_WRITE(PF_WIN_POS(intel_crtc->pipe), 0);
2680 I915_WRITE(PF_WIN_SZ(intel_crtc->pipe), 0);
2681 }
Jesse Barnes0637d602013-12-19 10:48:01 -08002682 intel_crtc->config.pipe_src_w = adjusted_mode->crtc_hdisplay;
2683 intel_crtc->config.pipe_src_h = adjusted_mode->crtc_vdisplay;
Jesse Barnes4d6a3e62013-06-26 01:38:18 +03002684 }
2685
Daniel Vetter29b9bde2014-04-24 23:55:01 +02002686 dev_priv->display.update_primary_plane(crtc, fb, x, y);
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -05002687
Matt Roperf4510a22014-04-01 15:22:40 -07002688 old_fb = crtc->primary->fb;
2689 crtc->primary->fb = fb;
Daniel Vetter6c4c86f2012-09-10 21:58:30 +02002690 crtc->x = x;
2691 crtc->y = y;
Daniel Vetter94352cf2012-07-05 22:51:56 +02002692
Chris Wilsonb7f1de22010-12-14 16:09:31 +00002693 if (old_fb) {
Daniel Vetterd7697ee2013-06-02 17:23:01 +02002694 if (intel_crtc->active && old_fb != fb)
2695 intel_wait_for_vblank(dev, intel_crtc->pipe);
Ville Syrjälä8ac36ec2014-03-11 19:37:33 +02002696 mutex_lock(&dev->struct_mutex);
Chris Wilson1690e1e2011-12-14 13:57:08 +01002697 intel_unpin_fb_obj(to_intel_framebuffer(old_fb)->obj);
Ville Syrjälä8ac36ec2014-03-11 19:37:33 +02002698 mutex_unlock(&dev->struct_mutex);
Chris Wilsonb7f1de22010-12-14 16:09:31 +00002699 }
Jesse Barnes652c3932009-08-17 13:31:43 -07002700
Ville Syrjälä8ac36ec2014-03-11 19:37:33 +02002701 mutex_lock(&dev->struct_mutex);
Chris Wilson6b8e6ed2012-04-17 15:08:19 +01002702 intel_update_fbc(dev);
Rodrigo Vivi49065572013-07-11 18:45:05 -03002703 intel_edp_psr_update(dev);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002704 mutex_unlock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -08002705
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002706 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08002707}
2708
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08002709static void intel_fdi_normal_train(struct drm_crtc *crtc)
2710{
2711 struct drm_device *dev = crtc->dev;
2712 struct drm_i915_private *dev_priv = dev->dev_private;
2713 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2714 int pipe = intel_crtc->pipe;
2715 u32 reg, temp;
2716
2717 /* enable normal train */
2718 reg = FDI_TX_CTL(pipe);
2719 temp = I915_READ(reg);
Keith Packard61e499b2011-05-17 16:13:52 -07002720 if (IS_IVYBRIDGE(dev)) {
Jesse Barnes357555c2011-04-28 15:09:55 -07002721 temp &= ~FDI_LINK_TRAIN_NONE_IVB;
2722 temp |= FDI_LINK_TRAIN_NONE_IVB | FDI_TX_ENHANCE_FRAME_ENABLE;
Keith Packard61e499b2011-05-17 16:13:52 -07002723 } else {
2724 temp &= ~FDI_LINK_TRAIN_NONE;
2725 temp |= FDI_LINK_TRAIN_NONE | FDI_TX_ENHANCE_FRAME_ENABLE;
Jesse Barnes357555c2011-04-28 15:09:55 -07002726 }
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08002727 I915_WRITE(reg, temp);
2728
2729 reg = FDI_RX_CTL(pipe);
2730 temp = I915_READ(reg);
2731 if (HAS_PCH_CPT(dev)) {
2732 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2733 temp |= FDI_LINK_TRAIN_NORMAL_CPT;
2734 } else {
2735 temp &= ~FDI_LINK_TRAIN_NONE;
2736 temp |= FDI_LINK_TRAIN_NONE;
2737 }
2738 I915_WRITE(reg, temp | FDI_RX_ENHANCE_FRAME_ENABLE);
2739
2740 /* wait one idle pattern time */
2741 POSTING_READ(reg);
2742 udelay(1000);
Jesse Barnes357555c2011-04-28 15:09:55 -07002743
2744 /* IVB wants error correction enabled */
2745 if (IS_IVYBRIDGE(dev))
2746 I915_WRITE(reg, I915_READ(reg) | FDI_FS_ERRC_ENABLE |
2747 FDI_FE_ERRC_ENABLE);
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08002748}
2749
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01002750static bool pipe_has_enabled_pch(struct intel_crtc *crtc)
Daniel Vetter1e833f42013-02-19 22:31:57 +01002751{
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01002752 return crtc->base.enabled && crtc->active &&
2753 crtc->config.has_pch_encoder;
Daniel Vetter1e833f42013-02-19 22:31:57 +01002754}
2755
Daniel Vetter01a415f2012-10-27 15:58:40 +02002756static void ivb_modeset_global_resources(struct drm_device *dev)
2757{
2758 struct drm_i915_private *dev_priv = dev->dev_private;
2759 struct intel_crtc *pipe_B_crtc =
2760 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[PIPE_B]);
2761 struct intel_crtc *pipe_C_crtc =
2762 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[PIPE_C]);
2763 uint32_t temp;
2764
Daniel Vetter1e833f42013-02-19 22:31:57 +01002765 /*
2766 * When everything is off disable fdi C so that we could enable fdi B
2767 * with all lanes. Note that we don't care about enabled pipes without
2768 * an enabled pch encoder.
2769 */
2770 if (!pipe_has_enabled_pch(pipe_B_crtc) &&
2771 !pipe_has_enabled_pch(pipe_C_crtc)) {
Daniel Vetter01a415f2012-10-27 15:58:40 +02002772 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_B)) & FDI_RX_ENABLE);
2773 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_C)) & FDI_RX_ENABLE);
2774
2775 temp = I915_READ(SOUTH_CHICKEN1);
2776 temp &= ~FDI_BC_BIFURCATION_SELECT;
2777 DRM_DEBUG_KMS("disabling fdi C rx\n");
2778 I915_WRITE(SOUTH_CHICKEN1, temp);
2779 }
2780}
2781
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002782/* The FDI link training functions for ILK/Ibexpeak. */
2783static void ironlake_fdi_link_train(struct drm_crtc *crtc)
2784{
2785 struct drm_device *dev = crtc->dev;
2786 struct drm_i915_private *dev_priv = dev->dev_private;
2787 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2788 int pipe = intel_crtc->pipe;
Chris Wilson5eddb702010-09-11 13:48:45 +01002789 u32 reg, temp, tries;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002790
Ville Syrjälä1c8562f2014-04-25 22:12:07 +03002791 /* FDI needs bits from pipe first */
Jesse Barnes0fc932b2011-01-04 15:09:37 -08002792 assert_pipe_enabled(dev_priv, pipe);
Jesse Barnes0fc932b2011-01-04 15:09:37 -08002793
Adam Jacksone1a44742010-06-25 15:32:14 -04002794 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
2795 for train result */
Chris Wilson5eddb702010-09-11 13:48:45 +01002796 reg = FDI_RX_IMR(pipe);
2797 temp = I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04002798 temp &= ~FDI_RX_SYMBOL_LOCK;
2799 temp &= ~FDI_RX_BIT_LOCK;
Chris Wilson5eddb702010-09-11 13:48:45 +01002800 I915_WRITE(reg, temp);
2801 I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04002802 udelay(150);
2803
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002804 /* enable CPU FDI TX and PCH FDI RX */
Chris Wilson5eddb702010-09-11 13:48:45 +01002805 reg = FDI_TX_CTL(pipe);
2806 temp = I915_READ(reg);
Daniel Vetter627eb5a2013-04-29 19:33:42 +02002807 temp &= ~FDI_DP_PORT_WIDTH_MASK;
2808 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config.fdi_lanes);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002809 temp &= ~FDI_LINK_TRAIN_NONE;
2810 temp |= FDI_LINK_TRAIN_PATTERN_1;
Chris Wilson5eddb702010-09-11 13:48:45 +01002811 I915_WRITE(reg, temp | FDI_TX_ENABLE);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002812
Chris Wilson5eddb702010-09-11 13:48:45 +01002813 reg = FDI_RX_CTL(pipe);
2814 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002815 temp &= ~FDI_LINK_TRAIN_NONE;
2816 temp |= FDI_LINK_TRAIN_PATTERN_1;
Chris Wilson5eddb702010-09-11 13:48:45 +01002817 I915_WRITE(reg, temp | FDI_RX_ENABLE);
2818
2819 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002820 udelay(150);
2821
Jesse Barnes5b2adf82010-10-07 16:01:15 -07002822 /* Ironlake workaround, enable clock pointer after FDI enable*/
Daniel Vetter8f5718a2012-10-31 22:52:28 +01002823 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR);
2824 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR |
2825 FDI_RX_PHASE_SYNC_POINTER_EN);
Jesse Barnes5b2adf82010-10-07 16:01:15 -07002826
Chris Wilson5eddb702010-09-11 13:48:45 +01002827 reg = FDI_RX_IIR(pipe);
Adam Jacksone1a44742010-06-25 15:32:14 -04002828 for (tries = 0; tries < 5; tries++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002829 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002830 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2831
2832 if ((temp & FDI_RX_BIT_LOCK)) {
2833 DRM_DEBUG_KMS("FDI train 1 done.\n");
Chris Wilson5eddb702010-09-11 13:48:45 +01002834 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002835 break;
2836 }
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002837 }
Adam Jacksone1a44742010-06-25 15:32:14 -04002838 if (tries == 5)
Chris Wilson5eddb702010-09-11 13:48:45 +01002839 DRM_ERROR("FDI train 1 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002840
2841 /* Train 2 */
Chris Wilson5eddb702010-09-11 13:48:45 +01002842 reg = FDI_TX_CTL(pipe);
2843 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002844 temp &= ~FDI_LINK_TRAIN_NONE;
2845 temp |= FDI_LINK_TRAIN_PATTERN_2;
Chris Wilson5eddb702010-09-11 13:48:45 +01002846 I915_WRITE(reg, temp);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002847
Chris Wilson5eddb702010-09-11 13:48:45 +01002848 reg = FDI_RX_CTL(pipe);
2849 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002850 temp &= ~FDI_LINK_TRAIN_NONE;
2851 temp |= FDI_LINK_TRAIN_PATTERN_2;
Chris Wilson5eddb702010-09-11 13:48:45 +01002852 I915_WRITE(reg, temp);
2853
2854 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002855 udelay(150);
2856
Chris Wilson5eddb702010-09-11 13:48:45 +01002857 reg = FDI_RX_IIR(pipe);
Adam Jacksone1a44742010-06-25 15:32:14 -04002858 for (tries = 0; tries < 5; tries++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002859 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002860 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2861
2862 if (temp & FDI_RX_SYMBOL_LOCK) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002863 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002864 DRM_DEBUG_KMS("FDI train 2 done.\n");
2865 break;
2866 }
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002867 }
Adam Jacksone1a44742010-06-25 15:32:14 -04002868 if (tries == 5)
Chris Wilson5eddb702010-09-11 13:48:45 +01002869 DRM_ERROR("FDI train 2 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002870
2871 DRM_DEBUG_KMS("FDI train done\n");
Jesse Barnes5c5313c2010-10-07 16:01:11 -07002872
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002873}
2874
Akshay Joshi0206e352011-08-16 15:34:10 -04002875static const int snb_b_fdi_train_param[] = {
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002876 FDI_LINK_TRAIN_400MV_0DB_SNB_B,
2877 FDI_LINK_TRAIN_400MV_6DB_SNB_B,
2878 FDI_LINK_TRAIN_600MV_3_5DB_SNB_B,
2879 FDI_LINK_TRAIN_800MV_0DB_SNB_B,
2880};
2881
2882/* The FDI link training functions for SNB/Cougarpoint. */
2883static void gen6_fdi_link_train(struct drm_crtc *crtc)
2884{
2885 struct drm_device *dev = crtc->dev;
2886 struct drm_i915_private *dev_priv = dev->dev_private;
2887 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2888 int pipe = intel_crtc->pipe;
Sean Paulfa37d392012-03-02 12:53:39 -05002889 u32 reg, temp, i, retry;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002890
Adam Jacksone1a44742010-06-25 15:32:14 -04002891 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
2892 for train result */
Chris Wilson5eddb702010-09-11 13:48:45 +01002893 reg = FDI_RX_IMR(pipe);
2894 temp = I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04002895 temp &= ~FDI_RX_SYMBOL_LOCK;
2896 temp &= ~FDI_RX_BIT_LOCK;
Chris Wilson5eddb702010-09-11 13:48:45 +01002897 I915_WRITE(reg, temp);
2898
2899 POSTING_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04002900 udelay(150);
2901
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002902 /* enable CPU FDI TX and PCH FDI RX */
Chris Wilson5eddb702010-09-11 13:48:45 +01002903 reg = FDI_TX_CTL(pipe);
2904 temp = I915_READ(reg);
Daniel Vetter627eb5a2013-04-29 19:33:42 +02002905 temp &= ~FDI_DP_PORT_WIDTH_MASK;
2906 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config.fdi_lanes);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002907 temp &= ~FDI_LINK_TRAIN_NONE;
2908 temp |= FDI_LINK_TRAIN_PATTERN_1;
2909 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2910 /* SNB-B */
2911 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
Chris Wilson5eddb702010-09-11 13:48:45 +01002912 I915_WRITE(reg, temp | FDI_TX_ENABLE);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002913
Daniel Vetterd74cf322012-10-26 10:58:13 +02002914 I915_WRITE(FDI_RX_MISC(pipe),
2915 FDI_RX_TP1_TO_TP2_48 | FDI_RX_FDI_DELAY_90);
2916
Chris Wilson5eddb702010-09-11 13:48:45 +01002917 reg = FDI_RX_CTL(pipe);
2918 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002919 if (HAS_PCH_CPT(dev)) {
2920 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2921 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
2922 } else {
2923 temp &= ~FDI_LINK_TRAIN_NONE;
2924 temp |= FDI_LINK_TRAIN_PATTERN_1;
2925 }
Chris Wilson5eddb702010-09-11 13:48:45 +01002926 I915_WRITE(reg, temp | FDI_RX_ENABLE);
2927
2928 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002929 udelay(150);
2930
Akshay Joshi0206e352011-08-16 15:34:10 -04002931 for (i = 0; i < 4; i++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002932 reg = FDI_TX_CTL(pipe);
2933 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002934 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2935 temp |= snb_b_fdi_train_param[i];
Chris Wilson5eddb702010-09-11 13:48:45 +01002936 I915_WRITE(reg, temp);
2937
2938 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002939 udelay(500);
2940
Sean Paulfa37d392012-03-02 12:53:39 -05002941 for (retry = 0; retry < 5; retry++) {
2942 reg = FDI_RX_IIR(pipe);
2943 temp = I915_READ(reg);
2944 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2945 if (temp & FDI_RX_BIT_LOCK) {
2946 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
2947 DRM_DEBUG_KMS("FDI train 1 done.\n");
2948 break;
2949 }
2950 udelay(50);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002951 }
Sean Paulfa37d392012-03-02 12:53:39 -05002952 if (retry < 5)
2953 break;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002954 }
2955 if (i == 4)
Chris Wilson5eddb702010-09-11 13:48:45 +01002956 DRM_ERROR("FDI train 1 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002957
2958 /* Train 2 */
Chris Wilson5eddb702010-09-11 13:48:45 +01002959 reg = FDI_TX_CTL(pipe);
2960 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002961 temp &= ~FDI_LINK_TRAIN_NONE;
2962 temp |= FDI_LINK_TRAIN_PATTERN_2;
2963 if (IS_GEN6(dev)) {
2964 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2965 /* SNB-B */
2966 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
2967 }
Chris Wilson5eddb702010-09-11 13:48:45 +01002968 I915_WRITE(reg, temp);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002969
Chris Wilson5eddb702010-09-11 13:48:45 +01002970 reg = FDI_RX_CTL(pipe);
2971 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002972 if (HAS_PCH_CPT(dev)) {
2973 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2974 temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
2975 } else {
2976 temp &= ~FDI_LINK_TRAIN_NONE;
2977 temp |= FDI_LINK_TRAIN_PATTERN_2;
2978 }
Chris Wilson5eddb702010-09-11 13:48:45 +01002979 I915_WRITE(reg, temp);
2980
2981 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002982 udelay(150);
2983
Akshay Joshi0206e352011-08-16 15:34:10 -04002984 for (i = 0; i < 4; i++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002985 reg = FDI_TX_CTL(pipe);
2986 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002987 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2988 temp |= snb_b_fdi_train_param[i];
Chris Wilson5eddb702010-09-11 13:48:45 +01002989 I915_WRITE(reg, temp);
2990
2991 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002992 udelay(500);
2993
Sean Paulfa37d392012-03-02 12:53:39 -05002994 for (retry = 0; retry < 5; retry++) {
2995 reg = FDI_RX_IIR(pipe);
2996 temp = I915_READ(reg);
2997 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2998 if (temp & FDI_RX_SYMBOL_LOCK) {
2999 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
3000 DRM_DEBUG_KMS("FDI train 2 done.\n");
3001 break;
3002 }
3003 udelay(50);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003004 }
Sean Paulfa37d392012-03-02 12:53:39 -05003005 if (retry < 5)
3006 break;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003007 }
3008 if (i == 4)
Chris Wilson5eddb702010-09-11 13:48:45 +01003009 DRM_ERROR("FDI train 2 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003010
3011 DRM_DEBUG_KMS("FDI train done.\n");
3012}
3013
Jesse Barnes357555c2011-04-28 15:09:55 -07003014/* Manual link training for Ivy Bridge A0 parts */
3015static void ivb_manual_fdi_link_train(struct drm_crtc *crtc)
3016{
3017 struct drm_device *dev = crtc->dev;
3018 struct drm_i915_private *dev_priv = dev->dev_private;
3019 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3020 int pipe = intel_crtc->pipe;
Jesse Barnes139ccd32013-08-19 11:04:55 -07003021 u32 reg, temp, i, j;
Jesse Barnes357555c2011-04-28 15:09:55 -07003022
3023 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
3024 for train result */
3025 reg = FDI_RX_IMR(pipe);
3026 temp = I915_READ(reg);
3027 temp &= ~FDI_RX_SYMBOL_LOCK;
3028 temp &= ~FDI_RX_BIT_LOCK;
3029 I915_WRITE(reg, temp);
3030
3031 POSTING_READ(reg);
3032 udelay(150);
3033
Daniel Vetter01a415f2012-10-27 15:58:40 +02003034 DRM_DEBUG_KMS("FDI_RX_IIR before link train 0x%x\n",
3035 I915_READ(FDI_RX_IIR(pipe)));
3036
Jesse Barnes139ccd32013-08-19 11:04:55 -07003037 /* Try each vswing and preemphasis setting twice before moving on */
3038 for (j = 0; j < ARRAY_SIZE(snb_b_fdi_train_param) * 2; j++) {
3039 /* disable first in case we need to retry */
Jesse Barnes357555c2011-04-28 15:09:55 -07003040 reg = FDI_TX_CTL(pipe);
3041 temp = I915_READ(reg);
Jesse Barnes139ccd32013-08-19 11:04:55 -07003042 temp &= ~(FDI_LINK_TRAIN_AUTO | FDI_LINK_TRAIN_NONE_IVB);
3043 temp &= ~FDI_TX_ENABLE;
3044 I915_WRITE(reg, temp);
3045
3046 reg = FDI_RX_CTL(pipe);
3047 temp = I915_READ(reg);
3048 temp &= ~FDI_LINK_TRAIN_AUTO;
3049 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3050 temp &= ~FDI_RX_ENABLE;
3051 I915_WRITE(reg, temp);
3052
3053 /* enable CPU FDI TX and PCH FDI RX */
3054 reg = FDI_TX_CTL(pipe);
3055 temp = I915_READ(reg);
3056 temp &= ~FDI_DP_PORT_WIDTH_MASK;
3057 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config.fdi_lanes);
3058 temp |= FDI_LINK_TRAIN_PATTERN_1_IVB;
Jesse Barnes357555c2011-04-28 15:09:55 -07003059 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
Jesse Barnes139ccd32013-08-19 11:04:55 -07003060 temp |= snb_b_fdi_train_param[j/2];
3061 temp |= FDI_COMPOSITE_SYNC;
3062 I915_WRITE(reg, temp | FDI_TX_ENABLE);
3063
3064 I915_WRITE(FDI_RX_MISC(pipe),
3065 FDI_RX_TP1_TO_TP2_48 | FDI_RX_FDI_DELAY_90);
3066
3067 reg = FDI_RX_CTL(pipe);
3068 temp = I915_READ(reg);
3069 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
3070 temp |= FDI_COMPOSITE_SYNC;
3071 I915_WRITE(reg, temp | FDI_RX_ENABLE);
3072
3073 POSTING_READ(reg);
3074 udelay(1); /* should be 0.5us */
3075
3076 for (i = 0; i < 4; i++) {
3077 reg = FDI_RX_IIR(pipe);
3078 temp = I915_READ(reg);
3079 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3080
3081 if (temp & FDI_RX_BIT_LOCK ||
3082 (I915_READ(reg) & FDI_RX_BIT_LOCK)) {
3083 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
3084 DRM_DEBUG_KMS("FDI train 1 done, level %i.\n",
3085 i);
3086 break;
3087 }
3088 udelay(1); /* should be 0.5us */
3089 }
3090 if (i == 4) {
3091 DRM_DEBUG_KMS("FDI train 1 fail on vswing %d\n", j / 2);
3092 continue;
3093 }
3094
3095 /* Train 2 */
3096 reg = FDI_TX_CTL(pipe);
3097 temp = I915_READ(reg);
3098 temp &= ~FDI_LINK_TRAIN_NONE_IVB;
3099 temp |= FDI_LINK_TRAIN_PATTERN_2_IVB;
3100 I915_WRITE(reg, temp);
3101
3102 reg = FDI_RX_CTL(pipe);
3103 temp = I915_READ(reg);
3104 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3105 temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
Jesse Barnes357555c2011-04-28 15:09:55 -07003106 I915_WRITE(reg, temp);
3107
3108 POSTING_READ(reg);
Jesse Barnes139ccd32013-08-19 11:04:55 -07003109 udelay(2); /* should be 1.5us */
Jesse Barnes357555c2011-04-28 15:09:55 -07003110
Jesse Barnes139ccd32013-08-19 11:04:55 -07003111 for (i = 0; i < 4; i++) {
3112 reg = FDI_RX_IIR(pipe);
3113 temp = I915_READ(reg);
3114 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
Jesse Barnes357555c2011-04-28 15:09:55 -07003115
Jesse Barnes139ccd32013-08-19 11:04:55 -07003116 if (temp & FDI_RX_SYMBOL_LOCK ||
3117 (I915_READ(reg) & FDI_RX_SYMBOL_LOCK)) {
3118 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
3119 DRM_DEBUG_KMS("FDI train 2 done, level %i.\n",
3120 i);
3121 goto train_done;
3122 }
3123 udelay(2); /* should be 1.5us */
Jesse Barnes357555c2011-04-28 15:09:55 -07003124 }
Jesse Barnes139ccd32013-08-19 11:04:55 -07003125 if (i == 4)
3126 DRM_DEBUG_KMS("FDI train 2 fail on vswing %d\n", j / 2);
Jesse Barnes357555c2011-04-28 15:09:55 -07003127 }
Jesse Barnes357555c2011-04-28 15:09:55 -07003128
Jesse Barnes139ccd32013-08-19 11:04:55 -07003129train_done:
Jesse Barnes357555c2011-04-28 15:09:55 -07003130 DRM_DEBUG_KMS("FDI train done.\n");
3131}
3132
Daniel Vetter88cefb62012-08-12 19:27:14 +02003133static void ironlake_fdi_pll_enable(struct intel_crtc *intel_crtc)
Jesse Barnes0e23b992010-09-10 11:10:00 -07003134{
Daniel Vetter88cefb62012-08-12 19:27:14 +02003135 struct drm_device *dev = intel_crtc->base.dev;
Jesse Barnes0e23b992010-09-10 11:10:00 -07003136 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes0e23b992010-09-10 11:10:00 -07003137 int pipe = intel_crtc->pipe;
Chris Wilson5eddb702010-09-11 13:48:45 +01003138 u32 reg, temp;
Jesse Barnes0e23b992010-09-10 11:10:00 -07003139
Jesse Barnesc64e3112010-09-10 11:27:03 -07003140
Jesse Barnes0e23b992010-09-10 11:10:00 -07003141 /* enable PCH FDI RX PLL, wait warmup plus DMI latency */
Chris Wilson5eddb702010-09-11 13:48:45 +01003142 reg = FDI_RX_CTL(pipe);
3143 temp = I915_READ(reg);
Daniel Vetter627eb5a2013-04-29 19:33:42 +02003144 temp &= ~(FDI_DP_PORT_WIDTH_MASK | (0x7 << 16));
3145 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config.fdi_lanes);
Daniel Vetterdfd07d72012-12-17 11:21:38 +01003146 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
Chris Wilson5eddb702010-09-11 13:48:45 +01003147 I915_WRITE(reg, temp | FDI_RX_PLL_ENABLE);
3148
3149 POSTING_READ(reg);
Jesse Barnes0e23b992010-09-10 11:10:00 -07003150 udelay(200);
3151
3152 /* Switch from Rawclk to PCDclk */
Chris Wilson5eddb702010-09-11 13:48:45 +01003153 temp = I915_READ(reg);
3154 I915_WRITE(reg, temp | FDI_PCDCLK);
3155
3156 POSTING_READ(reg);
Jesse Barnes0e23b992010-09-10 11:10:00 -07003157 udelay(200);
3158
Paulo Zanoni20749732012-11-23 15:30:38 -02003159 /* Enable CPU FDI TX PLL, always on for Ironlake */
3160 reg = FDI_TX_CTL(pipe);
3161 temp = I915_READ(reg);
3162 if ((temp & FDI_TX_PLL_ENABLE) == 0) {
3163 I915_WRITE(reg, temp | FDI_TX_PLL_ENABLE);
Chris Wilson5eddb702010-09-11 13:48:45 +01003164
Paulo Zanoni20749732012-11-23 15:30:38 -02003165 POSTING_READ(reg);
3166 udelay(100);
Jesse Barnes0e23b992010-09-10 11:10:00 -07003167 }
3168}
3169
Daniel Vetter88cefb62012-08-12 19:27:14 +02003170static void ironlake_fdi_pll_disable(struct intel_crtc *intel_crtc)
3171{
3172 struct drm_device *dev = intel_crtc->base.dev;
3173 struct drm_i915_private *dev_priv = dev->dev_private;
3174 int pipe = intel_crtc->pipe;
3175 u32 reg, temp;
3176
3177 /* Switch from PCDclk to Rawclk */
3178 reg = FDI_RX_CTL(pipe);
3179 temp = I915_READ(reg);
3180 I915_WRITE(reg, temp & ~FDI_PCDCLK);
3181
3182 /* Disable CPU FDI TX PLL */
3183 reg = FDI_TX_CTL(pipe);
3184 temp = I915_READ(reg);
3185 I915_WRITE(reg, temp & ~FDI_TX_PLL_ENABLE);
3186
3187 POSTING_READ(reg);
3188 udelay(100);
3189
3190 reg = FDI_RX_CTL(pipe);
3191 temp = I915_READ(reg);
3192 I915_WRITE(reg, temp & ~FDI_RX_PLL_ENABLE);
3193
3194 /* Wait for the clocks to turn off. */
3195 POSTING_READ(reg);
3196 udelay(100);
3197}
3198
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003199static void ironlake_fdi_disable(struct drm_crtc *crtc)
3200{
3201 struct drm_device *dev = crtc->dev;
3202 struct drm_i915_private *dev_priv = dev->dev_private;
3203 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3204 int pipe = intel_crtc->pipe;
3205 u32 reg, temp;
3206
3207 /* disable CPU FDI tx and PCH FDI rx */
3208 reg = FDI_TX_CTL(pipe);
3209 temp = I915_READ(reg);
3210 I915_WRITE(reg, temp & ~FDI_TX_ENABLE);
3211 POSTING_READ(reg);
3212
3213 reg = FDI_RX_CTL(pipe);
3214 temp = I915_READ(reg);
3215 temp &= ~(0x7 << 16);
Daniel Vetterdfd07d72012-12-17 11:21:38 +01003216 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003217 I915_WRITE(reg, temp & ~FDI_RX_ENABLE);
3218
3219 POSTING_READ(reg);
3220 udelay(100);
3221
3222 /* Ironlake workaround, disable clock pointer after downing FDI */
Robin Schroereba905b2014-05-18 02:24:50 +02003223 if (HAS_PCH_IBX(dev))
Jesse Barnes6f06ce12011-01-04 15:09:38 -08003224 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR);
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003225
3226 /* still set train pattern 1 */
3227 reg = FDI_TX_CTL(pipe);
3228 temp = I915_READ(reg);
3229 temp &= ~FDI_LINK_TRAIN_NONE;
3230 temp |= FDI_LINK_TRAIN_PATTERN_1;
3231 I915_WRITE(reg, temp);
3232
3233 reg = FDI_RX_CTL(pipe);
3234 temp = I915_READ(reg);
3235 if (HAS_PCH_CPT(dev)) {
3236 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3237 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
3238 } else {
3239 temp &= ~FDI_LINK_TRAIN_NONE;
3240 temp |= FDI_LINK_TRAIN_PATTERN_1;
3241 }
3242 /* BPC in FDI rx is consistent with that in PIPECONF */
3243 temp &= ~(0x07 << 16);
Daniel Vetterdfd07d72012-12-17 11:21:38 +01003244 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003245 I915_WRITE(reg, temp);
3246
3247 POSTING_READ(reg);
3248 udelay(100);
3249}
3250
Chris Wilson5dce5b932014-01-20 10:17:36 +00003251bool intel_has_pending_fb_unpin(struct drm_device *dev)
3252{
3253 struct intel_crtc *crtc;
3254
3255 /* Note that we don't need to be called with mode_config.lock here
3256 * as our list of CRTC objects is static for the lifetime of the
3257 * device and so cannot disappear as we iterate. Similarly, we can
3258 * happily treat the predicates as racy, atomic checks as userspace
3259 * cannot claim and pin a new fb without at least acquring the
3260 * struct_mutex and so serialising with us.
3261 */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01003262 for_each_intel_crtc(dev, crtc) {
Chris Wilson5dce5b932014-01-20 10:17:36 +00003263 if (atomic_read(&crtc->unpin_work_count) == 0)
3264 continue;
3265
3266 if (crtc->unpin_work)
3267 intel_wait_for_vblank(dev, crtc->pipe);
3268
3269 return true;
3270 }
3271
3272 return false;
3273}
3274
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01003275static void intel_crtc_wait_for_pending_flips(struct drm_crtc *crtc)
3276{
Chris Wilson0f911282012-04-17 10:05:38 +01003277 struct drm_device *dev = crtc->dev;
Chris Wilson5bb61642012-09-27 21:25:58 +01003278 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01003279
Matt Roperf4510a22014-04-01 15:22:40 -07003280 if (crtc->primary->fb == NULL)
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01003281 return;
3282
Daniel Vetter2c10d572012-12-20 21:24:07 +01003283 WARN_ON(waitqueue_active(&dev_priv->pending_flip_queue));
3284
Daniel Vettereed6d672014-05-19 16:09:35 +02003285 WARN_ON(wait_event_timeout(dev_priv->pending_flip_queue,
3286 !intel_crtc_has_pending_flip(crtc),
3287 60*HZ) == 0);
Chris Wilson5bb61642012-09-27 21:25:58 +01003288
Chris Wilson0f911282012-04-17 10:05:38 +01003289 mutex_lock(&dev->struct_mutex);
Matt Roperf4510a22014-04-01 15:22:40 -07003290 intel_finish_fb(crtc->primary->fb);
Chris Wilson0f911282012-04-17 10:05:38 +01003291 mutex_unlock(&dev->struct_mutex);
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01003292}
3293
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003294/* Program iCLKIP clock to the desired frequency */
3295static void lpt_program_iclkip(struct drm_crtc *crtc)
3296{
3297 struct drm_device *dev = crtc->dev;
3298 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiau241bfc32013-09-25 16:45:37 +01003299 int clock = to_intel_crtc(crtc)->config.adjusted_mode.crtc_clock;
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003300 u32 divsel, phaseinc, auxdiv, phasedir = 0;
3301 u32 temp;
3302
Daniel Vetter09153002012-12-12 14:06:44 +01003303 mutex_lock(&dev_priv->dpio_lock);
3304
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003305 /* It is necessary to ungate the pixclk gate prior to programming
3306 * the divisors, and gate it back when it is done.
3307 */
3308 I915_WRITE(PIXCLK_GATE, PIXCLK_GATE_GATE);
3309
3310 /* Disable SSCCTL */
3311 intel_sbi_write(dev_priv, SBI_SSCCTL6,
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003312 intel_sbi_read(dev_priv, SBI_SSCCTL6, SBI_ICLK) |
3313 SBI_SSCCTL_DISABLE,
3314 SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003315
3316 /* 20MHz is a corner case which is out of range for the 7-bit divisor */
Ville Syrjälä12d7cee2013-09-04 18:25:19 +03003317 if (clock == 20000) {
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003318 auxdiv = 1;
3319 divsel = 0x41;
3320 phaseinc = 0x20;
3321 } else {
3322 /* The iCLK virtual clock root frequency is in MHz,
Damien Lespiau241bfc32013-09-25 16:45:37 +01003323 * but the adjusted_mode->crtc_clock in in KHz. To get the
3324 * divisors, it is necessary to divide one by another, so we
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003325 * convert the virtual clock precision to KHz here for higher
3326 * precision.
3327 */
3328 u32 iclk_virtual_root_freq = 172800 * 1000;
3329 u32 iclk_pi_range = 64;
3330 u32 desired_divisor, msb_divisor_value, pi_value;
3331
Ville Syrjälä12d7cee2013-09-04 18:25:19 +03003332 desired_divisor = (iclk_virtual_root_freq / clock);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003333 msb_divisor_value = desired_divisor / iclk_pi_range;
3334 pi_value = desired_divisor % iclk_pi_range;
3335
3336 auxdiv = 0;
3337 divsel = msb_divisor_value - 2;
3338 phaseinc = pi_value;
3339 }
3340
3341 /* This should not happen with any sane values */
3342 WARN_ON(SBI_SSCDIVINTPHASE_DIVSEL(divsel) &
3343 ~SBI_SSCDIVINTPHASE_DIVSEL_MASK);
3344 WARN_ON(SBI_SSCDIVINTPHASE_DIR(phasedir) &
3345 ~SBI_SSCDIVINTPHASE_INCVAL_MASK);
3346
3347 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 +03003348 clock,
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003349 auxdiv,
3350 divsel,
3351 phasedir,
3352 phaseinc);
3353
3354 /* Program SSCDIVINTPHASE6 */
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003355 temp = intel_sbi_read(dev_priv, SBI_SSCDIVINTPHASE6, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003356 temp &= ~SBI_SSCDIVINTPHASE_DIVSEL_MASK;
3357 temp |= SBI_SSCDIVINTPHASE_DIVSEL(divsel);
3358 temp &= ~SBI_SSCDIVINTPHASE_INCVAL_MASK;
3359 temp |= SBI_SSCDIVINTPHASE_INCVAL(phaseinc);
3360 temp |= SBI_SSCDIVINTPHASE_DIR(phasedir);
3361 temp |= SBI_SSCDIVINTPHASE_PROPAGATE;
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003362 intel_sbi_write(dev_priv, SBI_SSCDIVINTPHASE6, temp, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003363
3364 /* Program SSCAUXDIV */
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003365 temp = intel_sbi_read(dev_priv, SBI_SSCAUXDIV6, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003366 temp &= ~SBI_SSCAUXDIV_FINALDIV2SEL(1);
3367 temp |= SBI_SSCAUXDIV_FINALDIV2SEL(auxdiv);
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003368 intel_sbi_write(dev_priv, SBI_SSCAUXDIV6, temp, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003369
3370 /* Enable modulator and associated divider */
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003371 temp = intel_sbi_read(dev_priv, SBI_SSCCTL6, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003372 temp &= ~SBI_SSCCTL_DISABLE;
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003373 intel_sbi_write(dev_priv, SBI_SSCCTL6, temp, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003374
3375 /* Wait for initialization time */
3376 udelay(24);
3377
3378 I915_WRITE(PIXCLK_GATE, PIXCLK_GATE_UNGATE);
Daniel Vetter09153002012-12-12 14:06:44 +01003379
3380 mutex_unlock(&dev_priv->dpio_lock);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003381}
3382
Daniel Vetter275f01b22013-05-03 11:49:47 +02003383static void ironlake_pch_transcoder_set_timings(struct intel_crtc *crtc,
3384 enum pipe pch_transcoder)
3385{
3386 struct drm_device *dev = crtc->base.dev;
3387 struct drm_i915_private *dev_priv = dev->dev_private;
3388 enum transcoder cpu_transcoder = crtc->config.cpu_transcoder;
3389
3390 I915_WRITE(PCH_TRANS_HTOTAL(pch_transcoder),
3391 I915_READ(HTOTAL(cpu_transcoder)));
3392 I915_WRITE(PCH_TRANS_HBLANK(pch_transcoder),
3393 I915_READ(HBLANK(cpu_transcoder)));
3394 I915_WRITE(PCH_TRANS_HSYNC(pch_transcoder),
3395 I915_READ(HSYNC(cpu_transcoder)));
3396
3397 I915_WRITE(PCH_TRANS_VTOTAL(pch_transcoder),
3398 I915_READ(VTOTAL(cpu_transcoder)));
3399 I915_WRITE(PCH_TRANS_VBLANK(pch_transcoder),
3400 I915_READ(VBLANK(cpu_transcoder)));
3401 I915_WRITE(PCH_TRANS_VSYNC(pch_transcoder),
3402 I915_READ(VSYNC(cpu_transcoder)));
3403 I915_WRITE(PCH_TRANS_VSYNCSHIFT(pch_transcoder),
3404 I915_READ(VSYNCSHIFT(cpu_transcoder)));
3405}
3406
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01003407static void cpt_enable_fdi_bc_bifurcation(struct drm_device *dev)
3408{
3409 struct drm_i915_private *dev_priv = dev->dev_private;
3410 uint32_t temp;
3411
3412 temp = I915_READ(SOUTH_CHICKEN1);
3413 if (temp & FDI_BC_BIFURCATION_SELECT)
3414 return;
3415
3416 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_B)) & FDI_RX_ENABLE);
3417 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_C)) & FDI_RX_ENABLE);
3418
3419 temp |= FDI_BC_BIFURCATION_SELECT;
3420 DRM_DEBUG_KMS("enabling fdi C rx\n");
3421 I915_WRITE(SOUTH_CHICKEN1, temp);
3422 POSTING_READ(SOUTH_CHICKEN1);
3423}
3424
3425static void ivybridge_update_fdi_bc_bifurcation(struct intel_crtc *intel_crtc)
3426{
3427 struct drm_device *dev = intel_crtc->base.dev;
3428 struct drm_i915_private *dev_priv = dev->dev_private;
3429
3430 switch (intel_crtc->pipe) {
3431 case PIPE_A:
3432 break;
3433 case PIPE_B:
3434 if (intel_crtc->config.fdi_lanes > 2)
3435 WARN_ON(I915_READ(SOUTH_CHICKEN1) & FDI_BC_BIFURCATION_SELECT);
3436 else
3437 cpt_enable_fdi_bc_bifurcation(dev);
3438
3439 break;
3440 case PIPE_C:
3441 cpt_enable_fdi_bc_bifurcation(dev);
3442
3443 break;
3444 default:
3445 BUG();
3446 }
3447}
3448
Jesse Barnesf67a5592011-01-05 10:31:48 -08003449/*
3450 * Enable PCH resources required for PCH ports:
3451 * - PCH PLLs
3452 * - FDI training & RX/TX
3453 * - update transcoder timings
3454 * - DP transcoding bits
3455 * - transcoder
3456 */
3457static void ironlake_pch_enable(struct drm_crtc *crtc)
Jesse Barnes79e53942008-11-07 14:24:08 -08003458{
3459 struct drm_device *dev = crtc->dev;
Zhenyu Wang2c072452009-06-05 15:38:42 +08003460 struct drm_i915_private *dev_priv = dev->dev_private;
3461 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3462 int pipe = intel_crtc->pipe;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003463 u32 reg, temp;
Jesse Barnes6be4a602010-09-10 10:26:01 -07003464
Daniel Vetterab9412b2013-05-03 11:49:46 +02003465 assert_pch_transcoder_disabled(dev_priv, pipe);
Chris Wilsone7e164d2012-05-11 09:21:25 +01003466
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01003467 if (IS_IVYBRIDGE(dev))
3468 ivybridge_update_fdi_bc_bifurcation(intel_crtc);
3469
Daniel Vettercd986ab2012-10-26 10:58:12 +02003470 /* Write the TU size bits before fdi link training, so that error
3471 * detection works. */
3472 I915_WRITE(FDI_RX_TUSIZE1(pipe),
3473 I915_READ(PIPE_DATA_M1(pipe)) & TU_SIZE_MASK);
3474
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003475 /* For PCH output, training FDI link */
Jesse Barnes674cf962011-04-28 14:27:04 -07003476 dev_priv->display.fdi_link_train(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003477
Daniel Vetter3ad8a202013-06-05 13:34:32 +02003478 /* We need to program the right clock selection before writing the pixel
3479 * mutliplier into the DPLL. */
Paulo Zanoni303b81e2012-10-31 18:12:23 -02003480 if (HAS_PCH_CPT(dev)) {
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003481 u32 sel;
Jesse Barnes4b645f12011-10-12 09:51:31 -07003482
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003483 temp = I915_READ(PCH_DPLL_SEL);
Daniel Vetter11887392013-06-05 13:34:09 +02003484 temp |= TRANS_DPLL_ENABLE(pipe);
3485 sel = TRANS_DPLLB_SEL(pipe);
Daniel Vettera43f6e02013-06-07 23:10:32 +02003486 if (intel_crtc->config.shared_dpll == DPLL_ID_PCH_PLL_B)
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003487 temp |= sel;
3488 else
3489 temp &= ~sel;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003490 I915_WRITE(PCH_DPLL_SEL, temp);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003491 }
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003492
Daniel Vetter3ad8a202013-06-05 13:34:32 +02003493 /* XXX: pch pll's can be enabled any time before we enable the PCH
3494 * transcoder, and we actually should do this to not upset any PCH
3495 * transcoder that already use the clock when we share it.
3496 *
3497 * Note that enable_shared_dpll tries to do the right thing, but
3498 * get_shared_dpll unconditionally resets the pll - we need that to have
3499 * the right LVDS enable sequence. */
3500 ironlake_enable_shared_dpll(intel_crtc);
3501
Jesse Barnesd9b6cb52011-01-04 15:09:35 -08003502 /* set transcoder timing, panel must allow it */
3503 assert_panel_unlocked(dev_priv, pipe);
Daniel Vetter275f01b22013-05-03 11:49:47 +02003504 ironlake_pch_transcoder_set_timings(intel_crtc, pipe);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003505
Paulo Zanoni303b81e2012-10-31 18:12:23 -02003506 intel_fdi_normal_train(crtc);
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08003507
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003508 /* For PCH DP, enable TRANS_DP_CTL */
3509 if (HAS_PCH_CPT(dev) &&
Keith Packard417e8222011-11-01 19:54:11 -07003510 (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT) ||
3511 intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP))) {
Daniel Vetterdfd07d72012-12-17 11:21:38 +01003512 u32 bpc = (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) >> 5;
Chris Wilson5eddb702010-09-11 13:48:45 +01003513 reg = TRANS_DP_CTL(pipe);
3514 temp = I915_READ(reg);
3515 temp &= ~(TRANS_DP_PORT_SEL_MASK |
Eric Anholt220cad32010-11-18 09:32:58 +08003516 TRANS_DP_SYNC_MASK |
3517 TRANS_DP_BPC_MASK);
Chris Wilson5eddb702010-09-11 13:48:45 +01003518 temp |= (TRANS_DP_OUTPUT_ENABLE |
3519 TRANS_DP_ENH_FRAMING);
Jesse Barnes9325c9f2011-06-24 12:19:21 -07003520 temp |= bpc << 9; /* same format but at 11:9 */
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003521
3522 if (crtc->mode.flags & DRM_MODE_FLAG_PHSYNC)
Chris Wilson5eddb702010-09-11 13:48:45 +01003523 temp |= TRANS_DP_HSYNC_ACTIVE_HIGH;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003524 if (crtc->mode.flags & DRM_MODE_FLAG_PVSYNC)
Chris Wilson5eddb702010-09-11 13:48:45 +01003525 temp |= TRANS_DP_VSYNC_ACTIVE_HIGH;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003526
3527 switch (intel_trans_dp_port_sel(crtc)) {
3528 case PCH_DP_B:
Chris Wilson5eddb702010-09-11 13:48:45 +01003529 temp |= TRANS_DP_PORT_SEL_B;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003530 break;
3531 case PCH_DP_C:
Chris Wilson5eddb702010-09-11 13:48:45 +01003532 temp |= TRANS_DP_PORT_SEL_C;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003533 break;
3534 case PCH_DP_D:
Chris Wilson5eddb702010-09-11 13:48:45 +01003535 temp |= TRANS_DP_PORT_SEL_D;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003536 break;
3537 default:
Daniel Vettere95d41e2012-10-26 10:58:16 +02003538 BUG();
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003539 }
3540
Chris Wilson5eddb702010-09-11 13:48:45 +01003541 I915_WRITE(reg, temp);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003542 }
3543
Paulo Zanonib8a4f402012-10-31 18:12:42 -02003544 ironlake_enable_pch_transcoder(dev_priv, pipe);
Jesse Barnesf67a5592011-01-05 10:31:48 -08003545}
3546
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003547static void lpt_pch_enable(struct drm_crtc *crtc)
3548{
3549 struct drm_device *dev = crtc->dev;
3550 struct drm_i915_private *dev_priv = dev->dev_private;
3551 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter3b117c82013-04-17 20:15:07 +02003552 enum transcoder cpu_transcoder = intel_crtc->config.cpu_transcoder;
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003553
Daniel Vetterab9412b2013-05-03 11:49:46 +02003554 assert_pch_transcoder_disabled(dev_priv, TRANSCODER_A);
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003555
Paulo Zanoni8c52b5e2012-10-31 18:12:24 -02003556 lpt_program_iclkip(crtc);
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003557
Paulo Zanoni0540e482012-10-31 18:12:40 -02003558 /* Set transcoder timing. */
Daniel Vetter275f01b22013-05-03 11:49:47 +02003559 ironlake_pch_transcoder_set_timings(intel_crtc, PIPE_A);
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003560
Paulo Zanoni937bb612012-10-31 18:12:47 -02003561 lpt_enable_pch_transcoder(dev_priv, cpu_transcoder);
Jesse Barnesf67a5592011-01-05 10:31:48 -08003562}
3563
Daniel Vettere2b78262013-06-07 23:10:03 +02003564static void intel_put_shared_dpll(struct intel_crtc *crtc)
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003565{
Daniel Vettere2b78262013-06-07 23:10:03 +02003566 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003567
3568 if (pll == NULL)
3569 return;
3570
3571 if (pll->refcount == 0) {
Daniel Vetter46edb022013-06-05 13:34:12 +02003572 WARN(1, "bad %s refcount\n", pll->name);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003573 return;
3574 }
3575
Daniel Vetterf4a091c2013-06-10 17:28:22 +02003576 if (--pll->refcount == 0) {
3577 WARN_ON(pll->on);
3578 WARN_ON(pll->active);
3579 }
3580
Daniel Vettera43f6e02013-06-07 23:10:32 +02003581 crtc->config.shared_dpll = DPLL_ID_PRIVATE;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003582}
3583
Daniel Vetterb89a1d32013-06-05 13:34:24 +02003584static struct intel_shared_dpll *intel_get_shared_dpll(struct intel_crtc *crtc)
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003585{
Daniel Vettere2b78262013-06-07 23:10:03 +02003586 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
3587 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
3588 enum intel_dpll_id i;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003589
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003590 if (pll) {
Daniel Vetter46edb022013-06-05 13:34:12 +02003591 DRM_DEBUG_KMS("CRTC:%d dropping existing %s\n",
3592 crtc->base.base.id, pll->name);
Daniel Vettere2b78262013-06-07 23:10:03 +02003593 intel_put_shared_dpll(crtc);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003594 }
3595
Daniel Vetter98b6bd92012-05-20 20:00:25 +02003596 if (HAS_PCH_IBX(dev_priv->dev)) {
3597 /* Ironlake PCH has a fixed PLL->PCH pipe mapping. */
Daniel Vetterd94ab062013-07-04 12:01:16 +02003598 i = (enum intel_dpll_id) crtc->pipe;
Daniel Vettere72f9fb2013-06-05 13:34:06 +02003599 pll = &dev_priv->shared_dplls[i];
Daniel Vetter98b6bd92012-05-20 20:00:25 +02003600
Daniel Vetter46edb022013-06-05 13:34:12 +02003601 DRM_DEBUG_KMS("CRTC:%d using pre-allocated %s\n",
3602 crtc->base.base.id, pll->name);
Daniel Vetter98b6bd92012-05-20 20:00:25 +02003603
3604 goto found;
3605 }
3606
Daniel Vettere72f9fb2013-06-05 13:34:06 +02003607 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
3608 pll = &dev_priv->shared_dplls[i];
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003609
3610 /* Only want to check enabled timings first */
3611 if (pll->refcount == 0)
3612 continue;
3613
Daniel Vetterb89a1d32013-06-05 13:34:24 +02003614 if (memcmp(&crtc->config.dpll_hw_state, &pll->hw_state,
3615 sizeof(pll->hw_state)) == 0) {
Daniel Vetter46edb022013-06-05 13:34:12 +02003616 DRM_DEBUG_KMS("CRTC:%d sharing existing %s (refcount %d, ative %d)\n",
Daniel Vettere2b78262013-06-07 23:10:03 +02003617 crtc->base.base.id,
Daniel Vetter46edb022013-06-05 13:34:12 +02003618 pll->name, pll->refcount, pll->active);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003619
3620 goto found;
3621 }
3622 }
3623
3624 /* Ok no matching timings, maybe there's a free one? */
Daniel Vettere72f9fb2013-06-05 13:34:06 +02003625 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
3626 pll = &dev_priv->shared_dplls[i];
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003627 if (pll->refcount == 0) {
Daniel Vetter46edb022013-06-05 13:34:12 +02003628 DRM_DEBUG_KMS("CRTC:%d allocated %s\n",
3629 crtc->base.base.id, pll->name);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003630 goto found;
3631 }
3632 }
3633
3634 return NULL;
3635
3636found:
Daniel Vettera43f6e02013-06-07 23:10:32 +02003637 crtc->config.shared_dpll = i;
Daniel Vetter46edb022013-06-05 13:34:12 +02003638 DRM_DEBUG_DRIVER("using %s for pipe %c\n", pll->name,
3639 pipe_name(crtc->pipe));
Daniel Vetter66e985c2013-06-05 13:34:20 +02003640
Daniel Vettercdbd2312013-06-05 13:34:03 +02003641 if (pll->active == 0) {
Daniel Vetter66e985c2013-06-05 13:34:20 +02003642 memcpy(&pll->hw_state, &crtc->config.dpll_hw_state,
3643 sizeof(pll->hw_state));
3644
Daniel Vetter46edb022013-06-05 13:34:12 +02003645 DRM_DEBUG_DRIVER("setting up %s\n", pll->name);
Daniel Vettercdbd2312013-06-05 13:34:03 +02003646 WARN_ON(pll->on);
Daniel Vettere9d69442013-06-05 13:34:15 +02003647 assert_shared_dpll_disabled(dev_priv, pll);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003648
Daniel Vetter15bdd4c2013-06-05 13:34:23 +02003649 pll->mode_set(dev_priv, pll);
Daniel Vettercdbd2312013-06-05 13:34:03 +02003650 }
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003651 pll->refcount++;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003652
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003653 return pll;
3654}
3655
Daniel Vettera1520312013-05-03 11:49:50 +02003656static void cpt_verify_modeset(struct drm_device *dev, int pipe)
Jesse Barnesd4270e52011-10-11 10:43:02 -07003657{
3658 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter23670b322012-11-01 09:15:30 +01003659 int dslreg = PIPEDSL(pipe);
Jesse Barnesd4270e52011-10-11 10:43:02 -07003660 u32 temp;
3661
3662 temp = I915_READ(dslreg);
3663 udelay(500);
3664 if (wait_for(I915_READ(dslreg) != temp, 5)) {
Jesse Barnesd4270e52011-10-11 10:43:02 -07003665 if (wait_for(I915_READ(dslreg) != temp, 5))
Ville Syrjälä84f44ce2013-04-17 17:48:49 +03003666 DRM_ERROR("mode set failed: pipe %c stuck\n", pipe_name(pipe));
Jesse Barnesd4270e52011-10-11 10:43:02 -07003667 }
3668}
3669
Jesse Barnesb074cec2013-04-25 12:55:02 -07003670static void ironlake_pfit_enable(struct intel_crtc *crtc)
3671{
3672 struct drm_device *dev = crtc->base.dev;
3673 struct drm_i915_private *dev_priv = dev->dev_private;
3674 int pipe = crtc->pipe;
3675
Chris Wilsonfd4daa92013-08-27 17:04:17 +01003676 if (crtc->config.pch_pfit.enabled) {
Jesse Barnesb074cec2013-04-25 12:55:02 -07003677 /* Force use of hard-coded filter coefficients
3678 * as some pre-programmed values are broken,
3679 * e.g. x201.
3680 */
3681 if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev))
3682 I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3 |
3683 PF_PIPE_SEL_IVB(pipe));
3684 else
3685 I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3);
3686 I915_WRITE(PF_WIN_POS(pipe), crtc->config.pch_pfit.pos);
3687 I915_WRITE(PF_WIN_SZ(pipe), crtc->config.pch_pfit.size);
Jesse Barnes040484a2011-01-03 12:14:26 -08003688 }
Jesse Barnesf67a5592011-01-05 10:31:48 -08003689}
3690
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03003691static void intel_enable_planes(struct drm_crtc *crtc)
3692{
3693 struct drm_device *dev = crtc->dev;
3694 enum pipe pipe = to_intel_crtc(crtc)->pipe;
Matt Roperaf2b6532014-04-01 15:22:32 -07003695 struct drm_plane *plane;
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03003696 struct intel_plane *intel_plane;
3697
Matt Roperaf2b6532014-04-01 15:22:32 -07003698 drm_for_each_legacy_plane(plane, &dev->mode_config.plane_list) {
3699 intel_plane = to_intel_plane(plane);
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03003700 if (intel_plane->pipe == pipe)
3701 intel_plane_restore(&intel_plane->base);
Matt Roperaf2b6532014-04-01 15:22:32 -07003702 }
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03003703}
3704
3705static void intel_disable_planes(struct drm_crtc *crtc)
3706{
3707 struct drm_device *dev = crtc->dev;
3708 enum pipe pipe = to_intel_crtc(crtc)->pipe;
Matt Roperaf2b6532014-04-01 15:22:32 -07003709 struct drm_plane *plane;
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03003710 struct intel_plane *intel_plane;
3711
Matt Roperaf2b6532014-04-01 15:22:32 -07003712 drm_for_each_legacy_plane(plane, &dev->mode_config.plane_list) {
3713 intel_plane = to_intel_plane(plane);
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03003714 if (intel_plane->pipe == pipe)
3715 intel_plane_disable(&intel_plane->base);
Matt Roperaf2b6532014-04-01 15:22:32 -07003716 }
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03003717}
3718
Ville Syrjälä20bc86732013-10-01 18:02:17 +03003719void hsw_enable_ips(struct intel_crtc *crtc)
Paulo Zanonid77e4532013-09-24 13:52:55 -03003720{
3721 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
3722
3723 if (!crtc->config.ips_enabled)
3724 return;
3725
3726 /* We can only enable IPS after we enable a plane and wait for a vblank.
3727 * We guarantee that the plane is enabled by calling intel_enable_ips
3728 * only after intel_enable_plane. And intel_enable_plane already waits
3729 * for a vblank, so all we need to do here is to enable the IPS bit. */
3730 assert_plane_enabled(dev_priv, crtc->plane);
Ben Widawsky2a114cc2013-11-02 21:07:47 -07003731 if (IS_BROADWELL(crtc->base.dev)) {
3732 mutex_lock(&dev_priv->rps.hw_lock);
3733 WARN_ON(sandybridge_pcode_write(dev_priv, DISPLAY_IPS_CONTROL, 0xc0000000));
3734 mutex_unlock(&dev_priv->rps.hw_lock);
3735 /* Quoting Art Runyan: "its not safe to expect any particular
3736 * value in IPS_CTL bit 31 after enabling IPS through the
Jesse Barnese59150d2014-01-07 13:30:45 -08003737 * mailbox." Moreover, the mailbox may return a bogus state,
3738 * so we need to just enable it and continue on.
Ben Widawsky2a114cc2013-11-02 21:07:47 -07003739 */
3740 } else {
3741 I915_WRITE(IPS_CTL, IPS_ENABLE);
3742 /* The bit only becomes 1 in the next vblank, so this wait here
3743 * is essentially intel_wait_for_vblank. If we don't have this
3744 * and don't wait for vblanks until the end of crtc_enable, then
3745 * the HW state readout code will complain that the expected
3746 * IPS_CTL value is not the one we read. */
3747 if (wait_for(I915_READ_NOTRACE(IPS_CTL) & IPS_ENABLE, 50))
3748 DRM_ERROR("Timed out waiting for IPS enable\n");
3749 }
Paulo Zanonid77e4532013-09-24 13:52:55 -03003750}
3751
Ville Syrjälä20bc86732013-10-01 18:02:17 +03003752void hsw_disable_ips(struct intel_crtc *crtc)
Paulo Zanonid77e4532013-09-24 13:52:55 -03003753{
3754 struct drm_device *dev = crtc->base.dev;
3755 struct drm_i915_private *dev_priv = dev->dev_private;
3756
3757 if (!crtc->config.ips_enabled)
3758 return;
3759
3760 assert_plane_enabled(dev_priv, crtc->plane);
Ben Widawsky23d0b132014-04-10 14:32:41 -07003761 if (IS_BROADWELL(dev)) {
Ben Widawsky2a114cc2013-11-02 21:07:47 -07003762 mutex_lock(&dev_priv->rps.hw_lock);
3763 WARN_ON(sandybridge_pcode_write(dev_priv, DISPLAY_IPS_CONTROL, 0));
3764 mutex_unlock(&dev_priv->rps.hw_lock);
Ben Widawsky23d0b132014-04-10 14:32:41 -07003765 /* wait for pcode to finish disabling IPS, which may take up to 42ms */
3766 if (wait_for((I915_READ(IPS_CTL) & IPS_ENABLE) == 0, 42))
3767 DRM_ERROR("Timed out waiting for IPS disable\n");
Jesse Barnese59150d2014-01-07 13:30:45 -08003768 } else {
Ben Widawsky2a114cc2013-11-02 21:07:47 -07003769 I915_WRITE(IPS_CTL, 0);
Jesse Barnese59150d2014-01-07 13:30:45 -08003770 POSTING_READ(IPS_CTL);
3771 }
Paulo Zanonid77e4532013-09-24 13:52:55 -03003772
3773 /* We need to wait for a vblank before we can disable the plane. */
3774 intel_wait_for_vblank(dev, crtc->pipe);
3775}
3776
3777/** Loads the palette/gamma unit for the CRTC with the prepared values */
3778static void intel_crtc_load_lut(struct drm_crtc *crtc)
3779{
3780 struct drm_device *dev = crtc->dev;
3781 struct drm_i915_private *dev_priv = dev->dev_private;
3782 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3783 enum pipe pipe = intel_crtc->pipe;
3784 int palreg = PALETTE(pipe);
3785 int i;
3786 bool reenable_ips = false;
3787
3788 /* The clocks have to be on to load the palette. */
3789 if (!crtc->enabled || !intel_crtc->active)
3790 return;
3791
3792 if (!HAS_PCH_SPLIT(dev_priv->dev)) {
3793 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DSI))
3794 assert_dsi_pll_enabled(dev_priv);
3795 else
3796 assert_pll_enabled(dev_priv, pipe);
3797 }
3798
3799 /* use legacy palette for Ironlake */
3800 if (HAS_PCH_SPLIT(dev))
3801 palreg = LGC_PALETTE(pipe);
3802
3803 /* Workaround : Do not read or write the pipe palette/gamma data while
3804 * GAMMA_MODE is configured for split gamma and IPS_CTL has IPS enabled.
3805 */
Paulo Zanoni41e6fc42014-01-08 17:26:31 -02003806 if (IS_HASWELL(dev) && intel_crtc->config.ips_enabled &&
Paulo Zanonid77e4532013-09-24 13:52:55 -03003807 ((I915_READ(GAMMA_MODE(pipe)) & GAMMA_MODE_MODE_MASK) ==
3808 GAMMA_MODE_MODE_SPLIT)) {
3809 hsw_disable_ips(intel_crtc);
3810 reenable_ips = true;
3811 }
3812
3813 for (i = 0; i < 256; i++) {
3814 I915_WRITE(palreg + 4 * i,
3815 (intel_crtc->lut_r[i] << 16) |
3816 (intel_crtc->lut_g[i] << 8) |
3817 intel_crtc->lut_b[i]);
3818 }
3819
3820 if (reenable_ips)
3821 hsw_enable_ips(intel_crtc);
3822}
3823
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03003824static void intel_crtc_dpms_overlay(struct intel_crtc *intel_crtc, bool enable)
3825{
3826 if (!enable && intel_crtc->overlay) {
3827 struct drm_device *dev = intel_crtc->base.dev;
3828 struct drm_i915_private *dev_priv = dev->dev_private;
3829
3830 mutex_lock(&dev->struct_mutex);
3831 dev_priv->mm.interruptible = false;
3832 (void) intel_overlay_switch_off(intel_crtc->overlay);
3833 dev_priv->mm.interruptible = true;
3834 mutex_unlock(&dev->struct_mutex);
3835 }
3836
3837 /* Let userspace switch the overlay on again. In most cases userspace
3838 * has to recompute where to put it anyway.
3839 */
3840}
3841
3842/**
3843 * i9xx_fixup_plane - ugly workaround for G45 to fire up the hardware
3844 * cursor plane briefly if not already running after enabling the display
3845 * plane.
3846 * This workaround avoids occasional blank screens when self refresh is
3847 * enabled.
3848 */
3849static void
3850g4x_fixup_plane(struct drm_i915_private *dev_priv, enum pipe pipe)
3851{
3852 u32 cntl = I915_READ(CURCNTR(pipe));
3853
3854 if ((cntl & CURSOR_MODE) == 0) {
3855 u32 fw_bcl_self = I915_READ(FW_BLC_SELF);
3856
3857 I915_WRITE(FW_BLC_SELF, fw_bcl_self & ~FW_BLC_SELF_EN);
3858 I915_WRITE(CURCNTR(pipe), CURSOR_MODE_64_ARGB_AX);
3859 intel_wait_for_vblank(dev_priv->dev, pipe);
3860 I915_WRITE(CURCNTR(pipe), cntl);
3861 I915_WRITE(CURBASE(pipe), I915_READ(CURBASE(pipe)));
3862 I915_WRITE(FW_BLC_SELF, fw_bcl_self);
3863 }
3864}
3865
3866static void intel_crtc_enable_planes(struct drm_crtc *crtc)
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02003867{
3868 struct drm_device *dev = crtc->dev;
3869 struct drm_i915_private *dev_priv = dev->dev_private;
3870 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3871 int pipe = intel_crtc->pipe;
3872 int plane = intel_crtc->plane;
3873
3874 intel_enable_primary_hw_plane(dev_priv, plane, pipe);
3875 intel_enable_planes(crtc);
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03003876 /* The fixup needs to happen before cursor is enabled */
3877 if (IS_G4X(dev))
3878 g4x_fixup_plane(dev_priv, pipe);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02003879 intel_crtc_update_cursor(crtc, true);
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03003880 intel_crtc_dpms_overlay(intel_crtc, true);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02003881
3882 hsw_enable_ips(intel_crtc);
3883
3884 mutex_lock(&dev->struct_mutex);
3885 intel_update_fbc(dev);
Daniel Vetter71b1c372014-04-24 23:55:03 +02003886 intel_edp_psr_update(dev);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02003887 mutex_unlock(&dev->struct_mutex);
3888}
3889
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03003890static void intel_crtc_disable_planes(struct drm_crtc *crtc)
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02003891{
3892 struct drm_device *dev = crtc->dev;
3893 struct drm_i915_private *dev_priv = dev->dev_private;
3894 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3895 int pipe = intel_crtc->pipe;
3896 int plane = intel_crtc->plane;
3897
3898 intel_crtc_wait_for_pending_flips(crtc);
3899 drm_vblank_off(dev, pipe);
3900
3901 if (dev_priv->fbc.plane == plane)
3902 intel_disable_fbc(dev);
3903
3904 hsw_disable_ips(intel_crtc);
3905
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03003906 intel_crtc_dpms_overlay(intel_crtc, false);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02003907 intel_crtc_update_cursor(crtc, false);
3908 intel_disable_planes(crtc);
3909 intel_disable_primary_hw_plane(dev_priv, plane, pipe);
3910}
3911
Jesse Barnesf67a5592011-01-05 10:31:48 -08003912static void ironlake_crtc_enable(struct drm_crtc *crtc)
3913{
3914 struct drm_device *dev = crtc->dev;
3915 struct drm_i915_private *dev_priv = dev->dev_private;
3916 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02003917 struct intel_encoder *encoder;
Jesse Barnesf67a5592011-01-05 10:31:48 -08003918 int pipe = intel_crtc->pipe;
Daniel Vetter29407aa2014-04-24 23:55:08 +02003919 enum plane plane = intel_crtc->plane;
Jesse Barnesf67a5592011-01-05 10:31:48 -08003920
Daniel Vetter08a48462012-07-02 11:43:47 +02003921 WARN_ON(!crtc->enabled);
3922
Jesse Barnesf67a5592011-01-05 10:31:48 -08003923 if (intel_crtc->active)
3924 return;
3925
Daniel Vetter29407aa2014-04-24 23:55:08 +02003926 if (intel_crtc->config.has_dp_encoder)
3927 intel_dp_set_m_n(intel_crtc);
3928
3929 intel_set_pipe_timings(intel_crtc);
3930
3931 if (intel_crtc->config.has_pch_encoder) {
3932 intel_cpu_transcoder_set_m_n(intel_crtc,
3933 &intel_crtc->config.fdi_m_n);
3934 }
3935
3936 ironlake_set_pipeconf(crtc);
3937
3938 /* Set up the display plane register */
3939 I915_WRITE(DSPCNTR(plane), DISPPLANE_GAMMA_ENABLE);
3940 POSTING_READ(DSPCNTR(plane));
3941
3942 dev_priv->display.update_primary_plane(crtc, crtc->primary->fb,
3943 crtc->x, crtc->y);
3944
Jesse Barnesf67a5592011-01-05 10:31:48 -08003945 intel_crtc->active = true;
Paulo Zanoni86642812013-04-12 17:57:57 -03003946
3947 intel_set_cpu_fifo_underrun_reporting(dev, pipe, true);
3948 intel_set_pch_fifo_underrun_reporting(dev, pipe, true);
3949
Daniel Vetterf6736a12013-06-05 13:34:30 +02003950 for_each_encoder_on_crtc(dev, crtc, encoder)
Daniel Vetter952735e2013-06-05 13:34:27 +02003951 if (encoder->pre_enable)
3952 encoder->pre_enable(encoder);
Jesse Barnesf67a5592011-01-05 10:31:48 -08003953
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01003954 if (intel_crtc->config.has_pch_encoder) {
Daniel Vetterfff367c2012-10-27 15:50:28 +02003955 /* Note: FDI PLL enabling _must_ be done before we enable the
3956 * cpu pipes, hence this is separate from all the other fdi/pch
3957 * enabling. */
Daniel Vetter88cefb62012-08-12 19:27:14 +02003958 ironlake_fdi_pll_enable(intel_crtc);
Daniel Vetter46b6f812012-09-06 22:08:33 +02003959 } else {
3960 assert_fdi_tx_disabled(dev_priv, pipe);
3961 assert_fdi_rx_disabled(dev_priv, pipe);
3962 }
Jesse Barnesf67a5592011-01-05 10:31:48 -08003963
Jesse Barnesb074cec2013-04-25 12:55:02 -07003964 ironlake_pfit_enable(intel_crtc);
Jesse Barnesf67a5592011-01-05 10:31:48 -08003965
Jesse Barnes9c54c0d2011-06-15 23:32:33 +02003966 /*
3967 * On ILK+ LUT must be loaded before the pipe is running but with
3968 * clocks enabled
3969 */
3970 intel_crtc_load_lut(crtc);
3971
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03003972 intel_update_watermarks(crtc);
Paulo Zanonie1fdc472014-01-17 13:51:12 -02003973 intel_enable_pipe(intel_crtc);
Jesse Barnesf67a5592011-01-05 10:31:48 -08003974
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01003975 if (intel_crtc->config.has_pch_encoder)
Jesse Barnesf67a5592011-01-05 10:31:48 -08003976 ironlake_pch_enable(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003977
Daniel Vetterfa5c73b2012-07-01 23:24:36 +02003978 for_each_encoder_on_crtc(dev, crtc, encoder)
3979 encoder->enable(encoder);
Daniel Vetter61b77dd2012-07-02 00:16:19 +02003980
3981 if (HAS_PCH_CPT(dev))
Daniel Vettera1520312013-05-03 11:49:50 +02003982 cpt_verify_modeset(dev, intel_crtc->pipe);
Daniel Vetter6ce94102012-10-04 19:20:03 +02003983
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03003984 intel_crtc_enable_planes(crtc);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02003985
Daniel Vetter6ce94102012-10-04 19:20:03 +02003986 /*
3987 * There seems to be a race in PCH platform hw (at least on some
3988 * outputs) where an enabled pipe still completes any pageflip right
3989 * away (as if the pipe is off) instead of waiting for vblank. As soon
3990 * as the first vblank happend, everything works as expected. Hence just
3991 * wait for one vblank before returning to avoid strange things
3992 * happening.
3993 */
3994 intel_wait_for_vblank(dev, intel_crtc->pipe);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003995}
3996
Paulo Zanoni42db64e2013-05-31 16:33:22 -03003997/* IPS only exists on ULT machines and is tied to pipe A. */
3998static bool hsw_crtc_supports_ips(struct intel_crtc *crtc)
3999{
Damien Lespiauf5adf942013-06-24 18:29:34 +01004000 return HAS_IPS(crtc->base.dev) && crtc->pipe == PIPE_A;
Paulo Zanoni42db64e2013-05-31 16:33:22 -03004001}
4002
Paulo Zanonie4916942013-09-20 16:21:19 -03004003/*
4004 * This implements the workaround described in the "notes" section of the mode
4005 * set sequence documentation. When going from no pipes or single pipe to
4006 * multiple pipes, and planes are enabled after the pipe, we need to wait at
4007 * least 2 vblanks on the first pipe before enabling planes on the second pipe.
4008 */
4009static void haswell_mode_set_planes_workaround(struct intel_crtc *crtc)
4010{
4011 struct drm_device *dev = crtc->base.dev;
4012 struct intel_crtc *crtc_it, *other_active_crtc = NULL;
4013
4014 /* We want to get the other_active_crtc only if there's only 1 other
4015 * active crtc. */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01004016 for_each_intel_crtc(dev, crtc_it) {
Paulo Zanonie4916942013-09-20 16:21:19 -03004017 if (!crtc_it->active || crtc_it == crtc)
4018 continue;
4019
4020 if (other_active_crtc)
4021 return;
4022
4023 other_active_crtc = crtc_it;
4024 }
4025 if (!other_active_crtc)
4026 return;
4027
4028 intel_wait_for_vblank(dev, other_active_crtc->pipe);
4029 intel_wait_for_vblank(dev, other_active_crtc->pipe);
4030}
4031
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004032static void haswell_crtc_enable(struct drm_crtc *crtc)
4033{
4034 struct drm_device *dev = crtc->dev;
4035 struct drm_i915_private *dev_priv = dev->dev_private;
4036 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4037 struct intel_encoder *encoder;
4038 int pipe = intel_crtc->pipe;
Daniel Vetter229fca92014-04-24 23:55:09 +02004039 enum plane plane = intel_crtc->plane;
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004040
4041 WARN_ON(!crtc->enabled);
4042
4043 if (intel_crtc->active)
4044 return;
4045
Daniel Vetter229fca92014-04-24 23:55:09 +02004046 if (intel_crtc->config.has_dp_encoder)
4047 intel_dp_set_m_n(intel_crtc);
4048
4049 intel_set_pipe_timings(intel_crtc);
4050
4051 if (intel_crtc->config.has_pch_encoder) {
4052 intel_cpu_transcoder_set_m_n(intel_crtc,
4053 &intel_crtc->config.fdi_m_n);
4054 }
4055
4056 haswell_set_pipeconf(crtc);
4057
4058 intel_set_pipe_csc(crtc);
4059
4060 /* Set up the display plane register */
4061 I915_WRITE(DSPCNTR(plane), DISPPLANE_GAMMA_ENABLE | DISPPLANE_PIPE_CSC_ENABLE);
4062 POSTING_READ(DSPCNTR(plane));
4063
4064 dev_priv->display.update_primary_plane(crtc, crtc->primary->fb,
4065 crtc->x, crtc->y);
4066
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004067 intel_crtc->active = true;
Paulo Zanoni86642812013-04-12 17:57:57 -03004068
4069 intel_set_cpu_fifo_underrun_reporting(dev, pipe, true);
4070 if (intel_crtc->config.has_pch_encoder)
4071 intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_A, true);
4072
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01004073 if (intel_crtc->config.has_pch_encoder)
Paulo Zanoni04945642012-11-01 21:00:59 -02004074 dev_priv->display.fdi_link_train(crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004075
4076 for_each_encoder_on_crtc(dev, crtc, encoder)
4077 if (encoder->pre_enable)
4078 encoder->pre_enable(encoder);
4079
Paulo Zanoni1f544382012-10-24 11:32:00 -02004080 intel_ddi_enable_pipe_clock(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004081
Jesse Barnesb074cec2013-04-25 12:55:02 -07004082 ironlake_pfit_enable(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004083
4084 /*
4085 * On ILK+ LUT must be loaded before the pipe is running but with
4086 * clocks enabled
4087 */
4088 intel_crtc_load_lut(crtc);
4089
Paulo Zanoni1f544382012-10-24 11:32:00 -02004090 intel_ddi_set_pipe_settings(crtc);
Damien Lespiau8228c252013-03-07 15:30:27 +00004091 intel_ddi_enable_transcoder_func(crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004092
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03004093 intel_update_watermarks(crtc);
Paulo Zanonie1fdc472014-01-17 13:51:12 -02004094 intel_enable_pipe(intel_crtc);
Paulo Zanoni42db64e2013-05-31 16:33:22 -03004095
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01004096 if (intel_crtc->config.has_pch_encoder)
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02004097 lpt_pch_enable(crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004098
Jani Nikula8807e552013-08-30 19:40:32 +03004099 for_each_encoder_on_crtc(dev, crtc, encoder) {
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004100 encoder->enable(encoder);
Jani Nikula8807e552013-08-30 19:40:32 +03004101 intel_opregion_notify_encoder(encoder, true);
4102 }
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004103
Paulo Zanonie4916942013-09-20 16:21:19 -03004104 /* If we change the relative order between pipe/planes enabling, we need
4105 * to change the workaround. */
4106 haswell_mode_set_planes_workaround(intel_crtc);
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004107 intel_crtc_enable_planes(crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004108}
4109
Daniel Vetter3f8dce32013-05-08 10:36:30 +02004110static void ironlake_pfit_disable(struct intel_crtc *crtc)
4111{
4112 struct drm_device *dev = crtc->base.dev;
4113 struct drm_i915_private *dev_priv = dev->dev_private;
4114 int pipe = crtc->pipe;
4115
4116 /* To avoid upsetting the power well on haswell only disable the pfit if
4117 * it's in use. The hw state code will make sure we get this right. */
Chris Wilsonfd4daa92013-08-27 17:04:17 +01004118 if (crtc->config.pch_pfit.enabled) {
Daniel Vetter3f8dce32013-05-08 10:36:30 +02004119 I915_WRITE(PF_CTL(pipe), 0);
4120 I915_WRITE(PF_WIN_POS(pipe), 0);
4121 I915_WRITE(PF_WIN_SZ(pipe), 0);
4122 }
4123}
4124
Jesse Barnes6be4a602010-09-10 10:26:01 -07004125static void ironlake_crtc_disable(struct drm_crtc *crtc)
4126{
4127 struct drm_device *dev = crtc->dev;
4128 struct drm_i915_private *dev_priv = dev->dev_private;
4129 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02004130 struct intel_encoder *encoder;
Jesse Barnes6be4a602010-09-10 10:26:01 -07004131 int pipe = intel_crtc->pipe;
Chris Wilson5eddb702010-09-11 13:48:45 +01004132 u32 reg, temp;
Jesse Barnes6be4a602010-09-10 10:26:01 -07004133
Chris Wilsonf7abfe82010-09-13 14:19:16 +01004134 if (!intel_crtc->active)
4135 return;
4136
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004137 intel_crtc_disable_planes(crtc);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004138
Daniel Vetterea9d7582012-07-10 10:42:52 +02004139 for_each_encoder_on_crtc(dev, crtc, encoder)
4140 encoder->disable(encoder);
4141
Daniel Vetterd925c592013-06-05 13:34:04 +02004142 if (intel_crtc->config.has_pch_encoder)
4143 intel_set_pch_fifo_underrun_reporting(dev, pipe, false);
4144
Jesse Barnesb24e7172011-01-04 15:09:30 -08004145 intel_disable_pipe(dev_priv, pipe);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004146
Daniel Vetter3f8dce32013-05-08 10:36:30 +02004147 ironlake_pfit_disable(intel_crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004148
Daniel Vetterbf49ec82012-09-06 22:15:40 +02004149 for_each_encoder_on_crtc(dev, crtc, encoder)
4150 if (encoder->post_disable)
4151 encoder->post_disable(encoder);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004152
Daniel Vetterd925c592013-06-05 13:34:04 +02004153 if (intel_crtc->config.has_pch_encoder) {
4154 ironlake_fdi_disable(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004155
Daniel Vetterd925c592013-06-05 13:34:04 +02004156 ironlake_disable_pch_transcoder(dev_priv, pipe);
4157 intel_set_pch_fifo_underrun_reporting(dev, pipe, true);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004158
Daniel Vetterd925c592013-06-05 13:34:04 +02004159 if (HAS_PCH_CPT(dev)) {
4160 /* disable TRANS_DP_CTL */
4161 reg = TRANS_DP_CTL(pipe);
4162 temp = I915_READ(reg);
4163 temp &= ~(TRANS_DP_OUTPUT_ENABLE |
4164 TRANS_DP_PORT_SEL_MASK);
4165 temp |= TRANS_DP_PORT_SEL_NONE;
4166 I915_WRITE(reg, temp);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004167
Daniel Vetterd925c592013-06-05 13:34:04 +02004168 /* disable DPLL_SEL */
4169 temp = I915_READ(PCH_DPLL_SEL);
Daniel Vetter11887392013-06-05 13:34:09 +02004170 temp &= ~(TRANS_DPLL_ENABLE(pipe) | TRANS_DPLLB_SEL(pipe));
Daniel Vetterd925c592013-06-05 13:34:04 +02004171 I915_WRITE(PCH_DPLL_SEL, temp);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08004172 }
Daniel Vetterd925c592013-06-05 13:34:04 +02004173
4174 /* disable PCH DPLL */
Daniel Vettere72f9fb2013-06-05 13:34:06 +02004175 intel_disable_shared_dpll(intel_crtc);
Daniel Vetterd925c592013-06-05 13:34:04 +02004176
4177 ironlake_fdi_pll_disable(intel_crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004178 }
4179
Chris Wilsonf7abfe82010-09-13 14:19:16 +01004180 intel_crtc->active = false;
Ville Syrjälä46ba6142013-09-10 11:40:40 +03004181 intel_update_watermarks(crtc);
Ben Widawskyd1ebd8162011-04-25 20:11:50 +01004182
4183 mutex_lock(&dev->struct_mutex);
Chris Wilson6b383a72010-09-13 13:54:26 +01004184 intel_update_fbc(dev);
Daniel Vetter71b1c372014-04-24 23:55:03 +02004185 intel_edp_psr_update(dev);
Ben Widawskyd1ebd8162011-04-25 20:11:50 +01004186 mutex_unlock(&dev->struct_mutex);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004187}
4188
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004189static void haswell_crtc_disable(struct drm_crtc *crtc)
4190{
4191 struct drm_device *dev = crtc->dev;
4192 struct drm_i915_private *dev_priv = dev->dev_private;
4193 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4194 struct intel_encoder *encoder;
4195 int pipe = intel_crtc->pipe;
Daniel Vetter3b117c82013-04-17 20:15:07 +02004196 enum transcoder cpu_transcoder = intel_crtc->config.cpu_transcoder;
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004197
4198 if (!intel_crtc->active)
4199 return;
4200
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004201 intel_crtc_disable_planes(crtc);
Ville Syrjälädda9a662013-09-19 17:00:37 -03004202
Jani Nikula8807e552013-08-30 19:40:32 +03004203 for_each_encoder_on_crtc(dev, crtc, encoder) {
4204 intel_opregion_notify_encoder(encoder, false);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004205 encoder->disable(encoder);
Jani Nikula8807e552013-08-30 19:40:32 +03004206 }
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004207
Paulo Zanoni86642812013-04-12 17:57:57 -03004208 if (intel_crtc->config.has_pch_encoder)
4209 intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_A, false);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004210 intel_disable_pipe(dev_priv, pipe);
4211
Paulo Zanoniad80a812012-10-24 16:06:19 -02004212 intel_ddi_disable_transcoder_func(dev_priv, cpu_transcoder);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004213
Daniel Vetter3f8dce32013-05-08 10:36:30 +02004214 ironlake_pfit_disable(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004215
Paulo Zanoni1f544382012-10-24 11:32:00 -02004216 intel_ddi_disable_pipe_clock(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004217
4218 for_each_encoder_on_crtc(dev, crtc, encoder)
4219 if (encoder->post_disable)
4220 encoder->post_disable(encoder);
4221
Daniel Vetter88adfff2013-03-28 10:42:01 +01004222 if (intel_crtc->config.has_pch_encoder) {
Paulo Zanoniab4d9662012-10-31 18:12:55 -02004223 lpt_disable_pch_transcoder(dev_priv);
Paulo Zanoni86642812013-04-12 17:57:57 -03004224 intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_A, true);
Paulo Zanoni1ad960f2012-11-01 21:05:05 -02004225 intel_ddi_fdi_disable(crtc);
Paulo Zanoni83616632012-10-23 18:29:54 -02004226 }
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004227
4228 intel_crtc->active = false;
Ville Syrjälä46ba6142013-09-10 11:40:40 +03004229 intel_update_watermarks(crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004230
4231 mutex_lock(&dev->struct_mutex);
4232 intel_update_fbc(dev);
Daniel Vetter71b1c372014-04-24 23:55:03 +02004233 intel_edp_psr_update(dev);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004234 mutex_unlock(&dev->struct_mutex);
4235}
4236
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004237static void ironlake_crtc_off(struct drm_crtc *crtc)
4238{
4239 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vettere72f9fb2013-06-05 13:34:06 +02004240 intel_put_shared_dpll(intel_crtc);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004241}
4242
Paulo Zanoni6441ab52012-10-05 12:05:58 -03004243static void haswell_crtc_off(struct drm_crtc *crtc)
4244{
4245 intel_ddi_put_crtc_pll(crtc);
4246}
4247
Jesse Barnes2dd24552013-04-25 12:55:01 -07004248static void i9xx_pfit_enable(struct intel_crtc *crtc)
4249{
4250 struct drm_device *dev = crtc->base.dev;
4251 struct drm_i915_private *dev_priv = dev->dev_private;
4252 struct intel_crtc_config *pipe_config = &crtc->config;
4253
Daniel Vetter328d8e82013-05-08 10:36:31 +02004254 if (!crtc->config.gmch_pfit.control)
Jesse Barnes2dd24552013-04-25 12:55:01 -07004255 return;
4256
Daniel Vetterc0b03412013-05-28 12:05:54 +02004257 /*
4258 * The panel fitter should only be adjusted whilst the pipe is disabled,
4259 * according to register description and PRM.
4260 */
Jesse Barnes2dd24552013-04-25 12:55:01 -07004261 WARN_ON(I915_READ(PFIT_CONTROL) & PFIT_ENABLE);
4262 assert_pipe_disabled(dev_priv, crtc->pipe);
4263
Jesse Barnesb074cec2013-04-25 12:55:02 -07004264 I915_WRITE(PFIT_PGM_RATIOS, pipe_config->gmch_pfit.pgm_ratios);
4265 I915_WRITE(PFIT_CONTROL, pipe_config->gmch_pfit.control);
Daniel Vetter5a80c452013-04-25 22:52:18 +02004266
4267 /* Border color in case we don't scale up to the full screen. Black by
4268 * default, change to something else for debugging. */
4269 I915_WRITE(BCLRPAT(crtc->pipe), 0);
Jesse Barnes2dd24552013-04-25 12:55:01 -07004270}
4271
Imre Deak77d22dc2014-03-05 16:20:52 +02004272#define for_each_power_domain(domain, mask) \
4273 for ((domain) = 0; (domain) < POWER_DOMAIN_NUM; (domain)++) \
4274 if ((1 << (domain)) & (mask))
4275
Imre Deak319be8a2014-03-04 19:22:57 +02004276enum intel_display_power_domain
4277intel_display_port_power_domain(struct intel_encoder *intel_encoder)
Imre Deak77d22dc2014-03-05 16:20:52 +02004278{
Imre Deak319be8a2014-03-04 19:22:57 +02004279 struct drm_device *dev = intel_encoder->base.dev;
4280 struct intel_digital_port *intel_dig_port;
4281
4282 switch (intel_encoder->type) {
4283 case INTEL_OUTPUT_UNKNOWN:
4284 /* Only DDI platforms should ever use this output type */
4285 WARN_ON_ONCE(!HAS_DDI(dev));
4286 case INTEL_OUTPUT_DISPLAYPORT:
4287 case INTEL_OUTPUT_HDMI:
4288 case INTEL_OUTPUT_EDP:
4289 intel_dig_port = enc_to_dig_port(&intel_encoder->base);
4290 switch (intel_dig_port->port) {
4291 case PORT_A:
4292 return POWER_DOMAIN_PORT_DDI_A_4_LANES;
4293 case PORT_B:
4294 return POWER_DOMAIN_PORT_DDI_B_4_LANES;
4295 case PORT_C:
4296 return POWER_DOMAIN_PORT_DDI_C_4_LANES;
4297 case PORT_D:
4298 return POWER_DOMAIN_PORT_DDI_D_4_LANES;
4299 default:
4300 WARN_ON_ONCE(1);
4301 return POWER_DOMAIN_PORT_OTHER;
4302 }
4303 case INTEL_OUTPUT_ANALOG:
4304 return POWER_DOMAIN_PORT_CRT;
4305 case INTEL_OUTPUT_DSI:
4306 return POWER_DOMAIN_PORT_DSI;
4307 default:
4308 return POWER_DOMAIN_PORT_OTHER;
4309 }
4310}
4311
4312static unsigned long get_crtc_power_domains(struct drm_crtc *crtc)
4313{
4314 struct drm_device *dev = crtc->dev;
4315 struct intel_encoder *intel_encoder;
4316 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4317 enum pipe pipe = intel_crtc->pipe;
4318 bool pfit_enabled = intel_crtc->config.pch_pfit.enabled;
Imre Deak77d22dc2014-03-05 16:20:52 +02004319 unsigned long mask;
4320 enum transcoder transcoder;
4321
4322 transcoder = intel_pipe_to_cpu_transcoder(dev->dev_private, pipe);
4323
4324 mask = BIT(POWER_DOMAIN_PIPE(pipe));
4325 mask |= BIT(POWER_DOMAIN_TRANSCODER(transcoder));
4326 if (pfit_enabled)
4327 mask |= BIT(POWER_DOMAIN_PIPE_PANEL_FITTER(pipe));
4328
Imre Deak319be8a2014-03-04 19:22:57 +02004329 for_each_encoder_on_crtc(dev, crtc, intel_encoder)
4330 mask |= BIT(intel_display_port_power_domain(intel_encoder));
4331
Imre Deak77d22dc2014-03-05 16:20:52 +02004332 return mask;
4333}
4334
4335void intel_display_set_init_power(struct drm_i915_private *dev_priv,
4336 bool enable)
4337{
4338 if (dev_priv->power_domains.init_power_on == enable)
4339 return;
4340
4341 if (enable)
4342 intel_display_power_get(dev_priv, POWER_DOMAIN_INIT);
4343 else
4344 intel_display_power_put(dev_priv, POWER_DOMAIN_INIT);
4345
4346 dev_priv->power_domains.init_power_on = enable;
4347}
4348
4349static void modeset_update_crtc_power_domains(struct drm_device *dev)
4350{
4351 struct drm_i915_private *dev_priv = dev->dev_private;
4352 unsigned long pipe_domains[I915_MAX_PIPES] = { 0, };
4353 struct intel_crtc *crtc;
4354
4355 /*
4356 * First get all needed power domains, then put all unneeded, to avoid
4357 * any unnecessary toggling of the power wells.
4358 */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01004359 for_each_intel_crtc(dev, crtc) {
Imre Deak77d22dc2014-03-05 16:20:52 +02004360 enum intel_display_power_domain domain;
4361
4362 if (!crtc->base.enabled)
4363 continue;
4364
Imre Deak319be8a2014-03-04 19:22:57 +02004365 pipe_domains[crtc->pipe] = get_crtc_power_domains(&crtc->base);
Imre Deak77d22dc2014-03-05 16:20:52 +02004366
4367 for_each_power_domain(domain, pipe_domains[crtc->pipe])
4368 intel_display_power_get(dev_priv, domain);
4369 }
4370
Damien Lespiaud3fcc802014-05-13 23:32:22 +01004371 for_each_intel_crtc(dev, crtc) {
Imre Deak77d22dc2014-03-05 16:20:52 +02004372 enum intel_display_power_domain domain;
4373
4374 for_each_power_domain(domain, crtc->enabled_power_domains)
4375 intel_display_power_put(dev_priv, domain);
4376
4377 crtc->enabled_power_domains = pipe_domains[crtc->pipe];
4378 }
4379
4380 intel_display_set_init_power(dev_priv, false);
4381}
4382
Jesse Barnes586f49d2013-11-04 16:06:59 -08004383int valleyview_get_vco(struct drm_i915_private *dev_priv)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004384{
Jesse Barnes586f49d2013-11-04 16:06:59 -08004385 int hpll_freq, vco_freq[] = { 800, 1600, 2000, 2400 };
Jesse Barnes30a970c2013-11-04 13:48:12 -08004386
Jesse Barnes586f49d2013-11-04 16:06:59 -08004387 /* Obtain SKU information */
4388 mutex_lock(&dev_priv->dpio_lock);
4389 hpll_freq = vlv_cck_read(dev_priv, CCK_FUSE_REG) &
4390 CCK_FUSE_HPLL_FREQ_MASK;
4391 mutex_unlock(&dev_priv->dpio_lock);
Jesse Barnes30a970c2013-11-04 13:48:12 -08004392
Jesse Barnes586f49d2013-11-04 16:06:59 -08004393 return vco_freq[hpll_freq];
Jesse Barnes30a970c2013-11-04 13:48:12 -08004394}
4395
4396/* Adjust CDclk dividers to allow high res or save power if possible */
4397static void valleyview_set_cdclk(struct drm_device *dev, int cdclk)
4398{
4399 struct drm_i915_private *dev_priv = dev->dev_private;
4400 u32 val, cmd;
4401
Imre Deakd60c4472014-03-27 17:45:10 +02004402 WARN_ON(valleyview_cur_cdclk(dev_priv) != dev_priv->vlv_cdclk_freq);
4403 dev_priv->vlv_cdclk_freq = cdclk;
4404
Jesse Barnes30a970c2013-11-04 13:48:12 -08004405 if (cdclk >= 320) /* jump to highest voltage for 400MHz too */
4406 cmd = 2;
4407 else if (cdclk == 266)
4408 cmd = 1;
4409 else
4410 cmd = 0;
4411
4412 mutex_lock(&dev_priv->rps.hw_lock);
4413 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
4414 val &= ~DSPFREQGUAR_MASK;
4415 val |= (cmd << DSPFREQGUAR_SHIFT);
4416 vlv_punit_write(dev_priv, PUNIT_REG_DSPFREQ, val);
4417 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ) &
4418 DSPFREQSTAT_MASK) == (cmd << DSPFREQSTAT_SHIFT),
4419 50)) {
4420 DRM_ERROR("timed out waiting for CDclk change\n");
4421 }
4422 mutex_unlock(&dev_priv->rps.hw_lock);
4423
4424 if (cdclk == 400) {
4425 u32 divider, vco;
4426
4427 vco = valleyview_get_vco(dev_priv);
4428 divider = ((vco << 1) / cdclk) - 1;
4429
4430 mutex_lock(&dev_priv->dpio_lock);
4431 /* adjust cdclk divider */
4432 val = vlv_cck_read(dev_priv, CCK_DISPLAY_CLOCK_CONTROL);
4433 val &= ~0xf;
4434 val |= divider;
4435 vlv_cck_write(dev_priv, CCK_DISPLAY_CLOCK_CONTROL, val);
4436 mutex_unlock(&dev_priv->dpio_lock);
4437 }
4438
4439 mutex_lock(&dev_priv->dpio_lock);
4440 /* adjust self-refresh exit latency value */
4441 val = vlv_bunit_read(dev_priv, BUNIT_REG_BISOC);
4442 val &= ~0x7f;
4443
4444 /*
4445 * For high bandwidth configs, we set a higher latency in the bunit
4446 * so that the core display fetch happens in time to avoid underruns.
4447 */
4448 if (cdclk == 400)
4449 val |= 4500 / 250; /* 4.5 usec */
4450 else
4451 val |= 3000 / 250; /* 3.0 usec */
4452 vlv_bunit_write(dev_priv, BUNIT_REG_BISOC, val);
4453 mutex_unlock(&dev_priv->dpio_lock);
4454
4455 /* Since we changed the CDclk, we need to update the GMBUSFREQ too */
4456 intel_i2c_reset(dev);
4457}
4458
Imre Deakd60c4472014-03-27 17:45:10 +02004459int valleyview_cur_cdclk(struct drm_i915_private *dev_priv)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004460{
4461 int cur_cdclk, vco;
4462 int divider;
4463
4464 vco = valleyview_get_vco(dev_priv);
4465
4466 mutex_lock(&dev_priv->dpio_lock);
4467 divider = vlv_cck_read(dev_priv, CCK_DISPLAY_CLOCK_CONTROL);
4468 mutex_unlock(&dev_priv->dpio_lock);
4469
4470 divider &= 0xf;
4471
4472 cur_cdclk = (vco << 1) / (divider + 1);
4473
4474 return cur_cdclk;
4475}
4476
4477static int valleyview_calc_cdclk(struct drm_i915_private *dev_priv,
4478 int max_pixclk)
4479{
Jesse Barnes30a970c2013-11-04 13:48:12 -08004480 /*
4481 * Really only a few cases to deal with, as only 4 CDclks are supported:
4482 * 200MHz
4483 * 267MHz
4484 * 320MHz
4485 * 400MHz
4486 * So we check to see whether we're above 90% of the lower bin and
4487 * adjust if needed.
4488 */
4489 if (max_pixclk > 288000) {
4490 return 400;
4491 } else if (max_pixclk > 240000) {
4492 return 320;
4493 } else
4494 return 266;
4495 /* Looks like the 200MHz CDclk freq doesn't work on some configs */
4496}
4497
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +02004498/* compute the max pixel clock for new configuration */
4499static int intel_mode_max_pixclk(struct drm_i915_private *dev_priv)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004500{
4501 struct drm_device *dev = dev_priv->dev;
4502 struct intel_crtc *intel_crtc;
4503 int max_pixclk = 0;
4504
Damien Lespiaud3fcc802014-05-13 23:32:22 +01004505 for_each_intel_crtc(dev, intel_crtc) {
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +02004506 if (intel_crtc->new_enabled)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004507 max_pixclk = max(max_pixclk,
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +02004508 intel_crtc->new_config->adjusted_mode.crtc_clock);
Jesse Barnes30a970c2013-11-04 13:48:12 -08004509 }
4510
4511 return max_pixclk;
4512}
4513
4514static void valleyview_modeset_global_pipes(struct drm_device *dev,
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +02004515 unsigned *prepare_pipes)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004516{
4517 struct drm_i915_private *dev_priv = dev->dev_private;
4518 struct intel_crtc *intel_crtc;
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +02004519 int max_pixclk = intel_mode_max_pixclk(dev_priv);
Jesse Barnes30a970c2013-11-04 13:48:12 -08004520
Imre Deakd60c4472014-03-27 17:45:10 +02004521 if (valleyview_calc_cdclk(dev_priv, max_pixclk) ==
4522 dev_priv->vlv_cdclk_freq)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004523 return;
4524
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +02004525 /* disable/enable all currently active pipes while we change cdclk */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01004526 for_each_intel_crtc(dev, intel_crtc)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004527 if (intel_crtc->base.enabled)
4528 *prepare_pipes |= (1 << intel_crtc->pipe);
4529}
4530
4531static void valleyview_modeset_global_resources(struct drm_device *dev)
4532{
4533 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +02004534 int max_pixclk = intel_mode_max_pixclk(dev_priv);
Jesse Barnes30a970c2013-11-04 13:48:12 -08004535 int req_cdclk = valleyview_calc_cdclk(dev_priv, max_pixclk);
4536
Imre Deakd60c4472014-03-27 17:45:10 +02004537 if (req_cdclk != dev_priv->vlv_cdclk_freq)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004538 valleyview_set_cdclk(dev, req_cdclk);
Imre Deak77961eb2014-03-05 16:20:56 +02004539 modeset_update_crtc_power_domains(dev);
Jesse Barnes30a970c2013-11-04 13:48:12 -08004540}
4541
Jesse Barnes89b667f2013-04-18 14:51:36 -07004542static void valleyview_crtc_enable(struct drm_crtc *crtc)
4543{
4544 struct drm_device *dev = crtc->dev;
Daniel Vetter5b18e572014-04-24 23:55:06 +02004545 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes89b667f2013-04-18 14:51:36 -07004546 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4547 struct intel_encoder *encoder;
4548 int pipe = intel_crtc->pipe;
Daniel Vetter5b18e572014-04-24 23:55:06 +02004549 int plane = intel_crtc->plane;
Jani Nikula23538ef2013-08-27 15:12:22 +03004550 bool is_dsi;
Daniel Vetter5b18e572014-04-24 23:55:06 +02004551 u32 dspcntr;
Jesse Barnes89b667f2013-04-18 14:51:36 -07004552
4553 WARN_ON(!crtc->enabled);
4554
4555 if (intel_crtc->active)
4556 return;
4557
Daniel Vetter5b18e572014-04-24 23:55:06 +02004558 /* Set up the display plane register */
4559 dspcntr = DISPPLANE_GAMMA_ENABLE;
4560
4561 if (intel_crtc->config.has_dp_encoder)
4562 intel_dp_set_m_n(intel_crtc);
4563
4564 intel_set_pipe_timings(intel_crtc);
4565
4566 /* pipesrc and dspsize control the size that is scaled from,
4567 * which should always be the user's requested size.
4568 */
4569 I915_WRITE(DSPSIZE(plane),
4570 ((intel_crtc->config.pipe_src_h - 1) << 16) |
4571 (intel_crtc->config.pipe_src_w - 1));
4572 I915_WRITE(DSPPOS(plane), 0);
4573
4574 i9xx_set_pipeconf(intel_crtc);
4575
4576 I915_WRITE(DSPCNTR(plane), dspcntr);
4577 POSTING_READ(DSPCNTR(plane));
4578
4579 dev_priv->display.update_primary_plane(crtc, crtc->primary->fb,
4580 crtc->x, crtc->y);
4581
Jesse Barnes89b667f2013-04-18 14:51:36 -07004582 intel_crtc->active = true;
Jesse Barnes89b667f2013-04-18 14:51:36 -07004583
Jesse Barnes89b667f2013-04-18 14:51:36 -07004584 for_each_encoder_on_crtc(dev, crtc, encoder)
4585 if (encoder->pre_pll_enable)
4586 encoder->pre_pll_enable(encoder);
4587
Jani Nikula23538ef2013-08-27 15:12:22 +03004588 is_dsi = intel_pipe_has_type(crtc, INTEL_OUTPUT_DSI);
4589
Chon Ming Lee9d556c92014-05-02 14:27:47 +03004590 if (!is_dsi) {
4591 if (IS_CHERRYVIEW(dev))
4592 chv_enable_pll(intel_crtc);
4593 else
4594 vlv_enable_pll(intel_crtc);
4595 }
Jesse Barnes89b667f2013-04-18 14:51:36 -07004596
4597 for_each_encoder_on_crtc(dev, crtc, encoder)
4598 if (encoder->pre_enable)
4599 encoder->pre_enable(encoder);
4600
Jesse Barnes2dd24552013-04-25 12:55:01 -07004601 i9xx_pfit_enable(intel_crtc);
4602
Ville Syrjälä63cbb072013-06-04 13:48:59 +03004603 intel_crtc_load_lut(crtc);
4604
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03004605 intel_update_watermarks(crtc);
Paulo Zanonie1fdc472014-01-17 13:51:12 -02004606 intel_enable_pipe(intel_crtc);
Ville Syrjälä2d9d2b02014-01-17 11:44:31 +02004607 intel_set_cpu_fifo_underrun_reporting(dev, pipe, true);
Daniel Vetterbe6a6f82014-04-15 18:41:22 +02004608
Jani Nikula50049452013-07-30 12:20:32 +03004609 for_each_encoder_on_crtc(dev, crtc, encoder)
4610 encoder->enable(encoder);
Ville Syrjälä9ab04602014-05-08 19:23:14 +03004611
4612 intel_crtc_enable_planes(crtc);
Jesse Barnes89b667f2013-04-18 14:51:36 -07004613}
4614
Daniel Vetterf13c2ef2014-04-24 23:55:10 +02004615static void i9xx_set_pll_dividers(struct intel_crtc *crtc)
4616{
4617 struct drm_device *dev = crtc->base.dev;
4618 struct drm_i915_private *dev_priv = dev->dev_private;
4619
4620 I915_WRITE(FP0(crtc->pipe), crtc->config.dpll_hw_state.fp0);
4621 I915_WRITE(FP1(crtc->pipe), crtc->config.dpll_hw_state.fp1);
4622}
4623
Jesse Barnes0b8765c62010-09-10 10:31:34 -07004624static void i9xx_crtc_enable(struct drm_crtc *crtc)
Zhenyu Wang2c072452009-06-05 15:38:42 +08004625{
4626 struct drm_device *dev = crtc->dev;
Daniel Vetter5b18e572014-04-24 23:55:06 +02004627 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -08004628 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02004629 struct intel_encoder *encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08004630 int pipe = intel_crtc->pipe;
Daniel Vetter5b18e572014-04-24 23:55:06 +02004631 int plane = intel_crtc->plane;
4632 u32 dspcntr;
Jesse Barnes79e53942008-11-07 14:24:08 -08004633
Daniel Vetter08a48462012-07-02 11:43:47 +02004634 WARN_ON(!crtc->enabled);
4635
Chris Wilsonf7abfe82010-09-13 14:19:16 +01004636 if (intel_crtc->active)
4637 return;
4638
Daniel Vetterf13c2ef2014-04-24 23:55:10 +02004639 i9xx_set_pll_dividers(intel_crtc);
4640
Daniel Vetter5b18e572014-04-24 23:55:06 +02004641 /* Set up the display plane register */
4642 dspcntr = DISPPLANE_GAMMA_ENABLE;
4643
4644 if (pipe == 0)
4645 dspcntr &= ~DISPPLANE_SEL_PIPE_MASK;
4646 else
4647 dspcntr |= DISPPLANE_SEL_PIPE_B;
4648
4649 if (intel_crtc->config.has_dp_encoder)
4650 intel_dp_set_m_n(intel_crtc);
4651
4652 intel_set_pipe_timings(intel_crtc);
4653
4654 /* pipesrc and dspsize control the size that is scaled from,
4655 * which should always be the user's requested size.
4656 */
4657 I915_WRITE(DSPSIZE(plane),
4658 ((intel_crtc->config.pipe_src_h - 1) << 16) |
4659 (intel_crtc->config.pipe_src_w - 1));
4660 I915_WRITE(DSPPOS(plane), 0);
4661
4662 i9xx_set_pipeconf(intel_crtc);
4663
4664 I915_WRITE(DSPCNTR(plane), dspcntr);
4665 POSTING_READ(DSPCNTR(plane));
4666
4667 dev_priv->display.update_primary_plane(crtc, crtc->primary->fb,
4668 crtc->x, crtc->y);
4669
Chris Wilsonf7abfe82010-09-13 14:19:16 +01004670 intel_crtc->active = true;
Chris Wilson6b383a72010-09-13 13:54:26 +01004671
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02004672 for_each_encoder_on_crtc(dev, crtc, encoder)
Mika Kuoppala9d6d9f12013-02-08 16:35:38 +02004673 if (encoder->pre_enable)
4674 encoder->pre_enable(encoder);
4675
Daniel Vetterf6736a12013-06-05 13:34:30 +02004676 i9xx_enable_pll(intel_crtc);
4677
Jesse Barnes2dd24552013-04-25 12:55:01 -07004678 i9xx_pfit_enable(intel_crtc);
4679
Ville Syrjälä63cbb072013-06-04 13:48:59 +03004680 intel_crtc_load_lut(crtc);
4681
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03004682 intel_update_watermarks(crtc);
Paulo Zanonie1fdc472014-01-17 13:51:12 -02004683 intel_enable_pipe(intel_crtc);
Ville Syrjälä2d9d2b02014-01-17 11:44:31 +02004684 intel_set_cpu_fifo_underrun_reporting(dev, pipe, true);
Daniel Vetterbe6a6f82014-04-15 18:41:22 +02004685
Daniel Vetterfa5c73b2012-07-01 23:24:36 +02004686 for_each_encoder_on_crtc(dev, crtc, encoder)
4687 encoder->enable(encoder);
Ville Syrjälä9ab04602014-05-08 19:23:14 +03004688
4689 intel_crtc_enable_planes(crtc);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07004690}
4691
Daniel Vetter87476d62013-04-11 16:29:06 +02004692static void i9xx_pfit_disable(struct intel_crtc *crtc)
4693{
4694 struct drm_device *dev = crtc->base.dev;
4695 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter328d8e82013-05-08 10:36:31 +02004696
4697 if (!crtc->config.gmch_pfit.control)
4698 return;
Daniel Vetter87476d62013-04-11 16:29:06 +02004699
4700 assert_pipe_disabled(dev_priv, crtc->pipe);
4701
Daniel Vetter328d8e82013-05-08 10:36:31 +02004702 DRM_DEBUG_DRIVER("disabling pfit, current: 0x%08x\n",
4703 I915_READ(PFIT_CONTROL));
4704 I915_WRITE(PFIT_CONTROL, 0);
Daniel Vetter87476d62013-04-11 16:29:06 +02004705}
4706
Jesse Barnes0b8765c62010-09-10 10:31:34 -07004707static void i9xx_crtc_disable(struct drm_crtc *crtc)
4708{
4709 struct drm_device *dev = crtc->dev;
4710 struct drm_i915_private *dev_priv = dev->dev_private;
4711 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02004712 struct intel_encoder *encoder;
Jesse Barnes0b8765c62010-09-10 10:31:34 -07004713 int pipe = intel_crtc->pipe;
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02004714
Chris Wilsonf7abfe82010-09-13 14:19:16 +01004715 if (!intel_crtc->active)
4716 return;
4717
Ville Syrjälä9ab04602014-05-08 19:23:14 +03004718 intel_crtc_disable_planes(crtc);
4719
Daniel Vetterea9d7582012-07-10 10:42:52 +02004720 for_each_encoder_on_crtc(dev, crtc, encoder)
4721 encoder->disable(encoder);
4722
Ville Syrjälä2d9d2b02014-01-17 11:44:31 +02004723 intel_set_cpu_fifo_underrun_reporting(dev, pipe, false);
Jesse Barnesb24e7172011-01-04 15:09:30 -08004724 intel_disable_pipe(dev_priv, pipe);
Mika Kuoppala24a1f162013-02-08 16:35:37 +02004725
Daniel Vetter87476d62013-04-11 16:29:06 +02004726 i9xx_pfit_disable(intel_crtc);
Mika Kuoppala24a1f162013-02-08 16:35:37 +02004727
Jesse Barnes89b667f2013-04-18 14:51:36 -07004728 for_each_encoder_on_crtc(dev, crtc, encoder)
4729 if (encoder->post_disable)
4730 encoder->post_disable(encoder);
4731
Chon Ming Lee076ed3b2014-04-09 13:28:17 +03004732 if (!intel_pipe_has_type(crtc, INTEL_OUTPUT_DSI)) {
4733 if (IS_CHERRYVIEW(dev))
4734 chv_disable_pll(dev_priv, pipe);
4735 else if (IS_VALLEYVIEW(dev))
4736 vlv_disable_pll(dev_priv, pipe);
4737 else
4738 i9xx_disable_pll(dev_priv, pipe);
4739 }
Jesse Barnes0b8765c62010-09-10 10:31:34 -07004740
Chris Wilsonf7abfe82010-09-13 14:19:16 +01004741 intel_crtc->active = false;
Ville Syrjälä46ba6142013-09-10 11:40:40 +03004742 intel_update_watermarks(crtc);
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03004743
Daniel Vetterefa96242014-04-24 23:55:02 +02004744 mutex_lock(&dev->struct_mutex);
Chris Wilson6b383a72010-09-13 13:54:26 +01004745 intel_update_fbc(dev);
Daniel Vetter71b1c372014-04-24 23:55:03 +02004746 intel_edp_psr_update(dev);
Daniel Vetterefa96242014-04-24 23:55:02 +02004747 mutex_unlock(&dev->struct_mutex);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07004748}
4749
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004750static void i9xx_crtc_off(struct drm_crtc *crtc)
4751{
4752}
4753
Daniel Vetter976f8a22012-07-08 22:34:21 +02004754static void intel_crtc_update_sarea(struct drm_crtc *crtc,
4755 bool enabled)
Zhenyu Wang2c072452009-06-05 15:38:42 +08004756{
4757 struct drm_device *dev = crtc->dev;
4758 struct drm_i915_master_private *master_priv;
4759 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4760 int pipe = intel_crtc->pipe;
Jesse Barnes79e53942008-11-07 14:24:08 -08004761
4762 if (!dev->primary->master)
4763 return;
4764
4765 master_priv = dev->primary->master->driver_priv;
4766 if (!master_priv->sarea_priv)
4767 return;
4768
Jesse Barnes79e53942008-11-07 14:24:08 -08004769 switch (pipe) {
4770 case 0:
4771 master_priv->sarea_priv->pipeA_w = enabled ? crtc->mode.hdisplay : 0;
4772 master_priv->sarea_priv->pipeA_h = enabled ? crtc->mode.vdisplay : 0;
4773 break;
4774 case 1:
4775 master_priv->sarea_priv->pipeB_w = enabled ? crtc->mode.hdisplay : 0;
4776 master_priv->sarea_priv->pipeB_h = enabled ? crtc->mode.vdisplay : 0;
4777 break;
4778 default:
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08004779 DRM_ERROR("Can't update pipe %c in SAREA\n", pipe_name(pipe));
Jesse Barnes79e53942008-11-07 14:24:08 -08004780 break;
4781 }
Jesse Barnes79e53942008-11-07 14:24:08 -08004782}
4783
Daniel Vetter976f8a22012-07-08 22:34:21 +02004784/**
4785 * Sets the power management mode of the pipe and plane.
4786 */
4787void intel_crtc_update_dpms(struct drm_crtc *crtc)
Chris Wilsoncdd59982010-09-08 16:30:16 +01004788{
Chris Wilsoncdd59982010-09-08 16:30:16 +01004789 struct drm_device *dev = crtc->dev;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004790 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter976f8a22012-07-08 22:34:21 +02004791 struct intel_encoder *intel_encoder;
4792 bool enable = false;
Chris Wilsoncdd59982010-09-08 16:30:16 +01004793
Daniel Vetter976f8a22012-07-08 22:34:21 +02004794 for_each_encoder_on_crtc(dev, crtc, intel_encoder)
4795 enable |= intel_encoder->connectors_active;
4796
4797 if (enable)
4798 dev_priv->display.crtc_enable(crtc);
4799 else
4800 dev_priv->display.crtc_disable(crtc);
4801
4802 intel_crtc_update_sarea(crtc, enable);
4803}
4804
Daniel Vetter976f8a22012-07-08 22:34:21 +02004805static void intel_crtc_disable(struct drm_crtc *crtc)
4806{
4807 struct drm_device *dev = crtc->dev;
4808 struct drm_connector *connector;
4809 struct drm_i915_private *dev_priv = dev->dev_private;
4810
4811 /* crtc should still be enabled when we disable it. */
4812 WARN_ON(!crtc->enabled);
4813
4814 dev_priv->display.crtc_disable(crtc);
4815 intel_crtc_update_sarea(crtc, false);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004816 dev_priv->display.off(crtc);
4817
Chris Wilson931872f2012-01-16 23:01:13 +00004818 assert_plane_disabled(dev->dev_private, to_intel_crtc(crtc)->plane);
Jani Nikula93ce0ba2013-09-13 11:03:08 +03004819 assert_cursor_disabled(dev_priv, to_intel_crtc(crtc)->pipe);
Chris Wilson931872f2012-01-16 23:01:13 +00004820 assert_pipe_disabled(dev->dev_private, to_intel_crtc(crtc)->pipe);
Chris Wilsoncdd59982010-09-08 16:30:16 +01004821
Matt Roperf4510a22014-04-01 15:22:40 -07004822 if (crtc->primary->fb) {
Chris Wilsoncdd59982010-09-08 16:30:16 +01004823 mutex_lock(&dev->struct_mutex);
Matt Roperf4510a22014-04-01 15:22:40 -07004824 intel_unpin_fb_obj(to_intel_framebuffer(crtc->primary->fb)->obj);
Chris Wilsoncdd59982010-09-08 16:30:16 +01004825 mutex_unlock(&dev->struct_mutex);
Matt Roperf4510a22014-04-01 15:22:40 -07004826 crtc->primary->fb = NULL;
Daniel Vetter976f8a22012-07-08 22:34:21 +02004827 }
4828
4829 /* Update computed state. */
4830 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
4831 if (!connector->encoder || !connector->encoder->crtc)
4832 continue;
4833
4834 if (connector->encoder->crtc != crtc)
4835 continue;
4836
4837 connector->dpms = DRM_MODE_DPMS_OFF;
4838 to_intel_encoder(connector->encoder)->connectors_active = false;
Chris Wilsoncdd59982010-09-08 16:30:16 +01004839 }
4840}
4841
Chris Wilsonea5b2132010-08-04 13:50:23 +01004842void intel_encoder_destroy(struct drm_encoder *encoder)
4843{
Chris Wilson4ef69c72010-09-09 15:14:28 +01004844 struct intel_encoder *intel_encoder = to_intel_encoder(encoder);
Chris Wilsonea5b2132010-08-04 13:50:23 +01004845
Chris Wilsonea5b2132010-08-04 13:50:23 +01004846 drm_encoder_cleanup(encoder);
4847 kfree(intel_encoder);
4848}
4849
Damien Lespiau92373292013-08-08 22:28:57 +01004850/* Simple dpms helper for encoders with just one connector, no cloning and only
Daniel Vetter5ab432e2012-06-30 08:59:56 +02004851 * one kind of off state. It clamps all !ON modes to fully OFF and changes the
4852 * state of the entire output pipe. */
Damien Lespiau92373292013-08-08 22:28:57 +01004853static void intel_encoder_dpms(struct intel_encoder *encoder, int mode)
Daniel Vetter5ab432e2012-06-30 08:59:56 +02004854{
4855 if (mode == DRM_MODE_DPMS_ON) {
4856 encoder->connectors_active = true;
4857
Daniel Vetterb2cabb02012-07-01 22:42:24 +02004858 intel_crtc_update_dpms(encoder->base.crtc);
Daniel Vetter5ab432e2012-06-30 08:59:56 +02004859 } else {
4860 encoder->connectors_active = false;
4861
Daniel Vetterb2cabb02012-07-01 22:42:24 +02004862 intel_crtc_update_dpms(encoder->base.crtc);
Daniel Vetter5ab432e2012-06-30 08:59:56 +02004863 }
4864}
4865
Daniel Vetter0a91ca22012-07-02 21:54:27 +02004866/* Cross check the actual hw state with our own modeset state tracking (and it's
4867 * internal consistency). */
Daniel Vetterb9805142012-08-31 17:37:33 +02004868static void intel_connector_check_state(struct intel_connector *connector)
Daniel Vetter0a91ca22012-07-02 21:54:27 +02004869{
4870 if (connector->get_hw_state(connector)) {
4871 struct intel_encoder *encoder = connector->encoder;
4872 struct drm_crtc *crtc;
4873 bool encoder_enabled;
4874 enum pipe pipe;
4875
4876 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
4877 connector->base.base.id,
4878 drm_get_connector_name(&connector->base));
4879
4880 WARN(connector->base.dpms == DRM_MODE_DPMS_OFF,
4881 "wrong connector dpms state\n");
4882 WARN(connector->base.encoder != &encoder->base,
4883 "active connector not linked to encoder\n");
4884 WARN(!encoder->connectors_active,
4885 "encoder->connectors_active not set\n");
4886
4887 encoder_enabled = encoder->get_hw_state(encoder, &pipe);
4888 WARN(!encoder_enabled, "encoder not enabled\n");
4889 if (WARN_ON(!encoder->base.crtc))
4890 return;
4891
4892 crtc = encoder->base.crtc;
4893
4894 WARN(!crtc->enabled, "crtc not enabled\n");
4895 WARN(!to_intel_crtc(crtc)->active, "crtc not active\n");
4896 WARN(pipe != to_intel_crtc(crtc)->pipe,
4897 "encoder active on the wrong pipe\n");
4898 }
4899}
4900
Daniel Vetter5ab432e2012-06-30 08:59:56 +02004901/* Even simpler default implementation, if there's really no special case to
4902 * consider. */
4903void intel_connector_dpms(struct drm_connector *connector, int mode)
4904{
Daniel Vetter5ab432e2012-06-30 08:59:56 +02004905 /* All the simple cases only support two dpms states. */
4906 if (mode != DRM_MODE_DPMS_ON)
4907 mode = DRM_MODE_DPMS_OFF;
4908
4909 if (mode == connector->dpms)
4910 return;
4911
4912 connector->dpms = mode;
4913
4914 /* Only need to change hw state when actually enabled */
Chris Wilsonc9976dc2013-09-29 19:15:07 +01004915 if (connector->encoder)
4916 intel_encoder_dpms(to_intel_encoder(connector->encoder), mode);
Daniel Vetter0a91ca22012-07-02 21:54:27 +02004917
Daniel Vetterb9805142012-08-31 17:37:33 +02004918 intel_modeset_check_state(connector->dev);
Daniel Vetter5ab432e2012-06-30 08:59:56 +02004919}
4920
Daniel Vetterf0947c32012-07-02 13:10:34 +02004921/* Simple connector->get_hw_state implementation for encoders that support only
4922 * one connector and no cloning and hence the encoder state determines the state
4923 * of the connector. */
4924bool intel_connector_get_hw_state(struct intel_connector *connector)
4925{
Daniel Vetter24929352012-07-02 20:28:59 +02004926 enum pipe pipe = 0;
Daniel Vetterf0947c32012-07-02 13:10:34 +02004927 struct intel_encoder *encoder = connector->encoder;
4928
4929 return encoder->get_hw_state(encoder, &pipe);
4930}
4931
Daniel Vetter1857e1d2013-04-29 19:34:16 +02004932static bool ironlake_check_fdi_lanes(struct drm_device *dev, enum pipe pipe,
4933 struct intel_crtc_config *pipe_config)
4934{
4935 struct drm_i915_private *dev_priv = dev->dev_private;
4936 struct intel_crtc *pipe_B_crtc =
4937 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[PIPE_B]);
4938
4939 DRM_DEBUG_KMS("checking fdi config on pipe %c, lanes %i\n",
4940 pipe_name(pipe), pipe_config->fdi_lanes);
4941 if (pipe_config->fdi_lanes > 4) {
4942 DRM_DEBUG_KMS("invalid fdi lane config on pipe %c: %i lanes\n",
4943 pipe_name(pipe), pipe_config->fdi_lanes);
4944 return false;
4945 }
4946
Paulo Zanonibafb6552013-11-02 21:07:44 -07004947 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Daniel Vetter1857e1d2013-04-29 19:34:16 +02004948 if (pipe_config->fdi_lanes > 2) {
4949 DRM_DEBUG_KMS("only 2 lanes on haswell, required: %i lanes\n",
4950 pipe_config->fdi_lanes);
4951 return false;
4952 } else {
4953 return true;
4954 }
4955 }
4956
4957 if (INTEL_INFO(dev)->num_pipes == 2)
4958 return true;
4959
4960 /* Ivybridge 3 pipe is really complicated */
4961 switch (pipe) {
4962 case PIPE_A:
4963 return true;
4964 case PIPE_B:
4965 if (dev_priv->pipe_to_crtc_mapping[PIPE_C]->enabled &&
4966 pipe_config->fdi_lanes > 2) {
4967 DRM_DEBUG_KMS("invalid shared fdi lane config on pipe %c: %i lanes\n",
4968 pipe_name(pipe), pipe_config->fdi_lanes);
4969 return false;
4970 }
4971 return true;
4972 case PIPE_C:
Daniel Vetter1e833f42013-02-19 22:31:57 +01004973 if (!pipe_has_enabled_pch(pipe_B_crtc) ||
Daniel Vetter1857e1d2013-04-29 19:34:16 +02004974 pipe_B_crtc->config.fdi_lanes <= 2) {
4975 if (pipe_config->fdi_lanes > 2) {
4976 DRM_DEBUG_KMS("invalid shared fdi lane config on pipe %c: %i lanes\n",
4977 pipe_name(pipe), pipe_config->fdi_lanes);
4978 return false;
4979 }
4980 } else {
4981 DRM_DEBUG_KMS("fdi link B uses too many lanes to enable link C\n");
4982 return false;
4983 }
4984 return true;
4985 default:
4986 BUG();
4987 }
4988}
4989
Daniel Vettere29c22c2013-02-21 00:00:16 +01004990#define RETRY 1
4991static int ironlake_fdi_compute_config(struct intel_crtc *intel_crtc,
4992 struct intel_crtc_config *pipe_config)
Daniel Vetter877d48d2013-04-19 11:24:43 +02004993{
Daniel Vetter1857e1d2013-04-29 19:34:16 +02004994 struct drm_device *dev = intel_crtc->base.dev;
Daniel Vetter877d48d2013-04-19 11:24:43 +02004995 struct drm_display_mode *adjusted_mode = &pipe_config->adjusted_mode;
Daniel Vetterff9a6752013-06-01 17:16:21 +02004996 int lane, link_bw, fdi_dotclock;
Daniel Vettere29c22c2013-02-21 00:00:16 +01004997 bool setup_ok, needs_recompute = false;
Daniel Vetter877d48d2013-04-19 11:24:43 +02004998
Daniel Vettere29c22c2013-02-21 00:00:16 +01004999retry:
Daniel Vetter877d48d2013-04-19 11:24:43 +02005000 /* FDI is a binary signal running at ~2.7GHz, encoding
5001 * each output octet as 10 bits. The actual frequency
5002 * is stored as a divider into a 100MHz clock, and the
5003 * mode pixel clock is stored in units of 1KHz.
5004 * Hence the bw of each lane in terms of the mode signal
5005 * is:
5006 */
5007 link_bw = intel_fdi_link_freq(dev) * MHz(100)/KHz(1)/10;
5008
Damien Lespiau241bfc32013-09-25 16:45:37 +01005009 fdi_dotclock = adjusted_mode->crtc_clock;
Daniel Vetter877d48d2013-04-19 11:24:43 +02005010
Daniel Vetter2bd89a02013-06-01 17:16:19 +02005011 lane = ironlake_get_lanes_required(fdi_dotclock, link_bw,
Daniel Vetter877d48d2013-04-19 11:24:43 +02005012 pipe_config->pipe_bpp);
5013
5014 pipe_config->fdi_lanes = lane;
5015
Daniel Vetter2bd89a02013-06-01 17:16:19 +02005016 intel_link_compute_m_n(pipe_config->pipe_bpp, lane, fdi_dotclock,
Daniel Vetter877d48d2013-04-19 11:24:43 +02005017 link_bw, &pipe_config->fdi_m_n);
Daniel Vetter1857e1d2013-04-29 19:34:16 +02005018
Daniel Vettere29c22c2013-02-21 00:00:16 +01005019 setup_ok = ironlake_check_fdi_lanes(intel_crtc->base.dev,
5020 intel_crtc->pipe, pipe_config);
5021 if (!setup_ok && pipe_config->pipe_bpp > 6*3) {
5022 pipe_config->pipe_bpp -= 2*3;
5023 DRM_DEBUG_KMS("fdi link bw constraint, reducing pipe bpp to %i\n",
5024 pipe_config->pipe_bpp);
5025 needs_recompute = true;
5026 pipe_config->bw_constrained = true;
5027
5028 goto retry;
5029 }
5030
5031 if (needs_recompute)
5032 return RETRY;
5033
5034 return setup_ok ? 0 : -EINVAL;
Daniel Vetter877d48d2013-04-19 11:24:43 +02005035}
5036
Paulo Zanoni42db64e2013-05-31 16:33:22 -03005037static void hsw_compute_ips_config(struct intel_crtc *crtc,
5038 struct intel_crtc_config *pipe_config)
5039{
Jani Nikulad330a952014-01-21 11:24:25 +02005040 pipe_config->ips_enabled = i915.enable_ips &&
Paulo Zanoni3c4ca582013-05-31 16:33:23 -03005041 hsw_crtc_supports_ips(crtc) &&
Jesse Barnesb6dfdc92013-07-25 10:06:50 -07005042 pipe_config->pipe_bpp <= 24;
Paulo Zanoni42db64e2013-05-31 16:33:22 -03005043}
5044
Daniel Vettera43f6e02013-06-07 23:10:32 +02005045static int intel_crtc_compute_config(struct intel_crtc *crtc,
Daniel Vettere29c22c2013-02-21 00:00:16 +01005046 struct intel_crtc_config *pipe_config)
Jesse Barnes79e53942008-11-07 14:24:08 -08005047{
Daniel Vettera43f6e02013-06-07 23:10:32 +02005048 struct drm_device *dev = crtc->base.dev;
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01005049 struct drm_display_mode *adjusted_mode = &pipe_config->adjusted_mode;
Chris Wilson89749352010-09-12 18:25:19 +01005050
Ville Syrjäläad3a4472013-09-04 18:30:04 +03005051 /* FIXME should check pixel clock limits on all platforms */
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03005052 if (INTEL_INFO(dev)->gen < 4) {
5053 struct drm_i915_private *dev_priv = dev->dev_private;
5054 int clock_limit =
5055 dev_priv->display.get_display_clock_speed(dev);
5056
5057 /*
5058 * Enable pixel doubling when the dot clock
5059 * is > 90% of the (display) core speed.
5060 *
Ville Syrjäläb397c962013-09-04 18:30:06 +03005061 * GDG double wide on either pipe,
5062 * otherwise pipe A only.
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03005063 */
Ville Syrjäläb397c962013-09-04 18:30:06 +03005064 if ((crtc->pipe == PIPE_A || IS_I915G(dev)) &&
Damien Lespiau241bfc32013-09-25 16:45:37 +01005065 adjusted_mode->crtc_clock > clock_limit * 9 / 10) {
Ville Syrjäläad3a4472013-09-04 18:30:04 +03005066 clock_limit *= 2;
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03005067 pipe_config->double_wide = true;
Ville Syrjäläad3a4472013-09-04 18:30:04 +03005068 }
5069
Damien Lespiau241bfc32013-09-25 16:45:37 +01005070 if (adjusted_mode->crtc_clock > clock_limit * 9 / 10)
Daniel Vettere29c22c2013-02-21 00:00:16 +01005071 return -EINVAL;
Zhenyu Wang2c072452009-06-05 15:38:42 +08005072 }
Chris Wilson89749352010-09-12 18:25:19 +01005073
Ville Syrjälä1d1d0e22013-09-04 18:30:05 +03005074 /*
5075 * Pipe horizontal size must be even in:
5076 * - DVO ganged mode
5077 * - LVDS dual channel mode
5078 * - Double wide pipe
5079 */
5080 if ((intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_LVDS) &&
5081 intel_is_dual_link_lvds(dev)) || pipe_config->double_wide)
5082 pipe_config->pipe_src_w &= ~1;
5083
Damien Lespiau8693a822013-05-03 18:48:11 +01005084 /* Cantiga+ cannot handle modes with a hsync front porch of 0.
5085 * WaPruneModeWithIncorrectHsyncOffset:ctg,elk,ilk,snb,ivb,vlv,hsw.
Chris Wilson44f46b422012-06-21 13:19:59 +03005086 */
5087 if ((INTEL_INFO(dev)->gen > 4 || IS_G4X(dev)) &&
5088 adjusted_mode->hsync_start == adjusted_mode->hdisplay)
Daniel Vettere29c22c2013-02-21 00:00:16 +01005089 return -EINVAL;
Chris Wilson44f46b422012-06-21 13:19:59 +03005090
Daniel Vetterbd080ee2013-04-17 20:01:39 +02005091 if ((IS_G4X(dev) || IS_VALLEYVIEW(dev)) && pipe_config->pipe_bpp > 10*3) {
Daniel Vetter5d2d38d2013-03-27 00:45:01 +01005092 pipe_config->pipe_bpp = 10*3; /* 12bpc is gen5+ */
Daniel Vetterbd080ee2013-04-17 20:01:39 +02005093 } else if (INTEL_INFO(dev)->gen <= 4 && pipe_config->pipe_bpp > 8*3) {
Daniel Vetter5d2d38d2013-03-27 00:45:01 +01005094 /* only a 8bpc pipe, with 6bpc dither through the panel fitter
5095 * for lvds. */
5096 pipe_config->pipe_bpp = 8*3;
5097 }
5098
Damien Lespiauf5adf942013-06-24 18:29:34 +01005099 if (HAS_IPS(dev))
Daniel Vettera43f6e02013-06-07 23:10:32 +02005100 hsw_compute_ips_config(crtc, pipe_config);
5101
5102 /* XXX: PCH clock sharing is done in ->mode_set, so make sure the old
5103 * clock survives for now. */
5104 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev))
5105 pipe_config->shared_dpll = crtc->config.shared_dpll;
Paulo Zanoni42db64e2013-05-31 16:33:22 -03005106
Daniel Vetter877d48d2013-04-19 11:24:43 +02005107 if (pipe_config->has_pch_encoder)
Daniel Vettera43f6e02013-06-07 23:10:32 +02005108 return ironlake_fdi_compute_config(crtc, pipe_config);
Daniel Vetter877d48d2013-04-19 11:24:43 +02005109
Daniel Vettere29c22c2013-02-21 00:00:16 +01005110 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08005111}
5112
Jesse Barnes25eb05fc2012-03-28 13:39:23 -07005113static int valleyview_get_display_clock_speed(struct drm_device *dev)
5114{
5115 return 400000; /* FIXME */
5116}
5117
Jesse Barnese70236a2009-09-21 10:42:27 -07005118static int i945_get_display_clock_speed(struct drm_device *dev)
Jesse Barnes79e53942008-11-07 14:24:08 -08005119{
Jesse Barnese70236a2009-09-21 10:42:27 -07005120 return 400000;
5121}
Jesse Barnes79e53942008-11-07 14:24:08 -08005122
Jesse Barnese70236a2009-09-21 10:42:27 -07005123static int i915_get_display_clock_speed(struct drm_device *dev)
5124{
5125 return 333000;
5126}
Jesse Barnes79e53942008-11-07 14:24:08 -08005127
Jesse Barnese70236a2009-09-21 10:42:27 -07005128static int i9xx_misc_get_display_clock_speed(struct drm_device *dev)
5129{
5130 return 200000;
5131}
Jesse Barnes79e53942008-11-07 14:24:08 -08005132
Daniel Vetter257a7ff2013-07-26 08:35:42 +02005133static int pnv_get_display_clock_speed(struct drm_device *dev)
5134{
5135 u16 gcfgc = 0;
5136
5137 pci_read_config_word(dev->pdev, GCFGC, &gcfgc);
5138
5139 switch (gcfgc & GC_DISPLAY_CLOCK_MASK) {
5140 case GC_DISPLAY_CLOCK_267_MHZ_PNV:
5141 return 267000;
5142 case GC_DISPLAY_CLOCK_333_MHZ_PNV:
5143 return 333000;
5144 case GC_DISPLAY_CLOCK_444_MHZ_PNV:
5145 return 444000;
5146 case GC_DISPLAY_CLOCK_200_MHZ_PNV:
5147 return 200000;
5148 default:
5149 DRM_ERROR("Unknown pnv display core clock 0x%04x\n", gcfgc);
5150 case GC_DISPLAY_CLOCK_133_MHZ_PNV:
5151 return 133000;
5152 case GC_DISPLAY_CLOCK_167_MHZ_PNV:
5153 return 167000;
5154 }
5155}
5156
Jesse Barnese70236a2009-09-21 10:42:27 -07005157static int i915gm_get_display_clock_speed(struct drm_device *dev)
5158{
5159 u16 gcfgc = 0;
5160
5161 pci_read_config_word(dev->pdev, GCFGC, &gcfgc);
5162
5163 if (gcfgc & GC_LOW_FREQUENCY_ENABLE)
Jesse Barnes79e53942008-11-07 14:24:08 -08005164 return 133000;
Jesse Barnese70236a2009-09-21 10:42:27 -07005165 else {
5166 switch (gcfgc & GC_DISPLAY_CLOCK_MASK) {
5167 case GC_DISPLAY_CLOCK_333_MHZ:
5168 return 333000;
5169 default:
5170 case GC_DISPLAY_CLOCK_190_200_MHZ:
5171 return 190000;
5172 }
5173 }
5174}
Jesse Barnes79e53942008-11-07 14:24:08 -08005175
Jesse Barnese70236a2009-09-21 10:42:27 -07005176static int i865_get_display_clock_speed(struct drm_device *dev)
5177{
5178 return 266000;
5179}
5180
5181static int i855_get_display_clock_speed(struct drm_device *dev)
5182{
5183 u16 hpllcc = 0;
5184 /* Assume that the hardware is in the high speed state. This
5185 * should be the default.
5186 */
5187 switch (hpllcc & GC_CLOCK_CONTROL_MASK) {
5188 case GC_CLOCK_133_200:
5189 case GC_CLOCK_100_200:
5190 return 200000;
5191 case GC_CLOCK_166_250:
5192 return 250000;
5193 case GC_CLOCK_100_133:
5194 return 133000;
5195 }
5196
5197 /* Shouldn't happen */
5198 return 0;
5199}
5200
5201static int i830_get_display_clock_speed(struct drm_device *dev)
5202{
5203 return 133000;
Jesse Barnes79e53942008-11-07 14:24:08 -08005204}
5205
Zhenyu Wang2c072452009-06-05 15:38:42 +08005206static void
Ville Syrjäläa65851a2013-04-23 15:03:34 +03005207intel_reduce_m_n_ratio(uint32_t *num, uint32_t *den)
Zhenyu Wang2c072452009-06-05 15:38:42 +08005208{
Ville Syrjäläa65851a2013-04-23 15:03:34 +03005209 while (*num > DATA_LINK_M_N_MASK ||
5210 *den > DATA_LINK_M_N_MASK) {
Zhenyu Wang2c072452009-06-05 15:38:42 +08005211 *num >>= 1;
5212 *den >>= 1;
5213 }
5214}
5215
Ville Syrjäläa65851a2013-04-23 15:03:34 +03005216static void compute_m_n(unsigned int m, unsigned int n,
5217 uint32_t *ret_m, uint32_t *ret_n)
5218{
5219 *ret_n = min_t(unsigned int, roundup_pow_of_two(n), DATA_LINK_N_MAX);
5220 *ret_m = div_u64((uint64_t) m * *ret_n, n);
5221 intel_reduce_m_n_ratio(ret_m, ret_n);
5222}
5223
Daniel Vettere69d0bc2012-11-29 15:59:36 +01005224void
5225intel_link_compute_m_n(int bits_per_pixel, int nlanes,
5226 int pixel_clock, int link_clock,
5227 struct intel_link_m_n *m_n)
Zhenyu Wang2c072452009-06-05 15:38:42 +08005228{
Daniel Vettere69d0bc2012-11-29 15:59:36 +01005229 m_n->tu = 64;
Ville Syrjäläa65851a2013-04-23 15:03:34 +03005230
5231 compute_m_n(bits_per_pixel * pixel_clock,
5232 link_clock * nlanes * 8,
5233 &m_n->gmch_m, &m_n->gmch_n);
5234
5235 compute_m_n(pixel_clock, link_clock,
5236 &m_n->link_m, &m_n->link_n);
Zhenyu Wang2c072452009-06-05 15:38:42 +08005237}
5238
Chris Wilsona7615032011-01-12 17:04:08 +00005239static inline bool intel_panel_use_ssc(struct drm_i915_private *dev_priv)
5240{
Jani Nikulad330a952014-01-21 11:24:25 +02005241 if (i915.panel_use_ssc >= 0)
5242 return i915.panel_use_ssc != 0;
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03005243 return dev_priv->vbt.lvds_use_ssc
Keith Packard435793d2011-07-12 14:56:22 -07005244 && !(dev_priv->quirks & QUIRK_LVDS_SSC_DISABLE);
Chris Wilsona7615032011-01-12 17:04:08 +00005245}
5246
Jesse Barnesc65d77d2011-12-15 12:30:36 -08005247static int i9xx_get_refclk(struct drm_crtc *crtc, int num_connectors)
5248{
5249 struct drm_device *dev = crtc->dev;
5250 struct drm_i915_private *dev_priv = dev->dev_private;
5251 int refclk;
5252
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005253 if (IS_VALLEYVIEW(dev)) {
Daniel Vetter9a0ea492013-09-16 11:29:34 +02005254 refclk = 100000;
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005255 } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) &&
Jesse Barnesc65d77d2011-12-15 12:30:36 -08005256 intel_panel_use_ssc(dev_priv) && num_connectors < 2) {
Ville Syrjäläe91e9412013-12-09 18:54:16 +02005257 refclk = dev_priv->vbt.lvds_ssc_freq;
5258 DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n", refclk);
Jesse Barnesc65d77d2011-12-15 12:30:36 -08005259 } else if (!IS_GEN2(dev)) {
5260 refclk = 96000;
5261 } else {
5262 refclk = 48000;
5263 }
5264
5265 return refclk;
5266}
5267
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005268static uint32_t pnv_dpll_compute_fp(struct dpll *dpll)
Jesse Barnesc65d77d2011-12-15 12:30:36 -08005269{
Daniel Vetter7df00d72013-05-21 21:54:55 +02005270 return (1 << dpll->n) << 16 | dpll->m2;
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005271}
Daniel Vetterf47709a2013-03-28 10:42:02 +01005272
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005273static uint32_t i9xx_dpll_compute_fp(struct dpll *dpll)
5274{
5275 return dpll->n << 16 | dpll->m1 << 8 | dpll->m2;
Jesse Barnesc65d77d2011-12-15 12:30:36 -08005276}
5277
Daniel Vetterf47709a2013-03-28 10:42:02 +01005278static void i9xx_update_pll_dividers(struct intel_crtc *crtc,
Jesse Barnesa7516a02011-12-15 12:30:37 -08005279 intel_clock_t *reduced_clock)
5280{
Daniel Vetterf47709a2013-03-28 10:42:02 +01005281 struct drm_device *dev = crtc->base.dev;
Jesse Barnesa7516a02011-12-15 12:30:37 -08005282 u32 fp, fp2 = 0;
5283
5284 if (IS_PINEVIEW(dev)) {
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005285 fp = pnv_dpll_compute_fp(&crtc->config.dpll);
Jesse Barnesa7516a02011-12-15 12:30:37 -08005286 if (reduced_clock)
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005287 fp2 = pnv_dpll_compute_fp(reduced_clock);
Jesse Barnesa7516a02011-12-15 12:30:37 -08005288 } else {
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005289 fp = i9xx_dpll_compute_fp(&crtc->config.dpll);
Jesse Barnesa7516a02011-12-15 12:30:37 -08005290 if (reduced_clock)
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005291 fp2 = i9xx_dpll_compute_fp(reduced_clock);
Jesse Barnesa7516a02011-12-15 12:30:37 -08005292 }
5293
Daniel Vetter8bcc2792013-06-05 13:34:28 +02005294 crtc->config.dpll_hw_state.fp0 = fp;
Jesse Barnesa7516a02011-12-15 12:30:37 -08005295
Daniel Vetterf47709a2013-03-28 10:42:02 +01005296 crtc->lowfreq_avail = false;
5297 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_LVDS) &&
Jani Nikulad330a952014-01-21 11:24:25 +02005298 reduced_clock && i915.powersave) {
Daniel Vetter8bcc2792013-06-05 13:34:28 +02005299 crtc->config.dpll_hw_state.fp1 = fp2;
Daniel Vetterf47709a2013-03-28 10:42:02 +01005300 crtc->lowfreq_avail = true;
Jesse Barnesa7516a02011-12-15 12:30:37 -08005301 } else {
Daniel Vetter8bcc2792013-06-05 13:34:28 +02005302 crtc->config.dpll_hw_state.fp1 = fp;
Jesse Barnesa7516a02011-12-15 12:30:37 -08005303 }
5304}
5305
Chon Ming Lee5e69f972013-09-05 20:41:49 +08005306static void vlv_pllb_recal_opamp(struct drm_i915_private *dev_priv, enum pipe
5307 pipe)
Jesse Barnes89b667f2013-04-18 14:51:36 -07005308{
5309 u32 reg_val;
5310
5311 /*
5312 * PLLB opamp always calibrates to max value of 0x3f, force enable it
5313 * and set it to a reasonable value instead.
5314 */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005315 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW9(1));
Jesse Barnes89b667f2013-04-18 14:51:36 -07005316 reg_val &= 0xffffff00;
5317 reg_val |= 0x00000030;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005318 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9(1), reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005319
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005320 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_REF_DW13);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005321 reg_val &= 0x8cffffff;
5322 reg_val = 0x8c000000;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005323 vlv_dpio_write(dev_priv, pipe, VLV_REF_DW13, reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005324
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005325 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW9(1));
Jesse Barnes89b667f2013-04-18 14:51:36 -07005326 reg_val &= 0xffffff00;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005327 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9(1), reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005328
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005329 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_REF_DW13);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005330 reg_val &= 0x00ffffff;
5331 reg_val |= 0xb0000000;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005332 vlv_dpio_write(dev_priv, pipe, VLV_REF_DW13, reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005333}
5334
Daniel Vetterb5518422013-05-03 11:49:48 +02005335static void intel_pch_transcoder_set_m_n(struct intel_crtc *crtc,
5336 struct intel_link_m_n *m_n)
5337{
5338 struct drm_device *dev = crtc->base.dev;
5339 struct drm_i915_private *dev_priv = dev->dev_private;
5340 int pipe = crtc->pipe;
5341
Daniel Vettere3b95f12013-05-03 11:49:49 +02005342 I915_WRITE(PCH_TRANS_DATA_M1(pipe), TU_SIZE(m_n->tu) | m_n->gmch_m);
5343 I915_WRITE(PCH_TRANS_DATA_N1(pipe), m_n->gmch_n);
5344 I915_WRITE(PCH_TRANS_LINK_M1(pipe), m_n->link_m);
5345 I915_WRITE(PCH_TRANS_LINK_N1(pipe), m_n->link_n);
Daniel Vetterb5518422013-05-03 11:49:48 +02005346}
5347
5348static void intel_cpu_transcoder_set_m_n(struct intel_crtc *crtc,
5349 struct intel_link_m_n *m_n)
5350{
5351 struct drm_device *dev = crtc->base.dev;
5352 struct drm_i915_private *dev_priv = dev->dev_private;
5353 int pipe = crtc->pipe;
5354 enum transcoder transcoder = crtc->config.cpu_transcoder;
5355
5356 if (INTEL_INFO(dev)->gen >= 5) {
5357 I915_WRITE(PIPE_DATA_M1(transcoder), TU_SIZE(m_n->tu) | m_n->gmch_m);
5358 I915_WRITE(PIPE_DATA_N1(transcoder), m_n->gmch_n);
5359 I915_WRITE(PIPE_LINK_M1(transcoder), m_n->link_m);
5360 I915_WRITE(PIPE_LINK_N1(transcoder), m_n->link_n);
5361 } else {
Daniel Vettere3b95f12013-05-03 11:49:49 +02005362 I915_WRITE(PIPE_DATA_M_G4X(pipe), TU_SIZE(m_n->tu) | m_n->gmch_m);
5363 I915_WRITE(PIPE_DATA_N_G4X(pipe), m_n->gmch_n);
5364 I915_WRITE(PIPE_LINK_M_G4X(pipe), m_n->link_m);
5365 I915_WRITE(PIPE_LINK_N_G4X(pipe), m_n->link_n);
Daniel Vetterb5518422013-05-03 11:49:48 +02005366 }
5367}
5368
Daniel Vetter03afc4a2013-04-02 23:42:31 +02005369static void intel_dp_set_m_n(struct intel_crtc *crtc)
5370{
5371 if (crtc->config.has_pch_encoder)
5372 intel_pch_transcoder_set_m_n(crtc, &crtc->config.dp_m_n);
5373 else
5374 intel_cpu_transcoder_set_m_n(crtc, &crtc->config.dp_m_n);
5375}
5376
Daniel Vetterf47709a2013-03-28 10:42:02 +01005377static void vlv_update_pll(struct intel_crtc *crtc)
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005378{
Daniel Vetterf47709a2013-03-28 10:42:02 +01005379 struct drm_device *dev = crtc->base.dev;
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005380 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterf47709a2013-03-28 10:42:02 +01005381 int pipe = crtc->pipe;
Jesse Barnes89b667f2013-04-18 14:51:36 -07005382 u32 dpll, mdiv;
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005383 u32 bestn, bestm1, bestm2, bestp1, bestp2;
Daniel Vetter198a037f2013-04-19 11:14:37 +02005384 u32 coreclk, reg_val, dpll_md;
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005385
Daniel Vetter09153002012-12-12 14:06:44 +01005386 mutex_lock(&dev_priv->dpio_lock);
5387
Daniel Vetterf47709a2013-03-28 10:42:02 +01005388 bestn = crtc->config.dpll.n;
5389 bestm1 = crtc->config.dpll.m1;
5390 bestm2 = crtc->config.dpll.m2;
5391 bestp1 = crtc->config.dpll.p1;
5392 bestp2 = crtc->config.dpll.p2;
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005393
Jesse Barnes89b667f2013-04-18 14:51:36 -07005394 /* See eDP HDMI DPIO driver vbios notes doc */
5395
5396 /* PLL B needs special handling */
5397 if (pipe)
Chon Ming Lee5e69f972013-09-05 20:41:49 +08005398 vlv_pllb_recal_opamp(dev_priv, pipe);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005399
5400 /* Set up Tx target for periodic Rcomp update */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005401 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9_BCAST, 0x0100000f);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005402
5403 /* Disable target IRef on PLL */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005404 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW8(pipe));
Jesse Barnes89b667f2013-04-18 14:51:36 -07005405 reg_val &= 0x00ffffff;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005406 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW8(pipe), reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005407
5408 /* Disable fast lock */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005409 vlv_dpio_write(dev_priv, pipe, VLV_CMN_DW0, 0x610);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005410
5411 /* Set idtafcrecal before PLL is enabled */
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005412 mdiv = ((bestm1 << DPIO_M1DIV_SHIFT) | (bestm2 & DPIO_M2DIV_MASK));
5413 mdiv |= ((bestp1 << DPIO_P1_SHIFT) | (bestp2 << DPIO_P2_SHIFT));
5414 mdiv |= ((bestn << DPIO_N_SHIFT));
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005415 mdiv |= (1 << DPIO_K_SHIFT);
Jesse Barnes7df50802013-05-02 10:48:09 -07005416
5417 /*
5418 * Post divider depends on pixel clock rate, DAC vs digital (and LVDS,
5419 * but we don't support that).
5420 * Note: don't use the DAC post divider as it seems unstable.
5421 */
5422 mdiv |= (DPIO_POST_DIV_HDMIDP << DPIO_POST_DIV_SHIFT);
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005423 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW3(pipe), mdiv);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005424
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005425 mdiv |= DPIO_ENABLE_CALIBRATION;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005426 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW3(pipe), mdiv);
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005427
Jesse Barnes89b667f2013-04-18 14:51:36 -07005428 /* Set HBR and RBR LPF coefficients */
Daniel Vetterff9a6752013-06-01 17:16:21 +02005429 if (crtc->config.port_clock == 162000 ||
Ville Syrjälä99750bd2013-06-14 14:02:52 +03005430 intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_ANALOG) ||
Jesse Barnes89b667f2013-04-18 14:51:36 -07005431 intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_HDMI))
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005432 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW10(pipe),
Ville Syrjälä885b0122013-07-05 19:21:38 +03005433 0x009f0003);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005434 else
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005435 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW10(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07005436 0x00d0000f);
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005437
Jesse Barnes89b667f2013-04-18 14:51:36 -07005438 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_EDP) ||
5439 intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_DISPLAYPORT)) {
5440 /* Use SSC source */
5441 if (!pipe)
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005442 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07005443 0x0df40000);
5444 else
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005445 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07005446 0x0df70000);
5447 } else { /* HDMI or VGA */
5448 /* Use bend source */
5449 if (!pipe)
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005450 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07005451 0x0df70000);
5452 else
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005453 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07005454 0x0df40000);
5455 }
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005456
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005457 coreclk = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW7(pipe));
Jesse Barnes89b667f2013-04-18 14:51:36 -07005458 coreclk = (coreclk & 0x0000ff00) | 0x01c00000;
5459 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_DISPLAYPORT) ||
5460 intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_EDP))
5461 coreclk |= 0x01000000;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005462 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW7(pipe), coreclk);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005463
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005464 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW11(pipe), 0x87871000);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005465
Imre Deake5cbfbf2014-01-09 17:08:16 +02005466 /*
5467 * Enable DPIO clock input. We should never disable the reference
5468 * clock for pipe B, since VGA hotplug / manual detection depends
5469 * on it.
5470 */
Jesse Barnes89b667f2013-04-18 14:51:36 -07005471 dpll = DPLL_EXT_BUFFER_ENABLE_VLV | DPLL_REFA_CLK_ENABLE_VLV |
5472 DPLL_VGA_MODE_DIS | DPLL_INTEGRATED_CLOCK_VLV;
Jesse Barnesf6071162013-10-01 10:41:38 -07005473 /* We should never disable this, set it here for state tracking */
5474 if (pipe == PIPE_B)
Jesse Barnes89b667f2013-04-18 14:51:36 -07005475 dpll |= DPLL_INTEGRATED_CRI_CLK_VLV;
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005476 dpll |= DPLL_VCO_ENABLE;
Daniel Vetter8bcc2792013-06-05 13:34:28 +02005477 crtc->config.dpll_hw_state.dpll = dpll;
5478
Daniel Vetteref1b4602013-06-01 17:17:04 +02005479 dpll_md = (crtc->config.pixel_multiplier - 1)
5480 << DPLL_MD_UDI_MULTIPLIER_SHIFT;
Daniel Vetter8bcc2792013-06-05 13:34:28 +02005481 crtc->config.dpll_hw_state.dpll_md = dpll_md;
5482
Daniel Vetter09153002012-12-12 14:06:44 +01005483 mutex_unlock(&dev_priv->dpio_lock);
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005484}
5485
Chon Ming Lee9d556c92014-05-02 14:27:47 +03005486static void chv_update_pll(struct intel_crtc *crtc)
5487{
5488 struct drm_device *dev = crtc->base.dev;
5489 struct drm_i915_private *dev_priv = dev->dev_private;
5490 int pipe = crtc->pipe;
5491 int dpll_reg = DPLL(crtc->pipe);
5492 enum dpio_channel port = vlv_pipe_to_channel(pipe);
5493 u32 val, loopfilter, intcoeff;
5494 u32 bestn, bestm1, bestm2, bestp1, bestp2, bestm2_frac;
5495 int refclk;
5496
5497 mutex_lock(&dev_priv->dpio_lock);
5498
5499 bestn = crtc->config.dpll.n;
5500 bestm2_frac = crtc->config.dpll.m2 & 0x3fffff;
5501 bestm1 = crtc->config.dpll.m1;
5502 bestm2 = crtc->config.dpll.m2 >> 22;
5503 bestp1 = crtc->config.dpll.p1;
5504 bestp2 = crtc->config.dpll.p2;
5505
5506 /*
5507 * Enable Refclk and SSC
5508 */
5509 val = I915_READ(dpll_reg);
5510 val |= (DPLL_SSC_REF_CLOCK_CHV | DPLL_REFA_CLK_ENABLE_VLV);
5511 I915_WRITE(dpll_reg, val);
5512
5513 /* Propagate soft reset to data lane reset */
5514 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS_DW0(port));
5515 val &= ~(DPIO_PCS_TX_LANE2_RESET | DPIO_PCS_TX_LANE1_RESET);
5516 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW0(port), val);
5517
5518 /* Disable 10bit clock to display controller */
5519 val = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW14(port));
5520 val &= ~DPIO_DCLKP_EN;
5521 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port), val);
5522
5523 /* p1 and p2 divider */
5524 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW13(port),
5525 5 << DPIO_CHV_S1_DIV_SHIFT |
5526 bestp1 << DPIO_CHV_P1_DIV_SHIFT |
5527 bestp2 << DPIO_CHV_P2_DIV_SHIFT |
5528 1 << DPIO_CHV_K_DIV_SHIFT);
5529
5530 /* Feedback post-divider - m2 */
5531 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW0(port), bestm2);
5532
5533 /* Feedback refclk divider - n and m1 */
5534 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW1(port),
5535 DPIO_CHV_M1_DIV_BY_2 |
5536 1 << DPIO_CHV_N_DIV_SHIFT);
5537
5538 /* M2 fraction division */
5539 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW2(port), bestm2_frac);
5540
5541 /* M2 fraction division enable */
5542 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW3(port),
5543 DPIO_CHV_FRAC_DIV_EN |
5544 (2 << DPIO_CHV_FEEDFWD_GAIN_SHIFT));
5545
5546 /* Loop filter */
5547 refclk = i9xx_get_refclk(&crtc->base, 0);
5548 loopfilter = 5 << DPIO_CHV_PROP_COEFF_SHIFT |
5549 2 << DPIO_CHV_GAIN_CTRL_SHIFT;
5550 if (refclk == 100000)
5551 intcoeff = 11;
5552 else if (refclk == 38400)
5553 intcoeff = 10;
5554 else
5555 intcoeff = 9;
5556 loopfilter |= intcoeff << DPIO_CHV_INT_COEFF_SHIFT;
5557 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW6(port), loopfilter);
5558
5559 /* AFC Recal */
5560 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port),
5561 vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW14(port)) |
5562 DPIO_AFC_RECAL);
5563
5564 mutex_unlock(&dev_priv->dpio_lock);
5565}
5566
Daniel Vetterf47709a2013-03-28 10:42:02 +01005567static void i9xx_update_pll(struct intel_crtc *crtc,
5568 intel_clock_t *reduced_clock,
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005569 int num_connectors)
5570{
Daniel Vetterf47709a2013-03-28 10:42:02 +01005571 struct drm_device *dev = crtc->base.dev;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005572 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005573 u32 dpll;
5574 bool is_sdvo;
Daniel Vetterf47709a2013-03-28 10:42:02 +01005575 struct dpll *clock = &crtc->config.dpll;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005576
Daniel Vetterf47709a2013-03-28 10:42:02 +01005577 i9xx_update_pll_dividers(crtc, reduced_clock);
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05305578
Daniel Vetterf47709a2013-03-28 10:42:02 +01005579 is_sdvo = intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_SDVO) ||
5580 intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_HDMI);
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005581
5582 dpll = DPLL_VGA_MODE_DIS;
5583
Daniel Vetterf47709a2013-03-28 10:42:02 +01005584 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_LVDS))
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005585 dpll |= DPLLB_MODE_LVDS;
5586 else
5587 dpll |= DPLLB_MODE_DAC_SERIAL;
Daniel Vetter6cc5f342013-03-27 00:44:53 +01005588
Daniel Vetteref1b4602013-06-01 17:17:04 +02005589 if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev)) {
Daniel Vetter198a037f2013-04-19 11:14:37 +02005590 dpll |= (crtc->config.pixel_multiplier - 1)
5591 << SDVO_MULTIPLIER_SHIFT_HIRES;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005592 }
Daniel Vetter198a037f2013-04-19 11:14:37 +02005593
5594 if (is_sdvo)
Daniel Vetter4a33e482013-07-06 12:52:05 +02005595 dpll |= DPLL_SDVO_HIGH_SPEED;
Daniel Vetter198a037f2013-04-19 11:14:37 +02005596
Daniel Vetterf47709a2013-03-28 10:42:02 +01005597 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_DISPLAYPORT))
Daniel Vetter4a33e482013-07-06 12:52:05 +02005598 dpll |= DPLL_SDVO_HIGH_SPEED;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005599
5600 /* compute bitmask from p1 value */
5601 if (IS_PINEVIEW(dev))
5602 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW;
5603 else {
5604 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
5605 if (IS_G4X(dev) && reduced_clock)
5606 dpll |= (1 << (reduced_clock->p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
5607 }
5608 switch (clock->p2) {
5609 case 5:
5610 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
5611 break;
5612 case 7:
5613 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
5614 break;
5615 case 10:
5616 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
5617 break;
5618 case 14:
5619 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
5620 break;
5621 }
5622 if (INTEL_INFO(dev)->gen >= 4)
5623 dpll |= (6 << PLL_LOAD_PULSE_PHASE_SHIFT);
5624
Daniel Vetter09ede542013-04-30 14:01:45 +02005625 if (crtc->config.sdvo_tv_clock)
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005626 dpll |= PLL_REF_INPUT_TVCLKINBC;
Daniel Vetterf47709a2013-03-28 10:42:02 +01005627 else if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_LVDS) &&
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005628 intel_panel_use_ssc(dev_priv) && num_connectors < 2)
5629 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
5630 else
5631 dpll |= PLL_REF_INPUT_DREFCLK;
5632
5633 dpll |= DPLL_VCO_ENABLE;
Daniel Vetter8bcc2792013-06-05 13:34:28 +02005634 crtc->config.dpll_hw_state.dpll = dpll;
5635
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005636 if (INTEL_INFO(dev)->gen >= 4) {
Daniel Vetteref1b4602013-06-01 17:17:04 +02005637 u32 dpll_md = (crtc->config.pixel_multiplier - 1)
5638 << DPLL_MD_UDI_MULTIPLIER_SHIFT;
Daniel Vetter8bcc2792013-06-05 13:34:28 +02005639 crtc->config.dpll_hw_state.dpll_md = dpll_md;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005640 }
5641}
5642
Daniel Vetterf47709a2013-03-28 10:42:02 +01005643static void i8xx_update_pll(struct intel_crtc *crtc,
Daniel Vetterf47709a2013-03-28 10:42:02 +01005644 intel_clock_t *reduced_clock,
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005645 int num_connectors)
5646{
Daniel Vetterf47709a2013-03-28 10:42:02 +01005647 struct drm_device *dev = crtc->base.dev;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005648 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005649 u32 dpll;
Daniel Vetterf47709a2013-03-28 10:42:02 +01005650 struct dpll *clock = &crtc->config.dpll;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005651
Daniel Vetterf47709a2013-03-28 10:42:02 +01005652 i9xx_update_pll_dividers(crtc, reduced_clock);
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05305653
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005654 dpll = DPLL_VGA_MODE_DIS;
5655
Daniel Vetterf47709a2013-03-28 10:42:02 +01005656 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_LVDS)) {
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005657 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
5658 } else {
5659 if (clock->p1 == 2)
5660 dpll |= PLL_P1_DIVIDE_BY_TWO;
5661 else
5662 dpll |= (clock->p1 - 2) << DPLL_FPA01_P1_POST_DIV_SHIFT;
5663 if (clock->p2 == 4)
5664 dpll |= PLL_P2_DIVIDE_BY_4;
5665 }
5666
Daniel Vetter4a33e482013-07-06 12:52:05 +02005667 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_DVO))
5668 dpll |= DPLL_DVO_2X_MODE;
5669
Daniel Vetterf47709a2013-03-28 10:42:02 +01005670 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_LVDS) &&
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005671 intel_panel_use_ssc(dev_priv) && num_connectors < 2)
5672 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
5673 else
5674 dpll |= PLL_REF_INPUT_DREFCLK;
5675
5676 dpll |= DPLL_VCO_ENABLE;
Daniel Vetter8bcc2792013-06-05 13:34:28 +02005677 crtc->config.dpll_hw_state.dpll = dpll;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005678}
5679
Daniel Vetter8a654f32013-06-01 17:16:22 +02005680static void intel_set_pipe_timings(struct intel_crtc *intel_crtc)
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005681{
5682 struct drm_device *dev = intel_crtc->base.dev;
5683 struct drm_i915_private *dev_priv = dev->dev_private;
5684 enum pipe pipe = intel_crtc->pipe;
Daniel Vetter3b117c82013-04-17 20:15:07 +02005685 enum transcoder cpu_transcoder = intel_crtc->config.cpu_transcoder;
Daniel Vetter8a654f32013-06-01 17:16:22 +02005686 struct drm_display_mode *adjusted_mode =
5687 &intel_crtc->config.adjusted_mode;
Ville Syrjälä1caea6e2014-03-28 23:29:32 +02005688 uint32_t crtc_vtotal, crtc_vblank_end;
5689 int vsyncshift = 0;
Daniel Vetter4d8a62e2013-05-03 11:49:51 +02005690
5691 /* We need to be careful not to changed the adjusted mode, for otherwise
5692 * the hw state checker will get angry at the mismatch. */
5693 crtc_vtotal = adjusted_mode->crtc_vtotal;
5694 crtc_vblank_end = adjusted_mode->crtc_vblank_end;
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005695
Ville Syrjälä609aeac2014-03-28 23:29:30 +02005696 if (adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE) {
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005697 /* the chip adds 2 halflines automatically */
Daniel Vetter4d8a62e2013-05-03 11:49:51 +02005698 crtc_vtotal -= 1;
5699 crtc_vblank_end -= 1;
Ville Syrjälä609aeac2014-03-28 23:29:30 +02005700
5701 if (intel_pipe_has_type(&intel_crtc->base, INTEL_OUTPUT_SDVO))
5702 vsyncshift = (adjusted_mode->crtc_htotal - 1) / 2;
5703 else
5704 vsyncshift = adjusted_mode->crtc_hsync_start -
5705 adjusted_mode->crtc_htotal / 2;
Ville Syrjälä1caea6e2014-03-28 23:29:32 +02005706 if (vsyncshift < 0)
5707 vsyncshift += adjusted_mode->crtc_htotal;
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005708 }
5709
5710 if (INTEL_INFO(dev)->gen > 3)
Paulo Zanonife2b8f92012-10-23 18:30:02 -02005711 I915_WRITE(VSYNCSHIFT(cpu_transcoder), vsyncshift);
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005712
Paulo Zanonife2b8f92012-10-23 18:30:02 -02005713 I915_WRITE(HTOTAL(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005714 (adjusted_mode->crtc_hdisplay - 1) |
5715 ((adjusted_mode->crtc_htotal - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02005716 I915_WRITE(HBLANK(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005717 (adjusted_mode->crtc_hblank_start - 1) |
5718 ((adjusted_mode->crtc_hblank_end - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02005719 I915_WRITE(HSYNC(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005720 (adjusted_mode->crtc_hsync_start - 1) |
5721 ((adjusted_mode->crtc_hsync_end - 1) << 16));
5722
Paulo Zanonife2b8f92012-10-23 18:30:02 -02005723 I915_WRITE(VTOTAL(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005724 (adjusted_mode->crtc_vdisplay - 1) |
Daniel Vetter4d8a62e2013-05-03 11:49:51 +02005725 ((crtc_vtotal - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02005726 I915_WRITE(VBLANK(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005727 (adjusted_mode->crtc_vblank_start - 1) |
Daniel Vetter4d8a62e2013-05-03 11:49:51 +02005728 ((crtc_vblank_end - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02005729 I915_WRITE(VSYNC(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005730 (adjusted_mode->crtc_vsync_start - 1) |
5731 ((adjusted_mode->crtc_vsync_end - 1) << 16));
5732
Paulo Zanonib5e508d2012-10-24 11:34:43 -02005733 /* Workaround: when the EDP input selection is B, the VTOTAL_B must be
5734 * programmed with the VTOTAL_EDP value. Same for VTOTAL_C. This is
5735 * documented on the DDI_FUNC_CTL register description, EDP Input Select
5736 * bits. */
5737 if (IS_HASWELL(dev) && cpu_transcoder == TRANSCODER_EDP &&
5738 (pipe == PIPE_B || pipe == PIPE_C))
5739 I915_WRITE(VTOTAL(pipe), I915_READ(VTOTAL(cpu_transcoder)));
5740
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005741 /* pipesrc controls the size that is scaled from, which should
5742 * always be the user's requested size.
5743 */
5744 I915_WRITE(PIPESRC(pipe),
Ville Syrjälä37327ab2013-09-04 18:25:28 +03005745 ((intel_crtc->config.pipe_src_w - 1) << 16) |
5746 (intel_crtc->config.pipe_src_h - 1));
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005747}
5748
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02005749static void intel_get_pipe_timings(struct intel_crtc *crtc,
5750 struct intel_crtc_config *pipe_config)
5751{
5752 struct drm_device *dev = crtc->base.dev;
5753 struct drm_i915_private *dev_priv = dev->dev_private;
5754 enum transcoder cpu_transcoder = pipe_config->cpu_transcoder;
5755 uint32_t tmp;
5756
5757 tmp = I915_READ(HTOTAL(cpu_transcoder));
5758 pipe_config->adjusted_mode.crtc_hdisplay = (tmp & 0xffff) + 1;
5759 pipe_config->adjusted_mode.crtc_htotal = ((tmp >> 16) & 0xffff) + 1;
5760 tmp = I915_READ(HBLANK(cpu_transcoder));
5761 pipe_config->adjusted_mode.crtc_hblank_start = (tmp & 0xffff) + 1;
5762 pipe_config->adjusted_mode.crtc_hblank_end = ((tmp >> 16) & 0xffff) + 1;
5763 tmp = I915_READ(HSYNC(cpu_transcoder));
5764 pipe_config->adjusted_mode.crtc_hsync_start = (tmp & 0xffff) + 1;
5765 pipe_config->adjusted_mode.crtc_hsync_end = ((tmp >> 16) & 0xffff) + 1;
5766
5767 tmp = I915_READ(VTOTAL(cpu_transcoder));
5768 pipe_config->adjusted_mode.crtc_vdisplay = (tmp & 0xffff) + 1;
5769 pipe_config->adjusted_mode.crtc_vtotal = ((tmp >> 16) & 0xffff) + 1;
5770 tmp = I915_READ(VBLANK(cpu_transcoder));
5771 pipe_config->adjusted_mode.crtc_vblank_start = (tmp & 0xffff) + 1;
5772 pipe_config->adjusted_mode.crtc_vblank_end = ((tmp >> 16) & 0xffff) + 1;
5773 tmp = I915_READ(VSYNC(cpu_transcoder));
5774 pipe_config->adjusted_mode.crtc_vsync_start = (tmp & 0xffff) + 1;
5775 pipe_config->adjusted_mode.crtc_vsync_end = ((tmp >> 16) & 0xffff) + 1;
5776
5777 if (I915_READ(PIPECONF(cpu_transcoder)) & PIPECONF_INTERLACE_MASK) {
5778 pipe_config->adjusted_mode.flags |= DRM_MODE_FLAG_INTERLACE;
5779 pipe_config->adjusted_mode.crtc_vtotal += 1;
5780 pipe_config->adjusted_mode.crtc_vblank_end += 1;
5781 }
5782
5783 tmp = I915_READ(PIPESRC(crtc->pipe));
Ville Syrjälä37327ab2013-09-04 18:25:28 +03005784 pipe_config->pipe_src_h = (tmp & 0xffff) + 1;
5785 pipe_config->pipe_src_w = ((tmp >> 16) & 0xffff) + 1;
5786
5787 pipe_config->requested_mode.vdisplay = pipe_config->pipe_src_h;
5788 pipe_config->requested_mode.hdisplay = pipe_config->pipe_src_w;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02005789}
5790
Daniel Vetterf6a83282014-02-11 15:28:57 -08005791void intel_mode_from_pipe_config(struct drm_display_mode *mode,
5792 struct intel_crtc_config *pipe_config)
Jesse Barnesbabea612013-06-26 18:57:38 +03005793{
Daniel Vetterf6a83282014-02-11 15:28:57 -08005794 mode->hdisplay = pipe_config->adjusted_mode.crtc_hdisplay;
5795 mode->htotal = pipe_config->adjusted_mode.crtc_htotal;
5796 mode->hsync_start = pipe_config->adjusted_mode.crtc_hsync_start;
5797 mode->hsync_end = pipe_config->adjusted_mode.crtc_hsync_end;
Jesse Barnesbabea612013-06-26 18:57:38 +03005798
Daniel Vetterf6a83282014-02-11 15:28:57 -08005799 mode->vdisplay = pipe_config->adjusted_mode.crtc_vdisplay;
5800 mode->vtotal = pipe_config->adjusted_mode.crtc_vtotal;
5801 mode->vsync_start = pipe_config->adjusted_mode.crtc_vsync_start;
5802 mode->vsync_end = pipe_config->adjusted_mode.crtc_vsync_end;
Jesse Barnesbabea612013-06-26 18:57:38 +03005803
Daniel Vetterf6a83282014-02-11 15:28:57 -08005804 mode->flags = pipe_config->adjusted_mode.flags;
Jesse Barnesbabea612013-06-26 18:57:38 +03005805
Daniel Vetterf6a83282014-02-11 15:28:57 -08005806 mode->clock = pipe_config->adjusted_mode.crtc_clock;
5807 mode->flags |= pipe_config->adjusted_mode.flags;
Jesse Barnesbabea612013-06-26 18:57:38 +03005808}
5809
Daniel Vetter84b046f2013-02-19 18:48:54 +01005810static void i9xx_set_pipeconf(struct intel_crtc *intel_crtc)
5811{
5812 struct drm_device *dev = intel_crtc->base.dev;
5813 struct drm_i915_private *dev_priv = dev->dev_private;
5814 uint32_t pipeconf;
5815
Daniel Vetter9f11a9e2013-06-13 00:54:58 +02005816 pipeconf = 0;
Daniel Vetter84b046f2013-02-19 18:48:54 +01005817
Daniel Vetter67c72a12013-09-24 11:46:14 +02005818 if (dev_priv->quirks & QUIRK_PIPEA_FORCE &&
5819 I915_READ(PIPECONF(intel_crtc->pipe)) & PIPECONF_ENABLE)
5820 pipeconf |= PIPECONF_ENABLE;
5821
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03005822 if (intel_crtc->config.double_wide)
5823 pipeconf |= PIPECONF_DOUBLE_WIDE;
Daniel Vetter84b046f2013-02-19 18:48:54 +01005824
Daniel Vetterff9ce462013-04-24 14:57:17 +02005825 /* only g4x and later have fancy bpc/dither controls */
5826 if (IS_G4X(dev) || IS_VALLEYVIEW(dev)) {
Daniel Vetterff9ce462013-04-24 14:57:17 +02005827 /* Bspec claims that we can't use dithering for 30bpp pipes. */
5828 if (intel_crtc->config.dither && intel_crtc->config.pipe_bpp != 30)
5829 pipeconf |= PIPECONF_DITHER_EN |
5830 PIPECONF_DITHER_TYPE_SP;
5831
5832 switch (intel_crtc->config.pipe_bpp) {
5833 case 18:
5834 pipeconf |= PIPECONF_6BPC;
5835 break;
5836 case 24:
5837 pipeconf |= PIPECONF_8BPC;
5838 break;
5839 case 30:
5840 pipeconf |= PIPECONF_10BPC;
5841 break;
5842 default:
5843 /* Case prevented by intel_choose_pipe_bpp_dither. */
5844 BUG();
Daniel Vetter84b046f2013-02-19 18:48:54 +01005845 }
5846 }
5847
5848 if (HAS_PIPE_CXSR(dev)) {
5849 if (intel_crtc->lowfreq_avail) {
5850 DRM_DEBUG_KMS("enabling CxSR downclocking\n");
5851 pipeconf |= PIPECONF_CXSR_DOWNCLOCK;
5852 } else {
5853 DRM_DEBUG_KMS("disabling CxSR downclocking\n");
Daniel Vetter84b046f2013-02-19 18:48:54 +01005854 }
5855 }
5856
Ville Syrjäläefc2cff2014-03-28 23:29:31 +02005857 if (intel_crtc->config.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE) {
5858 if (INTEL_INFO(dev)->gen < 4 ||
5859 intel_pipe_has_type(&intel_crtc->base, INTEL_OUTPUT_SDVO))
5860 pipeconf |= PIPECONF_INTERLACE_W_FIELD_INDICATION;
5861 else
5862 pipeconf |= PIPECONF_INTERLACE_W_SYNC_SHIFT;
5863 } else
Daniel Vetter84b046f2013-02-19 18:48:54 +01005864 pipeconf |= PIPECONF_PROGRESSIVE;
5865
Daniel Vetter9f11a9e2013-06-13 00:54:58 +02005866 if (IS_VALLEYVIEW(dev) && intel_crtc->config.limited_color_range)
5867 pipeconf |= PIPECONF_COLOR_RANGE_SELECT;
Ville Syrjälä9c8e09b2013-04-02 16:10:09 +03005868
Daniel Vetter84b046f2013-02-19 18:48:54 +01005869 I915_WRITE(PIPECONF(intel_crtc->pipe), pipeconf);
5870 POSTING_READ(PIPECONF(intel_crtc->pipe));
5871}
5872
Eric Anholtf564048e2011-03-30 13:01:02 -07005873static int i9xx_crtc_mode_set(struct drm_crtc *crtc,
Eric Anholtf564048e2011-03-30 13:01:02 -07005874 int x, int y,
Daniel Vetter94352cf2012-07-05 22:51:56 +02005875 struct drm_framebuffer *fb)
Jesse Barnes79e53942008-11-07 14:24:08 -08005876{
5877 struct drm_device *dev = crtc->dev;
5878 struct drm_i915_private *dev_priv = dev->dev_private;
5879 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Eric Anholtc751ce42010-03-25 11:48:48 -07005880 int refclk, num_connectors = 0;
Jesse Barnes652c3932009-08-17 13:31:43 -07005881 intel_clock_t clock, reduced_clock;
Daniel Vettera16af7212013-04-30 14:01:44 +02005882 bool ok, has_reduced_clock = false;
Jani Nikulae9fd1c02013-08-27 15:12:23 +03005883 bool is_lvds = false, is_dsi = false;
Chris Wilson5eddb702010-09-11 13:48:45 +01005884 struct intel_encoder *encoder;
Ma Lingd4906092009-03-18 20:13:27 +08005885 const intel_limit_t *limit;
Jesse Barnes79e53942008-11-07 14:24:08 -08005886
Daniel Vetter6c2b7c122012-07-05 09:50:24 +02005887 for_each_encoder_on_crtc(dev, crtc, encoder) {
Chris Wilson5eddb702010-09-11 13:48:45 +01005888 switch (encoder->type) {
Jesse Barnes79e53942008-11-07 14:24:08 -08005889 case INTEL_OUTPUT_LVDS:
5890 is_lvds = true;
5891 break;
Jani Nikulae9fd1c02013-08-27 15:12:23 +03005892 case INTEL_OUTPUT_DSI:
5893 is_dsi = true;
5894 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08005895 }
Kristian Høgsberg43565a02009-02-13 20:56:52 -05005896
Eric Anholtc751ce42010-03-25 11:48:48 -07005897 num_connectors++;
Jesse Barnes79e53942008-11-07 14:24:08 -08005898 }
5899
Jani Nikulaf2335332013-09-13 11:03:09 +03005900 if (is_dsi)
Daniel Vetter5b18e572014-04-24 23:55:06 +02005901 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08005902
Jani Nikulaf2335332013-09-13 11:03:09 +03005903 if (!intel_crtc->config.clock_set) {
5904 refclk = i9xx_get_refclk(crtc, num_connectors);
5905
Jani Nikulae9fd1c02013-08-27 15:12:23 +03005906 /*
5907 * Returns a set of divisors for the desired target clock with
5908 * the given refclk, or FALSE. The returned values represent
5909 * the clock equation: reflck * (5 * (m1 + 2) + (m2 + 2)) / (n +
5910 * 2) / p1 / p2.
5911 */
5912 limit = intel_limit(crtc, refclk);
5913 ok = dev_priv->display.find_dpll(limit, crtc,
5914 intel_crtc->config.port_clock,
5915 refclk, NULL, &clock);
Jani Nikulaf2335332013-09-13 11:03:09 +03005916 if (!ok) {
Jani Nikulae9fd1c02013-08-27 15:12:23 +03005917 DRM_ERROR("Couldn't find PLL settings for mode!\n");
5918 return -EINVAL;
5919 }
Eric Anholtf564048e2011-03-30 13:01:02 -07005920
Jani Nikulaf2335332013-09-13 11:03:09 +03005921 if (is_lvds && dev_priv->lvds_downclock_avail) {
5922 /*
5923 * Ensure we match the reduced clock's P to the target
5924 * clock. If the clocks don't match, we can't switch
5925 * the display clock by using the FP0/FP1. In such case
5926 * we will disable the LVDS downclock feature.
5927 */
5928 has_reduced_clock =
5929 dev_priv->display.find_dpll(limit, crtc,
5930 dev_priv->lvds_downclock,
5931 refclk, &clock,
5932 &reduced_clock);
5933 }
5934 /* Compat-code for transition, will disappear. */
Daniel Vetterf47709a2013-03-28 10:42:02 +01005935 intel_crtc->config.dpll.n = clock.n;
5936 intel_crtc->config.dpll.m1 = clock.m1;
5937 intel_crtc->config.dpll.m2 = clock.m2;
5938 intel_crtc->config.dpll.p1 = clock.p1;
5939 intel_crtc->config.dpll.p2 = clock.p2;
5940 }
Eric Anholtf564048e2011-03-30 13:01:02 -07005941
Jani Nikulae9fd1c02013-08-27 15:12:23 +03005942 if (IS_GEN2(dev)) {
Daniel Vetter8a654f32013-06-01 17:16:22 +02005943 i8xx_update_pll(intel_crtc,
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05305944 has_reduced_clock ? &reduced_clock : NULL,
5945 num_connectors);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03005946 } else if (IS_CHERRYVIEW(dev)) {
5947 chv_update_pll(intel_crtc);
Jani Nikulae9fd1c02013-08-27 15:12:23 +03005948 } else if (IS_VALLEYVIEW(dev)) {
Jani Nikulaf2335332013-09-13 11:03:09 +03005949 vlv_update_pll(intel_crtc);
Jani Nikulae9fd1c02013-08-27 15:12:23 +03005950 } else {
Daniel Vetterf47709a2013-03-28 10:42:02 +01005951 i9xx_update_pll(intel_crtc,
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005952 has_reduced_clock ? &reduced_clock : NULL,
Robin Schroereba905b2014-05-18 02:24:50 +02005953 num_connectors);
Jani Nikulae9fd1c02013-08-27 15:12:23 +03005954 }
Eric Anholtf564048e2011-03-30 13:01:02 -07005955
Daniel Vetterc8f7a0d2014-04-24 23:55:04 +02005956 return 0;
Eric Anholtf564048e2011-03-30 13:01:02 -07005957}
5958
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02005959static void i9xx_get_pfit_config(struct intel_crtc *crtc,
5960 struct intel_crtc_config *pipe_config)
5961{
5962 struct drm_device *dev = crtc->base.dev;
5963 struct drm_i915_private *dev_priv = dev->dev_private;
5964 uint32_t tmp;
5965
Ville Syrjälädc9e7dec2014-01-10 14:06:45 +02005966 if (INTEL_INFO(dev)->gen <= 3 && (IS_I830(dev) || !IS_MOBILE(dev)))
5967 return;
5968
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02005969 tmp = I915_READ(PFIT_CONTROL);
Daniel Vetter06922822013-07-11 13:35:40 +02005970 if (!(tmp & PFIT_ENABLE))
5971 return;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02005972
Daniel Vetter06922822013-07-11 13:35:40 +02005973 /* Check whether the pfit is attached to our pipe. */
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02005974 if (INTEL_INFO(dev)->gen < 4) {
5975 if (crtc->pipe != PIPE_B)
5976 return;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02005977 } else {
5978 if ((tmp & PFIT_PIPE_MASK) != (crtc->pipe << PFIT_PIPE_SHIFT))
5979 return;
5980 }
5981
Daniel Vetter06922822013-07-11 13:35:40 +02005982 pipe_config->gmch_pfit.control = tmp;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02005983 pipe_config->gmch_pfit.pgm_ratios = I915_READ(PFIT_PGM_RATIOS);
5984 if (INTEL_INFO(dev)->gen < 5)
5985 pipe_config->gmch_pfit.lvds_border_bits =
5986 I915_READ(LVDS) & LVDS_BORDER_ENABLE;
5987}
5988
Jesse Barnesacbec812013-09-20 11:29:32 -07005989static void vlv_crtc_clock_get(struct intel_crtc *crtc,
5990 struct intel_crtc_config *pipe_config)
5991{
5992 struct drm_device *dev = crtc->base.dev;
5993 struct drm_i915_private *dev_priv = dev->dev_private;
5994 int pipe = pipe_config->cpu_transcoder;
5995 intel_clock_t clock;
5996 u32 mdiv;
Chris Wilson662c6ec2013-09-25 14:24:01 -07005997 int refclk = 100000;
Jesse Barnesacbec812013-09-20 11:29:32 -07005998
5999 mutex_lock(&dev_priv->dpio_lock);
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006000 mdiv = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW3(pipe));
Jesse Barnesacbec812013-09-20 11:29:32 -07006001 mutex_unlock(&dev_priv->dpio_lock);
6002
6003 clock.m1 = (mdiv >> DPIO_M1DIV_SHIFT) & 7;
6004 clock.m2 = mdiv & DPIO_M2DIV_MASK;
6005 clock.n = (mdiv >> DPIO_N_SHIFT) & 0xf;
6006 clock.p1 = (mdiv >> DPIO_P1_SHIFT) & 7;
6007 clock.p2 = (mdiv >> DPIO_P2_SHIFT) & 0x1f;
6008
Ville Syrjäläf6466282013-10-14 14:50:31 +03006009 vlv_clock(refclk, &clock);
Jesse Barnesacbec812013-09-20 11:29:32 -07006010
Ville Syrjäläf6466282013-10-14 14:50:31 +03006011 /* clock.dot is the fast clock */
6012 pipe_config->port_clock = clock.dot / 5;
Jesse Barnesacbec812013-09-20 11:29:32 -07006013}
6014
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006015static void i9xx_get_plane_config(struct intel_crtc *crtc,
6016 struct intel_plane_config *plane_config)
6017{
6018 struct drm_device *dev = crtc->base.dev;
6019 struct drm_i915_private *dev_priv = dev->dev_private;
6020 u32 val, base, offset;
6021 int pipe = crtc->pipe, plane = crtc->plane;
6022 int fourcc, pixel_format;
6023 int aligned_height;
6024
Dave Airlie66e514c2014-04-03 07:51:54 +10006025 crtc->base.primary->fb = kzalloc(sizeof(struct intel_framebuffer), GFP_KERNEL);
6026 if (!crtc->base.primary->fb) {
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006027 DRM_DEBUG_KMS("failed to alloc fb\n");
6028 return;
6029 }
6030
6031 val = I915_READ(DSPCNTR(plane));
6032
6033 if (INTEL_INFO(dev)->gen >= 4)
6034 if (val & DISPPLANE_TILED)
6035 plane_config->tiled = true;
6036
6037 pixel_format = val & DISPPLANE_PIXFORMAT_MASK;
6038 fourcc = intel_format_to_fourcc(pixel_format);
Dave Airlie66e514c2014-04-03 07:51:54 +10006039 crtc->base.primary->fb->pixel_format = fourcc;
6040 crtc->base.primary->fb->bits_per_pixel =
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006041 drm_format_plane_cpp(fourcc, 0) * 8;
6042
6043 if (INTEL_INFO(dev)->gen >= 4) {
6044 if (plane_config->tiled)
6045 offset = I915_READ(DSPTILEOFF(plane));
6046 else
6047 offset = I915_READ(DSPLINOFF(plane));
6048 base = I915_READ(DSPSURF(plane)) & 0xfffff000;
6049 } else {
6050 base = I915_READ(DSPADDR(plane));
6051 }
6052 plane_config->base = base;
6053
6054 val = I915_READ(PIPESRC(pipe));
Dave Airlie66e514c2014-04-03 07:51:54 +10006055 crtc->base.primary->fb->width = ((val >> 16) & 0xfff) + 1;
6056 crtc->base.primary->fb->height = ((val >> 0) & 0xfff) + 1;
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006057
6058 val = I915_READ(DSPSTRIDE(pipe));
Dave Airlie66e514c2014-04-03 07:51:54 +10006059 crtc->base.primary->fb->pitches[0] = val & 0xffffff80;
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006060
Dave Airlie66e514c2014-04-03 07:51:54 +10006061 aligned_height = intel_align_height(dev, crtc->base.primary->fb->height,
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006062 plane_config->tiled);
6063
Dave Airlie66e514c2014-04-03 07:51:54 +10006064 plane_config->size = ALIGN(crtc->base.primary->fb->pitches[0] *
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006065 aligned_height, PAGE_SIZE);
6066
6067 DRM_DEBUG_KMS("pipe/plane %d/%d with fb: size=%dx%d@%d, offset=%x, pitch %d, size 0x%x\n",
Dave Airlie66e514c2014-04-03 07:51:54 +10006068 pipe, plane, crtc->base.primary->fb->width,
6069 crtc->base.primary->fb->height,
6070 crtc->base.primary->fb->bits_per_pixel, base,
6071 crtc->base.primary->fb->pitches[0],
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006072 plane_config->size);
6073
6074}
6075
Ville Syrjälä70b23a92014-04-09 13:28:22 +03006076static void chv_crtc_clock_get(struct intel_crtc *crtc,
6077 struct intel_crtc_config *pipe_config)
6078{
6079 struct drm_device *dev = crtc->base.dev;
6080 struct drm_i915_private *dev_priv = dev->dev_private;
6081 int pipe = pipe_config->cpu_transcoder;
6082 enum dpio_channel port = vlv_pipe_to_channel(pipe);
6083 intel_clock_t clock;
6084 u32 cmn_dw13, pll_dw0, pll_dw1, pll_dw2;
6085 int refclk = 100000;
6086
6087 mutex_lock(&dev_priv->dpio_lock);
6088 cmn_dw13 = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW13(port));
6089 pll_dw0 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW0(port));
6090 pll_dw1 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW1(port));
6091 pll_dw2 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW2(port));
6092 mutex_unlock(&dev_priv->dpio_lock);
6093
6094 clock.m1 = (pll_dw1 & 0x7) == DPIO_CHV_M1_DIV_BY_2 ? 2 : 0;
6095 clock.m2 = ((pll_dw0 & 0xff) << 22) | (pll_dw2 & 0x3fffff);
6096 clock.n = (pll_dw1 >> DPIO_CHV_N_DIV_SHIFT) & 0xf;
6097 clock.p1 = (cmn_dw13 >> DPIO_CHV_P1_DIV_SHIFT) & 0x7;
6098 clock.p2 = (cmn_dw13 >> DPIO_CHV_P2_DIV_SHIFT) & 0x1f;
6099
6100 chv_clock(refclk, &clock);
6101
6102 /* clock.dot is the fast clock */
6103 pipe_config->port_clock = clock.dot / 5;
6104}
6105
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01006106static bool i9xx_get_pipe_config(struct intel_crtc *crtc,
6107 struct intel_crtc_config *pipe_config)
6108{
6109 struct drm_device *dev = crtc->base.dev;
6110 struct drm_i915_private *dev_priv = dev->dev_private;
6111 uint32_t tmp;
6112
Imre Deakb5482bd2014-03-05 16:20:55 +02006113 if (!intel_display_power_enabled(dev_priv,
6114 POWER_DOMAIN_PIPE(crtc->pipe)))
6115 return false;
6116
Daniel Vettere143a212013-07-04 12:01:15 +02006117 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +02006118 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
Daniel Vettereccb1402013-05-22 00:50:22 +02006119
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01006120 tmp = I915_READ(PIPECONF(crtc->pipe));
6121 if (!(tmp & PIPECONF_ENABLE))
6122 return false;
6123
Ville Syrjälä42571ae2013-09-06 23:29:00 +03006124 if (IS_G4X(dev) || IS_VALLEYVIEW(dev)) {
6125 switch (tmp & PIPECONF_BPC_MASK) {
6126 case PIPECONF_6BPC:
6127 pipe_config->pipe_bpp = 18;
6128 break;
6129 case PIPECONF_8BPC:
6130 pipe_config->pipe_bpp = 24;
6131 break;
6132 case PIPECONF_10BPC:
6133 pipe_config->pipe_bpp = 30;
6134 break;
6135 default:
6136 break;
6137 }
6138 }
6139
Daniel Vetterb5a9fa02014-04-24 23:54:49 +02006140 if (IS_VALLEYVIEW(dev) && (tmp & PIPECONF_COLOR_RANGE_SELECT))
6141 pipe_config->limited_color_range = true;
6142
Ville Syrjälä282740f2013-09-04 18:30:03 +03006143 if (INTEL_INFO(dev)->gen < 4)
6144 pipe_config->double_wide = tmp & PIPECONF_DOUBLE_WIDE;
6145
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02006146 intel_get_pipe_timings(crtc, pipe_config);
6147
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02006148 i9xx_get_pfit_config(crtc, pipe_config);
6149
Daniel Vetter6c49f242013-06-06 12:45:25 +02006150 if (INTEL_INFO(dev)->gen >= 4) {
6151 tmp = I915_READ(DPLL_MD(crtc->pipe));
6152 pipe_config->pixel_multiplier =
6153 ((tmp & DPLL_MD_UDI_MULTIPLIER_MASK)
6154 >> DPLL_MD_UDI_MULTIPLIER_SHIFT) + 1;
Daniel Vetter8bcc2792013-06-05 13:34:28 +02006155 pipe_config->dpll_hw_state.dpll_md = tmp;
Daniel Vetter6c49f242013-06-06 12:45:25 +02006156 } else if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev)) {
6157 tmp = I915_READ(DPLL(crtc->pipe));
6158 pipe_config->pixel_multiplier =
6159 ((tmp & SDVO_MULTIPLIER_MASK)
6160 >> SDVO_MULTIPLIER_SHIFT_HIRES) + 1;
6161 } else {
6162 /* Note that on i915G/GM the pixel multiplier is in the sdvo
6163 * port and will be fixed up in the encoder->get_config
6164 * function. */
6165 pipe_config->pixel_multiplier = 1;
6166 }
Daniel Vetter8bcc2792013-06-05 13:34:28 +02006167 pipe_config->dpll_hw_state.dpll = I915_READ(DPLL(crtc->pipe));
6168 if (!IS_VALLEYVIEW(dev)) {
6169 pipe_config->dpll_hw_state.fp0 = I915_READ(FP0(crtc->pipe));
6170 pipe_config->dpll_hw_state.fp1 = I915_READ(FP1(crtc->pipe));
Ville Syrjälä165e9012013-06-26 17:44:15 +03006171 } else {
6172 /* Mask out read-only status bits. */
6173 pipe_config->dpll_hw_state.dpll &= ~(DPLL_LOCK_VLV |
6174 DPLL_PORTC_READY_MASK |
6175 DPLL_PORTB_READY_MASK);
Daniel Vetter8bcc2792013-06-05 13:34:28 +02006176 }
Daniel Vetter6c49f242013-06-06 12:45:25 +02006177
Ville Syrjälä70b23a92014-04-09 13:28:22 +03006178 if (IS_CHERRYVIEW(dev))
6179 chv_crtc_clock_get(crtc, pipe_config);
6180 else if (IS_VALLEYVIEW(dev))
Jesse Barnesacbec812013-09-20 11:29:32 -07006181 vlv_crtc_clock_get(crtc, pipe_config);
6182 else
6183 i9xx_crtc_clock_get(crtc, pipe_config);
Ville Syrjälä18442d02013-09-13 16:00:08 +03006184
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01006185 return true;
6186}
6187
Paulo Zanonidde86e22012-12-01 12:04:25 -02006188static void ironlake_init_pch_refclk(struct drm_device *dev)
Jesse Barnes13d83a62011-08-03 12:59:20 -07006189{
6190 struct drm_i915_private *dev_priv = dev->dev_private;
6191 struct drm_mode_config *mode_config = &dev->mode_config;
Jesse Barnes13d83a62011-08-03 12:59:20 -07006192 struct intel_encoder *encoder;
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006193 u32 val, final;
Jesse Barnes13d83a62011-08-03 12:59:20 -07006194 bool has_lvds = false;
Keith Packard199e5d72011-09-22 12:01:57 -07006195 bool has_cpu_edp = false;
Keith Packard199e5d72011-09-22 12:01:57 -07006196 bool has_panel = false;
Keith Packard99eb6a02011-09-26 14:29:12 -07006197 bool has_ck505 = false;
6198 bool can_ssc = false;
Jesse Barnes13d83a62011-08-03 12:59:20 -07006199
6200 /* We need to take the global config into account */
Keith Packard199e5d72011-09-22 12:01:57 -07006201 list_for_each_entry(encoder, &mode_config->encoder_list,
6202 base.head) {
6203 switch (encoder->type) {
6204 case INTEL_OUTPUT_LVDS:
6205 has_panel = true;
6206 has_lvds = true;
6207 break;
6208 case INTEL_OUTPUT_EDP:
6209 has_panel = true;
Imre Deak2de69052013-05-08 13:14:04 +03006210 if (enc_to_dig_port(&encoder->base)->port == PORT_A)
Keith Packard199e5d72011-09-22 12:01:57 -07006211 has_cpu_edp = true;
6212 break;
Jesse Barnes13d83a62011-08-03 12:59:20 -07006213 }
6214 }
6215
Keith Packard99eb6a02011-09-26 14:29:12 -07006216 if (HAS_PCH_IBX(dev)) {
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03006217 has_ck505 = dev_priv->vbt.display_clock_mode;
Keith Packard99eb6a02011-09-26 14:29:12 -07006218 can_ssc = has_ck505;
6219 } else {
6220 has_ck505 = false;
6221 can_ssc = true;
6222 }
6223
Imre Deak2de69052013-05-08 13:14:04 +03006224 DRM_DEBUG_KMS("has_panel %d has_lvds %d has_ck505 %d\n",
6225 has_panel, has_lvds, has_ck505);
Jesse Barnes13d83a62011-08-03 12:59:20 -07006226
6227 /* Ironlake: try to setup display ref clock before DPLL
6228 * enabling. This is only under driver's control after
6229 * PCH B stepping, previous chipset stepping should be
6230 * ignoring this setting.
6231 */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006232 val = I915_READ(PCH_DREF_CONTROL);
Jesse Barnes13d83a62011-08-03 12:59:20 -07006233
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006234 /* As we must carefully and slowly disable/enable each source in turn,
6235 * compute the final state we want first and check if we need to
6236 * make any changes at all.
6237 */
6238 final = val;
6239 final &= ~DREF_NONSPREAD_SOURCE_MASK;
Keith Packard99eb6a02011-09-26 14:29:12 -07006240 if (has_ck505)
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006241 final |= DREF_NONSPREAD_CK505_ENABLE;
Keith Packard99eb6a02011-09-26 14:29:12 -07006242 else
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006243 final |= DREF_NONSPREAD_SOURCE_ENABLE;
6244
6245 final &= ~DREF_SSC_SOURCE_MASK;
6246 final &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
6247 final &= ~DREF_SSC1_ENABLE;
Jesse Barnes13d83a62011-08-03 12:59:20 -07006248
Keith Packard199e5d72011-09-22 12:01:57 -07006249 if (has_panel) {
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006250 final |= DREF_SSC_SOURCE_ENABLE;
6251
6252 if (intel_panel_use_ssc(dev_priv) && can_ssc)
6253 final |= DREF_SSC1_ENABLE;
6254
6255 if (has_cpu_edp) {
6256 if (intel_panel_use_ssc(dev_priv) && can_ssc)
6257 final |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD;
6258 else
6259 final |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD;
6260 } else
6261 final |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
6262 } else {
6263 final |= DREF_SSC_SOURCE_DISABLE;
6264 final |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
6265 }
6266
6267 if (final == val)
6268 return;
6269
6270 /* Always enable nonspread source */
6271 val &= ~DREF_NONSPREAD_SOURCE_MASK;
6272
6273 if (has_ck505)
6274 val |= DREF_NONSPREAD_CK505_ENABLE;
6275 else
6276 val |= DREF_NONSPREAD_SOURCE_ENABLE;
6277
6278 if (has_panel) {
6279 val &= ~DREF_SSC_SOURCE_MASK;
6280 val |= DREF_SSC_SOURCE_ENABLE;
Jesse Barnes13d83a62011-08-03 12:59:20 -07006281
Keith Packard199e5d72011-09-22 12:01:57 -07006282 /* SSC must be turned on before enabling the CPU output */
Keith Packard99eb6a02011-09-26 14:29:12 -07006283 if (intel_panel_use_ssc(dev_priv) && can_ssc) {
Keith Packard199e5d72011-09-22 12:01:57 -07006284 DRM_DEBUG_KMS("Using SSC on panel\n");
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006285 val |= DREF_SSC1_ENABLE;
Daniel Vettere77166b2012-03-30 22:14:05 +02006286 } else
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006287 val &= ~DREF_SSC1_ENABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07006288
6289 /* Get SSC going before enabling the outputs */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006290 I915_WRITE(PCH_DREF_CONTROL, val);
Keith Packard199e5d72011-09-22 12:01:57 -07006291 POSTING_READ(PCH_DREF_CONTROL);
6292 udelay(200);
6293
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006294 val &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
Jesse Barnes13d83a62011-08-03 12:59:20 -07006295
6296 /* Enable CPU source on CPU attached eDP */
Keith Packard199e5d72011-09-22 12:01:57 -07006297 if (has_cpu_edp) {
Keith Packard99eb6a02011-09-26 14:29:12 -07006298 if (intel_panel_use_ssc(dev_priv) && can_ssc) {
Keith Packard199e5d72011-09-22 12:01:57 -07006299 DRM_DEBUG_KMS("Using SSC on eDP\n");
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006300 val |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD;
Robin Schroereba905b2014-05-18 02:24:50 +02006301 } else
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006302 val |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD;
Keith Packard199e5d72011-09-22 12:01:57 -07006303 } else
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006304 val |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07006305
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006306 I915_WRITE(PCH_DREF_CONTROL, val);
Keith Packard199e5d72011-09-22 12:01:57 -07006307 POSTING_READ(PCH_DREF_CONTROL);
6308 udelay(200);
6309 } else {
6310 DRM_DEBUG_KMS("Disabling SSC entirely\n");
6311
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006312 val &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
Keith Packard199e5d72011-09-22 12:01:57 -07006313
6314 /* Turn off CPU output */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006315 val |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07006316
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006317 I915_WRITE(PCH_DREF_CONTROL, val);
Keith Packard199e5d72011-09-22 12:01:57 -07006318 POSTING_READ(PCH_DREF_CONTROL);
6319 udelay(200);
6320
6321 /* Turn off the SSC source */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006322 val &= ~DREF_SSC_SOURCE_MASK;
6323 val |= DREF_SSC_SOURCE_DISABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07006324
6325 /* Turn off SSC1 */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006326 val &= ~DREF_SSC1_ENABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07006327
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006328 I915_WRITE(PCH_DREF_CONTROL, val);
Jesse Barnes13d83a62011-08-03 12:59:20 -07006329 POSTING_READ(PCH_DREF_CONTROL);
6330 udelay(200);
6331 }
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006332
6333 BUG_ON(val != final);
Jesse Barnes13d83a62011-08-03 12:59:20 -07006334}
6335
Paulo Zanonif31f2d52013-07-18 18:51:11 -03006336static void lpt_reset_fdi_mphy(struct drm_i915_private *dev_priv)
Paulo Zanonidde86e22012-12-01 12:04:25 -02006337{
Paulo Zanonif31f2d52013-07-18 18:51:11 -03006338 uint32_t tmp;
Paulo Zanonidde86e22012-12-01 12:04:25 -02006339
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006340 tmp = I915_READ(SOUTH_CHICKEN2);
6341 tmp |= FDI_MPHY_IOSFSB_RESET_CTL;
6342 I915_WRITE(SOUTH_CHICKEN2, tmp);
Paulo Zanonidde86e22012-12-01 12:04:25 -02006343
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006344 if (wait_for_atomic_us(I915_READ(SOUTH_CHICKEN2) &
6345 FDI_MPHY_IOSFSB_RESET_STATUS, 100))
6346 DRM_ERROR("FDI mPHY reset assert timeout\n");
Paulo Zanonidde86e22012-12-01 12:04:25 -02006347
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006348 tmp = I915_READ(SOUTH_CHICKEN2);
6349 tmp &= ~FDI_MPHY_IOSFSB_RESET_CTL;
6350 I915_WRITE(SOUTH_CHICKEN2, tmp);
Paulo Zanonidde86e22012-12-01 12:04:25 -02006351
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006352 if (wait_for_atomic_us((I915_READ(SOUTH_CHICKEN2) &
6353 FDI_MPHY_IOSFSB_RESET_STATUS) == 0, 100))
6354 DRM_ERROR("FDI mPHY reset de-assert timeout\n");
Paulo Zanonif31f2d52013-07-18 18:51:11 -03006355}
6356
6357/* WaMPhyProgramming:hsw */
6358static void lpt_program_fdi_mphy(struct drm_i915_private *dev_priv)
6359{
6360 uint32_t tmp;
Paulo Zanonidde86e22012-12-01 12:04:25 -02006361
6362 tmp = intel_sbi_read(dev_priv, 0x8008, SBI_MPHY);
6363 tmp &= ~(0xFF << 24);
6364 tmp |= (0x12 << 24);
6365 intel_sbi_write(dev_priv, 0x8008, tmp, SBI_MPHY);
6366
Paulo Zanonidde86e22012-12-01 12:04:25 -02006367 tmp = intel_sbi_read(dev_priv, 0x2008, SBI_MPHY);
6368 tmp |= (1 << 11);
6369 intel_sbi_write(dev_priv, 0x2008, tmp, SBI_MPHY);
6370
6371 tmp = intel_sbi_read(dev_priv, 0x2108, SBI_MPHY);
6372 tmp |= (1 << 11);
6373 intel_sbi_write(dev_priv, 0x2108, tmp, SBI_MPHY);
6374
Paulo Zanonidde86e22012-12-01 12:04:25 -02006375 tmp = intel_sbi_read(dev_priv, 0x206C, SBI_MPHY);
6376 tmp |= (1 << 24) | (1 << 21) | (1 << 18);
6377 intel_sbi_write(dev_priv, 0x206C, tmp, SBI_MPHY);
6378
6379 tmp = intel_sbi_read(dev_priv, 0x216C, SBI_MPHY);
6380 tmp |= (1 << 24) | (1 << 21) | (1 << 18);
6381 intel_sbi_write(dev_priv, 0x216C, tmp, SBI_MPHY);
6382
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006383 tmp = intel_sbi_read(dev_priv, 0x2080, SBI_MPHY);
6384 tmp &= ~(7 << 13);
6385 tmp |= (5 << 13);
6386 intel_sbi_write(dev_priv, 0x2080, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02006387
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006388 tmp = intel_sbi_read(dev_priv, 0x2180, SBI_MPHY);
6389 tmp &= ~(7 << 13);
6390 tmp |= (5 << 13);
6391 intel_sbi_write(dev_priv, 0x2180, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02006392
6393 tmp = intel_sbi_read(dev_priv, 0x208C, SBI_MPHY);
6394 tmp &= ~0xFF;
6395 tmp |= 0x1C;
6396 intel_sbi_write(dev_priv, 0x208C, tmp, SBI_MPHY);
6397
6398 tmp = intel_sbi_read(dev_priv, 0x218C, SBI_MPHY);
6399 tmp &= ~0xFF;
6400 tmp |= 0x1C;
6401 intel_sbi_write(dev_priv, 0x218C, tmp, SBI_MPHY);
6402
6403 tmp = intel_sbi_read(dev_priv, 0x2098, SBI_MPHY);
6404 tmp &= ~(0xFF << 16);
6405 tmp |= (0x1C << 16);
6406 intel_sbi_write(dev_priv, 0x2098, tmp, SBI_MPHY);
6407
6408 tmp = intel_sbi_read(dev_priv, 0x2198, SBI_MPHY);
6409 tmp &= ~(0xFF << 16);
6410 tmp |= (0x1C << 16);
6411 intel_sbi_write(dev_priv, 0x2198, tmp, SBI_MPHY);
6412
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006413 tmp = intel_sbi_read(dev_priv, 0x20C4, SBI_MPHY);
6414 tmp |= (1 << 27);
6415 intel_sbi_write(dev_priv, 0x20C4, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02006416
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006417 tmp = intel_sbi_read(dev_priv, 0x21C4, SBI_MPHY);
6418 tmp |= (1 << 27);
6419 intel_sbi_write(dev_priv, 0x21C4, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02006420
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006421 tmp = intel_sbi_read(dev_priv, 0x20EC, SBI_MPHY);
6422 tmp &= ~(0xF << 28);
6423 tmp |= (4 << 28);
6424 intel_sbi_write(dev_priv, 0x20EC, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02006425
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006426 tmp = intel_sbi_read(dev_priv, 0x21EC, SBI_MPHY);
6427 tmp &= ~(0xF << 28);
6428 tmp |= (4 << 28);
6429 intel_sbi_write(dev_priv, 0x21EC, tmp, SBI_MPHY);
Paulo Zanonif31f2d52013-07-18 18:51:11 -03006430}
6431
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03006432/* Implements 3 different sequences from BSpec chapter "Display iCLK
6433 * Programming" based on the parameters passed:
6434 * - Sequence to enable CLKOUT_DP
6435 * - Sequence to enable CLKOUT_DP without spread
6436 * - Sequence to enable CLKOUT_DP for FDI usage and configure PCH FDI I/O
6437 */
6438static void lpt_enable_clkout_dp(struct drm_device *dev, bool with_spread,
6439 bool with_fdi)
Paulo Zanonif31f2d52013-07-18 18:51:11 -03006440{
6441 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03006442 uint32_t reg, tmp;
6443
6444 if (WARN(with_fdi && !with_spread, "FDI requires downspread\n"))
6445 with_spread = true;
6446 if (WARN(dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE &&
6447 with_fdi, "LP PCH doesn't have FDI\n"))
6448 with_fdi = false;
Paulo Zanonif31f2d52013-07-18 18:51:11 -03006449
6450 mutex_lock(&dev_priv->dpio_lock);
6451
6452 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
6453 tmp &= ~SBI_SSCCTL_DISABLE;
6454 tmp |= SBI_SSCCTL_PATHALT;
6455 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
6456
6457 udelay(24);
6458
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03006459 if (with_spread) {
6460 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
6461 tmp &= ~SBI_SSCCTL_PATHALT;
6462 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
Paulo Zanonif31f2d52013-07-18 18:51:11 -03006463
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03006464 if (with_fdi) {
6465 lpt_reset_fdi_mphy(dev_priv);
6466 lpt_program_fdi_mphy(dev_priv);
6467 }
6468 }
Paulo Zanonidde86e22012-12-01 12:04:25 -02006469
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03006470 reg = (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) ?
6471 SBI_GEN0 : SBI_DBUFF0;
6472 tmp = intel_sbi_read(dev_priv, reg, SBI_ICLK);
6473 tmp |= SBI_GEN0_CFG_BUFFENABLE_DISABLE;
6474 intel_sbi_write(dev_priv, reg, tmp, SBI_ICLK);
Daniel Vetterc00db242013-01-22 15:33:27 +01006475
6476 mutex_unlock(&dev_priv->dpio_lock);
Paulo Zanonidde86e22012-12-01 12:04:25 -02006477}
6478
Paulo Zanoni47701c32013-07-23 11:19:25 -03006479/* Sequence to disable CLKOUT_DP */
6480static void lpt_disable_clkout_dp(struct drm_device *dev)
6481{
6482 struct drm_i915_private *dev_priv = dev->dev_private;
6483 uint32_t reg, tmp;
6484
6485 mutex_lock(&dev_priv->dpio_lock);
6486
6487 reg = (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) ?
6488 SBI_GEN0 : SBI_DBUFF0;
6489 tmp = intel_sbi_read(dev_priv, reg, SBI_ICLK);
6490 tmp &= ~SBI_GEN0_CFG_BUFFENABLE_DISABLE;
6491 intel_sbi_write(dev_priv, reg, tmp, SBI_ICLK);
6492
6493 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
6494 if (!(tmp & SBI_SSCCTL_DISABLE)) {
6495 if (!(tmp & SBI_SSCCTL_PATHALT)) {
6496 tmp |= SBI_SSCCTL_PATHALT;
6497 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
6498 udelay(32);
6499 }
6500 tmp |= SBI_SSCCTL_DISABLE;
6501 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
6502 }
6503
6504 mutex_unlock(&dev_priv->dpio_lock);
6505}
6506
Paulo Zanonibf8fa3d2013-07-12 14:19:38 -03006507static void lpt_init_pch_refclk(struct drm_device *dev)
6508{
6509 struct drm_mode_config *mode_config = &dev->mode_config;
6510 struct intel_encoder *encoder;
6511 bool has_vga = false;
6512
6513 list_for_each_entry(encoder, &mode_config->encoder_list, base.head) {
6514 switch (encoder->type) {
6515 case INTEL_OUTPUT_ANALOG:
6516 has_vga = true;
6517 break;
6518 }
6519 }
6520
Paulo Zanoni47701c32013-07-23 11:19:25 -03006521 if (has_vga)
6522 lpt_enable_clkout_dp(dev, true, true);
6523 else
6524 lpt_disable_clkout_dp(dev);
Paulo Zanonibf8fa3d2013-07-12 14:19:38 -03006525}
6526
Paulo Zanonidde86e22012-12-01 12:04:25 -02006527/*
6528 * Initialize reference clocks when the driver loads
6529 */
6530void intel_init_pch_refclk(struct drm_device *dev)
6531{
6532 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev))
6533 ironlake_init_pch_refclk(dev);
6534 else if (HAS_PCH_LPT(dev))
6535 lpt_init_pch_refclk(dev);
6536}
6537
Jesse Barnesd9d444c2011-09-02 13:03:05 -07006538static int ironlake_get_refclk(struct drm_crtc *crtc)
6539{
6540 struct drm_device *dev = crtc->dev;
6541 struct drm_i915_private *dev_priv = dev->dev_private;
6542 struct intel_encoder *encoder;
Jesse Barnesd9d444c2011-09-02 13:03:05 -07006543 int num_connectors = 0;
6544 bool is_lvds = false;
6545
Daniel Vetter6c2b7c122012-07-05 09:50:24 +02006546 for_each_encoder_on_crtc(dev, crtc, encoder) {
Jesse Barnesd9d444c2011-09-02 13:03:05 -07006547 switch (encoder->type) {
6548 case INTEL_OUTPUT_LVDS:
6549 is_lvds = true;
6550 break;
Jesse Barnesd9d444c2011-09-02 13:03:05 -07006551 }
6552 num_connectors++;
6553 }
6554
6555 if (is_lvds && intel_panel_use_ssc(dev_priv) && num_connectors < 2) {
Ville Syrjäläe91e9412013-12-09 18:54:16 +02006556 DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n",
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03006557 dev_priv->vbt.lvds_ssc_freq);
Ville Syrjäläe91e9412013-12-09 18:54:16 +02006558 return dev_priv->vbt.lvds_ssc_freq;
Jesse Barnesd9d444c2011-09-02 13:03:05 -07006559 }
6560
6561 return 120000;
6562}
6563
Daniel Vetter6ff93602013-04-19 11:24:36 +02006564static void ironlake_set_pipeconf(struct drm_crtc *crtc)
Paulo Zanonic8203562012-09-12 10:06:29 -03006565{
6566 struct drm_i915_private *dev_priv = crtc->dev->dev_private;
6567 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6568 int pipe = intel_crtc->pipe;
6569 uint32_t val;
6570
Daniel Vetter78114072013-06-13 00:54:57 +02006571 val = 0;
Paulo Zanonic8203562012-09-12 10:06:29 -03006572
Daniel Vetter965e0c42013-03-27 00:44:57 +01006573 switch (intel_crtc->config.pipe_bpp) {
Paulo Zanonic8203562012-09-12 10:06:29 -03006574 case 18:
Daniel Vetterdfd07d72012-12-17 11:21:38 +01006575 val |= PIPECONF_6BPC;
Paulo Zanonic8203562012-09-12 10:06:29 -03006576 break;
6577 case 24:
Daniel Vetterdfd07d72012-12-17 11:21:38 +01006578 val |= PIPECONF_8BPC;
Paulo Zanonic8203562012-09-12 10:06:29 -03006579 break;
6580 case 30:
Daniel Vetterdfd07d72012-12-17 11:21:38 +01006581 val |= PIPECONF_10BPC;
Paulo Zanonic8203562012-09-12 10:06:29 -03006582 break;
6583 case 36:
Daniel Vetterdfd07d72012-12-17 11:21:38 +01006584 val |= PIPECONF_12BPC;
Paulo Zanonic8203562012-09-12 10:06:29 -03006585 break;
6586 default:
Paulo Zanonicc769b62012-09-20 18:36:03 -03006587 /* Case prevented by intel_choose_pipe_bpp_dither. */
6588 BUG();
Paulo Zanonic8203562012-09-12 10:06:29 -03006589 }
6590
Daniel Vetterd8b32242013-04-25 17:54:44 +02006591 if (intel_crtc->config.dither)
Paulo Zanonic8203562012-09-12 10:06:29 -03006592 val |= (PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_SP);
6593
Daniel Vetter6ff93602013-04-19 11:24:36 +02006594 if (intel_crtc->config.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
Paulo Zanonic8203562012-09-12 10:06:29 -03006595 val |= PIPECONF_INTERLACED_ILK;
6596 else
6597 val |= PIPECONF_PROGRESSIVE;
6598
Daniel Vetter50f3b012013-03-27 00:44:56 +01006599 if (intel_crtc->config.limited_color_range)
Ville Syrjälä3685a8f2013-01-17 16:31:28 +02006600 val |= PIPECONF_COLOR_RANGE_SELECT;
Ville Syrjälä3685a8f2013-01-17 16:31:28 +02006601
Paulo Zanonic8203562012-09-12 10:06:29 -03006602 I915_WRITE(PIPECONF(pipe), val);
6603 POSTING_READ(PIPECONF(pipe));
6604}
6605
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02006606/*
6607 * Set up the pipe CSC unit.
6608 *
6609 * Currently only full range RGB to limited range RGB conversion
6610 * is supported, but eventually this should handle various
6611 * RGB<->YCbCr scenarios as well.
6612 */
Daniel Vetter50f3b012013-03-27 00:44:56 +01006613static void intel_set_pipe_csc(struct drm_crtc *crtc)
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02006614{
6615 struct drm_device *dev = crtc->dev;
6616 struct drm_i915_private *dev_priv = dev->dev_private;
6617 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6618 int pipe = intel_crtc->pipe;
6619 uint16_t coeff = 0x7800; /* 1.0 */
6620
6621 /*
6622 * TODO: Check what kind of values actually come out of the pipe
6623 * with these coeff/postoff values and adjust to get the best
6624 * accuracy. Perhaps we even need to take the bpc value into
6625 * consideration.
6626 */
6627
Daniel Vetter50f3b012013-03-27 00:44:56 +01006628 if (intel_crtc->config.limited_color_range)
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02006629 coeff = ((235 - 16) * (1 << 12) / 255) & 0xff8; /* 0.xxx... */
6630
6631 /*
6632 * GY/GU and RY/RU should be the other way around according
6633 * to BSpec, but reality doesn't agree. Just set them up in
6634 * a way that results in the correct picture.
6635 */
6636 I915_WRITE(PIPE_CSC_COEFF_RY_GY(pipe), coeff << 16);
6637 I915_WRITE(PIPE_CSC_COEFF_BY(pipe), 0);
6638
6639 I915_WRITE(PIPE_CSC_COEFF_RU_GU(pipe), coeff);
6640 I915_WRITE(PIPE_CSC_COEFF_BU(pipe), 0);
6641
6642 I915_WRITE(PIPE_CSC_COEFF_RV_GV(pipe), 0);
6643 I915_WRITE(PIPE_CSC_COEFF_BV(pipe), coeff << 16);
6644
6645 I915_WRITE(PIPE_CSC_PREOFF_HI(pipe), 0);
6646 I915_WRITE(PIPE_CSC_PREOFF_ME(pipe), 0);
6647 I915_WRITE(PIPE_CSC_PREOFF_LO(pipe), 0);
6648
6649 if (INTEL_INFO(dev)->gen > 6) {
6650 uint16_t postoff = 0;
6651
Daniel Vetter50f3b012013-03-27 00:44:56 +01006652 if (intel_crtc->config.limited_color_range)
Ville Syrjälä32cf0cb2013-11-28 22:10:38 +02006653 postoff = (16 * (1 << 12) / 255) & 0x1fff;
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02006654
6655 I915_WRITE(PIPE_CSC_POSTOFF_HI(pipe), postoff);
6656 I915_WRITE(PIPE_CSC_POSTOFF_ME(pipe), postoff);
6657 I915_WRITE(PIPE_CSC_POSTOFF_LO(pipe), postoff);
6658
6659 I915_WRITE(PIPE_CSC_MODE(pipe), 0);
6660 } else {
6661 uint32_t mode = CSC_MODE_YUV_TO_RGB;
6662
Daniel Vetter50f3b012013-03-27 00:44:56 +01006663 if (intel_crtc->config.limited_color_range)
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02006664 mode |= CSC_BLACK_SCREEN_OFFSET;
6665
6666 I915_WRITE(PIPE_CSC_MODE(pipe), mode);
6667 }
6668}
6669
Daniel Vetter6ff93602013-04-19 11:24:36 +02006670static void haswell_set_pipeconf(struct drm_crtc *crtc)
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03006671{
Paulo Zanoni756f85c2013-11-02 21:07:38 -07006672 struct drm_device *dev = crtc->dev;
6673 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03006674 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Paulo Zanoni756f85c2013-11-02 21:07:38 -07006675 enum pipe pipe = intel_crtc->pipe;
Daniel Vetter3b117c82013-04-17 20:15:07 +02006676 enum transcoder cpu_transcoder = intel_crtc->config.cpu_transcoder;
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03006677 uint32_t val;
6678
Daniel Vetter3eff4fa2013-06-13 00:54:59 +02006679 val = 0;
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03006680
Paulo Zanoni756f85c2013-11-02 21:07:38 -07006681 if (IS_HASWELL(dev) && intel_crtc->config.dither)
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03006682 val |= (PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_SP);
6683
Daniel Vetter6ff93602013-04-19 11:24:36 +02006684 if (intel_crtc->config.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03006685 val |= PIPECONF_INTERLACED_ILK;
6686 else
6687 val |= PIPECONF_PROGRESSIVE;
6688
Paulo Zanoni702e7a52012-10-23 18:29:59 -02006689 I915_WRITE(PIPECONF(cpu_transcoder), val);
6690 POSTING_READ(PIPECONF(cpu_transcoder));
Daniel Vetter3eff4fa2013-06-13 00:54:59 +02006691
6692 I915_WRITE(GAMMA_MODE(intel_crtc->pipe), GAMMA_MODE_MODE_8BIT);
6693 POSTING_READ(GAMMA_MODE(intel_crtc->pipe));
Paulo Zanoni756f85c2013-11-02 21:07:38 -07006694
6695 if (IS_BROADWELL(dev)) {
6696 val = 0;
6697
6698 switch (intel_crtc->config.pipe_bpp) {
6699 case 18:
6700 val |= PIPEMISC_DITHER_6_BPC;
6701 break;
6702 case 24:
6703 val |= PIPEMISC_DITHER_8_BPC;
6704 break;
6705 case 30:
6706 val |= PIPEMISC_DITHER_10_BPC;
6707 break;
6708 case 36:
6709 val |= PIPEMISC_DITHER_12_BPC;
6710 break;
6711 default:
6712 /* Case prevented by pipe_config_set_bpp. */
6713 BUG();
6714 }
6715
6716 if (intel_crtc->config.dither)
6717 val |= PIPEMISC_DITHER_ENABLE | PIPEMISC_DITHER_TYPE_SP;
6718
6719 I915_WRITE(PIPEMISC(pipe), val);
6720 }
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03006721}
6722
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03006723static bool ironlake_compute_clocks(struct drm_crtc *crtc,
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03006724 intel_clock_t *clock,
6725 bool *has_reduced_clock,
6726 intel_clock_t *reduced_clock)
6727{
6728 struct drm_device *dev = crtc->dev;
6729 struct drm_i915_private *dev_priv = dev->dev_private;
6730 struct intel_encoder *intel_encoder;
6731 int refclk;
6732 const intel_limit_t *limit;
Daniel Vettera16af7212013-04-30 14:01:44 +02006733 bool ret, is_lvds = false;
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03006734
6735 for_each_encoder_on_crtc(dev, crtc, intel_encoder) {
6736 switch (intel_encoder->type) {
6737 case INTEL_OUTPUT_LVDS:
6738 is_lvds = true;
6739 break;
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03006740 }
6741 }
6742
6743 refclk = ironlake_get_refclk(crtc);
6744
6745 /*
6746 * Returns a set of divisors for the desired target clock with the given
6747 * refclk, or FALSE. The returned values represent the clock equation:
6748 * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2.
6749 */
6750 limit = intel_limit(crtc, refclk);
Daniel Vetterff9a6752013-06-01 17:16:21 +02006751 ret = dev_priv->display.find_dpll(limit, crtc,
6752 to_intel_crtc(crtc)->config.port_clock,
Daniel Vetteree9300b2013-06-03 22:40:22 +02006753 refclk, NULL, clock);
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03006754 if (!ret)
6755 return false;
6756
6757 if (is_lvds && dev_priv->lvds_downclock_avail) {
6758 /*
6759 * Ensure we match the reduced clock's P to the target clock.
6760 * If the clocks don't match, we can't switch the display clock
6761 * by using the FP0/FP1. In such case we will disable the LVDS
6762 * downclock feature.
6763 */
Daniel Vetteree9300b2013-06-03 22:40:22 +02006764 *has_reduced_clock =
6765 dev_priv->display.find_dpll(limit, crtc,
6766 dev_priv->lvds_downclock,
6767 refclk, clock,
6768 reduced_clock);
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03006769 }
6770
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03006771 return true;
6772}
6773
Paulo Zanonid4b19312012-11-29 11:29:32 -02006774int ironlake_get_lanes_required(int target_clock, int link_bw, int bpp)
6775{
6776 /*
6777 * Account for spread spectrum to avoid
6778 * oversubscribing the link. Max center spread
6779 * is 2.5%; use 5% for safety's sake.
6780 */
6781 u32 bps = target_clock * bpp * 21 / 20;
Ville Syrjälä619d4d02014-02-27 14:23:14 +02006782 return DIV_ROUND_UP(bps, link_bw * 8);
Paulo Zanonid4b19312012-11-29 11:29:32 -02006783}
6784
Daniel Vetter7429e9d2013-04-20 17:19:46 +02006785static bool ironlake_needs_fb_cb_tune(struct dpll *dpll, int factor)
Daniel Vetter6cf86a52013-04-02 23:38:10 +02006786{
Daniel Vetter7429e9d2013-04-20 17:19:46 +02006787 return i9xx_dpll_compute_m(dpll) < factor * dpll->n;
Paulo Zanonif48d8f22012-09-20 18:36:04 -03006788}
6789
Paulo Zanonide13a2e2012-09-20 18:36:05 -03006790static uint32_t ironlake_compute_dpll(struct intel_crtc *intel_crtc,
Daniel Vetter7429e9d2013-04-20 17:19:46 +02006791 u32 *fp,
Daniel Vetter9a7c7892013-04-04 22:20:34 +02006792 intel_clock_t *reduced_clock, u32 *fp2)
Paulo Zanonide13a2e2012-09-20 18:36:05 -03006793{
6794 struct drm_crtc *crtc = &intel_crtc->base;
6795 struct drm_device *dev = crtc->dev;
6796 struct drm_i915_private *dev_priv = dev->dev_private;
6797 struct intel_encoder *intel_encoder;
6798 uint32_t dpll;
Daniel Vetter6cc5f342013-03-27 00:44:53 +01006799 int factor, num_connectors = 0;
Daniel Vetter09ede542013-04-30 14:01:45 +02006800 bool is_lvds = false, is_sdvo = false;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03006801
6802 for_each_encoder_on_crtc(dev, crtc, intel_encoder) {
6803 switch (intel_encoder->type) {
6804 case INTEL_OUTPUT_LVDS:
6805 is_lvds = true;
6806 break;
6807 case INTEL_OUTPUT_SDVO:
6808 case INTEL_OUTPUT_HDMI:
6809 is_sdvo = true;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03006810 break;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03006811 }
6812
6813 num_connectors++;
6814 }
Jesse Barnes79e53942008-11-07 14:24:08 -08006815
Chris Wilsonc1858122010-12-03 21:35:48 +00006816 /* Enable autotuning of the PLL clock (if permissible) */
Eric Anholt8febb292011-03-30 13:01:07 -07006817 factor = 21;
6818 if (is_lvds) {
6819 if ((intel_panel_use_ssc(dev_priv) &&
Ville Syrjäläe91e9412013-12-09 18:54:16 +02006820 dev_priv->vbt.lvds_ssc_freq == 100000) ||
Daniel Vetterf0b44052013-04-04 22:20:33 +02006821 (HAS_PCH_IBX(dev) && intel_is_dual_link_lvds(dev)))
Eric Anholt8febb292011-03-30 13:01:07 -07006822 factor = 25;
Daniel Vetter09ede542013-04-30 14:01:45 +02006823 } else if (intel_crtc->config.sdvo_tv_clock)
Eric Anholt8febb292011-03-30 13:01:07 -07006824 factor = 20;
Chris Wilsonc1858122010-12-03 21:35:48 +00006825
Daniel Vetter7429e9d2013-04-20 17:19:46 +02006826 if (ironlake_needs_fb_cb_tune(&intel_crtc->config.dpll, factor))
Daniel Vetter7d0ac5b2013-04-04 22:20:32 +02006827 *fp |= FP_CB_TUNE;
Chris Wilsonc1858122010-12-03 21:35:48 +00006828
Daniel Vetter9a7c7892013-04-04 22:20:34 +02006829 if (fp2 && (reduced_clock->m < factor * reduced_clock->n))
6830 *fp2 |= FP_CB_TUNE;
6831
Chris Wilson5eddb702010-09-11 13:48:45 +01006832 dpll = 0;
Zhenyu Wang2c072452009-06-05 15:38:42 +08006833
Eric Anholta07d6782011-03-30 13:01:08 -07006834 if (is_lvds)
6835 dpll |= DPLLB_MODE_LVDS;
6836 else
6837 dpll |= DPLLB_MODE_DAC_SERIAL;
Daniel Vetter198a037f2013-04-19 11:14:37 +02006838
Daniel Vetteref1b4602013-06-01 17:17:04 +02006839 dpll |= (intel_crtc->config.pixel_multiplier - 1)
6840 << PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT;
Daniel Vetter198a037f2013-04-19 11:14:37 +02006841
6842 if (is_sdvo)
Daniel Vetter4a33e482013-07-06 12:52:05 +02006843 dpll |= DPLL_SDVO_HIGH_SPEED;
Daniel Vetter9566e9a2013-04-19 11:14:36 +02006844 if (intel_crtc->config.has_dp_encoder)
Daniel Vetter4a33e482013-07-06 12:52:05 +02006845 dpll |= DPLL_SDVO_HIGH_SPEED;
Jesse Barnes79e53942008-11-07 14:24:08 -08006846
Eric Anholta07d6782011-03-30 13:01:08 -07006847 /* compute bitmask from p1 value */
Daniel Vetter7429e9d2013-04-20 17:19:46 +02006848 dpll |= (1 << (intel_crtc->config.dpll.p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
Eric Anholta07d6782011-03-30 13:01:08 -07006849 /* also FPA1 */
Daniel Vetter7429e9d2013-04-20 17:19:46 +02006850 dpll |= (1 << (intel_crtc->config.dpll.p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
Eric Anholta07d6782011-03-30 13:01:08 -07006851
Daniel Vetter7429e9d2013-04-20 17:19:46 +02006852 switch (intel_crtc->config.dpll.p2) {
Eric Anholta07d6782011-03-30 13:01:08 -07006853 case 5:
6854 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
6855 break;
6856 case 7:
6857 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
6858 break;
6859 case 10:
6860 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
6861 break;
6862 case 14:
6863 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
6864 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08006865 }
6866
Daniel Vetterb4c09f32013-04-30 14:01:42 +02006867 if (is_lvds && intel_panel_use_ssc(dev_priv) && num_connectors < 2)
Kristian Høgsberg43565a02009-02-13 20:56:52 -05006868 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
Jesse Barnes79e53942008-11-07 14:24:08 -08006869 else
6870 dpll |= PLL_REF_INPUT_DREFCLK;
6871
Daniel Vetter959e16d2013-06-05 13:34:21 +02006872 return dpll | DPLL_VCO_ENABLE;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03006873}
6874
Jesse Barnes79e53942008-11-07 14:24:08 -08006875static int ironlake_crtc_mode_set(struct drm_crtc *crtc,
Jesse Barnes79e53942008-11-07 14:24:08 -08006876 int x, int y,
Daniel Vetter94352cf2012-07-05 22:51:56 +02006877 struct drm_framebuffer *fb)
Jesse Barnes79e53942008-11-07 14:24:08 -08006878{
6879 struct drm_device *dev = crtc->dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08006880 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03006881 int num_connectors = 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08006882 intel_clock_t clock, reduced_clock;
Daniel Vettercbbab5b2013-04-19 11:14:31 +02006883 u32 dpll = 0, fp = 0, fp2 = 0;
Paulo Zanonie2f12b02012-09-20 18:36:06 -03006884 bool ok, has_reduced_clock = false;
Daniel Vetter8b470472013-03-28 10:41:59 +01006885 bool is_lvds = false;
Paulo Zanonif48d8f22012-09-20 18:36:04 -03006886 struct intel_encoder *encoder;
Daniel Vettere2b78262013-06-07 23:10:03 +02006887 struct intel_shared_dpll *pll;
Jesse Barnes79e53942008-11-07 14:24:08 -08006888
6889 for_each_encoder_on_crtc(dev, crtc, encoder) {
6890 switch (encoder->type) {
6891 case INTEL_OUTPUT_LVDS:
6892 is_lvds = true;
6893 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08006894 }
6895
6896 num_connectors++;
6897 }
6898
Paulo Zanoni5dc52982012-10-05 12:05:56 -03006899 WARN(!(HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev)),
6900 "Unexpected PCH type %d\n", INTEL_PCH_TYPE(dev));
6901
Daniel Vetterff9a6752013-06-01 17:16:21 +02006902 ok = ironlake_compute_clocks(crtc, &clock,
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03006903 &has_reduced_clock, &reduced_clock);
Daniel Vetteree9300b2013-06-03 22:40:22 +02006904 if (!ok && !intel_crtc->config.clock_set) {
Jesse Barnes79e53942008-11-07 14:24:08 -08006905 DRM_ERROR("Couldn't find PLL settings for mode!\n");
6906 return -EINVAL;
6907 }
Daniel Vetterf47709a2013-03-28 10:42:02 +01006908 /* Compat-code for transition, will disappear. */
6909 if (!intel_crtc->config.clock_set) {
6910 intel_crtc->config.dpll.n = clock.n;
6911 intel_crtc->config.dpll.m1 = clock.m1;
6912 intel_crtc->config.dpll.m2 = clock.m2;
6913 intel_crtc->config.dpll.p1 = clock.p1;
6914 intel_crtc->config.dpll.p2 = clock.p2;
6915 }
Jesse Barnes79e53942008-11-07 14:24:08 -08006916
Paulo Zanoni5dc52982012-10-05 12:05:56 -03006917 /* CPU eDP is the only output that doesn't need a PCH PLL of its own. */
Daniel Vetter8b470472013-03-28 10:41:59 +01006918 if (intel_crtc->config.has_pch_encoder) {
Daniel Vetter7429e9d2013-04-20 17:19:46 +02006919 fp = i9xx_dpll_compute_fp(&intel_crtc->config.dpll);
Daniel Vettercbbab5b2013-04-19 11:14:31 +02006920 if (has_reduced_clock)
Daniel Vetter7429e9d2013-04-20 17:19:46 +02006921 fp2 = i9xx_dpll_compute_fp(&reduced_clock);
Daniel Vettercbbab5b2013-04-19 11:14:31 +02006922
Daniel Vetter7429e9d2013-04-20 17:19:46 +02006923 dpll = ironlake_compute_dpll(intel_crtc,
Daniel Vettercbbab5b2013-04-19 11:14:31 +02006924 &fp, &reduced_clock,
6925 has_reduced_clock ? &fp2 : NULL);
6926
Daniel Vetter959e16d2013-06-05 13:34:21 +02006927 intel_crtc->config.dpll_hw_state.dpll = dpll;
Daniel Vetter66e985c2013-06-05 13:34:20 +02006928 intel_crtc->config.dpll_hw_state.fp0 = fp;
6929 if (has_reduced_clock)
6930 intel_crtc->config.dpll_hw_state.fp1 = fp2;
6931 else
6932 intel_crtc->config.dpll_hw_state.fp1 = fp;
6933
Daniel Vetterb89a1d32013-06-05 13:34:24 +02006934 pll = intel_get_shared_dpll(intel_crtc);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01006935 if (pll == NULL) {
Ville Syrjälä84f44ce2013-04-17 17:48:49 +03006936 DRM_DEBUG_DRIVER("failed to find PLL for pipe %c\n",
Daniel Vetter29407aa2014-04-24 23:55:08 +02006937 pipe_name(intel_crtc->pipe));
Jesse Barnes4b645f12011-10-12 09:51:31 -07006938 return -EINVAL;
6939 }
Jesse Barnesee7b9f92012-04-20 17:11:53 +01006940 } else
Daniel Vettere72f9fb2013-06-05 13:34:06 +02006941 intel_put_shared_dpll(intel_crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08006942
Jani Nikulad330a952014-01-21 11:24:25 +02006943 if (is_lvds && has_reduced_clock && i915.powersave)
Daniel Vetterbcd644e2013-06-05 13:34:22 +02006944 intel_crtc->lowfreq_avail = true;
6945 else
6946 intel_crtc->lowfreq_avail = false;
Daniel Vettere2b78262013-06-07 23:10:03 +02006947
Daniel Vetterc8f7a0d2014-04-24 23:55:04 +02006948 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08006949}
6950
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03006951static void intel_pch_transcoder_get_m_n(struct intel_crtc *crtc,
6952 struct intel_link_m_n *m_n)
Daniel Vetter72419202013-04-04 13:28:53 +02006953{
6954 struct drm_device *dev = crtc->base.dev;
6955 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03006956 enum pipe pipe = crtc->pipe;
Daniel Vetter72419202013-04-04 13:28:53 +02006957
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03006958 m_n->link_m = I915_READ(PCH_TRANS_LINK_M1(pipe));
6959 m_n->link_n = I915_READ(PCH_TRANS_LINK_N1(pipe));
6960 m_n->gmch_m = I915_READ(PCH_TRANS_DATA_M1(pipe))
6961 & ~TU_SIZE_MASK;
6962 m_n->gmch_n = I915_READ(PCH_TRANS_DATA_N1(pipe));
6963 m_n->tu = ((I915_READ(PCH_TRANS_DATA_M1(pipe))
6964 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
6965}
6966
6967static void intel_cpu_transcoder_get_m_n(struct intel_crtc *crtc,
6968 enum transcoder transcoder,
6969 struct intel_link_m_n *m_n)
6970{
6971 struct drm_device *dev = crtc->base.dev;
6972 struct drm_i915_private *dev_priv = dev->dev_private;
6973 enum pipe pipe = crtc->pipe;
6974
6975 if (INTEL_INFO(dev)->gen >= 5) {
6976 m_n->link_m = I915_READ(PIPE_LINK_M1(transcoder));
6977 m_n->link_n = I915_READ(PIPE_LINK_N1(transcoder));
6978 m_n->gmch_m = I915_READ(PIPE_DATA_M1(transcoder))
6979 & ~TU_SIZE_MASK;
6980 m_n->gmch_n = I915_READ(PIPE_DATA_N1(transcoder));
6981 m_n->tu = ((I915_READ(PIPE_DATA_M1(transcoder))
6982 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
6983 } else {
6984 m_n->link_m = I915_READ(PIPE_LINK_M_G4X(pipe));
6985 m_n->link_n = I915_READ(PIPE_LINK_N_G4X(pipe));
6986 m_n->gmch_m = I915_READ(PIPE_DATA_M_G4X(pipe))
6987 & ~TU_SIZE_MASK;
6988 m_n->gmch_n = I915_READ(PIPE_DATA_N_G4X(pipe));
6989 m_n->tu = ((I915_READ(PIPE_DATA_M_G4X(pipe))
6990 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
6991 }
6992}
6993
6994void intel_dp_get_m_n(struct intel_crtc *crtc,
6995 struct intel_crtc_config *pipe_config)
6996{
6997 if (crtc->config.has_pch_encoder)
6998 intel_pch_transcoder_get_m_n(crtc, &pipe_config->dp_m_n);
6999 else
7000 intel_cpu_transcoder_get_m_n(crtc, pipe_config->cpu_transcoder,
7001 &pipe_config->dp_m_n);
7002}
7003
Daniel Vetter72419202013-04-04 13:28:53 +02007004static void ironlake_get_fdi_m_n_config(struct intel_crtc *crtc,
7005 struct intel_crtc_config *pipe_config)
7006{
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03007007 intel_cpu_transcoder_get_m_n(crtc, pipe_config->cpu_transcoder,
7008 &pipe_config->fdi_m_n);
Daniel Vetter72419202013-04-04 13:28:53 +02007009}
7010
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007011static void ironlake_get_pfit_config(struct intel_crtc *crtc,
7012 struct intel_crtc_config *pipe_config)
7013{
7014 struct drm_device *dev = crtc->base.dev;
7015 struct drm_i915_private *dev_priv = dev->dev_private;
7016 uint32_t tmp;
7017
7018 tmp = I915_READ(PF_CTL(crtc->pipe));
7019
7020 if (tmp & PF_ENABLE) {
Chris Wilsonfd4daa92013-08-27 17:04:17 +01007021 pipe_config->pch_pfit.enabled = true;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007022 pipe_config->pch_pfit.pos = I915_READ(PF_WIN_POS(crtc->pipe));
7023 pipe_config->pch_pfit.size = I915_READ(PF_WIN_SZ(crtc->pipe));
Daniel Vettercb8b2a32013-06-01 17:16:23 +02007024
7025 /* We currently do not free assignements of panel fitters on
7026 * ivb/hsw (since we don't use the higher upscaling modes which
7027 * differentiates them) so just WARN about this case for now. */
7028 if (IS_GEN7(dev)) {
7029 WARN_ON((tmp & PF_PIPE_SEL_MASK_IVB) !=
7030 PF_PIPE_SEL_IVB(crtc->pipe));
7031 }
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007032 }
Jesse Barnes79e53942008-11-07 14:24:08 -08007033}
7034
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007035static void ironlake_get_plane_config(struct intel_crtc *crtc,
7036 struct intel_plane_config *plane_config)
7037{
7038 struct drm_device *dev = crtc->base.dev;
7039 struct drm_i915_private *dev_priv = dev->dev_private;
7040 u32 val, base, offset;
7041 int pipe = crtc->pipe, plane = crtc->plane;
7042 int fourcc, pixel_format;
7043 int aligned_height;
7044
Dave Airlie66e514c2014-04-03 07:51:54 +10007045 crtc->base.primary->fb = kzalloc(sizeof(struct intel_framebuffer), GFP_KERNEL);
7046 if (!crtc->base.primary->fb) {
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007047 DRM_DEBUG_KMS("failed to alloc fb\n");
7048 return;
7049 }
7050
7051 val = I915_READ(DSPCNTR(plane));
7052
7053 if (INTEL_INFO(dev)->gen >= 4)
7054 if (val & DISPPLANE_TILED)
7055 plane_config->tiled = true;
7056
7057 pixel_format = val & DISPPLANE_PIXFORMAT_MASK;
7058 fourcc = intel_format_to_fourcc(pixel_format);
Dave Airlie66e514c2014-04-03 07:51:54 +10007059 crtc->base.primary->fb->pixel_format = fourcc;
7060 crtc->base.primary->fb->bits_per_pixel =
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007061 drm_format_plane_cpp(fourcc, 0) * 8;
7062
7063 base = I915_READ(DSPSURF(plane)) & 0xfffff000;
7064 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
7065 offset = I915_READ(DSPOFFSET(plane));
7066 } else {
7067 if (plane_config->tiled)
7068 offset = I915_READ(DSPTILEOFF(plane));
7069 else
7070 offset = I915_READ(DSPLINOFF(plane));
7071 }
7072 plane_config->base = base;
7073
7074 val = I915_READ(PIPESRC(pipe));
Dave Airlie66e514c2014-04-03 07:51:54 +10007075 crtc->base.primary->fb->width = ((val >> 16) & 0xfff) + 1;
7076 crtc->base.primary->fb->height = ((val >> 0) & 0xfff) + 1;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007077
7078 val = I915_READ(DSPSTRIDE(pipe));
Dave Airlie66e514c2014-04-03 07:51:54 +10007079 crtc->base.primary->fb->pitches[0] = val & 0xffffff80;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007080
Dave Airlie66e514c2014-04-03 07:51:54 +10007081 aligned_height = intel_align_height(dev, crtc->base.primary->fb->height,
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007082 plane_config->tiled);
7083
Dave Airlie66e514c2014-04-03 07:51:54 +10007084 plane_config->size = ALIGN(crtc->base.primary->fb->pitches[0] *
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007085 aligned_height, PAGE_SIZE);
7086
7087 DRM_DEBUG_KMS("pipe/plane %d/%d with fb: size=%dx%d@%d, offset=%x, pitch %d, size 0x%x\n",
Dave Airlie66e514c2014-04-03 07:51:54 +10007088 pipe, plane, crtc->base.primary->fb->width,
7089 crtc->base.primary->fb->height,
7090 crtc->base.primary->fb->bits_per_pixel, base,
7091 crtc->base.primary->fb->pitches[0],
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007092 plane_config->size);
7093}
7094
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01007095static bool ironlake_get_pipe_config(struct intel_crtc *crtc,
7096 struct intel_crtc_config *pipe_config)
7097{
7098 struct drm_device *dev = crtc->base.dev;
7099 struct drm_i915_private *dev_priv = dev->dev_private;
7100 uint32_t tmp;
7101
Daniel Vettere143a212013-07-04 12:01:15 +02007102 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +02007103 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
Daniel Vettereccb1402013-05-22 00:50:22 +02007104
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01007105 tmp = I915_READ(PIPECONF(crtc->pipe));
7106 if (!(tmp & PIPECONF_ENABLE))
7107 return false;
7108
Ville Syrjälä42571ae2013-09-06 23:29:00 +03007109 switch (tmp & PIPECONF_BPC_MASK) {
7110 case PIPECONF_6BPC:
7111 pipe_config->pipe_bpp = 18;
7112 break;
7113 case PIPECONF_8BPC:
7114 pipe_config->pipe_bpp = 24;
7115 break;
7116 case PIPECONF_10BPC:
7117 pipe_config->pipe_bpp = 30;
7118 break;
7119 case PIPECONF_12BPC:
7120 pipe_config->pipe_bpp = 36;
7121 break;
7122 default:
7123 break;
7124 }
7125
Daniel Vetterb5a9fa02014-04-24 23:54:49 +02007126 if (tmp & PIPECONF_COLOR_RANGE_SELECT)
7127 pipe_config->limited_color_range = true;
7128
Daniel Vetterab9412b2013-05-03 11:49:46 +02007129 if (I915_READ(PCH_TRANSCONF(crtc->pipe)) & TRANS_ENABLE) {
Daniel Vetter66e985c2013-06-05 13:34:20 +02007130 struct intel_shared_dpll *pll;
7131
Daniel Vetter88adfff2013-03-28 10:42:01 +01007132 pipe_config->has_pch_encoder = true;
7133
Daniel Vetter627eb5a2013-04-29 19:33:42 +02007134 tmp = I915_READ(FDI_RX_CTL(crtc->pipe));
7135 pipe_config->fdi_lanes = ((FDI_DP_PORT_WIDTH_MASK & tmp) >>
7136 FDI_DP_PORT_WIDTH_SHIFT) + 1;
Daniel Vetter72419202013-04-04 13:28:53 +02007137
7138 ironlake_get_fdi_m_n_config(crtc, pipe_config);
Daniel Vetter6c49f242013-06-06 12:45:25 +02007139
Daniel Vetterc0d43d62013-06-07 23:11:08 +02007140 if (HAS_PCH_IBX(dev_priv->dev)) {
Daniel Vetterd94ab062013-07-04 12:01:16 +02007141 pipe_config->shared_dpll =
7142 (enum intel_dpll_id) crtc->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +02007143 } else {
7144 tmp = I915_READ(PCH_DPLL_SEL);
7145 if (tmp & TRANS_DPLLB_SEL(crtc->pipe))
7146 pipe_config->shared_dpll = DPLL_ID_PCH_PLL_B;
7147 else
7148 pipe_config->shared_dpll = DPLL_ID_PCH_PLL_A;
7149 }
Daniel Vetter66e985c2013-06-05 13:34:20 +02007150
7151 pll = &dev_priv->shared_dplls[pipe_config->shared_dpll];
7152
7153 WARN_ON(!pll->get_hw_state(dev_priv, pll,
7154 &pipe_config->dpll_hw_state));
Daniel Vetterc93f54c2013-06-27 19:47:19 +02007155
7156 tmp = pipe_config->dpll_hw_state.dpll;
7157 pipe_config->pixel_multiplier =
7158 ((tmp & PLL_REF_SDVO_HDMI_MULTIPLIER_MASK)
7159 >> PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT) + 1;
Ville Syrjälä18442d02013-09-13 16:00:08 +03007160
7161 ironlake_pch_clock_get(crtc, pipe_config);
Daniel Vetter6c49f242013-06-06 12:45:25 +02007162 } else {
7163 pipe_config->pixel_multiplier = 1;
Daniel Vetter627eb5a2013-04-29 19:33:42 +02007164 }
7165
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02007166 intel_get_pipe_timings(crtc, pipe_config);
7167
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007168 ironlake_get_pfit_config(crtc, pipe_config);
7169
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01007170 return true;
7171}
7172
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007173static void assert_can_disable_lcpll(struct drm_i915_private *dev_priv)
7174{
7175 struct drm_device *dev = dev_priv->dev;
7176 struct intel_ddi_plls *plls = &dev_priv->ddi_plls;
7177 struct intel_crtc *crtc;
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007178
Damien Lespiaud3fcc802014-05-13 23:32:22 +01007179 for_each_intel_crtc(dev, crtc)
Paulo Zanoni798183c2013-12-06 20:29:01 -02007180 WARN(crtc->active, "CRTC for pipe %c enabled\n",
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007181 pipe_name(crtc->pipe));
7182
7183 WARN(I915_READ(HSW_PWR_WELL_DRIVER), "Power well on\n");
7184 WARN(plls->spll_refcount, "SPLL enabled\n");
7185 WARN(plls->wrpll1_refcount, "WRPLL1 enabled\n");
7186 WARN(plls->wrpll2_refcount, "WRPLL2 enabled\n");
7187 WARN(I915_READ(PCH_PP_STATUS) & PP_ON, "Panel power on\n");
7188 WARN(I915_READ(BLC_PWM_CPU_CTL2) & BLM_PWM_ENABLE,
7189 "CPU PWM1 enabled\n");
7190 WARN(I915_READ(HSW_BLC_PWM2_CTL) & BLM_PWM_ENABLE,
7191 "CPU PWM2 enabled\n");
7192 WARN(I915_READ(BLC_PWM_PCH_CTL1) & BLM_PCH_PWM_ENABLE,
7193 "PCH PWM1 enabled\n");
7194 WARN(I915_READ(UTIL_PIN_CTL) & UTIL_PIN_ENABLE,
7195 "Utility pin enabled\n");
7196 WARN(I915_READ(PCH_GTC_CTL) & PCH_GTC_ENABLE, "PCH GTC enabled\n");
7197
Paulo Zanoni9926ada2014-04-01 19:39:47 -03007198 /*
7199 * In theory we can still leave IRQs enabled, as long as only the HPD
7200 * interrupts remain enabled. We used to check for that, but since it's
7201 * gen-specific and since we only disable LCPLL after we fully disable
7202 * the interrupts, the check below should be enough.
7203 */
7204 WARN(!dev_priv->pm.irqs_disabled, "IRQs enabled\n");
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007205}
7206
Paulo Zanoni3c4c9b82014-03-07 20:12:36 -03007207static void hsw_write_dcomp(struct drm_i915_private *dev_priv, uint32_t val)
7208{
7209 struct drm_device *dev = dev_priv->dev;
7210
7211 if (IS_HASWELL(dev)) {
7212 mutex_lock(&dev_priv->rps.hw_lock);
7213 if (sandybridge_pcode_write(dev_priv, GEN6_PCODE_WRITE_D_COMP,
7214 val))
7215 DRM_ERROR("Failed to disable D_COMP\n");
7216 mutex_unlock(&dev_priv->rps.hw_lock);
7217 } else {
7218 I915_WRITE(D_COMP, val);
7219 }
7220 POSTING_READ(D_COMP);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007221}
7222
7223/*
7224 * This function implements pieces of two sequences from BSpec:
7225 * - Sequence for display software to disable LCPLL
7226 * - Sequence for display software to allow package C8+
7227 * The steps implemented here are just the steps that actually touch the LCPLL
7228 * register. Callers should take care of disabling all the display engine
7229 * functions, doing the mode unset, fixing interrupts, etc.
7230 */
Paulo Zanoni6ff58d52013-09-24 13:52:57 -03007231static void hsw_disable_lcpll(struct drm_i915_private *dev_priv,
7232 bool switch_to_fclk, bool allow_power_down)
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007233{
7234 uint32_t val;
7235
7236 assert_can_disable_lcpll(dev_priv);
7237
7238 val = I915_READ(LCPLL_CTL);
7239
7240 if (switch_to_fclk) {
7241 val |= LCPLL_CD_SOURCE_FCLK;
7242 I915_WRITE(LCPLL_CTL, val);
7243
7244 if (wait_for_atomic_us(I915_READ(LCPLL_CTL) &
7245 LCPLL_CD_SOURCE_FCLK_DONE, 1))
7246 DRM_ERROR("Switching to FCLK failed\n");
7247
7248 val = I915_READ(LCPLL_CTL);
7249 }
7250
7251 val |= LCPLL_PLL_DISABLE;
7252 I915_WRITE(LCPLL_CTL, val);
7253 POSTING_READ(LCPLL_CTL);
7254
7255 if (wait_for((I915_READ(LCPLL_CTL) & LCPLL_PLL_LOCK) == 0, 1))
7256 DRM_ERROR("LCPLL still locked\n");
7257
7258 val = I915_READ(D_COMP);
7259 val |= D_COMP_COMP_DISABLE;
Paulo Zanoni3c4c9b82014-03-07 20:12:36 -03007260 hsw_write_dcomp(dev_priv, val);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007261 ndelay(100);
7262
7263 if (wait_for((I915_READ(D_COMP) & D_COMP_RCOMP_IN_PROGRESS) == 0, 1))
7264 DRM_ERROR("D_COMP RCOMP still in progress\n");
7265
7266 if (allow_power_down) {
7267 val = I915_READ(LCPLL_CTL);
7268 val |= LCPLL_POWER_DOWN_ALLOW;
7269 I915_WRITE(LCPLL_CTL, val);
7270 POSTING_READ(LCPLL_CTL);
7271 }
7272}
7273
7274/*
7275 * Fully restores LCPLL, disallowing power down and switching back to LCPLL
7276 * source.
7277 */
Paulo Zanoni6ff58d52013-09-24 13:52:57 -03007278static void hsw_restore_lcpll(struct drm_i915_private *dev_priv)
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007279{
7280 uint32_t val;
Paulo Zanonia8a8bd52014-03-07 20:08:05 -03007281 unsigned long irqflags;
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007282
7283 val = I915_READ(LCPLL_CTL);
7284
7285 if ((val & (LCPLL_PLL_LOCK | LCPLL_PLL_DISABLE | LCPLL_CD_SOURCE_FCLK |
7286 LCPLL_POWER_DOWN_ALLOW)) == LCPLL_PLL_LOCK)
7287 return;
7288
Paulo Zanonia8a8bd52014-03-07 20:08:05 -03007289 /*
7290 * Make sure we're not on PC8 state before disabling PC8, otherwise
7291 * we'll hang the machine. To prevent PC8 state, just enable force_wake.
7292 *
7293 * The other problem is that hsw_restore_lcpll() is called as part of
7294 * the runtime PM resume sequence, so we can't just call
7295 * gen6_gt_force_wake_get() because that function calls
7296 * intel_runtime_pm_get(), and we can't change the runtime PM refcount
7297 * while we are on the resume sequence. So to solve this problem we have
7298 * to call special forcewake code that doesn't touch runtime PM and
7299 * doesn't enable the forcewake delayed work.
7300 */
7301 spin_lock_irqsave(&dev_priv->uncore.lock, irqflags);
7302 if (dev_priv->uncore.forcewake_count++ == 0)
7303 dev_priv->uncore.funcs.force_wake_get(dev_priv, FORCEWAKE_ALL);
7304 spin_unlock_irqrestore(&dev_priv->uncore.lock, irqflags);
Paulo Zanoni215733f2013-08-19 13:18:07 -03007305
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007306 if (val & LCPLL_POWER_DOWN_ALLOW) {
7307 val &= ~LCPLL_POWER_DOWN_ALLOW;
7308 I915_WRITE(LCPLL_CTL, val);
Daniel Vetter35d8f2e2013-08-21 23:38:08 +02007309 POSTING_READ(LCPLL_CTL);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007310 }
7311
7312 val = I915_READ(D_COMP);
7313 val |= D_COMP_COMP_FORCE;
7314 val &= ~D_COMP_COMP_DISABLE;
Paulo Zanoni3c4c9b82014-03-07 20:12:36 -03007315 hsw_write_dcomp(dev_priv, val);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007316
7317 val = I915_READ(LCPLL_CTL);
7318 val &= ~LCPLL_PLL_DISABLE;
7319 I915_WRITE(LCPLL_CTL, val);
7320
7321 if (wait_for(I915_READ(LCPLL_CTL) & LCPLL_PLL_LOCK, 5))
7322 DRM_ERROR("LCPLL not locked yet\n");
7323
7324 if (val & LCPLL_CD_SOURCE_FCLK) {
7325 val = I915_READ(LCPLL_CTL);
7326 val &= ~LCPLL_CD_SOURCE_FCLK;
7327 I915_WRITE(LCPLL_CTL, val);
7328
7329 if (wait_for_atomic_us((I915_READ(LCPLL_CTL) &
7330 LCPLL_CD_SOURCE_FCLK_DONE) == 0, 1))
7331 DRM_ERROR("Switching back to LCPLL failed\n");
7332 }
Paulo Zanoni215733f2013-08-19 13:18:07 -03007333
Paulo Zanonia8a8bd52014-03-07 20:08:05 -03007334 /* See the big comment above. */
7335 spin_lock_irqsave(&dev_priv->uncore.lock, irqflags);
7336 if (--dev_priv->uncore.forcewake_count == 0)
7337 dev_priv->uncore.funcs.force_wake_put(dev_priv, FORCEWAKE_ALL);
7338 spin_unlock_irqrestore(&dev_priv->uncore.lock, irqflags);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007339}
7340
Paulo Zanoni765dab62014-03-07 20:08:18 -03007341/*
7342 * Package states C8 and deeper are really deep PC states that can only be
7343 * reached when all the devices on the system allow it, so even if the graphics
7344 * device allows PC8+, it doesn't mean the system will actually get to these
7345 * states. Our driver only allows PC8+ when going into runtime PM.
7346 *
7347 * The requirements for PC8+ are that all the outputs are disabled, the power
7348 * well is disabled and most interrupts are disabled, and these are also
7349 * requirements for runtime PM. When these conditions are met, we manually do
7350 * the other conditions: disable the interrupts, clocks and switch LCPLL refclk
7351 * to Fclk. If we're in PC8+ and we get an non-hotplug interrupt, we can hard
7352 * hang the machine.
7353 *
7354 * When we really reach PC8 or deeper states (not just when we allow it) we lose
7355 * the state of some registers, so when we come back from PC8+ we need to
7356 * restore this state. We don't get into PC8+ if we're not in RC6, so we don't
7357 * need to take care of the registers kept by RC6. Notice that this happens even
7358 * if we don't put the device in PCI D3 state (which is what currently happens
7359 * because of the runtime PM support).
7360 *
7361 * For more, read "Display Sequences for Package C8" on the hardware
7362 * documentation.
7363 */
Paulo Zanonia14cb6f2014-03-07 20:08:17 -03007364void hsw_enable_pc8(struct drm_i915_private *dev_priv)
Paulo Zanonic67a4702013-08-19 13:18:09 -03007365{
Paulo Zanonic67a4702013-08-19 13:18:09 -03007366 struct drm_device *dev = dev_priv->dev;
7367 uint32_t val;
7368
Paulo Zanonic67a4702013-08-19 13:18:09 -03007369 DRM_DEBUG_KMS("Enabling package C8+\n");
7370
Paulo Zanonic67a4702013-08-19 13:18:09 -03007371 if (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) {
7372 val = I915_READ(SOUTH_DSPCLK_GATE_D);
7373 val &= ~PCH_LP_PARTITION_LEVEL_DISABLE;
7374 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
7375 }
7376
7377 lpt_disable_clkout_dp(dev);
Paulo Zanonic67a4702013-08-19 13:18:09 -03007378 hsw_disable_lcpll(dev_priv, true, true);
7379}
7380
Paulo Zanonia14cb6f2014-03-07 20:08:17 -03007381void hsw_disable_pc8(struct drm_i915_private *dev_priv)
Paulo Zanonic67a4702013-08-19 13:18:09 -03007382{
7383 struct drm_device *dev = dev_priv->dev;
7384 uint32_t val;
7385
Paulo Zanonic67a4702013-08-19 13:18:09 -03007386 DRM_DEBUG_KMS("Disabling package C8+\n");
7387
7388 hsw_restore_lcpll(dev_priv);
Paulo Zanonic67a4702013-08-19 13:18:09 -03007389 lpt_init_pch_refclk(dev);
7390
7391 if (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) {
7392 val = I915_READ(SOUTH_DSPCLK_GATE_D);
7393 val |= PCH_LP_PARTITION_LEVEL_DISABLE;
7394 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
7395 }
7396
7397 intel_prepare_ddi(dev);
Paulo Zanonic67a4702013-08-19 13:18:09 -03007398}
7399
Paulo Zanoni9a952a02014-03-07 20:12:34 -03007400static void snb_modeset_global_resources(struct drm_device *dev)
7401{
7402 modeset_update_crtc_power_domains(dev);
7403}
7404
Imre Deak4f074122013-10-16 17:25:51 +03007405static void haswell_modeset_global_resources(struct drm_device *dev)
7406{
Paulo Zanonida723562013-12-19 11:54:51 -02007407 modeset_update_crtc_power_domains(dev);
Daniel Vetterd6dd9eb2013-01-29 16:35:20 -02007408}
7409
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03007410static int haswell_crtc_mode_set(struct drm_crtc *crtc,
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03007411 int x, int y,
7412 struct drm_framebuffer *fb)
7413{
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03007414 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03007415
Paulo Zanoni566b7342013-11-25 15:27:08 -02007416 if (!intel_ddi_pll_select(intel_crtc))
Paulo Zanoni6441ab52012-10-05 12:05:58 -03007417 return -EINVAL;
Paulo Zanoni566b7342013-11-25 15:27:08 -02007418 intel_ddi_pll_enable(intel_crtc);
Paulo Zanoni6441ab52012-10-05 12:05:58 -03007419
Daniel Vetter644cef32014-04-24 23:55:07 +02007420 intel_crtc->lowfreq_avail = false;
7421
Daniel Vetterc8f7a0d2014-04-24 23:55:04 +02007422 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08007423}
7424
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01007425static bool haswell_get_pipe_config(struct intel_crtc *crtc,
7426 struct intel_crtc_config *pipe_config)
7427{
7428 struct drm_device *dev = crtc->base.dev;
7429 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007430 enum intel_display_power_domain pfit_domain;
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01007431 uint32_t tmp;
7432
Imre Deakb5482bd2014-03-05 16:20:55 +02007433 if (!intel_display_power_enabled(dev_priv,
7434 POWER_DOMAIN_PIPE(crtc->pipe)))
7435 return false;
7436
Daniel Vettere143a212013-07-04 12:01:15 +02007437 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +02007438 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
7439
Daniel Vettereccb1402013-05-22 00:50:22 +02007440 tmp = I915_READ(TRANS_DDI_FUNC_CTL(TRANSCODER_EDP));
7441 if (tmp & TRANS_DDI_FUNC_ENABLE) {
7442 enum pipe trans_edp_pipe;
7443 switch (tmp & TRANS_DDI_EDP_INPUT_MASK) {
7444 default:
7445 WARN(1, "unknown pipe linked to edp transcoder\n");
7446 case TRANS_DDI_EDP_INPUT_A_ONOFF:
7447 case TRANS_DDI_EDP_INPUT_A_ON:
7448 trans_edp_pipe = PIPE_A;
7449 break;
7450 case TRANS_DDI_EDP_INPUT_B_ONOFF:
7451 trans_edp_pipe = PIPE_B;
7452 break;
7453 case TRANS_DDI_EDP_INPUT_C_ONOFF:
7454 trans_edp_pipe = PIPE_C;
7455 break;
7456 }
7457
7458 if (trans_edp_pipe == crtc->pipe)
7459 pipe_config->cpu_transcoder = TRANSCODER_EDP;
7460 }
7461
Imre Deakda7e29b2014-02-18 00:02:02 +02007462 if (!intel_display_power_enabled(dev_priv,
Daniel Vettereccb1402013-05-22 00:50:22 +02007463 POWER_DOMAIN_TRANSCODER(pipe_config->cpu_transcoder)))
Paulo Zanoni2bfce952013-04-18 16:35:40 -03007464 return false;
7465
Daniel Vettereccb1402013-05-22 00:50:22 +02007466 tmp = I915_READ(PIPECONF(pipe_config->cpu_transcoder));
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01007467 if (!(tmp & PIPECONF_ENABLE))
7468 return false;
7469
Daniel Vetter88adfff2013-03-28 10:42:01 +01007470 /*
Paulo Zanonif196e6b2013-04-18 16:35:41 -03007471 * Haswell has only FDI/PCH transcoder A. It is which is connected to
Daniel Vetter88adfff2013-03-28 10:42:01 +01007472 * DDI E. So just check whether this pipe is wired to DDI E and whether
7473 * the PCH transcoder is on.
7474 */
Daniel Vettereccb1402013-05-22 00:50:22 +02007475 tmp = I915_READ(TRANS_DDI_FUNC_CTL(pipe_config->cpu_transcoder));
Daniel Vetter88adfff2013-03-28 10:42:01 +01007476 if ((tmp & TRANS_DDI_PORT_MASK) == TRANS_DDI_SELECT_PORT(PORT_E) &&
Daniel Vetterab9412b2013-05-03 11:49:46 +02007477 I915_READ(LPT_TRANSCONF) & TRANS_ENABLE) {
Daniel Vetter88adfff2013-03-28 10:42:01 +01007478 pipe_config->has_pch_encoder = true;
7479
Daniel Vetter627eb5a2013-04-29 19:33:42 +02007480 tmp = I915_READ(FDI_RX_CTL(PIPE_A));
7481 pipe_config->fdi_lanes = ((FDI_DP_PORT_WIDTH_MASK & tmp) >>
7482 FDI_DP_PORT_WIDTH_SHIFT) + 1;
Daniel Vetter72419202013-04-04 13:28:53 +02007483
7484 ironlake_get_fdi_m_n_config(crtc, pipe_config);
Daniel Vetter627eb5a2013-04-29 19:33:42 +02007485 }
7486
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02007487 intel_get_pipe_timings(crtc, pipe_config);
7488
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007489 pfit_domain = POWER_DOMAIN_PIPE_PANEL_FITTER(crtc->pipe);
Imre Deakda7e29b2014-02-18 00:02:02 +02007490 if (intel_display_power_enabled(dev_priv, pfit_domain))
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007491 ironlake_get_pfit_config(crtc, pipe_config);
Daniel Vetter88adfff2013-03-28 10:42:01 +01007492
Jesse Barnese59150d2014-01-07 13:30:45 -08007493 if (IS_HASWELL(dev))
7494 pipe_config->ips_enabled = hsw_crtc_supports_ips(crtc) &&
7495 (I915_READ(IPS_CTL) & IPS_ENABLE);
Paulo Zanoni42db64e2013-05-31 16:33:22 -03007496
Daniel Vetter6c49f242013-06-06 12:45:25 +02007497 pipe_config->pixel_multiplier = 1;
7498
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01007499 return true;
7500}
7501
Jani Nikula1a915102013-10-16 12:34:48 +03007502static struct {
7503 int clock;
7504 u32 config;
7505} hdmi_audio_clock[] = {
7506 { DIV_ROUND_UP(25200 * 1000, 1001), AUD_CONFIG_PIXEL_CLOCK_HDMI_25175 },
7507 { 25200, AUD_CONFIG_PIXEL_CLOCK_HDMI_25200 }, /* default per bspec */
7508 { 27000, AUD_CONFIG_PIXEL_CLOCK_HDMI_27000 },
7509 { 27000 * 1001 / 1000, AUD_CONFIG_PIXEL_CLOCK_HDMI_27027 },
7510 { 54000, AUD_CONFIG_PIXEL_CLOCK_HDMI_54000 },
7511 { 54000 * 1001 / 1000, AUD_CONFIG_PIXEL_CLOCK_HDMI_54054 },
7512 { DIV_ROUND_UP(74250 * 1000, 1001), AUD_CONFIG_PIXEL_CLOCK_HDMI_74176 },
7513 { 74250, AUD_CONFIG_PIXEL_CLOCK_HDMI_74250 },
7514 { DIV_ROUND_UP(148500 * 1000, 1001), AUD_CONFIG_PIXEL_CLOCK_HDMI_148352 },
7515 { 148500, AUD_CONFIG_PIXEL_CLOCK_HDMI_148500 },
7516};
7517
7518/* get AUD_CONFIG_PIXEL_CLOCK_HDMI_* value for mode */
7519static u32 audio_config_hdmi_pixel_clock(struct drm_display_mode *mode)
7520{
7521 int i;
7522
7523 for (i = 0; i < ARRAY_SIZE(hdmi_audio_clock); i++) {
7524 if (mode->clock == hdmi_audio_clock[i].clock)
7525 break;
7526 }
7527
7528 if (i == ARRAY_SIZE(hdmi_audio_clock)) {
7529 DRM_DEBUG_KMS("HDMI audio pixel clock setting for %d not found, falling back to defaults\n", mode->clock);
7530 i = 1;
7531 }
7532
7533 DRM_DEBUG_KMS("Configuring HDMI audio for pixel clock %d (0x%08x)\n",
7534 hdmi_audio_clock[i].clock,
7535 hdmi_audio_clock[i].config);
7536
7537 return hdmi_audio_clock[i].config;
7538}
7539
Wu Fengguang3a9627f2011-12-09 20:42:19 +08007540static bool intel_eld_uptodate(struct drm_connector *connector,
7541 int reg_eldv, uint32_t bits_eldv,
7542 int reg_elda, uint32_t bits_elda,
7543 int reg_edid)
7544{
7545 struct drm_i915_private *dev_priv = connector->dev->dev_private;
7546 uint8_t *eld = connector->eld;
7547 uint32_t i;
7548
7549 i = I915_READ(reg_eldv);
7550 i &= bits_eldv;
7551
7552 if (!eld[0])
7553 return !i;
7554
7555 if (!i)
7556 return false;
7557
7558 i = I915_READ(reg_elda);
7559 i &= ~bits_elda;
7560 I915_WRITE(reg_elda, i);
7561
7562 for (i = 0; i < eld[2]; i++)
7563 if (I915_READ(reg_edid) != *((uint32_t *)eld + i))
7564 return false;
7565
7566 return true;
7567}
7568
Wu Fengguange0dac652011-09-05 14:25:34 +08007569static void g4x_write_eld(struct drm_connector *connector,
Jani Nikula34427052013-10-16 12:34:47 +03007570 struct drm_crtc *crtc,
7571 struct drm_display_mode *mode)
Wu Fengguange0dac652011-09-05 14:25:34 +08007572{
7573 struct drm_i915_private *dev_priv = connector->dev->dev_private;
7574 uint8_t *eld = connector->eld;
7575 uint32_t eldv;
7576 uint32_t len;
7577 uint32_t i;
7578
7579 i = I915_READ(G4X_AUD_VID_DID);
7580
7581 if (i == INTEL_AUDIO_DEVBLC || i == INTEL_AUDIO_DEVCL)
7582 eldv = G4X_ELDV_DEVCL_DEVBLC;
7583 else
7584 eldv = G4X_ELDV_DEVCTG;
7585
Wu Fengguang3a9627f2011-12-09 20:42:19 +08007586 if (intel_eld_uptodate(connector,
7587 G4X_AUD_CNTL_ST, eldv,
7588 G4X_AUD_CNTL_ST, G4X_ELD_ADDR,
7589 G4X_HDMIW_HDMIEDID))
7590 return;
7591
Wu Fengguange0dac652011-09-05 14:25:34 +08007592 i = I915_READ(G4X_AUD_CNTL_ST);
7593 i &= ~(eldv | G4X_ELD_ADDR);
7594 len = (i >> 9) & 0x1f; /* ELD buffer size */
7595 I915_WRITE(G4X_AUD_CNTL_ST, i);
7596
7597 if (!eld[0])
7598 return;
7599
7600 len = min_t(uint8_t, eld[2], len);
7601 DRM_DEBUG_DRIVER("ELD size %d\n", len);
7602 for (i = 0; i < len; i++)
7603 I915_WRITE(G4X_HDMIW_HDMIEDID, *((uint32_t *)eld + i));
7604
7605 i = I915_READ(G4X_AUD_CNTL_ST);
7606 i |= eldv;
7607 I915_WRITE(G4X_AUD_CNTL_ST, i);
7608}
7609
Wang Xingchao83358c852012-08-16 22:43:37 +08007610static void haswell_write_eld(struct drm_connector *connector,
Jani Nikula34427052013-10-16 12:34:47 +03007611 struct drm_crtc *crtc,
7612 struct drm_display_mode *mode)
Wang Xingchao83358c852012-08-16 22:43:37 +08007613{
7614 struct drm_i915_private *dev_priv = connector->dev->dev_private;
7615 uint8_t *eld = connector->eld;
Wang Xingchao83358c852012-08-16 22:43:37 +08007616 uint32_t eldv;
7617 uint32_t i;
7618 int len;
7619 int pipe = to_intel_crtc(crtc)->pipe;
7620 int tmp;
7621
7622 int hdmiw_hdmiedid = HSW_AUD_EDID_DATA(pipe);
7623 int aud_cntl_st = HSW_AUD_DIP_ELD_CTRL(pipe);
7624 int aud_config = HSW_AUD_CFG(pipe);
7625 int aud_cntrl_st2 = HSW_AUD_PIN_ELD_CP_VLD;
7626
Wang Xingchao83358c852012-08-16 22:43:37 +08007627 /* Audio output enable */
7628 DRM_DEBUG_DRIVER("HDMI audio: enable codec\n");
7629 tmp = I915_READ(aud_cntrl_st2);
7630 tmp |= (AUDIO_OUTPUT_ENABLE_A << (pipe * 4));
7631 I915_WRITE(aud_cntrl_st2, tmp);
Daniel Vetterc7905792014-04-16 16:56:09 +02007632 POSTING_READ(aud_cntrl_st2);
Wang Xingchao83358c852012-08-16 22:43:37 +08007633
Daniel Vetterc7905792014-04-16 16:56:09 +02007634 assert_pipe_disabled(dev_priv, to_intel_crtc(crtc)->pipe);
Wang Xingchao83358c852012-08-16 22:43:37 +08007635
7636 /* Set ELD valid state */
7637 tmp = I915_READ(aud_cntrl_st2);
Takashi Iwai7e7cb342013-09-10 07:30:36 +02007638 DRM_DEBUG_DRIVER("HDMI audio: pin eld vld status=0x%08x\n", tmp);
Wang Xingchao83358c852012-08-16 22:43:37 +08007639 tmp |= (AUDIO_ELD_VALID_A << (pipe * 4));
7640 I915_WRITE(aud_cntrl_st2, tmp);
7641 tmp = I915_READ(aud_cntrl_st2);
Takashi Iwai7e7cb342013-09-10 07:30:36 +02007642 DRM_DEBUG_DRIVER("HDMI audio: eld vld status=0x%08x\n", tmp);
Wang Xingchao83358c852012-08-16 22:43:37 +08007643
7644 /* Enable HDMI mode */
7645 tmp = I915_READ(aud_config);
Takashi Iwai7e7cb342013-09-10 07:30:36 +02007646 DRM_DEBUG_DRIVER("HDMI audio: audio conf: 0x%08x\n", tmp);
Wang Xingchao83358c852012-08-16 22:43:37 +08007647 /* clear N_programing_enable and N_value_index */
7648 tmp &= ~(AUD_CONFIG_N_VALUE_INDEX | AUD_CONFIG_N_PROG_ENABLE);
7649 I915_WRITE(aud_config, tmp);
7650
7651 DRM_DEBUG_DRIVER("ELD on pipe %c\n", pipe_name(pipe));
7652
7653 eldv = AUDIO_ELD_VALID_A << (pipe * 4);
7654
7655 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT)) {
7656 DRM_DEBUG_DRIVER("ELD: DisplayPort detected\n");
7657 eld[5] |= (1 << 2); /* Conn_Type, 0x1 = DisplayPort */
7658 I915_WRITE(aud_config, AUD_CONFIG_N_VALUE_INDEX); /* 0x1 = DP */
Jani Nikula1a915102013-10-16 12:34:48 +03007659 } else {
7660 I915_WRITE(aud_config, audio_config_hdmi_pixel_clock(mode));
7661 }
Wang Xingchao83358c852012-08-16 22:43:37 +08007662
7663 if (intel_eld_uptodate(connector,
7664 aud_cntrl_st2, eldv,
7665 aud_cntl_st, IBX_ELD_ADDRESS,
7666 hdmiw_hdmiedid))
7667 return;
7668
7669 i = I915_READ(aud_cntrl_st2);
7670 i &= ~eldv;
7671 I915_WRITE(aud_cntrl_st2, i);
7672
7673 if (!eld[0])
7674 return;
7675
7676 i = I915_READ(aud_cntl_st);
7677 i &= ~IBX_ELD_ADDRESS;
7678 I915_WRITE(aud_cntl_st, i);
7679 i = (i >> 29) & DIP_PORT_SEL_MASK; /* DIP_Port_Select, 0x1 = PortB */
7680 DRM_DEBUG_DRIVER("port num:%d\n", i);
7681
7682 len = min_t(uint8_t, eld[2], 21); /* 84 bytes of hw ELD buffer */
7683 DRM_DEBUG_DRIVER("ELD size %d\n", len);
7684 for (i = 0; i < len; i++)
7685 I915_WRITE(hdmiw_hdmiedid, *((uint32_t *)eld + i));
7686
7687 i = I915_READ(aud_cntrl_st2);
7688 i |= eldv;
7689 I915_WRITE(aud_cntrl_st2, i);
7690
7691}
7692
Wu Fengguange0dac652011-09-05 14:25:34 +08007693static void ironlake_write_eld(struct drm_connector *connector,
Jani Nikula34427052013-10-16 12:34:47 +03007694 struct drm_crtc *crtc,
7695 struct drm_display_mode *mode)
Wu Fengguange0dac652011-09-05 14:25:34 +08007696{
7697 struct drm_i915_private *dev_priv = connector->dev->dev_private;
7698 uint8_t *eld = connector->eld;
7699 uint32_t eldv;
7700 uint32_t i;
7701 int len;
7702 int hdmiw_hdmiedid;
Wu Fengguangb6daa022012-01-06 14:41:31 -06007703 int aud_config;
Wu Fengguange0dac652011-09-05 14:25:34 +08007704 int aud_cntl_st;
7705 int aud_cntrl_st2;
Wang Xingchao9b138a82012-08-09 16:52:18 +08007706 int pipe = to_intel_crtc(crtc)->pipe;
Wu Fengguange0dac652011-09-05 14:25:34 +08007707
Wu Fengguangb3f33cb2011-12-09 20:42:17 +08007708 if (HAS_PCH_IBX(connector->dev)) {
Wang Xingchao9b138a82012-08-09 16:52:18 +08007709 hdmiw_hdmiedid = IBX_HDMIW_HDMIEDID(pipe);
7710 aud_config = IBX_AUD_CFG(pipe);
7711 aud_cntl_st = IBX_AUD_CNTL_ST(pipe);
Wu Fengguang1202b4c62011-12-09 20:42:18 +08007712 aud_cntrl_st2 = IBX_AUD_CNTL_ST2;
Mengdong Lin9ca2fe72013-11-01 00:17:03 -04007713 } else if (IS_VALLEYVIEW(connector->dev)) {
7714 hdmiw_hdmiedid = VLV_HDMIW_HDMIEDID(pipe);
7715 aud_config = VLV_AUD_CFG(pipe);
7716 aud_cntl_st = VLV_AUD_CNTL_ST(pipe);
7717 aud_cntrl_st2 = VLV_AUD_CNTL_ST2;
Wu Fengguange0dac652011-09-05 14:25:34 +08007718 } else {
Wang Xingchao9b138a82012-08-09 16:52:18 +08007719 hdmiw_hdmiedid = CPT_HDMIW_HDMIEDID(pipe);
7720 aud_config = CPT_AUD_CFG(pipe);
7721 aud_cntl_st = CPT_AUD_CNTL_ST(pipe);
Wu Fengguang1202b4c62011-12-09 20:42:18 +08007722 aud_cntrl_st2 = CPT_AUD_CNTRL_ST2;
Wu Fengguange0dac652011-09-05 14:25:34 +08007723 }
7724
Wang Xingchao9b138a82012-08-09 16:52:18 +08007725 DRM_DEBUG_DRIVER("ELD on pipe %c\n", pipe_name(pipe));
Wu Fengguange0dac652011-09-05 14:25:34 +08007726
Mengdong Lin9ca2fe72013-11-01 00:17:03 -04007727 if (IS_VALLEYVIEW(connector->dev)) {
7728 struct intel_encoder *intel_encoder;
7729 struct intel_digital_port *intel_dig_port;
7730
7731 intel_encoder = intel_attached_encoder(connector);
7732 intel_dig_port = enc_to_dig_port(&intel_encoder->base);
7733 i = intel_dig_port->port;
7734 } else {
7735 i = I915_READ(aud_cntl_st);
7736 i = (i >> 29) & DIP_PORT_SEL_MASK;
7737 /* DIP_Port_Select, 0x1 = PortB */
7738 }
7739
Wu Fengguange0dac652011-09-05 14:25:34 +08007740 if (!i) {
7741 DRM_DEBUG_DRIVER("Audio directed to unknown port\n");
7742 /* operate blindly on all ports */
Wu Fengguang1202b4c62011-12-09 20:42:18 +08007743 eldv = IBX_ELD_VALIDB;
7744 eldv |= IBX_ELD_VALIDB << 4;
7745 eldv |= IBX_ELD_VALIDB << 8;
Wu Fengguange0dac652011-09-05 14:25:34 +08007746 } else {
Ville Syrjälä2582a852013-04-17 17:48:47 +03007747 DRM_DEBUG_DRIVER("ELD on port %c\n", port_name(i));
Wu Fengguang1202b4c62011-12-09 20:42:18 +08007748 eldv = IBX_ELD_VALIDB << ((i - 1) * 4);
Wu Fengguange0dac652011-09-05 14:25:34 +08007749 }
7750
Wu Fengguang3a9627f2011-12-09 20:42:19 +08007751 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT)) {
7752 DRM_DEBUG_DRIVER("ELD: DisplayPort detected\n");
7753 eld[5] |= (1 << 2); /* Conn_Type, 0x1 = DisplayPort */
Wu Fengguangb6daa022012-01-06 14:41:31 -06007754 I915_WRITE(aud_config, AUD_CONFIG_N_VALUE_INDEX); /* 0x1 = DP */
Jani Nikula1a915102013-10-16 12:34:48 +03007755 } else {
7756 I915_WRITE(aud_config, audio_config_hdmi_pixel_clock(mode));
7757 }
Wu Fengguang3a9627f2011-12-09 20:42:19 +08007758
7759 if (intel_eld_uptodate(connector,
7760 aud_cntrl_st2, eldv,
7761 aud_cntl_st, IBX_ELD_ADDRESS,
7762 hdmiw_hdmiedid))
7763 return;
7764
Wu Fengguange0dac652011-09-05 14:25:34 +08007765 i = I915_READ(aud_cntrl_st2);
7766 i &= ~eldv;
7767 I915_WRITE(aud_cntrl_st2, i);
7768
7769 if (!eld[0])
7770 return;
7771
Wu Fengguange0dac652011-09-05 14:25:34 +08007772 i = I915_READ(aud_cntl_st);
Wu Fengguang1202b4c62011-12-09 20:42:18 +08007773 i &= ~IBX_ELD_ADDRESS;
Wu Fengguange0dac652011-09-05 14:25:34 +08007774 I915_WRITE(aud_cntl_st, i);
7775
7776 len = min_t(uint8_t, eld[2], 21); /* 84 bytes of hw ELD buffer */
7777 DRM_DEBUG_DRIVER("ELD size %d\n", len);
7778 for (i = 0; i < len; i++)
7779 I915_WRITE(hdmiw_hdmiedid, *((uint32_t *)eld + i));
7780
7781 i = I915_READ(aud_cntrl_st2);
7782 i |= eldv;
7783 I915_WRITE(aud_cntrl_st2, i);
7784}
7785
7786void intel_write_eld(struct drm_encoder *encoder,
7787 struct drm_display_mode *mode)
7788{
7789 struct drm_crtc *crtc = encoder->crtc;
7790 struct drm_connector *connector;
7791 struct drm_device *dev = encoder->dev;
7792 struct drm_i915_private *dev_priv = dev->dev_private;
7793
7794 connector = drm_select_eld(encoder, mode);
7795 if (!connector)
7796 return;
7797
7798 DRM_DEBUG_DRIVER("ELD on [CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
7799 connector->base.id,
7800 drm_get_connector_name(connector),
7801 connector->encoder->base.id,
7802 drm_get_encoder_name(connector->encoder));
7803
7804 connector->eld[6] = drm_av_sync_delay(connector, mode) / 2;
7805
7806 if (dev_priv->display.write_eld)
Jani Nikula34427052013-10-16 12:34:47 +03007807 dev_priv->display.write_eld(connector, crtc, mode);
Wu Fengguange0dac652011-09-05 14:25:34 +08007808}
7809
Chris Wilson560b85b2010-08-07 11:01:38 +01007810static void i845_update_cursor(struct drm_crtc *crtc, u32 base)
7811{
7812 struct drm_device *dev = crtc->dev;
7813 struct drm_i915_private *dev_priv = dev->dev_private;
7814 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
7815 bool visible = base != 0;
7816 u32 cntl;
7817
7818 if (intel_crtc->cursor_visible == visible)
7819 return;
7820
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08007821 cntl = I915_READ(_CURACNTR);
Chris Wilson560b85b2010-08-07 11:01:38 +01007822 if (visible) {
7823 /* On these chipsets we can only modify the base whilst
7824 * the cursor is disabled.
7825 */
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08007826 I915_WRITE(_CURABASE, base);
Chris Wilson560b85b2010-08-07 11:01:38 +01007827
7828 cntl &= ~(CURSOR_FORMAT_MASK);
7829 /* XXX width must be 64, stride 256 => 0x00 << 28 */
7830 cntl |= CURSOR_ENABLE |
7831 CURSOR_GAMMA_ENABLE |
7832 CURSOR_FORMAT_ARGB;
7833 } else
7834 cntl &= ~(CURSOR_ENABLE | CURSOR_GAMMA_ENABLE);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08007835 I915_WRITE(_CURACNTR, cntl);
Chris Wilson560b85b2010-08-07 11:01:38 +01007836
7837 intel_crtc->cursor_visible = visible;
7838}
7839
7840static void i9xx_update_cursor(struct drm_crtc *crtc, u32 base)
7841{
7842 struct drm_device *dev = crtc->dev;
7843 struct drm_i915_private *dev_priv = dev->dev_private;
7844 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
7845 int pipe = intel_crtc->pipe;
7846 bool visible = base != 0;
7847
7848 if (intel_crtc->cursor_visible != visible) {
Sagar Kamble4726e0b2014-03-10 17:06:23 +05307849 int16_t width = intel_crtc->cursor_width;
Jesse Barnes548f2452011-02-17 10:40:53 -08007850 uint32_t cntl = I915_READ(CURCNTR(pipe));
Chris Wilson560b85b2010-08-07 11:01:38 +01007851 if (base) {
7852 cntl &= ~(CURSOR_MODE | MCURSOR_PIPE_SELECT);
Sagar Kamble4726e0b2014-03-10 17:06:23 +05307853 cntl |= MCURSOR_GAMMA_ENABLE;
7854
7855 switch (width) {
7856 case 64:
7857 cntl |= CURSOR_MODE_64_ARGB_AX;
7858 break;
7859 case 128:
7860 cntl |= CURSOR_MODE_128_ARGB_AX;
7861 break;
7862 case 256:
7863 cntl |= CURSOR_MODE_256_ARGB_AX;
7864 break;
7865 default:
7866 WARN_ON(1);
7867 return;
7868 }
Chris Wilson560b85b2010-08-07 11:01:38 +01007869 cntl |= pipe << 28; /* Connect to correct pipe */
7870 } else {
7871 cntl &= ~(CURSOR_MODE | MCURSOR_GAMMA_ENABLE);
7872 cntl |= CURSOR_MODE_DISABLE;
7873 }
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08007874 I915_WRITE(CURCNTR(pipe), cntl);
Chris Wilson560b85b2010-08-07 11:01:38 +01007875
7876 intel_crtc->cursor_visible = visible;
7877 }
7878 /* and commit changes on next vblank */
Daniel Vetterb2ea8ef2013-11-04 08:13:45 +01007879 POSTING_READ(CURCNTR(pipe));
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08007880 I915_WRITE(CURBASE(pipe), base);
Daniel Vetterb2ea8ef2013-11-04 08:13:45 +01007881 POSTING_READ(CURBASE(pipe));
Chris Wilson560b85b2010-08-07 11:01:38 +01007882}
7883
Jesse Barnes65a21cd2011-10-12 11:10:21 -07007884static void ivb_update_cursor(struct drm_crtc *crtc, u32 base)
7885{
7886 struct drm_device *dev = crtc->dev;
7887 struct drm_i915_private *dev_priv = dev->dev_private;
7888 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
7889 int pipe = intel_crtc->pipe;
7890 bool visible = base != 0;
7891
7892 if (intel_crtc->cursor_visible != visible) {
Sagar Kamble4726e0b2014-03-10 17:06:23 +05307893 int16_t width = intel_crtc->cursor_width;
Jesse Barnes65a21cd2011-10-12 11:10:21 -07007894 uint32_t cntl = I915_READ(CURCNTR_IVB(pipe));
7895 if (base) {
7896 cntl &= ~CURSOR_MODE;
Sagar Kamble4726e0b2014-03-10 17:06:23 +05307897 cntl |= MCURSOR_GAMMA_ENABLE;
7898 switch (width) {
7899 case 64:
7900 cntl |= CURSOR_MODE_64_ARGB_AX;
7901 break;
7902 case 128:
7903 cntl |= CURSOR_MODE_128_ARGB_AX;
7904 break;
7905 case 256:
7906 cntl |= CURSOR_MODE_256_ARGB_AX;
7907 break;
7908 default:
7909 WARN_ON(1);
7910 return;
7911 }
Jesse Barnes65a21cd2011-10-12 11:10:21 -07007912 } else {
7913 cntl &= ~(CURSOR_MODE | MCURSOR_GAMMA_ENABLE);
7914 cntl |= CURSOR_MODE_DISABLE;
7915 }
Ville Syrjälä6bbfa1c2013-11-02 21:07:39 -07007916 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02007917 cntl |= CURSOR_PIPE_CSC_ENABLE;
Paulo Zanoni1f5d76d2013-08-23 19:51:28 -03007918 cntl &= ~CURSOR_TRICKLE_FEED_DISABLE;
7919 }
Jesse Barnes65a21cd2011-10-12 11:10:21 -07007920 I915_WRITE(CURCNTR_IVB(pipe), cntl);
7921
7922 intel_crtc->cursor_visible = visible;
7923 }
7924 /* and commit changes on next vblank */
Daniel Vetterb2ea8ef2013-11-04 08:13:45 +01007925 POSTING_READ(CURCNTR_IVB(pipe));
Jesse Barnes65a21cd2011-10-12 11:10:21 -07007926 I915_WRITE(CURBASE_IVB(pipe), base);
Daniel Vetterb2ea8ef2013-11-04 08:13:45 +01007927 POSTING_READ(CURBASE_IVB(pipe));
Jesse Barnes65a21cd2011-10-12 11:10:21 -07007928}
7929
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01007930/* If no-part of the cursor is visible on the framebuffer, then the GPU may hang... */
Chris Wilson6b383a72010-09-13 13:54:26 +01007931static void intel_crtc_update_cursor(struct drm_crtc *crtc,
7932 bool on)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01007933{
7934 struct drm_device *dev = crtc->dev;
7935 struct drm_i915_private *dev_priv = dev->dev_private;
7936 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
7937 int pipe = intel_crtc->pipe;
7938 int x = intel_crtc->cursor_x;
7939 int y = intel_crtc->cursor_y;
Ville Syrjäläd6e4db12013-09-04 18:25:31 +03007940 u32 base = 0, pos = 0;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01007941 bool visible;
7942
Ville Syrjäläd6e4db12013-09-04 18:25:31 +03007943 if (on)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01007944 base = intel_crtc->cursor_addr;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01007945
Ville Syrjäläd6e4db12013-09-04 18:25:31 +03007946 if (x >= intel_crtc->config.pipe_src_w)
7947 base = 0;
7948
7949 if (y >= intel_crtc->config.pipe_src_h)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01007950 base = 0;
7951
7952 if (x < 0) {
Ville Syrjäläefc90642013-09-04 18:25:30 +03007953 if (x + intel_crtc->cursor_width <= 0)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01007954 base = 0;
7955
7956 pos |= CURSOR_POS_SIGN << CURSOR_X_SHIFT;
7957 x = -x;
7958 }
7959 pos |= x << CURSOR_X_SHIFT;
7960
7961 if (y < 0) {
Ville Syrjäläefc90642013-09-04 18:25:30 +03007962 if (y + intel_crtc->cursor_height <= 0)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01007963 base = 0;
7964
7965 pos |= CURSOR_POS_SIGN << CURSOR_Y_SHIFT;
7966 y = -y;
7967 }
7968 pos |= y << CURSOR_Y_SHIFT;
7969
7970 visible = base != 0;
Chris Wilson560b85b2010-08-07 11:01:38 +01007971 if (!visible && !intel_crtc->cursor_visible)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01007972 return;
7973
Paulo Zanonib3dc6852013-11-02 21:07:33 -07007974 if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Jesse Barnes65a21cd2011-10-12 11:10:21 -07007975 I915_WRITE(CURPOS_IVB(pipe), pos);
7976 ivb_update_cursor(crtc, base);
7977 } else {
7978 I915_WRITE(CURPOS(pipe), pos);
7979 if (IS_845G(dev) || IS_I865G(dev))
7980 i845_update_cursor(crtc, base);
7981 else
7982 i9xx_update_cursor(crtc, base);
7983 }
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01007984}
7985
Jesse Barnes79e53942008-11-07 14:24:08 -08007986static int intel_crtc_cursor_set(struct drm_crtc *crtc,
Chris Wilson05394f32010-11-08 19:18:58 +00007987 struct drm_file *file,
Jesse Barnes79e53942008-11-07 14:24:08 -08007988 uint32_t handle,
7989 uint32_t width, uint32_t height)
7990{
7991 struct drm_device *dev = crtc->dev;
7992 struct drm_i915_private *dev_priv = dev->dev_private;
7993 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Chris Wilson05394f32010-11-08 19:18:58 +00007994 struct drm_i915_gem_object *obj;
Chris Wilson64f962e2014-03-26 12:38:15 +00007995 unsigned old_width;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01007996 uint32_t addr;
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05007997 int ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08007998
Jesse Barnes79e53942008-11-07 14:24:08 -08007999 /* if we want to turn off the cursor ignore width and height */
8000 if (!handle) {
Zhao Yakui28c97732009-10-09 11:39:41 +08008001 DRM_DEBUG_KMS("cursor off\n");
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05008002 addr = 0;
Chris Wilson05394f32010-11-08 19:18:58 +00008003 obj = NULL;
Pierre Willenbrock50044172009-02-23 10:12:15 +10008004 mutex_lock(&dev->struct_mutex);
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05008005 goto finish;
Jesse Barnes79e53942008-11-07 14:24:08 -08008006 }
8007
Sagar Kamble4726e0b2014-03-10 17:06:23 +05308008 /* Check for which cursor types we support */
8009 if (!((width == 64 && height == 64) ||
8010 (width == 128 && height == 128 && !IS_GEN2(dev)) ||
8011 (width == 256 && height == 256 && !IS_GEN2(dev)))) {
8012 DRM_DEBUG("Cursor dimension not supported\n");
Jesse Barnes79e53942008-11-07 14:24:08 -08008013 return -EINVAL;
8014 }
8015
Chris Wilson05394f32010-11-08 19:18:58 +00008016 obj = to_intel_bo(drm_gem_object_lookup(dev, file, handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00008017 if (&obj->base == NULL)
Jesse Barnes79e53942008-11-07 14:24:08 -08008018 return -ENOENT;
8019
Chris Wilson05394f32010-11-08 19:18:58 +00008020 if (obj->base.size < width * height * 4) {
Daniel Vetter3b25b312014-02-14 14:06:06 +01008021 DRM_DEBUG_KMS("buffer is to small\n");
Dave Airlie34b8686e2009-01-15 14:03:07 +10008022 ret = -ENOMEM;
8023 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -08008024 }
8025
Dave Airlie71acb5e2008-12-30 20:31:46 +10008026 /* we only need to pin inside GTT if cursor is non-phy */
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05008027 mutex_lock(&dev->struct_mutex);
Damien Lespiau3d13ef22014-02-07 19:12:47 +00008028 if (!INTEL_INFO(dev)->cursor_needs_physical) {
Chris Wilson693db182013-03-05 14:52:39 +00008029 unsigned alignment;
8030
Chris Wilsond9e86c02010-11-10 16:40:20 +00008031 if (obj->tiling_mode) {
Daniel Vetter3b25b312014-02-14 14:06:06 +01008032 DRM_DEBUG_KMS("cursor cannot be tiled\n");
Chris Wilsond9e86c02010-11-10 16:40:20 +00008033 ret = -EINVAL;
8034 goto fail_locked;
8035 }
8036
Chris Wilson693db182013-03-05 14:52:39 +00008037 /* Note that the w/a also requires 2 PTE of padding following
8038 * the bo. We currently fill all unused PTE with the shadow
8039 * page and so we should always have valid PTE following the
8040 * cursor preventing the VT-d warning.
8041 */
8042 alignment = 0;
8043 if (need_vtd_wa(dev))
8044 alignment = 64*1024;
8045
8046 ret = i915_gem_object_pin_to_display_plane(obj, alignment, NULL);
Chris Wilsone7b526b2010-06-02 08:30:48 +01008047 if (ret) {
Daniel Vetter3b25b312014-02-14 14:06:06 +01008048 DRM_DEBUG_KMS("failed to move cursor bo into the GTT\n");
Chris Wilson2da3b9b2011-04-14 09:41:17 +01008049 goto fail_locked;
Chris Wilsone7b526b2010-06-02 08:30:48 +01008050 }
8051
Chris Wilsond9e86c02010-11-10 16:40:20 +00008052 ret = i915_gem_object_put_fence(obj);
8053 if (ret) {
Daniel Vetter3b25b312014-02-14 14:06:06 +01008054 DRM_DEBUG_KMS("failed to release fence for cursor");
Chris Wilsond9e86c02010-11-10 16:40:20 +00008055 goto fail_unpin;
8056 }
8057
Ben Widawskyf343c5f2013-07-05 14:41:04 -07008058 addr = i915_gem_obj_ggtt_offset(obj);
Dave Airlie71acb5e2008-12-30 20:31:46 +10008059 } else {
Chris Wilson6eeefaf2010-08-07 11:01:39 +01008060 int align = IS_I830(dev) ? 16 * 1024 : 256;
Chris Wilson05394f32010-11-08 19:18:58 +00008061 ret = i915_gem_attach_phys_object(dev, obj,
Chris Wilson6eeefaf2010-08-07 11:01:39 +01008062 (intel_crtc->pipe == 0) ? I915_GEM_PHYS_CURSOR_0 : I915_GEM_PHYS_CURSOR_1,
8063 align);
Dave Airlie71acb5e2008-12-30 20:31:46 +10008064 if (ret) {
Daniel Vetter3b25b312014-02-14 14:06:06 +01008065 DRM_DEBUG_KMS("failed to attach phys object\n");
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05008066 goto fail_locked;
Dave Airlie71acb5e2008-12-30 20:31:46 +10008067 }
Chris Wilson05394f32010-11-08 19:18:58 +00008068 addr = obj->phys_obj->handle->busaddr;
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05008069 }
8070
Chris Wilsona6c45cf2010-09-17 00:32:17 +01008071 if (IS_GEN2(dev))
Jesse Barnes14b60392009-05-20 16:47:08 -04008072 I915_WRITE(CURSIZE, (height << 12) | width);
8073
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05008074 finish:
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05008075 if (intel_crtc->cursor_bo) {
Damien Lespiau3d13ef22014-02-07 19:12:47 +00008076 if (INTEL_INFO(dev)->cursor_needs_physical) {
Chris Wilson05394f32010-11-08 19:18:58 +00008077 if (intel_crtc->cursor_bo != obj)
Dave Airlie71acb5e2008-12-30 20:31:46 +10008078 i915_gem_detach_phys_object(dev, intel_crtc->cursor_bo);
8079 } else
Chris Wilsoncc98b412013-08-09 12:25:09 +01008080 i915_gem_object_unpin_from_display_plane(intel_crtc->cursor_bo);
Chris Wilson05394f32010-11-08 19:18:58 +00008081 drm_gem_object_unreference(&intel_crtc->cursor_bo->base);
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05008082 }
Jesse Barnes80824002009-09-10 15:28:06 -07008083
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05008084 mutex_unlock(&dev->struct_mutex);
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05008085
Chris Wilson64f962e2014-03-26 12:38:15 +00008086 old_width = intel_crtc->cursor_width;
8087
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05008088 intel_crtc->cursor_addr = addr;
Chris Wilson05394f32010-11-08 19:18:58 +00008089 intel_crtc->cursor_bo = obj;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01008090 intel_crtc->cursor_width = width;
8091 intel_crtc->cursor_height = height;
8092
Chris Wilson64f962e2014-03-26 12:38:15 +00008093 if (intel_crtc->active) {
8094 if (old_width != width)
8095 intel_update_watermarks(crtc);
Ville Syrjäläf2f5f772013-09-17 18:33:44 +03008096 intel_crtc_update_cursor(crtc, intel_crtc->cursor_bo != NULL);
Chris Wilson64f962e2014-03-26 12:38:15 +00008097 }
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05008098
Jesse Barnes79e53942008-11-07 14:24:08 -08008099 return 0;
Chris Wilsone7b526b2010-06-02 08:30:48 +01008100fail_unpin:
Chris Wilsoncc98b412013-08-09 12:25:09 +01008101 i915_gem_object_unpin_from_display_plane(obj);
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05008102fail_locked:
Dave Airlie34b8686e2009-01-15 14:03:07 +10008103 mutex_unlock(&dev->struct_mutex);
Luca Barbieribc9025b2010-02-09 05:49:12 +00008104fail:
Chris Wilson05394f32010-11-08 19:18:58 +00008105 drm_gem_object_unreference_unlocked(&obj->base);
Dave Airlie34b8686e2009-01-15 14:03:07 +10008106 return ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08008107}
8108
8109static int intel_crtc_cursor_move(struct drm_crtc *crtc, int x, int y)
8110{
Jesse Barnes79e53942008-11-07 14:24:08 -08008111 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08008112
Ville Syrjälä92e76c82013-10-21 19:01:58 +03008113 intel_crtc->cursor_x = clamp_t(int, x, SHRT_MIN, SHRT_MAX);
8114 intel_crtc->cursor_y = clamp_t(int, y, SHRT_MIN, SHRT_MAX);
Jesse Barnes652c3932009-08-17 13:31:43 -07008115
Ville Syrjäläf2f5f772013-09-17 18:33:44 +03008116 if (intel_crtc->active)
8117 intel_crtc_update_cursor(crtc, intel_crtc->cursor_bo != NULL);
Jesse Barnes79e53942008-11-07 14:24:08 -08008118
8119 return 0;
8120}
8121
Jesse Barnes79e53942008-11-07 14:24:08 -08008122static void intel_crtc_gamma_set(struct drm_crtc *crtc, u16 *red, u16 *green,
James Simmons72034252010-08-03 01:33:19 +01008123 u16 *blue, uint32_t start, uint32_t size)
Jesse Barnes79e53942008-11-07 14:24:08 -08008124{
James Simmons72034252010-08-03 01:33:19 +01008125 int end = (start + size > 256) ? 256 : start + size, i;
Jesse Barnes79e53942008-11-07 14:24:08 -08008126 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08008127
James Simmons72034252010-08-03 01:33:19 +01008128 for (i = start; i < end; i++) {
Jesse Barnes79e53942008-11-07 14:24:08 -08008129 intel_crtc->lut_r[i] = red[i] >> 8;
8130 intel_crtc->lut_g[i] = green[i] >> 8;
8131 intel_crtc->lut_b[i] = blue[i] >> 8;
8132 }
8133
8134 intel_crtc_load_lut(crtc);
8135}
8136
Jesse Barnes79e53942008-11-07 14:24:08 -08008137/* VESA 640x480x72Hz mode to set on the pipe */
8138static struct drm_display_mode load_detect_mode = {
8139 DRM_MODE("640x480", DRM_MODE_TYPE_DEFAULT, 31500, 640, 664,
8140 704, 832, 0, 480, 489, 491, 520, 0, DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
8141};
8142
Daniel Vettera8bb6812014-02-10 18:00:39 +01008143struct drm_framebuffer *
8144__intel_framebuffer_create(struct drm_device *dev,
8145 struct drm_mode_fb_cmd2 *mode_cmd,
8146 struct drm_i915_gem_object *obj)
Chris Wilsond2dff872011-04-19 08:36:26 +01008147{
8148 struct intel_framebuffer *intel_fb;
8149 int ret;
8150
8151 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
8152 if (!intel_fb) {
8153 drm_gem_object_unreference_unlocked(&obj->base);
8154 return ERR_PTR(-ENOMEM);
8155 }
8156
8157 ret = intel_framebuffer_init(dev, intel_fb, mode_cmd, obj);
Daniel Vetterdd4916c2013-10-09 21:23:51 +02008158 if (ret)
8159 goto err;
Chris Wilsond2dff872011-04-19 08:36:26 +01008160
8161 return &intel_fb->base;
Daniel Vetterdd4916c2013-10-09 21:23:51 +02008162err:
8163 drm_gem_object_unreference_unlocked(&obj->base);
8164 kfree(intel_fb);
8165
8166 return ERR_PTR(ret);
Chris Wilsond2dff872011-04-19 08:36:26 +01008167}
8168
Daniel Vetterb5ea6422014-03-02 21:18:00 +01008169static struct drm_framebuffer *
Daniel Vettera8bb6812014-02-10 18:00:39 +01008170intel_framebuffer_create(struct drm_device *dev,
8171 struct drm_mode_fb_cmd2 *mode_cmd,
8172 struct drm_i915_gem_object *obj)
8173{
8174 struct drm_framebuffer *fb;
8175 int ret;
8176
8177 ret = i915_mutex_lock_interruptible(dev);
8178 if (ret)
8179 return ERR_PTR(ret);
8180 fb = __intel_framebuffer_create(dev, mode_cmd, obj);
8181 mutex_unlock(&dev->struct_mutex);
8182
8183 return fb;
8184}
8185
Chris Wilsond2dff872011-04-19 08:36:26 +01008186static u32
8187intel_framebuffer_pitch_for_width(int width, int bpp)
8188{
8189 u32 pitch = DIV_ROUND_UP(width * bpp, 8);
8190 return ALIGN(pitch, 64);
8191}
8192
8193static u32
8194intel_framebuffer_size_for_mode(struct drm_display_mode *mode, int bpp)
8195{
8196 u32 pitch = intel_framebuffer_pitch_for_width(mode->hdisplay, bpp);
8197 return ALIGN(pitch * mode->vdisplay, PAGE_SIZE);
8198}
8199
8200static struct drm_framebuffer *
8201intel_framebuffer_create_for_mode(struct drm_device *dev,
8202 struct drm_display_mode *mode,
8203 int depth, int bpp)
8204{
8205 struct drm_i915_gem_object *obj;
Chris Wilson0fed39b2012-11-05 22:25:07 +00008206 struct drm_mode_fb_cmd2 mode_cmd = { 0 };
Chris Wilsond2dff872011-04-19 08:36:26 +01008207
8208 obj = i915_gem_alloc_object(dev,
8209 intel_framebuffer_size_for_mode(mode, bpp));
8210 if (obj == NULL)
8211 return ERR_PTR(-ENOMEM);
8212
8213 mode_cmd.width = mode->hdisplay;
8214 mode_cmd.height = mode->vdisplay;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08008215 mode_cmd.pitches[0] = intel_framebuffer_pitch_for_width(mode_cmd.width,
8216 bpp);
Dave Airlie5ca0c342012-02-23 15:33:40 +00008217 mode_cmd.pixel_format = drm_mode_legacy_fb_format(bpp, depth);
Chris Wilsond2dff872011-04-19 08:36:26 +01008218
8219 return intel_framebuffer_create(dev, &mode_cmd, obj);
8220}
8221
8222static struct drm_framebuffer *
8223mode_fits_in_fbdev(struct drm_device *dev,
8224 struct drm_display_mode *mode)
8225{
Daniel Vetter4520f532013-10-09 09:18:51 +02008226#ifdef CONFIG_DRM_I915_FBDEV
Chris Wilsond2dff872011-04-19 08:36:26 +01008227 struct drm_i915_private *dev_priv = dev->dev_private;
8228 struct drm_i915_gem_object *obj;
8229 struct drm_framebuffer *fb;
8230
Daniel Vetter4c0e5522014-02-14 16:35:54 +01008231 if (!dev_priv->fbdev)
8232 return NULL;
8233
8234 if (!dev_priv->fbdev->fb)
Chris Wilsond2dff872011-04-19 08:36:26 +01008235 return NULL;
8236
Jesse Barnes8bcd4552014-02-07 12:10:38 -08008237 obj = dev_priv->fbdev->fb->obj;
Daniel Vetter4c0e5522014-02-14 16:35:54 +01008238 BUG_ON(!obj);
Chris Wilsond2dff872011-04-19 08:36:26 +01008239
Jesse Barnes8bcd4552014-02-07 12:10:38 -08008240 fb = &dev_priv->fbdev->fb->base;
Ville Syrjälä01f2c772011-12-20 00:06:49 +02008241 if (fb->pitches[0] < intel_framebuffer_pitch_for_width(mode->hdisplay,
8242 fb->bits_per_pixel))
Chris Wilsond2dff872011-04-19 08:36:26 +01008243 return NULL;
8244
Ville Syrjälä01f2c772011-12-20 00:06:49 +02008245 if (obj->base.size < mode->vdisplay * fb->pitches[0])
Chris Wilsond2dff872011-04-19 08:36:26 +01008246 return NULL;
8247
8248 return fb;
Daniel Vetter4520f532013-10-09 09:18:51 +02008249#else
8250 return NULL;
8251#endif
Chris Wilsond2dff872011-04-19 08:36:26 +01008252}
8253
Daniel Vetterd2434ab2012-08-12 21:20:10 +02008254bool intel_get_load_detect_pipe(struct drm_connector *connector,
Chris Wilson71731882011-04-19 23:10:58 +01008255 struct drm_display_mode *mode,
Chris Wilson8261b192011-04-19 23:18:09 +01008256 struct intel_load_detect_pipe *old)
Jesse Barnes79e53942008-11-07 14:24:08 -08008257{
8258 struct intel_crtc *intel_crtc;
Daniel Vetterd2434ab2012-08-12 21:20:10 +02008259 struct intel_encoder *intel_encoder =
8260 intel_attached_encoder(connector);
Jesse Barnes79e53942008-11-07 14:24:08 -08008261 struct drm_crtc *possible_crtc;
Chris Wilson4ef69c72010-09-09 15:14:28 +01008262 struct drm_encoder *encoder = &intel_encoder->base;
Jesse Barnes79e53942008-11-07 14:24:08 -08008263 struct drm_crtc *crtc = NULL;
8264 struct drm_device *dev = encoder->dev;
Daniel Vetter94352cf2012-07-05 22:51:56 +02008265 struct drm_framebuffer *fb;
Jesse Barnes79e53942008-11-07 14:24:08 -08008266 int i = -1;
8267
Chris Wilsond2dff872011-04-19 08:36:26 +01008268 DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
8269 connector->base.id, drm_get_connector_name(connector),
8270 encoder->base.id, drm_get_encoder_name(encoder));
8271
Jesse Barnes79e53942008-11-07 14:24:08 -08008272 /*
8273 * Algorithm gets a little messy:
Chris Wilson7a5e4802011-04-19 23:21:12 +01008274 *
Jesse Barnes79e53942008-11-07 14:24:08 -08008275 * - if the connector already has an assigned crtc, use it (but make
8276 * sure it's on first)
Chris Wilson7a5e4802011-04-19 23:21:12 +01008277 *
Jesse Barnes79e53942008-11-07 14:24:08 -08008278 * - try to find the first unused crtc that can drive this connector,
8279 * and use that if we find one
Jesse Barnes79e53942008-11-07 14:24:08 -08008280 */
8281
8282 /* See if we already have a CRTC for this connector */
8283 if (encoder->crtc) {
8284 crtc = encoder->crtc;
Chris Wilson8261b192011-04-19 23:18:09 +01008285
Daniel Vetter7b240562012-12-12 00:35:33 +01008286 mutex_lock(&crtc->mutex);
8287
Daniel Vetter24218aa2012-08-12 19:27:11 +02008288 old->dpms_mode = connector->dpms;
Chris Wilson8261b192011-04-19 23:18:09 +01008289 old->load_detect_temp = false;
8290
8291 /* Make sure the crtc and connector are running */
Daniel Vetter24218aa2012-08-12 19:27:11 +02008292 if (connector->dpms != DRM_MODE_DPMS_ON)
8293 connector->funcs->dpms(connector, DRM_MODE_DPMS_ON);
Chris Wilson8261b192011-04-19 23:18:09 +01008294
Chris Wilson71731882011-04-19 23:10:58 +01008295 return true;
Jesse Barnes79e53942008-11-07 14:24:08 -08008296 }
8297
8298 /* Find an unused one (if possible) */
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01008299 for_each_crtc(dev, possible_crtc) {
Jesse Barnes79e53942008-11-07 14:24:08 -08008300 i++;
8301 if (!(encoder->possible_crtcs & (1 << i)))
8302 continue;
8303 if (!possible_crtc->enabled) {
8304 crtc = possible_crtc;
8305 break;
8306 }
Jesse Barnes79e53942008-11-07 14:24:08 -08008307 }
8308
8309 /*
8310 * If we didn't find an unused CRTC, don't use any.
8311 */
8312 if (!crtc) {
Chris Wilson71731882011-04-19 23:10:58 +01008313 DRM_DEBUG_KMS("no pipe available for load-detect\n");
8314 return false;
Jesse Barnes79e53942008-11-07 14:24:08 -08008315 }
8316
Daniel Vetter7b240562012-12-12 00:35:33 +01008317 mutex_lock(&crtc->mutex);
Daniel Vetterfc303102012-07-09 10:40:58 +02008318 intel_encoder->new_crtc = to_intel_crtc(crtc);
8319 to_intel_connector(connector)->new_encoder = intel_encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08008320
8321 intel_crtc = to_intel_crtc(crtc);
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008322 intel_crtc->new_enabled = true;
8323 intel_crtc->new_config = &intel_crtc->config;
Daniel Vetter24218aa2012-08-12 19:27:11 +02008324 old->dpms_mode = connector->dpms;
Chris Wilson8261b192011-04-19 23:18:09 +01008325 old->load_detect_temp = true;
Chris Wilsond2dff872011-04-19 08:36:26 +01008326 old->release_fb = NULL;
Jesse Barnes79e53942008-11-07 14:24:08 -08008327
Chris Wilson64927112011-04-20 07:25:26 +01008328 if (!mode)
8329 mode = &load_detect_mode;
Jesse Barnes79e53942008-11-07 14:24:08 -08008330
Chris Wilsond2dff872011-04-19 08:36:26 +01008331 /* We need a framebuffer large enough to accommodate all accesses
8332 * that the plane may generate whilst we perform load detection.
8333 * We can not rely on the fbcon either being present (we get called
8334 * during its initialisation to detect all boot displays, or it may
8335 * not even exist) or that it is large enough to satisfy the
8336 * requested mode.
8337 */
Daniel Vetter94352cf2012-07-05 22:51:56 +02008338 fb = mode_fits_in_fbdev(dev, mode);
8339 if (fb == NULL) {
Chris Wilsond2dff872011-04-19 08:36:26 +01008340 DRM_DEBUG_KMS("creating tmp fb for load-detection\n");
Daniel Vetter94352cf2012-07-05 22:51:56 +02008341 fb = intel_framebuffer_create_for_mode(dev, mode, 24, 32);
8342 old->release_fb = fb;
Chris Wilsond2dff872011-04-19 08:36:26 +01008343 } else
8344 DRM_DEBUG_KMS("reusing fbdev for load-detection framebuffer\n");
Daniel Vetter94352cf2012-07-05 22:51:56 +02008345 if (IS_ERR(fb)) {
Chris Wilsond2dff872011-04-19 08:36:26 +01008346 DRM_DEBUG_KMS("failed to allocate framebuffer for load-detection\n");
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008347 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -08008348 }
Chris Wilsond2dff872011-04-19 08:36:26 +01008349
Chris Wilsonc0c36b942012-12-19 16:08:43 +00008350 if (intel_set_mode(crtc, mode, 0, 0, fb)) {
Chris Wilson64927112011-04-20 07:25:26 +01008351 DRM_DEBUG_KMS("failed to set mode on load-detect pipe\n");
Chris Wilsond2dff872011-04-19 08:36:26 +01008352 if (old->release_fb)
8353 old->release_fb->funcs->destroy(old->release_fb);
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008354 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -08008355 }
Chris Wilson71731882011-04-19 23:10:58 +01008356
Jesse Barnes79e53942008-11-07 14:24:08 -08008357 /* let the connector get through one full cycle before testing */
Jesse Barnes9d0498a2010-08-18 13:20:54 -07008358 intel_wait_for_vblank(dev, intel_crtc->pipe);
Chris Wilson71731882011-04-19 23:10:58 +01008359 return true;
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008360
8361 fail:
8362 intel_crtc->new_enabled = crtc->enabled;
8363 if (intel_crtc->new_enabled)
8364 intel_crtc->new_config = &intel_crtc->config;
8365 else
8366 intel_crtc->new_config = NULL;
8367 mutex_unlock(&crtc->mutex);
8368 return false;
Jesse Barnes79e53942008-11-07 14:24:08 -08008369}
8370
Daniel Vetterd2434ab2012-08-12 21:20:10 +02008371void intel_release_load_detect_pipe(struct drm_connector *connector,
Chris Wilson8261b192011-04-19 23:18:09 +01008372 struct intel_load_detect_pipe *old)
Jesse Barnes79e53942008-11-07 14:24:08 -08008373{
Daniel Vetterd2434ab2012-08-12 21:20:10 +02008374 struct intel_encoder *intel_encoder =
8375 intel_attached_encoder(connector);
Chris Wilson4ef69c72010-09-09 15:14:28 +01008376 struct drm_encoder *encoder = &intel_encoder->base;
Daniel Vetter7b240562012-12-12 00:35:33 +01008377 struct drm_crtc *crtc = encoder->crtc;
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008378 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08008379
Chris Wilsond2dff872011-04-19 08:36:26 +01008380 DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
8381 connector->base.id, drm_get_connector_name(connector),
8382 encoder->base.id, drm_get_encoder_name(encoder));
8383
Chris Wilson8261b192011-04-19 23:18:09 +01008384 if (old->load_detect_temp) {
Daniel Vetterfc303102012-07-09 10:40:58 +02008385 to_intel_connector(connector)->new_encoder = NULL;
8386 intel_encoder->new_crtc = NULL;
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008387 intel_crtc->new_enabled = false;
8388 intel_crtc->new_config = NULL;
Daniel Vetterfc303102012-07-09 10:40:58 +02008389 intel_set_mode(crtc, NULL, 0, 0, NULL);
Chris Wilsond2dff872011-04-19 08:36:26 +01008390
Daniel Vetter36206362012-12-10 20:42:17 +01008391 if (old->release_fb) {
8392 drm_framebuffer_unregister_private(old->release_fb);
8393 drm_framebuffer_unreference(old->release_fb);
8394 }
Chris Wilsond2dff872011-04-19 08:36:26 +01008395
Daniel Vetter67c96402013-01-23 16:25:09 +00008396 mutex_unlock(&crtc->mutex);
Chris Wilson0622a532011-04-21 09:32:11 +01008397 return;
Jesse Barnes79e53942008-11-07 14:24:08 -08008398 }
8399
Eric Anholtc751ce42010-03-25 11:48:48 -07008400 /* Switch crtc and encoder back off if necessary */
Daniel Vetter24218aa2012-08-12 19:27:11 +02008401 if (old->dpms_mode != DRM_MODE_DPMS_ON)
8402 connector->funcs->dpms(connector, old->dpms_mode);
Daniel Vetter7b240562012-12-12 00:35:33 +01008403
8404 mutex_unlock(&crtc->mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -08008405}
8406
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +03008407static int i9xx_pll_refclk(struct drm_device *dev,
8408 const struct intel_crtc_config *pipe_config)
8409{
8410 struct drm_i915_private *dev_priv = dev->dev_private;
8411 u32 dpll = pipe_config->dpll_hw_state.dpll;
8412
8413 if ((dpll & PLL_REF_INPUT_MASK) == PLLB_REF_INPUT_SPREADSPECTRUMIN)
Ville Syrjäläe91e9412013-12-09 18:54:16 +02008414 return dev_priv->vbt.lvds_ssc_freq;
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +03008415 else if (HAS_PCH_SPLIT(dev))
8416 return 120000;
8417 else if (!IS_GEN2(dev))
8418 return 96000;
8419 else
8420 return 48000;
8421}
8422
Jesse Barnes79e53942008-11-07 14:24:08 -08008423/* Returns the clock of the currently programmed mode of the given pipe. */
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008424static void i9xx_crtc_clock_get(struct intel_crtc *crtc,
8425 struct intel_crtc_config *pipe_config)
Jesse Barnes79e53942008-11-07 14:24:08 -08008426{
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008427 struct drm_device *dev = crtc->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08008428 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008429 int pipe = pipe_config->cpu_transcoder;
Ville Syrjälä293623f2013-09-13 16:18:46 +03008430 u32 dpll = pipe_config->dpll_hw_state.dpll;
Jesse Barnes79e53942008-11-07 14:24:08 -08008431 u32 fp;
8432 intel_clock_t clock;
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +03008433 int refclk = i9xx_pll_refclk(dev, pipe_config);
Jesse Barnes79e53942008-11-07 14:24:08 -08008434
8435 if ((dpll & DISPLAY_RATE_SELECT_FPA1) == 0)
Ville Syrjälä293623f2013-09-13 16:18:46 +03008436 fp = pipe_config->dpll_hw_state.fp0;
Jesse Barnes79e53942008-11-07 14:24:08 -08008437 else
Ville Syrjälä293623f2013-09-13 16:18:46 +03008438 fp = pipe_config->dpll_hw_state.fp1;
Jesse Barnes79e53942008-11-07 14:24:08 -08008439
8440 clock.m1 = (fp & FP_M1_DIV_MASK) >> FP_M1_DIV_SHIFT;
Adam Jacksonf2b115e2009-12-03 17:14:42 -05008441 if (IS_PINEVIEW(dev)) {
8442 clock.n = ffs((fp & FP_N_PINEVIEW_DIV_MASK) >> FP_N_DIV_SHIFT) - 1;
8443 clock.m2 = (fp & FP_M2_PINEVIEW_DIV_MASK) >> FP_M2_DIV_SHIFT;
Shaohua Li21778322009-02-23 15:19:16 +08008444 } else {
8445 clock.n = (fp & FP_N_DIV_MASK) >> FP_N_DIV_SHIFT;
8446 clock.m2 = (fp & FP_M2_DIV_MASK) >> FP_M2_DIV_SHIFT;
8447 }
8448
Chris Wilsona6c45cf2010-09-17 00:32:17 +01008449 if (!IS_GEN2(dev)) {
Adam Jacksonf2b115e2009-12-03 17:14:42 -05008450 if (IS_PINEVIEW(dev))
8451 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_PINEVIEW) >>
8452 DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW);
Shaohua Li21778322009-02-23 15:19:16 +08008453 else
8454 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK) >>
Jesse Barnes79e53942008-11-07 14:24:08 -08008455 DPLL_FPA01_P1_POST_DIV_SHIFT);
8456
8457 switch (dpll & DPLL_MODE_MASK) {
8458 case DPLLB_MODE_DAC_SERIAL:
8459 clock.p2 = dpll & DPLL_DAC_SERIAL_P2_CLOCK_DIV_5 ?
8460 5 : 10;
8461 break;
8462 case DPLLB_MODE_LVDS:
8463 clock.p2 = dpll & DPLLB_LVDS_P2_CLOCK_DIV_7 ?
8464 7 : 14;
8465 break;
8466 default:
Zhao Yakui28c97732009-10-09 11:39:41 +08008467 DRM_DEBUG_KMS("Unknown DPLL mode %08x in programmed "
Jesse Barnes79e53942008-11-07 14:24:08 -08008468 "mode\n", (int)(dpll & DPLL_MODE_MASK));
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008469 return;
Jesse Barnes79e53942008-11-07 14:24:08 -08008470 }
8471
Daniel Vetterac58c3f2013-06-01 17:16:17 +02008472 if (IS_PINEVIEW(dev))
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +03008473 pineview_clock(refclk, &clock);
Daniel Vetterac58c3f2013-06-01 17:16:17 +02008474 else
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +03008475 i9xx_clock(refclk, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08008476 } else {
Ville Syrjälä0fb58222014-01-10 14:06:46 +02008477 u32 lvds = IS_I830(dev) ? 0 : I915_READ(LVDS);
Ville Syrjäläb1c560d2013-12-09 18:54:13 +02008478 bool is_lvds = (pipe == 1) && (lvds & LVDS_PORT_EN);
Jesse Barnes79e53942008-11-07 14:24:08 -08008479
8480 if (is_lvds) {
8481 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830_LVDS) >>
8482 DPLL_FPA01_P1_POST_DIV_SHIFT);
Ville Syrjäläb1c560d2013-12-09 18:54:13 +02008483
8484 if (lvds & LVDS_CLKB_POWER_UP)
8485 clock.p2 = 7;
8486 else
8487 clock.p2 = 14;
Jesse Barnes79e53942008-11-07 14:24:08 -08008488 } else {
8489 if (dpll & PLL_P1_DIVIDE_BY_TWO)
8490 clock.p1 = 2;
8491 else {
8492 clock.p1 = ((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830) >>
8493 DPLL_FPA01_P1_POST_DIV_SHIFT) + 2;
8494 }
8495 if (dpll & PLL_P2_DIVIDE_BY_4)
8496 clock.p2 = 4;
8497 else
8498 clock.p2 = 2;
Jesse Barnes79e53942008-11-07 14:24:08 -08008499 }
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +03008500
8501 i9xx_clock(refclk, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08008502 }
8503
Ville Syrjälä18442d02013-09-13 16:00:08 +03008504 /*
8505 * This value includes pixel_multiplier. We will use
Damien Lespiau241bfc32013-09-25 16:45:37 +01008506 * port_clock to compute adjusted_mode.crtc_clock in the
Ville Syrjälä18442d02013-09-13 16:00:08 +03008507 * encoder's get_config() function.
8508 */
8509 pipe_config->port_clock = clock.dot;
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008510}
8511
Ville Syrjälä6878da02013-09-13 15:59:11 +03008512int intel_dotclock_calculate(int link_freq,
8513 const struct intel_link_m_n *m_n)
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008514{
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008515 /*
8516 * The calculation for the data clock is:
Ville Syrjälä1041a022013-09-06 23:28:58 +03008517 * pixel_clock = ((m/n)*(link_clock * nr_lanes))/bpp
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008518 * But we want to avoid losing precison if possible, so:
Ville Syrjälä1041a022013-09-06 23:28:58 +03008519 * pixel_clock = ((m * link_clock * nr_lanes)/(n*bpp))
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008520 *
8521 * and the link clock is simpler:
Ville Syrjälä1041a022013-09-06 23:28:58 +03008522 * link_clock = (m * link_clock) / n
Jesse Barnes79e53942008-11-07 14:24:08 -08008523 */
8524
Ville Syrjälä6878da02013-09-13 15:59:11 +03008525 if (!m_n->link_n)
8526 return 0;
8527
8528 return div_u64((u64)m_n->link_m * link_freq, m_n->link_n);
8529}
8530
Ville Syrjälä18442d02013-09-13 16:00:08 +03008531static void ironlake_pch_clock_get(struct intel_crtc *crtc,
8532 struct intel_crtc_config *pipe_config)
Ville Syrjälä6878da02013-09-13 15:59:11 +03008533{
8534 struct drm_device *dev = crtc->base.dev;
Ville Syrjälä18442d02013-09-13 16:00:08 +03008535
8536 /* read out port_clock from the DPLL */
8537 i9xx_crtc_clock_get(crtc, pipe_config);
Ville Syrjälä6878da02013-09-13 15:59:11 +03008538
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008539 /*
Ville Syrjälä18442d02013-09-13 16:00:08 +03008540 * This value does not include pixel_multiplier.
Damien Lespiau241bfc32013-09-25 16:45:37 +01008541 * We will check that port_clock and adjusted_mode.crtc_clock
Ville Syrjälä18442d02013-09-13 16:00:08 +03008542 * agree once we know their relationship in the encoder's
8543 * get_config() function.
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008544 */
Damien Lespiau241bfc32013-09-25 16:45:37 +01008545 pipe_config->adjusted_mode.crtc_clock =
Ville Syrjälä18442d02013-09-13 16:00:08 +03008546 intel_dotclock_calculate(intel_fdi_link_freq(dev) * 10000,
8547 &pipe_config->fdi_m_n);
Jesse Barnes79e53942008-11-07 14:24:08 -08008548}
8549
8550/** Returns the currently programmed mode of the given pipe. */
8551struct drm_display_mode *intel_crtc_mode_get(struct drm_device *dev,
8552 struct drm_crtc *crtc)
8553{
Jesse Barnes548f2452011-02-17 10:40:53 -08008554 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -08008555 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter3b117c82013-04-17 20:15:07 +02008556 enum transcoder cpu_transcoder = intel_crtc->config.cpu_transcoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08008557 struct drm_display_mode *mode;
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008558 struct intel_crtc_config pipe_config;
Paulo Zanonife2b8f92012-10-23 18:30:02 -02008559 int htot = I915_READ(HTOTAL(cpu_transcoder));
8560 int hsync = I915_READ(HSYNC(cpu_transcoder));
8561 int vtot = I915_READ(VTOTAL(cpu_transcoder));
8562 int vsync = I915_READ(VSYNC(cpu_transcoder));
Ville Syrjälä293623f2013-09-13 16:18:46 +03008563 enum pipe pipe = intel_crtc->pipe;
Jesse Barnes79e53942008-11-07 14:24:08 -08008564
8565 mode = kzalloc(sizeof(*mode), GFP_KERNEL);
8566 if (!mode)
8567 return NULL;
8568
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008569 /*
8570 * Construct a pipe_config sufficient for getting the clock info
8571 * back out of crtc_clock_get.
8572 *
8573 * Note, if LVDS ever uses a non-1 pixel multiplier, we'll need
8574 * to use a real value here instead.
8575 */
Ville Syrjälä293623f2013-09-13 16:18:46 +03008576 pipe_config.cpu_transcoder = (enum transcoder) pipe;
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008577 pipe_config.pixel_multiplier = 1;
Ville Syrjälä293623f2013-09-13 16:18:46 +03008578 pipe_config.dpll_hw_state.dpll = I915_READ(DPLL(pipe));
8579 pipe_config.dpll_hw_state.fp0 = I915_READ(FP0(pipe));
8580 pipe_config.dpll_hw_state.fp1 = I915_READ(FP1(pipe));
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008581 i9xx_crtc_clock_get(intel_crtc, &pipe_config);
8582
Ville Syrjälä773ae032013-09-23 17:48:20 +03008583 mode->clock = pipe_config.port_clock / pipe_config.pixel_multiplier;
Jesse Barnes79e53942008-11-07 14:24:08 -08008584 mode->hdisplay = (htot & 0xffff) + 1;
8585 mode->htotal = ((htot & 0xffff0000) >> 16) + 1;
8586 mode->hsync_start = (hsync & 0xffff) + 1;
8587 mode->hsync_end = ((hsync & 0xffff0000) >> 16) + 1;
8588 mode->vdisplay = (vtot & 0xffff) + 1;
8589 mode->vtotal = ((vtot & 0xffff0000) >> 16) + 1;
8590 mode->vsync_start = (vsync & 0xffff) + 1;
8591 mode->vsync_end = ((vsync & 0xffff0000) >> 16) + 1;
8592
8593 drm_mode_set_name(mode);
Jesse Barnes79e53942008-11-07 14:24:08 -08008594
8595 return mode;
8596}
8597
Daniel Vetter3dec0092010-08-20 21:40:52 +02008598static void intel_increase_pllclock(struct drm_crtc *crtc)
Jesse Barnes652c3932009-08-17 13:31:43 -07008599{
8600 struct drm_device *dev = crtc->dev;
Jani Nikulafbee40d2014-03-31 14:27:18 +03008601 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes652c3932009-08-17 13:31:43 -07008602 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
8603 int pipe = intel_crtc->pipe;
Jesse Barnesdbdc6472010-12-30 09:36:39 -08008604 int dpll_reg = DPLL(pipe);
8605 int dpll;
Jesse Barnes652c3932009-08-17 13:31:43 -07008606
Eric Anholtbad720f2009-10-22 16:11:14 -07008607 if (HAS_PCH_SPLIT(dev))
Jesse Barnes652c3932009-08-17 13:31:43 -07008608 return;
8609
8610 if (!dev_priv->lvds_downclock_avail)
8611 return;
8612
Jesse Barnesdbdc6472010-12-30 09:36:39 -08008613 dpll = I915_READ(dpll_reg);
Jesse Barnes652c3932009-08-17 13:31:43 -07008614 if (!HAS_PIPE_CXSR(dev) && (dpll & DISPLAY_RATE_SELECT_FPA1)) {
Zhao Yakui44d98a62009-10-09 11:39:40 +08008615 DRM_DEBUG_DRIVER("upclocking LVDS\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07008616
Sean Paul8ac5a6d2012-02-13 13:14:51 -05008617 assert_panel_unlocked(dev_priv, pipe);
Jesse Barnes652c3932009-08-17 13:31:43 -07008618
8619 dpll &= ~DISPLAY_RATE_SELECT_FPA1;
8620 I915_WRITE(dpll_reg, dpll);
Jesse Barnes9d0498a2010-08-18 13:20:54 -07008621 intel_wait_for_vblank(dev, pipe);
Jesse Barnesdbdc6472010-12-30 09:36:39 -08008622
Jesse Barnes652c3932009-08-17 13:31:43 -07008623 dpll = I915_READ(dpll_reg);
8624 if (dpll & DISPLAY_RATE_SELECT_FPA1)
Zhao Yakui44d98a62009-10-09 11:39:40 +08008625 DRM_DEBUG_DRIVER("failed to upclock LVDS!\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07008626 }
Jesse Barnes652c3932009-08-17 13:31:43 -07008627}
8628
8629static void intel_decrease_pllclock(struct drm_crtc *crtc)
8630{
8631 struct drm_device *dev = crtc->dev;
Jani Nikulafbee40d2014-03-31 14:27:18 +03008632 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes652c3932009-08-17 13:31:43 -07008633 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes652c3932009-08-17 13:31:43 -07008634
Eric Anholtbad720f2009-10-22 16:11:14 -07008635 if (HAS_PCH_SPLIT(dev))
Jesse Barnes652c3932009-08-17 13:31:43 -07008636 return;
8637
8638 if (!dev_priv->lvds_downclock_avail)
8639 return;
8640
8641 /*
8642 * Since this is called by a timer, we should never get here in
8643 * the manual case.
8644 */
8645 if (!HAS_PIPE_CXSR(dev) && intel_crtc->lowfreq_avail) {
Chris Wilson074b5e12012-05-02 12:07:06 +01008646 int pipe = intel_crtc->pipe;
8647 int dpll_reg = DPLL(pipe);
Daniel Vetterdc257cf2012-05-07 11:30:46 +02008648 int dpll;
Chris Wilson074b5e12012-05-02 12:07:06 +01008649
Zhao Yakui44d98a62009-10-09 11:39:40 +08008650 DRM_DEBUG_DRIVER("downclocking LVDS\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07008651
Sean Paul8ac5a6d2012-02-13 13:14:51 -05008652 assert_panel_unlocked(dev_priv, pipe);
Jesse Barnes652c3932009-08-17 13:31:43 -07008653
Chris Wilson074b5e12012-05-02 12:07:06 +01008654 dpll = I915_READ(dpll_reg);
Jesse Barnes652c3932009-08-17 13:31:43 -07008655 dpll |= DISPLAY_RATE_SELECT_FPA1;
8656 I915_WRITE(dpll_reg, dpll);
Jesse Barnes9d0498a2010-08-18 13:20:54 -07008657 intel_wait_for_vblank(dev, pipe);
Jesse Barnes652c3932009-08-17 13:31:43 -07008658 dpll = I915_READ(dpll_reg);
8659 if (!(dpll & DISPLAY_RATE_SELECT_FPA1))
Zhao Yakui44d98a62009-10-09 11:39:40 +08008660 DRM_DEBUG_DRIVER("failed to downclock LVDS!\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07008661 }
8662
8663}
8664
Chris Wilsonf047e392012-07-21 12:31:41 +01008665void intel_mark_busy(struct drm_device *dev)
Jesse Barnes652c3932009-08-17 13:31:43 -07008666{
Paulo Zanonic67a4702013-08-19 13:18:09 -03008667 struct drm_i915_private *dev_priv = dev->dev_private;
8668
Chris Wilsonf62a0072014-02-21 17:55:39 +00008669 if (dev_priv->mm.busy)
8670 return;
8671
Paulo Zanoni43694d62014-03-07 20:08:08 -03008672 intel_runtime_pm_get(dev_priv);
Paulo Zanonic67a4702013-08-19 13:18:09 -03008673 i915_update_gfx_val(dev_priv);
Chris Wilsonf62a0072014-02-21 17:55:39 +00008674 dev_priv->mm.busy = true;
Chris Wilsonf047e392012-07-21 12:31:41 +01008675}
8676
8677void intel_mark_idle(struct drm_device *dev)
8678{
Paulo Zanonic67a4702013-08-19 13:18:09 -03008679 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson725a5b52013-01-08 11:02:57 +00008680 struct drm_crtc *crtc;
8681
Chris Wilsonf62a0072014-02-21 17:55:39 +00008682 if (!dev_priv->mm.busy)
8683 return;
8684
8685 dev_priv->mm.busy = false;
8686
Jani Nikulad330a952014-01-21 11:24:25 +02008687 if (!i915.powersave)
Paulo Zanonibb4cdd52014-02-21 13:52:19 -03008688 goto out;
Chris Wilson725a5b52013-01-08 11:02:57 +00008689
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01008690 for_each_crtc(dev, crtc) {
Matt Roperf4510a22014-04-01 15:22:40 -07008691 if (!crtc->primary->fb)
Chris Wilson725a5b52013-01-08 11:02:57 +00008692 continue;
8693
8694 intel_decrease_pllclock(crtc);
8695 }
Chris Wilsonb29c19b2013-09-25 17:34:56 +01008696
Damien Lespiau3d13ef22014-02-07 19:12:47 +00008697 if (INTEL_INFO(dev)->gen >= 6)
Chris Wilsonb29c19b2013-09-25 17:34:56 +01008698 gen6_rps_idle(dev->dev_private);
Paulo Zanonibb4cdd52014-02-21 13:52:19 -03008699
8700out:
Paulo Zanoni43694d62014-03-07 20:08:08 -03008701 intel_runtime_pm_put(dev_priv);
Chris Wilsonf047e392012-07-21 12:31:41 +01008702}
8703
Chris Wilsonc65355b2013-06-06 16:53:41 -03008704void intel_mark_fb_busy(struct drm_i915_gem_object *obj,
8705 struct intel_ring_buffer *ring)
Chris Wilsonf047e392012-07-21 12:31:41 +01008706{
8707 struct drm_device *dev = obj->base.dev;
Jesse Barnes652c3932009-08-17 13:31:43 -07008708 struct drm_crtc *crtc;
Jesse Barnes652c3932009-08-17 13:31:43 -07008709
Jani Nikulad330a952014-01-21 11:24:25 +02008710 if (!i915.powersave)
Jesse Barnes652c3932009-08-17 13:31:43 -07008711 return;
8712
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01008713 for_each_crtc(dev, crtc) {
Matt Roperf4510a22014-04-01 15:22:40 -07008714 if (!crtc->primary->fb)
Jesse Barnes652c3932009-08-17 13:31:43 -07008715 continue;
8716
Matt Roperf4510a22014-04-01 15:22:40 -07008717 if (to_intel_framebuffer(crtc->primary->fb)->obj != obj)
Chris Wilsonc65355b2013-06-06 16:53:41 -03008718 continue;
8719
8720 intel_increase_pllclock(crtc);
8721 if (ring && intel_fbc_enabled(dev))
8722 ring->fbc_dirty = true;
Jesse Barnes652c3932009-08-17 13:31:43 -07008723 }
Jesse Barnes652c3932009-08-17 13:31:43 -07008724}
8725
Jesse Barnes79e53942008-11-07 14:24:08 -08008726static void intel_crtc_destroy(struct drm_crtc *crtc)
8727{
8728 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter67e77c52010-08-20 22:26:30 +02008729 struct drm_device *dev = crtc->dev;
8730 struct intel_unpin_work *work;
8731 unsigned long flags;
8732
8733 spin_lock_irqsave(&dev->event_lock, flags);
8734 work = intel_crtc->unpin_work;
8735 intel_crtc->unpin_work = NULL;
8736 spin_unlock_irqrestore(&dev->event_lock, flags);
8737
8738 if (work) {
8739 cancel_work_sync(&work->work);
8740 kfree(work);
8741 }
Jesse Barnes79e53942008-11-07 14:24:08 -08008742
Mika Kuoppala40ccc722013-04-23 17:27:08 +03008743 intel_crtc_cursor_set(crtc, NULL, 0, 0, 0);
8744
Jesse Barnes79e53942008-11-07 14:24:08 -08008745 drm_crtc_cleanup(crtc);
Daniel Vetter67e77c52010-08-20 22:26:30 +02008746
Jesse Barnes79e53942008-11-07 14:24:08 -08008747 kfree(intel_crtc);
8748}
8749
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008750static void intel_unpin_work_fn(struct work_struct *__work)
8751{
8752 struct intel_unpin_work *work =
8753 container_of(__work, struct intel_unpin_work, work);
Chris Wilsonb4a98e52012-11-01 09:26:26 +00008754 struct drm_device *dev = work->crtc->dev;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008755
Chris Wilsonb4a98e52012-11-01 09:26:26 +00008756 mutex_lock(&dev->struct_mutex);
Chris Wilson1690e1e2011-12-14 13:57:08 +01008757 intel_unpin_fb_obj(work->old_fb_obj);
Chris Wilson05394f32010-11-08 19:18:58 +00008758 drm_gem_object_unreference(&work->pending_flip_obj->base);
8759 drm_gem_object_unreference(&work->old_fb_obj->base);
Chris Wilsond9e86c02010-11-10 16:40:20 +00008760
Chris Wilsonb4a98e52012-11-01 09:26:26 +00008761 intel_update_fbc(dev);
8762 mutex_unlock(&dev->struct_mutex);
8763
8764 BUG_ON(atomic_read(&to_intel_crtc(work->crtc)->unpin_work_count) == 0);
8765 atomic_dec(&to_intel_crtc(work->crtc)->unpin_work_count);
8766
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008767 kfree(work);
8768}
8769
Jesse Barnes1afe3e92010-03-26 10:35:20 -07008770static void do_intel_finish_page_flip(struct drm_device *dev,
Mario Kleiner49b14a52010-12-09 07:00:07 +01008771 struct drm_crtc *crtc)
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008772{
Jani Nikulafbee40d2014-03-31 14:27:18 +03008773 struct drm_i915_private *dev_priv = dev->dev_private;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008774 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
8775 struct intel_unpin_work *work;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008776 unsigned long flags;
8777
8778 /* Ignore early vblank irqs */
8779 if (intel_crtc == NULL)
8780 return;
8781
8782 spin_lock_irqsave(&dev->event_lock, flags);
8783 work = intel_crtc->unpin_work;
Chris Wilsone7d841c2012-12-03 11:36:30 +00008784
8785 /* Ensure we don't miss a work->pending update ... */
8786 smp_rmb();
8787
8788 if (work == NULL || atomic_read(&work->pending) < INTEL_FLIP_COMPLETE) {
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008789 spin_unlock_irqrestore(&dev->event_lock, flags);
8790 return;
8791 }
8792
Chris Wilsone7d841c2012-12-03 11:36:30 +00008793 /* and that the unpin work is consistent wrt ->pending. */
8794 smp_rmb();
8795
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008796 intel_crtc->unpin_work = NULL;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008797
Rob Clark45a066e2012-10-08 14:50:40 -05008798 if (work->event)
8799 drm_send_vblank_event(dev, intel_crtc->pipe, work->event);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008800
Mario Kleiner0af7e4d2010-12-08 04:07:19 +01008801 drm_vblank_put(dev, intel_crtc->pipe);
8802
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008803 spin_unlock_irqrestore(&dev->event_lock, flags);
8804
Daniel Vetter2c10d572012-12-20 21:24:07 +01008805 wake_up_all(&dev_priv->pending_flip_queue);
Chris Wilsonb4a98e52012-11-01 09:26:26 +00008806
8807 queue_work(dev_priv->wq, &work->work);
Jesse Barnese5510fa2010-07-01 16:48:37 -07008808
8809 trace_i915_flip_complete(intel_crtc->plane, work->pending_flip_obj);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008810}
8811
Jesse Barnes1afe3e92010-03-26 10:35:20 -07008812void intel_finish_page_flip(struct drm_device *dev, int pipe)
8813{
Jani Nikulafbee40d2014-03-31 14:27:18 +03008814 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes1afe3e92010-03-26 10:35:20 -07008815 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
8816
Mario Kleiner49b14a52010-12-09 07:00:07 +01008817 do_intel_finish_page_flip(dev, crtc);
Jesse Barnes1afe3e92010-03-26 10:35:20 -07008818}
8819
8820void intel_finish_page_flip_plane(struct drm_device *dev, int plane)
8821{
Jani Nikulafbee40d2014-03-31 14:27:18 +03008822 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes1afe3e92010-03-26 10:35:20 -07008823 struct drm_crtc *crtc = dev_priv->plane_to_crtc_mapping[plane];
8824
Mario Kleiner49b14a52010-12-09 07:00:07 +01008825 do_intel_finish_page_flip(dev, crtc);
Jesse Barnes1afe3e92010-03-26 10:35:20 -07008826}
8827
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008828void intel_prepare_page_flip(struct drm_device *dev, int plane)
8829{
Jani Nikulafbee40d2014-03-31 14:27:18 +03008830 struct drm_i915_private *dev_priv = dev->dev_private;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008831 struct intel_crtc *intel_crtc =
8832 to_intel_crtc(dev_priv->plane_to_crtc_mapping[plane]);
8833 unsigned long flags;
8834
Chris Wilsone7d841c2012-12-03 11:36:30 +00008835 /* NB: An MMIO update of the plane base pointer will also
8836 * generate a page-flip completion irq, i.e. every modeset
8837 * is also accompanied by a spurious intel_prepare_page_flip().
8838 */
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008839 spin_lock_irqsave(&dev->event_lock, flags);
Chris Wilsone7d841c2012-12-03 11:36:30 +00008840 if (intel_crtc->unpin_work)
8841 atomic_inc_not_zero(&intel_crtc->unpin_work->pending);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008842 spin_unlock_irqrestore(&dev->event_lock, flags);
8843}
8844
Robin Schroereba905b2014-05-18 02:24:50 +02008845static inline void intel_mark_page_flip_active(struct intel_crtc *intel_crtc)
Chris Wilsone7d841c2012-12-03 11:36:30 +00008846{
8847 /* Ensure that the work item is consistent when activating it ... */
8848 smp_wmb();
8849 atomic_set(&intel_crtc->unpin_work->pending, INTEL_FLIP_PENDING);
8850 /* and that it is marked active as soon as the irq could fire. */
8851 smp_wmb();
8852}
8853
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008854static int intel_gen2_queue_flip(struct drm_device *dev,
8855 struct drm_crtc *crtc,
8856 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07008857 struct drm_i915_gem_object *obj,
8858 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008859{
8860 struct drm_i915_private *dev_priv = dev->dev_private;
8861 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008862 u32 flip_mask;
Daniel Vetter6d90c952012-04-26 23:28:05 +02008863 struct intel_ring_buffer *ring = &dev_priv->ring[RCS];
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008864 int ret;
8865
Daniel Vetter6d90c952012-04-26 23:28:05 +02008866 ret = intel_pin_and_fence_fb_obj(dev, obj, ring);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008867 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01008868 goto err;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008869
Daniel Vetter6d90c952012-04-26 23:28:05 +02008870 ret = intel_ring_begin(ring, 6);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008871 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01008872 goto err_unpin;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008873
8874 /* Can't queue multiple flips, so wait for the previous
8875 * one to finish before executing the next.
8876 */
8877 if (intel_crtc->plane)
8878 flip_mask = MI_WAIT_FOR_PLANE_B_FLIP;
8879 else
8880 flip_mask = MI_WAIT_FOR_PLANE_A_FLIP;
Daniel Vetter6d90c952012-04-26 23:28:05 +02008881 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | flip_mask);
8882 intel_ring_emit(ring, MI_NOOP);
8883 intel_ring_emit(ring, MI_DISPLAY_FLIP |
8884 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
8885 intel_ring_emit(ring, fb->pitches[0]);
Ben Widawskyf343c5f2013-07-05 14:41:04 -07008886 intel_ring_emit(ring, i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset);
Daniel Vetter6d90c952012-04-26 23:28:05 +02008887 intel_ring_emit(ring, 0); /* aux display base address, unused */
Chris Wilsone7d841c2012-12-03 11:36:30 +00008888
8889 intel_mark_page_flip_active(intel_crtc);
Chris Wilson09246732013-08-10 22:16:32 +01008890 __intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01008891 return 0;
8892
8893err_unpin:
8894 intel_unpin_fb_obj(obj);
8895err:
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008896 return ret;
8897}
8898
8899static int intel_gen3_queue_flip(struct drm_device *dev,
8900 struct drm_crtc *crtc,
8901 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07008902 struct drm_i915_gem_object *obj,
8903 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008904{
8905 struct drm_i915_private *dev_priv = dev->dev_private;
8906 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008907 u32 flip_mask;
Daniel Vetter6d90c952012-04-26 23:28:05 +02008908 struct intel_ring_buffer *ring = &dev_priv->ring[RCS];
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008909 int ret;
8910
Daniel Vetter6d90c952012-04-26 23:28:05 +02008911 ret = intel_pin_and_fence_fb_obj(dev, obj, ring);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008912 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01008913 goto err;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008914
Daniel Vetter6d90c952012-04-26 23:28:05 +02008915 ret = intel_ring_begin(ring, 6);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008916 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01008917 goto err_unpin;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008918
8919 if (intel_crtc->plane)
8920 flip_mask = MI_WAIT_FOR_PLANE_B_FLIP;
8921 else
8922 flip_mask = MI_WAIT_FOR_PLANE_A_FLIP;
Daniel Vetter6d90c952012-04-26 23:28:05 +02008923 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | flip_mask);
8924 intel_ring_emit(ring, MI_NOOP);
8925 intel_ring_emit(ring, MI_DISPLAY_FLIP_I915 |
8926 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
8927 intel_ring_emit(ring, fb->pitches[0]);
Ben Widawskyf343c5f2013-07-05 14:41:04 -07008928 intel_ring_emit(ring, i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset);
Daniel Vetter6d90c952012-04-26 23:28:05 +02008929 intel_ring_emit(ring, MI_NOOP);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008930
Chris Wilsone7d841c2012-12-03 11:36:30 +00008931 intel_mark_page_flip_active(intel_crtc);
Chris Wilson09246732013-08-10 22:16:32 +01008932 __intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01008933 return 0;
8934
8935err_unpin:
8936 intel_unpin_fb_obj(obj);
8937err:
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008938 return ret;
8939}
8940
8941static int intel_gen4_queue_flip(struct drm_device *dev,
8942 struct drm_crtc *crtc,
8943 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07008944 struct drm_i915_gem_object *obj,
8945 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008946{
8947 struct drm_i915_private *dev_priv = dev->dev_private;
8948 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
8949 uint32_t pf, pipesrc;
Daniel Vetter6d90c952012-04-26 23:28:05 +02008950 struct intel_ring_buffer *ring = &dev_priv->ring[RCS];
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008951 int ret;
8952
Daniel Vetter6d90c952012-04-26 23:28:05 +02008953 ret = intel_pin_and_fence_fb_obj(dev, obj, ring);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008954 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01008955 goto err;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008956
Daniel Vetter6d90c952012-04-26 23:28:05 +02008957 ret = intel_ring_begin(ring, 4);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008958 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01008959 goto err_unpin;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008960
8961 /* i965+ uses the linear or tiled offsets from the
8962 * Display Registers (which do not change across a page-flip)
8963 * so we need only reprogram the base address.
8964 */
Daniel Vetter6d90c952012-04-26 23:28:05 +02008965 intel_ring_emit(ring, MI_DISPLAY_FLIP |
8966 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
8967 intel_ring_emit(ring, fb->pitches[0]);
Daniel Vetterc2c75132012-07-05 12:17:30 +02008968 intel_ring_emit(ring,
Ben Widawskyf343c5f2013-07-05 14:41:04 -07008969 (i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset) |
Daniel Vetterc2c75132012-07-05 12:17:30 +02008970 obj->tiling_mode);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008971
8972 /* XXX Enabling the panel-fitter across page-flip is so far
8973 * untested on non-native modes, so ignore it for now.
8974 * pf = I915_READ(pipe == 0 ? PFA_CTL_1 : PFB_CTL_1) & PF_ENABLE;
8975 */
8976 pf = 0;
8977 pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff;
Daniel Vetter6d90c952012-04-26 23:28:05 +02008978 intel_ring_emit(ring, pf | pipesrc);
Chris Wilsone7d841c2012-12-03 11:36:30 +00008979
8980 intel_mark_page_flip_active(intel_crtc);
Chris Wilson09246732013-08-10 22:16:32 +01008981 __intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01008982 return 0;
8983
8984err_unpin:
8985 intel_unpin_fb_obj(obj);
8986err:
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008987 return ret;
8988}
8989
8990static int intel_gen6_queue_flip(struct drm_device *dev,
8991 struct drm_crtc *crtc,
8992 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07008993 struct drm_i915_gem_object *obj,
8994 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008995{
8996 struct drm_i915_private *dev_priv = dev->dev_private;
8997 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter6d90c952012-04-26 23:28:05 +02008998 struct intel_ring_buffer *ring = &dev_priv->ring[RCS];
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008999 uint32_t pf, pipesrc;
9000 int ret;
9001
Daniel Vetter6d90c952012-04-26 23:28:05 +02009002 ret = intel_pin_and_fence_fb_obj(dev, obj, ring);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009003 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01009004 goto err;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009005
Daniel Vetter6d90c952012-04-26 23:28:05 +02009006 ret = intel_ring_begin(ring, 4);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009007 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01009008 goto err_unpin;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009009
Daniel Vetter6d90c952012-04-26 23:28:05 +02009010 intel_ring_emit(ring, MI_DISPLAY_FLIP |
9011 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
9012 intel_ring_emit(ring, fb->pitches[0] | obj->tiling_mode);
Ben Widawskyf343c5f2013-07-05 14:41:04 -07009013 intel_ring_emit(ring, i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009014
Chris Wilson99d9acd2012-04-17 20:37:00 +01009015 /* Contrary to the suggestions in the documentation,
9016 * "Enable Panel Fitter" does not seem to be required when page
9017 * flipping with a non-native mode, and worse causes a normal
9018 * modeset to fail.
9019 * pf = I915_READ(PF_CTL(intel_crtc->pipe)) & PF_ENABLE;
9020 */
9021 pf = 0;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009022 pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff;
Daniel Vetter6d90c952012-04-26 23:28:05 +02009023 intel_ring_emit(ring, pf | pipesrc);
Chris Wilsone7d841c2012-12-03 11:36:30 +00009024
9025 intel_mark_page_flip_active(intel_crtc);
Chris Wilson09246732013-08-10 22:16:32 +01009026 __intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01009027 return 0;
9028
9029err_unpin:
9030 intel_unpin_fb_obj(obj);
9031err:
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009032 return ret;
9033}
9034
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009035static int intel_gen7_queue_flip(struct drm_device *dev,
9036 struct drm_crtc *crtc,
9037 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07009038 struct drm_i915_gem_object *obj,
9039 uint32_t flags)
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009040{
9041 struct drm_i915_private *dev_priv = dev->dev_private;
9042 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Chris Wilsonffe74d72013-08-26 20:58:12 +01009043 struct intel_ring_buffer *ring;
Daniel Vettercb05d8d2012-05-23 14:02:00 +02009044 uint32_t plane_bit = 0;
Chris Wilsonffe74d72013-08-26 20:58:12 +01009045 int len, ret;
9046
9047 ring = obj->ring;
Chris Wilson1c5fd082013-09-04 10:54:30 +01009048 if (IS_VALLEYVIEW(dev) || ring == NULL || ring->id != RCS)
Chris Wilsonffe74d72013-08-26 20:58:12 +01009049 ring = &dev_priv->ring[BCS];
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009050
9051 ret = intel_pin_and_fence_fb_obj(dev, obj, ring);
9052 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01009053 goto err;
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009054
Robin Schroereba905b2014-05-18 02:24:50 +02009055 switch (intel_crtc->plane) {
Daniel Vettercb05d8d2012-05-23 14:02:00 +02009056 case PLANE_A:
9057 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_A;
9058 break;
9059 case PLANE_B:
9060 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_B;
9061 break;
9062 case PLANE_C:
9063 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_C;
9064 break;
9065 default:
9066 WARN_ONCE(1, "unknown plane in flip command\n");
9067 ret = -ENODEV;
Eugeni Dodonovab3951e2012-06-18 19:03:38 -03009068 goto err_unpin;
Daniel Vettercb05d8d2012-05-23 14:02:00 +02009069 }
9070
Chris Wilsonffe74d72013-08-26 20:58:12 +01009071 len = 4;
Damien Lespiauf4768282014-04-07 20:24:34 +01009072 if (ring->id == RCS) {
Chris Wilsonffe74d72013-08-26 20:58:12 +01009073 len += 6;
Damien Lespiauf4768282014-04-07 20:24:34 +01009074 /*
9075 * On Gen 8, SRM is now taking an extra dword to accommodate
9076 * 48bits addresses, and we need a NOOP for the batch size to
9077 * stay even.
9078 */
9079 if (IS_GEN8(dev))
9080 len += 2;
9081 }
Chris Wilsonffe74d72013-08-26 20:58:12 +01009082
Ville Syrjäläf66fab82014-02-11 19:52:06 +02009083 /*
9084 * BSpec MI_DISPLAY_FLIP for IVB:
9085 * "The full packet must be contained within the same cache line."
9086 *
9087 * Currently the LRI+SRM+MI_DISPLAY_FLIP all fit within the same
9088 * cacheline, if we ever start emitting more commands before
9089 * the MI_DISPLAY_FLIP we may need to first emit everything else,
9090 * then do the cacheline alignment, and finally emit the
9091 * MI_DISPLAY_FLIP.
9092 */
9093 ret = intel_ring_cacheline_align(ring);
9094 if (ret)
9095 goto err_unpin;
9096
Chris Wilsonffe74d72013-08-26 20:58:12 +01009097 ret = intel_ring_begin(ring, len);
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009098 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01009099 goto err_unpin;
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009100
Chris Wilsonffe74d72013-08-26 20:58:12 +01009101 /* Unmask the flip-done completion message. Note that the bspec says that
9102 * we should do this for both the BCS and RCS, and that we must not unmask
9103 * more than one flip event at any time (or ensure that one flip message
9104 * can be sent by waiting for flip-done prior to queueing new flips).
9105 * Experimentation says that BCS works despite DERRMR masking all
9106 * flip-done completion events and that unmasking all planes at once
9107 * for the RCS also doesn't appear to drop events. Setting the DERRMR
9108 * to zero does lead to lockups within MI_DISPLAY_FLIP.
9109 */
9110 if (ring->id == RCS) {
9111 intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(1));
9112 intel_ring_emit(ring, DERRMR);
9113 intel_ring_emit(ring, ~(DERRMR_PIPEA_PRI_FLIP_DONE |
9114 DERRMR_PIPEB_PRI_FLIP_DONE |
9115 DERRMR_PIPEC_PRI_FLIP_DONE));
Damien Lespiauf4768282014-04-07 20:24:34 +01009116 if (IS_GEN8(dev))
9117 intel_ring_emit(ring, MI_STORE_REGISTER_MEM_GEN8(1) |
9118 MI_SRM_LRM_GLOBAL_GTT);
9119 else
9120 intel_ring_emit(ring, MI_STORE_REGISTER_MEM(1) |
9121 MI_SRM_LRM_GLOBAL_GTT);
Chris Wilsonffe74d72013-08-26 20:58:12 +01009122 intel_ring_emit(ring, DERRMR);
9123 intel_ring_emit(ring, ring->scratch.gtt_offset + 256);
Damien Lespiauf4768282014-04-07 20:24:34 +01009124 if (IS_GEN8(dev)) {
9125 intel_ring_emit(ring, 0);
9126 intel_ring_emit(ring, MI_NOOP);
9127 }
Chris Wilsonffe74d72013-08-26 20:58:12 +01009128 }
9129
Daniel Vettercb05d8d2012-05-23 14:02:00 +02009130 intel_ring_emit(ring, MI_DISPLAY_FLIP_I915 | plane_bit);
Ville Syrjälä01f2c772011-12-20 00:06:49 +02009131 intel_ring_emit(ring, (fb->pitches[0] | obj->tiling_mode));
Ben Widawskyf343c5f2013-07-05 14:41:04 -07009132 intel_ring_emit(ring, i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset);
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009133 intel_ring_emit(ring, (MI_NOOP));
Chris Wilsone7d841c2012-12-03 11:36:30 +00009134
9135 intel_mark_page_flip_active(intel_crtc);
Chris Wilson09246732013-08-10 22:16:32 +01009136 __intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01009137 return 0;
9138
9139err_unpin:
9140 intel_unpin_fb_obj(obj);
9141err:
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009142 return ret;
9143}
9144
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009145static int intel_default_queue_flip(struct drm_device *dev,
9146 struct drm_crtc *crtc,
9147 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07009148 struct drm_i915_gem_object *obj,
9149 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009150{
9151 return -ENODEV;
9152}
9153
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009154static int intel_crtc_page_flip(struct drm_crtc *crtc,
9155 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07009156 struct drm_pending_vblank_event *event,
9157 uint32_t page_flip_flags)
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009158{
9159 struct drm_device *dev = crtc->dev;
9160 struct drm_i915_private *dev_priv = dev->dev_private;
Matt Roperf4510a22014-04-01 15:22:40 -07009161 struct drm_framebuffer *old_fb = crtc->primary->fb;
Ville Syrjälä4a35f832013-02-22 16:53:38 +02009162 struct drm_i915_gem_object *obj = to_intel_framebuffer(fb)->obj;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009163 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
9164 struct intel_unpin_work *work;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009165 unsigned long flags;
Chris Wilson52e68632010-08-08 10:15:59 +01009166 int ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009167
Ville Syrjäläe6a595d2012-05-24 21:08:59 +03009168 /* Can't change pixel format via MI display flips. */
Matt Roperf4510a22014-04-01 15:22:40 -07009169 if (fb->pixel_format != crtc->primary->fb->pixel_format)
Ville Syrjäläe6a595d2012-05-24 21:08:59 +03009170 return -EINVAL;
9171
9172 /*
9173 * TILEOFF/LINOFF registers can't be changed via MI display flips.
9174 * Note that pitch changes could also affect these register.
9175 */
9176 if (INTEL_INFO(dev)->gen > 3 &&
Matt Roperf4510a22014-04-01 15:22:40 -07009177 (fb->offsets[0] != crtc->primary->fb->offsets[0] ||
9178 fb->pitches[0] != crtc->primary->fb->pitches[0]))
Ville Syrjäläe6a595d2012-05-24 21:08:59 +03009179 return -EINVAL;
9180
Chris Wilsonf900db42014-02-20 09:26:13 +00009181 if (i915_terminally_wedged(&dev_priv->gpu_error))
9182 goto out_hang;
9183
Daniel Vetterb14c5672013-09-19 12:18:32 +02009184 work = kzalloc(sizeof(*work), GFP_KERNEL);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009185 if (work == NULL)
9186 return -ENOMEM;
9187
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009188 work->event = event;
Chris Wilsonb4a98e52012-11-01 09:26:26 +00009189 work->crtc = crtc;
Ville Syrjälä4a35f832013-02-22 16:53:38 +02009190 work->old_fb_obj = to_intel_framebuffer(old_fb)->obj;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009191 INIT_WORK(&work->work, intel_unpin_work_fn);
9192
Jesse Barnes7317c75e62011-08-29 09:45:28 -07009193 ret = drm_vblank_get(dev, intel_crtc->pipe);
9194 if (ret)
9195 goto free_work;
9196
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009197 /* We borrow the event spin lock for protecting unpin_work */
9198 spin_lock_irqsave(&dev->event_lock, flags);
9199 if (intel_crtc->unpin_work) {
9200 spin_unlock_irqrestore(&dev->event_lock, flags);
9201 kfree(work);
Jesse Barnes7317c75e62011-08-29 09:45:28 -07009202 drm_vblank_put(dev, intel_crtc->pipe);
Chris Wilson468f0b42010-05-27 13:18:13 +01009203
9204 DRM_DEBUG_DRIVER("flip queue: crtc already busy\n");
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009205 return -EBUSY;
9206 }
9207 intel_crtc->unpin_work = work;
9208 spin_unlock_irqrestore(&dev->event_lock, flags);
9209
Chris Wilsonb4a98e52012-11-01 09:26:26 +00009210 if (atomic_read(&intel_crtc->unpin_work_count) >= 2)
9211 flush_workqueue(dev_priv->wq);
9212
Chris Wilson79158102012-05-23 11:13:58 +01009213 ret = i915_mutex_lock_interruptible(dev);
9214 if (ret)
9215 goto cleanup;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009216
Jesse Barnes75dfca82010-02-10 15:09:44 -08009217 /* Reference the objects for the scheduled work. */
Chris Wilson05394f32010-11-08 19:18:58 +00009218 drm_gem_object_reference(&work->old_fb_obj->base);
9219 drm_gem_object_reference(&obj->base);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009220
Matt Roperf4510a22014-04-01 15:22:40 -07009221 crtc->primary->fb = fb;
Chris Wilson96b099f2010-06-07 14:03:04 +01009222
Chris Wilsone1f99ce2010-10-27 12:45:26 +01009223 work->pending_flip_obj = obj;
Chris Wilsone1f99ce2010-10-27 12:45:26 +01009224
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01009225 work->enable_stall_check = true;
9226
Chris Wilsonb4a98e52012-11-01 09:26:26 +00009227 atomic_inc(&intel_crtc->unpin_work_count);
Ville Syrjälä10d83732013-01-29 18:13:34 +02009228 intel_crtc->reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
Chris Wilsone1f99ce2010-10-27 12:45:26 +01009229
Keith Packarded8d1972013-07-22 18:49:58 -07009230 ret = dev_priv->display.queue_flip(dev, crtc, fb, obj, page_flip_flags);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009231 if (ret)
9232 goto cleanup_pending;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009233
Chris Wilson7782de32011-07-08 12:22:41 +01009234 intel_disable_fbc(dev);
Chris Wilsonc65355b2013-06-06 16:53:41 -03009235 intel_mark_fb_busy(obj, NULL);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009236 mutex_unlock(&dev->struct_mutex);
9237
Jesse Barnese5510fa2010-07-01 16:48:37 -07009238 trace_i915_flip_request(intel_crtc->plane, obj);
9239
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009240 return 0;
Chris Wilson96b099f2010-06-07 14:03:04 +01009241
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009242cleanup_pending:
Chris Wilsonb4a98e52012-11-01 09:26:26 +00009243 atomic_dec(&intel_crtc->unpin_work_count);
Matt Roperf4510a22014-04-01 15:22:40 -07009244 crtc->primary->fb = old_fb;
Chris Wilson05394f32010-11-08 19:18:58 +00009245 drm_gem_object_unreference(&work->old_fb_obj->base);
9246 drm_gem_object_unreference(&obj->base);
Chris Wilson96b099f2010-06-07 14:03:04 +01009247 mutex_unlock(&dev->struct_mutex);
9248
Chris Wilson79158102012-05-23 11:13:58 +01009249cleanup:
Chris Wilson96b099f2010-06-07 14:03:04 +01009250 spin_lock_irqsave(&dev->event_lock, flags);
9251 intel_crtc->unpin_work = NULL;
9252 spin_unlock_irqrestore(&dev->event_lock, flags);
9253
Jesse Barnes7317c75e62011-08-29 09:45:28 -07009254 drm_vblank_put(dev, intel_crtc->pipe);
9255free_work:
Chris Wilson96b099f2010-06-07 14:03:04 +01009256 kfree(work);
9257
Chris Wilsonf900db42014-02-20 09:26:13 +00009258 if (ret == -EIO) {
9259out_hang:
9260 intel_crtc_wait_for_pending_flips(crtc);
9261 ret = intel_pipe_set_base(crtc, crtc->x, crtc->y, fb);
9262 if (ret == 0 && event)
9263 drm_send_vblank_event(dev, intel_crtc->pipe, event);
9264 }
Chris Wilson96b099f2010-06-07 14:03:04 +01009265 return ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009266}
9267
Chris Wilsonf6e5b162011-04-12 18:06:51 +01009268static struct drm_crtc_helper_funcs intel_helper_funcs = {
Chris Wilsonf6e5b162011-04-12 18:06:51 +01009269 .mode_set_base_atomic = intel_pipe_set_base_atomic,
9270 .load_lut = intel_crtc_load_lut,
Chris Wilsonf6e5b162011-04-12 18:06:51 +01009271};
9272
Daniel Vetter9a935852012-07-05 22:34:27 +02009273/**
9274 * intel_modeset_update_staged_output_state
9275 *
9276 * Updates the staged output configuration state, e.g. after we've read out the
9277 * current hw state.
9278 */
9279static void intel_modeset_update_staged_output_state(struct drm_device *dev)
9280{
Ville Syrjälä76688512014-01-10 11:28:06 +02009281 struct intel_crtc *crtc;
Daniel Vetter9a935852012-07-05 22:34:27 +02009282 struct intel_encoder *encoder;
9283 struct intel_connector *connector;
9284
9285 list_for_each_entry(connector, &dev->mode_config.connector_list,
9286 base.head) {
9287 connector->new_encoder =
9288 to_intel_encoder(connector->base.encoder);
9289 }
9290
9291 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
9292 base.head) {
9293 encoder->new_crtc =
9294 to_intel_crtc(encoder->base.crtc);
9295 }
Ville Syrjälä76688512014-01-10 11:28:06 +02009296
Damien Lespiaud3fcc802014-05-13 23:32:22 +01009297 for_each_intel_crtc(dev, crtc) {
Ville Syrjälä76688512014-01-10 11:28:06 +02009298 crtc->new_enabled = crtc->base.enabled;
Ville Syrjälä7bd0a8e2014-01-14 14:31:38 +02009299
9300 if (crtc->new_enabled)
9301 crtc->new_config = &crtc->config;
9302 else
9303 crtc->new_config = NULL;
Ville Syrjälä76688512014-01-10 11:28:06 +02009304 }
Daniel Vetter9a935852012-07-05 22:34:27 +02009305}
9306
9307/**
9308 * intel_modeset_commit_output_state
9309 *
9310 * This function copies the stage display pipe configuration to the real one.
9311 */
9312static void intel_modeset_commit_output_state(struct drm_device *dev)
9313{
Ville Syrjälä76688512014-01-10 11:28:06 +02009314 struct intel_crtc *crtc;
Daniel Vetter9a935852012-07-05 22:34:27 +02009315 struct intel_encoder *encoder;
9316 struct intel_connector *connector;
9317
9318 list_for_each_entry(connector, &dev->mode_config.connector_list,
9319 base.head) {
9320 connector->base.encoder = &connector->new_encoder->base;
9321 }
9322
9323 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
9324 base.head) {
9325 encoder->base.crtc = &encoder->new_crtc->base;
9326 }
Ville Syrjälä76688512014-01-10 11:28:06 +02009327
Damien Lespiaud3fcc802014-05-13 23:32:22 +01009328 for_each_intel_crtc(dev, crtc) {
Ville Syrjälä76688512014-01-10 11:28:06 +02009329 crtc->base.enabled = crtc->new_enabled;
9330 }
Daniel Vetter9a935852012-07-05 22:34:27 +02009331}
9332
Daniel Vetter050f7ae2013-06-02 13:26:23 +02009333static void
Robin Schroereba905b2014-05-18 02:24:50 +02009334connected_sink_compute_bpp(struct intel_connector *connector,
Daniel Vetter050f7ae2013-06-02 13:26:23 +02009335 struct intel_crtc_config *pipe_config)
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01009336{
Daniel Vetter050f7ae2013-06-02 13:26:23 +02009337 int bpp = pipe_config->pipe_bpp;
9338
9339 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] checking for sink bpp constrains\n",
9340 connector->base.base.id,
9341 drm_get_connector_name(&connector->base));
9342
9343 /* Don't use an invalid EDID bpc value */
9344 if (connector->base.display_info.bpc &&
9345 connector->base.display_info.bpc * 3 < bpp) {
9346 DRM_DEBUG_KMS("clamping display bpp (was %d) to EDID reported max of %d\n",
9347 bpp, connector->base.display_info.bpc*3);
9348 pipe_config->pipe_bpp = connector->base.display_info.bpc*3;
9349 }
9350
9351 /* Clamp bpp to 8 on screens without EDID 1.4 */
9352 if (connector->base.display_info.bpc == 0 && bpp > 24) {
9353 DRM_DEBUG_KMS("clamping display bpp (was %d) to default limit of 24\n",
9354 bpp);
9355 pipe_config->pipe_bpp = 24;
9356 }
9357}
9358
9359static int
9360compute_baseline_pipe_bpp(struct intel_crtc *crtc,
9361 struct drm_framebuffer *fb,
9362 struct intel_crtc_config *pipe_config)
9363{
9364 struct drm_device *dev = crtc->base.dev;
9365 struct intel_connector *connector;
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01009366 int bpp;
9367
Daniel Vetterd42264b2013-03-28 16:38:08 +01009368 switch (fb->pixel_format) {
9369 case DRM_FORMAT_C8:
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01009370 bpp = 8*3; /* since we go through a colormap */
9371 break;
Daniel Vetterd42264b2013-03-28 16:38:08 +01009372 case DRM_FORMAT_XRGB1555:
9373 case DRM_FORMAT_ARGB1555:
9374 /* checked in intel_framebuffer_init already */
9375 if (WARN_ON(INTEL_INFO(dev)->gen > 3))
9376 return -EINVAL;
9377 case DRM_FORMAT_RGB565:
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01009378 bpp = 6*3; /* min is 18bpp */
9379 break;
Daniel Vetterd42264b2013-03-28 16:38:08 +01009380 case DRM_FORMAT_XBGR8888:
9381 case DRM_FORMAT_ABGR8888:
9382 /* checked in intel_framebuffer_init already */
9383 if (WARN_ON(INTEL_INFO(dev)->gen < 4))
9384 return -EINVAL;
9385 case DRM_FORMAT_XRGB8888:
9386 case DRM_FORMAT_ARGB8888:
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01009387 bpp = 8*3;
9388 break;
Daniel Vetterd42264b2013-03-28 16:38:08 +01009389 case DRM_FORMAT_XRGB2101010:
9390 case DRM_FORMAT_ARGB2101010:
9391 case DRM_FORMAT_XBGR2101010:
9392 case DRM_FORMAT_ABGR2101010:
9393 /* checked in intel_framebuffer_init already */
9394 if (WARN_ON(INTEL_INFO(dev)->gen < 4))
Daniel Vetterbaba1332013-03-27 00:45:00 +01009395 return -EINVAL;
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01009396 bpp = 10*3;
9397 break;
Daniel Vetterbaba1332013-03-27 00:45:00 +01009398 /* TODO: gen4+ supports 16 bpc floating point, too. */
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01009399 default:
9400 DRM_DEBUG_KMS("unsupported depth\n");
9401 return -EINVAL;
9402 }
9403
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01009404 pipe_config->pipe_bpp = bpp;
9405
9406 /* Clamp display bpp to EDID value */
9407 list_for_each_entry(connector, &dev->mode_config.connector_list,
Daniel Vetter050f7ae2013-06-02 13:26:23 +02009408 base.head) {
Daniel Vetter1b829e02013-06-02 13:26:24 +02009409 if (!connector->new_encoder ||
9410 connector->new_encoder->new_crtc != crtc)
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01009411 continue;
9412
Daniel Vetter050f7ae2013-06-02 13:26:23 +02009413 connected_sink_compute_bpp(connector, pipe_config);
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01009414 }
9415
9416 return bpp;
9417}
9418
Daniel Vetter644db712013-09-19 14:53:58 +02009419static void intel_dump_crtc_timings(const struct drm_display_mode *mode)
9420{
9421 DRM_DEBUG_KMS("crtc timings: %d %d %d %d %d %d %d %d %d, "
9422 "type: 0x%x flags: 0x%x\n",
Damien Lespiau13428302013-09-25 16:45:36 +01009423 mode->crtc_clock,
Daniel Vetter644db712013-09-19 14:53:58 +02009424 mode->crtc_hdisplay, mode->crtc_hsync_start,
9425 mode->crtc_hsync_end, mode->crtc_htotal,
9426 mode->crtc_vdisplay, mode->crtc_vsync_start,
9427 mode->crtc_vsync_end, mode->crtc_vtotal, mode->type, mode->flags);
9428}
9429
Daniel Vetterc0b03412013-05-28 12:05:54 +02009430static void intel_dump_pipe_config(struct intel_crtc *crtc,
9431 struct intel_crtc_config *pipe_config,
9432 const char *context)
9433{
9434 DRM_DEBUG_KMS("[CRTC:%d]%s config for pipe %c\n", crtc->base.base.id,
9435 context, pipe_name(crtc->pipe));
9436
9437 DRM_DEBUG_KMS("cpu_transcoder: %c\n", transcoder_name(pipe_config->cpu_transcoder));
9438 DRM_DEBUG_KMS("pipe bpp: %i, dithering: %i\n",
9439 pipe_config->pipe_bpp, pipe_config->dither);
9440 DRM_DEBUG_KMS("fdi/pch: %i, lanes: %i, gmch_m: %u, gmch_n: %u, link_m: %u, link_n: %u, tu: %u\n",
9441 pipe_config->has_pch_encoder,
9442 pipe_config->fdi_lanes,
9443 pipe_config->fdi_m_n.gmch_m, pipe_config->fdi_m_n.gmch_n,
9444 pipe_config->fdi_m_n.link_m, pipe_config->fdi_m_n.link_n,
9445 pipe_config->fdi_m_n.tu);
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03009446 DRM_DEBUG_KMS("dp: %i, gmch_m: %u, gmch_n: %u, link_m: %u, link_n: %u, tu: %u\n",
9447 pipe_config->has_dp_encoder,
9448 pipe_config->dp_m_n.gmch_m, pipe_config->dp_m_n.gmch_n,
9449 pipe_config->dp_m_n.link_m, pipe_config->dp_m_n.link_n,
9450 pipe_config->dp_m_n.tu);
Daniel Vetterc0b03412013-05-28 12:05:54 +02009451 DRM_DEBUG_KMS("requested mode:\n");
9452 drm_mode_debug_printmodeline(&pipe_config->requested_mode);
9453 DRM_DEBUG_KMS("adjusted mode:\n");
9454 drm_mode_debug_printmodeline(&pipe_config->adjusted_mode);
Daniel Vetter644db712013-09-19 14:53:58 +02009455 intel_dump_crtc_timings(&pipe_config->adjusted_mode);
Ville Syrjäläd71b8d42013-09-06 23:29:08 +03009456 DRM_DEBUG_KMS("port clock: %d\n", pipe_config->port_clock);
Ville Syrjälä37327ab2013-09-04 18:25:28 +03009457 DRM_DEBUG_KMS("pipe src size: %dx%d\n",
9458 pipe_config->pipe_src_w, pipe_config->pipe_src_h);
Daniel Vetterc0b03412013-05-28 12:05:54 +02009459 DRM_DEBUG_KMS("gmch pfit: control: 0x%08x, ratios: 0x%08x, lvds border: 0x%08x\n",
9460 pipe_config->gmch_pfit.control,
9461 pipe_config->gmch_pfit.pgm_ratios,
9462 pipe_config->gmch_pfit.lvds_border_bits);
Chris Wilsonfd4daa92013-08-27 17:04:17 +01009463 DRM_DEBUG_KMS("pch pfit: pos: 0x%08x, size: 0x%08x, %s\n",
Daniel Vetterc0b03412013-05-28 12:05:54 +02009464 pipe_config->pch_pfit.pos,
Chris Wilsonfd4daa92013-08-27 17:04:17 +01009465 pipe_config->pch_pfit.size,
9466 pipe_config->pch_pfit.enabled ? "enabled" : "disabled");
Paulo Zanoni42db64e2013-05-31 16:33:22 -03009467 DRM_DEBUG_KMS("ips: %i\n", pipe_config->ips_enabled);
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03009468 DRM_DEBUG_KMS("double wide: %i\n", pipe_config->double_wide);
Daniel Vetterc0b03412013-05-28 12:05:54 +02009469}
9470
Ville Syrjäläbc079e82014-03-03 16:15:28 +02009471static bool encoders_cloneable(const struct intel_encoder *a,
9472 const struct intel_encoder *b)
Daniel Vetteraccfc0c2013-05-30 15:04:25 +02009473{
Ville Syrjäläbc079e82014-03-03 16:15:28 +02009474 /* masks could be asymmetric, so check both ways */
9475 return a == b || (a->cloneable & (1 << b->type) &&
9476 b->cloneable & (1 << a->type));
9477}
Daniel Vetteraccfc0c2013-05-30 15:04:25 +02009478
Ville Syrjäläbc079e82014-03-03 16:15:28 +02009479static bool check_single_encoder_cloning(struct intel_crtc *crtc,
9480 struct intel_encoder *encoder)
9481{
9482 struct drm_device *dev = crtc->base.dev;
9483 struct intel_encoder *source_encoder;
9484
9485 list_for_each_entry(source_encoder,
9486 &dev->mode_config.encoder_list, base.head) {
9487 if (source_encoder->new_crtc != crtc)
Daniel Vetteraccfc0c2013-05-30 15:04:25 +02009488 continue;
9489
Ville Syrjäläbc079e82014-03-03 16:15:28 +02009490 if (!encoders_cloneable(encoder, source_encoder))
9491 return false;
Daniel Vetteraccfc0c2013-05-30 15:04:25 +02009492 }
9493
Ville Syrjäläbc079e82014-03-03 16:15:28 +02009494 return true;
9495}
9496
9497static bool check_encoder_cloning(struct intel_crtc *crtc)
9498{
9499 struct drm_device *dev = crtc->base.dev;
9500 struct intel_encoder *encoder;
9501
9502 list_for_each_entry(encoder,
9503 &dev->mode_config.encoder_list, base.head) {
9504 if (encoder->new_crtc != crtc)
9505 continue;
9506
9507 if (!check_single_encoder_cloning(crtc, encoder))
9508 return false;
9509 }
9510
9511 return true;
Daniel Vetteraccfc0c2013-05-30 15:04:25 +02009512}
9513
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01009514static struct intel_crtc_config *
9515intel_modeset_pipe_config(struct drm_crtc *crtc,
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01009516 struct drm_framebuffer *fb,
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01009517 struct drm_display_mode *mode)
Daniel Vetter7758a112012-07-08 19:40:39 +02009518{
9519 struct drm_device *dev = crtc->dev;
Daniel Vetter7758a112012-07-08 19:40:39 +02009520 struct intel_encoder *encoder;
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01009521 struct intel_crtc_config *pipe_config;
Daniel Vettere29c22c2013-02-21 00:00:16 +01009522 int plane_bpp, ret = -EINVAL;
9523 bool retry = true;
Daniel Vetter7758a112012-07-08 19:40:39 +02009524
Ville Syrjäläbc079e82014-03-03 16:15:28 +02009525 if (!check_encoder_cloning(to_intel_crtc(crtc))) {
Daniel Vetteraccfc0c2013-05-30 15:04:25 +02009526 DRM_DEBUG_KMS("rejecting invalid cloning configuration\n");
9527 return ERR_PTR(-EINVAL);
9528 }
9529
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01009530 pipe_config = kzalloc(sizeof(*pipe_config), GFP_KERNEL);
9531 if (!pipe_config)
Daniel Vetter7758a112012-07-08 19:40:39 +02009532 return ERR_PTR(-ENOMEM);
9533
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01009534 drm_mode_copy(&pipe_config->adjusted_mode, mode);
9535 drm_mode_copy(&pipe_config->requested_mode, mode);
Ville Syrjälä37327ab2013-09-04 18:25:28 +03009536
Daniel Vettere143a212013-07-04 12:01:15 +02009537 pipe_config->cpu_transcoder =
9538 (enum transcoder) to_intel_crtc(crtc)->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +02009539 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01009540
Imre Deak2960bc92013-07-30 13:36:32 +03009541 /*
9542 * Sanitize sync polarity flags based on requested ones. If neither
9543 * positive or negative polarity is requested, treat this as meaning
9544 * negative polarity.
9545 */
9546 if (!(pipe_config->adjusted_mode.flags &
9547 (DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NHSYNC)))
9548 pipe_config->adjusted_mode.flags |= DRM_MODE_FLAG_NHSYNC;
9549
9550 if (!(pipe_config->adjusted_mode.flags &
9551 (DRM_MODE_FLAG_PVSYNC | DRM_MODE_FLAG_NVSYNC)))
9552 pipe_config->adjusted_mode.flags |= DRM_MODE_FLAG_NVSYNC;
9553
Daniel Vetter050f7ae2013-06-02 13:26:23 +02009554 /* Compute a starting value for pipe_config->pipe_bpp taking the source
9555 * plane pixel format and any sink constraints into account. Returns the
9556 * source plane bpp so that dithering can be selected on mismatches
9557 * after encoders and crtc also have had their say. */
9558 plane_bpp = compute_baseline_pipe_bpp(to_intel_crtc(crtc),
9559 fb, pipe_config);
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01009560 if (plane_bpp < 0)
9561 goto fail;
9562
Ville Syrjäläe41a56b2013-10-01 22:52:14 +03009563 /*
9564 * Determine the real pipe dimensions. Note that stereo modes can
9565 * increase the actual pipe size due to the frame doubling and
9566 * insertion of additional space for blanks between the frame. This
9567 * is stored in the crtc timings. We use the requested mode to do this
9568 * computation to clearly distinguish it from the adjusted mode, which
9569 * can be changed by the connectors in the below retry loop.
9570 */
9571 drm_mode_set_crtcinfo(&pipe_config->requested_mode, CRTC_STEREO_DOUBLE);
9572 pipe_config->pipe_src_w = pipe_config->requested_mode.crtc_hdisplay;
9573 pipe_config->pipe_src_h = pipe_config->requested_mode.crtc_vdisplay;
9574
Daniel Vettere29c22c2013-02-21 00:00:16 +01009575encoder_retry:
Daniel Vetteref1b4602013-06-01 17:17:04 +02009576 /* Ensure the port clock defaults are reset when retrying. */
Daniel Vetterff9a6752013-06-01 17:16:21 +02009577 pipe_config->port_clock = 0;
Daniel Vetteref1b4602013-06-01 17:17:04 +02009578 pipe_config->pixel_multiplier = 1;
Daniel Vetterff9a6752013-06-01 17:16:21 +02009579
Daniel Vetter135c81b2013-07-21 21:37:09 +02009580 /* Fill in default crtc timings, allow encoders to overwrite them. */
Damien Lespiau6ce70f52013-09-25 16:45:38 +01009581 drm_mode_set_crtcinfo(&pipe_config->adjusted_mode, CRTC_STEREO_DOUBLE);
Daniel Vetter135c81b2013-07-21 21:37:09 +02009582
Daniel Vetter7758a112012-07-08 19:40:39 +02009583 /* Pass our mode to the connectors and the CRTC to give them a chance to
9584 * adjust it according to limitations or connector properties, and also
9585 * a chance to reject the mode entirely.
9586 */
9587 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
9588 base.head) {
9589
9590 if (&encoder->new_crtc->base != crtc)
9591 continue;
Daniel Vetter7ae89232013-03-27 00:44:52 +01009592
Daniel Vetterefea6e82013-07-21 21:36:59 +02009593 if (!(encoder->compute_config(encoder, pipe_config))) {
9594 DRM_DEBUG_KMS("Encoder config failure\n");
Daniel Vetter7758a112012-07-08 19:40:39 +02009595 goto fail;
9596 }
9597 }
9598
Daniel Vetterff9a6752013-06-01 17:16:21 +02009599 /* Set default port clock if not overwritten by the encoder. Needs to be
9600 * done afterwards in case the encoder adjusts the mode. */
9601 if (!pipe_config->port_clock)
Damien Lespiau241bfc32013-09-25 16:45:37 +01009602 pipe_config->port_clock = pipe_config->adjusted_mode.crtc_clock
9603 * pipe_config->pixel_multiplier;
Daniel Vetterff9a6752013-06-01 17:16:21 +02009604
Daniel Vettera43f6e02013-06-07 23:10:32 +02009605 ret = intel_crtc_compute_config(to_intel_crtc(crtc), pipe_config);
Daniel Vettere29c22c2013-02-21 00:00:16 +01009606 if (ret < 0) {
Daniel Vetter7758a112012-07-08 19:40:39 +02009607 DRM_DEBUG_KMS("CRTC fixup failed\n");
9608 goto fail;
9609 }
Daniel Vettere29c22c2013-02-21 00:00:16 +01009610
9611 if (ret == RETRY) {
9612 if (WARN(!retry, "loop in pipe configuration computation\n")) {
9613 ret = -EINVAL;
9614 goto fail;
9615 }
9616
9617 DRM_DEBUG_KMS("CRTC bw constrained, retrying\n");
9618 retry = false;
9619 goto encoder_retry;
9620 }
9621
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01009622 pipe_config->dither = pipe_config->pipe_bpp != plane_bpp;
9623 DRM_DEBUG_KMS("plane bpp: %i, pipe bpp: %i, dithering: %i\n",
9624 plane_bpp, pipe_config->pipe_bpp, pipe_config->dither);
9625
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01009626 return pipe_config;
Daniel Vetter7758a112012-07-08 19:40:39 +02009627fail:
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01009628 kfree(pipe_config);
Daniel Vettere29c22c2013-02-21 00:00:16 +01009629 return ERR_PTR(ret);
Daniel Vetter7758a112012-07-08 19:40:39 +02009630}
9631
Daniel Vettere2e1ed42012-07-08 21:14:38 +02009632/* Computes which crtcs are affected and sets the relevant bits in the mask. For
9633 * simplicity we use the crtc's pipe number (because it's easier to obtain). */
9634static void
9635intel_modeset_affected_pipes(struct drm_crtc *crtc, unsigned *modeset_pipes,
9636 unsigned *prepare_pipes, unsigned *disable_pipes)
9637{
9638 struct intel_crtc *intel_crtc;
9639 struct drm_device *dev = crtc->dev;
9640 struct intel_encoder *encoder;
9641 struct intel_connector *connector;
9642 struct drm_crtc *tmp_crtc;
9643
9644 *disable_pipes = *modeset_pipes = *prepare_pipes = 0;
9645
9646 /* Check which crtcs have changed outputs connected to them, these need
9647 * to be part of the prepare_pipes mask. We don't (yet) support global
9648 * modeset across multiple crtcs, so modeset_pipes will only have one
9649 * bit set at most. */
9650 list_for_each_entry(connector, &dev->mode_config.connector_list,
9651 base.head) {
9652 if (connector->base.encoder == &connector->new_encoder->base)
9653 continue;
9654
9655 if (connector->base.encoder) {
9656 tmp_crtc = connector->base.encoder->crtc;
9657
9658 *prepare_pipes |= 1 << to_intel_crtc(tmp_crtc)->pipe;
9659 }
9660
9661 if (connector->new_encoder)
9662 *prepare_pipes |=
9663 1 << connector->new_encoder->new_crtc->pipe;
9664 }
9665
9666 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
9667 base.head) {
9668 if (encoder->base.crtc == &encoder->new_crtc->base)
9669 continue;
9670
9671 if (encoder->base.crtc) {
9672 tmp_crtc = encoder->base.crtc;
9673
9674 *prepare_pipes |= 1 << to_intel_crtc(tmp_crtc)->pipe;
9675 }
9676
9677 if (encoder->new_crtc)
9678 *prepare_pipes |= 1 << encoder->new_crtc->pipe;
9679 }
9680
Ville Syrjälä76688512014-01-10 11:28:06 +02009681 /* Check for pipes that will be enabled/disabled ... */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01009682 for_each_intel_crtc(dev, intel_crtc) {
Ville Syrjälä76688512014-01-10 11:28:06 +02009683 if (intel_crtc->base.enabled == intel_crtc->new_enabled)
Daniel Vettere2e1ed42012-07-08 21:14:38 +02009684 continue;
9685
Ville Syrjälä76688512014-01-10 11:28:06 +02009686 if (!intel_crtc->new_enabled)
Daniel Vettere2e1ed42012-07-08 21:14:38 +02009687 *disable_pipes |= 1 << intel_crtc->pipe;
Ville Syrjälä76688512014-01-10 11:28:06 +02009688 else
9689 *prepare_pipes |= 1 << intel_crtc->pipe;
Daniel Vettere2e1ed42012-07-08 21:14:38 +02009690 }
9691
9692
9693 /* set_mode is also used to update properties on life display pipes. */
9694 intel_crtc = to_intel_crtc(crtc);
Ville Syrjälä76688512014-01-10 11:28:06 +02009695 if (intel_crtc->new_enabled)
Daniel Vettere2e1ed42012-07-08 21:14:38 +02009696 *prepare_pipes |= 1 << intel_crtc->pipe;
9697
Daniel Vetterb6c51642013-04-12 18:48:43 +02009698 /*
9699 * For simplicity do a full modeset on any pipe where the output routing
9700 * changed. We could be more clever, but that would require us to be
9701 * more careful with calling the relevant encoder->mode_set functions.
9702 */
Daniel Vettere2e1ed42012-07-08 21:14:38 +02009703 if (*prepare_pipes)
9704 *modeset_pipes = *prepare_pipes;
9705
9706 /* ... and mask these out. */
9707 *modeset_pipes &= ~(*disable_pipes);
9708 *prepare_pipes &= ~(*disable_pipes);
Daniel Vetterb6c51642013-04-12 18:48:43 +02009709
9710 /*
9711 * HACK: We don't (yet) fully support global modesets. intel_set_config
9712 * obies this rule, but the modeset restore mode of
9713 * intel_modeset_setup_hw_state does not.
9714 */
9715 *modeset_pipes &= 1 << intel_crtc->pipe;
9716 *prepare_pipes &= 1 << intel_crtc->pipe;
Daniel Vettere3641d32013-04-11 19:49:07 +02009717
9718 DRM_DEBUG_KMS("set mode pipe masks: modeset: %x, prepare: %x, disable: %x\n",
9719 *modeset_pipes, *prepare_pipes, *disable_pipes);
Daniel Vettere2e1ed42012-07-08 21:14:38 +02009720}
9721
Daniel Vetterea9d7582012-07-10 10:42:52 +02009722static bool intel_crtc_in_use(struct drm_crtc *crtc)
9723{
9724 struct drm_encoder *encoder;
9725 struct drm_device *dev = crtc->dev;
9726
9727 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head)
9728 if (encoder->crtc == crtc)
9729 return true;
9730
9731 return false;
9732}
9733
9734static void
9735intel_modeset_update_state(struct drm_device *dev, unsigned prepare_pipes)
9736{
9737 struct intel_encoder *intel_encoder;
9738 struct intel_crtc *intel_crtc;
9739 struct drm_connector *connector;
9740
9741 list_for_each_entry(intel_encoder, &dev->mode_config.encoder_list,
9742 base.head) {
9743 if (!intel_encoder->base.crtc)
9744 continue;
9745
9746 intel_crtc = to_intel_crtc(intel_encoder->base.crtc);
9747
9748 if (prepare_pipes & (1 << intel_crtc->pipe))
9749 intel_encoder->connectors_active = false;
9750 }
9751
9752 intel_modeset_commit_output_state(dev);
9753
Ville Syrjälä76688512014-01-10 11:28:06 +02009754 /* Double check state. */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01009755 for_each_intel_crtc(dev, intel_crtc) {
Ville Syrjälä76688512014-01-10 11:28:06 +02009756 WARN_ON(intel_crtc->base.enabled != intel_crtc_in_use(&intel_crtc->base));
Ville Syrjälä7bd0a8e2014-01-14 14:31:38 +02009757 WARN_ON(intel_crtc->new_config &&
9758 intel_crtc->new_config != &intel_crtc->config);
9759 WARN_ON(intel_crtc->base.enabled != !!intel_crtc->new_config);
Daniel Vetterea9d7582012-07-10 10:42:52 +02009760 }
9761
9762 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
9763 if (!connector->encoder || !connector->encoder->crtc)
9764 continue;
9765
9766 intel_crtc = to_intel_crtc(connector->encoder->crtc);
9767
9768 if (prepare_pipes & (1 << intel_crtc->pipe)) {
Daniel Vetter68d34722012-09-06 22:08:35 +02009769 struct drm_property *dpms_property =
9770 dev->mode_config.dpms_property;
9771
Daniel Vetterea9d7582012-07-10 10:42:52 +02009772 connector->dpms = DRM_MODE_DPMS_ON;
Rob Clark662595d2012-10-11 20:36:04 -05009773 drm_object_property_set_value(&connector->base,
Daniel Vetter68d34722012-09-06 22:08:35 +02009774 dpms_property,
9775 DRM_MODE_DPMS_ON);
Daniel Vetterea9d7582012-07-10 10:42:52 +02009776
9777 intel_encoder = to_intel_encoder(connector->encoder);
9778 intel_encoder->connectors_active = true;
9779 }
9780 }
9781
9782}
9783
Ville Syrjälä3bd26262013-09-06 23:29:02 +03009784static bool intel_fuzzy_clock_check(int clock1, int clock2)
Jesse Barnesf1f644d2013-06-27 00:39:25 +03009785{
Ville Syrjälä3bd26262013-09-06 23:29:02 +03009786 int diff;
Jesse Barnesf1f644d2013-06-27 00:39:25 +03009787
9788 if (clock1 == clock2)
9789 return true;
9790
9791 if (!clock1 || !clock2)
9792 return false;
9793
9794 diff = abs(clock1 - clock2);
9795
9796 if (((((diff + clock1 + clock2) * 100)) / (clock1 + clock2)) < 105)
9797 return true;
9798
9799 return false;
9800}
9801
Daniel Vetter25c5b262012-07-08 22:08:04 +02009802#define for_each_intel_crtc_masked(dev, mask, intel_crtc) \
9803 list_for_each_entry((intel_crtc), \
9804 &(dev)->mode_config.crtc_list, \
9805 base.head) \
Daniel Vetter0973f182013-04-19 11:25:33 +02009806 if (mask & (1 <<(intel_crtc)->pipe))
Daniel Vetter25c5b262012-07-08 22:08:04 +02009807
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01009808static bool
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02009809intel_pipe_config_compare(struct drm_device *dev,
9810 struct intel_crtc_config *current_config,
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01009811 struct intel_crtc_config *pipe_config)
9812{
Daniel Vetter66e985c2013-06-05 13:34:20 +02009813#define PIPE_CONF_CHECK_X(name) \
9814 if (current_config->name != pipe_config->name) { \
9815 DRM_ERROR("mismatch in " #name " " \
9816 "(expected 0x%08x, found 0x%08x)\n", \
9817 current_config->name, \
9818 pipe_config->name); \
9819 return false; \
9820 }
9821
Daniel Vetter08a24032013-04-19 11:25:34 +02009822#define PIPE_CONF_CHECK_I(name) \
9823 if (current_config->name != pipe_config->name) { \
9824 DRM_ERROR("mismatch in " #name " " \
9825 "(expected %i, found %i)\n", \
9826 current_config->name, \
9827 pipe_config->name); \
9828 return false; \
Daniel Vetter88adfff2013-03-28 10:42:01 +01009829 }
9830
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02009831#define PIPE_CONF_CHECK_FLAGS(name, mask) \
9832 if ((current_config->name ^ pipe_config->name) & (mask)) { \
Jesse Barnes6f024882013-07-01 10:19:09 -07009833 DRM_ERROR("mismatch in " #name "(" #mask ") " \
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02009834 "(expected %i, found %i)\n", \
9835 current_config->name & (mask), \
9836 pipe_config->name & (mask)); \
9837 return false; \
9838 }
9839
Ville Syrjälä5e550652013-09-06 23:29:07 +03009840#define PIPE_CONF_CHECK_CLOCK_FUZZY(name) \
9841 if (!intel_fuzzy_clock_check(current_config->name, pipe_config->name)) { \
9842 DRM_ERROR("mismatch in " #name " " \
9843 "(expected %i, found %i)\n", \
9844 current_config->name, \
9845 pipe_config->name); \
9846 return false; \
9847 }
9848
Daniel Vetterbb760062013-06-06 14:55:52 +02009849#define PIPE_CONF_QUIRK(quirk) \
9850 ((current_config->quirks | pipe_config->quirks) & (quirk))
9851
Daniel Vettereccb1402013-05-22 00:50:22 +02009852 PIPE_CONF_CHECK_I(cpu_transcoder);
9853
Daniel Vetter08a24032013-04-19 11:25:34 +02009854 PIPE_CONF_CHECK_I(has_pch_encoder);
9855 PIPE_CONF_CHECK_I(fdi_lanes);
Daniel Vetter72419202013-04-04 13:28:53 +02009856 PIPE_CONF_CHECK_I(fdi_m_n.gmch_m);
9857 PIPE_CONF_CHECK_I(fdi_m_n.gmch_n);
9858 PIPE_CONF_CHECK_I(fdi_m_n.link_m);
9859 PIPE_CONF_CHECK_I(fdi_m_n.link_n);
9860 PIPE_CONF_CHECK_I(fdi_m_n.tu);
Daniel Vetter08a24032013-04-19 11:25:34 +02009861
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03009862 PIPE_CONF_CHECK_I(has_dp_encoder);
9863 PIPE_CONF_CHECK_I(dp_m_n.gmch_m);
9864 PIPE_CONF_CHECK_I(dp_m_n.gmch_n);
9865 PIPE_CONF_CHECK_I(dp_m_n.link_m);
9866 PIPE_CONF_CHECK_I(dp_m_n.link_n);
9867 PIPE_CONF_CHECK_I(dp_m_n.tu);
9868
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02009869 PIPE_CONF_CHECK_I(adjusted_mode.crtc_hdisplay);
9870 PIPE_CONF_CHECK_I(adjusted_mode.crtc_htotal);
9871 PIPE_CONF_CHECK_I(adjusted_mode.crtc_hblank_start);
9872 PIPE_CONF_CHECK_I(adjusted_mode.crtc_hblank_end);
9873 PIPE_CONF_CHECK_I(adjusted_mode.crtc_hsync_start);
9874 PIPE_CONF_CHECK_I(adjusted_mode.crtc_hsync_end);
9875
9876 PIPE_CONF_CHECK_I(adjusted_mode.crtc_vdisplay);
9877 PIPE_CONF_CHECK_I(adjusted_mode.crtc_vtotal);
9878 PIPE_CONF_CHECK_I(adjusted_mode.crtc_vblank_start);
9879 PIPE_CONF_CHECK_I(adjusted_mode.crtc_vblank_end);
9880 PIPE_CONF_CHECK_I(adjusted_mode.crtc_vsync_start);
9881 PIPE_CONF_CHECK_I(adjusted_mode.crtc_vsync_end);
9882
Daniel Vetterc93f54c2013-06-27 19:47:19 +02009883 PIPE_CONF_CHECK_I(pixel_multiplier);
Daniel Vetter6897b4b2014-04-24 23:54:47 +02009884 PIPE_CONF_CHECK_I(has_hdmi_sink);
Daniel Vetterb5a9fa02014-04-24 23:54:49 +02009885 if ((INTEL_INFO(dev)->gen < 8 && !IS_HASWELL(dev)) ||
9886 IS_VALLEYVIEW(dev))
9887 PIPE_CONF_CHECK_I(limited_color_range);
Daniel Vetter6c49f242013-06-06 12:45:25 +02009888
Daniel Vetter9ed109a2014-04-24 23:54:52 +02009889 PIPE_CONF_CHECK_I(has_audio);
9890
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02009891 PIPE_CONF_CHECK_FLAGS(adjusted_mode.flags,
9892 DRM_MODE_FLAG_INTERLACE);
9893
Daniel Vetterbb760062013-06-06 14:55:52 +02009894 if (!PIPE_CONF_QUIRK(PIPE_CONFIG_QUIRK_MODE_SYNC_FLAGS)) {
9895 PIPE_CONF_CHECK_FLAGS(adjusted_mode.flags,
9896 DRM_MODE_FLAG_PHSYNC);
9897 PIPE_CONF_CHECK_FLAGS(adjusted_mode.flags,
9898 DRM_MODE_FLAG_NHSYNC);
9899 PIPE_CONF_CHECK_FLAGS(adjusted_mode.flags,
9900 DRM_MODE_FLAG_PVSYNC);
9901 PIPE_CONF_CHECK_FLAGS(adjusted_mode.flags,
9902 DRM_MODE_FLAG_NVSYNC);
9903 }
Jesse Barnes045ac3b2013-05-14 17:08:26 -07009904
Ville Syrjälä37327ab2013-09-04 18:25:28 +03009905 PIPE_CONF_CHECK_I(pipe_src_w);
9906 PIPE_CONF_CHECK_I(pipe_src_h);
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02009907
Daniel Vetter99535992014-04-13 12:00:33 +02009908 /*
9909 * FIXME: BIOS likes to set up a cloned config with lvds+external
9910 * screen. Since we don't yet re-compute the pipe config when moving
9911 * just the lvds port away to another pipe the sw tracking won't match.
9912 *
9913 * Proper atomic modesets with recomputed global state will fix this.
9914 * Until then just don't check gmch state for inherited modes.
9915 */
9916 if (!PIPE_CONF_QUIRK(PIPE_CONFIG_QUIRK_INHERITED_MODE)) {
9917 PIPE_CONF_CHECK_I(gmch_pfit.control);
9918 /* pfit ratios are autocomputed by the hw on gen4+ */
9919 if (INTEL_INFO(dev)->gen < 4)
9920 PIPE_CONF_CHECK_I(gmch_pfit.pgm_ratios);
9921 PIPE_CONF_CHECK_I(gmch_pfit.lvds_border_bits);
9922 }
9923
Chris Wilsonfd4daa92013-08-27 17:04:17 +01009924 PIPE_CONF_CHECK_I(pch_pfit.enabled);
9925 if (current_config->pch_pfit.enabled) {
9926 PIPE_CONF_CHECK_I(pch_pfit.pos);
9927 PIPE_CONF_CHECK_I(pch_pfit.size);
9928 }
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02009929
Jesse Barnese59150d2014-01-07 13:30:45 -08009930 /* BDW+ don't expose a synchronous way to read the state */
9931 if (IS_HASWELL(dev))
9932 PIPE_CONF_CHECK_I(ips_enabled);
Paulo Zanoni42db64e2013-05-31 16:33:22 -03009933
Ville Syrjälä282740f2013-09-04 18:30:03 +03009934 PIPE_CONF_CHECK_I(double_wide);
9935
Daniel Vetterc0d43d62013-06-07 23:11:08 +02009936 PIPE_CONF_CHECK_I(shared_dpll);
Daniel Vetter66e985c2013-06-05 13:34:20 +02009937 PIPE_CONF_CHECK_X(dpll_hw_state.dpll);
Daniel Vetter8bcc2792013-06-05 13:34:28 +02009938 PIPE_CONF_CHECK_X(dpll_hw_state.dpll_md);
Daniel Vetter66e985c2013-06-05 13:34:20 +02009939 PIPE_CONF_CHECK_X(dpll_hw_state.fp0);
9940 PIPE_CONF_CHECK_X(dpll_hw_state.fp1);
Daniel Vetterc0d43d62013-06-07 23:11:08 +02009941
Ville Syrjälä42571ae2013-09-06 23:29:00 +03009942 if (IS_G4X(dev) || INTEL_INFO(dev)->gen >= 5)
9943 PIPE_CONF_CHECK_I(pipe_bpp);
9944
Jesse Barnesa9a7e982014-01-20 14:18:04 -08009945 PIPE_CONF_CHECK_CLOCK_FUZZY(adjusted_mode.crtc_clock);
9946 PIPE_CONF_CHECK_CLOCK_FUZZY(port_clock);
Ville Syrjälä5e550652013-09-06 23:29:07 +03009947
Daniel Vetter66e985c2013-06-05 13:34:20 +02009948#undef PIPE_CONF_CHECK_X
Daniel Vetter08a24032013-04-19 11:25:34 +02009949#undef PIPE_CONF_CHECK_I
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02009950#undef PIPE_CONF_CHECK_FLAGS
Ville Syrjälä5e550652013-09-06 23:29:07 +03009951#undef PIPE_CONF_CHECK_CLOCK_FUZZY
Daniel Vetterbb760062013-06-06 14:55:52 +02009952#undef PIPE_CONF_QUIRK
Daniel Vetter627eb5a2013-04-29 19:33:42 +02009953
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01009954 return true;
9955}
9956
Daniel Vetter91d1b4b2013-06-05 13:34:18 +02009957static void
9958check_connector_state(struct drm_device *dev)
Daniel Vetter8af6cf82012-07-10 09:50:11 +02009959{
Daniel Vetter8af6cf82012-07-10 09:50:11 +02009960 struct intel_connector *connector;
9961
9962 list_for_each_entry(connector, &dev->mode_config.connector_list,
9963 base.head) {
9964 /* This also checks the encoder/connector hw state with the
9965 * ->get_hw_state callbacks. */
9966 intel_connector_check_state(connector);
9967
9968 WARN(&connector->new_encoder->base != connector->base.encoder,
9969 "connector's staged encoder doesn't match current encoder\n");
9970 }
Daniel Vetter91d1b4b2013-06-05 13:34:18 +02009971}
9972
9973static void
9974check_encoder_state(struct drm_device *dev)
9975{
9976 struct intel_encoder *encoder;
9977 struct intel_connector *connector;
Daniel Vetter8af6cf82012-07-10 09:50:11 +02009978
9979 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
9980 base.head) {
9981 bool enabled = false;
9982 bool active = false;
9983 enum pipe pipe, tracked_pipe;
9984
9985 DRM_DEBUG_KMS("[ENCODER:%d:%s]\n",
9986 encoder->base.base.id,
9987 drm_get_encoder_name(&encoder->base));
9988
9989 WARN(&encoder->new_crtc->base != encoder->base.crtc,
9990 "encoder's stage crtc doesn't match current crtc\n");
9991 WARN(encoder->connectors_active && !encoder->base.crtc,
9992 "encoder's active_connectors set, but no crtc\n");
9993
9994 list_for_each_entry(connector, &dev->mode_config.connector_list,
9995 base.head) {
9996 if (connector->base.encoder != &encoder->base)
9997 continue;
9998 enabled = true;
9999 if (connector->base.dpms != DRM_MODE_DPMS_OFF)
10000 active = true;
10001 }
10002 WARN(!!encoder->base.crtc != enabled,
10003 "encoder's enabled state mismatch "
10004 "(expected %i, found %i)\n",
10005 !!encoder->base.crtc, enabled);
10006 WARN(active && !encoder->base.crtc,
10007 "active encoder with no crtc\n");
10008
10009 WARN(encoder->connectors_active != active,
10010 "encoder's computed active state doesn't match tracked active state "
10011 "(expected %i, found %i)\n", active, encoder->connectors_active);
10012
10013 active = encoder->get_hw_state(encoder, &pipe);
10014 WARN(active != encoder->connectors_active,
10015 "encoder's hw state doesn't match sw tracking "
10016 "(expected %i, found %i)\n",
10017 encoder->connectors_active, active);
10018
10019 if (!encoder->base.crtc)
10020 continue;
10021
10022 tracked_pipe = to_intel_crtc(encoder->base.crtc)->pipe;
10023 WARN(active && pipe != tracked_pipe,
10024 "active encoder's pipe doesn't match"
10025 "(expected %i, found %i)\n",
10026 tracked_pipe, pipe);
10027
10028 }
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020010029}
10030
10031static void
10032check_crtc_state(struct drm_device *dev)
10033{
Jani Nikulafbee40d2014-03-31 14:27:18 +030010034 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020010035 struct intel_crtc *crtc;
10036 struct intel_encoder *encoder;
10037 struct intel_crtc_config pipe_config;
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010038
Damien Lespiaud3fcc802014-05-13 23:32:22 +010010039 for_each_intel_crtc(dev, crtc) {
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010040 bool enabled = false;
10041 bool active = false;
10042
Jesse Barnes045ac3b2013-05-14 17:08:26 -070010043 memset(&pipe_config, 0, sizeof(pipe_config));
10044
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010045 DRM_DEBUG_KMS("[CRTC:%d]\n",
10046 crtc->base.base.id);
10047
10048 WARN(crtc->active && !crtc->base.enabled,
10049 "active crtc, but not enabled in sw tracking\n");
10050
10051 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
10052 base.head) {
10053 if (encoder->base.crtc != &crtc->base)
10054 continue;
10055 enabled = true;
10056 if (encoder->connectors_active)
10057 active = true;
10058 }
Daniel Vetter6c49f242013-06-06 12:45:25 +020010059
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010060 WARN(active != crtc->active,
10061 "crtc's computed active state doesn't match tracked active state "
10062 "(expected %i, found %i)\n", active, crtc->active);
10063 WARN(enabled != crtc->base.enabled,
10064 "crtc's computed enabled state doesn't match tracked enabled state "
10065 "(expected %i, found %i)\n", enabled, crtc->base.enabled);
10066
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010010067 active = dev_priv->display.get_pipe_config(crtc,
10068 &pipe_config);
Daniel Vetterd62cf622013-05-29 10:41:29 +020010069
10070 /* hw state is inconsistent with the pipe A quirk */
10071 if (crtc->pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE)
10072 active = crtc->active;
10073
Daniel Vetter6c49f242013-06-06 12:45:25 +020010074 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
10075 base.head) {
Ville Syrjälä3eaba512013-08-05 17:57:48 +030010076 enum pipe pipe;
Daniel Vetter6c49f242013-06-06 12:45:25 +020010077 if (encoder->base.crtc != &crtc->base)
10078 continue;
Daniel Vetter1d37b682013-11-18 09:00:59 +010010079 if (encoder->get_hw_state(encoder, &pipe))
Daniel Vetter6c49f242013-06-06 12:45:25 +020010080 encoder->get_config(encoder, &pipe_config);
10081 }
10082
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010010083 WARN(crtc->active != active,
10084 "crtc active state doesn't match with hw state "
10085 "(expected %i, found %i)\n", crtc->active, active);
10086
Daniel Vetterc0b03412013-05-28 12:05:54 +020010087 if (active &&
10088 !intel_pipe_config_compare(dev, &crtc->config, &pipe_config)) {
10089 WARN(1, "pipe state doesn't match!\n");
10090 intel_dump_pipe_config(crtc, &pipe_config,
10091 "[hw state]");
10092 intel_dump_pipe_config(crtc, &crtc->config,
10093 "[sw state]");
10094 }
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010095 }
10096}
10097
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020010098static void
10099check_shared_dpll_state(struct drm_device *dev)
10100{
Jani Nikulafbee40d2014-03-31 14:27:18 +030010101 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020010102 struct intel_crtc *crtc;
10103 struct intel_dpll_hw_state dpll_hw_state;
10104 int i;
Daniel Vetter53589012013-06-05 13:34:16 +020010105
10106 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
10107 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
10108 int enabled_crtcs = 0, active_crtcs = 0;
10109 bool active;
10110
10111 memset(&dpll_hw_state, 0, sizeof(dpll_hw_state));
10112
10113 DRM_DEBUG_KMS("%s\n", pll->name);
10114
10115 active = pll->get_hw_state(dev_priv, pll, &dpll_hw_state);
10116
10117 WARN(pll->active > pll->refcount,
10118 "more active pll users than references: %i vs %i\n",
10119 pll->active, pll->refcount);
10120 WARN(pll->active && !pll->on,
10121 "pll in active use but not on in sw tracking\n");
Daniel Vetter35c95372013-07-17 06:55:04 +020010122 WARN(pll->on && !pll->active,
10123 "pll in on but not on in use in sw tracking\n");
Daniel Vetter53589012013-06-05 13:34:16 +020010124 WARN(pll->on != active,
10125 "pll on state mismatch (expected %i, found %i)\n",
10126 pll->on, active);
10127
Damien Lespiaud3fcc802014-05-13 23:32:22 +010010128 for_each_intel_crtc(dev, crtc) {
Daniel Vetter53589012013-06-05 13:34:16 +020010129 if (crtc->base.enabled && intel_crtc_to_shared_dpll(crtc) == pll)
10130 enabled_crtcs++;
10131 if (crtc->active && intel_crtc_to_shared_dpll(crtc) == pll)
10132 active_crtcs++;
10133 }
10134 WARN(pll->active != active_crtcs,
10135 "pll active crtcs mismatch (expected %i, found %i)\n",
10136 pll->active, active_crtcs);
10137 WARN(pll->refcount != enabled_crtcs,
10138 "pll enabled crtcs mismatch (expected %i, found %i)\n",
10139 pll->refcount, enabled_crtcs);
Daniel Vetter66e985c2013-06-05 13:34:20 +020010140
10141 WARN(pll->on && memcmp(&pll->hw_state, &dpll_hw_state,
10142 sizeof(dpll_hw_state)),
10143 "pll hw state mismatch\n");
Daniel Vetter53589012013-06-05 13:34:16 +020010144 }
Daniel Vettera6778b32012-07-02 09:56:42 +020010145}
10146
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020010147void
10148intel_modeset_check_state(struct drm_device *dev)
10149{
10150 check_connector_state(dev);
10151 check_encoder_state(dev);
10152 check_crtc_state(dev);
10153 check_shared_dpll_state(dev);
10154}
10155
Ville Syrjälä18442d02013-09-13 16:00:08 +030010156void ironlake_check_encoder_dotclock(const struct intel_crtc_config *pipe_config,
10157 int dotclock)
10158{
10159 /*
10160 * FDI already provided one idea for the dotclock.
10161 * Yell if the encoder disagrees.
10162 */
Damien Lespiau241bfc32013-09-25 16:45:37 +010010163 WARN(!intel_fuzzy_clock_check(pipe_config->adjusted_mode.crtc_clock, dotclock),
Ville Syrjälä18442d02013-09-13 16:00:08 +030010164 "FDI dotclock and encoder dotclock mismatch, fdi: %i, encoder: %i\n",
Damien Lespiau241bfc32013-09-25 16:45:37 +010010165 pipe_config->adjusted_mode.crtc_clock, dotclock);
Ville Syrjälä18442d02013-09-13 16:00:08 +030010166}
10167
Daniel Vetterf30da182013-04-11 20:22:50 +020010168static int __intel_set_mode(struct drm_crtc *crtc,
10169 struct drm_display_mode *mode,
10170 int x, int y, struct drm_framebuffer *fb)
Daniel Vettera6778b32012-07-02 09:56:42 +020010171{
10172 struct drm_device *dev = crtc->dev;
Jani Nikulafbee40d2014-03-31 14:27:18 +030010173 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä4b4b9232013-10-26 17:59:30 +030010174 struct drm_display_mode *saved_mode;
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010010175 struct intel_crtc_config *pipe_config = NULL;
Daniel Vetter25c5b262012-07-08 22:08:04 +020010176 struct intel_crtc *intel_crtc;
10177 unsigned disable_pipes, prepare_pipes, modeset_pipes;
Chris Wilsonc0c36b942012-12-19 16:08:43 +000010178 int ret = 0;
Daniel Vettera6778b32012-07-02 09:56:42 +020010179
Ville Syrjälä4b4b9232013-10-26 17:59:30 +030010180 saved_mode = kmalloc(sizeof(*saved_mode), GFP_KERNEL);
Chris Wilsonc0c36b942012-12-19 16:08:43 +000010181 if (!saved_mode)
10182 return -ENOMEM;
Daniel Vettera6778b32012-07-02 09:56:42 +020010183
Daniel Vettere2e1ed42012-07-08 21:14:38 +020010184 intel_modeset_affected_pipes(crtc, &modeset_pipes,
Daniel Vetter25c5b262012-07-08 22:08:04 +020010185 &prepare_pipes, &disable_pipes);
10186
Tim Gardner3ac18232012-12-07 07:54:26 -070010187 *saved_mode = crtc->mode;
Daniel Vettera6778b32012-07-02 09:56:42 +020010188
Daniel Vetter25c5b262012-07-08 22:08:04 +020010189 /* Hack: Because we don't (yet) support global modeset on multiple
10190 * crtcs, we don't keep track of the new mode for more than one crtc.
10191 * Hence simply check whether any bit is set in modeset_pipes in all the
10192 * pieces of code that are not yet converted to deal with mutliple crtcs
10193 * changing their mode at the same time. */
Daniel Vetter25c5b262012-07-08 22:08:04 +020010194 if (modeset_pipes) {
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010195 pipe_config = intel_modeset_pipe_config(crtc, fb, mode);
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010010196 if (IS_ERR(pipe_config)) {
10197 ret = PTR_ERR(pipe_config);
10198 pipe_config = NULL;
10199
Tim Gardner3ac18232012-12-07 07:54:26 -070010200 goto out;
Daniel Vetter25c5b262012-07-08 22:08:04 +020010201 }
Daniel Vetterc0b03412013-05-28 12:05:54 +020010202 intel_dump_pipe_config(to_intel_crtc(crtc), pipe_config,
10203 "[modeset]");
Ville Syrjälä50741ab2014-01-10 11:28:07 +020010204 to_intel_crtc(crtc)->new_config = pipe_config;
Daniel Vettera6778b32012-07-02 09:56:42 +020010205 }
10206
Jesse Barnes30a970c2013-11-04 13:48:12 -080010207 /*
10208 * See if the config requires any additional preparation, e.g.
10209 * to adjust global state with pipes off. We need to do this
10210 * here so we can get the modeset_pipe updated config for the new
10211 * mode set on this crtc. For other crtcs we need to use the
10212 * adjusted_mode bits in the crtc directly.
10213 */
Ville Syrjäläc164f832013-11-05 22:34:12 +020010214 if (IS_VALLEYVIEW(dev)) {
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +020010215 valleyview_modeset_global_pipes(dev, &prepare_pipes);
Jesse Barnes30a970c2013-11-04 13:48:12 -080010216
Ville Syrjäläc164f832013-11-05 22:34:12 +020010217 /* may have added more to prepare_pipes than we should */
10218 prepare_pipes &= ~disable_pipes;
10219 }
10220
Daniel Vetter460da9162013-03-27 00:44:51 +010010221 for_each_intel_crtc_masked(dev, disable_pipes, intel_crtc)
10222 intel_crtc_disable(&intel_crtc->base);
10223
Daniel Vetterea9d7582012-07-10 10:42:52 +020010224 for_each_intel_crtc_masked(dev, prepare_pipes, intel_crtc) {
10225 if (intel_crtc->base.enabled)
10226 dev_priv->display.crtc_disable(&intel_crtc->base);
10227 }
Daniel Vettera6778b32012-07-02 09:56:42 +020010228
Daniel Vetter6c4c86f2012-09-10 21:58:30 +020010229 /* crtc->mode is already used by the ->mode_set callbacks, hence we need
10230 * to set it here already despite that we pass it down the callchain.
10231 */
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010010232 if (modeset_pipes) {
Daniel Vetter25c5b262012-07-08 22:08:04 +020010233 crtc->mode = *mode;
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010010234 /* mode_set/enable/disable functions rely on a correct pipe
10235 * config. */
10236 to_intel_crtc(crtc)->config = *pipe_config;
Ville Syrjälä50741ab2014-01-10 11:28:07 +020010237 to_intel_crtc(crtc)->new_config = &to_intel_crtc(crtc)->config;
Ville Syrjäläc326c0a2013-10-28 12:53:41 +020010238
10239 /*
10240 * Calculate and store various constants which
10241 * are later needed by vblank and swap-completion
10242 * timestamping. They are derived from true hwmode.
10243 */
10244 drm_calc_timestamping_constants(crtc,
10245 &pipe_config->adjusted_mode);
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010010246 }
Daniel Vetter7758a112012-07-08 19:40:39 +020010247
Daniel Vetterea9d7582012-07-10 10:42:52 +020010248 /* Only after disabling all output pipelines that will be changed can we
10249 * update the the output configuration. */
10250 intel_modeset_update_state(dev, prepare_pipes);
10251
Daniel Vetter47fab732012-10-26 10:58:18 +020010252 if (dev_priv->display.modeset_global_resources)
10253 dev_priv->display.modeset_global_resources(dev);
10254
Daniel Vettera6778b32012-07-02 09:56:42 +020010255 /* Set up the DPLL and any encoders state that needs to adjust or depend
10256 * on the DPLL.
10257 */
Daniel Vetter25c5b262012-07-08 22:08:04 +020010258 for_each_intel_crtc_masked(dev, modeset_pipes, intel_crtc) {
Daniel Vetter4c107942014-04-24 23:55:05 +020010259 struct drm_framebuffer *old_fb;
10260
10261 mutex_lock(&dev->struct_mutex);
10262 ret = intel_pin_and_fence_fb_obj(dev,
10263 to_intel_framebuffer(fb)->obj,
10264 NULL);
10265 if (ret != 0) {
10266 DRM_ERROR("pin & fence failed\n");
10267 mutex_unlock(&dev->struct_mutex);
10268 goto done;
10269 }
10270 old_fb = crtc->primary->fb;
10271 if (old_fb)
10272 intel_unpin_fb_obj(to_intel_framebuffer(old_fb)->obj);
10273 mutex_unlock(&dev->struct_mutex);
10274
10275 crtc->primary->fb = fb;
10276 crtc->x = x;
10277 crtc->y = y;
10278
Daniel Vetter4271b752014-04-24 23:55:00 +020010279 ret = dev_priv->display.crtc_mode_set(&intel_crtc->base,
10280 x, y, fb);
Chris Wilsonc0c36b942012-12-19 16:08:43 +000010281 if (ret)
10282 goto done;
Daniel Vettera6778b32012-07-02 09:56:42 +020010283 }
10284
10285 /* Now enable the clocks, plane, pipe, and connectors that we set up. */
Daniel Vetter25c5b262012-07-08 22:08:04 +020010286 for_each_intel_crtc_masked(dev, prepare_pipes, intel_crtc)
10287 dev_priv->display.crtc_enable(&intel_crtc->base);
Daniel Vettera6778b32012-07-02 09:56:42 +020010288
Daniel Vettera6778b32012-07-02 09:56:42 +020010289 /* FIXME: add subpixel order */
10290done:
Ville Syrjälä4b4b9232013-10-26 17:59:30 +030010291 if (ret && crtc->enabled)
Tim Gardner3ac18232012-12-07 07:54:26 -070010292 crtc->mode = *saved_mode;
Daniel Vettera6778b32012-07-02 09:56:42 +020010293
Tim Gardner3ac18232012-12-07 07:54:26 -070010294out:
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010010295 kfree(pipe_config);
Tim Gardner3ac18232012-12-07 07:54:26 -070010296 kfree(saved_mode);
Daniel Vettera6778b32012-07-02 09:56:42 +020010297 return ret;
10298}
10299
Damien Lespiaue7457a92013-08-08 22:28:59 +010010300static int intel_set_mode(struct drm_crtc *crtc,
10301 struct drm_display_mode *mode,
10302 int x, int y, struct drm_framebuffer *fb)
Daniel Vetterf30da182013-04-11 20:22:50 +020010303{
10304 int ret;
10305
10306 ret = __intel_set_mode(crtc, mode, x, y, fb);
10307
10308 if (ret == 0)
10309 intel_modeset_check_state(crtc->dev);
10310
10311 return ret;
10312}
10313
Chris Wilsonc0c36b942012-12-19 16:08:43 +000010314void intel_crtc_restore_mode(struct drm_crtc *crtc)
10315{
Matt Roperf4510a22014-04-01 15:22:40 -070010316 intel_set_mode(crtc, &crtc->mode, crtc->x, crtc->y, crtc->primary->fb);
Chris Wilsonc0c36b942012-12-19 16:08:43 +000010317}
10318
Daniel Vetter25c5b262012-07-08 22:08:04 +020010319#undef for_each_intel_crtc_masked
10320
Daniel Vetterd9e55602012-07-04 22:16:09 +020010321static void intel_set_config_free(struct intel_set_config *config)
10322{
10323 if (!config)
10324 return;
10325
Daniel Vetter1aa4b622012-07-05 16:20:48 +020010326 kfree(config->save_connector_encoders);
10327 kfree(config->save_encoder_crtcs);
Ville Syrjälä76688512014-01-10 11:28:06 +020010328 kfree(config->save_crtc_enabled);
Daniel Vetterd9e55602012-07-04 22:16:09 +020010329 kfree(config);
10330}
10331
Daniel Vetter85f9eb72012-07-04 22:24:08 +020010332static int intel_set_config_save_state(struct drm_device *dev,
10333 struct intel_set_config *config)
10334{
Ville Syrjälä76688512014-01-10 11:28:06 +020010335 struct drm_crtc *crtc;
Daniel Vetter85f9eb72012-07-04 22:24:08 +020010336 struct drm_encoder *encoder;
10337 struct drm_connector *connector;
10338 int count;
10339
Ville Syrjälä76688512014-01-10 11:28:06 +020010340 config->save_crtc_enabled =
10341 kcalloc(dev->mode_config.num_crtc,
10342 sizeof(bool), GFP_KERNEL);
10343 if (!config->save_crtc_enabled)
10344 return -ENOMEM;
10345
Daniel Vetter1aa4b622012-07-05 16:20:48 +020010346 config->save_encoder_crtcs =
10347 kcalloc(dev->mode_config.num_encoder,
10348 sizeof(struct drm_crtc *), GFP_KERNEL);
10349 if (!config->save_encoder_crtcs)
Daniel Vetter85f9eb72012-07-04 22:24:08 +020010350 return -ENOMEM;
10351
Daniel Vetter1aa4b622012-07-05 16:20:48 +020010352 config->save_connector_encoders =
10353 kcalloc(dev->mode_config.num_connector,
10354 sizeof(struct drm_encoder *), GFP_KERNEL);
10355 if (!config->save_connector_encoders)
Daniel Vetter85f9eb72012-07-04 22:24:08 +020010356 return -ENOMEM;
10357
10358 /* Copy data. Note that driver private data is not affected.
10359 * Should anything bad happen only the expected state is
10360 * restored, not the drivers personal bookkeeping.
10361 */
10362 count = 0;
Damien Lespiau70e1e0e2014-05-13 23:32:24 +010010363 for_each_crtc(dev, crtc) {
Ville Syrjälä76688512014-01-10 11:28:06 +020010364 config->save_crtc_enabled[count++] = crtc->enabled;
10365 }
10366
10367 count = 0;
Daniel Vetter85f9eb72012-07-04 22:24:08 +020010368 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
Daniel Vetter1aa4b622012-07-05 16:20:48 +020010369 config->save_encoder_crtcs[count++] = encoder->crtc;
Daniel Vetter85f9eb72012-07-04 22:24:08 +020010370 }
10371
10372 count = 0;
10373 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
Daniel Vetter1aa4b622012-07-05 16:20:48 +020010374 config->save_connector_encoders[count++] = connector->encoder;
Daniel Vetter85f9eb72012-07-04 22:24:08 +020010375 }
10376
10377 return 0;
10378}
10379
10380static void intel_set_config_restore_state(struct drm_device *dev,
10381 struct intel_set_config *config)
10382{
Ville Syrjälä76688512014-01-10 11:28:06 +020010383 struct intel_crtc *crtc;
Daniel Vetter9a935852012-07-05 22:34:27 +020010384 struct intel_encoder *encoder;
10385 struct intel_connector *connector;
Daniel Vetter85f9eb72012-07-04 22:24:08 +020010386 int count;
10387
10388 count = 0;
Damien Lespiaud3fcc802014-05-13 23:32:22 +010010389 for_each_intel_crtc(dev, crtc) {
Ville Syrjälä76688512014-01-10 11:28:06 +020010390 crtc->new_enabled = config->save_crtc_enabled[count++];
Ville Syrjälä7bd0a8e2014-01-14 14:31:38 +020010391
10392 if (crtc->new_enabled)
10393 crtc->new_config = &crtc->config;
10394 else
10395 crtc->new_config = NULL;
Ville Syrjälä76688512014-01-10 11:28:06 +020010396 }
10397
10398 count = 0;
Daniel Vetter9a935852012-07-05 22:34:27 +020010399 list_for_each_entry(encoder, &dev->mode_config.encoder_list, base.head) {
10400 encoder->new_crtc =
10401 to_intel_crtc(config->save_encoder_crtcs[count++]);
Daniel Vetter85f9eb72012-07-04 22:24:08 +020010402 }
10403
10404 count = 0;
Daniel Vetter9a935852012-07-05 22:34:27 +020010405 list_for_each_entry(connector, &dev->mode_config.connector_list, base.head) {
10406 connector->new_encoder =
10407 to_intel_encoder(config->save_connector_encoders[count++]);
Daniel Vetter85f9eb72012-07-04 22:24:08 +020010408 }
10409}
10410
Imre Deake3de42b2013-05-03 19:44:07 +020010411static bool
Chris Wilson2e57f472013-07-17 12:14:40 +010010412is_crtc_connector_off(struct drm_mode_set *set)
Imre Deake3de42b2013-05-03 19:44:07 +020010413{
10414 int i;
10415
Chris Wilson2e57f472013-07-17 12:14:40 +010010416 if (set->num_connectors == 0)
10417 return false;
10418
10419 if (WARN_ON(set->connectors == NULL))
10420 return false;
10421
10422 for (i = 0; i < set->num_connectors; i++)
10423 if (set->connectors[i]->encoder &&
10424 set->connectors[i]->encoder->crtc == set->crtc &&
10425 set->connectors[i]->dpms != DRM_MODE_DPMS_ON)
Imre Deake3de42b2013-05-03 19:44:07 +020010426 return true;
10427
10428 return false;
10429}
10430
Daniel Vetter5e2b5842012-07-04 22:41:29 +020010431static void
10432intel_set_config_compute_mode_changes(struct drm_mode_set *set,
10433 struct intel_set_config *config)
10434{
10435
10436 /* We should be able to check here if the fb has the same properties
10437 * and then just flip_or_move it */
Chris Wilson2e57f472013-07-17 12:14:40 +010010438 if (is_crtc_connector_off(set)) {
10439 config->mode_changed = true;
Matt Roperf4510a22014-04-01 15:22:40 -070010440 } else if (set->crtc->primary->fb != set->fb) {
Daniel Vetter5e2b5842012-07-04 22:41:29 +020010441 /* If we have no fb then treat it as a full mode set */
Matt Roperf4510a22014-04-01 15:22:40 -070010442 if (set->crtc->primary->fb == NULL) {
Jesse Barnes319d9822013-06-26 01:38:19 +030010443 struct intel_crtc *intel_crtc =
10444 to_intel_crtc(set->crtc);
10445
Jani Nikulad330a952014-01-21 11:24:25 +020010446 if (intel_crtc->active && i915.fastboot) {
Jesse Barnes319d9822013-06-26 01:38:19 +030010447 DRM_DEBUG_KMS("crtc has no fb, will flip\n");
10448 config->fb_changed = true;
10449 } else {
10450 DRM_DEBUG_KMS("inactive crtc, full mode set\n");
10451 config->mode_changed = true;
10452 }
Daniel Vetter5e2b5842012-07-04 22:41:29 +020010453 } else if (set->fb == NULL) {
10454 config->mode_changed = true;
Daniel Vetter72f49012013-03-28 16:01:35 +010010455 } else if (set->fb->pixel_format !=
Matt Roperf4510a22014-04-01 15:22:40 -070010456 set->crtc->primary->fb->pixel_format) {
Daniel Vetter5e2b5842012-07-04 22:41:29 +020010457 config->mode_changed = true;
Imre Deake3de42b2013-05-03 19:44:07 +020010458 } else {
Daniel Vetter5e2b5842012-07-04 22:41:29 +020010459 config->fb_changed = true;
Imre Deake3de42b2013-05-03 19:44:07 +020010460 }
Daniel Vetter5e2b5842012-07-04 22:41:29 +020010461 }
10462
Daniel Vetter835c5872012-07-10 18:11:08 +020010463 if (set->fb && (set->x != set->crtc->x || set->y != set->crtc->y))
Daniel Vetter5e2b5842012-07-04 22:41:29 +020010464 config->fb_changed = true;
10465
10466 if (set->mode && !drm_mode_equal(set->mode, &set->crtc->mode)) {
10467 DRM_DEBUG_KMS("modes are different, full mode set\n");
10468 drm_mode_debug_printmodeline(&set->crtc->mode);
10469 drm_mode_debug_printmodeline(set->mode);
10470 config->mode_changed = true;
10471 }
Chris Wilsona1d95702013-08-13 18:48:47 +010010472
10473 DRM_DEBUG_KMS("computed changes for [CRTC:%d], mode_changed=%d, fb_changed=%d\n",
10474 set->crtc->base.id, config->mode_changed, config->fb_changed);
Daniel Vetter5e2b5842012-07-04 22:41:29 +020010475}
10476
Daniel Vetter2e431052012-07-04 22:42:15 +020010477static int
Daniel Vetter9a935852012-07-05 22:34:27 +020010478intel_modeset_stage_output_state(struct drm_device *dev,
10479 struct drm_mode_set *set,
10480 struct intel_set_config *config)
Daniel Vetter50f56112012-07-02 09:35:43 +020010481{
Daniel Vetter9a935852012-07-05 22:34:27 +020010482 struct intel_connector *connector;
10483 struct intel_encoder *encoder;
Ville Syrjälä76688512014-01-10 11:28:06 +020010484 struct intel_crtc *crtc;
Paulo Zanonif3f08572013-08-12 14:56:53 -030010485 int ro;
Daniel Vetter50f56112012-07-02 09:35:43 +020010486
Damien Lespiau9abdda72013-02-13 13:29:23 +000010487 /* The upper layers ensure that we either disable a crtc or have a list
Daniel Vetter9a935852012-07-05 22:34:27 +020010488 * of connectors. For paranoia, double-check this. */
10489 WARN_ON(!set->fb && (set->num_connectors != 0));
10490 WARN_ON(set->fb && (set->num_connectors == 0));
10491
Daniel Vetter9a935852012-07-05 22:34:27 +020010492 list_for_each_entry(connector, &dev->mode_config.connector_list,
10493 base.head) {
10494 /* Otherwise traverse passed in connector list and get encoders
10495 * for them. */
Daniel Vetter50f56112012-07-02 09:35:43 +020010496 for (ro = 0; ro < set->num_connectors; ro++) {
Daniel Vetter9a935852012-07-05 22:34:27 +020010497 if (set->connectors[ro] == &connector->base) {
10498 connector->new_encoder = connector->encoder;
Daniel Vetter50f56112012-07-02 09:35:43 +020010499 break;
10500 }
10501 }
10502
Daniel Vetter9a935852012-07-05 22:34:27 +020010503 /* If we disable the crtc, disable all its connectors. Also, if
10504 * the connector is on the changing crtc but not on the new
10505 * connector list, disable it. */
10506 if ((!set->fb || ro == set->num_connectors) &&
10507 connector->base.encoder &&
10508 connector->base.encoder->crtc == set->crtc) {
10509 connector->new_encoder = NULL;
10510
10511 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] to [NOCRTC]\n",
10512 connector->base.base.id,
10513 drm_get_connector_name(&connector->base));
10514 }
10515
10516
10517 if (&connector->new_encoder->base != connector->base.encoder) {
Daniel Vetter50f56112012-07-02 09:35:43 +020010518 DRM_DEBUG_KMS("encoder changed, full mode switch\n");
Daniel Vetter5e2b5842012-07-04 22:41:29 +020010519 config->mode_changed = true;
Daniel Vetter50f56112012-07-02 09:35:43 +020010520 }
Daniel Vetter9a935852012-07-05 22:34:27 +020010521 }
10522 /* connector->new_encoder is now updated for all connectors. */
10523
10524 /* Update crtc of enabled connectors. */
Daniel Vetter9a935852012-07-05 22:34:27 +020010525 list_for_each_entry(connector, &dev->mode_config.connector_list,
10526 base.head) {
Ville Syrjälä76688512014-01-10 11:28:06 +020010527 struct drm_crtc *new_crtc;
10528
Daniel Vetter9a935852012-07-05 22:34:27 +020010529 if (!connector->new_encoder)
Daniel Vetter50f56112012-07-02 09:35:43 +020010530 continue;
10531
Daniel Vetter9a935852012-07-05 22:34:27 +020010532 new_crtc = connector->new_encoder->base.crtc;
Daniel Vetter50f56112012-07-02 09:35:43 +020010533
10534 for (ro = 0; ro < set->num_connectors; ro++) {
Daniel Vetter9a935852012-07-05 22:34:27 +020010535 if (set->connectors[ro] == &connector->base)
Daniel Vetter50f56112012-07-02 09:35:43 +020010536 new_crtc = set->crtc;
10537 }
10538
10539 /* Make sure the new CRTC will work with the encoder */
Thierry Reding14509912014-01-13 12:00:22 +010010540 if (!drm_encoder_crtc_ok(&connector->new_encoder->base,
10541 new_crtc)) {
Daniel Vetter5e2b5842012-07-04 22:41:29 +020010542 return -EINVAL;
Daniel Vetter50f56112012-07-02 09:35:43 +020010543 }
Daniel Vetter9a935852012-07-05 22:34:27 +020010544 connector->encoder->new_crtc = to_intel_crtc(new_crtc);
10545
10546 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] to [CRTC:%d]\n",
10547 connector->base.base.id,
10548 drm_get_connector_name(&connector->base),
10549 new_crtc->base.id);
10550 }
10551
10552 /* Check for any encoders that needs to be disabled. */
10553 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
10554 base.head) {
Paulo Zanoni5a65f352014-01-07 14:55:53 -020010555 int num_connectors = 0;
Daniel Vetter9a935852012-07-05 22:34:27 +020010556 list_for_each_entry(connector,
10557 &dev->mode_config.connector_list,
10558 base.head) {
10559 if (connector->new_encoder == encoder) {
10560 WARN_ON(!connector->new_encoder->new_crtc);
Paulo Zanoni5a65f352014-01-07 14:55:53 -020010561 num_connectors++;
Daniel Vetter9a935852012-07-05 22:34:27 +020010562 }
10563 }
Paulo Zanoni5a65f352014-01-07 14:55:53 -020010564
10565 if (num_connectors == 0)
10566 encoder->new_crtc = NULL;
10567 else if (num_connectors > 1)
10568 return -EINVAL;
10569
Daniel Vetter9a935852012-07-05 22:34:27 +020010570 /* Only now check for crtc changes so we don't miss encoders
10571 * that will be disabled. */
10572 if (&encoder->new_crtc->base != encoder->base.crtc) {
Daniel Vetter50f56112012-07-02 09:35:43 +020010573 DRM_DEBUG_KMS("crtc changed, full mode switch\n");
Daniel Vetter5e2b5842012-07-04 22:41:29 +020010574 config->mode_changed = true;
Daniel Vetter50f56112012-07-02 09:35:43 +020010575 }
10576 }
Daniel Vetter9a935852012-07-05 22:34:27 +020010577 /* Now we've also updated encoder->new_crtc for all encoders. */
Daniel Vetter50f56112012-07-02 09:35:43 +020010578
Damien Lespiaud3fcc802014-05-13 23:32:22 +010010579 for_each_intel_crtc(dev, crtc) {
Ville Syrjälä76688512014-01-10 11:28:06 +020010580 crtc->new_enabled = false;
10581
10582 list_for_each_entry(encoder,
10583 &dev->mode_config.encoder_list,
10584 base.head) {
10585 if (encoder->new_crtc == crtc) {
10586 crtc->new_enabled = true;
10587 break;
10588 }
10589 }
10590
10591 if (crtc->new_enabled != crtc->base.enabled) {
10592 DRM_DEBUG_KMS("crtc %sabled, full mode switch\n",
10593 crtc->new_enabled ? "en" : "dis");
10594 config->mode_changed = true;
10595 }
Ville Syrjälä7bd0a8e2014-01-14 14:31:38 +020010596
10597 if (crtc->new_enabled)
10598 crtc->new_config = &crtc->config;
10599 else
10600 crtc->new_config = NULL;
Ville Syrjälä76688512014-01-10 11:28:06 +020010601 }
10602
Daniel Vetter2e431052012-07-04 22:42:15 +020010603 return 0;
10604}
10605
Ville Syrjälä7d00a1f2014-01-10 11:28:09 +020010606static void disable_crtc_nofb(struct intel_crtc *crtc)
10607{
10608 struct drm_device *dev = crtc->base.dev;
10609 struct intel_encoder *encoder;
10610 struct intel_connector *connector;
10611
10612 DRM_DEBUG_KMS("Trying to restore without FB -> disabling pipe %c\n",
10613 pipe_name(crtc->pipe));
10614
10615 list_for_each_entry(connector, &dev->mode_config.connector_list, base.head) {
10616 if (connector->new_encoder &&
10617 connector->new_encoder->new_crtc == crtc)
10618 connector->new_encoder = NULL;
10619 }
10620
10621 list_for_each_entry(encoder, &dev->mode_config.encoder_list, base.head) {
10622 if (encoder->new_crtc == crtc)
10623 encoder->new_crtc = NULL;
10624 }
10625
10626 crtc->new_enabled = false;
Ville Syrjälä7bd0a8e2014-01-14 14:31:38 +020010627 crtc->new_config = NULL;
Ville Syrjälä7d00a1f2014-01-10 11:28:09 +020010628}
10629
Daniel Vetter2e431052012-07-04 22:42:15 +020010630static int intel_crtc_set_config(struct drm_mode_set *set)
10631{
10632 struct drm_device *dev;
Daniel Vetter2e431052012-07-04 22:42:15 +020010633 struct drm_mode_set save_set;
10634 struct intel_set_config *config;
10635 int ret;
Daniel Vetter2e431052012-07-04 22:42:15 +020010636
Daniel Vetter8d3e3752012-07-05 16:09:09 +020010637 BUG_ON(!set);
10638 BUG_ON(!set->crtc);
10639 BUG_ON(!set->crtc->helper_private);
Daniel Vetter2e431052012-07-04 22:42:15 +020010640
Daniel Vetter7e53f3a2013-01-21 10:52:17 +010010641 /* Enforce sane interface api - has been abused by the fb helper. */
10642 BUG_ON(!set->mode && set->fb);
10643 BUG_ON(set->fb && set->num_connectors == 0);
Daniel Vetter431e50f2012-07-10 17:53:42 +020010644
Daniel Vetter2e431052012-07-04 22:42:15 +020010645 if (set->fb) {
10646 DRM_DEBUG_KMS("[CRTC:%d] [FB:%d] #connectors=%d (x y) (%i %i)\n",
10647 set->crtc->base.id, set->fb->base.id,
10648 (int)set->num_connectors, set->x, set->y);
10649 } else {
10650 DRM_DEBUG_KMS("[CRTC:%d] [NOFB]\n", set->crtc->base.id);
Daniel Vetter2e431052012-07-04 22:42:15 +020010651 }
10652
10653 dev = set->crtc->dev;
10654
10655 ret = -ENOMEM;
10656 config = kzalloc(sizeof(*config), GFP_KERNEL);
10657 if (!config)
10658 goto out_config;
10659
10660 ret = intel_set_config_save_state(dev, config);
10661 if (ret)
10662 goto out_config;
10663
10664 save_set.crtc = set->crtc;
10665 save_set.mode = &set->crtc->mode;
10666 save_set.x = set->crtc->x;
10667 save_set.y = set->crtc->y;
Matt Roperf4510a22014-04-01 15:22:40 -070010668 save_set.fb = set->crtc->primary->fb;
Daniel Vetter2e431052012-07-04 22:42:15 +020010669
10670 /* Compute whether we need a full modeset, only an fb base update or no
10671 * change at all. In the future we might also check whether only the
10672 * mode changed, e.g. for LVDS where we only change the panel fitter in
10673 * such cases. */
10674 intel_set_config_compute_mode_changes(set, config);
10675
Daniel Vetter9a935852012-07-05 22:34:27 +020010676 ret = intel_modeset_stage_output_state(dev, set, config);
Daniel Vetter2e431052012-07-04 22:42:15 +020010677 if (ret)
10678 goto fail;
10679
Daniel Vetter5e2b5842012-07-04 22:41:29 +020010680 if (config->mode_changed) {
Chris Wilsonc0c36b942012-12-19 16:08:43 +000010681 ret = intel_set_mode(set->crtc, set->mode,
10682 set->x, set->y, set->fb);
Daniel Vetter5e2b5842012-07-04 22:41:29 +020010683 } else if (config->fb_changed) {
Ville Syrjälä4878cae2013-02-18 19:08:48 +020010684 intel_crtc_wait_for_pending_flips(set->crtc);
10685
Daniel Vetter4f660f42012-07-02 09:47:37 +020010686 ret = intel_pipe_set_base(set->crtc,
Daniel Vetter94352cf2012-07-05 22:51:56 +020010687 set->x, set->y, set->fb);
Jesse Barnes7ca51a32014-01-07 13:50:49 -080010688 /*
10689 * In the fastboot case this may be our only check of the
10690 * state after boot. It would be better to only do it on
10691 * the first update, but we don't have a nice way of doing that
10692 * (and really, set_config isn't used much for high freq page
10693 * flipping, so increasing its cost here shouldn't be a big
10694 * deal).
10695 */
Jani Nikulad330a952014-01-21 11:24:25 +020010696 if (i915.fastboot && ret == 0)
Jesse Barnes7ca51a32014-01-07 13:50:49 -080010697 intel_modeset_check_state(set->crtc->dev);
Daniel Vetter50f56112012-07-02 09:35:43 +020010698 }
10699
Chris Wilson2d05eae2013-05-03 17:36:25 +010010700 if (ret) {
Daniel Vetterbf67dfe2013-06-25 11:06:52 +020010701 DRM_DEBUG_KMS("failed to set mode on [CRTC:%d], err = %d\n",
10702 set->crtc->base.id, ret);
Daniel Vetter50f56112012-07-02 09:35:43 +020010703fail:
Chris Wilson2d05eae2013-05-03 17:36:25 +010010704 intel_set_config_restore_state(dev, config);
Daniel Vetter50f56112012-07-02 09:35:43 +020010705
Ville Syrjälä7d00a1f2014-01-10 11:28:09 +020010706 /*
10707 * HACK: if the pipe was on, but we didn't have a framebuffer,
10708 * force the pipe off to avoid oopsing in the modeset code
10709 * due to fb==NULL. This should only happen during boot since
10710 * we don't yet reconstruct the FB from the hardware state.
10711 */
10712 if (to_intel_crtc(save_set.crtc)->new_enabled && !save_set.fb)
10713 disable_crtc_nofb(to_intel_crtc(save_set.crtc));
10714
Chris Wilson2d05eae2013-05-03 17:36:25 +010010715 /* Try to restore the config */
10716 if (config->mode_changed &&
10717 intel_set_mode(save_set.crtc, save_set.mode,
10718 save_set.x, save_set.y, save_set.fb))
10719 DRM_ERROR("failed to restore config after modeset failure\n");
10720 }
Daniel Vetter50f56112012-07-02 09:35:43 +020010721
Daniel Vetterd9e55602012-07-04 22:16:09 +020010722out_config:
10723 intel_set_config_free(config);
Daniel Vetter50f56112012-07-02 09:35:43 +020010724 return ret;
10725}
10726
Chris Wilsonf6e5b162011-04-12 18:06:51 +010010727static const struct drm_crtc_funcs intel_crtc_funcs = {
Chris Wilsonf6e5b162011-04-12 18:06:51 +010010728 .cursor_set = intel_crtc_cursor_set,
10729 .cursor_move = intel_crtc_cursor_move,
10730 .gamma_set = intel_crtc_gamma_set,
Daniel Vetter50f56112012-07-02 09:35:43 +020010731 .set_config = intel_crtc_set_config,
Chris Wilsonf6e5b162011-04-12 18:06:51 +010010732 .destroy = intel_crtc_destroy,
10733 .page_flip = intel_crtc_page_flip,
10734};
10735
Paulo Zanoni79f689a2012-10-05 12:05:52 -030010736static void intel_cpu_pll_init(struct drm_device *dev)
10737{
Paulo Zanoniaffa9352012-11-23 15:30:39 -020010738 if (HAS_DDI(dev))
Paulo Zanoni79f689a2012-10-05 12:05:52 -030010739 intel_ddi_pll_init(dev);
10740}
10741
Daniel Vetter53589012013-06-05 13:34:16 +020010742static bool ibx_pch_dpll_get_hw_state(struct drm_i915_private *dev_priv,
10743 struct intel_shared_dpll *pll,
10744 struct intel_dpll_hw_state *hw_state)
Jesse Barnesee7b9f92012-04-20 17:11:53 +010010745{
Daniel Vetter53589012013-06-05 13:34:16 +020010746 uint32_t val;
10747
10748 val = I915_READ(PCH_DPLL(pll->id));
Daniel Vetter66e985c2013-06-05 13:34:20 +020010749 hw_state->dpll = val;
10750 hw_state->fp0 = I915_READ(PCH_FP0(pll->id));
10751 hw_state->fp1 = I915_READ(PCH_FP1(pll->id));
Daniel Vetter53589012013-06-05 13:34:16 +020010752
10753 return val & DPLL_VCO_ENABLE;
10754}
10755
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020010756static void ibx_pch_dpll_mode_set(struct drm_i915_private *dev_priv,
10757 struct intel_shared_dpll *pll)
10758{
10759 I915_WRITE(PCH_FP0(pll->id), pll->hw_state.fp0);
10760 I915_WRITE(PCH_FP1(pll->id), pll->hw_state.fp1);
10761}
10762
Daniel Vettere7b903d2013-06-05 13:34:14 +020010763static void ibx_pch_dpll_enable(struct drm_i915_private *dev_priv,
10764 struct intel_shared_dpll *pll)
10765{
Daniel Vettere7b903d2013-06-05 13:34:14 +020010766 /* PCH refclock must be enabled first */
Paulo Zanoni89eff4b2014-01-08 11:12:28 -020010767 ibx_assert_pch_refclk_enabled(dev_priv);
Daniel Vettere7b903d2013-06-05 13:34:14 +020010768
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020010769 I915_WRITE(PCH_DPLL(pll->id), pll->hw_state.dpll);
10770
10771 /* Wait for the clocks to stabilize. */
10772 POSTING_READ(PCH_DPLL(pll->id));
10773 udelay(150);
10774
10775 /* The pixel multiplier can only be updated once the
10776 * DPLL is enabled and the clocks are stable.
10777 *
10778 * So write it again.
10779 */
10780 I915_WRITE(PCH_DPLL(pll->id), pll->hw_state.dpll);
10781 POSTING_READ(PCH_DPLL(pll->id));
Daniel Vettere7b903d2013-06-05 13:34:14 +020010782 udelay(200);
10783}
10784
10785static void ibx_pch_dpll_disable(struct drm_i915_private *dev_priv,
10786 struct intel_shared_dpll *pll)
10787{
10788 struct drm_device *dev = dev_priv->dev;
10789 struct intel_crtc *crtc;
Daniel Vettere7b903d2013-06-05 13:34:14 +020010790
10791 /* Make sure no transcoder isn't still depending on us. */
Damien Lespiaud3fcc802014-05-13 23:32:22 +010010792 for_each_intel_crtc(dev, crtc) {
Daniel Vettere7b903d2013-06-05 13:34:14 +020010793 if (intel_crtc_to_shared_dpll(crtc) == pll)
10794 assert_pch_transcoder_disabled(dev_priv, crtc->pipe);
10795 }
10796
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020010797 I915_WRITE(PCH_DPLL(pll->id), 0);
10798 POSTING_READ(PCH_DPLL(pll->id));
Daniel Vettere7b903d2013-06-05 13:34:14 +020010799 udelay(200);
10800}
10801
Daniel Vetter46edb022013-06-05 13:34:12 +020010802static char *ibx_pch_dpll_names[] = {
10803 "PCH DPLL A",
10804 "PCH DPLL B",
10805};
10806
Daniel Vetter7c74ade2013-06-05 13:34:11 +020010807static void ibx_pch_dpll_init(struct drm_device *dev)
Jesse Barnesee7b9f92012-04-20 17:11:53 +010010808{
Daniel Vettere7b903d2013-06-05 13:34:14 +020010809 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesee7b9f92012-04-20 17:11:53 +010010810 int i;
10811
Daniel Vetter7c74ade2013-06-05 13:34:11 +020010812 dev_priv->num_shared_dpll = 2;
Jesse Barnesee7b9f92012-04-20 17:11:53 +010010813
Daniel Vettere72f9fb2013-06-05 13:34:06 +020010814 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
Daniel Vetter46edb022013-06-05 13:34:12 +020010815 dev_priv->shared_dplls[i].id = i;
10816 dev_priv->shared_dplls[i].name = ibx_pch_dpll_names[i];
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020010817 dev_priv->shared_dplls[i].mode_set = ibx_pch_dpll_mode_set;
Daniel Vettere7b903d2013-06-05 13:34:14 +020010818 dev_priv->shared_dplls[i].enable = ibx_pch_dpll_enable;
10819 dev_priv->shared_dplls[i].disable = ibx_pch_dpll_disable;
Daniel Vetter53589012013-06-05 13:34:16 +020010820 dev_priv->shared_dplls[i].get_hw_state =
10821 ibx_pch_dpll_get_hw_state;
Jesse Barnesee7b9f92012-04-20 17:11:53 +010010822 }
10823}
10824
Daniel Vetter7c74ade2013-06-05 13:34:11 +020010825static void intel_shared_dpll_init(struct drm_device *dev)
10826{
Daniel Vettere7b903d2013-06-05 13:34:14 +020010827 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter7c74ade2013-06-05 13:34:11 +020010828
10829 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev))
10830 ibx_pch_dpll_init(dev);
10831 else
10832 dev_priv->num_shared_dpll = 0;
10833
10834 BUG_ON(dev_priv->num_shared_dpll > I915_NUM_PLLS);
Daniel Vetter7c74ade2013-06-05 13:34:11 +020010835}
10836
Hannes Ederb358d0a2008-12-18 21:18:47 +010010837static void intel_crtc_init(struct drm_device *dev, int pipe)
Jesse Barnes79e53942008-11-07 14:24:08 -080010838{
Jani Nikulafbee40d2014-03-31 14:27:18 +030010839 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -080010840 struct intel_crtc *intel_crtc;
10841 int i;
10842
Daniel Vetter955382f2013-09-19 14:05:45 +020010843 intel_crtc = kzalloc(sizeof(*intel_crtc), GFP_KERNEL);
Jesse Barnes79e53942008-11-07 14:24:08 -080010844 if (intel_crtc == NULL)
10845 return;
10846
10847 drm_crtc_init(dev, &intel_crtc->base, &intel_crtc_funcs);
10848
10849 drm_mode_crtc_set_gamma_size(&intel_crtc->base, 256);
Jesse Barnes79e53942008-11-07 14:24:08 -080010850 for (i = 0; i < 256; i++) {
10851 intel_crtc->lut_r[i] = i;
10852 intel_crtc->lut_g[i] = i;
10853 intel_crtc->lut_b[i] = i;
10854 }
10855
Ville Syrjälä1f1c2e22013-11-28 17:30:01 +020010856 /*
10857 * On gen2/3 only plane A can do fbc, but the panel fitter and lvds port
10858 * is hooked to plane B. Hence we want plane A feeding pipe B.
10859 */
Jesse Barnes80824002009-09-10 15:28:06 -070010860 intel_crtc->pipe = pipe;
10861 intel_crtc->plane = pipe;
Daniel Vetter3a77c4c2014-01-10 08:50:12 +010010862 if (HAS_FBC(dev) && INTEL_INFO(dev)->gen < 4) {
Zhao Yakui28c97732009-10-09 11:39:41 +080010863 DRM_DEBUG_KMS("swapping pipes & planes for FBC\n");
Chris Wilsone2e767a2010-09-13 16:53:12 +010010864 intel_crtc->plane = !pipe;
Jesse Barnes80824002009-09-10 15:28:06 -070010865 }
10866
Ville Syrjälä8d7849d2014-04-29 13:35:46 +030010867 init_waitqueue_head(&intel_crtc->vbl_wait);
10868
Jesse Barnes22fd0fa2009-12-02 13:42:53 -080010869 BUG_ON(pipe >= ARRAY_SIZE(dev_priv->plane_to_crtc_mapping) ||
10870 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] != NULL);
10871 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] = &intel_crtc->base;
10872 dev_priv->pipe_to_crtc_mapping[intel_crtc->pipe] = &intel_crtc->base;
10873
Jesse Barnes79e53942008-11-07 14:24:08 -080010874 drm_crtc_helper_add(&intel_crtc->base, &intel_helper_funcs);
Jesse Barnes79e53942008-11-07 14:24:08 -080010875}
10876
Jesse Barnes752aa882013-10-31 18:55:49 +020010877enum pipe intel_get_pipe_from_connector(struct intel_connector *connector)
10878{
10879 struct drm_encoder *encoder = connector->base.encoder;
10880
10881 WARN_ON(!mutex_is_locked(&connector->base.dev->mode_config.mutex));
10882
10883 if (!encoder)
10884 return INVALID_PIPE;
10885
10886 return to_intel_crtc(encoder->crtc)->pipe;
10887}
10888
Carl Worth08d7b3d2009-04-29 14:43:54 -070010889int intel_get_pipe_from_crtc_id(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +000010890 struct drm_file *file)
Carl Worth08d7b3d2009-04-29 14:43:54 -070010891{
Carl Worth08d7b3d2009-04-29 14:43:54 -070010892 struct drm_i915_get_pipe_from_crtc_id *pipe_from_crtc_id = data;
Daniel Vetterc05422d2009-08-11 16:05:30 +020010893 struct drm_mode_object *drmmode_obj;
10894 struct intel_crtc *crtc;
Carl Worth08d7b3d2009-04-29 14:43:54 -070010895
Daniel Vetter1cff8f62012-04-24 09:55:08 +020010896 if (!drm_core_check_feature(dev, DRIVER_MODESET))
10897 return -ENODEV;
Carl Worth08d7b3d2009-04-29 14:43:54 -070010898
Daniel Vetterc05422d2009-08-11 16:05:30 +020010899 drmmode_obj = drm_mode_object_find(dev, pipe_from_crtc_id->crtc_id,
10900 DRM_MODE_OBJECT_CRTC);
Carl Worth08d7b3d2009-04-29 14:43:54 -070010901
Daniel Vetterc05422d2009-08-11 16:05:30 +020010902 if (!drmmode_obj) {
Carl Worth08d7b3d2009-04-29 14:43:54 -070010903 DRM_ERROR("no such CRTC id\n");
Ville Syrjälä3f2c2052013-10-17 13:35:03 +030010904 return -ENOENT;
Carl Worth08d7b3d2009-04-29 14:43:54 -070010905 }
10906
Daniel Vetterc05422d2009-08-11 16:05:30 +020010907 crtc = to_intel_crtc(obj_to_crtc(drmmode_obj));
10908 pipe_from_crtc_id->pipe = crtc->pipe;
Carl Worth08d7b3d2009-04-29 14:43:54 -070010909
Daniel Vetterc05422d2009-08-11 16:05:30 +020010910 return 0;
Carl Worth08d7b3d2009-04-29 14:43:54 -070010911}
10912
Daniel Vetter66a92782012-07-12 20:08:18 +020010913static int intel_encoder_clones(struct intel_encoder *encoder)
Jesse Barnes79e53942008-11-07 14:24:08 -080010914{
Daniel Vetter66a92782012-07-12 20:08:18 +020010915 struct drm_device *dev = encoder->base.dev;
10916 struct intel_encoder *source_encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -080010917 int index_mask = 0;
Jesse Barnes79e53942008-11-07 14:24:08 -080010918 int entry = 0;
10919
Daniel Vetter66a92782012-07-12 20:08:18 +020010920 list_for_each_entry(source_encoder,
10921 &dev->mode_config.encoder_list, base.head) {
Ville Syrjäläbc079e82014-03-03 16:15:28 +020010922 if (encoders_cloneable(encoder, source_encoder))
Daniel Vetter66a92782012-07-12 20:08:18 +020010923 index_mask |= (1 << entry);
10924
Jesse Barnes79e53942008-11-07 14:24:08 -080010925 entry++;
10926 }
Chris Wilson4ef69c72010-09-09 15:14:28 +010010927
Jesse Barnes79e53942008-11-07 14:24:08 -080010928 return index_mask;
10929}
10930
Chris Wilson4d302442010-12-14 19:21:29 +000010931static bool has_edp_a(struct drm_device *dev)
10932{
10933 struct drm_i915_private *dev_priv = dev->dev_private;
10934
10935 if (!IS_MOBILE(dev))
10936 return false;
10937
10938 if ((I915_READ(DP_A) & DP_DETECTED) == 0)
10939 return false;
10940
Damien Lespiaue3589902014-02-07 19:12:50 +000010941 if (IS_GEN5(dev) && (I915_READ(FUSE_STRAP) & ILK_eDP_A_DISABLE))
Chris Wilson4d302442010-12-14 19:21:29 +000010942 return false;
10943
10944 return true;
10945}
10946
Damien Lespiauba0fbca2014-01-08 14:18:23 +000010947const char *intel_output_name(int output)
10948{
10949 static const char *names[] = {
10950 [INTEL_OUTPUT_UNUSED] = "Unused",
10951 [INTEL_OUTPUT_ANALOG] = "Analog",
10952 [INTEL_OUTPUT_DVO] = "DVO",
10953 [INTEL_OUTPUT_SDVO] = "SDVO",
10954 [INTEL_OUTPUT_LVDS] = "LVDS",
10955 [INTEL_OUTPUT_TVOUT] = "TV",
10956 [INTEL_OUTPUT_HDMI] = "HDMI",
10957 [INTEL_OUTPUT_DISPLAYPORT] = "DisplayPort",
10958 [INTEL_OUTPUT_EDP] = "eDP",
10959 [INTEL_OUTPUT_DSI] = "DSI",
10960 [INTEL_OUTPUT_UNKNOWN] = "Unknown",
10961 };
10962
10963 if (output < 0 || output >= ARRAY_SIZE(names) || !names[output])
10964 return "Invalid";
10965
10966 return names[output];
10967}
10968
Jesse Barnes79e53942008-11-07 14:24:08 -080010969static void intel_setup_outputs(struct drm_device *dev)
10970{
Eric Anholt725e30a2009-01-22 13:01:02 -080010971 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson4ef69c72010-09-09 15:14:28 +010010972 struct intel_encoder *encoder;
Adam Jacksoncb0953d2010-07-16 14:46:29 -040010973 bool dpd_is_edp = false;
Jesse Barnes79e53942008-11-07 14:24:08 -080010974
Daniel Vetterc9093352013-06-06 22:22:47 +020010975 intel_lvds_init(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -080010976
Ville Syrjälä7895a812014-04-09 13:28:23 +030010977 if (!IS_ULT(dev) && !IS_CHERRYVIEW(dev))
Paulo Zanoni79935fc2012-11-20 13:27:40 -020010978 intel_crt_init(dev);
Adam Jacksoncb0953d2010-07-16 14:46:29 -040010979
Paulo Zanoniaffa9352012-11-23 15:30:39 -020010980 if (HAS_DDI(dev)) {
Eugeni Dodonov0e72a5b2012-05-09 15:37:27 -030010981 int found;
10982
10983 /* Haswell uses DDI functions to detect digital outputs */
10984 found = I915_READ(DDI_BUF_CTL_A) & DDI_INIT_DISPLAY_DETECTED;
10985 /* DDI A only supports eDP */
10986 if (found)
10987 intel_ddi_init(dev, PORT_A);
10988
10989 /* DDI B, C and D detection is indicated by the SFUSE_STRAP
10990 * register */
10991 found = I915_READ(SFUSE_STRAP);
10992
10993 if (found & SFUSE_STRAP_DDIB_DETECTED)
10994 intel_ddi_init(dev, PORT_B);
10995 if (found & SFUSE_STRAP_DDIC_DETECTED)
10996 intel_ddi_init(dev, PORT_C);
10997 if (found & SFUSE_STRAP_DDID_DETECTED)
10998 intel_ddi_init(dev, PORT_D);
10999 } else if (HAS_PCH_SPLIT(dev)) {
Adam Jacksoncb0953d2010-07-16 14:46:29 -040011000 int found;
Ville Syrjälä5d8a7752013-11-01 18:22:39 +020011001 dpd_is_edp = intel_dp_is_edp(dev, PORT_D);
Daniel Vetter270b3042012-10-27 15:52:05 +020011002
11003 if (has_edp_a(dev))
11004 intel_dp_init(dev, DP_A, PORT_A);
Adam Jacksoncb0953d2010-07-16 14:46:29 -040011005
Paulo Zanonidc0fa712013-02-19 16:21:46 -030011006 if (I915_READ(PCH_HDMIB) & SDVO_DETECTED) {
Zhao Yakui461ed3c2010-03-30 15:11:33 +080011007 /* PCH SDVOB multiplex with HDMIB */
Daniel Vettereef4eac2012-03-23 23:43:35 +010011008 found = intel_sdvo_init(dev, PCH_SDVOB, true);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +080011009 if (!found)
Paulo Zanonie2debe92013-02-18 19:00:27 -030011010 intel_hdmi_init(dev, PCH_HDMIB, PORT_B);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +080011011 if (!found && (I915_READ(PCH_DP_B) & DP_DETECTED))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030011012 intel_dp_init(dev, PCH_DP_B, PORT_B);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +080011013 }
11014
Paulo Zanonidc0fa712013-02-19 16:21:46 -030011015 if (I915_READ(PCH_HDMIC) & SDVO_DETECTED)
Paulo Zanonie2debe92013-02-18 19:00:27 -030011016 intel_hdmi_init(dev, PCH_HDMIC, PORT_C);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +080011017
Paulo Zanonidc0fa712013-02-19 16:21:46 -030011018 if (!dpd_is_edp && I915_READ(PCH_HDMID) & SDVO_DETECTED)
Paulo Zanonie2debe92013-02-18 19:00:27 -030011019 intel_hdmi_init(dev, PCH_HDMID, PORT_D);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +080011020
Zhenyu Wang5eb08b62009-07-24 01:00:31 +080011021 if (I915_READ(PCH_DP_C) & DP_DETECTED)
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030011022 intel_dp_init(dev, PCH_DP_C, PORT_C);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +080011023
Daniel Vetter270b3042012-10-27 15:52:05 +020011024 if (I915_READ(PCH_DP_D) & DP_DETECTED)
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030011025 intel_dp_init(dev, PCH_DP_D, PORT_D);
Jesse Barnes4a87d652012-06-15 11:55:16 -070011026 } else if (IS_VALLEYVIEW(dev)) {
Artem Bityutskiy585a94b2013-10-16 18:10:41 +030011027 if (I915_READ(VLV_DISPLAY_BASE + GEN4_HDMIB) & SDVO_DETECTED) {
11028 intel_hdmi_init(dev, VLV_DISPLAY_BASE + GEN4_HDMIB,
11029 PORT_B);
11030 if (I915_READ(VLV_DISPLAY_BASE + DP_B) & DP_DETECTED)
11031 intel_dp_init(dev, VLV_DISPLAY_BASE + DP_B, PORT_B);
11032 }
11033
Jesse Barnes6f6005a2013-08-09 09:34:35 -070011034 if (I915_READ(VLV_DISPLAY_BASE + GEN4_HDMIC) & SDVO_DETECTED) {
11035 intel_hdmi_init(dev, VLV_DISPLAY_BASE + GEN4_HDMIC,
11036 PORT_C);
11037 if (I915_READ(VLV_DISPLAY_BASE + DP_C) & DP_DETECTED)
Ville Syrjälä5d8a7752013-11-01 18:22:39 +020011038 intel_dp_init(dev, VLV_DISPLAY_BASE + DP_C, PORT_C);
Jesse Barnes6f6005a2013-08-09 09:34:35 -070011039 }
Gajanan Bhat19c03922012-09-27 19:13:07 +053011040
Jani Nikula3cfca972013-08-27 15:12:26 +030011041 intel_dsi_init(dev);
Zhenyu Wang103a1962009-11-27 11:44:36 +080011042 } else if (SUPPORTS_DIGITAL_OUTPUTS(dev)) {
Ma Ling27185ae2009-08-24 13:50:23 +080011043 bool found = false;
Eric Anholt7d573822009-01-02 13:33:00 -080011044
Paulo Zanonie2debe92013-02-18 19:00:27 -030011045 if (I915_READ(GEN3_SDVOB) & SDVO_DETECTED) {
Jesse Barnesb01f2c32009-12-11 11:07:17 -080011046 DRM_DEBUG_KMS("probing SDVOB\n");
Paulo Zanonie2debe92013-02-18 19:00:27 -030011047 found = intel_sdvo_init(dev, GEN3_SDVOB, true);
Jesse Barnesb01f2c32009-12-11 11:07:17 -080011048 if (!found && SUPPORTS_INTEGRATED_HDMI(dev)) {
11049 DRM_DEBUG_KMS("probing HDMI on SDVOB\n");
Paulo Zanonie2debe92013-02-18 19:00:27 -030011050 intel_hdmi_init(dev, GEN4_HDMIB, PORT_B);
Jesse Barnesb01f2c32009-12-11 11:07:17 -080011051 }
Ma Ling27185ae2009-08-24 13:50:23 +080011052
Imre Deake7281ea2013-05-08 13:14:08 +030011053 if (!found && SUPPORTS_INTEGRATED_DP(dev))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030011054 intel_dp_init(dev, DP_B, PORT_B);
Eric Anholt725e30a2009-01-22 13:01:02 -080011055 }
Kristian Høgsberg13520b02009-03-13 15:42:14 -040011056
11057 /* Before G4X SDVOC doesn't have its own detect register */
Kristian Høgsberg13520b02009-03-13 15:42:14 -040011058
Paulo Zanonie2debe92013-02-18 19:00:27 -030011059 if (I915_READ(GEN3_SDVOB) & SDVO_DETECTED) {
Jesse Barnesb01f2c32009-12-11 11:07:17 -080011060 DRM_DEBUG_KMS("probing SDVOC\n");
Paulo Zanonie2debe92013-02-18 19:00:27 -030011061 found = intel_sdvo_init(dev, GEN3_SDVOC, false);
Jesse Barnesb01f2c32009-12-11 11:07:17 -080011062 }
Ma Ling27185ae2009-08-24 13:50:23 +080011063
Paulo Zanonie2debe92013-02-18 19:00:27 -030011064 if (!found && (I915_READ(GEN3_SDVOC) & SDVO_DETECTED)) {
Ma Ling27185ae2009-08-24 13:50:23 +080011065
Jesse Barnesb01f2c32009-12-11 11:07:17 -080011066 if (SUPPORTS_INTEGRATED_HDMI(dev)) {
11067 DRM_DEBUG_KMS("probing HDMI on SDVOC\n");
Paulo Zanonie2debe92013-02-18 19:00:27 -030011068 intel_hdmi_init(dev, GEN4_HDMIC, PORT_C);
Jesse Barnesb01f2c32009-12-11 11:07:17 -080011069 }
Imre Deake7281ea2013-05-08 13:14:08 +030011070 if (SUPPORTS_INTEGRATED_DP(dev))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030011071 intel_dp_init(dev, DP_C, PORT_C);
Eric Anholt725e30a2009-01-22 13:01:02 -080011072 }
Ma Ling27185ae2009-08-24 13:50:23 +080011073
Jesse Barnesb01f2c32009-12-11 11:07:17 -080011074 if (SUPPORTS_INTEGRATED_DP(dev) &&
Imre Deake7281ea2013-05-08 13:14:08 +030011075 (I915_READ(DP_D) & DP_DETECTED))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030011076 intel_dp_init(dev, DP_D, PORT_D);
Eric Anholtbad720f2009-10-22 16:11:14 -070011077 } else if (IS_GEN2(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -080011078 intel_dvo_init(dev);
11079
Zhenyu Wang103a1962009-11-27 11:44:36 +080011080 if (SUPPORTS_TV(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -080011081 intel_tv_init(dev);
11082
Chris Wilson4ef69c72010-09-09 15:14:28 +010011083 list_for_each_entry(encoder, &dev->mode_config.encoder_list, base.head) {
11084 encoder->base.possible_crtcs = encoder->crtc_mask;
11085 encoder->base.possible_clones =
Daniel Vetter66a92782012-07-12 20:08:18 +020011086 intel_encoder_clones(encoder);
Jesse Barnes79e53942008-11-07 14:24:08 -080011087 }
Chris Wilson47356eb2011-01-11 17:06:04 +000011088
Paulo Zanonidde86e22012-12-01 12:04:25 -020011089 intel_init_pch_refclk(dev);
Daniel Vetter270b3042012-10-27 15:52:05 +020011090
11091 drm_helper_move_panel_connectors_to_head(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -080011092}
11093
11094static void intel_user_framebuffer_destroy(struct drm_framebuffer *fb)
11095{
11096 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
Jesse Barnes79e53942008-11-07 14:24:08 -080011097
Daniel Vetteref2d6332014-02-10 18:00:38 +010011098 drm_framebuffer_cleanup(fb);
11099 WARN_ON(!intel_fb->obj->framebuffer_references--);
11100 drm_gem_object_unreference_unlocked(&intel_fb->obj->base);
Jesse Barnes79e53942008-11-07 14:24:08 -080011101 kfree(intel_fb);
11102}
11103
11104static int intel_user_framebuffer_create_handle(struct drm_framebuffer *fb,
Chris Wilson05394f32010-11-08 19:18:58 +000011105 struct drm_file *file,
Jesse Barnes79e53942008-11-07 14:24:08 -080011106 unsigned int *handle)
11107{
11108 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
Chris Wilson05394f32010-11-08 19:18:58 +000011109 struct drm_i915_gem_object *obj = intel_fb->obj;
Jesse Barnes79e53942008-11-07 14:24:08 -080011110
Chris Wilson05394f32010-11-08 19:18:58 +000011111 return drm_gem_handle_create(file, &obj->base, handle);
Jesse Barnes79e53942008-11-07 14:24:08 -080011112}
11113
11114static const struct drm_framebuffer_funcs intel_fb_funcs = {
11115 .destroy = intel_user_framebuffer_destroy,
11116 .create_handle = intel_user_framebuffer_create_handle,
11117};
11118
Daniel Vetterb5ea6422014-03-02 21:18:00 +010011119static int intel_framebuffer_init(struct drm_device *dev,
11120 struct intel_framebuffer *intel_fb,
11121 struct drm_mode_fb_cmd2 *mode_cmd,
11122 struct drm_i915_gem_object *obj)
Jesse Barnes79e53942008-11-07 14:24:08 -080011123{
Jesse Barnesa57ce0b2014-02-07 12:10:35 -080011124 int aligned_height;
Chris Wilsona35cdaa2013-06-25 17:26:45 +010011125 int pitch_limit;
Jesse Barnes79e53942008-11-07 14:24:08 -080011126 int ret;
11127
Daniel Vetterdd4916c2013-10-09 21:23:51 +020011128 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
11129
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000011130 if (obj->tiling_mode == I915_TILING_Y) {
11131 DRM_DEBUG("hardware does not support tiling Y\n");
Chris Wilson57cd6502010-08-08 12:34:44 +010011132 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000011133 }
Chris Wilson57cd6502010-08-08 12:34:44 +010011134
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000011135 if (mode_cmd->pitches[0] & 63) {
11136 DRM_DEBUG("pitch (%d) must be at least 64 byte aligned\n",
11137 mode_cmd->pitches[0]);
Chris Wilson57cd6502010-08-08 12:34:44 +010011138 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000011139 }
Chris Wilson57cd6502010-08-08 12:34:44 +010011140
Chris Wilsona35cdaa2013-06-25 17:26:45 +010011141 if (INTEL_INFO(dev)->gen >= 5 && !IS_VALLEYVIEW(dev)) {
11142 pitch_limit = 32*1024;
11143 } else if (INTEL_INFO(dev)->gen >= 4) {
11144 if (obj->tiling_mode)
11145 pitch_limit = 16*1024;
11146 else
11147 pitch_limit = 32*1024;
11148 } else if (INTEL_INFO(dev)->gen >= 3) {
11149 if (obj->tiling_mode)
11150 pitch_limit = 8*1024;
11151 else
11152 pitch_limit = 16*1024;
11153 } else
11154 /* XXX DSPC is limited to 4k tiled */
11155 pitch_limit = 8*1024;
11156
11157 if (mode_cmd->pitches[0] > pitch_limit) {
11158 DRM_DEBUG("%s pitch (%d) must be at less than %d\n",
11159 obj->tiling_mode ? "tiled" : "linear",
11160 mode_cmd->pitches[0], pitch_limit);
Ville Syrjälä5d7bd702012-10-31 17:50:18 +020011161 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000011162 }
Ville Syrjälä5d7bd702012-10-31 17:50:18 +020011163
11164 if (obj->tiling_mode != I915_TILING_NONE &&
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000011165 mode_cmd->pitches[0] != obj->stride) {
11166 DRM_DEBUG("pitch (%d) must match tiling stride (%d)\n",
11167 mode_cmd->pitches[0], obj->stride);
Ville Syrjälä5d7bd702012-10-31 17:50:18 +020011168 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000011169 }
Ville Syrjälä5d7bd702012-10-31 17:50:18 +020011170
Ville Syrjälä57779d02012-10-31 17:50:14 +020011171 /* Reject formats not supported by any plane early. */
Jesse Barnes308e5bc2011-11-14 14:51:28 -080011172 switch (mode_cmd->pixel_format) {
Ville Syrjälä57779d02012-10-31 17:50:14 +020011173 case DRM_FORMAT_C8:
Ville Syrjälä04b39242011-11-17 18:05:13 +020011174 case DRM_FORMAT_RGB565:
11175 case DRM_FORMAT_XRGB8888:
11176 case DRM_FORMAT_ARGB8888:
Ville Syrjälä57779d02012-10-31 17:50:14 +020011177 break;
11178 case DRM_FORMAT_XRGB1555:
11179 case DRM_FORMAT_ARGB1555:
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000011180 if (INTEL_INFO(dev)->gen > 3) {
Ville Syrjälä4ee62c72013-06-07 15:43:05 +000011181 DRM_DEBUG("unsupported pixel format: %s\n",
11182 drm_get_format_name(mode_cmd->pixel_format));
Ville Syrjälä57779d02012-10-31 17:50:14 +020011183 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000011184 }
Ville Syrjälä57779d02012-10-31 17:50:14 +020011185 break;
11186 case DRM_FORMAT_XBGR8888:
11187 case DRM_FORMAT_ABGR8888:
Ville Syrjälä04b39242011-11-17 18:05:13 +020011188 case DRM_FORMAT_XRGB2101010:
11189 case DRM_FORMAT_ARGB2101010:
Ville Syrjälä57779d02012-10-31 17:50:14 +020011190 case DRM_FORMAT_XBGR2101010:
11191 case DRM_FORMAT_ABGR2101010:
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000011192 if (INTEL_INFO(dev)->gen < 4) {
Ville Syrjälä4ee62c72013-06-07 15:43:05 +000011193 DRM_DEBUG("unsupported pixel format: %s\n",
11194 drm_get_format_name(mode_cmd->pixel_format));
Ville Syrjälä57779d02012-10-31 17:50:14 +020011195 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000011196 }
Jesse Barnesb5626742011-06-24 12:19:27 -070011197 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +020011198 case DRM_FORMAT_YUYV:
11199 case DRM_FORMAT_UYVY:
11200 case DRM_FORMAT_YVYU:
11201 case DRM_FORMAT_VYUY:
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000011202 if (INTEL_INFO(dev)->gen < 5) {
Ville Syrjälä4ee62c72013-06-07 15:43:05 +000011203 DRM_DEBUG("unsupported pixel format: %s\n",
11204 drm_get_format_name(mode_cmd->pixel_format));
Ville Syrjälä57779d02012-10-31 17:50:14 +020011205 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000011206 }
Chris Wilson57cd6502010-08-08 12:34:44 +010011207 break;
11208 default:
Ville Syrjälä4ee62c72013-06-07 15:43:05 +000011209 DRM_DEBUG("unsupported pixel format: %s\n",
11210 drm_get_format_name(mode_cmd->pixel_format));
Chris Wilson57cd6502010-08-08 12:34:44 +010011211 return -EINVAL;
11212 }
11213
Ville Syrjälä90f9a332012-10-31 17:50:19 +020011214 /* FIXME need to adjust LINOFF/TILEOFF accordingly. */
11215 if (mode_cmd->offsets[0] != 0)
11216 return -EINVAL;
11217
Jesse Barnesa57ce0b2014-02-07 12:10:35 -080011218 aligned_height = intel_align_height(dev, mode_cmd->height,
11219 obj->tiling_mode);
Daniel Vetter53155c02013-10-09 21:55:33 +020011220 /* FIXME drm helper for size checks (especially planar formats)? */
11221 if (obj->base.size < aligned_height * mode_cmd->pitches[0])
11222 return -EINVAL;
11223
Daniel Vetterc7d73f62012-12-13 23:38:38 +010011224 drm_helper_mode_fill_fb_struct(&intel_fb->base, mode_cmd);
11225 intel_fb->obj = obj;
Daniel Vetter80075d42013-10-09 21:23:52 +020011226 intel_fb->obj->framebuffer_references++;
Daniel Vetterc7d73f62012-12-13 23:38:38 +010011227
Jesse Barnes79e53942008-11-07 14:24:08 -080011228 ret = drm_framebuffer_init(dev, &intel_fb->base, &intel_fb_funcs);
11229 if (ret) {
11230 DRM_ERROR("framebuffer init failed %d\n", ret);
11231 return ret;
11232 }
11233
Jesse Barnes79e53942008-11-07 14:24:08 -080011234 return 0;
11235}
11236
Jesse Barnes79e53942008-11-07 14:24:08 -080011237static struct drm_framebuffer *
11238intel_user_framebuffer_create(struct drm_device *dev,
11239 struct drm_file *filp,
Jesse Barnes308e5bc2011-11-14 14:51:28 -080011240 struct drm_mode_fb_cmd2 *mode_cmd)
Jesse Barnes79e53942008-11-07 14:24:08 -080011241{
Chris Wilson05394f32010-11-08 19:18:58 +000011242 struct drm_i915_gem_object *obj;
Jesse Barnes79e53942008-11-07 14:24:08 -080011243
Jesse Barnes308e5bc2011-11-14 14:51:28 -080011244 obj = to_intel_bo(drm_gem_object_lookup(dev, filp,
11245 mode_cmd->handles[0]));
Chris Wilsonc8725222011-02-19 11:31:06 +000011246 if (&obj->base == NULL)
Chris Wilsoncce13ff2010-08-08 13:36:38 +010011247 return ERR_PTR(-ENOENT);
Jesse Barnes79e53942008-11-07 14:24:08 -080011248
Chris Wilsond2dff872011-04-19 08:36:26 +010011249 return intel_framebuffer_create(dev, mode_cmd, obj);
Jesse Barnes79e53942008-11-07 14:24:08 -080011250}
11251
Daniel Vetter4520f532013-10-09 09:18:51 +020011252#ifndef CONFIG_DRM_I915_FBDEV
Daniel Vetter0632fef2013-10-08 17:44:49 +020011253static inline void intel_fbdev_output_poll_changed(struct drm_device *dev)
Daniel Vetter4520f532013-10-09 09:18:51 +020011254{
11255}
11256#endif
11257
Jesse Barnes79e53942008-11-07 14:24:08 -080011258static const struct drm_mode_config_funcs intel_mode_funcs = {
Jesse Barnes79e53942008-11-07 14:24:08 -080011259 .fb_create = intel_user_framebuffer_create,
Daniel Vetter0632fef2013-10-08 17:44:49 +020011260 .output_poll_changed = intel_fbdev_output_poll_changed,
Jesse Barnes79e53942008-11-07 14:24:08 -080011261};
11262
Jesse Barnese70236a2009-09-21 10:42:27 -070011263/* Set up chip specific display functions */
11264static void intel_init_display(struct drm_device *dev)
11265{
11266 struct drm_i915_private *dev_priv = dev->dev_private;
11267
Daniel Vetteree9300b2013-06-03 22:40:22 +020011268 if (HAS_PCH_SPLIT(dev) || IS_G4X(dev))
11269 dev_priv->display.find_dpll = g4x_find_best_dpll;
Chon Ming Leeef9348c2014-04-09 13:28:18 +030011270 else if (IS_CHERRYVIEW(dev))
11271 dev_priv->display.find_dpll = chv_find_best_dpll;
Daniel Vetteree9300b2013-06-03 22:40:22 +020011272 else if (IS_VALLEYVIEW(dev))
11273 dev_priv->display.find_dpll = vlv_find_best_dpll;
11274 else if (IS_PINEVIEW(dev))
11275 dev_priv->display.find_dpll = pnv_find_best_dpll;
11276 else
11277 dev_priv->display.find_dpll = i9xx_find_best_dpll;
11278
Paulo Zanoniaffa9352012-11-23 15:30:39 -020011279 if (HAS_DDI(dev)) {
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010011280 dev_priv->display.get_pipe_config = haswell_get_pipe_config;
Jesse Barnes4c6baa52014-03-07 08:57:50 -080011281 dev_priv->display.get_plane_config = ironlake_get_plane_config;
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -030011282 dev_priv->display.crtc_mode_set = haswell_crtc_mode_set;
Paulo Zanoni4f771f12012-10-23 18:29:51 -020011283 dev_priv->display.crtc_enable = haswell_crtc_enable;
11284 dev_priv->display.crtc_disable = haswell_crtc_disable;
Paulo Zanoni6441ab52012-10-05 12:05:58 -030011285 dev_priv->display.off = haswell_crtc_off;
Matt Roper262ca2b2014-03-18 17:22:55 -070011286 dev_priv->display.update_primary_plane =
11287 ironlake_update_primary_plane;
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -030011288 } else if (HAS_PCH_SPLIT(dev)) {
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010011289 dev_priv->display.get_pipe_config = ironlake_get_pipe_config;
Jesse Barnes4c6baa52014-03-07 08:57:50 -080011290 dev_priv->display.get_plane_config = ironlake_get_plane_config;
Eric Anholtf564048e2011-03-30 13:01:02 -070011291 dev_priv->display.crtc_mode_set = ironlake_crtc_mode_set;
Daniel Vetter76e5a892012-06-29 22:39:33 +020011292 dev_priv->display.crtc_enable = ironlake_crtc_enable;
11293 dev_priv->display.crtc_disable = ironlake_crtc_disable;
Jesse Barnesee7b9f92012-04-20 17:11:53 +010011294 dev_priv->display.off = ironlake_crtc_off;
Matt Roper262ca2b2014-03-18 17:22:55 -070011295 dev_priv->display.update_primary_plane =
11296 ironlake_update_primary_plane;
Jesse Barnes89b667f2013-04-18 14:51:36 -070011297 } else if (IS_VALLEYVIEW(dev)) {
11298 dev_priv->display.get_pipe_config = i9xx_get_pipe_config;
Jesse Barnes1ad292b2014-03-07 08:57:49 -080011299 dev_priv->display.get_plane_config = i9xx_get_plane_config;
Jesse Barnes89b667f2013-04-18 14:51:36 -070011300 dev_priv->display.crtc_mode_set = i9xx_crtc_mode_set;
11301 dev_priv->display.crtc_enable = valleyview_crtc_enable;
11302 dev_priv->display.crtc_disable = i9xx_crtc_disable;
11303 dev_priv->display.off = i9xx_crtc_off;
Matt Roper262ca2b2014-03-18 17:22:55 -070011304 dev_priv->display.update_primary_plane =
11305 i9xx_update_primary_plane;
Eric Anholtf564048e2011-03-30 13:01:02 -070011306 } else {
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010011307 dev_priv->display.get_pipe_config = i9xx_get_pipe_config;
Jesse Barnes1ad292b2014-03-07 08:57:49 -080011308 dev_priv->display.get_plane_config = i9xx_get_plane_config;
Eric Anholtf564048e2011-03-30 13:01:02 -070011309 dev_priv->display.crtc_mode_set = i9xx_crtc_mode_set;
Daniel Vetter76e5a892012-06-29 22:39:33 +020011310 dev_priv->display.crtc_enable = i9xx_crtc_enable;
11311 dev_priv->display.crtc_disable = i9xx_crtc_disable;
Jesse Barnesee7b9f92012-04-20 17:11:53 +010011312 dev_priv->display.off = i9xx_crtc_off;
Matt Roper262ca2b2014-03-18 17:22:55 -070011313 dev_priv->display.update_primary_plane =
11314 i9xx_update_primary_plane;
Eric Anholtf564048e2011-03-30 13:01:02 -070011315 }
Jesse Barnese70236a2009-09-21 10:42:27 -070011316
Jesse Barnese70236a2009-09-21 10:42:27 -070011317 /* Returns the core display clock speed */
Jesse Barnes25eb05fc2012-03-28 13:39:23 -070011318 if (IS_VALLEYVIEW(dev))
11319 dev_priv->display.get_display_clock_speed =
11320 valleyview_get_display_clock_speed;
11321 else if (IS_I945G(dev) || (IS_G33(dev) && !IS_PINEVIEW_M(dev)))
Jesse Barnese70236a2009-09-21 10:42:27 -070011322 dev_priv->display.get_display_clock_speed =
11323 i945_get_display_clock_speed;
11324 else if (IS_I915G(dev))
11325 dev_priv->display.get_display_clock_speed =
11326 i915_get_display_clock_speed;
Daniel Vetter257a7ff2013-07-26 08:35:42 +020011327 else if (IS_I945GM(dev) || IS_845G(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -070011328 dev_priv->display.get_display_clock_speed =
11329 i9xx_misc_get_display_clock_speed;
Daniel Vetter257a7ff2013-07-26 08:35:42 +020011330 else if (IS_PINEVIEW(dev))
11331 dev_priv->display.get_display_clock_speed =
11332 pnv_get_display_clock_speed;
Jesse Barnese70236a2009-09-21 10:42:27 -070011333 else if (IS_I915GM(dev))
11334 dev_priv->display.get_display_clock_speed =
11335 i915gm_get_display_clock_speed;
11336 else if (IS_I865G(dev))
11337 dev_priv->display.get_display_clock_speed =
11338 i865_get_display_clock_speed;
Daniel Vetterf0f8a9c2009-09-15 22:57:33 +020011339 else if (IS_I85X(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -070011340 dev_priv->display.get_display_clock_speed =
11341 i855_get_display_clock_speed;
11342 else /* 852, 830 */
11343 dev_priv->display.get_display_clock_speed =
11344 i830_get_display_clock_speed;
11345
Zhenyu Wang7f8a8562010-04-01 13:07:53 +080011346 if (HAS_PCH_SPLIT(dev)) {
Chris Wilsonf00a3dd2010-10-21 14:57:17 +010011347 if (IS_GEN5(dev)) {
Jesse Barnes674cf962011-04-28 14:27:04 -070011348 dev_priv->display.fdi_link_train = ironlake_fdi_link_train;
Wu Fengguange0dac652011-09-05 14:25:34 +080011349 dev_priv->display.write_eld = ironlake_write_eld;
Yuanhan Liu13982612010-12-15 15:42:31 +080011350 } else if (IS_GEN6(dev)) {
Jesse Barnes674cf962011-04-28 14:27:04 -070011351 dev_priv->display.fdi_link_train = gen6_fdi_link_train;
Wu Fengguange0dac652011-09-05 14:25:34 +080011352 dev_priv->display.write_eld = ironlake_write_eld;
Paulo Zanoni9a952a02014-03-07 20:12:34 -030011353 dev_priv->display.modeset_global_resources =
11354 snb_modeset_global_resources;
Jesse Barnes357555c2011-04-28 15:09:55 -070011355 } else if (IS_IVYBRIDGE(dev)) {
11356 /* FIXME: detect B0+ stepping and use auto training */
11357 dev_priv->display.fdi_link_train = ivb_manual_fdi_link_train;
Wu Fengguange0dac652011-09-05 14:25:34 +080011358 dev_priv->display.write_eld = ironlake_write_eld;
Daniel Vetter01a415f2012-10-27 15:58:40 +020011359 dev_priv->display.modeset_global_resources =
11360 ivb_modeset_global_resources;
Ben Widawsky4e0bbc32013-11-02 21:07:07 -070011361 } else if (IS_HASWELL(dev) || IS_GEN8(dev)) {
Eugeni Dodonovc82e4d22012-05-09 15:37:21 -030011362 dev_priv->display.fdi_link_train = hsw_fdi_link_train;
Wang Xingchao83358c852012-08-16 22:43:37 +080011363 dev_priv->display.write_eld = haswell_write_eld;
Daniel Vetterd6dd9eb2013-01-29 16:35:20 -020011364 dev_priv->display.modeset_global_resources =
11365 haswell_modeset_global_resources;
Paulo Zanonia0e63c22012-12-06 11:12:39 -020011366 }
Jesse Barnes6067aae2011-04-28 15:04:31 -070011367 } else if (IS_G4X(dev)) {
Wu Fengguange0dac652011-09-05 14:25:34 +080011368 dev_priv->display.write_eld = g4x_write_eld;
Jesse Barnes30a970c2013-11-04 13:48:12 -080011369 } else if (IS_VALLEYVIEW(dev)) {
11370 dev_priv->display.modeset_global_resources =
11371 valleyview_modeset_global_resources;
Mengdong Lin9ca2fe72013-11-01 00:17:03 -040011372 dev_priv->display.write_eld = ironlake_write_eld;
Jesse Barnese70236a2009-09-21 10:42:27 -070011373 }
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011374
11375 /* Default just returns -ENODEV to indicate unsupported */
11376 dev_priv->display.queue_flip = intel_default_queue_flip;
11377
11378 switch (INTEL_INFO(dev)->gen) {
11379 case 2:
11380 dev_priv->display.queue_flip = intel_gen2_queue_flip;
11381 break;
11382
11383 case 3:
11384 dev_priv->display.queue_flip = intel_gen3_queue_flip;
11385 break;
11386
11387 case 4:
11388 case 5:
11389 dev_priv->display.queue_flip = intel_gen4_queue_flip;
11390 break;
11391
11392 case 6:
11393 dev_priv->display.queue_flip = intel_gen6_queue_flip;
11394 break;
Jesse Barnes7c9017e2011-06-16 12:18:54 -070011395 case 7:
Ben Widawsky4e0bbc32013-11-02 21:07:07 -070011396 case 8: /* FIXME(BDW): Check that the gen8 RCS flip works. */
Jesse Barnes7c9017e2011-06-16 12:18:54 -070011397 dev_priv->display.queue_flip = intel_gen7_queue_flip;
11398 break;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011399 }
Jani Nikula7bd688c2013-11-08 16:48:56 +020011400
11401 intel_panel_init_backlight_funcs(dev);
Jesse Barnese70236a2009-09-21 10:42:27 -070011402}
11403
Jesse Barnesb690e962010-07-19 13:53:12 -070011404/*
11405 * Some BIOSes insist on assuming the GPU's pipe A is enabled at suspend,
11406 * resume, or other times. This quirk makes sure that's the case for
11407 * affected systems.
11408 */
Akshay Joshi0206e352011-08-16 15:34:10 -040011409static void quirk_pipea_force(struct drm_device *dev)
Jesse Barnesb690e962010-07-19 13:53:12 -070011410{
11411 struct drm_i915_private *dev_priv = dev->dev_private;
11412
11413 dev_priv->quirks |= QUIRK_PIPEA_FORCE;
Daniel Vetterbc0daf42012-04-01 13:16:49 +020011414 DRM_INFO("applying pipe a force quirk\n");
Jesse Barnesb690e962010-07-19 13:53:12 -070011415}
11416
Keith Packard435793d2011-07-12 14:56:22 -070011417/*
11418 * Some machines (Lenovo U160) do not work with SSC on LVDS for some reason
11419 */
11420static void quirk_ssc_force_disable(struct drm_device *dev)
11421{
11422 struct drm_i915_private *dev_priv = dev->dev_private;
11423 dev_priv->quirks |= QUIRK_LVDS_SSC_DISABLE;
Daniel Vetterbc0daf42012-04-01 13:16:49 +020011424 DRM_INFO("applying lvds SSC disable quirk\n");
Keith Packard435793d2011-07-12 14:56:22 -070011425}
11426
Carsten Emde4dca20e2012-03-15 15:56:26 +010011427/*
Carsten Emde5a15ab52012-03-15 15:56:27 +010011428 * A machine (e.g. Acer Aspire 5734Z) may need to invert the panel backlight
11429 * brightness value
Carsten Emde4dca20e2012-03-15 15:56:26 +010011430 */
11431static void quirk_invert_brightness(struct drm_device *dev)
11432{
11433 struct drm_i915_private *dev_priv = dev->dev_private;
11434 dev_priv->quirks |= QUIRK_INVERT_BRIGHTNESS;
Daniel Vetterbc0daf42012-04-01 13:16:49 +020011435 DRM_INFO("applying inverted panel brightness quirk\n");
Jesse Barnesb690e962010-07-19 13:53:12 -070011436}
11437
11438struct intel_quirk {
11439 int device;
11440 int subsystem_vendor;
11441 int subsystem_device;
11442 void (*hook)(struct drm_device *dev);
11443};
11444
Egbert Eich5f85f1762012-10-14 15:46:38 +020011445/* For systems that don't have a meaningful PCI subdevice/subvendor ID */
11446struct intel_dmi_quirk {
11447 void (*hook)(struct drm_device *dev);
11448 const struct dmi_system_id (*dmi_id_list)[];
11449};
11450
11451static int intel_dmi_reverse_brightness(const struct dmi_system_id *id)
11452{
11453 DRM_INFO("Backlight polarity reversed on %s\n", id->ident);
11454 return 1;
11455}
11456
11457static const struct intel_dmi_quirk intel_dmi_quirks[] = {
11458 {
11459 .dmi_id_list = &(const struct dmi_system_id[]) {
11460 {
11461 .callback = intel_dmi_reverse_brightness,
11462 .ident = "NCR Corporation",
11463 .matches = {DMI_MATCH(DMI_SYS_VENDOR, "NCR Corporation"),
11464 DMI_MATCH(DMI_PRODUCT_NAME, ""),
11465 },
11466 },
11467 { } /* terminating entry */
11468 },
11469 .hook = quirk_invert_brightness,
11470 },
11471};
11472
Ben Widawskyc43b5632012-04-16 14:07:40 -070011473static struct intel_quirk intel_quirks[] = {
Jesse Barnesb690e962010-07-19 13:53:12 -070011474 /* HP Mini needs pipe A force quirk (LP: #322104) */
Akshay Joshi0206e352011-08-16 15:34:10 -040011475 { 0x27ae, 0x103c, 0x361a, quirk_pipea_force },
Jesse Barnesb690e962010-07-19 13:53:12 -070011476
Jesse Barnesb690e962010-07-19 13:53:12 -070011477 /* Toshiba Protege R-205, S-209 needs pipe A force quirk */
11478 { 0x2592, 0x1179, 0x0001, quirk_pipea_force },
11479
Jesse Barnesb690e962010-07-19 13:53:12 -070011480 /* ThinkPad T60 needs pipe A force quirk (bug #16494) */
11481 { 0x2782, 0x17aa, 0x201a, quirk_pipea_force },
11482
Chris Wilsona4945f92013-10-08 11:16:59 +010011483 /* 830 needs to leave pipe A & dpll A up */
Daniel Vetterdcdaed62012-08-12 21:19:34 +020011484 { 0x3577, PCI_ANY_ID, PCI_ANY_ID, quirk_pipea_force },
Keith Packard435793d2011-07-12 14:56:22 -070011485
11486 /* Lenovo U160 cannot use SSC on LVDS */
11487 { 0x0046, 0x17aa, 0x3920, quirk_ssc_force_disable },
Michel Alexandre Salim070d3292011-07-28 18:52:06 +020011488
11489 /* Sony Vaio Y cannot use SSC on LVDS */
11490 { 0x0046, 0x104d, 0x9076, quirk_ssc_force_disable },
Carsten Emde5a15ab52012-03-15 15:56:27 +010011491
Alexander van Heukelumbe505f62013-12-28 21:00:39 +010011492 /* Acer Aspire 5734Z must invert backlight brightness */
11493 { 0x2a42, 0x1025, 0x0459, quirk_invert_brightness },
11494
11495 /* Acer/eMachines G725 */
11496 { 0x2a42, 0x1025, 0x0210, quirk_invert_brightness },
11497
11498 /* Acer/eMachines e725 */
11499 { 0x2a42, 0x1025, 0x0212, quirk_invert_brightness },
11500
11501 /* Acer/Packard Bell NCL20 */
11502 { 0x2a42, 0x1025, 0x034b, quirk_invert_brightness },
11503
11504 /* Acer Aspire 4736Z */
11505 { 0x2a42, 0x1025, 0x0260, quirk_invert_brightness },
Jani Nikula0f540c32014-01-13 17:30:34 +020011506
11507 /* Acer Aspire 5336 */
11508 { 0x2a42, 0x1025, 0x048a, quirk_invert_brightness },
Jesse Barnesb690e962010-07-19 13:53:12 -070011509};
11510
11511static void intel_init_quirks(struct drm_device *dev)
11512{
11513 struct pci_dev *d = dev->pdev;
11514 int i;
11515
11516 for (i = 0; i < ARRAY_SIZE(intel_quirks); i++) {
11517 struct intel_quirk *q = &intel_quirks[i];
11518
11519 if (d->device == q->device &&
11520 (d->subsystem_vendor == q->subsystem_vendor ||
11521 q->subsystem_vendor == PCI_ANY_ID) &&
11522 (d->subsystem_device == q->subsystem_device ||
11523 q->subsystem_device == PCI_ANY_ID))
11524 q->hook(dev);
11525 }
Egbert Eich5f85f1762012-10-14 15:46:38 +020011526 for (i = 0; i < ARRAY_SIZE(intel_dmi_quirks); i++) {
11527 if (dmi_check_system(*intel_dmi_quirks[i].dmi_id_list) != 0)
11528 intel_dmi_quirks[i].hook(dev);
11529 }
Jesse Barnesb690e962010-07-19 13:53:12 -070011530}
11531
Jesse Barnes9cce37f2010-08-13 15:11:26 -070011532/* Disable the VGA plane that we never use */
11533static void i915_disable_vga(struct drm_device *dev)
11534{
11535 struct drm_i915_private *dev_priv = dev->dev_private;
11536 u8 sr1;
Ville Syrjälä766aa1c2013-01-25 21:44:46 +020011537 u32 vga_reg = i915_vgacntrl_reg(dev);
Jesse Barnes9cce37f2010-08-13 15:11:26 -070011538
Ville Syrjälä2b37c612014-01-22 21:32:38 +020011539 /* WaEnableVGAAccessThroughIOPort:ctg,elk,ilk,snb,ivb,vlv,hsw */
Jesse Barnes9cce37f2010-08-13 15:11:26 -070011540 vga_get_uninterruptible(dev->pdev, VGA_RSRC_LEGACY_IO);
Jesse Barnes3fdcf432012-04-06 11:46:27 -070011541 outb(SR01, VGA_SR_INDEX);
Jesse Barnes9cce37f2010-08-13 15:11:26 -070011542 sr1 = inb(VGA_SR_DATA);
11543 outb(sr1 | 1<<5, VGA_SR_DATA);
11544 vga_put(dev->pdev, VGA_RSRC_LEGACY_IO);
11545 udelay(300);
11546
11547 I915_WRITE(vga_reg, VGA_DISP_DISABLE);
11548 POSTING_READ(vga_reg);
11549}
11550
Daniel Vetterf8175862012-04-10 15:50:11 +020011551void intel_modeset_init_hw(struct drm_device *dev)
11552{
Eugeni Dodonova8f78b52012-06-28 15:55:35 -030011553 intel_prepare_ddi(dev);
11554
Daniel Vetterf8175862012-04-10 15:50:11 +020011555 intel_init_clock_gating(dev);
11556
Jesse Barnes5382f5f352013-12-16 16:34:24 -080011557 intel_reset_dpio(dev);
Jesse Barnes40e9cf62013-10-03 11:35:46 -070011558
Daniel Vetter8090c6b2012-06-24 16:42:32 +020011559 intel_enable_gt_powersave(dev);
Daniel Vetterf8175862012-04-10 15:50:11 +020011560}
11561
Imre Deak7d708ee2013-04-17 14:04:50 +030011562void intel_modeset_suspend_hw(struct drm_device *dev)
11563{
11564 intel_suspend_hw(dev);
11565}
11566
Jesse Barnes79e53942008-11-07 14:24:08 -080011567void intel_modeset_init(struct drm_device *dev)
11568{
Jesse Barnes652c3932009-08-17 13:31:43 -070011569 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiau1fe47782014-03-03 17:31:47 +000011570 int sprite, ret;
Damien Lespiau8cc87b72014-03-03 17:31:44 +000011571 enum pipe pipe;
Jesse Barnes46f297f2014-03-07 08:57:48 -080011572 struct intel_crtc *crtc;
Jesse Barnes79e53942008-11-07 14:24:08 -080011573
11574 drm_mode_config_init(dev);
11575
11576 dev->mode_config.min_width = 0;
11577 dev->mode_config.min_height = 0;
11578
Dave Airlie019d96c2011-09-29 16:20:42 +010011579 dev->mode_config.preferred_depth = 24;
11580 dev->mode_config.prefer_shadow = 1;
11581
Laurent Pincharte6ecefa2012-05-17 13:27:23 +020011582 dev->mode_config.funcs = &intel_mode_funcs;
Jesse Barnes79e53942008-11-07 14:24:08 -080011583
Jesse Barnesb690e962010-07-19 13:53:12 -070011584 intel_init_quirks(dev);
11585
Eugeni Dodonov1fa61102012-04-18 15:29:26 -030011586 intel_init_pm(dev);
11587
Ben Widawskye3c74752013-04-05 13:12:39 -070011588 if (INTEL_INFO(dev)->num_pipes == 0)
11589 return;
11590
Jesse Barnese70236a2009-09-21 10:42:27 -070011591 intel_init_display(dev);
11592
Chris Wilsona6c45cf2010-09-17 00:32:17 +010011593 if (IS_GEN2(dev)) {
11594 dev->mode_config.max_width = 2048;
11595 dev->mode_config.max_height = 2048;
11596 } else if (IS_GEN3(dev)) {
Keith Packard5e4d6fa2009-07-12 23:53:17 -070011597 dev->mode_config.max_width = 4096;
11598 dev->mode_config.max_height = 4096;
Jesse Barnes79e53942008-11-07 14:24:08 -080011599 } else {
Chris Wilsona6c45cf2010-09-17 00:32:17 +010011600 dev->mode_config.max_width = 8192;
11601 dev->mode_config.max_height = 8192;
Jesse Barnes79e53942008-11-07 14:24:08 -080011602 }
Damien Lespiau068be562014-03-28 14:17:49 +000011603
11604 if (IS_GEN2(dev)) {
11605 dev->mode_config.cursor_width = GEN2_CURSOR_WIDTH;
11606 dev->mode_config.cursor_height = GEN2_CURSOR_HEIGHT;
11607 } else {
11608 dev->mode_config.cursor_width = MAX_CURSOR_WIDTH;
11609 dev->mode_config.cursor_height = MAX_CURSOR_HEIGHT;
11610 }
11611
Ben Widawsky5d4545a2013-01-17 12:45:15 -080011612 dev->mode_config.fb_base = dev_priv->gtt.mappable_base;
Jesse Barnes79e53942008-11-07 14:24:08 -080011613
Zhao Yakui28c97732009-10-09 11:39:41 +080011614 DRM_DEBUG_KMS("%d display pipe%s available.\n",
Ben Widawsky7eb552a2013-03-13 14:05:41 -070011615 INTEL_INFO(dev)->num_pipes,
11616 INTEL_INFO(dev)->num_pipes > 1 ? "s" : "");
Jesse Barnes79e53942008-11-07 14:24:08 -080011617
Damien Lespiau8cc87b72014-03-03 17:31:44 +000011618 for_each_pipe(pipe) {
11619 intel_crtc_init(dev, pipe);
Damien Lespiau1fe47782014-03-03 17:31:47 +000011620 for_each_sprite(pipe, sprite) {
11621 ret = intel_plane_init(dev, pipe, sprite);
Jesse Barnes7f1f3852013-04-02 11:22:20 -070011622 if (ret)
Ville Syrjälä06da8da2013-04-17 17:48:51 +030011623 DRM_DEBUG_KMS("pipe %c sprite %c init failed: %d\n",
Damien Lespiau1fe47782014-03-03 17:31:47 +000011624 pipe_name(pipe), sprite_name(pipe, sprite), ret);
Jesse Barnes7f1f3852013-04-02 11:22:20 -070011625 }
Jesse Barnes79e53942008-11-07 14:24:08 -080011626 }
11627
Jesse Barnesf42bb702013-12-16 16:34:23 -080011628 intel_init_dpio(dev);
Jesse Barnes5382f5f352013-12-16 16:34:24 -080011629 intel_reset_dpio(dev);
Jesse Barnesf42bb702013-12-16 16:34:23 -080011630
Paulo Zanoni79f689a2012-10-05 12:05:52 -030011631 intel_cpu_pll_init(dev);
Daniel Vettere72f9fb2013-06-05 13:34:06 +020011632 intel_shared_dpll_init(dev);
Jesse Barnesee7b9f92012-04-20 17:11:53 +010011633
Jesse Barnes9cce37f2010-08-13 15:11:26 -070011634 /* Just disable it once at startup */
11635 i915_disable_vga(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -080011636 intel_setup_outputs(dev);
Chris Wilson11be49e2012-11-15 11:32:20 +000011637
11638 /* Just in case the BIOS is doing something questionable. */
11639 intel_disable_fbc(dev);
Jesse Barnesfa9fa082014-02-11 15:28:56 -080011640
Jesse Barnes8b687df2014-02-21 13:13:39 -080011641 mutex_lock(&dev->mode_config.mutex);
Jesse Barnesfa9fa082014-02-11 15:28:56 -080011642 intel_modeset_setup_hw_state(dev, false);
Jesse Barnes8b687df2014-02-21 13:13:39 -080011643 mutex_unlock(&dev->mode_config.mutex);
Jesse Barnes46f297f2014-03-07 08:57:48 -080011644
Damien Lespiaud3fcc802014-05-13 23:32:22 +010011645 for_each_intel_crtc(dev, crtc) {
Jesse Barnes46f297f2014-03-07 08:57:48 -080011646 if (!crtc->active)
11647 continue;
11648
Jesse Barnes46f297f2014-03-07 08:57:48 -080011649 /*
Jesse Barnes46f297f2014-03-07 08:57:48 -080011650 * Note that reserving the BIOS fb up front prevents us
11651 * from stuffing other stolen allocations like the ring
11652 * on top. This prevents some ugliness at boot time, and
11653 * can even allow for smooth boot transitions if the BIOS
11654 * fb is large enough for the active pipe configuration.
11655 */
11656 if (dev_priv->display.get_plane_config) {
11657 dev_priv->display.get_plane_config(crtc,
11658 &crtc->plane_config);
11659 /*
11660 * If the fb is shared between multiple heads, we'll
11661 * just get the first one.
11662 */
Jesse Barnes484b41d2014-03-07 08:57:55 -080011663 intel_find_plane_obj(crtc, &crtc->plane_config);
Jesse Barnes46f297f2014-03-07 08:57:48 -080011664 }
Jesse Barnes46f297f2014-03-07 08:57:48 -080011665 }
Chris Wilson2c7111d2011-03-29 10:40:27 +010011666}
Jesse Barnesd5bb0812011-01-05 12:01:26 -080011667
Daniel Vetter24929352012-07-02 20:28:59 +020011668static void
11669intel_connector_break_all_links(struct intel_connector *connector)
11670{
11671 connector->base.dpms = DRM_MODE_DPMS_OFF;
11672 connector->base.encoder = NULL;
11673 connector->encoder->connectors_active = false;
11674 connector->encoder->base.crtc = NULL;
11675}
11676
Daniel Vetter7fad7982012-07-04 17:51:47 +020011677static void intel_enable_pipe_a(struct drm_device *dev)
11678{
11679 struct intel_connector *connector;
11680 struct drm_connector *crt = NULL;
11681 struct intel_load_detect_pipe load_detect_temp;
11682
11683 /* We can't just switch on the pipe A, we need to set things up with a
11684 * proper mode and output configuration. As a gross hack, enable pipe A
11685 * by enabling the load detect pipe once. */
11686 list_for_each_entry(connector,
11687 &dev->mode_config.connector_list,
11688 base.head) {
11689 if (connector->encoder->type == INTEL_OUTPUT_ANALOG) {
11690 crt = &connector->base;
11691 break;
11692 }
11693 }
11694
11695 if (!crt)
11696 return;
11697
11698 if (intel_get_load_detect_pipe(crt, NULL, &load_detect_temp))
11699 intel_release_load_detect_pipe(crt, &load_detect_temp);
11700
11701
11702}
11703
Daniel Vetterfa555832012-10-10 23:14:00 +020011704static bool
11705intel_check_plane_mapping(struct intel_crtc *crtc)
11706{
Ben Widawsky7eb552a2013-03-13 14:05:41 -070011707 struct drm_device *dev = crtc->base.dev;
11708 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterfa555832012-10-10 23:14:00 +020011709 u32 reg, val;
11710
Ben Widawsky7eb552a2013-03-13 14:05:41 -070011711 if (INTEL_INFO(dev)->num_pipes == 1)
Daniel Vetterfa555832012-10-10 23:14:00 +020011712 return true;
11713
11714 reg = DSPCNTR(!crtc->plane);
11715 val = I915_READ(reg);
11716
11717 if ((val & DISPLAY_PLANE_ENABLE) &&
11718 (!!(val & DISPPLANE_SEL_PIPE_MASK) == crtc->pipe))
11719 return false;
11720
11721 return true;
11722}
11723
Daniel Vetter24929352012-07-02 20:28:59 +020011724static void intel_sanitize_crtc(struct intel_crtc *crtc)
11725{
11726 struct drm_device *dev = crtc->base.dev;
11727 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterfa555832012-10-10 23:14:00 +020011728 u32 reg;
Daniel Vetter24929352012-07-02 20:28:59 +020011729
Daniel Vetter24929352012-07-02 20:28:59 +020011730 /* Clear any frame start delays used for debugging left by the BIOS */
Daniel Vetter3b117c82013-04-17 20:15:07 +020011731 reg = PIPECONF(crtc->config.cpu_transcoder);
Daniel Vetter24929352012-07-02 20:28:59 +020011732 I915_WRITE(reg, I915_READ(reg) & ~PIPECONF_FRAME_START_DELAY_MASK);
11733
11734 /* We need to sanitize the plane -> pipe mapping first because this will
Daniel Vetterfa555832012-10-10 23:14:00 +020011735 * disable the crtc (and hence change the state) if it is wrong. Note
11736 * that gen4+ has a fixed plane -> pipe mapping. */
11737 if (INTEL_INFO(dev)->gen < 4 && !intel_check_plane_mapping(crtc)) {
Daniel Vetter24929352012-07-02 20:28:59 +020011738 struct intel_connector *connector;
11739 bool plane;
11740
Daniel Vetter24929352012-07-02 20:28:59 +020011741 DRM_DEBUG_KMS("[CRTC:%d] wrong plane connection detected!\n",
11742 crtc->base.base.id);
11743
11744 /* Pipe has the wrong plane attached and the plane is active.
11745 * Temporarily change the plane mapping and disable everything
11746 * ... */
11747 plane = crtc->plane;
11748 crtc->plane = !plane;
11749 dev_priv->display.crtc_disable(&crtc->base);
11750 crtc->plane = plane;
11751
11752 /* ... and break all links. */
11753 list_for_each_entry(connector, &dev->mode_config.connector_list,
11754 base.head) {
11755 if (connector->encoder->base.crtc != &crtc->base)
11756 continue;
11757
11758 intel_connector_break_all_links(connector);
11759 }
11760
11761 WARN_ON(crtc->active);
11762 crtc->base.enabled = false;
11763 }
Daniel Vetter24929352012-07-02 20:28:59 +020011764
Daniel Vetter7fad7982012-07-04 17:51:47 +020011765 if (dev_priv->quirks & QUIRK_PIPEA_FORCE &&
11766 crtc->pipe == PIPE_A && !crtc->active) {
11767 /* BIOS forgot to enable pipe A, this mostly happens after
11768 * resume. Force-enable the pipe to fix this, the update_dpms
11769 * call below we restore the pipe to the right state, but leave
11770 * the required bits on. */
11771 intel_enable_pipe_a(dev);
11772 }
11773
Daniel Vetter24929352012-07-02 20:28:59 +020011774 /* Adjust the state of the output pipe according to whether we
11775 * have active connectors/encoders. */
11776 intel_crtc_update_dpms(&crtc->base);
11777
11778 if (crtc->active != crtc->base.enabled) {
11779 struct intel_encoder *encoder;
11780
11781 /* This can happen either due to bugs in the get_hw_state
11782 * functions or because the pipe is force-enabled due to the
11783 * pipe A quirk. */
11784 DRM_DEBUG_KMS("[CRTC:%d] hw state adjusted, was %s, now %s\n",
11785 crtc->base.base.id,
11786 crtc->base.enabled ? "enabled" : "disabled",
11787 crtc->active ? "enabled" : "disabled");
11788
11789 crtc->base.enabled = crtc->active;
11790
11791 /* Because we only establish the connector -> encoder ->
11792 * crtc links if something is active, this means the
11793 * crtc is now deactivated. Break the links. connector
11794 * -> encoder links are only establish when things are
11795 * actually up, hence no need to break them. */
11796 WARN_ON(crtc->active);
11797
11798 for_each_encoder_on_crtc(dev, &crtc->base, encoder) {
11799 WARN_ON(encoder->connectors_active);
11800 encoder->base.crtc = NULL;
11801 }
11802 }
Daniel Vetter4cc31482014-03-24 00:01:41 +010011803 if (crtc->active) {
11804 /*
11805 * We start out with underrun reporting disabled to avoid races.
11806 * For correct bookkeeping mark this on active crtcs.
11807 *
11808 * No protection against concurrent access is required - at
11809 * worst a fifo underrun happens which also sets this to false.
11810 */
11811 crtc->cpu_fifo_underrun_disabled = true;
11812 crtc->pch_fifo_underrun_disabled = true;
11813 }
Daniel Vetter24929352012-07-02 20:28:59 +020011814}
11815
11816static void intel_sanitize_encoder(struct intel_encoder *encoder)
11817{
11818 struct intel_connector *connector;
11819 struct drm_device *dev = encoder->base.dev;
11820
11821 /* We need to check both for a crtc link (meaning that the
11822 * encoder is active and trying to read from a pipe) and the
11823 * pipe itself being active. */
11824 bool has_active_crtc = encoder->base.crtc &&
11825 to_intel_crtc(encoder->base.crtc)->active;
11826
11827 if (encoder->connectors_active && !has_active_crtc) {
11828 DRM_DEBUG_KMS("[ENCODER:%d:%s] has active connectors but no active pipe!\n",
11829 encoder->base.base.id,
11830 drm_get_encoder_name(&encoder->base));
11831
11832 /* Connector is active, but has no active pipe. This is
11833 * fallout from our resume register restoring. Disable
11834 * the encoder manually again. */
11835 if (encoder->base.crtc) {
11836 DRM_DEBUG_KMS("[ENCODER:%d:%s] manually disabled\n",
11837 encoder->base.base.id,
11838 drm_get_encoder_name(&encoder->base));
11839 encoder->disable(encoder);
11840 }
11841
11842 /* Inconsistent output/port/pipe state happens presumably due to
11843 * a bug in one of the get_hw_state functions. Or someplace else
11844 * in our code, like the register restore mess on resume. Clamp
11845 * things to off as a safer default. */
11846 list_for_each_entry(connector,
11847 &dev->mode_config.connector_list,
11848 base.head) {
11849 if (connector->encoder != encoder)
11850 continue;
11851
11852 intel_connector_break_all_links(connector);
11853 }
11854 }
11855 /* Enabled encoders without active connectors will be fixed in
11856 * the crtc fixup. */
11857}
11858
Imre Deak04098752014-02-18 00:02:16 +020011859void i915_redisable_vga_power_on(struct drm_device *dev)
Krzysztof Mazur0fde9012012-12-19 11:03:41 +010011860{
11861 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä766aa1c2013-01-25 21:44:46 +020011862 u32 vga_reg = i915_vgacntrl_reg(dev);
Krzysztof Mazur0fde9012012-12-19 11:03:41 +010011863
Imre Deak04098752014-02-18 00:02:16 +020011864 if (!(I915_READ(vga_reg) & VGA_DISP_DISABLE)) {
11865 DRM_DEBUG_KMS("Something enabled VGA plane, disabling it\n");
11866 i915_disable_vga(dev);
11867 }
11868}
11869
11870void i915_redisable_vga(struct drm_device *dev)
11871{
11872 struct drm_i915_private *dev_priv = dev->dev_private;
11873
Paulo Zanoni8dc8a272013-08-02 16:22:24 -030011874 /* This function can be called both from intel_modeset_setup_hw_state or
11875 * at a very early point in our resume sequence, where the power well
11876 * structures are not yet restored. Since this function is at a very
11877 * paranoid "someone might have enabled VGA while we were not looking"
11878 * level, just check if the power well is enabled instead of trying to
11879 * follow the "don't touch the power well if we don't need it" policy
11880 * the rest of the driver uses. */
Imre Deak04098752014-02-18 00:02:16 +020011881 if (!intel_display_power_enabled(dev_priv, POWER_DOMAIN_VGA))
Paulo Zanoni8dc8a272013-08-02 16:22:24 -030011882 return;
11883
Imre Deak04098752014-02-18 00:02:16 +020011884 i915_redisable_vga_power_on(dev);
Krzysztof Mazur0fde9012012-12-19 11:03:41 +010011885}
11886
Ville Syrjälä98ec7732014-04-30 17:43:01 +030011887static bool primary_get_hw_state(struct intel_crtc *crtc)
11888{
11889 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
11890
11891 if (!crtc->active)
11892 return false;
11893
11894 return I915_READ(DSPCNTR(crtc->plane)) & DISPLAY_PLANE_ENABLE;
11895}
11896
Daniel Vetter30e984d2013-06-05 13:34:17 +020011897static void intel_modeset_readout_hw_state(struct drm_device *dev)
Daniel Vetter24929352012-07-02 20:28:59 +020011898{
11899 struct drm_i915_private *dev_priv = dev->dev_private;
11900 enum pipe pipe;
Daniel Vetter24929352012-07-02 20:28:59 +020011901 struct intel_crtc *crtc;
11902 struct intel_encoder *encoder;
11903 struct intel_connector *connector;
Daniel Vetter53589012013-06-05 13:34:16 +020011904 int i;
Daniel Vetter24929352012-07-02 20:28:59 +020011905
Damien Lespiaud3fcc802014-05-13 23:32:22 +010011906 for_each_intel_crtc(dev, crtc) {
Daniel Vetter88adfff2013-03-28 10:42:01 +010011907 memset(&crtc->config, 0, sizeof(crtc->config));
Daniel Vetter3b117c82013-04-17 20:15:07 +020011908
Daniel Vetter99535992014-04-13 12:00:33 +020011909 crtc->config.quirks |= PIPE_CONFIG_QUIRK_INHERITED_MODE;
11910
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010011911 crtc->active = dev_priv->display.get_pipe_config(crtc,
11912 &crtc->config);
Daniel Vetter24929352012-07-02 20:28:59 +020011913
11914 crtc->base.enabled = crtc->active;
Ville Syrjälä98ec7732014-04-30 17:43:01 +030011915 crtc->primary_enabled = primary_get_hw_state(crtc);
Daniel Vetter24929352012-07-02 20:28:59 +020011916
11917 DRM_DEBUG_KMS("[CRTC:%d] hw state readout: %s\n",
11918 crtc->base.base.id,
11919 crtc->active ? "enabled" : "disabled");
11920 }
11921
Daniel Vetter53589012013-06-05 13:34:16 +020011922 /* FIXME: Smash this into the new shared dpll infrastructure. */
Paulo Zanoniaffa9352012-11-23 15:30:39 -020011923 if (HAS_DDI(dev))
Paulo Zanoni6441ab52012-10-05 12:05:58 -030011924 intel_ddi_setup_hw_pll_state(dev);
11925
Daniel Vetter53589012013-06-05 13:34:16 +020011926 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
11927 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
11928
11929 pll->on = pll->get_hw_state(dev_priv, pll, &pll->hw_state);
11930 pll->active = 0;
Damien Lespiaud3fcc802014-05-13 23:32:22 +010011931 for_each_intel_crtc(dev, crtc) {
Daniel Vetter53589012013-06-05 13:34:16 +020011932 if (crtc->active && intel_crtc_to_shared_dpll(crtc) == pll)
11933 pll->active++;
11934 }
11935 pll->refcount = pll->active;
11936
Daniel Vetter35c95372013-07-17 06:55:04 +020011937 DRM_DEBUG_KMS("%s hw state readout: refcount %i, on %i\n",
11938 pll->name, pll->refcount, pll->on);
Daniel Vetter53589012013-06-05 13:34:16 +020011939 }
11940
Daniel Vetter24929352012-07-02 20:28:59 +020011941 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
11942 base.head) {
11943 pipe = 0;
11944
11945 if (encoder->get_hw_state(encoder, &pipe)) {
Jesse Barnes045ac3b2013-05-14 17:08:26 -070011946 crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
11947 encoder->base.crtc = &crtc->base;
Daniel Vetter1d37b682013-11-18 09:00:59 +010011948 encoder->get_config(encoder, &crtc->config);
Daniel Vetter24929352012-07-02 20:28:59 +020011949 } else {
11950 encoder->base.crtc = NULL;
11951 }
11952
11953 encoder->connectors_active = false;
Damien Lespiau6f2bcce2013-10-16 12:29:54 +010011954 DRM_DEBUG_KMS("[ENCODER:%d:%s] hw state readout: %s, pipe %c\n",
Daniel Vetter24929352012-07-02 20:28:59 +020011955 encoder->base.base.id,
11956 drm_get_encoder_name(&encoder->base),
11957 encoder->base.crtc ? "enabled" : "disabled",
Damien Lespiau6f2bcce2013-10-16 12:29:54 +010011958 pipe_name(pipe));
Daniel Vetter24929352012-07-02 20:28:59 +020011959 }
11960
11961 list_for_each_entry(connector, &dev->mode_config.connector_list,
11962 base.head) {
11963 if (connector->get_hw_state(connector)) {
11964 connector->base.dpms = DRM_MODE_DPMS_ON;
11965 connector->encoder->connectors_active = true;
11966 connector->base.encoder = &connector->encoder->base;
11967 } else {
11968 connector->base.dpms = DRM_MODE_DPMS_OFF;
11969 connector->base.encoder = NULL;
11970 }
11971 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] hw state readout: %s\n",
11972 connector->base.base.id,
11973 drm_get_connector_name(&connector->base),
11974 connector->base.encoder ? "enabled" : "disabled");
11975 }
Daniel Vetter30e984d2013-06-05 13:34:17 +020011976}
11977
11978/* Scan out the current hw modeset state, sanitizes it and maps it into the drm
11979 * and i915 state tracking structures. */
11980void intel_modeset_setup_hw_state(struct drm_device *dev,
11981 bool force_restore)
11982{
11983 struct drm_i915_private *dev_priv = dev->dev_private;
11984 enum pipe pipe;
Daniel Vetter30e984d2013-06-05 13:34:17 +020011985 struct intel_crtc *crtc;
11986 struct intel_encoder *encoder;
Daniel Vetter35c95372013-07-17 06:55:04 +020011987 int i;
Daniel Vetter30e984d2013-06-05 13:34:17 +020011988
11989 intel_modeset_readout_hw_state(dev);
Daniel Vetter24929352012-07-02 20:28:59 +020011990
Jesse Barnesbabea612013-06-26 18:57:38 +030011991 /*
11992 * Now that we have the config, copy it to each CRTC struct
11993 * Note that this could go away if we move to using crtc_config
11994 * checking everywhere.
11995 */
Damien Lespiaud3fcc802014-05-13 23:32:22 +010011996 for_each_intel_crtc(dev, crtc) {
Jani Nikulad330a952014-01-21 11:24:25 +020011997 if (crtc->active && i915.fastboot) {
Daniel Vetterf6a83282014-02-11 15:28:57 -080011998 intel_mode_from_pipe_config(&crtc->base.mode, &crtc->config);
Jesse Barnesbabea612013-06-26 18:57:38 +030011999 DRM_DEBUG_KMS("[CRTC:%d] found active mode: ",
12000 crtc->base.base.id);
12001 drm_mode_debug_printmodeline(&crtc->base.mode);
12002 }
12003 }
12004
Daniel Vetter24929352012-07-02 20:28:59 +020012005 /* HW state is read out, now we need to sanitize this mess. */
12006 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
12007 base.head) {
12008 intel_sanitize_encoder(encoder);
12009 }
12010
12011 for_each_pipe(pipe) {
12012 crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
12013 intel_sanitize_crtc(crtc);
Daniel Vetterc0b03412013-05-28 12:05:54 +020012014 intel_dump_pipe_config(crtc, &crtc->config, "[setup_hw_state]");
Daniel Vetter24929352012-07-02 20:28:59 +020012015 }
Daniel Vetter9a935852012-07-05 22:34:27 +020012016
Daniel Vetter35c95372013-07-17 06:55:04 +020012017 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
12018 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
12019
12020 if (!pll->on || pll->active)
12021 continue;
12022
12023 DRM_DEBUG_KMS("%s enabled but not in use, disabling\n", pll->name);
12024
12025 pll->disable(dev_priv, pll);
12026 pll->on = false;
12027 }
12028
Ville Syrjälä96f90c52013-12-05 15:51:38 +020012029 if (HAS_PCH_SPLIT(dev))
Ville Syrjälä243e6a42013-10-14 14:55:24 +030012030 ilk_wm_get_hw_state(dev);
12031
Daniel Vetter45e2b5f2012-11-23 18:16:34 +010012032 if (force_restore) {
Ville Syrjälä7d0bc1e2013-09-16 17:38:33 +030012033 i915_redisable_vga(dev);
12034
Daniel Vetterf30da182013-04-11 20:22:50 +020012035 /*
12036 * We need to use raw interfaces for restoring state to avoid
12037 * checking (bogus) intermediate states.
12038 */
Daniel Vetter45e2b5f2012-11-23 18:16:34 +010012039 for_each_pipe(pipe) {
Jesse Barnesb5644d02013-03-26 13:25:27 -070012040 struct drm_crtc *crtc =
12041 dev_priv->pipe_to_crtc_mapping[pipe];
Daniel Vetterf30da182013-04-11 20:22:50 +020012042
12043 __intel_set_mode(crtc, &crtc->mode, crtc->x, crtc->y,
Matt Roperf4510a22014-04-01 15:22:40 -070012044 crtc->primary->fb);
Daniel Vetter45e2b5f2012-11-23 18:16:34 +010012045 }
12046 } else {
12047 intel_modeset_update_staged_output_state(dev);
12048 }
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012049
12050 intel_modeset_check_state(dev);
Chris Wilson2c7111d2011-03-29 10:40:27 +010012051}
12052
12053void intel_modeset_gem_init(struct drm_device *dev)
12054{
Jesse Barnes484b41d2014-03-07 08:57:55 -080012055 struct drm_crtc *c;
12056 struct intel_framebuffer *fb;
12057
Imre Deakae484342014-03-31 15:10:44 +030012058 mutex_lock(&dev->struct_mutex);
12059 intel_init_gt_powersave(dev);
12060 mutex_unlock(&dev->struct_mutex);
12061
Chris Wilson1833b132012-05-09 11:56:28 +010012062 intel_modeset_init_hw(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +020012063
12064 intel_setup_overlay(dev);
Jesse Barnes484b41d2014-03-07 08:57:55 -080012065
12066 /*
12067 * Make sure any fbs we allocated at startup are properly
12068 * pinned & fenced. When we do the allocation it's too early
12069 * for this.
12070 */
12071 mutex_lock(&dev->struct_mutex);
Damien Lespiau70e1e0e2014-05-13 23:32:24 +010012072 for_each_crtc(dev, c) {
Dave Airlie66e514c2014-04-03 07:51:54 +100012073 if (!c->primary->fb)
Jesse Barnes484b41d2014-03-07 08:57:55 -080012074 continue;
12075
Dave Airlie66e514c2014-04-03 07:51:54 +100012076 fb = to_intel_framebuffer(c->primary->fb);
Jesse Barnes484b41d2014-03-07 08:57:55 -080012077 if (intel_pin_and_fence_fb_obj(dev, fb->obj, NULL)) {
12078 DRM_ERROR("failed to pin boot fb on pipe %d\n",
12079 to_intel_crtc(c)->pipe);
Dave Airlie66e514c2014-04-03 07:51:54 +100012080 drm_framebuffer_unreference(c->primary->fb);
12081 c->primary->fb = NULL;
Jesse Barnes484b41d2014-03-07 08:57:55 -080012082 }
12083 }
12084 mutex_unlock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -080012085}
12086
Imre Deak4932e2c2014-02-11 17:12:48 +020012087void intel_connector_unregister(struct intel_connector *intel_connector)
12088{
12089 struct drm_connector *connector = &intel_connector->base;
12090
12091 intel_panel_destroy_backlight(connector);
12092 drm_sysfs_connector_remove(connector);
12093}
12094
Jesse Barnes79e53942008-11-07 14:24:08 -080012095void intel_modeset_cleanup(struct drm_device *dev)
12096{
Jesse Barnes652c3932009-08-17 13:31:43 -070012097 struct drm_i915_private *dev_priv = dev->dev_private;
12098 struct drm_crtc *crtc;
Paulo Zanonid9255d52013-09-26 20:05:59 -030012099 struct drm_connector *connector;
Jesse Barnes652c3932009-08-17 13:31:43 -070012100
Daniel Vetterfd0c0642013-04-24 11:13:35 +020012101 /*
12102 * Interrupts and polling as the first thing to avoid creating havoc.
12103 * Too much stuff here (turning of rps, connectors, ...) would
12104 * experience fancy races otherwise.
12105 */
12106 drm_irq_uninstall(dev);
12107 cancel_work_sync(&dev_priv->hotplug_work);
12108 /*
12109 * Due to the hpd irq storm handling the hotplug work can re-arm the
12110 * poll handlers. Hence disable polling after hpd handling is shut down.
12111 */
Keith Packardf87ea762010-10-03 19:36:26 -070012112 drm_kms_helper_poll_fini(dev);
Daniel Vetterfd0c0642013-04-24 11:13:35 +020012113
Jesse Barnes652c3932009-08-17 13:31:43 -070012114 mutex_lock(&dev->struct_mutex);
12115
Jesse Barnes723bfd72010-10-07 16:01:13 -070012116 intel_unregister_dsm_handler();
12117
Damien Lespiau70e1e0e2014-05-13 23:32:24 +010012118 for_each_crtc(dev, crtc) {
Jesse Barnes652c3932009-08-17 13:31:43 -070012119 /* Skip inactive CRTCs */
Matt Roperf4510a22014-04-01 15:22:40 -070012120 if (!crtc->primary->fb)
Jesse Barnes652c3932009-08-17 13:31:43 -070012121 continue;
12122
Daniel Vetter3dec0092010-08-20 21:40:52 +020012123 intel_increase_pllclock(crtc);
Jesse Barnes652c3932009-08-17 13:31:43 -070012124 }
12125
Chris Wilson973d04f2011-07-08 12:22:37 +010012126 intel_disable_fbc(dev);
Jesse Barnese70236a2009-09-21 10:42:27 -070012127
Daniel Vetter8090c6b2012-06-24 16:42:32 +020012128 intel_disable_gt_powersave(dev);
Chris Wilson0cdab212010-12-05 17:27:06 +000012129
Daniel Vetter930ebb42012-06-29 23:32:16 +020012130 ironlake_teardown_rc6(dev);
12131
Kristian Høgsberg69341a52009-11-11 12:19:17 -050012132 mutex_unlock(&dev->struct_mutex);
12133
Chris Wilson1630fe72011-07-08 12:22:42 +010012134 /* flush any delayed tasks or pending work */
12135 flush_scheduled_work();
12136
Jani Nikuladb31af12013-11-08 16:48:53 +020012137 /* destroy the backlight and sysfs files before encoders/connectors */
12138 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
Imre Deak4932e2c2014-02-11 17:12:48 +020012139 struct intel_connector *intel_connector;
12140
12141 intel_connector = to_intel_connector(connector);
12142 intel_connector->unregister(intel_connector);
Jani Nikuladb31af12013-11-08 16:48:53 +020012143 }
Paulo Zanonid9255d52013-09-26 20:05:59 -030012144
Jesse Barnes79e53942008-11-07 14:24:08 -080012145 drm_mode_config_cleanup(dev);
Daniel Vetter4d7bb012012-12-18 15:24:37 +010012146
12147 intel_cleanup_overlay(dev);
Imre Deakae484342014-03-31 15:10:44 +030012148
12149 mutex_lock(&dev->struct_mutex);
12150 intel_cleanup_gt_powersave(dev);
12151 mutex_unlock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -080012152}
12153
Dave Airlie28d52042009-09-21 14:33:58 +100012154/*
Zhenyu Wangf1c79df2010-03-30 14:39:29 +080012155 * Return which encoder is currently attached for connector.
12156 */
Chris Wilsondf0e9242010-09-09 16:20:55 +010012157struct drm_encoder *intel_best_encoder(struct drm_connector *connector)
Jesse Barnes79e53942008-11-07 14:24:08 -080012158{
Chris Wilsondf0e9242010-09-09 16:20:55 +010012159 return &intel_attached_encoder(connector)->base;
12160}
Jesse Barnes79e53942008-11-07 14:24:08 -080012161
Chris Wilsondf0e9242010-09-09 16:20:55 +010012162void intel_connector_attach_encoder(struct intel_connector *connector,
12163 struct intel_encoder *encoder)
12164{
12165 connector->encoder = encoder;
12166 drm_mode_connector_attach_encoder(&connector->base,
12167 &encoder->base);
Jesse Barnes79e53942008-11-07 14:24:08 -080012168}
Dave Airlie28d52042009-09-21 14:33:58 +100012169
12170/*
12171 * set vga decode state - true == enable VGA decode
12172 */
12173int intel_modeset_vga_set_state(struct drm_device *dev, bool state)
12174{
12175 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsona885b3c2013-12-17 14:34:50 +000012176 unsigned reg = INTEL_INFO(dev)->gen >= 6 ? SNB_GMCH_CTRL : INTEL_GMCH_CTRL;
Dave Airlie28d52042009-09-21 14:33:58 +100012177 u16 gmch_ctrl;
12178
Chris Wilson75fa0412014-02-07 18:37:02 -020012179 if (pci_read_config_word(dev_priv->bridge_dev, reg, &gmch_ctrl)) {
12180 DRM_ERROR("failed to read control word\n");
12181 return -EIO;
12182 }
12183
Chris Wilsonc0cc8a52014-02-07 18:37:03 -020012184 if (!!(gmch_ctrl & INTEL_GMCH_VGA_DISABLE) == !state)
12185 return 0;
12186
Dave Airlie28d52042009-09-21 14:33:58 +100012187 if (state)
12188 gmch_ctrl &= ~INTEL_GMCH_VGA_DISABLE;
12189 else
12190 gmch_ctrl |= INTEL_GMCH_VGA_DISABLE;
Chris Wilson75fa0412014-02-07 18:37:02 -020012191
12192 if (pci_write_config_word(dev_priv->bridge_dev, reg, gmch_ctrl)) {
12193 DRM_ERROR("failed to write control word\n");
12194 return -EIO;
12195 }
12196
Dave Airlie28d52042009-09-21 14:33:58 +100012197 return 0;
12198}
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012199
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012200struct intel_display_error_state {
Paulo Zanoniff57f1b2013-05-03 12:15:37 -030012201
12202 u32 power_well_driver;
12203
Chris Wilson63b66e52013-08-08 15:12:06 +020012204 int num_transcoders;
12205
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012206 struct intel_cursor_error_state {
12207 u32 control;
12208 u32 position;
12209 u32 base;
12210 u32 size;
Damien Lespiau52331302012-08-15 19:23:25 +010012211 } cursor[I915_MAX_PIPES];
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012212
12213 struct intel_pipe_error_state {
Imre Deakddf9c532013-11-27 22:02:02 +020012214 bool power_domain_on;
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012215 u32 source;
Imre Deakf301b1e2014-04-18 15:55:04 +030012216 u32 stat;
Damien Lespiau52331302012-08-15 19:23:25 +010012217 } pipe[I915_MAX_PIPES];
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012218
12219 struct intel_plane_error_state {
12220 u32 control;
12221 u32 stride;
12222 u32 size;
12223 u32 pos;
12224 u32 addr;
12225 u32 surface;
12226 u32 tile_offset;
Damien Lespiau52331302012-08-15 19:23:25 +010012227 } plane[I915_MAX_PIPES];
Chris Wilson63b66e52013-08-08 15:12:06 +020012228
12229 struct intel_transcoder_error_state {
Imre Deakddf9c532013-11-27 22:02:02 +020012230 bool power_domain_on;
Chris Wilson63b66e52013-08-08 15:12:06 +020012231 enum transcoder cpu_transcoder;
12232
12233 u32 conf;
12234
12235 u32 htotal;
12236 u32 hblank;
12237 u32 hsync;
12238 u32 vtotal;
12239 u32 vblank;
12240 u32 vsync;
12241 } transcoder[4];
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012242};
12243
12244struct intel_display_error_state *
12245intel_display_capture_error_state(struct drm_device *dev)
12246{
Jani Nikulafbee40d2014-03-31 14:27:18 +030012247 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012248 struct intel_display_error_state *error;
Chris Wilson63b66e52013-08-08 15:12:06 +020012249 int transcoders[] = {
12250 TRANSCODER_A,
12251 TRANSCODER_B,
12252 TRANSCODER_C,
12253 TRANSCODER_EDP,
12254 };
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012255 int i;
12256
Chris Wilson63b66e52013-08-08 15:12:06 +020012257 if (INTEL_INFO(dev)->num_pipes == 0)
12258 return NULL;
12259
Paulo Zanoni9d1cb912013-11-01 13:32:08 -020012260 error = kzalloc(sizeof(*error), GFP_ATOMIC);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012261 if (error == NULL)
12262 return NULL;
12263
Imre Deak190be112013-11-25 17:15:31 +020012264 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Paulo Zanoniff57f1b2013-05-03 12:15:37 -030012265 error->power_well_driver = I915_READ(HSW_PWR_WELL_DRIVER);
12266
Damien Lespiau52331302012-08-15 19:23:25 +010012267 for_each_pipe(i) {
Imre Deakddf9c532013-11-27 22:02:02 +020012268 error->pipe[i].power_domain_on =
Imre Deakda7e29b2014-02-18 00:02:02 +020012269 intel_display_power_enabled_sw(dev_priv,
12270 POWER_DOMAIN_PIPE(i));
Imre Deakddf9c532013-11-27 22:02:02 +020012271 if (!error->pipe[i].power_domain_on)
Paulo Zanoni9d1cb912013-11-01 13:32:08 -020012272 continue;
12273
Paulo Zanonia18c4c32013-03-06 20:03:12 -030012274 if (INTEL_INFO(dev)->gen <= 6 || IS_VALLEYVIEW(dev)) {
12275 error->cursor[i].control = I915_READ(CURCNTR(i));
12276 error->cursor[i].position = I915_READ(CURPOS(i));
12277 error->cursor[i].base = I915_READ(CURBASE(i));
12278 } else {
12279 error->cursor[i].control = I915_READ(CURCNTR_IVB(i));
12280 error->cursor[i].position = I915_READ(CURPOS_IVB(i));
12281 error->cursor[i].base = I915_READ(CURBASE_IVB(i));
12282 }
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012283
12284 error->plane[i].control = I915_READ(DSPCNTR(i));
12285 error->plane[i].stride = I915_READ(DSPSTRIDE(i));
Paulo Zanoni80ca3782013-03-22 14:20:57 -030012286 if (INTEL_INFO(dev)->gen <= 3) {
Paulo Zanoni51889b32013-03-06 20:03:13 -030012287 error->plane[i].size = I915_READ(DSPSIZE(i));
Paulo Zanoni80ca3782013-03-22 14:20:57 -030012288 error->plane[i].pos = I915_READ(DSPPOS(i));
12289 }
Paulo Zanonica291362013-03-06 20:03:14 -030012290 if (INTEL_INFO(dev)->gen <= 7 && !IS_HASWELL(dev))
12291 error->plane[i].addr = I915_READ(DSPADDR(i));
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012292 if (INTEL_INFO(dev)->gen >= 4) {
12293 error->plane[i].surface = I915_READ(DSPSURF(i));
12294 error->plane[i].tile_offset = I915_READ(DSPTILEOFF(i));
12295 }
12296
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012297 error->pipe[i].source = I915_READ(PIPESRC(i));
Imre Deakf301b1e2014-04-18 15:55:04 +030012298
12299 if (!HAS_PCH_SPLIT(dev))
12300 error->pipe[i].stat = I915_READ(PIPESTAT(i));
Chris Wilson63b66e52013-08-08 15:12:06 +020012301 }
12302
12303 error->num_transcoders = INTEL_INFO(dev)->num_pipes;
12304 if (HAS_DDI(dev_priv->dev))
12305 error->num_transcoders++; /* Account for eDP. */
12306
12307 for (i = 0; i < error->num_transcoders; i++) {
12308 enum transcoder cpu_transcoder = transcoders[i];
12309
Imre Deakddf9c532013-11-27 22:02:02 +020012310 error->transcoder[i].power_domain_on =
Imre Deakda7e29b2014-02-18 00:02:02 +020012311 intel_display_power_enabled_sw(dev_priv,
Paulo Zanoni38cc1da2013-12-20 15:09:41 -020012312 POWER_DOMAIN_TRANSCODER(cpu_transcoder));
Imre Deakddf9c532013-11-27 22:02:02 +020012313 if (!error->transcoder[i].power_domain_on)
Paulo Zanoni9d1cb912013-11-01 13:32:08 -020012314 continue;
12315
Chris Wilson63b66e52013-08-08 15:12:06 +020012316 error->transcoder[i].cpu_transcoder = cpu_transcoder;
12317
12318 error->transcoder[i].conf = I915_READ(PIPECONF(cpu_transcoder));
12319 error->transcoder[i].htotal = I915_READ(HTOTAL(cpu_transcoder));
12320 error->transcoder[i].hblank = I915_READ(HBLANK(cpu_transcoder));
12321 error->transcoder[i].hsync = I915_READ(HSYNC(cpu_transcoder));
12322 error->transcoder[i].vtotal = I915_READ(VTOTAL(cpu_transcoder));
12323 error->transcoder[i].vblank = I915_READ(VBLANK(cpu_transcoder));
12324 error->transcoder[i].vsync = I915_READ(VSYNC(cpu_transcoder));
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012325 }
12326
12327 return error;
12328}
12329
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030012330#define err_printf(e, ...) i915_error_printf(e, __VA_ARGS__)
12331
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012332void
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030012333intel_display_print_error_state(struct drm_i915_error_state_buf *m,
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012334 struct drm_device *dev,
12335 struct intel_display_error_state *error)
12336{
12337 int i;
12338
Chris Wilson63b66e52013-08-08 15:12:06 +020012339 if (!error)
12340 return;
12341
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030012342 err_printf(m, "Num Pipes: %d\n", INTEL_INFO(dev)->num_pipes);
Imre Deak190be112013-11-25 17:15:31 +020012343 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030012344 err_printf(m, "PWR_WELL_CTL2: %08x\n",
Paulo Zanoniff57f1b2013-05-03 12:15:37 -030012345 error->power_well_driver);
Damien Lespiau52331302012-08-15 19:23:25 +010012346 for_each_pipe(i) {
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030012347 err_printf(m, "Pipe [%d]:\n", i);
Imre Deakddf9c532013-11-27 22:02:02 +020012348 err_printf(m, " Power: %s\n",
12349 error->pipe[i].power_domain_on ? "on" : "off");
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030012350 err_printf(m, " SRC: %08x\n", error->pipe[i].source);
Imre Deakf301b1e2014-04-18 15:55:04 +030012351 err_printf(m, " STAT: %08x\n", error->pipe[i].stat);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012352
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030012353 err_printf(m, "Plane [%d]:\n", i);
12354 err_printf(m, " CNTR: %08x\n", error->plane[i].control);
12355 err_printf(m, " STRIDE: %08x\n", error->plane[i].stride);
Paulo Zanoni80ca3782013-03-22 14:20:57 -030012356 if (INTEL_INFO(dev)->gen <= 3) {
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030012357 err_printf(m, " SIZE: %08x\n", error->plane[i].size);
12358 err_printf(m, " POS: %08x\n", error->plane[i].pos);
Paulo Zanoni80ca3782013-03-22 14:20:57 -030012359 }
Paulo Zanoni4b71a572013-03-22 14:19:21 -030012360 if (INTEL_INFO(dev)->gen <= 7 && !IS_HASWELL(dev))
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030012361 err_printf(m, " ADDR: %08x\n", error->plane[i].addr);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012362 if (INTEL_INFO(dev)->gen >= 4) {
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030012363 err_printf(m, " SURF: %08x\n", error->plane[i].surface);
12364 err_printf(m, " TILEOFF: %08x\n", error->plane[i].tile_offset);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012365 }
12366
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030012367 err_printf(m, "Cursor [%d]:\n", i);
12368 err_printf(m, " CNTR: %08x\n", error->cursor[i].control);
12369 err_printf(m, " POS: %08x\n", error->cursor[i].position);
12370 err_printf(m, " BASE: %08x\n", error->cursor[i].base);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012371 }
Chris Wilson63b66e52013-08-08 15:12:06 +020012372
12373 for (i = 0; i < error->num_transcoders; i++) {
Chris Wilson1cf84bb2013-10-21 09:10:33 +010012374 err_printf(m, "CPU transcoder: %c\n",
Chris Wilson63b66e52013-08-08 15:12:06 +020012375 transcoder_name(error->transcoder[i].cpu_transcoder));
Imre Deakddf9c532013-11-27 22:02:02 +020012376 err_printf(m, " Power: %s\n",
12377 error->transcoder[i].power_domain_on ? "on" : "off");
Chris Wilson63b66e52013-08-08 15:12:06 +020012378 err_printf(m, " CONF: %08x\n", error->transcoder[i].conf);
12379 err_printf(m, " HTOTAL: %08x\n", error->transcoder[i].htotal);
12380 err_printf(m, " HBLANK: %08x\n", error->transcoder[i].hblank);
12381 err_printf(m, " HSYNC: %08x\n", error->transcoder[i].hsync);
12382 err_printf(m, " VTOTAL: %08x\n", error->transcoder[i].vtotal);
12383 err_printf(m, " VBLANK: %08x\n", error->transcoder[i].vblank);
12384 err_printf(m, " VSYNC: %08x\n", error->transcoder[i].vsync);
12385 }
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012386}