blob: 579becbc46ecd9df3f013178101c45db03f217cd [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
Daniel Vetter3dec0092010-08-20 21:40:52 +020044static void intel_increase_pllclock(struct drm_crtc *crtc);
Chris Wilson6b383a72010-09-13 13:54:26 +010045static void intel_crtc_update_cursor(struct drm_crtc *crtc, bool on);
Jesse Barnes79e53942008-11-07 14:24:08 -080046
Jesse Barnesf1f644d2013-06-27 00:39:25 +030047static void i9xx_crtc_clock_get(struct intel_crtc *crtc,
48 struct intel_crtc_config *pipe_config);
Ville Syrjälä18442d02013-09-13 16:00:08 +030049static void ironlake_pch_clock_get(struct intel_crtc *crtc,
50 struct intel_crtc_config *pipe_config);
Jesse Barnesf1f644d2013-06-27 00:39:25 +030051
Damien Lespiaue7457a92013-08-08 22:28:59 +010052static int intel_set_mode(struct drm_crtc *crtc, struct drm_display_mode *mode,
53 int x, int y, struct drm_framebuffer *old_fb);
54
55
Jesse Barnes79e53942008-11-07 14:24:08 -080056typedef struct {
Akshay Joshi0206e352011-08-16 15:34:10 -040057 int min, max;
Jesse Barnes79e53942008-11-07 14:24:08 -080058} intel_range_t;
59
60typedef struct {
Akshay Joshi0206e352011-08-16 15:34:10 -040061 int dot_limit;
62 int p2_slow, p2_fast;
Jesse Barnes79e53942008-11-07 14:24:08 -080063} intel_p2_t;
64
Ma Lingd4906092009-03-18 20:13:27 +080065typedef struct intel_limit intel_limit_t;
66struct intel_limit {
Akshay Joshi0206e352011-08-16 15:34:10 -040067 intel_range_t dot, vco, n, m, m1, m2, p, p1;
68 intel_p2_t p2;
Ma Lingd4906092009-03-18 20:13:27 +080069};
Jesse Barnes79e53942008-11-07 14:24:08 -080070
Daniel Vetterd2acd212012-10-20 20:57:43 +020071int
72intel_pch_rawclk(struct drm_device *dev)
73{
74 struct drm_i915_private *dev_priv = dev->dev_private;
75
76 WARN_ON(!HAS_PCH_SPLIT(dev));
77
78 return I915_READ(PCH_RAWCLK_FREQ) & RAWCLK_FREQ_MASK;
79}
80
Chris Wilson021357a2010-09-07 20:54:59 +010081static inline u32 /* units of 100MHz */
82intel_fdi_link_freq(struct drm_device *dev)
83{
Chris Wilson8b99e682010-10-13 09:59:17 +010084 if (IS_GEN5(dev)) {
85 struct drm_i915_private *dev_priv = dev->dev_private;
86 return (I915_READ(FDI_PLL_BIOS_0) & FDI_PLL_FB_CLOCK_MASK) + 2;
87 } else
88 return 27;
Chris Wilson021357a2010-09-07 20:54:59 +010089}
90
Daniel Vetter5d536e22013-07-06 12:52:06 +020091static const intel_limit_t intel_limits_i8xx_dac = {
Akshay Joshi0206e352011-08-16 15:34:10 -040092 .dot = { .min = 25000, .max = 350000 },
93 .vco = { .min = 930000, .max = 1400000 },
94 .n = { .min = 3, .max = 16 },
95 .m = { .min = 96, .max = 140 },
96 .m1 = { .min = 18, .max = 26 },
97 .m2 = { .min = 6, .max = 16 },
98 .p = { .min = 4, .max = 128 },
99 .p1 = { .min = 2, .max = 33 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700100 .p2 = { .dot_limit = 165000,
101 .p2_slow = 4, .p2_fast = 2 },
Keith Packarde4b36692009-06-05 19:22:17 -0700102};
103
Daniel Vetter5d536e22013-07-06 12:52:06 +0200104static const intel_limit_t intel_limits_i8xx_dvo = {
105 .dot = { .min = 25000, .max = 350000 },
106 .vco = { .min = 930000, .max = 1400000 },
107 .n = { .min = 3, .max = 16 },
108 .m = { .min = 96, .max = 140 },
109 .m1 = { .min = 18, .max = 26 },
110 .m2 = { .min = 6, .max = 16 },
111 .p = { .min = 4, .max = 128 },
112 .p1 = { .min = 2, .max = 33 },
113 .p2 = { .dot_limit = 165000,
114 .p2_slow = 4, .p2_fast = 4 },
115};
116
Keith Packarde4b36692009-06-05 19:22:17 -0700117static const intel_limit_t intel_limits_i8xx_lvds = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400118 .dot = { .min = 25000, .max = 350000 },
119 .vco = { .min = 930000, .max = 1400000 },
120 .n = { .min = 3, .max = 16 },
121 .m = { .min = 96, .max = 140 },
122 .m1 = { .min = 18, .max = 26 },
123 .m2 = { .min = 6, .max = 16 },
124 .p = { .min = 4, .max = 128 },
125 .p1 = { .min = 1, .max = 6 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700126 .p2 = { .dot_limit = 165000,
127 .p2_slow = 14, .p2_fast = 7 },
Keith Packarde4b36692009-06-05 19:22:17 -0700128};
Eric Anholt273e27c2011-03-30 13:01:10 -0700129
Keith Packarde4b36692009-06-05 19:22:17 -0700130static const intel_limit_t intel_limits_i9xx_sdvo = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400131 .dot = { .min = 20000, .max = 400000 },
132 .vco = { .min = 1400000, .max = 2800000 },
133 .n = { .min = 1, .max = 6 },
134 .m = { .min = 70, .max = 120 },
Patrik Jakobsson4f7dfb62013-02-13 22:20:22 +0100135 .m1 = { .min = 8, .max = 18 },
136 .m2 = { .min = 3, .max = 7 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400137 .p = { .min = 5, .max = 80 },
138 .p1 = { .min = 1, .max = 8 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700139 .p2 = { .dot_limit = 200000,
140 .p2_slow = 10, .p2_fast = 5 },
Keith Packarde4b36692009-06-05 19:22:17 -0700141};
142
143static const intel_limit_t intel_limits_i9xx_lvds = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400144 .dot = { .min = 20000, .max = 400000 },
145 .vco = { .min = 1400000, .max = 2800000 },
146 .n = { .min = 1, .max = 6 },
147 .m = { .min = 70, .max = 120 },
Patrik Jakobsson53a7d2d2013-02-13 22:20:21 +0100148 .m1 = { .min = 8, .max = 18 },
149 .m2 = { .min = 3, .max = 7 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400150 .p = { .min = 7, .max = 98 },
151 .p1 = { .min = 1, .max = 8 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700152 .p2 = { .dot_limit = 112000,
153 .p2_slow = 14, .p2_fast = 7 },
Keith Packarde4b36692009-06-05 19:22:17 -0700154};
155
Eric Anholt273e27c2011-03-30 13:01:10 -0700156
Keith Packarde4b36692009-06-05 19:22:17 -0700157static const intel_limit_t intel_limits_g4x_sdvo = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700158 .dot = { .min = 25000, .max = 270000 },
159 .vco = { .min = 1750000, .max = 3500000},
160 .n = { .min = 1, .max = 4 },
161 .m = { .min = 104, .max = 138 },
162 .m1 = { .min = 17, .max = 23 },
163 .m2 = { .min = 5, .max = 11 },
164 .p = { .min = 10, .max = 30 },
165 .p1 = { .min = 1, .max = 3},
166 .p2 = { .dot_limit = 270000,
167 .p2_slow = 10,
168 .p2_fast = 10
Ma Ling044c7c42009-03-18 20:13:23 +0800169 },
Keith Packarde4b36692009-06-05 19:22:17 -0700170};
171
172static const intel_limit_t intel_limits_g4x_hdmi = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700173 .dot = { .min = 22000, .max = 400000 },
174 .vco = { .min = 1750000, .max = 3500000},
175 .n = { .min = 1, .max = 4 },
176 .m = { .min = 104, .max = 138 },
177 .m1 = { .min = 16, .max = 23 },
178 .m2 = { .min = 5, .max = 11 },
179 .p = { .min = 5, .max = 80 },
180 .p1 = { .min = 1, .max = 8},
181 .p2 = { .dot_limit = 165000,
182 .p2_slow = 10, .p2_fast = 5 },
Keith Packarde4b36692009-06-05 19:22:17 -0700183};
184
185static const intel_limit_t intel_limits_g4x_single_channel_lvds = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700186 .dot = { .min = 20000, .max = 115000 },
187 .vco = { .min = 1750000, .max = 3500000 },
188 .n = { .min = 1, .max = 3 },
189 .m = { .min = 104, .max = 138 },
190 .m1 = { .min = 17, .max = 23 },
191 .m2 = { .min = 5, .max = 11 },
192 .p = { .min = 28, .max = 112 },
193 .p1 = { .min = 2, .max = 8 },
194 .p2 = { .dot_limit = 0,
195 .p2_slow = 14, .p2_fast = 14
Ma Ling044c7c42009-03-18 20:13:23 +0800196 },
Keith Packarde4b36692009-06-05 19:22:17 -0700197};
198
199static const intel_limit_t intel_limits_g4x_dual_channel_lvds = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700200 .dot = { .min = 80000, .max = 224000 },
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 = 14, .max = 42 },
207 .p1 = { .min = 2, .max = 6 },
208 .p2 = { .dot_limit = 0,
209 .p2_slow = 7, .p2_fast = 7
Ma Ling044c7c42009-03-18 20:13:23 +0800210 },
Keith Packarde4b36692009-06-05 19:22:17 -0700211};
212
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500213static const intel_limit_t intel_limits_pineview_sdvo = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400214 .dot = { .min = 20000, .max = 400000},
215 .vco = { .min = 1700000, .max = 3500000 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700216 /* Pineview's Ncounter is a ring counter */
Akshay Joshi0206e352011-08-16 15:34:10 -0400217 .n = { .min = 3, .max = 6 },
218 .m = { .min = 2, .max = 256 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700219 /* Pineview only has one combined m divider, which we treat as m2. */
Akshay Joshi0206e352011-08-16 15:34:10 -0400220 .m1 = { .min = 0, .max = 0 },
221 .m2 = { .min = 0, .max = 254 },
222 .p = { .min = 5, .max = 80 },
223 .p1 = { .min = 1, .max = 8 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700224 .p2 = { .dot_limit = 200000,
225 .p2_slow = 10, .p2_fast = 5 },
Keith Packarde4b36692009-06-05 19:22:17 -0700226};
227
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500228static const intel_limit_t intel_limits_pineview_lvds = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400229 .dot = { .min = 20000, .max = 400000 },
230 .vco = { .min = 1700000, .max = 3500000 },
231 .n = { .min = 3, .max = 6 },
232 .m = { .min = 2, .max = 256 },
233 .m1 = { .min = 0, .max = 0 },
234 .m2 = { .min = 0, .max = 254 },
235 .p = { .min = 7, .max = 112 },
236 .p1 = { .min = 1, .max = 8 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700237 .p2 = { .dot_limit = 112000,
238 .p2_slow = 14, .p2_fast = 14 },
Keith Packarde4b36692009-06-05 19:22:17 -0700239};
240
Eric Anholt273e27c2011-03-30 13:01:10 -0700241/* Ironlake / Sandybridge
242 *
243 * We calculate clock using (register_value + 2) for N/M1/M2, so here
244 * the range value for them is (actual_value - 2).
245 */
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800246static const intel_limit_t intel_limits_ironlake_dac = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700247 .dot = { .min = 25000, .max = 350000 },
248 .vco = { .min = 1760000, .max = 3510000 },
249 .n = { .min = 1, .max = 5 },
250 .m = { .min = 79, .max = 127 },
251 .m1 = { .min = 12, .max = 22 },
252 .m2 = { .min = 5, .max = 9 },
253 .p = { .min = 5, .max = 80 },
254 .p1 = { .min = 1, .max = 8 },
255 .p2 = { .dot_limit = 225000,
256 .p2_slow = 10, .p2_fast = 5 },
Keith Packarde4b36692009-06-05 19:22:17 -0700257};
258
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800259static const intel_limit_t intel_limits_ironlake_single_lvds = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700260 .dot = { .min = 25000, .max = 350000 },
261 .vco = { .min = 1760000, .max = 3510000 },
262 .n = { .min = 1, .max = 3 },
263 .m = { .min = 79, .max = 118 },
264 .m1 = { .min = 12, .max = 22 },
265 .m2 = { .min = 5, .max = 9 },
266 .p = { .min = 28, .max = 112 },
267 .p1 = { .min = 2, .max = 8 },
268 .p2 = { .dot_limit = 225000,
269 .p2_slow = 14, .p2_fast = 14 },
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800270};
271
272static const intel_limit_t intel_limits_ironlake_dual_lvds = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700273 .dot = { .min = 25000, .max = 350000 },
274 .vco = { .min = 1760000, .max = 3510000 },
275 .n = { .min = 1, .max = 3 },
276 .m = { .min = 79, .max = 127 },
277 .m1 = { .min = 12, .max = 22 },
278 .m2 = { .min = 5, .max = 9 },
279 .p = { .min = 14, .max = 56 },
280 .p1 = { .min = 2, .max = 8 },
281 .p2 = { .dot_limit = 225000,
282 .p2_slow = 7, .p2_fast = 7 },
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800283};
284
Eric Anholt273e27c2011-03-30 13:01:10 -0700285/* LVDS 100mhz refclk limits. */
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800286static const intel_limit_t intel_limits_ironlake_single_lvds_100m = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700287 .dot = { .min = 25000, .max = 350000 },
288 .vco = { .min = 1760000, .max = 3510000 },
289 .n = { .min = 1, .max = 2 },
290 .m = { .min = 79, .max = 126 },
291 .m1 = { .min = 12, .max = 22 },
292 .m2 = { .min = 5, .max = 9 },
293 .p = { .min = 28, .max = 112 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400294 .p1 = { .min = 2, .max = 8 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700295 .p2 = { .dot_limit = 225000,
296 .p2_slow = 14, .p2_fast = 14 },
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800297};
298
299static const intel_limit_t intel_limits_ironlake_dual_lvds_100m = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700300 .dot = { .min = 25000, .max = 350000 },
301 .vco = { .min = 1760000, .max = 3510000 },
302 .n = { .min = 1, .max = 3 },
303 .m = { .min = 79, .max = 126 },
304 .m1 = { .min = 12, .max = 22 },
305 .m2 = { .min = 5, .max = 9 },
306 .p = { .min = 14, .max = 42 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400307 .p1 = { .min = 2, .max = 6 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700308 .p2 = { .dot_limit = 225000,
309 .p2_slow = 7, .p2_fast = 7 },
Zhao Yakui45476682009-12-31 16:06:04 +0800310};
311
Ville Syrjälädc730512013-09-24 21:26:30 +0300312static const intel_limit_t intel_limits_vlv = {
Ville Syrjäläf01b7962013-09-27 16:55:49 +0300313 /*
314 * These are the data rate limits (measured in fast clocks)
315 * since those are the strictest limits we have. The fast
316 * clock and actual rate limits are more relaxed, so checking
317 * them would make no difference.
318 */
319 .dot = { .min = 25000 * 5, .max = 270000 * 5 },
Daniel Vetter75e53982013-04-18 21:10:43 +0200320 .vco = { .min = 4000000, .max = 6000000 },
Jesse Barnesa0c4da22012-06-15 11:55:13 -0700321 .n = { .min = 1, .max = 7 },
Jesse Barnesa0c4da22012-06-15 11:55:13 -0700322 .m1 = { .min = 2, .max = 3 },
323 .m2 = { .min = 11, .max = 156 },
Ville Syrjäläb99ab662013-09-24 21:26:26 +0300324 .p1 = { .min = 2, .max = 3 },
Ville Syrjälä5fdc9c492013-09-24 21:26:29 +0300325 .p2 = { .p2_slow = 2, .p2_fast = 20 }, /* slow=min, fast=max */
Jesse Barnesa0c4da22012-06-15 11:55:13 -0700326};
327
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300328static void vlv_clock(int refclk, intel_clock_t *clock)
329{
330 clock->m = clock->m1 * clock->m2;
331 clock->p = clock->p1 * clock->p2;
332 clock->vco = refclk * clock->m / clock->n;
333 clock->dot = clock->vco / clock->p;
334}
335
Paulo Zanonie0638cd2013-09-24 13:52:54 -0300336/**
337 * Returns whether any output on the specified pipe is of the specified type
338 */
339static bool intel_pipe_has_type(struct drm_crtc *crtc, int type)
340{
341 struct drm_device *dev = crtc->dev;
342 struct intel_encoder *encoder;
343
344 for_each_encoder_on_crtc(dev, crtc, encoder)
345 if (encoder->type == type)
346 return true;
347
348 return false;
349}
350
Chris Wilson1b894b52010-12-14 20:04:54 +0000351static const intel_limit_t *intel_ironlake_limit(struct drm_crtc *crtc,
352 int refclk)
Zhenyu Wang2c072452009-06-05 15:38:42 +0800353{
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800354 struct drm_device *dev = crtc->dev;
Zhenyu Wang2c072452009-06-05 15:38:42 +0800355 const intel_limit_t *limit;
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800356
357 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
Daniel Vetter1974cad2012-11-26 17:22:09 +0100358 if (intel_is_dual_link_lvds(dev)) {
Chris Wilson1b894b52010-12-14 20:04:54 +0000359 if (refclk == 100000)
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800360 limit = &intel_limits_ironlake_dual_lvds_100m;
361 else
362 limit = &intel_limits_ironlake_dual_lvds;
363 } else {
Chris Wilson1b894b52010-12-14 20:04:54 +0000364 if (refclk == 100000)
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800365 limit = &intel_limits_ironlake_single_lvds_100m;
366 else
367 limit = &intel_limits_ironlake_single_lvds;
368 }
Daniel Vetterc6bb3532013-04-19 11:14:33 +0200369 } else
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800370 limit = &intel_limits_ironlake_dac;
Zhenyu Wang2c072452009-06-05 15:38:42 +0800371
372 return limit;
373}
374
Ma Ling044c7c42009-03-18 20:13:23 +0800375static const intel_limit_t *intel_g4x_limit(struct drm_crtc *crtc)
376{
377 struct drm_device *dev = crtc->dev;
Ma Ling044c7c42009-03-18 20:13:23 +0800378 const intel_limit_t *limit;
379
380 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
Daniel Vetter1974cad2012-11-26 17:22:09 +0100381 if (intel_is_dual_link_lvds(dev))
Keith Packarde4b36692009-06-05 19:22:17 -0700382 limit = &intel_limits_g4x_dual_channel_lvds;
Ma Ling044c7c42009-03-18 20:13:23 +0800383 else
Keith Packarde4b36692009-06-05 19:22:17 -0700384 limit = &intel_limits_g4x_single_channel_lvds;
Ma Ling044c7c42009-03-18 20:13:23 +0800385 } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI) ||
386 intel_pipe_has_type(crtc, INTEL_OUTPUT_ANALOG)) {
Keith Packarde4b36692009-06-05 19:22:17 -0700387 limit = &intel_limits_g4x_hdmi;
Ma Ling044c7c42009-03-18 20:13:23 +0800388 } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_SDVO)) {
Keith Packarde4b36692009-06-05 19:22:17 -0700389 limit = &intel_limits_g4x_sdvo;
Ma Ling044c7c42009-03-18 20:13:23 +0800390 } else /* The option is for other outputs */
Keith Packarde4b36692009-06-05 19:22:17 -0700391 limit = &intel_limits_i9xx_sdvo;
Ma Ling044c7c42009-03-18 20:13:23 +0800392
393 return limit;
394}
395
Chris Wilson1b894b52010-12-14 20:04:54 +0000396static const intel_limit_t *intel_limit(struct drm_crtc *crtc, int refclk)
Jesse Barnes79e53942008-11-07 14:24:08 -0800397{
398 struct drm_device *dev = crtc->dev;
399 const intel_limit_t *limit;
400
Eric Anholtbad720f2009-10-22 16:11:14 -0700401 if (HAS_PCH_SPLIT(dev))
Chris Wilson1b894b52010-12-14 20:04:54 +0000402 limit = intel_ironlake_limit(crtc, refclk);
Zhenyu Wang2c072452009-06-05 15:38:42 +0800403 else if (IS_G4X(dev)) {
Ma Ling044c7c42009-03-18 20:13:23 +0800404 limit = intel_g4x_limit(crtc);
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500405 } else if (IS_PINEVIEW(dev)) {
Shaohua Li21778322009-02-23 15:19:16 +0800406 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS))
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500407 limit = &intel_limits_pineview_lvds;
Shaohua Li21778322009-02-23 15:19:16 +0800408 else
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500409 limit = &intel_limits_pineview_sdvo;
Jesse Barnesa0c4da22012-06-15 11:55:13 -0700410 } else if (IS_VALLEYVIEW(dev)) {
Ville Syrjälädc730512013-09-24 21:26:30 +0300411 limit = &intel_limits_vlv;
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100412 } else if (!IS_GEN2(dev)) {
413 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS))
414 limit = &intel_limits_i9xx_lvds;
415 else
416 limit = &intel_limits_i9xx_sdvo;
Jesse Barnes79e53942008-11-07 14:24:08 -0800417 } else {
418 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS))
Keith Packarde4b36692009-06-05 19:22:17 -0700419 limit = &intel_limits_i8xx_lvds;
Daniel Vetter5d536e22013-07-06 12:52:06 +0200420 else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DVO))
Keith Packarde4b36692009-06-05 19:22:17 -0700421 limit = &intel_limits_i8xx_dvo;
Daniel Vetter5d536e22013-07-06 12:52:06 +0200422 else
423 limit = &intel_limits_i8xx_dac;
Jesse Barnes79e53942008-11-07 14:24:08 -0800424 }
425 return limit;
426}
427
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500428/* m1 is reserved as 0 in Pineview, n is a ring counter */
429static void pineview_clock(int refclk, intel_clock_t *clock)
Jesse Barnes79e53942008-11-07 14:24:08 -0800430{
Shaohua Li21778322009-02-23 15:19:16 +0800431 clock->m = clock->m2 + 2;
432 clock->p = clock->p1 * clock->p2;
433 clock->vco = refclk * clock->m / clock->n;
434 clock->dot = clock->vco / clock->p;
435}
436
Daniel Vetter7429e9d2013-04-20 17:19:46 +0200437static uint32_t i9xx_dpll_compute_m(struct dpll *dpll)
438{
439 return 5 * (dpll->m1 + 2) + (dpll->m2 + 2);
440}
441
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200442static void i9xx_clock(int refclk, intel_clock_t *clock)
Shaohua Li21778322009-02-23 15:19:16 +0800443{
Daniel Vetter7429e9d2013-04-20 17:19:46 +0200444 clock->m = i9xx_dpll_compute_m(clock);
Jesse Barnes79e53942008-11-07 14:24:08 -0800445 clock->p = clock->p1 * clock->p2;
446 clock->vco = refclk * clock->m / (clock->n + 2);
447 clock->dot = clock->vco / clock->p;
448}
449
Jesse Barnes7c04d1d2009-02-23 15:36:40 -0800450#define INTELPllInvalid(s) do { /* DRM_DEBUG(s); */ return false; } while (0)
Jesse Barnes79e53942008-11-07 14:24:08 -0800451/**
452 * Returns whether the given set of divisors are valid for a given refclk with
453 * the given connectors.
454 */
455
Chris Wilson1b894b52010-12-14 20:04:54 +0000456static bool intel_PLL_is_valid(struct drm_device *dev,
457 const intel_limit_t *limit,
458 const intel_clock_t *clock)
Jesse Barnes79e53942008-11-07 14:24:08 -0800459{
Ville Syrjäläf01b7962013-09-27 16:55:49 +0300460 if (clock->n < limit->n.min || limit->n.max < clock->n)
461 INTELPllInvalid("n out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800462 if (clock->p1 < limit->p1.min || limit->p1.max < clock->p1)
Akshay Joshi0206e352011-08-16 15:34:10 -0400463 INTELPllInvalid("p1 out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800464 if (clock->m2 < limit->m2.min || limit->m2.max < clock->m2)
Akshay Joshi0206e352011-08-16 15:34:10 -0400465 INTELPllInvalid("m2 out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800466 if (clock->m1 < limit->m1.min || limit->m1.max < clock->m1)
Akshay Joshi0206e352011-08-16 15:34:10 -0400467 INTELPllInvalid("m1 out of range\n");
Ville Syrjäläf01b7962013-09-27 16:55:49 +0300468
469 if (!IS_PINEVIEW(dev) && !IS_VALLEYVIEW(dev))
470 if (clock->m1 <= clock->m2)
471 INTELPllInvalid("m1 <= m2\n");
472
473 if (!IS_VALLEYVIEW(dev)) {
474 if (clock->p < limit->p.min || limit->p.max < clock->p)
475 INTELPllInvalid("p out of range\n");
476 if (clock->m < limit->m.min || limit->m.max < clock->m)
477 INTELPllInvalid("m out of range\n");
478 }
479
Jesse Barnes79e53942008-11-07 14:24:08 -0800480 if (clock->vco < limit->vco.min || limit->vco.max < clock->vco)
Akshay Joshi0206e352011-08-16 15:34:10 -0400481 INTELPllInvalid("vco out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800482 /* XXX: We may need to be checking "Dot clock" depending on the multiplier,
483 * connector, etc., rather than just a single range.
484 */
485 if (clock->dot < limit->dot.min || limit->dot.max < clock->dot)
Akshay Joshi0206e352011-08-16 15:34:10 -0400486 INTELPllInvalid("dot out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800487
488 return true;
489}
490
Ma Lingd4906092009-03-18 20:13:27 +0800491static bool
Daniel Vetteree9300b2013-06-03 22:40:22 +0200492i9xx_find_best_dpll(const intel_limit_t *limit, struct drm_crtc *crtc,
Sean Paulcec2f352012-01-10 15:09:36 -0800493 int target, int refclk, intel_clock_t *match_clock,
494 intel_clock_t *best_clock)
Jesse Barnes79e53942008-11-07 14:24:08 -0800495{
496 struct drm_device *dev = crtc->dev;
Jesse Barnes79e53942008-11-07 14:24:08 -0800497 intel_clock_t clock;
Jesse Barnes79e53942008-11-07 14:24:08 -0800498 int err = target;
499
Daniel Vettera210b022012-11-26 17:22:08 +0100500 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
Jesse Barnes79e53942008-11-07 14:24:08 -0800501 /*
Daniel Vettera210b022012-11-26 17:22:08 +0100502 * For LVDS just rely on its current settings for dual-channel.
503 * We haven't figured out how to reliably set up different
504 * single/dual channel state, if we even can.
Jesse Barnes79e53942008-11-07 14:24:08 -0800505 */
Daniel Vetter1974cad2012-11-26 17:22:09 +0100506 if (intel_is_dual_link_lvds(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -0800507 clock.p2 = limit->p2.p2_fast;
508 else
509 clock.p2 = limit->p2.p2_slow;
510 } else {
511 if (target < limit->p2.dot_limit)
512 clock.p2 = limit->p2.p2_slow;
513 else
514 clock.p2 = limit->p2.p2_fast;
515 }
516
Akshay Joshi0206e352011-08-16 15:34:10 -0400517 memset(best_clock, 0, sizeof(*best_clock));
Jesse Barnes79e53942008-11-07 14:24:08 -0800518
Zhao Yakui42158662009-11-20 11:24:18 +0800519 for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max;
520 clock.m1++) {
521 for (clock.m2 = limit->m2.min;
522 clock.m2 <= limit->m2.max; clock.m2++) {
Daniel Vetterc0efc382013-06-03 20:56:24 +0200523 if (clock.m2 >= clock.m1)
Zhao Yakui42158662009-11-20 11:24:18 +0800524 break;
525 for (clock.n = limit->n.min;
526 clock.n <= limit->n.max; clock.n++) {
527 for (clock.p1 = limit->p1.min;
528 clock.p1 <= limit->p1.max; clock.p1++) {
Jesse Barnes79e53942008-11-07 14:24:08 -0800529 int this_err;
530
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200531 i9xx_clock(refclk, &clock);
Chris Wilson1b894b52010-12-14 20:04:54 +0000532 if (!intel_PLL_is_valid(dev, limit,
533 &clock))
Jesse Barnes79e53942008-11-07 14:24:08 -0800534 continue;
Sean Paulcec2f352012-01-10 15:09:36 -0800535 if (match_clock &&
536 clock.p != match_clock->p)
537 continue;
Jesse Barnes79e53942008-11-07 14:24:08 -0800538
539 this_err = abs(clock.dot - target);
540 if (this_err < err) {
541 *best_clock = clock;
542 err = this_err;
543 }
544 }
545 }
546 }
547 }
548
549 return (err != target);
550}
551
Ma Lingd4906092009-03-18 20:13:27 +0800552static bool
Daniel Vetteree9300b2013-06-03 22:40:22 +0200553pnv_find_best_dpll(const intel_limit_t *limit, struct drm_crtc *crtc,
554 int target, int refclk, intel_clock_t *match_clock,
555 intel_clock_t *best_clock)
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200556{
557 struct drm_device *dev = crtc->dev;
558 intel_clock_t clock;
559 int err = target;
560
561 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
562 /*
563 * For LVDS just rely on its current settings for dual-channel.
564 * We haven't figured out how to reliably set up different
565 * single/dual channel state, if we even can.
566 */
567 if (intel_is_dual_link_lvds(dev))
568 clock.p2 = limit->p2.p2_fast;
569 else
570 clock.p2 = limit->p2.p2_slow;
571 } else {
572 if (target < limit->p2.dot_limit)
573 clock.p2 = limit->p2.p2_slow;
574 else
575 clock.p2 = limit->p2.p2_fast;
576 }
577
578 memset(best_clock, 0, sizeof(*best_clock));
579
580 for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max;
581 clock.m1++) {
582 for (clock.m2 = limit->m2.min;
583 clock.m2 <= limit->m2.max; clock.m2++) {
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200584 for (clock.n = limit->n.min;
585 clock.n <= limit->n.max; clock.n++) {
586 for (clock.p1 = limit->p1.min;
587 clock.p1 <= limit->p1.max; clock.p1++) {
588 int this_err;
589
590 pineview_clock(refclk, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -0800591 if (!intel_PLL_is_valid(dev, limit,
592 &clock))
593 continue;
594 if (match_clock &&
595 clock.p != match_clock->p)
596 continue;
597
598 this_err = abs(clock.dot - target);
599 if (this_err < err) {
600 *best_clock = clock;
601 err = this_err;
602 }
603 }
604 }
605 }
606 }
607
608 return (err != target);
609}
610
Ma Lingd4906092009-03-18 20:13:27 +0800611static bool
Daniel Vetteree9300b2013-06-03 22:40:22 +0200612g4x_find_best_dpll(const intel_limit_t *limit, struct drm_crtc *crtc,
613 int target, int refclk, intel_clock_t *match_clock,
614 intel_clock_t *best_clock)
Ma Lingd4906092009-03-18 20:13:27 +0800615{
616 struct drm_device *dev = crtc->dev;
Ma Lingd4906092009-03-18 20:13:27 +0800617 intel_clock_t clock;
618 int max_n;
619 bool found;
Adam Jackson6ba770d2010-07-02 16:43:30 -0400620 /* approximately equals target * 0.00585 */
621 int err_most = (target >> 8) + (target >> 9);
Ma Lingd4906092009-03-18 20:13:27 +0800622 found = false;
623
624 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
Daniel Vetter1974cad2012-11-26 17:22:09 +0100625 if (intel_is_dual_link_lvds(dev))
Ma Lingd4906092009-03-18 20:13:27 +0800626 clock.p2 = limit->p2.p2_fast;
627 else
628 clock.p2 = limit->p2.p2_slow;
629 } else {
630 if (target < limit->p2.dot_limit)
631 clock.p2 = limit->p2.p2_slow;
632 else
633 clock.p2 = limit->p2.p2_fast;
634 }
635
636 memset(best_clock, 0, sizeof(*best_clock));
637 max_n = limit->n.max;
Gilles Espinassef77f13e2010-03-29 15:41:47 +0200638 /* based on hardware requirement, prefer smaller n to precision */
Ma Lingd4906092009-03-18 20:13:27 +0800639 for (clock.n = limit->n.min; clock.n <= max_n; clock.n++) {
Gilles Espinassef77f13e2010-03-29 15:41:47 +0200640 /* based on hardware requirement, prefere larger m1,m2 */
Ma Lingd4906092009-03-18 20:13:27 +0800641 for (clock.m1 = limit->m1.max;
642 clock.m1 >= limit->m1.min; clock.m1--) {
643 for (clock.m2 = limit->m2.max;
644 clock.m2 >= limit->m2.min; clock.m2--) {
645 for (clock.p1 = limit->p1.max;
646 clock.p1 >= limit->p1.min; clock.p1--) {
647 int this_err;
648
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200649 i9xx_clock(refclk, &clock);
Chris Wilson1b894b52010-12-14 20:04:54 +0000650 if (!intel_PLL_is_valid(dev, limit,
651 &clock))
Ma Lingd4906092009-03-18 20:13:27 +0800652 continue;
Chris Wilson1b894b52010-12-14 20:04:54 +0000653
654 this_err = abs(clock.dot - target);
Ma Lingd4906092009-03-18 20:13:27 +0800655 if (this_err < err_most) {
656 *best_clock = clock;
657 err_most = this_err;
658 max_n = clock.n;
659 found = true;
660 }
661 }
662 }
663 }
664 }
Zhenyu Wang2c072452009-06-05 15:38:42 +0800665 return found;
666}
Ma Lingd4906092009-03-18 20:13:27 +0800667
Zhenyu Wang2c072452009-06-05 15:38:42 +0800668static bool
Daniel Vetteree9300b2013-06-03 22:40:22 +0200669vlv_find_best_dpll(const intel_limit_t *limit, struct drm_crtc *crtc,
670 int target, int refclk, intel_clock_t *match_clock,
671 intel_clock_t *best_clock)
Jesse Barnesa0c4da22012-06-15 11:55:13 -0700672{
Ville Syrjäläf01b7962013-09-27 16:55:49 +0300673 struct drm_device *dev = crtc->dev;
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300674 intel_clock_t clock;
Ville Syrjälä69e4f9002013-09-24 21:26:20 +0300675 unsigned int bestppm = 1000000;
Ville Syrjälä27e639b2013-09-24 21:26:24 +0300676 /* min update 19.2 MHz */
677 int max_n = min(limit->n.max, refclk / 19200);
Ville Syrjälä49e497e2013-09-24 21:26:31 +0300678 bool found = false;
Jesse Barnesa0c4da22012-06-15 11:55:13 -0700679
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300680 target *= 5; /* fast clock */
681
682 memset(best_clock, 0, sizeof(*best_clock));
Jesse Barnesa0c4da22012-06-15 11:55:13 -0700683
684 /* based on hardware requirement, prefer smaller n to precision */
Ville Syrjälä27e639b2013-09-24 21:26:24 +0300685 for (clock.n = limit->n.min; clock.n <= max_n; clock.n++) {
Ville Syrjälä811bbf02013-09-24 21:26:25 +0300686 for (clock.p1 = limit->p1.max; clock.p1 >= limit->p1.min; clock.p1--) {
Ville Syrjälä889059d2013-09-24 21:26:27 +0300687 for (clock.p2 = limit->p2.p2_fast; clock.p2 >= limit->p2.p2_slow;
Ville Syrjäläc1a9ae42013-09-24 21:26:23 +0300688 clock.p2 -= clock.p2 > 10 ? 2 : 1) {
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300689 clock.p = clock.p1 * clock.p2;
Jesse Barnesa0c4da22012-06-15 11:55:13 -0700690 /* based on hardware requirement, prefer bigger m1,m2 values */
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300691 for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max; clock.m1++) {
Ville Syrjälä69e4f9002013-09-24 21:26:20 +0300692 unsigned int ppm, diff;
693
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300694 clock.m2 = DIV_ROUND_CLOSEST(target * clock.p * clock.n,
695 refclk * clock.m1);
Ville Syrjälä43b0ac52013-09-24 21:26:18 +0300696
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300697 vlv_clock(refclk, &clock);
698
Ville Syrjäläf01b7962013-09-27 16:55:49 +0300699 if (!intel_PLL_is_valid(dev, limit,
700 &clock))
Ville Syrjälä43b0ac52013-09-24 21:26:18 +0300701 continue;
702
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300703 diff = abs(clock.dot - target);
704 ppm = div_u64(1000000ULL * diff, target);
705
706 if (ppm < 100 && clock.p > best_clock->p) {
Ville Syrjälä43b0ac52013-09-24 21:26:18 +0300707 bestppm = 0;
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300708 *best_clock = clock;
Ville Syrjälä49e497e2013-09-24 21:26:31 +0300709 found = true;
Ville Syrjälä43b0ac52013-09-24 21:26:18 +0300710 }
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300711
Ville Syrjäläc6861222013-09-24 21:26:21 +0300712 if (bestppm >= 10 && ppm < bestppm - 10) {
Ville Syrjälä69e4f9002013-09-24 21:26:20 +0300713 bestppm = ppm;
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300714 *best_clock = clock;
Ville Syrjälä49e497e2013-09-24 21:26:31 +0300715 found = true;
Jesse Barnesa0c4da22012-06-15 11:55:13 -0700716 }
717 }
718 }
719 }
720 }
Jesse Barnesa0c4da22012-06-15 11:55:13 -0700721
Ville Syrjälä49e497e2013-09-24 21:26:31 +0300722 return found;
Jesse Barnesa0c4da22012-06-15 11:55:13 -0700723}
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700724
Ville Syrjälä20ddf662013-09-04 18:25:25 +0300725bool intel_crtc_active(struct drm_crtc *crtc)
726{
727 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
728
729 /* Be paranoid as we can arrive here with only partial
730 * state retrieved from the hardware during setup.
731 *
Damien Lespiau241bfc32013-09-25 16:45:37 +0100732 * We can ditch the adjusted_mode.crtc_clock check as soon
Ville Syrjälä20ddf662013-09-04 18:25:25 +0300733 * as Haswell has gained clock readout/fastboot support.
734 *
735 * We can ditch the crtc->fb check as soon as we can
736 * properly reconstruct framebuffers.
737 */
738 return intel_crtc->active && crtc->fb &&
Damien Lespiau241bfc32013-09-25 16:45:37 +0100739 intel_crtc->config.adjusted_mode.crtc_clock;
Ville Syrjälä20ddf662013-09-04 18:25:25 +0300740}
741
Paulo Zanonia5c961d2012-10-24 15:59:34 -0200742enum transcoder intel_pipe_to_cpu_transcoder(struct drm_i915_private *dev_priv,
743 enum pipe pipe)
744{
745 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
746 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
747
Daniel Vetter3b117c82013-04-17 20:15:07 +0200748 return intel_crtc->config.cpu_transcoder;
Paulo Zanonia5c961d2012-10-24 15:59:34 -0200749}
750
Paulo Zanonia928d532012-05-04 17:18:15 -0300751static void ironlake_wait_for_vblank(struct drm_device *dev, int pipe)
752{
753 struct drm_i915_private *dev_priv = dev->dev_private;
754 u32 frame, frame_reg = PIPEFRAME(pipe);
755
756 frame = I915_READ(frame_reg);
757
758 if (wait_for(I915_READ_NOTRACE(frame_reg) != frame, 50))
759 DRM_DEBUG_KMS("vblank wait timed out\n");
760}
761
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700762/**
763 * intel_wait_for_vblank - wait for vblank on a given pipe
764 * @dev: drm device
765 * @pipe: pipe to wait for
766 *
767 * Wait for vblank to occur on a given pipe. Needed for various bits of
768 * mode setting code.
769 */
770void intel_wait_for_vblank(struct drm_device *dev, int pipe)
Jesse Barnes79e53942008-11-07 14:24:08 -0800771{
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700772 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800773 int pipestat_reg = PIPESTAT(pipe);
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700774
Paulo Zanonia928d532012-05-04 17:18:15 -0300775 if (INTEL_INFO(dev)->gen >= 5) {
776 ironlake_wait_for_vblank(dev, pipe);
777 return;
778 }
779
Chris Wilson300387c2010-09-05 20:25:43 +0100780 /* Clear existing vblank status. Note this will clear any other
781 * sticky status fields as well.
782 *
783 * This races with i915_driver_irq_handler() with the result
784 * that either function could miss a vblank event. Here it is not
785 * fatal, as we will either wait upon the next vblank interrupt or
786 * timeout. Generally speaking intel_wait_for_vblank() is only
787 * called during modeset at which time the GPU should be idle and
788 * should *not* be performing page flips and thus not waiting on
789 * vblanks...
790 * Currently, the result of us stealing a vblank from the irq
791 * handler is that a single frame will be skipped during swapbuffers.
792 */
793 I915_WRITE(pipestat_reg,
794 I915_READ(pipestat_reg) | PIPE_VBLANK_INTERRUPT_STATUS);
795
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700796 /* Wait for vblank interrupt bit to set */
Chris Wilson481b6af2010-08-23 17:43:35 +0100797 if (wait_for(I915_READ(pipestat_reg) &
798 PIPE_VBLANK_INTERRUPT_STATUS,
799 50))
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700800 DRM_DEBUG_KMS("vblank wait timed out\n");
801}
802
Keith Packardab7ad7f2010-10-03 00:33:06 -0700803/*
804 * intel_wait_for_pipe_off - wait for pipe to turn off
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700805 * @dev: drm device
806 * @pipe: pipe to wait for
807 *
808 * After disabling a pipe, we can't wait for vblank in the usual way,
809 * spinning on the vblank interrupt status bit, since we won't actually
810 * see an interrupt when the pipe is disabled.
811 *
Keith Packardab7ad7f2010-10-03 00:33:06 -0700812 * On Gen4 and above:
813 * wait for the pipe register state bit to turn off
814 *
815 * Otherwise:
816 * wait for the display line value to settle (it usually
817 * ends up stopping at the start of the next frame).
Chris Wilson58e10eb2010-10-03 10:56:11 +0100818 *
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700819 */
Chris Wilson58e10eb2010-10-03 10:56:11 +0100820void intel_wait_for_pipe_off(struct drm_device *dev, int pipe)
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700821{
822 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni702e7a52012-10-23 18:29:59 -0200823 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
824 pipe);
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700825
Keith Packardab7ad7f2010-10-03 00:33:06 -0700826 if (INTEL_INFO(dev)->gen >= 4) {
Paulo Zanoni702e7a52012-10-23 18:29:59 -0200827 int reg = PIPECONF(cpu_transcoder);
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700828
Keith Packardab7ad7f2010-10-03 00:33:06 -0700829 /* Wait for the Pipe State to go off */
Chris Wilson58e10eb2010-10-03 10:56:11 +0100830 if (wait_for((I915_READ(reg) & I965_PIPECONF_ACTIVE) == 0,
831 100))
Daniel Vetter284637d2012-07-09 09:51:57 +0200832 WARN(1, "pipe_off wait timed out\n");
Keith Packardab7ad7f2010-10-03 00:33:06 -0700833 } else {
Paulo Zanoni837ba002012-05-04 17:18:14 -0300834 u32 last_line, line_mask;
Chris Wilson58e10eb2010-10-03 10:56:11 +0100835 int reg = PIPEDSL(pipe);
Keith Packardab7ad7f2010-10-03 00:33:06 -0700836 unsigned long timeout = jiffies + msecs_to_jiffies(100);
837
Paulo Zanoni837ba002012-05-04 17:18:14 -0300838 if (IS_GEN2(dev))
839 line_mask = DSL_LINEMASK_GEN2;
840 else
841 line_mask = DSL_LINEMASK_GEN3;
842
Keith Packardab7ad7f2010-10-03 00:33:06 -0700843 /* Wait for the display line to settle */
844 do {
Paulo Zanoni837ba002012-05-04 17:18:14 -0300845 last_line = I915_READ(reg) & line_mask;
Keith Packardab7ad7f2010-10-03 00:33:06 -0700846 mdelay(5);
Paulo Zanoni837ba002012-05-04 17:18:14 -0300847 } while (((I915_READ(reg) & line_mask) != last_line) &&
Keith Packardab7ad7f2010-10-03 00:33:06 -0700848 time_after(timeout, jiffies));
849 if (time_after(jiffies, timeout))
Daniel Vetter284637d2012-07-09 09:51:57 +0200850 WARN(1, "pipe_off wait timed out\n");
Keith Packardab7ad7f2010-10-03 00:33:06 -0700851 }
Jesse Barnes79e53942008-11-07 14:24:08 -0800852}
853
Damien Lespiaub0ea7d32012-12-13 16:09:00 +0000854/*
855 * ibx_digital_port_connected - is the specified port connected?
856 * @dev_priv: i915 private structure
857 * @port: the port to test
858 *
859 * Returns true if @port is connected, false otherwise.
860 */
861bool ibx_digital_port_connected(struct drm_i915_private *dev_priv,
862 struct intel_digital_port *port)
863{
864 u32 bit;
865
Damien Lespiauc36346e2012-12-13 16:09:03 +0000866 if (HAS_PCH_IBX(dev_priv->dev)) {
867 switch(port->port) {
868 case PORT_B:
869 bit = SDE_PORTB_HOTPLUG;
870 break;
871 case PORT_C:
872 bit = SDE_PORTC_HOTPLUG;
873 break;
874 case PORT_D:
875 bit = SDE_PORTD_HOTPLUG;
876 break;
877 default:
878 return true;
879 }
880 } else {
881 switch(port->port) {
882 case PORT_B:
883 bit = SDE_PORTB_HOTPLUG_CPT;
884 break;
885 case PORT_C:
886 bit = SDE_PORTC_HOTPLUG_CPT;
887 break;
888 case PORT_D:
889 bit = SDE_PORTD_HOTPLUG_CPT;
890 break;
891 default:
892 return true;
893 }
Damien Lespiaub0ea7d32012-12-13 16:09:00 +0000894 }
895
896 return I915_READ(SDEISR) & bit;
897}
898
Jesse Barnesb24e7172011-01-04 15:09:30 -0800899static const char *state_string(bool enabled)
900{
901 return enabled ? "on" : "off";
902}
903
904/* Only for pre-ILK configs */
Daniel Vetter55607e82013-06-16 21:42:39 +0200905void assert_pll(struct drm_i915_private *dev_priv,
906 enum pipe pipe, bool state)
Jesse Barnesb24e7172011-01-04 15:09:30 -0800907{
908 int reg;
909 u32 val;
910 bool cur_state;
911
912 reg = DPLL(pipe);
913 val = I915_READ(reg);
914 cur_state = !!(val & DPLL_VCO_ENABLE);
915 WARN(cur_state != state,
916 "PLL state assertion failure (expected %s, current %s)\n",
917 state_string(state), state_string(cur_state));
918}
Jesse Barnesb24e7172011-01-04 15:09:30 -0800919
Jani Nikula23538ef2013-08-27 15:12:22 +0300920/* XXX: the dsi pll is shared between MIPI DSI ports */
921static void assert_dsi_pll(struct drm_i915_private *dev_priv, bool state)
922{
923 u32 val;
924 bool cur_state;
925
926 mutex_lock(&dev_priv->dpio_lock);
927 val = vlv_cck_read(dev_priv, CCK_REG_DSI_PLL_CONTROL);
928 mutex_unlock(&dev_priv->dpio_lock);
929
930 cur_state = val & DSI_PLL_VCO_EN;
931 WARN(cur_state != state,
932 "DSI PLL state assertion failure (expected %s, current %s)\n",
933 state_string(state), state_string(cur_state));
934}
935#define assert_dsi_pll_enabled(d) assert_dsi_pll(d, true)
936#define assert_dsi_pll_disabled(d) assert_dsi_pll(d, false)
937
Daniel Vetter55607e82013-06-16 21:42:39 +0200938struct intel_shared_dpll *
Daniel Vettere2b78262013-06-07 23:10:03 +0200939intel_crtc_to_shared_dpll(struct intel_crtc *crtc)
Jesse Barnes040484a2011-01-03 12:14:26 -0800940{
Daniel Vettere2b78262013-06-07 23:10:03 +0200941 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
942
Daniel Vettera43f6e02013-06-07 23:10:32 +0200943 if (crtc->config.shared_dpll < 0)
Daniel Vettere2b78262013-06-07 23:10:03 +0200944 return NULL;
945
Daniel Vettera43f6e02013-06-07 23:10:32 +0200946 return &dev_priv->shared_dplls[crtc->config.shared_dpll];
Daniel Vettere2b78262013-06-07 23:10:03 +0200947}
948
Jesse Barnesb24e7172011-01-04 15:09:30 -0800949/* For ILK+ */
Daniel Vetter55607e82013-06-16 21:42:39 +0200950void assert_shared_dpll(struct drm_i915_private *dev_priv,
951 struct intel_shared_dpll *pll,
952 bool state)
Jesse Barnes040484a2011-01-03 12:14:26 -0800953{
Jesse Barnes040484a2011-01-03 12:14:26 -0800954 bool cur_state;
Daniel Vetter53589012013-06-05 13:34:16 +0200955 struct intel_dpll_hw_state hw_state;
Jesse Barnes040484a2011-01-03 12:14:26 -0800956
Eugeni Dodonov9d82aa12012-05-09 15:37:17 -0300957 if (HAS_PCH_LPT(dev_priv->dev)) {
958 DRM_DEBUG_DRIVER("LPT detected: skipping PCH PLL test\n");
959 return;
960 }
961
Chris Wilson92b27b02012-05-20 18:10:50 +0100962 if (WARN (!pll,
Daniel Vetter46edb022013-06-05 13:34:12 +0200963 "asserting DPLL %s with no DPLL\n", state_string(state)))
Jesse Barnesee7b9f92012-04-20 17:11:53 +0100964 return;
Jesse Barnesee7b9f92012-04-20 17:11:53 +0100965
Daniel Vetter53589012013-06-05 13:34:16 +0200966 cur_state = pll->get_hw_state(dev_priv, pll, &hw_state);
Chris Wilson92b27b02012-05-20 18:10:50 +0100967 WARN(cur_state != state,
Daniel Vetter53589012013-06-05 13:34:16 +0200968 "%s assertion failure (expected %s, current %s)\n",
969 pll->name, state_string(state), state_string(cur_state));
Jesse Barnes040484a2011-01-03 12:14:26 -0800970}
Jesse Barnes040484a2011-01-03 12:14:26 -0800971
972static void assert_fdi_tx(struct drm_i915_private *dev_priv,
973 enum pipe pipe, bool state)
974{
975 int reg;
976 u32 val;
977 bool cur_state;
Paulo Zanoniad80a812012-10-24 16:06:19 -0200978 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
979 pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -0800980
Paulo Zanoniaffa9352012-11-23 15:30:39 -0200981 if (HAS_DDI(dev_priv->dev)) {
982 /* DDI does not have a specific FDI_TX register */
Paulo Zanoniad80a812012-10-24 16:06:19 -0200983 reg = TRANS_DDI_FUNC_CTL(cpu_transcoder);
Eugeni Dodonovbf507ef2012-05-09 15:37:18 -0300984 val = I915_READ(reg);
Paulo Zanoniad80a812012-10-24 16:06:19 -0200985 cur_state = !!(val & TRANS_DDI_FUNC_ENABLE);
Eugeni Dodonovbf507ef2012-05-09 15:37:18 -0300986 } else {
987 reg = FDI_TX_CTL(pipe);
988 val = I915_READ(reg);
989 cur_state = !!(val & FDI_TX_ENABLE);
990 }
Jesse Barnes040484a2011-01-03 12:14:26 -0800991 WARN(cur_state != state,
992 "FDI TX state assertion failure (expected %s, current %s)\n",
993 state_string(state), state_string(cur_state));
994}
995#define assert_fdi_tx_enabled(d, p) assert_fdi_tx(d, p, true)
996#define assert_fdi_tx_disabled(d, p) assert_fdi_tx(d, p, false)
997
998static void assert_fdi_rx(struct drm_i915_private *dev_priv,
999 enum pipe pipe, bool state)
1000{
1001 int reg;
1002 u32 val;
1003 bool cur_state;
1004
Paulo Zanonid63fa0d2012-11-20 13:27:35 -02001005 reg = FDI_RX_CTL(pipe);
1006 val = I915_READ(reg);
1007 cur_state = !!(val & FDI_RX_ENABLE);
Jesse Barnes040484a2011-01-03 12:14:26 -08001008 WARN(cur_state != state,
1009 "FDI RX state assertion failure (expected %s, current %s)\n",
1010 state_string(state), state_string(cur_state));
1011}
1012#define assert_fdi_rx_enabled(d, p) assert_fdi_rx(d, p, true)
1013#define assert_fdi_rx_disabled(d, p) assert_fdi_rx(d, p, false)
1014
1015static void assert_fdi_tx_pll_enabled(struct drm_i915_private *dev_priv,
1016 enum pipe pipe)
1017{
1018 int reg;
1019 u32 val;
1020
1021 /* ILK FDI PLL is always enabled */
1022 if (dev_priv->info->gen == 5)
1023 return;
1024
Eugeni Dodonovbf507ef2012-05-09 15:37:18 -03001025 /* On Haswell, DDI ports are responsible for the FDI PLL setup */
Paulo Zanoniaffa9352012-11-23 15:30:39 -02001026 if (HAS_DDI(dev_priv->dev))
Eugeni Dodonovbf507ef2012-05-09 15:37:18 -03001027 return;
1028
Jesse Barnes040484a2011-01-03 12:14:26 -08001029 reg = FDI_TX_CTL(pipe);
1030 val = I915_READ(reg);
1031 WARN(!(val & FDI_TX_PLL_ENABLE), "FDI TX PLL assertion failure, should be active but is disabled\n");
1032}
1033
Daniel Vetter55607e82013-06-16 21:42:39 +02001034void assert_fdi_rx_pll(struct drm_i915_private *dev_priv,
1035 enum pipe pipe, bool state)
Jesse Barnes040484a2011-01-03 12:14:26 -08001036{
1037 int reg;
1038 u32 val;
Daniel Vetter55607e82013-06-16 21:42:39 +02001039 bool cur_state;
Jesse Barnes040484a2011-01-03 12:14:26 -08001040
1041 reg = FDI_RX_CTL(pipe);
1042 val = I915_READ(reg);
Daniel Vetter55607e82013-06-16 21:42:39 +02001043 cur_state = !!(val & FDI_RX_PLL_ENABLE);
1044 WARN(cur_state != state,
1045 "FDI RX PLL assertion failure (expected %s, current %s)\n",
1046 state_string(state), state_string(cur_state));
Jesse Barnes040484a2011-01-03 12:14:26 -08001047}
1048
Jesse Barnesea0760c2011-01-04 15:09:32 -08001049static void assert_panel_unlocked(struct drm_i915_private *dev_priv,
1050 enum pipe pipe)
1051{
1052 int pp_reg, lvds_reg;
1053 u32 val;
1054 enum pipe panel_pipe = PIPE_A;
Thomas Jarosch0de3b482011-08-25 15:37:45 +02001055 bool locked = true;
Jesse Barnesea0760c2011-01-04 15:09:32 -08001056
1057 if (HAS_PCH_SPLIT(dev_priv->dev)) {
1058 pp_reg = PCH_PP_CONTROL;
1059 lvds_reg = PCH_LVDS;
1060 } else {
1061 pp_reg = PP_CONTROL;
1062 lvds_reg = LVDS;
1063 }
1064
1065 val = I915_READ(pp_reg);
1066 if (!(val & PANEL_POWER_ON) ||
1067 ((val & PANEL_UNLOCK_REGS) == PANEL_UNLOCK_REGS))
1068 locked = false;
1069
1070 if (I915_READ(lvds_reg) & LVDS_PIPEB_SELECT)
1071 panel_pipe = PIPE_B;
1072
1073 WARN(panel_pipe == pipe && locked,
1074 "panel assertion failure, pipe %c regs locked\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001075 pipe_name(pipe));
Jesse Barnesea0760c2011-01-04 15:09:32 -08001076}
1077
Jani Nikula93ce0ba2013-09-13 11:03:08 +03001078static void assert_cursor(struct drm_i915_private *dev_priv,
1079 enum pipe pipe, bool state)
1080{
1081 struct drm_device *dev = dev_priv->dev;
1082 bool cur_state;
1083
1084 if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev))
1085 cur_state = I915_READ(CURCNTR_IVB(pipe)) & CURSOR_MODE;
1086 else if (IS_845G(dev) || IS_I865G(dev))
1087 cur_state = I915_READ(_CURACNTR) & CURSOR_ENABLE;
1088 else
1089 cur_state = I915_READ(CURCNTR(pipe)) & CURSOR_MODE;
1090
1091 WARN(cur_state != state,
1092 "cursor on pipe %c assertion failure (expected %s, current %s)\n",
1093 pipe_name(pipe), state_string(state), state_string(cur_state));
1094}
1095#define assert_cursor_enabled(d, p) assert_cursor(d, p, true)
1096#define assert_cursor_disabled(d, p) assert_cursor(d, p, false)
1097
Jesse Barnesb840d907f2011-12-13 13:19:38 -08001098void assert_pipe(struct drm_i915_private *dev_priv,
1099 enum pipe pipe, bool state)
Jesse Barnesb24e7172011-01-04 15:09:30 -08001100{
1101 int reg;
1102 u32 val;
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001103 bool cur_state;
Paulo Zanoni702e7a52012-10-23 18:29:59 -02001104 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
1105 pipe);
Jesse Barnesb24e7172011-01-04 15:09:30 -08001106
Daniel Vetter8e636782012-01-22 01:36:48 +01001107 /* if we need the pipe A quirk it must be always on */
1108 if (pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE)
1109 state = true;
1110
Paulo Zanonib97186f2013-05-03 12:15:36 -03001111 if (!intel_display_power_enabled(dev_priv->dev,
1112 POWER_DOMAIN_TRANSCODER(cpu_transcoder))) {
Paulo Zanoni69310162013-01-29 16:35:19 -02001113 cur_state = false;
1114 } else {
1115 reg = PIPECONF(cpu_transcoder);
1116 val = I915_READ(reg);
1117 cur_state = !!(val & PIPECONF_ENABLE);
1118 }
1119
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001120 WARN(cur_state != state,
1121 "pipe %c assertion failure (expected %s, current %s)\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001122 pipe_name(pipe), state_string(state), state_string(cur_state));
Jesse Barnesb24e7172011-01-04 15:09:30 -08001123}
1124
Chris Wilson931872f2012-01-16 23:01:13 +00001125static void assert_plane(struct drm_i915_private *dev_priv,
1126 enum plane plane, bool state)
Jesse Barnesb24e7172011-01-04 15:09:30 -08001127{
1128 int reg;
1129 u32 val;
Chris Wilson931872f2012-01-16 23:01:13 +00001130 bool cur_state;
Jesse Barnesb24e7172011-01-04 15:09:30 -08001131
1132 reg = DSPCNTR(plane);
1133 val = I915_READ(reg);
Chris Wilson931872f2012-01-16 23:01:13 +00001134 cur_state = !!(val & DISPLAY_PLANE_ENABLE);
1135 WARN(cur_state != state,
1136 "plane %c assertion failure (expected %s, current %s)\n",
1137 plane_name(plane), state_string(state), state_string(cur_state));
Jesse Barnesb24e7172011-01-04 15:09:30 -08001138}
1139
Chris Wilson931872f2012-01-16 23:01:13 +00001140#define assert_plane_enabled(d, p) assert_plane(d, p, true)
1141#define assert_plane_disabled(d, p) assert_plane(d, p, false)
1142
Jesse Barnesb24e7172011-01-04 15:09:30 -08001143static void assert_planes_disabled(struct drm_i915_private *dev_priv,
1144 enum pipe pipe)
1145{
Ville Syrjälä653e1022013-06-04 13:49:05 +03001146 struct drm_device *dev = dev_priv->dev;
Jesse Barnesb24e7172011-01-04 15:09:30 -08001147 int reg, i;
1148 u32 val;
1149 int cur_pipe;
1150
Ville Syrjälä653e1022013-06-04 13:49:05 +03001151 /* Primary planes are fixed to pipes on gen4+ */
1152 if (INTEL_INFO(dev)->gen >= 4) {
Adam Jackson28c057942011-10-07 14:38:42 -04001153 reg = DSPCNTR(pipe);
1154 val = I915_READ(reg);
1155 WARN((val & DISPLAY_PLANE_ENABLE),
1156 "plane %c assertion failure, should be disabled but not\n",
1157 plane_name(pipe));
Jesse Barnes19ec1352011-02-02 12:28:02 -08001158 return;
Adam Jackson28c057942011-10-07 14:38:42 -04001159 }
Jesse Barnes19ec1352011-02-02 12:28:02 -08001160
Jesse Barnesb24e7172011-01-04 15:09:30 -08001161 /* Need to check both planes against the pipe */
Damien Lespiau08e2a7d2013-07-11 20:10:54 +01001162 for_each_pipe(i) {
Jesse Barnesb24e7172011-01-04 15:09:30 -08001163 reg = DSPCNTR(i);
1164 val = I915_READ(reg);
1165 cur_pipe = (val & DISPPLANE_SEL_PIPE_MASK) >>
1166 DISPPLANE_SEL_PIPE_SHIFT;
1167 WARN((val & DISPLAY_PLANE_ENABLE) && pipe == cur_pipe,
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001168 "plane %c assertion failure, should be off on pipe %c but is still active\n",
1169 plane_name(i), pipe_name(pipe));
Jesse Barnesb24e7172011-01-04 15:09:30 -08001170 }
1171}
1172
Jesse Barnes19332d72013-03-28 09:55:38 -07001173static void assert_sprites_disabled(struct drm_i915_private *dev_priv,
1174 enum pipe pipe)
1175{
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001176 struct drm_device *dev = dev_priv->dev;
Jesse Barnes19332d72013-03-28 09:55:38 -07001177 int reg, i;
1178 u32 val;
1179
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001180 if (IS_VALLEYVIEW(dev)) {
1181 for (i = 0; i < dev_priv->num_plane; i++) {
1182 reg = SPCNTR(pipe, i);
1183 val = I915_READ(reg);
1184 WARN((val & SP_ENABLE),
1185 "sprite %c assertion failure, should be off on pipe %c but is still active\n",
1186 sprite_name(pipe, i), pipe_name(pipe));
1187 }
1188 } else if (INTEL_INFO(dev)->gen >= 7) {
1189 reg = SPRCTL(pipe);
Jesse Barnes19332d72013-03-28 09:55:38 -07001190 val = I915_READ(reg);
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001191 WARN((val & SPRITE_ENABLE),
Ville Syrjälä06da8da2013-04-17 17:48:51 +03001192 "sprite %c assertion failure, should be off on pipe %c but is still active\n",
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001193 plane_name(pipe), pipe_name(pipe));
1194 } else if (INTEL_INFO(dev)->gen >= 5) {
1195 reg = DVSCNTR(pipe);
1196 val = I915_READ(reg);
1197 WARN((val & DVS_ENABLE),
1198 "sprite %c assertion failure, should be off on pipe %c but is still active\n",
1199 plane_name(pipe), pipe_name(pipe));
Jesse Barnes19332d72013-03-28 09:55:38 -07001200 }
1201}
1202
Jesse Barnes92f25842011-01-04 15:09:34 -08001203static void assert_pch_refclk_enabled(struct drm_i915_private *dev_priv)
1204{
1205 u32 val;
1206 bool enabled;
1207
Eugeni Dodonov9d82aa12012-05-09 15:37:17 -03001208 if (HAS_PCH_LPT(dev_priv->dev)) {
1209 DRM_DEBUG_DRIVER("LPT does not has PCH refclk, skipping check\n");
1210 return;
1211 }
1212
Jesse Barnes92f25842011-01-04 15:09:34 -08001213 val = I915_READ(PCH_DREF_CONTROL);
1214 enabled = !!(val & (DREF_SSC_SOURCE_MASK | DREF_NONSPREAD_SOURCE_MASK |
1215 DREF_SUPERSPREAD_SOURCE_MASK));
1216 WARN(!enabled, "PCH refclk assertion failure, should be active but is disabled\n");
1217}
1218
Daniel Vetterab9412b2013-05-03 11:49:46 +02001219static void assert_pch_transcoder_disabled(struct drm_i915_private *dev_priv,
1220 enum pipe pipe)
Jesse Barnes92f25842011-01-04 15:09:34 -08001221{
1222 int reg;
1223 u32 val;
1224 bool enabled;
1225
Daniel Vetterab9412b2013-05-03 11:49:46 +02001226 reg = PCH_TRANSCONF(pipe);
Jesse Barnes92f25842011-01-04 15:09:34 -08001227 val = I915_READ(reg);
1228 enabled = !!(val & TRANS_ENABLE);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001229 WARN(enabled,
1230 "transcoder assertion failed, should be off on pipe %c but is still active\n",
1231 pipe_name(pipe));
Jesse Barnes92f25842011-01-04 15:09:34 -08001232}
1233
Keith Packard4e634382011-08-06 10:39:45 -07001234static bool dp_pipe_enabled(struct drm_i915_private *dev_priv,
1235 enum pipe pipe, u32 port_sel, u32 val)
Keith Packardf0575e92011-07-25 22:12:43 -07001236{
1237 if ((val & DP_PORT_EN) == 0)
1238 return false;
1239
1240 if (HAS_PCH_CPT(dev_priv->dev)) {
1241 u32 trans_dp_ctl_reg = TRANS_DP_CTL(pipe);
1242 u32 trans_dp_ctl = I915_READ(trans_dp_ctl_reg);
1243 if ((trans_dp_ctl & TRANS_DP_PORT_SEL_MASK) != port_sel)
1244 return false;
1245 } else {
1246 if ((val & DP_PIPE_MASK) != (pipe << 30))
1247 return false;
1248 }
1249 return true;
1250}
1251
Keith Packard1519b992011-08-06 10:35:34 -07001252static bool hdmi_pipe_enabled(struct drm_i915_private *dev_priv,
1253 enum pipe pipe, u32 val)
1254{
Paulo Zanonidc0fa712013-02-19 16:21:46 -03001255 if ((val & SDVO_ENABLE) == 0)
Keith Packard1519b992011-08-06 10:35:34 -07001256 return false;
1257
1258 if (HAS_PCH_CPT(dev_priv->dev)) {
Paulo Zanonidc0fa712013-02-19 16:21:46 -03001259 if ((val & SDVO_PIPE_SEL_MASK_CPT) != SDVO_PIPE_SEL_CPT(pipe))
Keith Packard1519b992011-08-06 10:35:34 -07001260 return false;
1261 } else {
Paulo Zanonidc0fa712013-02-19 16:21:46 -03001262 if ((val & SDVO_PIPE_SEL_MASK) != SDVO_PIPE_SEL(pipe))
Keith Packard1519b992011-08-06 10:35:34 -07001263 return false;
1264 }
1265 return true;
1266}
1267
1268static bool lvds_pipe_enabled(struct drm_i915_private *dev_priv,
1269 enum pipe pipe, u32 val)
1270{
1271 if ((val & LVDS_PORT_EN) == 0)
1272 return false;
1273
1274 if (HAS_PCH_CPT(dev_priv->dev)) {
1275 if ((val & PORT_TRANS_SEL_MASK) != PORT_TRANS_SEL_CPT(pipe))
1276 return false;
1277 } else {
1278 if ((val & LVDS_PIPE_MASK) != LVDS_PIPE(pipe))
1279 return false;
1280 }
1281 return true;
1282}
1283
1284static bool adpa_pipe_enabled(struct drm_i915_private *dev_priv,
1285 enum pipe pipe, u32 val)
1286{
1287 if ((val & ADPA_DAC_ENABLE) == 0)
1288 return false;
1289 if (HAS_PCH_CPT(dev_priv->dev)) {
1290 if ((val & PORT_TRANS_SEL_MASK) != PORT_TRANS_SEL_CPT(pipe))
1291 return false;
1292 } else {
1293 if ((val & ADPA_PIPE_SELECT_MASK) != ADPA_PIPE_SELECT(pipe))
1294 return false;
1295 }
1296 return true;
1297}
1298
Jesse Barnes291906f2011-02-02 12:28:03 -08001299static void assert_pch_dp_disabled(struct drm_i915_private *dev_priv,
Keith Packardf0575e92011-07-25 22:12:43 -07001300 enum pipe pipe, int reg, u32 port_sel)
Jesse Barnes291906f2011-02-02 12:28:03 -08001301{
Jesse Barnes47a05ec2011-02-07 13:46:40 -08001302 u32 val = I915_READ(reg);
Keith Packard4e634382011-08-06 10:39:45 -07001303 WARN(dp_pipe_enabled(dev_priv, pipe, port_sel, val),
Jesse Barnes291906f2011-02-02 12:28:03 -08001304 "PCH DP (0x%08x) enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001305 reg, pipe_name(pipe));
Daniel Vetterde9a35a2012-06-05 11:03:40 +02001306
Daniel Vetter75c5da22012-09-10 21:58:29 +02001307 WARN(HAS_PCH_IBX(dev_priv->dev) && (val & DP_PORT_EN) == 0
1308 && (val & DP_PIPEB_SELECT),
Daniel Vetterde9a35a2012-06-05 11:03:40 +02001309 "IBX PCH dp port still using transcoder B\n");
Jesse Barnes291906f2011-02-02 12:28:03 -08001310}
1311
1312static void assert_pch_hdmi_disabled(struct drm_i915_private *dev_priv,
1313 enum pipe pipe, int reg)
1314{
Jesse Barnes47a05ec2011-02-07 13:46:40 -08001315 u32 val = I915_READ(reg);
Xu, Anhuab70ad582012-08-13 03:08:33 +00001316 WARN(hdmi_pipe_enabled(dev_priv, pipe, val),
Adam Jackson23c99e72011-10-07 14:38:43 -04001317 "PCH HDMI (0x%08x) enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001318 reg, pipe_name(pipe));
Daniel Vetterde9a35a2012-06-05 11:03:40 +02001319
Paulo Zanonidc0fa712013-02-19 16:21:46 -03001320 WARN(HAS_PCH_IBX(dev_priv->dev) && (val & SDVO_ENABLE) == 0
Daniel Vetter75c5da22012-09-10 21:58:29 +02001321 && (val & SDVO_PIPE_B_SELECT),
Daniel Vetterde9a35a2012-06-05 11:03:40 +02001322 "IBX PCH hdmi port still using transcoder B\n");
Jesse Barnes291906f2011-02-02 12:28:03 -08001323}
1324
1325static void assert_pch_ports_disabled(struct drm_i915_private *dev_priv,
1326 enum pipe pipe)
1327{
1328 int reg;
1329 u32 val;
Jesse Barnes291906f2011-02-02 12:28:03 -08001330
Keith Packardf0575e92011-07-25 22:12:43 -07001331 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_B, TRANS_DP_PORT_SEL_B);
1332 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_C, TRANS_DP_PORT_SEL_C);
1333 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_D, TRANS_DP_PORT_SEL_D);
Jesse Barnes291906f2011-02-02 12:28:03 -08001334
1335 reg = PCH_ADPA;
1336 val = I915_READ(reg);
Xu, Anhuab70ad582012-08-13 03:08:33 +00001337 WARN(adpa_pipe_enabled(dev_priv, pipe, val),
Jesse Barnes291906f2011-02-02 12:28:03 -08001338 "PCH VGA enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001339 pipe_name(pipe));
Jesse Barnes291906f2011-02-02 12:28:03 -08001340
1341 reg = PCH_LVDS;
1342 val = I915_READ(reg);
Xu, Anhuab70ad582012-08-13 03:08:33 +00001343 WARN(lvds_pipe_enabled(dev_priv, pipe, val),
Jesse Barnes291906f2011-02-02 12:28:03 -08001344 "PCH LVDS enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001345 pipe_name(pipe));
Jesse Barnes291906f2011-02-02 12:28:03 -08001346
Paulo Zanonie2debe92013-02-18 19:00:27 -03001347 assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMIB);
1348 assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMIC);
1349 assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMID);
Jesse Barnes291906f2011-02-02 12:28:03 -08001350}
1351
Jesse Barnes40e9cf62013-10-03 11:35:46 -07001352static void intel_init_dpio(struct drm_device *dev)
1353{
1354 struct drm_i915_private *dev_priv = dev->dev_private;
1355
1356 if (!IS_VALLEYVIEW(dev))
1357 return;
1358
1359 /*
1360 * From VLV2A0_DP_eDP_DPIO_driver_vbios_notes_10.docx -
1361 * 6. De-assert cmn_reset/side_reset. Same as VLV X0.
1362 * a. GUnit 0x2110 bit[0] set to 1 (def 0)
1363 * b. The other bits such as sfr settings / modesel may all be set
1364 * to 0.
1365 *
1366 * This should only be done on init and resume from S3 with both
1367 * PLLs disabled, or we risk losing DPIO and PLL synchronization.
1368 */
1369 I915_WRITE(DPIO_CTL, I915_READ(DPIO_CTL) | DPIO_CMNRST);
1370}
1371
Daniel Vetter426115c2013-07-11 22:13:42 +02001372static void vlv_enable_pll(struct intel_crtc *crtc)
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001373{
Daniel Vetter426115c2013-07-11 22:13:42 +02001374 struct drm_device *dev = crtc->base.dev;
1375 struct drm_i915_private *dev_priv = dev->dev_private;
1376 int reg = DPLL(crtc->pipe);
1377 u32 dpll = crtc->config.dpll_hw_state.dpll;
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001378
Daniel Vetter426115c2013-07-11 22:13:42 +02001379 assert_pipe_disabled(dev_priv, crtc->pipe);
Daniel Vetter58c6eaa2013-04-11 16:29:09 +02001380
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001381 /* No really, not for ILK+ */
Daniel Vetter87442f72013-06-06 00:52:17 +02001382 BUG_ON(!IS_VALLEYVIEW(dev_priv->dev));
1383
1384 /* PLL is protected by panel, make sure we can write it */
1385 if (IS_MOBILE(dev_priv->dev) && !IS_I830(dev_priv->dev))
Daniel Vetter426115c2013-07-11 22:13:42 +02001386 assert_panel_unlocked(dev_priv, crtc->pipe);
Daniel Vetter87442f72013-06-06 00:52:17 +02001387
Daniel Vetter426115c2013-07-11 22:13:42 +02001388 I915_WRITE(reg, dpll);
1389 POSTING_READ(reg);
1390 udelay(150);
1391
1392 if (wait_for(((I915_READ(reg) & DPLL_LOCK_VLV) == DPLL_LOCK_VLV), 1))
1393 DRM_ERROR("DPLL %d failed to lock\n", crtc->pipe);
1394
1395 I915_WRITE(DPLL_MD(crtc->pipe), crtc->config.dpll_hw_state.dpll_md);
1396 POSTING_READ(DPLL_MD(crtc->pipe));
Daniel Vetter87442f72013-06-06 00:52:17 +02001397
1398 /* We do this three times for luck */
Daniel Vetter426115c2013-07-11 22:13:42 +02001399 I915_WRITE(reg, dpll);
Daniel Vetter87442f72013-06-06 00:52:17 +02001400 POSTING_READ(reg);
1401 udelay(150); /* wait for warmup */
Daniel Vetter426115c2013-07-11 22:13:42 +02001402 I915_WRITE(reg, dpll);
Daniel Vetter87442f72013-06-06 00:52:17 +02001403 POSTING_READ(reg);
1404 udelay(150); /* wait for warmup */
Daniel Vetter426115c2013-07-11 22:13:42 +02001405 I915_WRITE(reg, dpll);
Daniel Vetter87442f72013-06-06 00:52:17 +02001406 POSTING_READ(reg);
1407 udelay(150); /* wait for warmup */
1408}
1409
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001410static void i9xx_enable_pll(struct intel_crtc *crtc)
Daniel Vetter87442f72013-06-06 00:52:17 +02001411{
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001412 struct drm_device *dev = crtc->base.dev;
1413 struct drm_i915_private *dev_priv = dev->dev_private;
1414 int reg = DPLL(crtc->pipe);
1415 u32 dpll = crtc->config.dpll_hw_state.dpll;
Daniel Vetter87442f72013-06-06 00:52:17 +02001416
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001417 assert_pipe_disabled(dev_priv, crtc->pipe);
Daniel Vetter87442f72013-06-06 00:52:17 +02001418
1419 /* No really, not for ILK+ */
1420 BUG_ON(dev_priv->info->gen >= 5);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001421
1422 /* PLL is protected by panel, make sure we can write it */
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001423 if (IS_MOBILE(dev) && !IS_I830(dev))
1424 assert_panel_unlocked(dev_priv, crtc->pipe);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001425
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001426 I915_WRITE(reg, dpll);
1427
1428 /* Wait for the clocks to stabilize. */
1429 POSTING_READ(reg);
1430 udelay(150);
1431
1432 if (INTEL_INFO(dev)->gen >= 4) {
1433 I915_WRITE(DPLL_MD(crtc->pipe),
1434 crtc->config.dpll_hw_state.dpll_md);
1435 } else {
1436 /* The pixel multiplier can only be updated once the
1437 * DPLL is enabled and the clocks are stable.
1438 *
1439 * So write it again.
1440 */
1441 I915_WRITE(reg, dpll);
1442 }
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001443
1444 /* We do this three times for luck */
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001445 I915_WRITE(reg, dpll);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001446 POSTING_READ(reg);
1447 udelay(150); /* wait for warmup */
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001448 I915_WRITE(reg, dpll);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001449 POSTING_READ(reg);
1450 udelay(150); /* wait for warmup */
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001451 I915_WRITE(reg, dpll);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001452 POSTING_READ(reg);
1453 udelay(150); /* wait for warmup */
1454}
1455
1456/**
Daniel Vetter50b44a42013-06-05 13:34:33 +02001457 * i9xx_disable_pll - disable a PLL
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001458 * @dev_priv: i915 private structure
1459 * @pipe: pipe PLL to disable
1460 *
1461 * Disable the PLL for @pipe, making sure the pipe is off first.
1462 *
1463 * Note! This is for pre-ILK only.
1464 */
Daniel Vetter50b44a42013-06-05 13:34:33 +02001465static void i9xx_disable_pll(struct drm_i915_private *dev_priv, enum pipe pipe)
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001466{
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001467 /* Don't disable pipe A or pipe A PLLs if needed */
1468 if (pipe == PIPE_A && (dev_priv->quirks & QUIRK_PIPEA_FORCE))
1469 return;
1470
1471 /* Make sure the pipe isn't still relying on us */
1472 assert_pipe_disabled(dev_priv, pipe);
1473
Daniel Vetter50b44a42013-06-05 13:34:33 +02001474 I915_WRITE(DPLL(pipe), 0);
1475 POSTING_READ(DPLL(pipe));
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001476}
1477
Jesse Barnesf6071162013-10-01 10:41:38 -07001478static void vlv_disable_pll(struct drm_i915_private *dev_priv, enum pipe pipe)
1479{
1480 u32 val = 0;
1481
1482 /* Make sure the pipe isn't still relying on us */
1483 assert_pipe_disabled(dev_priv, pipe);
1484
1485 /* Leave integrated clock source enabled */
1486 if (pipe == PIPE_B)
1487 val = DPLL_INTEGRATED_CRI_CLK_VLV;
1488 I915_WRITE(DPLL(pipe), val);
1489 POSTING_READ(DPLL(pipe));
1490}
1491
Jesse Barnes89b667f2013-04-18 14:51:36 -07001492void vlv_wait_port_ready(struct drm_i915_private *dev_priv, int port)
1493{
1494 u32 port_mask;
1495
1496 if (!port)
1497 port_mask = DPLL_PORTB_READY_MASK;
1498 else
1499 port_mask = DPLL_PORTC_READY_MASK;
1500
1501 if (wait_for((I915_READ(DPLL(0)) & port_mask) == 0, 1000))
1502 WARN(1, "timed out waiting for port %c ready: 0x%08x\n",
1503 'B' + port, I915_READ(DPLL(0)));
1504}
1505
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001506/**
Daniel Vettere72f9fb2013-06-05 13:34:06 +02001507 * ironlake_enable_shared_dpll - enable PCH PLL
Jesse Barnes92f25842011-01-04 15:09:34 -08001508 * @dev_priv: i915 private structure
1509 * @pipe: pipe PLL to enable
1510 *
1511 * The PCH PLL needs to be enabled before the PCH transcoder, since it
1512 * drives the transcoder clock.
1513 */
Daniel Vettere2b78262013-06-07 23:10:03 +02001514static void ironlake_enable_shared_dpll(struct intel_crtc *crtc)
Jesse Barnes92f25842011-01-04 15:09:34 -08001515{
Daniel Vettere2b78262013-06-07 23:10:03 +02001516 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
1517 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
Jesse Barnes92f25842011-01-04 15:09:34 -08001518
Chris Wilson48da64a2012-05-13 20:16:12 +01001519 /* PCH PLLs only available on ILK, SNB and IVB */
Jesse Barnes92f25842011-01-04 15:09:34 -08001520 BUG_ON(dev_priv->info->gen < 5);
Daniel Vetter87a875b2013-06-05 13:34:19 +02001521 if (WARN_ON(pll == NULL))
Chris Wilson48da64a2012-05-13 20:16:12 +01001522 return;
1523
1524 if (WARN_ON(pll->refcount == 0))
1525 return;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001526
Daniel Vetter46edb022013-06-05 13:34:12 +02001527 DRM_DEBUG_KMS("enable %s (active %d, on? %d)for crtc %d\n",
1528 pll->name, pll->active, pll->on,
Daniel Vettere2b78262013-06-07 23:10:03 +02001529 crtc->base.base.id);
Jesse Barnes92f25842011-01-04 15:09:34 -08001530
Daniel Vettercdbd2312013-06-05 13:34:03 +02001531 if (pll->active++) {
1532 WARN_ON(!pll->on);
Daniel Vettere9d69442013-06-05 13:34:15 +02001533 assert_shared_dpll_enabled(dev_priv, pll);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001534 return;
1535 }
Daniel Vetterf4a091c2013-06-10 17:28:22 +02001536 WARN_ON(pll->on);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001537
Daniel Vetter46edb022013-06-05 13:34:12 +02001538 DRM_DEBUG_KMS("enabling %s\n", pll->name);
Daniel Vettere7b903d2013-06-05 13:34:14 +02001539 pll->enable(dev_priv, pll);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001540 pll->on = true;
Jesse Barnes92f25842011-01-04 15:09:34 -08001541}
1542
Daniel Vettere2b78262013-06-07 23:10:03 +02001543static void intel_disable_shared_dpll(struct intel_crtc *crtc)
Jesse Barnes92f25842011-01-04 15:09:34 -08001544{
Daniel Vettere2b78262013-06-07 23:10:03 +02001545 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
1546 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
Jesse Barnes4c609cb2011-09-02 12:52:11 -07001547
Jesse Barnes92f25842011-01-04 15:09:34 -08001548 /* PCH only available on ILK+ */
1549 BUG_ON(dev_priv->info->gen < 5);
Daniel Vetter87a875b2013-06-05 13:34:19 +02001550 if (WARN_ON(pll == NULL))
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001551 return;
1552
Chris Wilson48da64a2012-05-13 20:16:12 +01001553 if (WARN_ON(pll->refcount == 0))
1554 return;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001555
Daniel Vetter46edb022013-06-05 13:34:12 +02001556 DRM_DEBUG_KMS("disable %s (active %d, on? %d) for crtc %d\n",
1557 pll->name, pll->active, pll->on,
Daniel Vettere2b78262013-06-07 23:10:03 +02001558 crtc->base.base.id);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001559
Chris Wilson48da64a2012-05-13 20:16:12 +01001560 if (WARN_ON(pll->active == 0)) {
Daniel Vettere9d69442013-06-05 13:34:15 +02001561 assert_shared_dpll_disabled(dev_priv, pll);
Chris Wilson48da64a2012-05-13 20:16:12 +01001562 return;
1563 }
1564
Daniel Vettere9d69442013-06-05 13:34:15 +02001565 assert_shared_dpll_enabled(dev_priv, pll);
Daniel Vetterf4a091c2013-06-10 17:28:22 +02001566 WARN_ON(!pll->on);
Daniel Vettercdbd2312013-06-05 13:34:03 +02001567 if (--pll->active)
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001568 return;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001569
Daniel Vetter46edb022013-06-05 13:34:12 +02001570 DRM_DEBUG_KMS("disabling %s\n", pll->name);
Daniel Vettere7b903d2013-06-05 13:34:14 +02001571 pll->disable(dev_priv, pll);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001572 pll->on = false;
Jesse Barnes92f25842011-01-04 15:09:34 -08001573}
1574
Paulo Zanonib8a4f402012-10-31 18:12:42 -02001575static void ironlake_enable_pch_transcoder(struct drm_i915_private *dev_priv,
1576 enum pipe pipe)
Jesse Barnes040484a2011-01-03 12:14:26 -08001577{
Daniel Vetter23670b322012-11-01 09:15:30 +01001578 struct drm_device *dev = dev_priv->dev;
Paulo Zanoni7c26e5c2012-02-14 17:07:09 -02001579 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
Daniel Vettere2b78262013-06-07 23:10:03 +02001580 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter23670b322012-11-01 09:15:30 +01001581 uint32_t reg, val, pipeconf_val;
Jesse Barnes040484a2011-01-03 12:14:26 -08001582
1583 /* PCH only available on ILK+ */
1584 BUG_ON(dev_priv->info->gen < 5);
1585
1586 /* Make sure PCH DPLL is enabled */
Daniel Vettere72f9fb2013-06-05 13:34:06 +02001587 assert_shared_dpll_enabled(dev_priv,
Daniel Vettere9d69442013-06-05 13:34:15 +02001588 intel_crtc_to_shared_dpll(intel_crtc));
Jesse Barnes040484a2011-01-03 12:14:26 -08001589
1590 /* FDI must be feeding us bits for PCH ports */
1591 assert_fdi_tx_enabled(dev_priv, pipe);
1592 assert_fdi_rx_enabled(dev_priv, pipe);
1593
Daniel Vetter23670b322012-11-01 09:15:30 +01001594 if (HAS_PCH_CPT(dev)) {
1595 /* Workaround: Set the timing override bit before enabling the
1596 * pch transcoder. */
1597 reg = TRANS_CHICKEN2(pipe);
1598 val = I915_READ(reg);
1599 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
1600 I915_WRITE(reg, val);
Eugeni Dodonov59c859d2012-05-09 15:37:19 -03001601 }
Daniel Vetter23670b322012-11-01 09:15:30 +01001602
Daniel Vetterab9412b2013-05-03 11:49:46 +02001603 reg = PCH_TRANSCONF(pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08001604 val = I915_READ(reg);
Paulo Zanoni5f7f7262012-02-03 17:47:15 -02001605 pipeconf_val = I915_READ(PIPECONF(pipe));
Jesse Barnese9bcff52011-06-24 12:19:20 -07001606
1607 if (HAS_PCH_IBX(dev_priv->dev)) {
1608 /*
1609 * make the BPC in transcoder be consistent with
1610 * that in pipeconf reg.
1611 */
Daniel Vetterdfd07d72012-12-17 11:21:38 +01001612 val &= ~PIPECONF_BPC_MASK;
1613 val |= pipeconf_val & PIPECONF_BPC_MASK;
Jesse Barnese9bcff52011-06-24 12:19:20 -07001614 }
Paulo Zanoni5f7f7262012-02-03 17:47:15 -02001615
1616 val &= ~TRANS_INTERLACE_MASK;
1617 if ((pipeconf_val & PIPECONF_INTERLACE_MASK) == PIPECONF_INTERLACED_ILK)
Paulo Zanoni7c26e5c2012-02-14 17:07:09 -02001618 if (HAS_PCH_IBX(dev_priv->dev) &&
1619 intel_pipe_has_type(crtc, INTEL_OUTPUT_SDVO))
1620 val |= TRANS_LEGACY_INTERLACED_ILK;
1621 else
1622 val |= TRANS_INTERLACED;
Paulo Zanoni5f7f7262012-02-03 17:47:15 -02001623 else
1624 val |= TRANS_PROGRESSIVE;
1625
Jesse Barnes040484a2011-01-03 12:14:26 -08001626 I915_WRITE(reg, val | TRANS_ENABLE);
1627 if (wait_for(I915_READ(reg) & TRANS_STATE_ENABLE, 100))
Ville Syrjälä4bb6f1f2013-04-17 17:48:50 +03001628 DRM_ERROR("failed to enable transcoder %c\n", pipe_name(pipe));
Jesse Barnes040484a2011-01-03 12:14:26 -08001629}
1630
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001631static void lpt_enable_pch_transcoder(struct drm_i915_private *dev_priv,
Paulo Zanoni937bb612012-10-31 18:12:47 -02001632 enum transcoder cpu_transcoder)
Jesse Barnes040484a2011-01-03 12:14:26 -08001633{
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001634 u32 val, pipeconf_val;
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001635
1636 /* PCH only available on ILK+ */
1637 BUG_ON(dev_priv->info->gen < 5);
1638
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001639 /* FDI must be feeding us bits for PCH ports */
Daniel Vetter1a240d42012-11-29 22:18:51 +01001640 assert_fdi_tx_enabled(dev_priv, (enum pipe) cpu_transcoder);
Paulo Zanoni937bb612012-10-31 18:12:47 -02001641 assert_fdi_rx_enabled(dev_priv, TRANSCODER_A);
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001642
Paulo Zanoni223a6fd2012-10-31 18:12:52 -02001643 /* Workaround: set timing override bit. */
1644 val = I915_READ(_TRANSA_CHICKEN2);
Daniel Vetter23670b322012-11-01 09:15:30 +01001645 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
Paulo Zanoni223a6fd2012-10-31 18:12:52 -02001646 I915_WRITE(_TRANSA_CHICKEN2, val);
1647
Paulo Zanoni25f3ef12012-10-31 18:12:49 -02001648 val = TRANS_ENABLE;
Paulo Zanoni937bb612012-10-31 18:12:47 -02001649 pipeconf_val = I915_READ(PIPECONF(cpu_transcoder));
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001650
Paulo Zanoni9a76b1c2012-10-31 18:12:48 -02001651 if ((pipeconf_val & PIPECONF_INTERLACE_MASK_HSW) ==
1652 PIPECONF_INTERLACED_ILK)
Paulo Zanonia35f2672012-10-31 18:12:45 -02001653 val |= TRANS_INTERLACED;
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001654 else
1655 val |= TRANS_PROGRESSIVE;
1656
Daniel Vetterab9412b2013-05-03 11:49:46 +02001657 I915_WRITE(LPT_TRANSCONF, val);
1658 if (wait_for(I915_READ(LPT_TRANSCONF) & TRANS_STATE_ENABLE, 100))
Paulo Zanoni937bb612012-10-31 18:12:47 -02001659 DRM_ERROR("Failed to enable PCH transcoder\n");
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001660}
1661
Paulo Zanonib8a4f402012-10-31 18:12:42 -02001662static void ironlake_disable_pch_transcoder(struct drm_i915_private *dev_priv,
1663 enum pipe pipe)
Jesse Barnes040484a2011-01-03 12:14:26 -08001664{
Daniel Vetter23670b322012-11-01 09:15:30 +01001665 struct drm_device *dev = dev_priv->dev;
1666 uint32_t reg, val;
Jesse Barnes040484a2011-01-03 12:14:26 -08001667
1668 /* FDI relies on the transcoder */
1669 assert_fdi_tx_disabled(dev_priv, pipe);
1670 assert_fdi_rx_disabled(dev_priv, pipe);
1671
Jesse Barnes291906f2011-02-02 12:28:03 -08001672 /* Ports must be off as well */
1673 assert_pch_ports_disabled(dev_priv, pipe);
1674
Daniel Vetterab9412b2013-05-03 11:49:46 +02001675 reg = PCH_TRANSCONF(pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08001676 val = I915_READ(reg);
1677 val &= ~TRANS_ENABLE;
1678 I915_WRITE(reg, val);
1679 /* wait for PCH transcoder off, transcoder state */
1680 if (wait_for((I915_READ(reg) & TRANS_STATE_ENABLE) == 0, 50))
Ville Syrjälä4bb6f1f2013-04-17 17:48:50 +03001681 DRM_ERROR("failed to disable transcoder %c\n", pipe_name(pipe));
Daniel Vetter23670b322012-11-01 09:15:30 +01001682
1683 if (!HAS_PCH_IBX(dev)) {
1684 /* Workaround: Clear the timing override chicken bit again. */
1685 reg = TRANS_CHICKEN2(pipe);
1686 val = I915_READ(reg);
1687 val &= ~TRANS_CHICKEN2_TIMING_OVERRIDE;
1688 I915_WRITE(reg, val);
1689 }
Jesse Barnes040484a2011-01-03 12:14:26 -08001690}
1691
Paulo Zanoniab4d9662012-10-31 18:12:55 -02001692static void lpt_disable_pch_transcoder(struct drm_i915_private *dev_priv)
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001693{
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001694 u32 val;
1695
Daniel Vetterab9412b2013-05-03 11:49:46 +02001696 val = I915_READ(LPT_TRANSCONF);
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001697 val &= ~TRANS_ENABLE;
Daniel Vetterab9412b2013-05-03 11:49:46 +02001698 I915_WRITE(LPT_TRANSCONF, val);
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001699 /* wait for PCH transcoder off, transcoder state */
Daniel Vetterab9412b2013-05-03 11:49:46 +02001700 if (wait_for((I915_READ(LPT_TRANSCONF) & TRANS_STATE_ENABLE) == 0, 50))
Paulo Zanoni8a52fd92012-10-31 18:12:51 -02001701 DRM_ERROR("Failed to disable PCH transcoder\n");
Paulo Zanoni223a6fd2012-10-31 18:12:52 -02001702
1703 /* Workaround: clear timing override bit. */
1704 val = I915_READ(_TRANSA_CHICKEN2);
Daniel Vetter23670b322012-11-01 09:15:30 +01001705 val &= ~TRANS_CHICKEN2_TIMING_OVERRIDE;
Paulo Zanoni223a6fd2012-10-31 18:12:52 -02001706 I915_WRITE(_TRANSA_CHICKEN2, val);
Jesse Barnes92f25842011-01-04 15:09:34 -08001707}
1708
1709/**
Chris Wilson309cfea2011-01-28 13:54:53 +00001710 * intel_enable_pipe - enable a pipe, asserting requirements
Jesse Barnesb24e7172011-01-04 15:09:30 -08001711 * @dev_priv: i915 private structure
1712 * @pipe: pipe to enable
Jesse Barnes040484a2011-01-03 12:14:26 -08001713 * @pch_port: on ILK+, is this pipe driving a PCH port or not
Jesse Barnesb24e7172011-01-04 15:09:30 -08001714 *
1715 * Enable @pipe, making sure that various hardware specific requirements
1716 * are met, if applicable, e.g. PLL enabled, LVDS pairs enabled, etc.
1717 *
1718 * @pipe should be %PIPE_A or %PIPE_B.
1719 *
1720 * Will wait until the pipe is actually running (i.e. first vblank) before
1721 * returning.
1722 */
Jesse Barnes040484a2011-01-03 12:14:26 -08001723static void intel_enable_pipe(struct drm_i915_private *dev_priv, enum pipe pipe,
Jani Nikula23538ef2013-08-27 15:12:22 +03001724 bool pch_port, bool dsi)
Jesse Barnesb24e7172011-01-04 15:09:30 -08001725{
Paulo Zanoni702e7a52012-10-23 18:29:59 -02001726 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
1727 pipe);
Daniel Vetter1a240d42012-11-29 22:18:51 +01001728 enum pipe pch_transcoder;
Jesse Barnesb24e7172011-01-04 15:09:30 -08001729 int reg;
1730 u32 val;
1731
Daniel Vetter58c6eaa2013-04-11 16:29:09 +02001732 assert_planes_disabled(dev_priv, pipe);
Jani Nikula93ce0ba2013-09-13 11:03:08 +03001733 assert_cursor_disabled(dev_priv, pipe);
Daniel Vetter58c6eaa2013-04-11 16:29:09 +02001734 assert_sprites_disabled(dev_priv, pipe);
1735
Paulo Zanoni681e5812012-12-06 11:12:38 -02001736 if (HAS_PCH_LPT(dev_priv->dev))
Paulo Zanonicc391bb2012-11-20 13:27:37 -02001737 pch_transcoder = TRANSCODER_A;
1738 else
1739 pch_transcoder = pipe;
1740
Jesse Barnesb24e7172011-01-04 15:09:30 -08001741 /*
1742 * A pipe without a PLL won't actually be able to drive bits from
1743 * a plane. On ILK+ the pipe PLLs are integrated, so we don't
1744 * need the check.
1745 */
1746 if (!HAS_PCH_SPLIT(dev_priv->dev))
Jani Nikula23538ef2013-08-27 15:12:22 +03001747 if (dsi)
1748 assert_dsi_pll_enabled(dev_priv);
1749 else
1750 assert_pll_enabled(dev_priv, pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08001751 else {
1752 if (pch_port) {
1753 /* if driving the PCH, we need FDI enabled */
Paulo Zanonicc391bb2012-11-20 13:27:37 -02001754 assert_fdi_rx_pll_enabled(dev_priv, pch_transcoder);
Daniel Vetter1a240d42012-11-29 22:18:51 +01001755 assert_fdi_tx_pll_enabled(dev_priv,
1756 (enum pipe) cpu_transcoder);
Jesse Barnes040484a2011-01-03 12:14:26 -08001757 }
1758 /* FIXME: assert CPU port conditions for SNB+ */
1759 }
Jesse Barnesb24e7172011-01-04 15:09:30 -08001760
Paulo Zanoni702e7a52012-10-23 18:29:59 -02001761 reg = PIPECONF(cpu_transcoder);
Jesse Barnesb24e7172011-01-04 15:09:30 -08001762 val = I915_READ(reg);
Chris Wilson00d70b12011-03-17 07:18:29 +00001763 if (val & PIPECONF_ENABLE)
1764 return;
1765
1766 I915_WRITE(reg, val | PIPECONF_ENABLE);
Jesse Barnesb24e7172011-01-04 15:09:30 -08001767 intel_wait_for_vblank(dev_priv->dev, pipe);
1768}
1769
1770/**
Chris Wilson309cfea2011-01-28 13:54:53 +00001771 * intel_disable_pipe - disable a pipe, asserting requirements
Jesse Barnesb24e7172011-01-04 15:09:30 -08001772 * @dev_priv: i915 private structure
1773 * @pipe: pipe to disable
1774 *
1775 * Disable @pipe, making sure that various hardware specific requirements
1776 * are met, if applicable, e.g. plane disabled, panel fitter off, etc.
1777 *
1778 * @pipe should be %PIPE_A or %PIPE_B.
1779 *
1780 * Will wait until the pipe has shut down before returning.
1781 */
1782static void intel_disable_pipe(struct drm_i915_private *dev_priv,
1783 enum pipe pipe)
1784{
Paulo Zanoni702e7a52012-10-23 18:29:59 -02001785 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
1786 pipe);
Jesse Barnesb24e7172011-01-04 15:09:30 -08001787 int reg;
1788 u32 val;
1789
1790 /*
1791 * Make sure planes won't keep trying to pump pixels to us,
1792 * or we might hang the display.
1793 */
1794 assert_planes_disabled(dev_priv, pipe);
Jani Nikula93ce0ba2013-09-13 11:03:08 +03001795 assert_cursor_disabled(dev_priv, pipe);
Jesse Barnes19332d72013-03-28 09:55:38 -07001796 assert_sprites_disabled(dev_priv, pipe);
Jesse Barnesb24e7172011-01-04 15:09:30 -08001797
1798 /* Don't disable pipe A or pipe A PLLs if needed */
1799 if (pipe == PIPE_A && (dev_priv->quirks & QUIRK_PIPEA_FORCE))
1800 return;
1801
Paulo Zanoni702e7a52012-10-23 18:29:59 -02001802 reg = PIPECONF(cpu_transcoder);
Jesse Barnesb24e7172011-01-04 15:09:30 -08001803 val = I915_READ(reg);
Chris Wilson00d70b12011-03-17 07:18:29 +00001804 if ((val & PIPECONF_ENABLE) == 0)
1805 return;
1806
1807 I915_WRITE(reg, val & ~PIPECONF_ENABLE);
Jesse Barnesb24e7172011-01-04 15:09:30 -08001808 intel_wait_for_pipe_off(dev_priv->dev, pipe);
1809}
1810
Keith Packardd74362c2011-07-28 14:47:14 -07001811/*
1812 * Plane regs are double buffered, going from enabled->disabled needs a
1813 * trigger in order to latch. The display address reg provides this.
1814 */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03001815void intel_flush_display_plane(struct drm_i915_private *dev_priv,
Keith Packardd74362c2011-07-28 14:47:14 -07001816 enum plane plane)
1817{
Damien Lespiau14f86142012-10-29 15:24:49 +00001818 if (dev_priv->info->gen >= 4)
1819 I915_WRITE(DSPSURF(plane), I915_READ(DSPSURF(plane)));
1820 else
1821 I915_WRITE(DSPADDR(plane), I915_READ(DSPADDR(plane)));
Keith Packardd74362c2011-07-28 14:47:14 -07001822}
1823
Jesse Barnesb24e7172011-01-04 15:09:30 -08001824/**
1825 * intel_enable_plane - enable a display plane on a given pipe
1826 * @dev_priv: i915 private structure
1827 * @plane: plane to enable
1828 * @pipe: pipe being fed
1829 *
1830 * Enable @plane on @pipe, making sure that @pipe is running first.
1831 */
1832static void intel_enable_plane(struct drm_i915_private *dev_priv,
1833 enum plane plane, enum pipe pipe)
1834{
Ville Syrjälä939c2fe2013-10-01 18:02:10 +03001835 struct intel_crtc *intel_crtc =
1836 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
Jesse Barnesb24e7172011-01-04 15:09:30 -08001837 int reg;
1838 u32 val;
1839
1840 /* If the pipe isn't enabled, we can't pump pixels and may hang */
1841 assert_pipe_enabled(dev_priv, pipe);
1842
Ville Syrjälä939c2fe2013-10-01 18:02:10 +03001843 intel_crtc->primary_disabled = false;
1844
Jesse Barnesb24e7172011-01-04 15:09:30 -08001845 reg = DSPCNTR(plane);
1846 val = I915_READ(reg);
Chris Wilson00d70b12011-03-17 07:18:29 +00001847 if (val & DISPLAY_PLANE_ENABLE)
1848 return;
1849
1850 I915_WRITE(reg, val | DISPLAY_PLANE_ENABLE);
Keith Packardd74362c2011-07-28 14:47:14 -07001851 intel_flush_display_plane(dev_priv, plane);
Jesse Barnesb24e7172011-01-04 15:09:30 -08001852 intel_wait_for_vblank(dev_priv->dev, pipe);
1853}
1854
Jesse Barnesb24e7172011-01-04 15:09:30 -08001855/**
1856 * intel_disable_plane - disable a display plane
1857 * @dev_priv: i915 private structure
1858 * @plane: plane to disable
1859 * @pipe: pipe consuming the data
1860 *
1861 * Disable @plane; should be an independent operation.
1862 */
1863static void intel_disable_plane(struct drm_i915_private *dev_priv,
1864 enum plane plane, enum pipe pipe)
1865{
Ville Syrjälä939c2fe2013-10-01 18:02:10 +03001866 struct intel_crtc *intel_crtc =
1867 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
Jesse Barnesb24e7172011-01-04 15:09:30 -08001868 int reg;
1869 u32 val;
1870
Ville Syrjälä939c2fe2013-10-01 18:02:10 +03001871 intel_crtc->primary_disabled = true;
1872
Jesse Barnesb24e7172011-01-04 15:09:30 -08001873 reg = DSPCNTR(plane);
1874 val = I915_READ(reg);
Chris Wilson00d70b12011-03-17 07:18:29 +00001875 if ((val & DISPLAY_PLANE_ENABLE) == 0)
1876 return;
1877
1878 I915_WRITE(reg, val & ~DISPLAY_PLANE_ENABLE);
Jesse Barnesb24e7172011-01-04 15:09:30 -08001879 intel_flush_display_plane(dev_priv, plane);
1880 intel_wait_for_vblank(dev_priv->dev, pipe);
1881}
1882
Chris Wilson693db182013-03-05 14:52:39 +00001883static bool need_vtd_wa(struct drm_device *dev)
1884{
1885#ifdef CONFIG_INTEL_IOMMU
1886 if (INTEL_INFO(dev)->gen >= 6 && intel_iommu_gfx_mapped)
1887 return true;
1888#endif
1889 return false;
1890}
1891
Chris Wilson127bd2a2010-07-23 23:32:05 +01001892int
Chris Wilson48b956c2010-09-14 12:50:34 +01001893intel_pin_and_fence_fb_obj(struct drm_device *dev,
Chris Wilson05394f32010-11-08 19:18:58 +00001894 struct drm_i915_gem_object *obj,
Chris Wilson919926a2010-11-12 13:42:53 +00001895 struct intel_ring_buffer *pipelined)
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001896{
Chris Wilsonce453d82011-02-21 14:43:56 +00001897 struct drm_i915_private *dev_priv = dev->dev_private;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001898 u32 alignment;
1899 int ret;
1900
Chris Wilson05394f32010-11-08 19:18:58 +00001901 switch (obj->tiling_mode) {
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001902 case I915_TILING_NONE:
Chris Wilson534843d2010-07-05 18:01:46 +01001903 if (IS_BROADWATER(dev) || IS_CRESTLINE(dev))
1904 alignment = 128 * 1024;
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001905 else if (INTEL_INFO(dev)->gen >= 4)
Chris Wilson534843d2010-07-05 18:01:46 +01001906 alignment = 4 * 1024;
1907 else
1908 alignment = 64 * 1024;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001909 break;
1910 case I915_TILING_X:
1911 /* pin() will align the object as required by fence */
1912 alignment = 0;
1913 break;
1914 case I915_TILING_Y:
Daniel Vetter8bb6e952013-04-06 23:54:56 +02001915 /* Despite that we check this in framebuffer_init userspace can
1916 * screw us over and change the tiling after the fact. Only
1917 * pinned buffers can't change their tiling. */
1918 DRM_DEBUG_DRIVER("Y tiled not allowed for scan out buffers\n");
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001919 return -EINVAL;
1920 default:
1921 BUG();
1922 }
1923
Chris Wilson693db182013-03-05 14:52:39 +00001924 /* Note that the w/a also requires 64 PTE of padding following the
1925 * bo. We currently fill all unused PTE with the shadow page and so
1926 * we should always have valid PTE following the scanout preventing
1927 * the VT-d warning.
1928 */
1929 if (need_vtd_wa(dev) && alignment < 256 * 1024)
1930 alignment = 256 * 1024;
1931
Chris Wilsonce453d82011-02-21 14:43:56 +00001932 dev_priv->mm.interruptible = false;
Chris Wilson2da3b9b2011-04-14 09:41:17 +01001933 ret = i915_gem_object_pin_to_display_plane(obj, alignment, pipelined);
Chris Wilson48b956c2010-09-14 12:50:34 +01001934 if (ret)
Chris Wilsonce453d82011-02-21 14:43:56 +00001935 goto err_interruptible;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001936
1937 /* Install a fence for tiled scan-out. Pre-i965 always needs a
1938 * fence, whereas 965+ only requires a fence if using
1939 * framebuffer compression. For simplicity, we always install
1940 * a fence as the cost is not that onerous.
1941 */
Chris Wilson06d98132012-04-17 15:31:24 +01001942 ret = i915_gem_object_get_fence(obj);
Chris Wilson9a5a53b2012-03-22 15:10:00 +00001943 if (ret)
1944 goto err_unpin;
Chris Wilson1690e1e2011-12-14 13:57:08 +01001945
Chris Wilson9a5a53b2012-03-22 15:10:00 +00001946 i915_gem_object_pin_fence(obj);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001947
Chris Wilsonce453d82011-02-21 14:43:56 +00001948 dev_priv->mm.interruptible = true;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001949 return 0;
Chris Wilson48b956c2010-09-14 12:50:34 +01001950
1951err_unpin:
Chris Wilsoncc98b412013-08-09 12:25:09 +01001952 i915_gem_object_unpin_from_display_plane(obj);
Chris Wilsonce453d82011-02-21 14:43:56 +00001953err_interruptible:
1954 dev_priv->mm.interruptible = true;
Chris Wilson48b956c2010-09-14 12:50:34 +01001955 return ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001956}
1957
Chris Wilson1690e1e2011-12-14 13:57:08 +01001958void intel_unpin_fb_obj(struct drm_i915_gem_object *obj)
1959{
1960 i915_gem_object_unpin_fence(obj);
Chris Wilsoncc98b412013-08-09 12:25:09 +01001961 i915_gem_object_unpin_from_display_plane(obj);
Chris Wilson1690e1e2011-12-14 13:57:08 +01001962}
1963
Daniel Vetterc2c75132012-07-05 12:17:30 +02001964/* Computes the linear offset to the base tile and adjusts x, y. bytes per pixel
1965 * is assumed to be a power-of-two. */
Chris Wilsonbc752862013-02-21 20:04:31 +00001966unsigned long intel_gen4_compute_page_offset(int *x, int *y,
1967 unsigned int tiling_mode,
1968 unsigned int cpp,
1969 unsigned int pitch)
Daniel Vetterc2c75132012-07-05 12:17:30 +02001970{
Chris Wilsonbc752862013-02-21 20:04:31 +00001971 if (tiling_mode != I915_TILING_NONE) {
1972 unsigned int tile_rows, tiles;
Daniel Vetterc2c75132012-07-05 12:17:30 +02001973
Chris Wilsonbc752862013-02-21 20:04:31 +00001974 tile_rows = *y / 8;
1975 *y %= 8;
Daniel Vetterc2c75132012-07-05 12:17:30 +02001976
Chris Wilsonbc752862013-02-21 20:04:31 +00001977 tiles = *x / (512/cpp);
1978 *x %= 512/cpp;
1979
1980 return tile_rows * pitch * 8 + tiles * 4096;
1981 } else {
1982 unsigned int offset;
1983
1984 offset = *y * pitch + *x * cpp;
1985 *y = 0;
1986 *x = (offset & 4095) / cpp;
1987 return offset & -4096;
1988 }
Daniel Vetterc2c75132012-07-05 12:17:30 +02001989}
1990
Jesse Barnes17638cd2011-06-24 12:19:23 -07001991static int i9xx_update_plane(struct drm_crtc *crtc, struct drm_framebuffer *fb,
1992 int x, int y)
Jesse Barnes81255562010-08-02 12:07:50 -07001993{
1994 struct drm_device *dev = crtc->dev;
1995 struct drm_i915_private *dev_priv = dev->dev_private;
1996 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1997 struct intel_framebuffer *intel_fb;
Chris Wilson05394f32010-11-08 19:18:58 +00001998 struct drm_i915_gem_object *obj;
Jesse Barnes81255562010-08-02 12:07:50 -07001999 int plane = intel_crtc->plane;
Daniel Vettere506a0c2012-07-05 12:17:29 +02002000 unsigned long linear_offset;
Jesse Barnes81255562010-08-02 12:07:50 -07002001 u32 dspcntr;
Chris Wilson5eddb702010-09-11 13:48:45 +01002002 u32 reg;
Jesse Barnes81255562010-08-02 12:07:50 -07002003
2004 switch (plane) {
2005 case 0:
2006 case 1:
2007 break;
2008 default:
Ville Syrjälä84f44ce2013-04-17 17:48:49 +03002009 DRM_ERROR("Can't update plane %c in SAREA\n", plane_name(plane));
Jesse Barnes81255562010-08-02 12:07:50 -07002010 return -EINVAL;
2011 }
2012
2013 intel_fb = to_intel_framebuffer(fb);
2014 obj = intel_fb->obj;
Jesse Barnes81255562010-08-02 12:07:50 -07002015
Chris Wilson5eddb702010-09-11 13:48:45 +01002016 reg = DSPCNTR(plane);
2017 dspcntr = I915_READ(reg);
Jesse Barnes81255562010-08-02 12:07:50 -07002018 /* Mask out pixel format bits in case we change it */
2019 dspcntr &= ~DISPPLANE_PIXFORMAT_MASK;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002020 switch (fb->pixel_format) {
2021 case DRM_FORMAT_C8:
Jesse Barnes81255562010-08-02 12:07:50 -07002022 dspcntr |= DISPPLANE_8BPP;
2023 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002024 case DRM_FORMAT_XRGB1555:
2025 case DRM_FORMAT_ARGB1555:
2026 dspcntr |= DISPPLANE_BGRX555;
Jesse Barnes81255562010-08-02 12:07:50 -07002027 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002028 case DRM_FORMAT_RGB565:
2029 dspcntr |= DISPPLANE_BGRX565;
2030 break;
2031 case DRM_FORMAT_XRGB8888:
2032 case DRM_FORMAT_ARGB8888:
2033 dspcntr |= DISPPLANE_BGRX888;
2034 break;
2035 case DRM_FORMAT_XBGR8888:
2036 case DRM_FORMAT_ABGR8888:
2037 dspcntr |= DISPPLANE_RGBX888;
2038 break;
2039 case DRM_FORMAT_XRGB2101010:
2040 case DRM_FORMAT_ARGB2101010:
2041 dspcntr |= DISPPLANE_BGRX101010;
2042 break;
2043 case DRM_FORMAT_XBGR2101010:
2044 case DRM_FORMAT_ABGR2101010:
2045 dspcntr |= DISPPLANE_RGBX101010;
Jesse Barnes81255562010-08-02 12:07:50 -07002046 break;
2047 default:
Daniel Vetterbaba1332013-03-27 00:45:00 +01002048 BUG();
Jesse Barnes81255562010-08-02 12:07:50 -07002049 }
Ville Syrjälä57779d02012-10-31 17:50:14 +02002050
Chris Wilsona6c45cf2010-09-17 00:32:17 +01002051 if (INTEL_INFO(dev)->gen >= 4) {
Chris Wilson05394f32010-11-08 19:18:58 +00002052 if (obj->tiling_mode != I915_TILING_NONE)
Jesse Barnes81255562010-08-02 12:07:50 -07002053 dspcntr |= DISPPLANE_TILED;
2054 else
2055 dspcntr &= ~DISPPLANE_TILED;
2056 }
2057
Ville Syrjäläde1aa622013-06-07 10:47:01 +03002058 if (IS_G4X(dev))
2059 dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE;
2060
Chris Wilson5eddb702010-09-11 13:48:45 +01002061 I915_WRITE(reg, dspcntr);
Jesse Barnes81255562010-08-02 12:07:50 -07002062
Daniel Vettere506a0c2012-07-05 12:17:29 +02002063 linear_offset = y * fb->pitches[0] + x * (fb->bits_per_pixel / 8);
Jesse Barnes81255562010-08-02 12:07:50 -07002064
Daniel Vetterc2c75132012-07-05 12:17:30 +02002065 if (INTEL_INFO(dev)->gen >= 4) {
2066 intel_crtc->dspaddr_offset =
Chris Wilsonbc752862013-02-21 20:04:31 +00002067 intel_gen4_compute_page_offset(&x, &y, obj->tiling_mode,
2068 fb->bits_per_pixel / 8,
2069 fb->pitches[0]);
Daniel Vetterc2c75132012-07-05 12:17:30 +02002070 linear_offset -= intel_crtc->dspaddr_offset;
2071 } else {
Daniel Vettere506a0c2012-07-05 12:17:29 +02002072 intel_crtc->dspaddr_offset = linear_offset;
Daniel Vetterc2c75132012-07-05 12:17:30 +02002073 }
Daniel Vettere506a0c2012-07-05 12:17:29 +02002074
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002075 DRM_DEBUG_KMS("Writing base %08lX %08lX %d %d %d\n",
2076 i915_gem_obj_ggtt_offset(obj), linear_offset, x, y,
2077 fb->pitches[0]);
Ville Syrjälä01f2c772011-12-20 00:06:49 +02002078 I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]);
Chris Wilsona6c45cf2010-09-17 00:32:17 +01002079 if (INTEL_INFO(dev)->gen >= 4) {
Daniel Vetterc2c75132012-07-05 12:17:30 +02002080 I915_MODIFY_DISPBASE(DSPSURF(plane),
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002081 i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset);
Chris Wilson5eddb702010-09-11 13:48:45 +01002082 I915_WRITE(DSPTILEOFF(plane), (y << 16) | x);
Daniel Vettere506a0c2012-07-05 12:17:29 +02002083 I915_WRITE(DSPLINOFF(plane), linear_offset);
Chris Wilson5eddb702010-09-11 13:48:45 +01002084 } else
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002085 I915_WRITE(DSPADDR(plane), i915_gem_obj_ggtt_offset(obj) + linear_offset);
Chris Wilson5eddb702010-09-11 13:48:45 +01002086 POSTING_READ(reg);
Jesse Barnes81255562010-08-02 12:07:50 -07002087
Jesse Barnes17638cd2011-06-24 12:19:23 -07002088 return 0;
2089}
2090
2091static int ironlake_update_plane(struct drm_crtc *crtc,
2092 struct drm_framebuffer *fb, int x, int y)
2093{
2094 struct drm_device *dev = crtc->dev;
2095 struct drm_i915_private *dev_priv = dev->dev_private;
2096 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2097 struct intel_framebuffer *intel_fb;
2098 struct drm_i915_gem_object *obj;
2099 int plane = intel_crtc->plane;
Daniel Vettere506a0c2012-07-05 12:17:29 +02002100 unsigned long linear_offset;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002101 u32 dspcntr;
2102 u32 reg;
2103
2104 switch (plane) {
2105 case 0:
2106 case 1:
Jesse Barnes27f82272011-09-02 12:54:37 -07002107 case 2:
Jesse Barnes17638cd2011-06-24 12:19:23 -07002108 break;
2109 default:
Ville Syrjälä84f44ce2013-04-17 17:48:49 +03002110 DRM_ERROR("Can't update plane %c in SAREA\n", plane_name(plane));
Jesse Barnes17638cd2011-06-24 12:19:23 -07002111 return -EINVAL;
2112 }
2113
2114 intel_fb = to_intel_framebuffer(fb);
2115 obj = intel_fb->obj;
2116
2117 reg = DSPCNTR(plane);
2118 dspcntr = I915_READ(reg);
2119 /* Mask out pixel format bits in case we change it */
2120 dspcntr &= ~DISPPLANE_PIXFORMAT_MASK;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002121 switch (fb->pixel_format) {
2122 case DRM_FORMAT_C8:
Jesse Barnes17638cd2011-06-24 12:19:23 -07002123 dspcntr |= DISPPLANE_8BPP;
2124 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002125 case DRM_FORMAT_RGB565:
2126 dspcntr |= DISPPLANE_BGRX565;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002127 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002128 case DRM_FORMAT_XRGB8888:
2129 case DRM_FORMAT_ARGB8888:
2130 dspcntr |= DISPPLANE_BGRX888;
2131 break;
2132 case DRM_FORMAT_XBGR8888:
2133 case DRM_FORMAT_ABGR8888:
2134 dspcntr |= DISPPLANE_RGBX888;
2135 break;
2136 case DRM_FORMAT_XRGB2101010:
2137 case DRM_FORMAT_ARGB2101010:
2138 dspcntr |= DISPPLANE_BGRX101010;
2139 break;
2140 case DRM_FORMAT_XBGR2101010:
2141 case DRM_FORMAT_ABGR2101010:
2142 dspcntr |= DISPPLANE_RGBX101010;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002143 break;
2144 default:
Daniel Vetterbaba1332013-03-27 00:45:00 +01002145 BUG();
Jesse Barnes17638cd2011-06-24 12:19:23 -07002146 }
2147
2148 if (obj->tiling_mode != I915_TILING_NONE)
2149 dspcntr |= DISPPLANE_TILED;
2150 else
2151 dspcntr &= ~DISPPLANE_TILED;
2152
Paulo Zanoni1f5d76d2013-08-23 19:51:28 -03002153 if (IS_HASWELL(dev))
2154 dspcntr &= ~DISPPLANE_TRICKLE_FEED_DISABLE;
2155 else
2156 dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002157
2158 I915_WRITE(reg, dspcntr);
2159
Daniel Vettere506a0c2012-07-05 12:17:29 +02002160 linear_offset = y * fb->pitches[0] + x * (fb->bits_per_pixel / 8);
Daniel Vetterc2c75132012-07-05 12:17:30 +02002161 intel_crtc->dspaddr_offset =
Chris Wilsonbc752862013-02-21 20:04:31 +00002162 intel_gen4_compute_page_offset(&x, &y, obj->tiling_mode,
2163 fb->bits_per_pixel / 8,
2164 fb->pitches[0]);
Daniel Vetterc2c75132012-07-05 12:17:30 +02002165 linear_offset -= intel_crtc->dspaddr_offset;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002166
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002167 DRM_DEBUG_KMS("Writing base %08lX %08lX %d %d %d\n",
2168 i915_gem_obj_ggtt_offset(obj), linear_offset, x, y,
2169 fb->pitches[0]);
Ville Syrjälä01f2c772011-12-20 00:06:49 +02002170 I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]);
Daniel Vetterc2c75132012-07-05 12:17:30 +02002171 I915_MODIFY_DISPBASE(DSPSURF(plane),
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002172 i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset);
Damien Lespiaubc1c91e2012-10-29 12:14:21 +00002173 if (IS_HASWELL(dev)) {
2174 I915_WRITE(DSPOFFSET(plane), (y << 16) | x);
2175 } else {
2176 I915_WRITE(DSPTILEOFF(plane), (y << 16) | x);
2177 I915_WRITE(DSPLINOFF(plane), linear_offset);
2178 }
Jesse Barnes17638cd2011-06-24 12:19:23 -07002179 POSTING_READ(reg);
2180
2181 return 0;
2182}
2183
2184/* Assume fb object is pinned & idle & fenced and just update base pointers */
2185static int
2186intel_pipe_set_base_atomic(struct drm_crtc *crtc, struct drm_framebuffer *fb,
2187 int x, int y, enum mode_set_atomic state)
2188{
2189 struct drm_device *dev = crtc->dev;
2190 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002191
Chris Wilson6b8e6ed2012-04-17 15:08:19 +01002192 if (dev_priv->display.disable_fbc)
2193 dev_priv->display.disable_fbc(dev);
Daniel Vetter3dec0092010-08-20 21:40:52 +02002194 intel_increase_pllclock(crtc);
Jesse Barnes81255562010-08-02 12:07:50 -07002195
Chris Wilson6b8e6ed2012-04-17 15:08:19 +01002196 return dev_priv->display.update_plane(crtc, fb, x, y);
Jesse Barnes81255562010-08-02 12:07:50 -07002197}
2198
Ville Syrjälä96a02912013-02-18 19:08:49 +02002199void intel_display_handle_reset(struct drm_device *dev)
2200{
2201 struct drm_i915_private *dev_priv = dev->dev_private;
2202 struct drm_crtc *crtc;
2203
2204 /*
2205 * Flips in the rings have been nuked by the reset,
2206 * so complete all pending flips so that user space
2207 * will get its events and not get stuck.
2208 *
2209 * Also update the base address of all primary
2210 * planes to the the last fb to make sure we're
2211 * showing the correct fb after a reset.
2212 *
2213 * Need to make two loops over the crtcs so that we
2214 * don't try to grab a crtc mutex before the
2215 * pending_flip_queue really got woken up.
2216 */
2217
2218 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
2219 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2220 enum plane plane = intel_crtc->plane;
2221
2222 intel_prepare_page_flip(dev, plane);
2223 intel_finish_page_flip_plane(dev, plane);
2224 }
2225
2226 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
2227 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2228
2229 mutex_lock(&crtc->mutex);
2230 if (intel_crtc->active)
2231 dev_priv->display.update_plane(crtc, crtc->fb,
2232 crtc->x, crtc->y);
2233 mutex_unlock(&crtc->mutex);
2234 }
2235}
2236
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002237static int
Chris Wilson14667a42012-04-03 17:58:35 +01002238intel_finish_fb(struct drm_framebuffer *old_fb)
2239{
2240 struct drm_i915_gem_object *obj = to_intel_framebuffer(old_fb)->obj;
2241 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
2242 bool was_interruptible = dev_priv->mm.interruptible;
2243 int ret;
2244
Chris Wilson14667a42012-04-03 17:58:35 +01002245 /* Big Hammer, we also need to ensure that any pending
2246 * MI_WAIT_FOR_EVENT inside a user batch buffer on the
2247 * current scanout is retired before unpinning the old
2248 * framebuffer.
2249 *
2250 * This should only fail upon a hung GPU, in which case we
2251 * can safely continue.
2252 */
2253 dev_priv->mm.interruptible = false;
2254 ret = i915_gem_object_finish_gpu(obj);
2255 dev_priv->mm.interruptible = was_interruptible;
2256
2257 return ret;
2258}
2259
Ville Syrjälä198598d2012-10-31 17:50:24 +02002260static void intel_crtc_update_sarea_pos(struct drm_crtc *crtc, int x, int y)
2261{
2262 struct drm_device *dev = crtc->dev;
2263 struct drm_i915_master_private *master_priv;
2264 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2265
2266 if (!dev->primary->master)
2267 return;
2268
2269 master_priv = dev->primary->master->driver_priv;
2270 if (!master_priv->sarea_priv)
2271 return;
2272
2273 switch (intel_crtc->pipe) {
2274 case 0:
2275 master_priv->sarea_priv->pipeA_x = x;
2276 master_priv->sarea_priv->pipeA_y = y;
2277 break;
2278 case 1:
2279 master_priv->sarea_priv->pipeB_x = x;
2280 master_priv->sarea_priv->pipeB_y = y;
2281 break;
2282 default:
2283 break;
2284 }
2285}
2286
Chris Wilson14667a42012-04-03 17:58:35 +01002287static int
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -05002288intel_pipe_set_base(struct drm_crtc *crtc, int x, int y,
Daniel Vetter94352cf2012-07-05 22:51:56 +02002289 struct drm_framebuffer *fb)
Jesse Barnes79e53942008-11-07 14:24:08 -08002290{
2291 struct drm_device *dev = crtc->dev;
Chris Wilson6b8e6ed2012-04-17 15:08:19 +01002292 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -08002293 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter94352cf2012-07-05 22:51:56 +02002294 struct drm_framebuffer *old_fb;
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002295 int ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08002296
2297 /* no fb bound */
Daniel Vetter94352cf2012-07-05 22:51:56 +02002298 if (!fb) {
Jesse Barnesa5071c22011-07-19 15:38:56 -07002299 DRM_ERROR("No FB bound\n");
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002300 return 0;
2301 }
2302
Ben Widawsky7eb552a2013-03-13 14:05:41 -07002303 if (intel_crtc->plane > INTEL_INFO(dev)->num_pipes) {
Ville Syrjälä84f44ce2013-04-17 17:48:49 +03002304 DRM_ERROR("no plane for crtc: plane %c, num_pipes %d\n",
2305 plane_name(intel_crtc->plane),
2306 INTEL_INFO(dev)->num_pipes);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002307 return -EINVAL;
Jesse Barnes79e53942008-11-07 14:24:08 -08002308 }
2309
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002310 mutex_lock(&dev->struct_mutex);
Chris Wilson265db952010-09-20 15:41:01 +01002311 ret = intel_pin_and_fence_fb_obj(dev,
Daniel Vetter94352cf2012-07-05 22:51:56 +02002312 to_intel_framebuffer(fb)->obj,
Chris Wilson919926a2010-11-12 13:42:53 +00002313 NULL);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002314 if (ret != 0) {
2315 mutex_unlock(&dev->struct_mutex);
Jesse Barnesa5071c22011-07-19 15:38:56 -07002316 DRM_ERROR("pin & fence failed\n");
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002317 return ret;
2318 }
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -05002319
Damien Lespiaubb2043d2013-09-30 14:21:49 +01002320 /*
2321 * Update pipe size and adjust fitter if needed: the reason for this is
2322 * that in compute_mode_changes we check the native mode (not the pfit
2323 * mode) to see if we can flip rather than do a full mode set. In the
2324 * fastboot case, we'll flip, but if we don't update the pipesrc and
2325 * pfit state, we'll end up with a big fb scanned out into the wrong
2326 * sized surface.
2327 *
2328 * To fix this properly, we need to hoist the checks up into
2329 * compute_mode_changes (or above), check the actual pfit state and
2330 * whether the platform allows pfit disable with pipe active, and only
2331 * then update the pipesrc and pfit state, even on the flip path.
2332 */
Jesse Barnes4d6a3e62013-06-26 01:38:18 +03002333 if (i915_fastboot) {
Damien Lespiaud7bf63f2013-09-30 14:21:50 +01002334 const struct drm_display_mode *adjusted_mode =
2335 &intel_crtc->config.adjusted_mode;
2336
Jesse Barnes4d6a3e62013-06-26 01:38:18 +03002337 I915_WRITE(PIPESRC(intel_crtc->pipe),
Damien Lespiaud7bf63f2013-09-30 14:21:50 +01002338 ((adjusted_mode->crtc_hdisplay - 1) << 16) |
2339 (adjusted_mode->crtc_vdisplay - 1));
Chris Wilsonfd4daa92013-08-27 17:04:17 +01002340 if (!intel_crtc->config.pch_pfit.enabled &&
Jesse Barnes4d6a3e62013-06-26 01:38:18 +03002341 (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) ||
2342 intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP))) {
2343 I915_WRITE(PF_CTL(intel_crtc->pipe), 0);
2344 I915_WRITE(PF_WIN_POS(intel_crtc->pipe), 0);
2345 I915_WRITE(PF_WIN_SZ(intel_crtc->pipe), 0);
2346 }
2347 }
2348
Daniel Vetter94352cf2012-07-05 22:51:56 +02002349 ret = dev_priv->display.update_plane(crtc, fb, x, y);
Chris Wilson4e6cfef2010-08-08 13:20:19 +01002350 if (ret) {
Daniel Vetter94352cf2012-07-05 22:51:56 +02002351 intel_unpin_fb_obj(to_intel_framebuffer(fb)->obj);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002352 mutex_unlock(&dev->struct_mutex);
Jesse Barnesa5071c22011-07-19 15:38:56 -07002353 DRM_ERROR("failed to update base address\n");
Chris Wilson4e6cfef2010-08-08 13:20:19 +01002354 return ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08002355 }
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -05002356
Daniel Vetter94352cf2012-07-05 22:51:56 +02002357 old_fb = crtc->fb;
2358 crtc->fb = fb;
Daniel Vetter6c4c86f2012-09-10 21:58:30 +02002359 crtc->x = x;
2360 crtc->y = y;
Daniel Vetter94352cf2012-07-05 22:51:56 +02002361
Chris Wilsonb7f1de22010-12-14 16:09:31 +00002362 if (old_fb) {
Daniel Vetterd7697ee2013-06-02 17:23:01 +02002363 if (intel_crtc->active && old_fb != fb)
2364 intel_wait_for_vblank(dev, intel_crtc->pipe);
Chris Wilson1690e1e2011-12-14 13:57:08 +01002365 intel_unpin_fb_obj(to_intel_framebuffer(old_fb)->obj);
Chris Wilsonb7f1de22010-12-14 16:09:31 +00002366 }
Jesse Barnes652c3932009-08-17 13:31:43 -07002367
Chris Wilson6b8e6ed2012-04-17 15:08:19 +01002368 intel_update_fbc(dev);
Rodrigo Vivi49065572013-07-11 18:45:05 -03002369 intel_edp_psr_update(dev);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002370 mutex_unlock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -08002371
Ville Syrjälä198598d2012-10-31 17:50:24 +02002372 intel_crtc_update_sarea_pos(crtc, x, y);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002373
2374 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08002375}
2376
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08002377static void intel_fdi_normal_train(struct drm_crtc *crtc)
2378{
2379 struct drm_device *dev = crtc->dev;
2380 struct drm_i915_private *dev_priv = dev->dev_private;
2381 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2382 int pipe = intel_crtc->pipe;
2383 u32 reg, temp;
2384
2385 /* enable normal train */
2386 reg = FDI_TX_CTL(pipe);
2387 temp = I915_READ(reg);
Keith Packard61e499b2011-05-17 16:13:52 -07002388 if (IS_IVYBRIDGE(dev)) {
Jesse Barnes357555c2011-04-28 15:09:55 -07002389 temp &= ~FDI_LINK_TRAIN_NONE_IVB;
2390 temp |= FDI_LINK_TRAIN_NONE_IVB | FDI_TX_ENHANCE_FRAME_ENABLE;
Keith Packard61e499b2011-05-17 16:13:52 -07002391 } else {
2392 temp &= ~FDI_LINK_TRAIN_NONE;
2393 temp |= FDI_LINK_TRAIN_NONE | FDI_TX_ENHANCE_FRAME_ENABLE;
Jesse Barnes357555c2011-04-28 15:09:55 -07002394 }
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08002395 I915_WRITE(reg, temp);
2396
2397 reg = FDI_RX_CTL(pipe);
2398 temp = I915_READ(reg);
2399 if (HAS_PCH_CPT(dev)) {
2400 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2401 temp |= FDI_LINK_TRAIN_NORMAL_CPT;
2402 } else {
2403 temp &= ~FDI_LINK_TRAIN_NONE;
2404 temp |= FDI_LINK_TRAIN_NONE;
2405 }
2406 I915_WRITE(reg, temp | FDI_RX_ENHANCE_FRAME_ENABLE);
2407
2408 /* wait one idle pattern time */
2409 POSTING_READ(reg);
2410 udelay(1000);
Jesse Barnes357555c2011-04-28 15:09:55 -07002411
2412 /* IVB wants error correction enabled */
2413 if (IS_IVYBRIDGE(dev))
2414 I915_WRITE(reg, I915_READ(reg) | FDI_FS_ERRC_ENABLE |
2415 FDI_FE_ERRC_ENABLE);
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08002416}
2417
Daniel Vetter1e833f42013-02-19 22:31:57 +01002418static bool pipe_has_enabled_pch(struct intel_crtc *intel_crtc)
2419{
2420 return intel_crtc->base.enabled && intel_crtc->config.has_pch_encoder;
2421}
2422
Daniel Vetter01a415f2012-10-27 15:58:40 +02002423static void ivb_modeset_global_resources(struct drm_device *dev)
2424{
2425 struct drm_i915_private *dev_priv = dev->dev_private;
2426 struct intel_crtc *pipe_B_crtc =
2427 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[PIPE_B]);
2428 struct intel_crtc *pipe_C_crtc =
2429 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[PIPE_C]);
2430 uint32_t temp;
2431
Daniel Vetter1e833f42013-02-19 22:31:57 +01002432 /*
2433 * When everything is off disable fdi C so that we could enable fdi B
2434 * with all lanes. Note that we don't care about enabled pipes without
2435 * an enabled pch encoder.
2436 */
2437 if (!pipe_has_enabled_pch(pipe_B_crtc) &&
2438 !pipe_has_enabled_pch(pipe_C_crtc)) {
Daniel Vetter01a415f2012-10-27 15:58:40 +02002439 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_B)) & FDI_RX_ENABLE);
2440 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_C)) & FDI_RX_ENABLE);
2441
2442 temp = I915_READ(SOUTH_CHICKEN1);
2443 temp &= ~FDI_BC_BIFURCATION_SELECT;
2444 DRM_DEBUG_KMS("disabling fdi C rx\n");
2445 I915_WRITE(SOUTH_CHICKEN1, temp);
2446 }
2447}
2448
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002449/* The FDI link training functions for ILK/Ibexpeak. */
2450static void ironlake_fdi_link_train(struct drm_crtc *crtc)
2451{
2452 struct drm_device *dev = crtc->dev;
2453 struct drm_i915_private *dev_priv = dev->dev_private;
2454 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2455 int pipe = intel_crtc->pipe;
Jesse Barnes0fc932b2011-01-04 15:09:37 -08002456 int plane = intel_crtc->plane;
Chris Wilson5eddb702010-09-11 13:48:45 +01002457 u32 reg, temp, tries;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002458
Jesse Barnes0fc932b2011-01-04 15:09:37 -08002459 /* FDI needs bits from pipe & plane first */
2460 assert_pipe_enabled(dev_priv, pipe);
2461 assert_plane_enabled(dev_priv, plane);
2462
Adam Jacksone1a44742010-06-25 15:32:14 -04002463 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
2464 for train result */
Chris Wilson5eddb702010-09-11 13:48:45 +01002465 reg = FDI_RX_IMR(pipe);
2466 temp = I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04002467 temp &= ~FDI_RX_SYMBOL_LOCK;
2468 temp &= ~FDI_RX_BIT_LOCK;
Chris Wilson5eddb702010-09-11 13:48:45 +01002469 I915_WRITE(reg, temp);
2470 I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04002471 udelay(150);
2472
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002473 /* enable CPU FDI TX and PCH FDI RX */
Chris Wilson5eddb702010-09-11 13:48:45 +01002474 reg = FDI_TX_CTL(pipe);
2475 temp = I915_READ(reg);
Daniel Vetter627eb5a2013-04-29 19:33:42 +02002476 temp &= ~FDI_DP_PORT_WIDTH_MASK;
2477 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config.fdi_lanes);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002478 temp &= ~FDI_LINK_TRAIN_NONE;
2479 temp |= FDI_LINK_TRAIN_PATTERN_1;
Chris Wilson5eddb702010-09-11 13:48:45 +01002480 I915_WRITE(reg, temp | FDI_TX_ENABLE);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002481
Chris Wilson5eddb702010-09-11 13:48:45 +01002482 reg = FDI_RX_CTL(pipe);
2483 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002484 temp &= ~FDI_LINK_TRAIN_NONE;
2485 temp |= FDI_LINK_TRAIN_PATTERN_1;
Chris Wilson5eddb702010-09-11 13:48:45 +01002486 I915_WRITE(reg, temp | FDI_RX_ENABLE);
2487
2488 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002489 udelay(150);
2490
Jesse Barnes5b2adf82010-10-07 16:01:15 -07002491 /* Ironlake workaround, enable clock pointer after FDI enable*/
Daniel Vetter8f5718a2012-10-31 22:52:28 +01002492 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR);
2493 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR |
2494 FDI_RX_PHASE_SYNC_POINTER_EN);
Jesse Barnes5b2adf82010-10-07 16:01:15 -07002495
Chris Wilson5eddb702010-09-11 13:48:45 +01002496 reg = FDI_RX_IIR(pipe);
Adam Jacksone1a44742010-06-25 15:32:14 -04002497 for (tries = 0; tries < 5; tries++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002498 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002499 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2500
2501 if ((temp & FDI_RX_BIT_LOCK)) {
2502 DRM_DEBUG_KMS("FDI train 1 done.\n");
Chris Wilson5eddb702010-09-11 13:48:45 +01002503 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002504 break;
2505 }
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002506 }
Adam Jacksone1a44742010-06-25 15:32:14 -04002507 if (tries == 5)
Chris Wilson5eddb702010-09-11 13:48:45 +01002508 DRM_ERROR("FDI train 1 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002509
2510 /* Train 2 */
Chris Wilson5eddb702010-09-11 13:48:45 +01002511 reg = FDI_TX_CTL(pipe);
2512 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002513 temp &= ~FDI_LINK_TRAIN_NONE;
2514 temp |= FDI_LINK_TRAIN_PATTERN_2;
Chris Wilson5eddb702010-09-11 13:48:45 +01002515 I915_WRITE(reg, temp);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002516
Chris Wilson5eddb702010-09-11 13:48:45 +01002517 reg = FDI_RX_CTL(pipe);
2518 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002519 temp &= ~FDI_LINK_TRAIN_NONE;
2520 temp |= FDI_LINK_TRAIN_PATTERN_2;
Chris Wilson5eddb702010-09-11 13:48:45 +01002521 I915_WRITE(reg, temp);
2522
2523 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002524 udelay(150);
2525
Chris Wilson5eddb702010-09-11 13:48:45 +01002526 reg = FDI_RX_IIR(pipe);
Adam Jacksone1a44742010-06-25 15:32:14 -04002527 for (tries = 0; tries < 5; tries++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002528 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002529 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2530
2531 if (temp & FDI_RX_SYMBOL_LOCK) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002532 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002533 DRM_DEBUG_KMS("FDI train 2 done.\n");
2534 break;
2535 }
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002536 }
Adam Jacksone1a44742010-06-25 15:32:14 -04002537 if (tries == 5)
Chris Wilson5eddb702010-09-11 13:48:45 +01002538 DRM_ERROR("FDI train 2 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002539
2540 DRM_DEBUG_KMS("FDI train done\n");
Jesse Barnes5c5313c2010-10-07 16:01:11 -07002541
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002542}
2543
Akshay Joshi0206e352011-08-16 15:34:10 -04002544static const int snb_b_fdi_train_param[] = {
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002545 FDI_LINK_TRAIN_400MV_0DB_SNB_B,
2546 FDI_LINK_TRAIN_400MV_6DB_SNB_B,
2547 FDI_LINK_TRAIN_600MV_3_5DB_SNB_B,
2548 FDI_LINK_TRAIN_800MV_0DB_SNB_B,
2549};
2550
2551/* The FDI link training functions for SNB/Cougarpoint. */
2552static void gen6_fdi_link_train(struct drm_crtc *crtc)
2553{
2554 struct drm_device *dev = crtc->dev;
2555 struct drm_i915_private *dev_priv = dev->dev_private;
2556 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2557 int pipe = intel_crtc->pipe;
Sean Paulfa37d392012-03-02 12:53:39 -05002558 u32 reg, temp, i, retry;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002559
Adam Jacksone1a44742010-06-25 15:32:14 -04002560 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
2561 for train result */
Chris Wilson5eddb702010-09-11 13:48:45 +01002562 reg = FDI_RX_IMR(pipe);
2563 temp = I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04002564 temp &= ~FDI_RX_SYMBOL_LOCK;
2565 temp &= ~FDI_RX_BIT_LOCK;
Chris Wilson5eddb702010-09-11 13:48:45 +01002566 I915_WRITE(reg, temp);
2567
2568 POSTING_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04002569 udelay(150);
2570
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002571 /* enable CPU FDI TX and PCH FDI RX */
Chris Wilson5eddb702010-09-11 13:48:45 +01002572 reg = FDI_TX_CTL(pipe);
2573 temp = I915_READ(reg);
Daniel Vetter627eb5a2013-04-29 19:33:42 +02002574 temp &= ~FDI_DP_PORT_WIDTH_MASK;
2575 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config.fdi_lanes);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002576 temp &= ~FDI_LINK_TRAIN_NONE;
2577 temp |= FDI_LINK_TRAIN_PATTERN_1;
2578 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2579 /* SNB-B */
2580 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
Chris Wilson5eddb702010-09-11 13:48:45 +01002581 I915_WRITE(reg, temp | FDI_TX_ENABLE);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002582
Daniel Vetterd74cf322012-10-26 10:58:13 +02002583 I915_WRITE(FDI_RX_MISC(pipe),
2584 FDI_RX_TP1_TO_TP2_48 | FDI_RX_FDI_DELAY_90);
2585
Chris Wilson5eddb702010-09-11 13:48:45 +01002586 reg = FDI_RX_CTL(pipe);
2587 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002588 if (HAS_PCH_CPT(dev)) {
2589 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2590 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
2591 } else {
2592 temp &= ~FDI_LINK_TRAIN_NONE;
2593 temp |= FDI_LINK_TRAIN_PATTERN_1;
2594 }
Chris Wilson5eddb702010-09-11 13:48:45 +01002595 I915_WRITE(reg, temp | FDI_RX_ENABLE);
2596
2597 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002598 udelay(150);
2599
Akshay Joshi0206e352011-08-16 15:34:10 -04002600 for (i = 0; i < 4; i++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002601 reg = FDI_TX_CTL(pipe);
2602 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002603 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2604 temp |= snb_b_fdi_train_param[i];
Chris Wilson5eddb702010-09-11 13:48:45 +01002605 I915_WRITE(reg, temp);
2606
2607 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002608 udelay(500);
2609
Sean Paulfa37d392012-03-02 12:53:39 -05002610 for (retry = 0; retry < 5; retry++) {
2611 reg = FDI_RX_IIR(pipe);
2612 temp = I915_READ(reg);
2613 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2614 if (temp & FDI_RX_BIT_LOCK) {
2615 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
2616 DRM_DEBUG_KMS("FDI train 1 done.\n");
2617 break;
2618 }
2619 udelay(50);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002620 }
Sean Paulfa37d392012-03-02 12:53:39 -05002621 if (retry < 5)
2622 break;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002623 }
2624 if (i == 4)
Chris Wilson5eddb702010-09-11 13:48:45 +01002625 DRM_ERROR("FDI train 1 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002626
2627 /* Train 2 */
Chris Wilson5eddb702010-09-11 13:48:45 +01002628 reg = FDI_TX_CTL(pipe);
2629 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002630 temp &= ~FDI_LINK_TRAIN_NONE;
2631 temp |= FDI_LINK_TRAIN_PATTERN_2;
2632 if (IS_GEN6(dev)) {
2633 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2634 /* SNB-B */
2635 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
2636 }
Chris Wilson5eddb702010-09-11 13:48:45 +01002637 I915_WRITE(reg, temp);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002638
Chris Wilson5eddb702010-09-11 13:48:45 +01002639 reg = FDI_RX_CTL(pipe);
2640 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002641 if (HAS_PCH_CPT(dev)) {
2642 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2643 temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
2644 } else {
2645 temp &= ~FDI_LINK_TRAIN_NONE;
2646 temp |= FDI_LINK_TRAIN_PATTERN_2;
2647 }
Chris Wilson5eddb702010-09-11 13:48:45 +01002648 I915_WRITE(reg, temp);
2649
2650 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002651 udelay(150);
2652
Akshay Joshi0206e352011-08-16 15:34:10 -04002653 for (i = 0; i < 4; i++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002654 reg = FDI_TX_CTL(pipe);
2655 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002656 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2657 temp |= snb_b_fdi_train_param[i];
Chris Wilson5eddb702010-09-11 13:48:45 +01002658 I915_WRITE(reg, temp);
2659
2660 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002661 udelay(500);
2662
Sean Paulfa37d392012-03-02 12:53:39 -05002663 for (retry = 0; retry < 5; retry++) {
2664 reg = FDI_RX_IIR(pipe);
2665 temp = I915_READ(reg);
2666 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2667 if (temp & FDI_RX_SYMBOL_LOCK) {
2668 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
2669 DRM_DEBUG_KMS("FDI train 2 done.\n");
2670 break;
2671 }
2672 udelay(50);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002673 }
Sean Paulfa37d392012-03-02 12:53:39 -05002674 if (retry < 5)
2675 break;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002676 }
2677 if (i == 4)
Chris Wilson5eddb702010-09-11 13:48:45 +01002678 DRM_ERROR("FDI train 2 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002679
2680 DRM_DEBUG_KMS("FDI train done.\n");
2681}
2682
Jesse Barnes357555c2011-04-28 15:09:55 -07002683/* Manual link training for Ivy Bridge A0 parts */
2684static void ivb_manual_fdi_link_train(struct drm_crtc *crtc)
2685{
2686 struct drm_device *dev = crtc->dev;
2687 struct drm_i915_private *dev_priv = dev->dev_private;
2688 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2689 int pipe = intel_crtc->pipe;
Jesse Barnes139ccd32013-08-19 11:04:55 -07002690 u32 reg, temp, i, j;
Jesse Barnes357555c2011-04-28 15:09:55 -07002691
2692 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
2693 for train result */
2694 reg = FDI_RX_IMR(pipe);
2695 temp = I915_READ(reg);
2696 temp &= ~FDI_RX_SYMBOL_LOCK;
2697 temp &= ~FDI_RX_BIT_LOCK;
2698 I915_WRITE(reg, temp);
2699
2700 POSTING_READ(reg);
2701 udelay(150);
2702
Daniel Vetter01a415f2012-10-27 15:58:40 +02002703 DRM_DEBUG_KMS("FDI_RX_IIR before link train 0x%x\n",
2704 I915_READ(FDI_RX_IIR(pipe)));
2705
Jesse Barnes139ccd32013-08-19 11:04:55 -07002706 /* Try each vswing and preemphasis setting twice before moving on */
2707 for (j = 0; j < ARRAY_SIZE(snb_b_fdi_train_param) * 2; j++) {
2708 /* disable first in case we need to retry */
Jesse Barnes357555c2011-04-28 15:09:55 -07002709 reg = FDI_TX_CTL(pipe);
2710 temp = I915_READ(reg);
Jesse Barnes139ccd32013-08-19 11:04:55 -07002711 temp &= ~(FDI_LINK_TRAIN_AUTO | FDI_LINK_TRAIN_NONE_IVB);
2712 temp &= ~FDI_TX_ENABLE;
2713 I915_WRITE(reg, temp);
2714
2715 reg = FDI_RX_CTL(pipe);
2716 temp = I915_READ(reg);
2717 temp &= ~FDI_LINK_TRAIN_AUTO;
2718 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2719 temp &= ~FDI_RX_ENABLE;
2720 I915_WRITE(reg, temp);
2721
2722 /* enable CPU FDI TX and PCH FDI RX */
2723 reg = FDI_TX_CTL(pipe);
2724 temp = I915_READ(reg);
2725 temp &= ~FDI_DP_PORT_WIDTH_MASK;
2726 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config.fdi_lanes);
2727 temp |= FDI_LINK_TRAIN_PATTERN_1_IVB;
Jesse Barnes357555c2011-04-28 15:09:55 -07002728 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
Jesse Barnes139ccd32013-08-19 11:04:55 -07002729 temp |= snb_b_fdi_train_param[j/2];
2730 temp |= FDI_COMPOSITE_SYNC;
2731 I915_WRITE(reg, temp | FDI_TX_ENABLE);
2732
2733 I915_WRITE(FDI_RX_MISC(pipe),
2734 FDI_RX_TP1_TO_TP2_48 | FDI_RX_FDI_DELAY_90);
2735
2736 reg = FDI_RX_CTL(pipe);
2737 temp = I915_READ(reg);
2738 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
2739 temp |= FDI_COMPOSITE_SYNC;
2740 I915_WRITE(reg, temp | FDI_RX_ENABLE);
2741
2742 POSTING_READ(reg);
2743 udelay(1); /* should be 0.5us */
2744
2745 for (i = 0; i < 4; i++) {
2746 reg = FDI_RX_IIR(pipe);
2747 temp = I915_READ(reg);
2748 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2749
2750 if (temp & FDI_RX_BIT_LOCK ||
2751 (I915_READ(reg) & FDI_RX_BIT_LOCK)) {
2752 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
2753 DRM_DEBUG_KMS("FDI train 1 done, level %i.\n",
2754 i);
2755 break;
2756 }
2757 udelay(1); /* should be 0.5us */
2758 }
2759 if (i == 4) {
2760 DRM_DEBUG_KMS("FDI train 1 fail on vswing %d\n", j / 2);
2761 continue;
2762 }
2763
2764 /* Train 2 */
2765 reg = FDI_TX_CTL(pipe);
2766 temp = I915_READ(reg);
2767 temp &= ~FDI_LINK_TRAIN_NONE_IVB;
2768 temp |= FDI_LINK_TRAIN_PATTERN_2_IVB;
2769 I915_WRITE(reg, temp);
2770
2771 reg = FDI_RX_CTL(pipe);
2772 temp = I915_READ(reg);
2773 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2774 temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
Jesse Barnes357555c2011-04-28 15:09:55 -07002775 I915_WRITE(reg, temp);
2776
2777 POSTING_READ(reg);
Jesse Barnes139ccd32013-08-19 11:04:55 -07002778 udelay(2); /* should be 1.5us */
Jesse Barnes357555c2011-04-28 15:09:55 -07002779
Jesse Barnes139ccd32013-08-19 11:04:55 -07002780 for (i = 0; i < 4; i++) {
2781 reg = FDI_RX_IIR(pipe);
2782 temp = I915_READ(reg);
2783 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
Jesse Barnes357555c2011-04-28 15:09:55 -07002784
Jesse Barnes139ccd32013-08-19 11:04:55 -07002785 if (temp & FDI_RX_SYMBOL_LOCK ||
2786 (I915_READ(reg) & FDI_RX_SYMBOL_LOCK)) {
2787 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
2788 DRM_DEBUG_KMS("FDI train 2 done, level %i.\n",
2789 i);
2790 goto train_done;
2791 }
2792 udelay(2); /* should be 1.5us */
Jesse Barnes357555c2011-04-28 15:09:55 -07002793 }
Jesse Barnes139ccd32013-08-19 11:04:55 -07002794 if (i == 4)
2795 DRM_DEBUG_KMS("FDI train 2 fail on vswing %d\n", j / 2);
Jesse Barnes357555c2011-04-28 15:09:55 -07002796 }
Jesse Barnes357555c2011-04-28 15:09:55 -07002797
Jesse Barnes139ccd32013-08-19 11:04:55 -07002798train_done:
Jesse Barnes357555c2011-04-28 15:09:55 -07002799 DRM_DEBUG_KMS("FDI train done.\n");
2800}
2801
Daniel Vetter88cefb62012-08-12 19:27:14 +02002802static void ironlake_fdi_pll_enable(struct intel_crtc *intel_crtc)
Jesse Barnes0e23b992010-09-10 11:10:00 -07002803{
Daniel Vetter88cefb62012-08-12 19:27:14 +02002804 struct drm_device *dev = intel_crtc->base.dev;
Jesse Barnes0e23b992010-09-10 11:10:00 -07002805 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes0e23b992010-09-10 11:10:00 -07002806 int pipe = intel_crtc->pipe;
Chris Wilson5eddb702010-09-11 13:48:45 +01002807 u32 reg, temp;
Jesse Barnes0e23b992010-09-10 11:10:00 -07002808
Jesse Barnesc64e3112010-09-10 11:27:03 -07002809
Jesse Barnes0e23b992010-09-10 11:10:00 -07002810 /* enable PCH FDI RX PLL, wait warmup plus DMI latency */
Chris Wilson5eddb702010-09-11 13:48:45 +01002811 reg = FDI_RX_CTL(pipe);
2812 temp = I915_READ(reg);
Daniel Vetter627eb5a2013-04-29 19:33:42 +02002813 temp &= ~(FDI_DP_PORT_WIDTH_MASK | (0x7 << 16));
2814 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config.fdi_lanes);
Daniel Vetterdfd07d72012-12-17 11:21:38 +01002815 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
Chris Wilson5eddb702010-09-11 13:48:45 +01002816 I915_WRITE(reg, temp | FDI_RX_PLL_ENABLE);
2817
2818 POSTING_READ(reg);
Jesse Barnes0e23b992010-09-10 11:10:00 -07002819 udelay(200);
2820
2821 /* Switch from Rawclk to PCDclk */
Chris Wilson5eddb702010-09-11 13:48:45 +01002822 temp = I915_READ(reg);
2823 I915_WRITE(reg, temp | FDI_PCDCLK);
2824
2825 POSTING_READ(reg);
Jesse Barnes0e23b992010-09-10 11:10:00 -07002826 udelay(200);
2827
Paulo Zanoni20749732012-11-23 15:30:38 -02002828 /* Enable CPU FDI TX PLL, always on for Ironlake */
2829 reg = FDI_TX_CTL(pipe);
2830 temp = I915_READ(reg);
2831 if ((temp & FDI_TX_PLL_ENABLE) == 0) {
2832 I915_WRITE(reg, temp | FDI_TX_PLL_ENABLE);
Chris Wilson5eddb702010-09-11 13:48:45 +01002833
Paulo Zanoni20749732012-11-23 15:30:38 -02002834 POSTING_READ(reg);
2835 udelay(100);
Jesse Barnes0e23b992010-09-10 11:10:00 -07002836 }
2837}
2838
Daniel Vetter88cefb62012-08-12 19:27:14 +02002839static void ironlake_fdi_pll_disable(struct intel_crtc *intel_crtc)
2840{
2841 struct drm_device *dev = intel_crtc->base.dev;
2842 struct drm_i915_private *dev_priv = dev->dev_private;
2843 int pipe = intel_crtc->pipe;
2844 u32 reg, temp;
2845
2846 /* Switch from PCDclk to Rawclk */
2847 reg = FDI_RX_CTL(pipe);
2848 temp = I915_READ(reg);
2849 I915_WRITE(reg, temp & ~FDI_PCDCLK);
2850
2851 /* Disable CPU FDI TX PLL */
2852 reg = FDI_TX_CTL(pipe);
2853 temp = I915_READ(reg);
2854 I915_WRITE(reg, temp & ~FDI_TX_PLL_ENABLE);
2855
2856 POSTING_READ(reg);
2857 udelay(100);
2858
2859 reg = FDI_RX_CTL(pipe);
2860 temp = I915_READ(reg);
2861 I915_WRITE(reg, temp & ~FDI_RX_PLL_ENABLE);
2862
2863 /* Wait for the clocks to turn off. */
2864 POSTING_READ(reg);
2865 udelay(100);
2866}
2867
Jesse Barnes0fc932b2011-01-04 15:09:37 -08002868static void ironlake_fdi_disable(struct drm_crtc *crtc)
2869{
2870 struct drm_device *dev = crtc->dev;
2871 struct drm_i915_private *dev_priv = dev->dev_private;
2872 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2873 int pipe = intel_crtc->pipe;
2874 u32 reg, temp;
2875
2876 /* disable CPU FDI tx and PCH FDI rx */
2877 reg = FDI_TX_CTL(pipe);
2878 temp = I915_READ(reg);
2879 I915_WRITE(reg, temp & ~FDI_TX_ENABLE);
2880 POSTING_READ(reg);
2881
2882 reg = FDI_RX_CTL(pipe);
2883 temp = I915_READ(reg);
2884 temp &= ~(0x7 << 16);
Daniel Vetterdfd07d72012-12-17 11:21:38 +01002885 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
Jesse Barnes0fc932b2011-01-04 15:09:37 -08002886 I915_WRITE(reg, temp & ~FDI_RX_ENABLE);
2887
2888 POSTING_READ(reg);
2889 udelay(100);
2890
2891 /* Ironlake workaround, disable clock pointer after downing FDI */
Jesse Barnes6f06ce12011-01-04 15:09:38 -08002892 if (HAS_PCH_IBX(dev)) {
2893 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR);
Jesse Barnes6f06ce12011-01-04 15:09:38 -08002894 }
Jesse Barnes0fc932b2011-01-04 15:09:37 -08002895
2896 /* still set train pattern 1 */
2897 reg = FDI_TX_CTL(pipe);
2898 temp = I915_READ(reg);
2899 temp &= ~FDI_LINK_TRAIN_NONE;
2900 temp |= FDI_LINK_TRAIN_PATTERN_1;
2901 I915_WRITE(reg, temp);
2902
2903 reg = FDI_RX_CTL(pipe);
2904 temp = I915_READ(reg);
2905 if (HAS_PCH_CPT(dev)) {
2906 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2907 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
2908 } else {
2909 temp &= ~FDI_LINK_TRAIN_NONE;
2910 temp |= FDI_LINK_TRAIN_PATTERN_1;
2911 }
2912 /* BPC in FDI rx is consistent with that in PIPECONF */
2913 temp &= ~(0x07 << 16);
Daniel Vetterdfd07d72012-12-17 11:21:38 +01002914 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
Jesse Barnes0fc932b2011-01-04 15:09:37 -08002915 I915_WRITE(reg, temp);
2916
2917 POSTING_READ(reg);
2918 udelay(100);
2919}
2920
Chris Wilson5bb61642012-09-27 21:25:58 +01002921static bool intel_crtc_has_pending_flip(struct drm_crtc *crtc)
2922{
2923 struct drm_device *dev = crtc->dev;
2924 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä10d83732013-01-29 18:13:34 +02002925 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Chris Wilson5bb61642012-09-27 21:25:58 +01002926 unsigned long flags;
2927 bool pending;
2928
Ville Syrjälä10d83732013-01-29 18:13:34 +02002929 if (i915_reset_in_progress(&dev_priv->gpu_error) ||
2930 intel_crtc->reset_counter != atomic_read(&dev_priv->gpu_error.reset_counter))
Chris Wilson5bb61642012-09-27 21:25:58 +01002931 return false;
2932
2933 spin_lock_irqsave(&dev->event_lock, flags);
2934 pending = to_intel_crtc(crtc)->unpin_work != NULL;
2935 spin_unlock_irqrestore(&dev->event_lock, flags);
2936
2937 return pending;
2938}
2939
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01002940static void intel_crtc_wait_for_pending_flips(struct drm_crtc *crtc)
2941{
Chris Wilson0f911282012-04-17 10:05:38 +01002942 struct drm_device *dev = crtc->dev;
Chris Wilson5bb61642012-09-27 21:25:58 +01002943 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01002944
2945 if (crtc->fb == NULL)
2946 return;
2947
Daniel Vetter2c10d572012-12-20 21:24:07 +01002948 WARN_ON(waitqueue_active(&dev_priv->pending_flip_queue));
2949
Chris Wilson5bb61642012-09-27 21:25:58 +01002950 wait_event(dev_priv->pending_flip_queue,
2951 !intel_crtc_has_pending_flip(crtc));
2952
Chris Wilson0f911282012-04-17 10:05:38 +01002953 mutex_lock(&dev->struct_mutex);
2954 intel_finish_fb(crtc->fb);
2955 mutex_unlock(&dev->struct_mutex);
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01002956}
2957
Eugeni Dodonove615efe2012-05-09 15:37:26 -03002958/* Program iCLKIP clock to the desired frequency */
2959static void lpt_program_iclkip(struct drm_crtc *crtc)
2960{
2961 struct drm_device *dev = crtc->dev;
2962 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiau241bfc32013-09-25 16:45:37 +01002963 int clock = to_intel_crtc(crtc)->config.adjusted_mode.crtc_clock;
Eugeni Dodonove615efe2012-05-09 15:37:26 -03002964 u32 divsel, phaseinc, auxdiv, phasedir = 0;
2965 u32 temp;
2966
Daniel Vetter09153002012-12-12 14:06:44 +01002967 mutex_lock(&dev_priv->dpio_lock);
2968
Eugeni Dodonove615efe2012-05-09 15:37:26 -03002969 /* It is necessary to ungate the pixclk gate prior to programming
2970 * the divisors, and gate it back when it is done.
2971 */
2972 I915_WRITE(PIXCLK_GATE, PIXCLK_GATE_GATE);
2973
2974 /* Disable SSCCTL */
2975 intel_sbi_write(dev_priv, SBI_SSCCTL6,
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02002976 intel_sbi_read(dev_priv, SBI_SSCCTL6, SBI_ICLK) |
2977 SBI_SSCCTL_DISABLE,
2978 SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03002979
2980 /* 20MHz is a corner case which is out of range for the 7-bit divisor */
Ville Syrjälä12d7cee2013-09-04 18:25:19 +03002981 if (clock == 20000) {
Eugeni Dodonove615efe2012-05-09 15:37:26 -03002982 auxdiv = 1;
2983 divsel = 0x41;
2984 phaseinc = 0x20;
2985 } else {
2986 /* The iCLK virtual clock root frequency is in MHz,
Damien Lespiau241bfc32013-09-25 16:45:37 +01002987 * but the adjusted_mode->crtc_clock in in KHz. To get the
2988 * divisors, it is necessary to divide one by another, so we
Eugeni Dodonove615efe2012-05-09 15:37:26 -03002989 * convert the virtual clock precision to KHz here for higher
2990 * precision.
2991 */
2992 u32 iclk_virtual_root_freq = 172800 * 1000;
2993 u32 iclk_pi_range = 64;
2994 u32 desired_divisor, msb_divisor_value, pi_value;
2995
Ville Syrjälä12d7cee2013-09-04 18:25:19 +03002996 desired_divisor = (iclk_virtual_root_freq / clock);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03002997 msb_divisor_value = desired_divisor / iclk_pi_range;
2998 pi_value = desired_divisor % iclk_pi_range;
2999
3000 auxdiv = 0;
3001 divsel = msb_divisor_value - 2;
3002 phaseinc = pi_value;
3003 }
3004
3005 /* This should not happen with any sane values */
3006 WARN_ON(SBI_SSCDIVINTPHASE_DIVSEL(divsel) &
3007 ~SBI_SSCDIVINTPHASE_DIVSEL_MASK);
3008 WARN_ON(SBI_SSCDIVINTPHASE_DIR(phasedir) &
3009 ~SBI_SSCDIVINTPHASE_INCVAL_MASK);
3010
3011 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 +03003012 clock,
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003013 auxdiv,
3014 divsel,
3015 phasedir,
3016 phaseinc);
3017
3018 /* Program SSCDIVINTPHASE6 */
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003019 temp = intel_sbi_read(dev_priv, SBI_SSCDIVINTPHASE6, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003020 temp &= ~SBI_SSCDIVINTPHASE_DIVSEL_MASK;
3021 temp |= SBI_SSCDIVINTPHASE_DIVSEL(divsel);
3022 temp &= ~SBI_SSCDIVINTPHASE_INCVAL_MASK;
3023 temp |= SBI_SSCDIVINTPHASE_INCVAL(phaseinc);
3024 temp |= SBI_SSCDIVINTPHASE_DIR(phasedir);
3025 temp |= SBI_SSCDIVINTPHASE_PROPAGATE;
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003026 intel_sbi_write(dev_priv, SBI_SSCDIVINTPHASE6, temp, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003027
3028 /* Program SSCAUXDIV */
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003029 temp = intel_sbi_read(dev_priv, SBI_SSCAUXDIV6, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003030 temp &= ~SBI_SSCAUXDIV_FINALDIV2SEL(1);
3031 temp |= SBI_SSCAUXDIV_FINALDIV2SEL(auxdiv);
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003032 intel_sbi_write(dev_priv, SBI_SSCAUXDIV6, temp, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003033
3034 /* Enable modulator and associated divider */
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003035 temp = intel_sbi_read(dev_priv, SBI_SSCCTL6, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003036 temp &= ~SBI_SSCCTL_DISABLE;
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003037 intel_sbi_write(dev_priv, SBI_SSCCTL6, temp, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003038
3039 /* Wait for initialization time */
3040 udelay(24);
3041
3042 I915_WRITE(PIXCLK_GATE, PIXCLK_GATE_UNGATE);
Daniel Vetter09153002012-12-12 14:06:44 +01003043
3044 mutex_unlock(&dev_priv->dpio_lock);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003045}
3046
Daniel Vetter275f01b22013-05-03 11:49:47 +02003047static void ironlake_pch_transcoder_set_timings(struct intel_crtc *crtc,
3048 enum pipe pch_transcoder)
3049{
3050 struct drm_device *dev = crtc->base.dev;
3051 struct drm_i915_private *dev_priv = dev->dev_private;
3052 enum transcoder cpu_transcoder = crtc->config.cpu_transcoder;
3053
3054 I915_WRITE(PCH_TRANS_HTOTAL(pch_transcoder),
3055 I915_READ(HTOTAL(cpu_transcoder)));
3056 I915_WRITE(PCH_TRANS_HBLANK(pch_transcoder),
3057 I915_READ(HBLANK(cpu_transcoder)));
3058 I915_WRITE(PCH_TRANS_HSYNC(pch_transcoder),
3059 I915_READ(HSYNC(cpu_transcoder)));
3060
3061 I915_WRITE(PCH_TRANS_VTOTAL(pch_transcoder),
3062 I915_READ(VTOTAL(cpu_transcoder)));
3063 I915_WRITE(PCH_TRANS_VBLANK(pch_transcoder),
3064 I915_READ(VBLANK(cpu_transcoder)));
3065 I915_WRITE(PCH_TRANS_VSYNC(pch_transcoder),
3066 I915_READ(VSYNC(cpu_transcoder)));
3067 I915_WRITE(PCH_TRANS_VSYNCSHIFT(pch_transcoder),
3068 I915_READ(VSYNCSHIFT(cpu_transcoder)));
3069}
3070
Jesse Barnesf67a5592011-01-05 10:31:48 -08003071/*
3072 * Enable PCH resources required for PCH ports:
3073 * - PCH PLLs
3074 * - FDI training & RX/TX
3075 * - update transcoder timings
3076 * - DP transcoding bits
3077 * - transcoder
3078 */
3079static void ironlake_pch_enable(struct drm_crtc *crtc)
Jesse Barnes79e53942008-11-07 14:24:08 -08003080{
3081 struct drm_device *dev = crtc->dev;
Zhenyu Wang2c072452009-06-05 15:38:42 +08003082 struct drm_i915_private *dev_priv = dev->dev_private;
3083 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3084 int pipe = intel_crtc->pipe;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003085 u32 reg, temp;
Jesse Barnes6be4a602010-09-10 10:26:01 -07003086
Daniel Vetterab9412b2013-05-03 11:49:46 +02003087 assert_pch_transcoder_disabled(dev_priv, pipe);
Chris Wilsone7e164d2012-05-11 09:21:25 +01003088
Daniel Vettercd986ab2012-10-26 10:58:12 +02003089 /* Write the TU size bits before fdi link training, so that error
3090 * detection works. */
3091 I915_WRITE(FDI_RX_TUSIZE1(pipe),
3092 I915_READ(PIPE_DATA_M1(pipe)) & TU_SIZE_MASK);
3093
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003094 /* For PCH output, training FDI link */
Jesse Barnes674cf962011-04-28 14:27:04 -07003095 dev_priv->display.fdi_link_train(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003096
Daniel Vetter3ad8a202013-06-05 13:34:32 +02003097 /* We need to program the right clock selection before writing the pixel
3098 * mutliplier into the DPLL. */
Paulo Zanoni303b81e2012-10-31 18:12:23 -02003099 if (HAS_PCH_CPT(dev)) {
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003100 u32 sel;
Jesse Barnes4b645f12011-10-12 09:51:31 -07003101
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003102 temp = I915_READ(PCH_DPLL_SEL);
Daniel Vetter11887392013-06-05 13:34:09 +02003103 temp |= TRANS_DPLL_ENABLE(pipe);
3104 sel = TRANS_DPLLB_SEL(pipe);
Daniel Vettera43f6e02013-06-07 23:10:32 +02003105 if (intel_crtc->config.shared_dpll == DPLL_ID_PCH_PLL_B)
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003106 temp |= sel;
3107 else
3108 temp &= ~sel;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003109 I915_WRITE(PCH_DPLL_SEL, temp);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003110 }
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003111
Daniel Vetter3ad8a202013-06-05 13:34:32 +02003112 /* XXX: pch pll's can be enabled any time before we enable the PCH
3113 * transcoder, and we actually should do this to not upset any PCH
3114 * transcoder that already use the clock when we share it.
3115 *
3116 * Note that enable_shared_dpll tries to do the right thing, but
3117 * get_shared_dpll unconditionally resets the pll - we need that to have
3118 * the right LVDS enable sequence. */
3119 ironlake_enable_shared_dpll(intel_crtc);
3120
Jesse Barnesd9b6cb52011-01-04 15:09:35 -08003121 /* set transcoder timing, panel must allow it */
3122 assert_panel_unlocked(dev_priv, pipe);
Daniel Vetter275f01b22013-05-03 11:49:47 +02003123 ironlake_pch_transcoder_set_timings(intel_crtc, pipe);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003124
Paulo Zanoni303b81e2012-10-31 18:12:23 -02003125 intel_fdi_normal_train(crtc);
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08003126
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003127 /* For PCH DP, enable TRANS_DP_CTL */
3128 if (HAS_PCH_CPT(dev) &&
Keith Packard417e8222011-11-01 19:54:11 -07003129 (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT) ||
3130 intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP))) {
Daniel Vetterdfd07d72012-12-17 11:21:38 +01003131 u32 bpc = (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) >> 5;
Chris Wilson5eddb702010-09-11 13:48:45 +01003132 reg = TRANS_DP_CTL(pipe);
3133 temp = I915_READ(reg);
3134 temp &= ~(TRANS_DP_PORT_SEL_MASK |
Eric Anholt220cad32010-11-18 09:32:58 +08003135 TRANS_DP_SYNC_MASK |
3136 TRANS_DP_BPC_MASK);
Chris Wilson5eddb702010-09-11 13:48:45 +01003137 temp |= (TRANS_DP_OUTPUT_ENABLE |
3138 TRANS_DP_ENH_FRAMING);
Jesse Barnes9325c9f2011-06-24 12:19:21 -07003139 temp |= bpc << 9; /* same format but at 11:9 */
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003140
3141 if (crtc->mode.flags & DRM_MODE_FLAG_PHSYNC)
Chris Wilson5eddb702010-09-11 13:48:45 +01003142 temp |= TRANS_DP_HSYNC_ACTIVE_HIGH;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003143 if (crtc->mode.flags & DRM_MODE_FLAG_PVSYNC)
Chris Wilson5eddb702010-09-11 13:48:45 +01003144 temp |= TRANS_DP_VSYNC_ACTIVE_HIGH;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003145
3146 switch (intel_trans_dp_port_sel(crtc)) {
3147 case PCH_DP_B:
Chris Wilson5eddb702010-09-11 13:48:45 +01003148 temp |= TRANS_DP_PORT_SEL_B;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003149 break;
3150 case PCH_DP_C:
Chris Wilson5eddb702010-09-11 13:48:45 +01003151 temp |= TRANS_DP_PORT_SEL_C;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003152 break;
3153 case PCH_DP_D:
Chris Wilson5eddb702010-09-11 13:48:45 +01003154 temp |= TRANS_DP_PORT_SEL_D;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003155 break;
3156 default:
Daniel Vettere95d41e2012-10-26 10:58:16 +02003157 BUG();
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003158 }
3159
Chris Wilson5eddb702010-09-11 13:48:45 +01003160 I915_WRITE(reg, temp);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003161 }
3162
Paulo Zanonib8a4f402012-10-31 18:12:42 -02003163 ironlake_enable_pch_transcoder(dev_priv, pipe);
Jesse Barnesf67a5592011-01-05 10:31:48 -08003164}
3165
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003166static void lpt_pch_enable(struct drm_crtc *crtc)
3167{
3168 struct drm_device *dev = crtc->dev;
3169 struct drm_i915_private *dev_priv = dev->dev_private;
3170 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter3b117c82013-04-17 20:15:07 +02003171 enum transcoder cpu_transcoder = intel_crtc->config.cpu_transcoder;
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003172
Daniel Vetterab9412b2013-05-03 11:49:46 +02003173 assert_pch_transcoder_disabled(dev_priv, TRANSCODER_A);
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003174
Paulo Zanoni8c52b5e2012-10-31 18:12:24 -02003175 lpt_program_iclkip(crtc);
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003176
Paulo Zanoni0540e482012-10-31 18:12:40 -02003177 /* Set transcoder timing. */
Daniel Vetter275f01b22013-05-03 11:49:47 +02003178 ironlake_pch_transcoder_set_timings(intel_crtc, PIPE_A);
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003179
Paulo Zanoni937bb612012-10-31 18:12:47 -02003180 lpt_enable_pch_transcoder(dev_priv, cpu_transcoder);
Jesse Barnesf67a5592011-01-05 10:31:48 -08003181}
3182
Daniel Vettere2b78262013-06-07 23:10:03 +02003183static void intel_put_shared_dpll(struct intel_crtc *crtc)
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003184{
Daniel Vettere2b78262013-06-07 23:10:03 +02003185 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003186
3187 if (pll == NULL)
3188 return;
3189
3190 if (pll->refcount == 0) {
Daniel Vetter46edb022013-06-05 13:34:12 +02003191 WARN(1, "bad %s refcount\n", pll->name);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003192 return;
3193 }
3194
Daniel Vetterf4a091c2013-06-10 17:28:22 +02003195 if (--pll->refcount == 0) {
3196 WARN_ON(pll->on);
3197 WARN_ON(pll->active);
3198 }
3199
Daniel Vettera43f6e02013-06-07 23:10:32 +02003200 crtc->config.shared_dpll = DPLL_ID_PRIVATE;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003201}
3202
Daniel Vetterb89a1d32013-06-05 13:34:24 +02003203static struct intel_shared_dpll *intel_get_shared_dpll(struct intel_crtc *crtc)
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003204{
Daniel Vettere2b78262013-06-07 23:10:03 +02003205 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
3206 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
3207 enum intel_dpll_id i;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003208
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003209 if (pll) {
Daniel Vetter46edb022013-06-05 13:34:12 +02003210 DRM_DEBUG_KMS("CRTC:%d dropping existing %s\n",
3211 crtc->base.base.id, pll->name);
Daniel Vettere2b78262013-06-07 23:10:03 +02003212 intel_put_shared_dpll(crtc);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003213 }
3214
Daniel Vetter98b6bd92012-05-20 20:00:25 +02003215 if (HAS_PCH_IBX(dev_priv->dev)) {
3216 /* Ironlake PCH has a fixed PLL->PCH pipe mapping. */
Daniel Vetterd94ab062013-07-04 12:01:16 +02003217 i = (enum intel_dpll_id) crtc->pipe;
Daniel Vettere72f9fb2013-06-05 13:34:06 +02003218 pll = &dev_priv->shared_dplls[i];
Daniel Vetter98b6bd92012-05-20 20:00:25 +02003219
Daniel Vetter46edb022013-06-05 13:34:12 +02003220 DRM_DEBUG_KMS("CRTC:%d using pre-allocated %s\n",
3221 crtc->base.base.id, pll->name);
Daniel Vetter98b6bd92012-05-20 20:00:25 +02003222
3223 goto found;
3224 }
3225
Daniel Vettere72f9fb2013-06-05 13:34:06 +02003226 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
3227 pll = &dev_priv->shared_dplls[i];
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003228
3229 /* Only want to check enabled timings first */
3230 if (pll->refcount == 0)
3231 continue;
3232
Daniel Vetterb89a1d32013-06-05 13:34:24 +02003233 if (memcmp(&crtc->config.dpll_hw_state, &pll->hw_state,
3234 sizeof(pll->hw_state)) == 0) {
Daniel Vetter46edb022013-06-05 13:34:12 +02003235 DRM_DEBUG_KMS("CRTC:%d sharing existing %s (refcount %d, ative %d)\n",
Daniel Vettere2b78262013-06-07 23:10:03 +02003236 crtc->base.base.id,
Daniel Vetter46edb022013-06-05 13:34:12 +02003237 pll->name, pll->refcount, pll->active);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003238
3239 goto found;
3240 }
3241 }
3242
3243 /* Ok no matching timings, maybe there's a free one? */
Daniel Vettere72f9fb2013-06-05 13:34:06 +02003244 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
3245 pll = &dev_priv->shared_dplls[i];
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003246 if (pll->refcount == 0) {
Daniel Vetter46edb022013-06-05 13:34:12 +02003247 DRM_DEBUG_KMS("CRTC:%d allocated %s\n",
3248 crtc->base.base.id, pll->name);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003249 goto found;
3250 }
3251 }
3252
3253 return NULL;
3254
3255found:
Daniel Vettera43f6e02013-06-07 23:10:32 +02003256 crtc->config.shared_dpll = i;
Daniel Vetter46edb022013-06-05 13:34:12 +02003257 DRM_DEBUG_DRIVER("using %s for pipe %c\n", pll->name,
3258 pipe_name(crtc->pipe));
Daniel Vetter66e985c2013-06-05 13:34:20 +02003259
Daniel Vettercdbd2312013-06-05 13:34:03 +02003260 if (pll->active == 0) {
Daniel Vetter66e985c2013-06-05 13:34:20 +02003261 memcpy(&pll->hw_state, &crtc->config.dpll_hw_state,
3262 sizeof(pll->hw_state));
3263
Daniel Vetter46edb022013-06-05 13:34:12 +02003264 DRM_DEBUG_DRIVER("setting up %s\n", pll->name);
Daniel Vettercdbd2312013-06-05 13:34:03 +02003265 WARN_ON(pll->on);
Daniel Vettere9d69442013-06-05 13:34:15 +02003266 assert_shared_dpll_disabled(dev_priv, pll);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003267
Daniel Vetter15bdd4c2013-06-05 13:34:23 +02003268 pll->mode_set(dev_priv, pll);
Daniel Vettercdbd2312013-06-05 13:34:03 +02003269 }
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003270 pll->refcount++;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003271
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003272 return pll;
3273}
3274
Daniel Vettera1520312013-05-03 11:49:50 +02003275static void cpt_verify_modeset(struct drm_device *dev, int pipe)
Jesse Barnesd4270e52011-10-11 10:43:02 -07003276{
3277 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter23670b322012-11-01 09:15:30 +01003278 int dslreg = PIPEDSL(pipe);
Jesse Barnesd4270e52011-10-11 10:43:02 -07003279 u32 temp;
3280
3281 temp = I915_READ(dslreg);
3282 udelay(500);
3283 if (wait_for(I915_READ(dslreg) != temp, 5)) {
Jesse Barnesd4270e52011-10-11 10:43:02 -07003284 if (wait_for(I915_READ(dslreg) != temp, 5))
Ville Syrjälä84f44ce2013-04-17 17:48:49 +03003285 DRM_ERROR("mode set failed: pipe %c stuck\n", pipe_name(pipe));
Jesse Barnesd4270e52011-10-11 10:43:02 -07003286 }
3287}
3288
Jesse Barnesb074cec2013-04-25 12:55:02 -07003289static void ironlake_pfit_enable(struct intel_crtc *crtc)
3290{
3291 struct drm_device *dev = crtc->base.dev;
3292 struct drm_i915_private *dev_priv = dev->dev_private;
3293 int pipe = crtc->pipe;
3294
Chris Wilsonfd4daa92013-08-27 17:04:17 +01003295 if (crtc->config.pch_pfit.enabled) {
Jesse Barnesb074cec2013-04-25 12:55:02 -07003296 /* Force use of hard-coded filter coefficients
3297 * as some pre-programmed values are broken,
3298 * e.g. x201.
3299 */
3300 if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev))
3301 I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3 |
3302 PF_PIPE_SEL_IVB(pipe));
3303 else
3304 I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3);
3305 I915_WRITE(PF_WIN_POS(pipe), crtc->config.pch_pfit.pos);
3306 I915_WRITE(PF_WIN_SZ(pipe), crtc->config.pch_pfit.size);
Jesse Barnes040484a2011-01-03 12:14:26 -08003307 }
Jesse Barnesf67a5592011-01-05 10:31:48 -08003308}
3309
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03003310static void intel_enable_planes(struct drm_crtc *crtc)
3311{
3312 struct drm_device *dev = crtc->dev;
3313 enum pipe pipe = to_intel_crtc(crtc)->pipe;
3314 struct intel_plane *intel_plane;
3315
3316 list_for_each_entry(intel_plane, &dev->mode_config.plane_list, base.head)
3317 if (intel_plane->pipe == pipe)
3318 intel_plane_restore(&intel_plane->base);
3319}
3320
3321static void intel_disable_planes(struct drm_crtc *crtc)
3322{
3323 struct drm_device *dev = crtc->dev;
3324 enum pipe pipe = to_intel_crtc(crtc)->pipe;
3325 struct intel_plane *intel_plane;
3326
3327 list_for_each_entry(intel_plane, &dev->mode_config.plane_list, base.head)
3328 if (intel_plane->pipe == pipe)
3329 intel_plane_disable(&intel_plane->base);
3330}
3331
Paulo Zanonid77e4532013-09-24 13:52:55 -03003332static void hsw_enable_ips(struct intel_crtc *crtc)
3333{
3334 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
3335
3336 if (!crtc->config.ips_enabled)
3337 return;
3338
3339 /* We can only enable IPS after we enable a plane and wait for a vblank.
3340 * We guarantee that the plane is enabled by calling intel_enable_ips
3341 * only after intel_enable_plane. And intel_enable_plane already waits
3342 * for a vblank, so all we need to do here is to enable the IPS bit. */
3343 assert_plane_enabled(dev_priv, crtc->plane);
3344 I915_WRITE(IPS_CTL, IPS_ENABLE);
3345}
3346
3347static void hsw_disable_ips(struct intel_crtc *crtc)
3348{
3349 struct drm_device *dev = crtc->base.dev;
3350 struct drm_i915_private *dev_priv = dev->dev_private;
3351
3352 if (!crtc->config.ips_enabled)
3353 return;
3354
3355 assert_plane_enabled(dev_priv, crtc->plane);
3356 I915_WRITE(IPS_CTL, 0);
3357 POSTING_READ(IPS_CTL);
3358
3359 /* We need to wait for a vblank before we can disable the plane. */
3360 intel_wait_for_vblank(dev, crtc->pipe);
3361}
3362
3363/** Loads the palette/gamma unit for the CRTC with the prepared values */
3364static void intel_crtc_load_lut(struct drm_crtc *crtc)
3365{
3366 struct drm_device *dev = crtc->dev;
3367 struct drm_i915_private *dev_priv = dev->dev_private;
3368 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3369 enum pipe pipe = intel_crtc->pipe;
3370 int palreg = PALETTE(pipe);
3371 int i;
3372 bool reenable_ips = false;
3373
3374 /* The clocks have to be on to load the palette. */
3375 if (!crtc->enabled || !intel_crtc->active)
3376 return;
3377
3378 if (!HAS_PCH_SPLIT(dev_priv->dev)) {
3379 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DSI))
3380 assert_dsi_pll_enabled(dev_priv);
3381 else
3382 assert_pll_enabled(dev_priv, pipe);
3383 }
3384
3385 /* use legacy palette for Ironlake */
3386 if (HAS_PCH_SPLIT(dev))
3387 palreg = LGC_PALETTE(pipe);
3388
3389 /* Workaround : Do not read or write the pipe palette/gamma data while
3390 * GAMMA_MODE is configured for split gamma and IPS_CTL has IPS enabled.
3391 */
3392 if (intel_crtc->config.ips_enabled &&
3393 ((I915_READ(GAMMA_MODE(pipe)) & GAMMA_MODE_MODE_MASK) ==
3394 GAMMA_MODE_MODE_SPLIT)) {
3395 hsw_disable_ips(intel_crtc);
3396 reenable_ips = true;
3397 }
3398
3399 for (i = 0; i < 256; i++) {
3400 I915_WRITE(palreg + 4 * i,
3401 (intel_crtc->lut_r[i] << 16) |
3402 (intel_crtc->lut_g[i] << 8) |
3403 intel_crtc->lut_b[i]);
3404 }
3405
3406 if (reenable_ips)
3407 hsw_enable_ips(intel_crtc);
3408}
3409
Jesse Barnesf67a5592011-01-05 10:31:48 -08003410static void ironlake_crtc_enable(struct drm_crtc *crtc)
3411{
3412 struct drm_device *dev = crtc->dev;
3413 struct drm_i915_private *dev_priv = dev->dev_private;
3414 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02003415 struct intel_encoder *encoder;
Jesse Barnesf67a5592011-01-05 10:31:48 -08003416 int pipe = intel_crtc->pipe;
3417 int plane = intel_crtc->plane;
Jesse Barnesf67a5592011-01-05 10:31:48 -08003418
Daniel Vetter08a48462012-07-02 11:43:47 +02003419 WARN_ON(!crtc->enabled);
3420
Jesse Barnesf67a5592011-01-05 10:31:48 -08003421 if (intel_crtc->active)
3422 return;
3423
3424 intel_crtc->active = true;
Paulo Zanoni86642812013-04-12 17:57:57 -03003425
3426 intel_set_cpu_fifo_underrun_reporting(dev, pipe, true);
3427 intel_set_pch_fifo_underrun_reporting(dev, pipe, true);
3428
Daniel Vetterf6736a12013-06-05 13:34:30 +02003429 for_each_encoder_on_crtc(dev, crtc, encoder)
Daniel Vetter952735e2013-06-05 13:34:27 +02003430 if (encoder->pre_enable)
3431 encoder->pre_enable(encoder);
Jesse Barnesf67a5592011-01-05 10:31:48 -08003432
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01003433 if (intel_crtc->config.has_pch_encoder) {
Daniel Vetterfff367c2012-10-27 15:50:28 +02003434 /* Note: FDI PLL enabling _must_ be done before we enable the
3435 * cpu pipes, hence this is separate from all the other fdi/pch
3436 * enabling. */
Daniel Vetter88cefb62012-08-12 19:27:14 +02003437 ironlake_fdi_pll_enable(intel_crtc);
Daniel Vetter46b6f812012-09-06 22:08:33 +02003438 } else {
3439 assert_fdi_tx_disabled(dev_priv, pipe);
3440 assert_fdi_rx_disabled(dev_priv, pipe);
3441 }
Jesse Barnesf67a5592011-01-05 10:31:48 -08003442
Jesse Barnesb074cec2013-04-25 12:55:02 -07003443 ironlake_pfit_enable(intel_crtc);
Jesse Barnesf67a5592011-01-05 10:31:48 -08003444
Jesse Barnes9c54c0d2011-06-15 23:32:33 +02003445 /*
3446 * On ILK+ LUT must be loaded before the pipe is running but with
3447 * clocks enabled
3448 */
3449 intel_crtc_load_lut(crtc);
3450
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03003451 intel_update_watermarks(crtc);
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01003452 intel_enable_pipe(dev_priv, pipe,
Jani Nikula23538ef2013-08-27 15:12:22 +03003453 intel_crtc->config.has_pch_encoder, false);
Jesse Barnesf67a5592011-01-05 10:31:48 -08003454 intel_enable_plane(dev_priv, plane, pipe);
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03003455 intel_enable_planes(crtc);
Ville Syrjälä5c38d482013-06-04 13:49:00 +03003456 intel_crtc_update_cursor(crtc, true);
Jesse Barnesf67a5592011-01-05 10:31:48 -08003457
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01003458 if (intel_crtc->config.has_pch_encoder)
Jesse Barnesf67a5592011-01-05 10:31:48 -08003459 ironlake_pch_enable(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003460
Ben Widawskyd1ebd8162011-04-25 20:11:50 +01003461 mutex_lock(&dev->struct_mutex);
Chris Wilsonbed4a672010-09-11 10:47:47 +01003462 intel_update_fbc(dev);
Ben Widawskyd1ebd8162011-04-25 20:11:50 +01003463 mutex_unlock(&dev->struct_mutex);
3464
Daniel Vetterfa5c73b2012-07-01 23:24:36 +02003465 for_each_encoder_on_crtc(dev, crtc, encoder)
3466 encoder->enable(encoder);
Daniel Vetter61b77dd2012-07-02 00:16:19 +02003467
3468 if (HAS_PCH_CPT(dev))
Daniel Vettera1520312013-05-03 11:49:50 +02003469 cpt_verify_modeset(dev, intel_crtc->pipe);
Daniel Vetter6ce94102012-10-04 19:20:03 +02003470
3471 /*
3472 * There seems to be a race in PCH platform hw (at least on some
3473 * outputs) where an enabled pipe still completes any pageflip right
3474 * away (as if the pipe is off) instead of waiting for vblank. As soon
3475 * as the first vblank happend, everything works as expected. Hence just
3476 * wait for one vblank before returning to avoid strange things
3477 * happening.
3478 */
3479 intel_wait_for_vblank(dev, intel_crtc->pipe);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003480}
3481
Paulo Zanoni42db64e2013-05-31 16:33:22 -03003482/* IPS only exists on ULT machines and is tied to pipe A. */
3483static bool hsw_crtc_supports_ips(struct intel_crtc *crtc)
3484{
Damien Lespiauf5adf942013-06-24 18:29:34 +01003485 return HAS_IPS(crtc->base.dev) && crtc->pipe == PIPE_A;
Paulo Zanoni42db64e2013-05-31 16:33:22 -03003486}
3487
Ville Syrjälädda9a662013-09-19 17:00:37 -03003488static void haswell_crtc_enable_planes(struct drm_crtc *crtc)
3489{
3490 struct drm_device *dev = crtc->dev;
3491 struct drm_i915_private *dev_priv = dev->dev_private;
3492 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3493 int pipe = intel_crtc->pipe;
3494 int plane = intel_crtc->plane;
3495
3496 intel_enable_plane(dev_priv, plane, pipe);
3497 intel_enable_planes(crtc);
3498 intel_crtc_update_cursor(crtc, true);
3499
3500 hsw_enable_ips(intel_crtc);
3501
3502 mutex_lock(&dev->struct_mutex);
3503 intel_update_fbc(dev);
3504 mutex_unlock(&dev->struct_mutex);
3505}
3506
3507static void haswell_crtc_disable_planes(struct drm_crtc *crtc)
3508{
3509 struct drm_device *dev = crtc->dev;
3510 struct drm_i915_private *dev_priv = dev->dev_private;
3511 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3512 int pipe = intel_crtc->pipe;
3513 int plane = intel_crtc->plane;
3514
3515 intel_crtc_wait_for_pending_flips(crtc);
3516 drm_vblank_off(dev, pipe);
3517
3518 /* FBC must be disabled before disabling the plane on HSW. */
3519 if (dev_priv->fbc.plane == plane)
3520 intel_disable_fbc(dev);
3521
3522 hsw_disable_ips(intel_crtc);
3523
3524 intel_crtc_update_cursor(crtc, false);
3525 intel_disable_planes(crtc);
3526 intel_disable_plane(dev_priv, plane, pipe);
3527}
3528
Paulo Zanonie4916942013-09-20 16:21:19 -03003529/*
3530 * This implements the workaround described in the "notes" section of the mode
3531 * set sequence documentation. When going from no pipes or single pipe to
3532 * multiple pipes, and planes are enabled after the pipe, we need to wait at
3533 * least 2 vblanks on the first pipe before enabling planes on the second pipe.
3534 */
3535static void haswell_mode_set_planes_workaround(struct intel_crtc *crtc)
3536{
3537 struct drm_device *dev = crtc->base.dev;
3538 struct intel_crtc *crtc_it, *other_active_crtc = NULL;
3539
3540 /* We want to get the other_active_crtc only if there's only 1 other
3541 * active crtc. */
3542 list_for_each_entry(crtc_it, &dev->mode_config.crtc_list, base.head) {
3543 if (!crtc_it->active || crtc_it == crtc)
3544 continue;
3545
3546 if (other_active_crtc)
3547 return;
3548
3549 other_active_crtc = crtc_it;
3550 }
3551 if (!other_active_crtc)
3552 return;
3553
3554 intel_wait_for_vblank(dev, other_active_crtc->pipe);
3555 intel_wait_for_vblank(dev, other_active_crtc->pipe);
3556}
3557
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003558static void haswell_crtc_enable(struct drm_crtc *crtc)
3559{
3560 struct drm_device *dev = crtc->dev;
3561 struct drm_i915_private *dev_priv = dev->dev_private;
3562 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3563 struct intel_encoder *encoder;
3564 int pipe = intel_crtc->pipe;
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003565
3566 WARN_ON(!crtc->enabled);
3567
3568 if (intel_crtc->active)
3569 return;
3570
3571 intel_crtc->active = true;
Paulo Zanoni86642812013-04-12 17:57:57 -03003572
3573 intel_set_cpu_fifo_underrun_reporting(dev, pipe, true);
3574 if (intel_crtc->config.has_pch_encoder)
3575 intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_A, true);
3576
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01003577 if (intel_crtc->config.has_pch_encoder)
Paulo Zanoni04945642012-11-01 21:00:59 -02003578 dev_priv->display.fdi_link_train(crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003579
3580 for_each_encoder_on_crtc(dev, crtc, encoder)
3581 if (encoder->pre_enable)
3582 encoder->pre_enable(encoder);
3583
Paulo Zanoni1f544382012-10-24 11:32:00 -02003584 intel_ddi_enable_pipe_clock(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003585
Jesse Barnesb074cec2013-04-25 12:55:02 -07003586 ironlake_pfit_enable(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003587
3588 /*
3589 * On ILK+ LUT must be loaded before the pipe is running but with
3590 * clocks enabled
3591 */
3592 intel_crtc_load_lut(crtc);
3593
Paulo Zanoni1f544382012-10-24 11:32:00 -02003594 intel_ddi_set_pipe_settings(crtc);
Damien Lespiau8228c252013-03-07 15:30:27 +00003595 intel_ddi_enable_transcoder_func(crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003596
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03003597 intel_update_watermarks(crtc);
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01003598 intel_enable_pipe(dev_priv, pipe,
Jani Nikula23538ef2013-08-27 15:12:22 +03003599 intel_crtc->config.has_pch_encoder, false);
Paulo Zanoni42db64e2013-05-31 16:33:22 -03003600
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01003601 if (intel_crtc->config.has_pch_encoder)
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003602 lpt_pch_enable(crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003603
Jani Nikula8807e552013-08-30 19:40:32 +03003604 for_each_encoder_on_crtc(dev, crtc, encoder) {
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003605 encoder->enable(encoder);
Jani Nikula8807e552013-08-30 19:40:32 +03003606 intel_opregion_notify_encoder(encoder, true);
3607 }
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003608
Paulo Zanonie4916942013-09-20 16:21:19 -03003609 /* If we change the relative order between pipe/planes enabling, we need
3610 * to change the workaround. */
3611 haswell_mode_set_planes_workaround(intel_crtc);
Ville Syrjälädda9a662013-09-19 17:00:37 -03003612 haswell_crtc_enable_planes(crtc);
3613
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003614 /*
3615 * There seems to be a race in PCH platform hw (at least on some
3616 * outputs) where an enabled pipe still completes any pageflip right
3617 * away (as if the pipe is off) instead of waiting for vblank. As soon
3618 * as the first vblank happend, everything works as expected. Hence just
3619 * wait for one vblank before returning to avoid strange things
3620 * happening.
3621 */
3622 intel_wait_for_vblank(dev, intel_crtc->pipe);
3623}
3624
Daniel Vetter3f8dce32013-05-08 10:36:30 +02003625static void ironlake_pfit_disable(struct intel_crtc *crtc)
3626{
3627 struct drm_device *dev = crtc->base.dev;
3628 struct drm_i915_private *dev_priv = dev->dev_private;
3629 int pipe = crtc->pipe;
3630
3631 /* To avoid upsetting the power well on haswell only disable the pfit if
3632 * it's in use. The hw state code will make sure we get this right. */
Chris Wilsonfd4daa92013-08-27 17:04:17 +01003633 if (crtc->config.pch_pfit.enabled) {
Daniel Vetter3f8dce32013-05-08 10:36:30 +02003634 I915_WRITE(PF_CTL(pipe), 0);
3635 I915_WRITE(PF_WIN_POS(pipe), 0);
3636 I915_WRITE(PF_WIN_SZ(pipe), 0);
3637 }
3638}
3639
Jesse Barnes6be4a602010-09-10 10:26:01 -07003640static void ironlake_crtc_disable(struct drm_crtc *crtc)
3641{
3642 struct drm_device *dev = crtc->dev;
3643 struct drm_i915_private *dev_priv = dev->dev_private;
3644 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02003645 struct intel_encoder *encoder;
Jesse Barnes6be4a602010-09-10 10:26:01 -07003646 int pipe = intel_crtc->pipe;
3647 int plane = intel_crtc->plane;
Chris Wilson5eddb702010-09-11 13:48:45 +01003648 u32 reg, temp;
Jesse Barnes6be4a602010-09-10 10:26:01 -07003649
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02003650
Chris Wilsonf7abfe82010-09-13 14:19:16 +01003651 if (!intel_crtc->active)
3652 return;
3653
Daniel Vetterea9d7582012-07-10 10:42:52 +02003654 for_each_encoder_on_crtc(dev, crtc, encoder)
3655 encoder->disable(encoder);
3656
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01003657 intel_crtc_wait_for_pending_flips(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003658 drm_vblank_off(dev, pipe);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003659
Ben Widawsky5c3fe8b2013-06-27 16:30:21 -07003660 if (dev_priv->fbc.plane == plane)
Chris Wilson973d04f2011-07-08 12:22:37 +01003661 intel_disable_fbc(dev);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003662
Ville Syrjälä0d5b8c62013-06-04 13:49:02 +03003663 intel_crtc_update_cursor(crtc, false);
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03003664 intel_disable_planes(crtc);
Ville Syrjälä0d5b8c62013-06-04 13:49:02 +03003665 intel_disable_plane(dev_priv, plane, pipe);
3666
Daniel Vetterd925c592013-06-05 13:34:04 +02003667 if (intel_crtc->config.has_pch_encoder)
3668 intel_set_pch_fifo_underrun_reporting(dev, pipe, false);
3669
Jesse Barnesb24e7172011-01-04 15:09:30 -08003670 intel_disable_pipe(dev_priv, pipe);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003671
Daniel Vetter3f8dce32013-05-08 10:36:30 +02003672 ironlake_pfit_disable(intel_crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003673
Daniel Vetterbf49ec82012-09-06 22:15:40 +02003674 for_each_encoder_on_crtc(dev, crtc, encoder)
3675 if (encoder->post_disable)
3676 encoder->post_disable(encoder);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003677
Daniel Vetterd925c592013-06-05 13:34:04 +02003678 if (intel_crtc->config.has_pch_encoder) {
3679 ironlake_fdi_disable(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003680
Daniel Vetterd925c592013-06-05 13:34:04 +02003681 ironlake_disable_pch_transcoder(dev_priv, pipe);
3682 intel_set_pch_fifo_underrun_reporting(dev, pipe, true);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003683
Daniel Vetterd925c592013-06-05 13:34:04 +02003684 if (HAS_PCH_CPT(dev)) {
3685 /* disable TRANS_DP_CTL */
3686 reg = TRANS_DP_CTL(pipe);
3687 temp = I915_READ(reg);
3688 temp &= ~(TRANS_DP_OUTPUT_ENABLE |
3689 TRANS_DP_PORT_SEL_MASK);
3690 temp |= TRANS_DP_PORT_SEL_NONE;
3691 I915_WRITE(reg, temp);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003692
Daniel Vetterd925c592013-06-05 13:34:04 +02003693 /* disable DPLL_SEL */
3694 temp = I915_READ(PCH_DPLL_SEL);
Daniel Vetter11887392013-06-05 13:34:09 +02003695 temp &= ~(TRANS_DPLL_ENABLE(pipe) | TRANS_DPLLB_SEL(pipe));
Daniel Vetterd925c592013-06-05 13:34:04 +02003696 I915_WRITE(PCH_DPLL_SEL, temp);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08003697 }
Daniel Vetterd925c592013-06-05 13:34:04 +02003698
3699 /* disable PCH DPLL */
Daniel Vettere72f9fb2013-06-05 13:34:06 +02003700 intel_disable_shared_dpll(intel_crtc);
Daniel Vetterd925c592013-06-05 13:34:04 +02003701
3702 ironlake_fdi_pll_disable(intel_crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003703 }
3704
Chris Wilsonf7abfe82010-09-13 14:19:16 +01003705 intel_crtc->active = false;
Ville Syrjälä46ba6142013-09-10 11:40:40 +03003706 intel_update_watermarks(crtc);
Ben Widawskyd1ebd8162011-04-25 20:11:50 +01003707
3708 mutex_lock(&dev->struct_mutex);
Chris Wilson6b383a72010-09-13 13:54:26 +01003709 intel_update_fbc(dev);
Ben Widawskyd1ebd8162011-04-25 20:11:50 +01003710 mutex_unlock(&dev->struct_mutex);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003711}
3712
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003713static void haswell_crtc_disable(struct drm_crtc *crtc)
3714{
3715 struct drm_device *dev = crtc->dev;
3716 struct drm_i915_private *dev_priv = dev->dev_private;
3717 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3718 struct intel_encoder *encoder;
3719 int pipe = intel_crtc->pipe;
Daniel Vetter3b117c82013-04-17 20:15:07 +02003720 enum transcoder cpu_transcoder = intel_crtc->config.cpu_transcoder;
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003721
3722 if (!intel_crtc->active)
3723 return;
3724
Ville Syrjälädda9a662013-09-19 17:00:37 -03003725 haswell_crtc_disable_planes(crtc);
3726
Jani Nikula8807e552013-08-30 19:40:32 +03003727 for_each_encoder_on_crtc(dev, crtc, encoder) {
3728 intel_opregion_notify_encoder(encoder, false);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003729 encoder->disable(encoder);
Jani Nikula8807e552013-08-30 19:40:32 +03003730 }
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003731
Paulo Zanoni86642812013-04-12 17:57:57 -03003732 if (intel_crtc->config.has_pch_encoder)
3733 intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_A, false);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003734 intel_disable_pipe(dev_priv, pipe);
3735
Paulo Zanoniad80a812012-10-24 16:06:19 -02003736 intel_ddi_disable_transcoder_func(dev_priv, cpu_transcoder);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003737
Daniel Vetter3f8dce32013-05-08 10:36:30 +02003738 ironlake_pfit_disable(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003739
Paulo Zanoni1f544382012-10-24 11:32:00 -02003740 intel_ddi_disable_pipe_clock(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003741
3742 for_each_encoder_on_crtc(dev, crtc, encoder)
3743 if (encoder->post_disable)
3744 encoder->post_disable(encoder);
3745
Daniel Vetter88adfff2013-03-28 10:42:01 +01003746 if (intel_crtc->config.has_pch_encoder) {
Paulo Zanoniab4d9662012-10-31 18:12:55 -02003747 lpt_disable_pch_transcoder(dev_priv);
Paulo Zanoni86642812013-04-12 17:57:57 -03003748 intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_A, true);
Paulo Zanoni1ad960f2012-11-01 21:05:05 -02003749 intel_ddi_fdi_disable(crtc);
Paulo Zanoni83616632012-10-23 18:29:54 -02003750 }
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003751
3752 intel_crtc->active = false;
Ville Syrjälä46ba6142013-09-10 11:40:40 +03003753 intel_update_watermarks(crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003754
3755 mutex_lock(&dev->struct_mutex);
3756 intel_update_fbc(dev);
3757 mutex_unlock(&dev->struct_mutex);
3758}
3759
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003760static void ironlake_crtc_off(struct drm_crtc *crtc)
3761{
3762 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vettere72f9fb2013-06-05 13:34:06 +02003763 intel_put_shared_dpll(intel_crtc);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003764}
3765
Paulo Zanoni6441ab52012-10-05 12:05:58 -03003766static void haswell_crtc_off(struct drm_crtc *crtc)
3767{
3768 intel_ddi_put_crtc_pll(crtc);
3769}
3770
Daniel Vetter02e792f2009-09-15 22:57:34 +02003771static void intel_crtc_dpms_overlay(struct intel_crtc *intel_crtc, bool enable)
3772{
Daniel Vetter02e792f2009-09-15 22:57:34 +02003773 if (!enable && intel_crtc->overlay) {
Chris Wilson23f09ce2010-08-12 13:53:37 +01003774 struct drm_device *dev = intel_crtc->base.dev;
Chris Wilsonce453d82011-02-21 14:43:56 +00003775 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter03f77ea2009-09-15 22:57:37 +02003776
Chris Wilson23f09ce2010-08-12 13:53:37 +01003777 mutex_lock(&dev->struct_mutex);
Chris Wilsonce453d82011-02-21 14:43:56 +00003778 dev_priv->mm.interruptible = false;
3779 (void) intel_overlay_switch_off(intel_crtc->overlay);
3780 dev_priv->mm.interruptible = true;
Chris Wilson23f09ce2010-08-12 13:53:37 +01003781 mutex_unlock(&dev->struct_mutex);
Daniel Vetter02e792f2009-09-15 22:57:34 +02003782 }
Daniel Vetter02e792f2009-09-15 22:57:34 +02003783
Chris Wilson5dcdbcb2010-08-12 13:50:28 +01003784 /* Let userspace switch the overlay on again. In most cases userspace
3785 * has to recompute where to put it anyway.
3786 */
Daniel Vetter02e792f2009-09-15 22:57:34 +02003787}
3788
Egbert Eich61bc95c2013-03-04 09:24:38 -05003789/**
3790 * i9xx_fixup_plane - ugly workaround for G45 to fire up the hardware
3791 * cursor plane briefly if not already running after enabling the display
3792 * plane.
3793 * This workaround avoids occasional blank screens when self refresh is
3794 * enabled.
3795 */
3796static void
3797g4x_fixup_plane(struct drm_i915_private *dev_priv, enum pipe pipe)
3798{
3799 u32 cntl = I915_READ(CURCNTR(pipe));
3800
3801 if ((cntl & CURSOR_MODE) == 0) {
3802 u32 fw_bcl_self = I915_READ(FW_BLC_SELF);
3803
3804 I915_WRITE(FW_BLC_SELF, fw_bcl_self & ~FW_BLC_SELF_EN);
3805 I915_WRITE(CURCNTR(pipe), CURSOR_MODE_64_ARGB_AX);
3806 intel_wait_for_vblank(dev_priv->dev, pipe);
3807 I915_WRITE(CURCNTR(pipe), cntl);
3808 I915_WRITE(CURBASE(pipe), I915_READ(CURBASE(pipe)));
3809 I915_WRITE(FW_BLC_SELF, fw_bcl_self);
3810 }
3811}
3812
Jesse Barnes2dd24552013-04-25 12:55:01 -07003813static void i9xx_pfit_enable(struct intel_crtc *crtc)
3814{
3815 struct drm_device *dev = crtc->base.dev;
3816 struct drm_i915_private *dev_priv = dev->dev_private;
3817 struct intel_crtc_config *pipe_config = &crtc->config;
3818
Daniel Vetter328d8e82013-05-08 10:36:31 +02003819 if (!crtc->config.gmch_pfit.control)
Jesse Barnes2dd24552013-04-25 12:55:01 -07003820 return;
3821
Daniel Vetterc0b03412013-05-28 12:05:54 +02003822 /*
3823 * The panel fitter should only be adjusted whilst the pipe is disabled,
3824 * according to register description and PRM.
3825 */
Jesse Barnes2dd24552013-04-25 12:55:01 -07003826 WARN_ON(I915_READ(PFIT_CONTROL) & PFIT_ENABLE);
3827 assert_pipe_disabled(dev_priv, crtc->pipe);
3828
Jesse Barnesb074cec2013-04-25 12:55:02 -07003829 I915_WRITE(PFIT_PGM_RATIOS, pipe_config->gmch_pfit.pgm_ratios);
3830 I915_WRITE(PFIT_CONTROL, pipe_config->gmch_pfit.control);
Daniel Vetter5a80c452013-04-25 22:52:18 +02003831
3832 /* Border color in case we don't scale up to the full screen. Black by
3833 * default, change to something else for debugging. */
3834 I915_WRITE(BCLRPAT(crtc->pipe), 0);
Jesse Barnes2dd24552013-04-25 12:55:01 -07003835}
3836
Jesse Barnes89b667f2013-04-18 14:51:36 -07003837static void valleyview_crtc_enable(struct drm_crtc *crtc)
3838{
3839 struct drm_device *dev = crtc->dev;
3840 struct drm_i915_private *dev_priv = dev->dev_private;
3841 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3842 struct intel_encoder *encoder;
3843 int pipe = intel_crtc->pipe;
3844 int plane = intel_crtc->plane;
Jani Nikula23538ef2013-08-27 15:12:22 +03003845 bool is_dsi;
Jesse Barnes89b667f2013-04-18 14:51:36 -07003846
3847 WARN_ON(!crtc->enabled);
3848
3849 if (intel_crtc->active)
3850 return;
3851
3852 intel_crtc->active = true;
Jesse Barnes89b667f2013-04-18 14:51:36 -07003853
Jesse Barnes89b667f2013-04-18 14:51:36 -07003854 for_each_encoder_on_crtc(dev, crtc, encoder)
3855 if (encoder->pre_pll_enable)
3856 encoder->pre_pll_enable(encoder);
3857
Jani Nikula23538ef2013-08-27 15:12:22 +03003858 is_dsi = intel_pipe_has_type(crtc, INTEL_OUTPUT_DSI);
3859
Jani Nikulae9fd1c02013-08-27 15:12:23 +03003860 if (!is_dsi)
3861 vlv_enable_pll(intel_crtc);
Jesse Barnes89b667f2013-04-18 14:51:36 -07003862
3863 for_each_encoder_on_crtc(dev, crtc, encoder)
3864 if (encoder->pre_enable)
3865 encoder->pre_enable(encoder);
3866
Jesse Barnes2dd24552013-04-25 12:55:01 -07003867 i9xx_pfit_enable(intel_crtc);
3868
Ville Syrjälä63cbb072013-06-04 13:48:59 +03003869 intel_crtc_load_lut(crtc);
3870
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03003871 intel_update_watermarks(crtc);
Jani Nikula23538ef2013-08-27 15:12:22 +03003872 intel_enable_pipe(dev_priv, pipe, false, is_dsi);
Jesse Barnes89b667f2013-04-18 14:51:36 -07003873 intel_enable_plane(dev_priv, plane, pipe);
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03003874 intel_enable_planes(crtc);
Jesse Barnes89b667f2013-04-18 14:51:36 -07003875 intel_crtc_update_cursor(crtc, true);
3876
Ville Syrjäläf440eb12013-06-04 13:49:01 +03003877 intel_update_fbc(dev);
Jani Nikula50049452013-07-30 12:20:32 +03003878
3879 for_each_encoder_on_crtc(dev, crtc, encoder)
3880 encoder->enable(encoder);
Jesse Barnes89b667f2013-04-18 14:51:36 -07003881}
3882
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003883static void i9xx_crtc_enable(struct drm_crtc *crtc)
Zhenyu Wang2c072452009-06-05 15:38:42 +08003884{
3885 struct drm_device *dev = crtc->dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08003886 struct drm_i915_private *dev_priv = dev->dev_private;
3887 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02003888 struct intel_encoder *encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08003889 int pipe = intel_crtc->pipe;
Jesse Barnes80824002009-09-10 15:28:06 -07003890 int plane = intel_crtc->plane;
Jesse Barnes79e53942008-11-07 14:24:08 -08003891
Daniel Vetter08a48462012-07-02 11:43:47 +02003892 WARN_ON(!crtc->enabled);
3893
Chris Wilsonf7abfe82010-09-13 14:19:16 +01003894 if (intel_crtc->active)
3895 return;
3896
3897 intel_crtc->active = true;
Chris Wilson6b383a72010-09-13 13:54:26 +01003898
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02003899 for_each_encoder_on_crtc(dev, crtc, encoder)
Mika Kuoppala9d6d9f12013-02-08 16:35:38 +02003900 if (encoder->pre_enable)
3901 encoder->pre_enable(encoder);
3902
Daniel Vetterf6736a12013-06-05 13:34:30 +02003903 i9xx_enable_pll(intel_crtc);
3904
Jesse Barnes2dd24552013-04-25 12:55:01 -07003905 i9xx_pfit_enable(intel_crtc);
3906
Ville Syrjälä63cbb072013-06-04 13:48:59 +03003907 intel_crtc_load_lut(crtc);
3908
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03003909 intel_update_watermarks(crtc);
Jani Nikula23538ef2013-08-27 15:12:22 +03003910 intel_enable_pipe(dev_priv, pipe, false, false);
Jesse Barnesb24e7172011-01-04 15:09:30 -08003911 intel_enable_plane(dev_priv, plane, pipe);
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03003912 intel_enable_planes(crtc);
Ville Syrjälä22e407d2013-06-07 18:52:24 +03003913 /* The fixup needs to happen before cursor is enabled */
Egbert Eich61bc95c2013-03-04 09:24:38 -05003914 if (IS_G4X(dev))
3915 g4x_fixup_plane(dev_priv, pipe);
Ville Syrjälä22e407d2013-06-07 18:52:24 +03003916 intel_crtc_update_cursor(crtc, true);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003917
3918 /* Give the overlay scaler a chance to enable if it's on this pipe */
3919 intel_crtc_dpms_overlay(intel_crtc, true);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02003920
Ville Syrjäläf440eb12013-06-04 13:49:01 +03003921 intel_update_fbc(dev);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02003922
Daniel Vetterfa5c73b2012-07-01 23:24:36 +02003923 for_each_encoder_on_crtc(dev, crtc, encoder)
3924 encoder->enable(encoder);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003925}
3926
Daniel Vetter87476d62013-04-11 16:29:06 +02003927static void i9xx_pfit_disable(struct intel_crtc *crtc)
3928{
3929 struct drm_device *dev = crtc->base.dev;
3930 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter328d8e82013-05-08 10:36:31 +02003931
3932 if (!crtc->config.gmch_pfit.control)
3933 return;
Daniel Vetter87476d62013-04-11 16:29:06 +02003934
3935 assert_pipe_disabled(dev_priv, crtc->pipe);
3936
Daniel Vetter328d8e82013-05-08 10:36:31 +02003937 DRM_DEBUG_DRIVER("disabling pfit, current: 0x%08x\n",
3938 I915_READ(PFIT_CONTROL));
3939 I915_WRITE(PFIT_CONTROL, 0);
Daniel Vetter87476d62013-04-11 16:29:06 +02003940}
3941
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003942static void i9xx_crtc_disable(struct drm_crtc *crtc)
3943{
3944 struct drm_device *dev = crtc->dev;
3945 struct drm_i915_private *dev_priv = dev->dev_private;
3946 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02003947 struct intel_encoder *encoder;
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003948 int pipe = intel_crtc->pipe;
3949 int plane = intel_crtc->plane;
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02003950
Chris Wilsonf7abfe82010-09-13 14:19:16 +01003951 if (!intel_crtc->active)
3952 return;
3953
Daniel Vetterea9d7582012-07-10 10:42:52 +02003954 for_each_encoder_on_crtc(dev, crtc, encoder)
3955 encoder->disable(encoder);
3956
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003957 /* Give the overlay scaler a chance to disable if it's on this pipe */
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01003958 intel_crtc_wait_for_pending_flips(crtc);
3959 drm_vblank_off(dev, pipe);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003960
Ben Widawsky5c3fe8b2013-06-27 16:30:21 -07003961 if (dev_priv->fbc.plane == plane)
Chris Wilson973d04f2011-07-08 12:22:37 +01003962 intel_disable_fbc(dev);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003963
Ville Syrjälä0d5b8c62013-06-04 13:49:02 +03003964 intel_crtc_dpms_overlay(intel_crtc, false);
3965 intel_crtc_update_cursor(crtc, false);
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03003966 intel_disable_planes(crtc);
Jesse Barnesb24e7172011-01-04 15:09:30 -08003967 intel_disable_plane(dev_priv, plane, pipe);
Ville Syrjälä0d5b8c62013-06-04 13:49:02 +03003968
Jesse Barnesb24e7172011-01-04 15:09:30 -08003969 intel_disable_pipe(dev_priv, pipe);
Mika Kuoppala24a1f162013-02-08 16:35:37 +02003970
Daniel Vetter87476d62013-04-11 16:29:06 +02003971 i9xx_pfit_disable(intel_crtc);
Mika Kuoppala24a1f162013-02-08 16:35:37 +02003972
Jesse Barnes89b667f2013-04-18 14:51:36 -07003973 for_each_encoder_on_crtc(dev, crtc, encoder)
3974 if (encoder->post_disable)
3975 encoder->post_disable(encoder);
3976
Jesse Barnesf6071162013-10-01 10:41:38 -07003977 if (IS_VALLEYVIEW(dev) && !intel_pipe_has_type(crtc, INTEL_OUTPUT_DSI))
3978 vlv_disable_pll(dev_priv, pipe);
3979 else if (!IS_VALLEYVIEW(dev))
Jani Nikulae9fd1c02013-08-27 15:12:23 +03003980 i9xx_disable_pll(dev_priv, pipe);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003981
Chris Wilsonf7abfe82010-09-13 14:19:16 +01003982 intel_crtc->active = false;
Ville Syrjälä46ba6142013-09-10 11:40:40 +03003983 intel_update_watermarks(crtc);
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03003984
Chris Wilson6b383a72010-09-13 13:54:26 +01003985 intel_update_fbc(dev);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003986}
3987
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003988static void i9xx_crtc_off(struct drm_crtc *crtc)
3989{
3990}
3991
Daniel Vetter976f8a22012-07-08 22:34:21 +02003992static void intel_crtc_update_sarea(struct drm_crtc *crtc,
3993 bool enabled)
Zhenyu Wang2c072452009-06-05 15:38:42 +08003994{
3995 struct drm_device *dev = crtc->dev;
3996 struct drm_i915_master_private *master_priv;
3997 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3998 int pipe = intel_crtc->pipe;
Jesse Barnes79e53942008-11-07 14:24:08 -08003999
4000 if (!dev->primary->master)
4001 return;
4002
4003 master_priv = dev->primary->master->driver_priv;
4004 if (!master_priv->sarea_priv)
4005 return;
4006
Jesse Barnes79e53942008-11-07 14:24:08 -08004007 switch (pipe) {
4008 case 0:
4009 master_priv->sarea_priv->pipeA_w = enabled ? crtc->mode.hdisplay : 0;
4010 master_priv->sarea_priv->pipeA_h = enabled ? crtc->mode.vdisplay : 0;
4011 break;
4012 case 1:
4013 master_priv->sarea_priv->pipeB_w = enabled ? crtc->mode.hdisplay : 0;
4014 master_priv->sarea_priv->pipeB_h = enabled ? crtc->mode.vdisplay : 0;
4015 break;
4016 default:
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08004017 DRM_ERROR("Can't update pipe %c in SAREA\n", pipe_name(pipe));
Jesse Barnes79e53942008-11-07 14:24:08 -08004018 break;
4019 }
Jesse Barnes79e53942008-11-07 14:24:08 -08004020}
4021
Daniel Vetter976f8a22012-07-08 22:34:21 +02004022/**
4023 * Sets the power management mode of the pipe and plane.
4024 */
4025void intel_crtc_update_dpms(struct drm_crtc *crtc)
Chris Wilsoncdd59982010-09-08 16:30:16 +01004026{
Chris Wilsoncdd59982010-09-08 16:30:16 +01004027 struct drm_device *dev = crtc->dev;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004028 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter976f8a22012-07-08 22:34:21 +02004029 struct intel_encoder *intel_encoder;
4030 bool enable = false;
Chris Wilsoncdd59982010-09-08 16:30:16 +01004031
Daniel Vetter976f8a22012-07-08 22:34:21 +02004032 for_each_encoder_on_crtc(dev, crtc, intel_encoder)
4033 enable |= intel_encoder->connectors_active;
4034
4035 if (enable)
4036 dev_priv->display.crtc_enable(crtc);
4037 else
4038 dev_priv->display.crtc_disable(crtc);
4039
4040 intel_crtc_update_sarea(crtc, enable);
4041}
4042
Daniel Vetter976f8a22012-07-08 22:34:21 +02004043static void intel_crtc_disable(struct drm_crtc *crtc)
4044{
4045 struct drm_device *dev = crtc->dev;
4046 struct drm_connector *connector;
4047 struct drm_i915_private *dev_priv = dev->dev_private;
Wang Xingchao7b9f35a2013-01-22 23:25:25 +08004048 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter976f8a22012-07-08 22:34:21 +02004049
4050 /* crtc should still be enabled when we disable it. */
4051 WARN_ON(!crtc->enabled);
4052
4053 dev_priv->display.crtc_disable(crtc);
Paulo Zanonic77bf562013-05-03 12:15:40 -03004054 intel_crtc->eld_vld = false;
Daniel Vetter976f8a22012-07-08 22:34:21 +02004055 intel_crtc_update_sarea(crtc, false);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004056 dev_priv->display.off(crtc);
4057
Chris Wilson931872f2012-01-16 23:01:13 +00004058 assert_plane_disabled(dev->dev_private, to_intel_crtc(crtc)->plane);
Jani Nikula93ce0ba2013-09-13 11:03:08 +03004059 assert_cursor_disabled(dev_priv, to_intel_crtc(crtc)->pipe);
Chris Wilson931872f2012-01-16 23:01:13 +00004060 assert_pipe_disabled(dev->dev_private, to_intel_crtc(crtc)->pipe);
Chris Wilsoncdd59982010-09-08 16:30:16 +01004061
4062 if (crtc->fb) {
4063 mutex_lock(&dev->struct_mutex);
Chris Wilson1690e1e2011-12-14 13:57:08 +01004064 intel_unpin_fb_obj(to_intel_framebuffer(crtc->fb)->obj);
Chris Wilsoncdd59982010-09-08 16:30:16 +01004065 mutex_unlock(&dev->struct_mutex);
Daniel Vetter976f8a22012-07-08 22:34:21 +02004066 crtc->fb = NULL;
4067 }
4068
4069 /* Update computed state. */
4070 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
4071 if (!connector->encoder || !connector->encoder->crtc)
4072 continue;
4073
4074 if (connector->encoder->crtc != crtc)
4075 continue;
4076
4077 connector->dpms = DRM_MODE_DPMS_OFF;
4078 to_intel_encoder(connector->encoder)->connectors_active = false;
Chris Wilsoncdd59982010-09-08 16:30:16 +01004079 }
4080}
4081
Chris Wilsonea5b2132010-08-04 13:50:23 +01004082void intel_encoder_destroy(struct drm_encoder *encoder)
4083{
Chris Wilson4ef69c72010-09-09 15:14:28 +01004084 struct intel_encoder *intel_encoder = to_intel_encoder(encoder);
Chris Wilsonea5b2132010-08-04 13:50:23 +01004085
Chris Wilsonea5b2132010-08-04 13:50:23 +01004086 drm_encoder_cleanup(encoder);
4087 kfree(intel_encoder);
4088}
4089
Damien Lespiau92373292013-08-08 22:28:57 +01004090/* Simple dpms helper for encoders with just one connector, no cloning and only
Daniel Vetter5ab432e2012-06-30 08:59:56 +02004091 * one kind of off state. It clamps all !ON modes to fully OFF and changes the
4092 * state of the entire output pipe. */
Damien Lespiau92373292013-08-08 22:28:57 +01004093static void intel_encoder_dpms(struct intel_encoder *encoder, int mode)
Daniel Vetter5ab432e2012-06-30 08:59:56 +02004094{
4095 if (mode == DRM_MODE_DPMS_ON) {
4096 encoder->connectors_active = true;
4097
Daniel Vetterb2cabb02012-07-01 22:42:24 +02004098 intel_crtc_update_dpms(encoder->base.crtc);
Daniel Vetter5ab432e2012-06-30 08:59:56 +02004099 } else {
4100 encoder->connectors_active = false;
4101
Daniel Vetterb2cabb02012-07-01 22:42:24 +02004102 intel_crtc_update_dpms(encoder->base.crtc);
Daniel Vetter5ab432e2012-06-30 08:59:56 +02004103 }
4104}
4105
Daniel Vetter0a91ca22012-07-02 21:54:27 +02004106/* Cross check the actual hw state with our own modeset state tracking (and it's
4107 * internal consistency). */
Daniel Vetterb9805142012-08-31 17:37:33 +02004108static void intel_connector_check_state(struct intel_connector *connector)
Daniel Vetter0a91ca22012-07-02 21:54:27 +02004109{
4110 if (connector->get_hw_state(connector)) {
4111 struct intel_encoder *encoder = connector->encoder;
4112 struct drm_crtc *crtc;
4113 bool encoder_enabled;
4114 enum pipe pipe;
4115
4116 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
4117 connector->base.base.id,
4118 drm_get_connector_name(&connector->base));
4119
4120 WARN(connector->base.dpms == DRM_MODE_DPMS_OFF,
4121 "wrong connector dpms state\n");
4122 WARN(connector->base.encoder != &encoder->base,
4123 "active connector not linked to encoder\n");
4124 WARN(!encoder->connectors_active,
4125 "encoder->connectors_active not set\n");
4126
4127 encoder_enabled = encoder->get_hw_state(encoder, &pipe);
4128 WARN(!encoder_enabled, "encoder not enabled\n");
4129 if (WARN_ON(!encoder->base.crtc))
4130 return;
4131
4132 crtc = encoder->base.crtc;
4133
4134 WARN(!crtc->enabled, "crtc not enabled\n");
4135 WARN(!to_intel_crtc(crtc)->active, "crtc not active\n");
4136 WARN(pipe != to_intel_crtc(crtc)->pipe,
4137 "encoder active on the wrong pipe\n");
4138 }
4139}
4140
Daniel Vetter5ab432e2012-06-30 08:59:56 +02004141/* Even simpler default implementation, if there's really no special case to
4142 * consider. */
4143void intel_connector_dpms(struct drm_connector *connector, int mode)
4144{
4145 struct intel_encoder *encoder = intel_attached_encoder(connector);
4146
4147 /* All the simple cases only support two dpms states. */
4148 if (mode != DRM_MODE_DPMS_ON)
4149 mode = DRM_MODE_DPMS_OFF;
4150
4151 if (mode == connector->dpms)
4152 return;
4153
4154 connector->dpms = mode;
4155
4156 /* Only need to change hw state when actually enabled */
4157 if (encoder->base.crtc)
4158 intel_encoder_dpms(encoder, mode);
4159 else
Daniel Vetter8af6cf82012-07-10 09:50:11 +02004160 WARN_ON(encoder->connectors_active != false);
Daniel Vetter0a91ca22012-07-02 21:54:27 +02004161
Daniel Vetterb9805142012-08-31 17:37:33 +02004162 intel_modeset_check_state(connector->dev);
Daniel Vetter5ab432e2012-06-30 08:59:56 +02004163}
4164
Daniel Vetterf0947c32012-07-02 13:10:34 +02004165/* Simple connector->get_hw_state implementation for encoders that support only
4166 * one connector and no cloning and hence the encoder state determines the state
4167 * of the connector. */
4168bool intel_connector_get_hw_state(struct intel_connector *connector)
4169{
Daniel Vetter24929352012-07-02 20:28:59 +02004170 enum pipe pipe = 0;
Daniel Vetterf0947c32012-07-02 13:10:34 +02004171 struct intel_encoder *encoder = connector->encoder;
4172
4173 return encoder->get_hw_state(encoder, &pipe);
4174}
4175
Daniel Vetter1857e1d2013-04-29 19:34:16 +02004176static bool ironlake_check_fdi_lanes(struct drm_device *dev, enum pipe pipe,
4177 struct intel_crtc_config *pipe_config)
4178{
4179 struct drm_i915_private *dev_priv = dev->dev_private;
4180 struct intel_crtc *pipe_B_crtc =
4181 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[PIPE_B]);
4182
4183 DRM_DEBUG_KMS("checking fdi config on pipe %c, lanes %i\n",
4184 pipe_name(pipe), pipe_config->fdi_lanes);
4185 if (pipe_config->fdi_lanes > 4) {
4186 DRM_DEBUG_KMS("invalid fdi lane config on pipe %c: %i lanes\n",
4187 pipe_name(pipe), pipe_config->fdi_lanes);
4188 return false;
4189 }
4190
4191 if (IS_HASWELL(dev)) {
4192 if (pipe_config->fdi_lanes > 2) {
4193 DRM_DEBUG_KMS("only 2 lanes on haswell, required: %i lanes\n",
4194 pipe_config->fdi_lanes);
4195 return false;
4196 } else {
4197 return true;
4198 }
4199 }
4200
4201 if (INTEL_INFO(dev)->num_pipes == 2)
4202 return true;
4203
4204 /* Ivybridge 3 pipe is really complicated */
4205 switch (pipe) {
4206 case PIPE_A:
4207 return true;
4208 case PIPE_B:
4209 if (dev_priv->pipe_to_crtc_mapping[PIPE_C]->enabled &&
4210 pipe_config->fdi_lanes > 2) {
4211 DRM_DEBUG_KMS("invalid shared fdi lane config on pipe %c: %i lanes\n",
4212 pipe_name(pipe), pipe_config->fdi_lanes);
4213 return false;
4214 }
4215 return true;
4216 case PIPE_C:
Daniel Vetter1e833f42013-02-19 22:31:57 +01004217 if (!pipe_has_enabled_pch(pipe_B_crtc) ||
Daniel Vetter1857e1d2013-04-29 19:34:16 +02004218 pipe_B_crtc->config.fdi_lanes <= 2) {
4219 if (pipe_config->fdi_lanes > 2) {
4220 DRM_DEBUG_KMS("invalid shared fdi lane config on pipe %c: %i lanes\n",
4221 pipe_name(pipe), pipe_config->fdi_lanes);
4222 return false;
4223 }
4224 } else {
4225 DRM_DEBUG_KMS("fdi link B uses too many lanes to enable link C\n");
4226 return false;
4227 }
4228 return true;
4229 default:
4230 BUG();
4231 }
4232}
4233
Daniel Vettere29c22c2013-02-21 00:00:16 +01004234#define RETRY 1
4235static int ironlake_fdi_compute_config(struct intel_crtc *intel_crtc,
4236 struct intel_crtc_config *pipe_config)
Daniel Vetter877d48d2013-04-19 11:24:43 +02004237{
Daniel Vetter1857e1d2013-04-29 19:34:16 +02004238 struct drm_device *dev = intel_crtc->base.dev;
Daniel Vetter877d48d2013-04-19 11:24:43 +02004239 struct drm_display_mode *adjusted_mode = &pipe_config->adjusted_mode;
Daniel Vetterff9a6752013-06-01 17:16:21 +02004240 int lane, link_bw, fdi_dotclock;
Daniel Vettere29c22c2013-02-21 00:00:16 +01004241 bool setup_ok, needs_recompute = false;
Daniel Vetter877d48d2013-04-19 11:24:43 +02004242
Daniel Vettere29c22c2013-02-21 00:00:16 +01004243retry:
Daniel Vetter877d48d2013-04-19 11:24:43 +02004244 /* FDI is a binary signal running at ~2.7GHz, encoding
4245 * each output octet as 10 bits. The actual frequency
4246 * is stored as a divider into a 100MHz clock, and the
4247 * mode pixel clock is stored in units of 1KHz.
4248 * Hence the bw of each lane in terms of the mode signal
4249 * is:
4250 */
4251 link_bw = intel_fdi_link_freq(dev) * MHz(100)/KHz(1)/10;
4252
Damien Lespiau241bfc32013-09-25 16:45:37 +01004253 fdi_dotclock = adjusted_mode->crtc_clock;
Daniel Vetter877d48d2013-04-19 11:24:43 +02004254
Daniel Vetter2bd89a02013-06-01 17:16:19 +02004255 lane = ironlake_get_lanes_required(fdi_dotclock, link_bw,
Daniel Vetter877d48d2013-04-19 11:24:43 +02004256 pipe_config->pipe_bpp);
4257
4258 pipe_config->fdi_lanes = lane;
4259
Daniel Vetter2bd89a02013-06-01 17:16:19 +02004260 intel_link_compute_m_n(pipe_config->pipe_bpp, lane, fdi_dotclock,
Daniel Vetter877d48d2013-04-19 11:24:43 +02004261 link_bw, &pipe_config->fdi_m_n);
Daniel Vetter1857e1d2013-04-29 19:34:16 +02004262
Daniel Vettere29c22c2013-02-21 00:00:16 +01004263 setup_ok = ironlake_check_fdi_lanes(intel_crtc->base.dev,
4264 intel_crtc->pipe, pipe_config);
4265 if (!setup_ok && pipe_config->pipe_bpp > 6*3) {
4266 pipe_config->pipe_bpp -= 2*3;
4267 DRM_DEBUG_KMS("fdi link bw constraint, reducing pipe bpp to %i\n",
4268 pipe_config->pipe_bpp);
4269 needs_recompute = true;
4270 pipe_config->bw_constrained = true;
4271
4272 goto retry;
4273 }
4274
4275 if (needs_recompute)
4276 return RETRY;
4277
4278 return setup_ok ? 0 : -EINVAL;
Daniel Vetter877d48d2013-04-19 11:24:43 +02004279}
4280
Paulo Zanoni42db64e2013-05-31 16:33:22 -03004281static void hsw_compute_ips_config(struct intel_crtc *crtc,
4282 struct intel_crtc_config *pipe_config)
4283{
Paulo Zanoni3c4ca582013-05-31 16:33:23 -03004284 pipe_config->ips_enabled = i915_enable_ips &&
4285 hsw_crtc_supports_ips(crtc) &&
Jesse Barnesb6dfdc92013-07-25 10:06:50 -07004286 pipe_config->pipe_bpp <= 24;
Paulo Zanoni42db64e2013-05-31 16:33:22 -03004287}
4288
Daniel Vettera43f6e02013-06-07 23:10:32 +02004289static int intel_crtc_compute_config(struct intel_crtc *crtc,
Daniel Vettere29c22c2013-02-21 00:00:16 +01004290 struct intel_crtc_config *pipe_config)
Jesse Barnes79e53942008-11-07 14:24:08 -08004291{
Daniel Vettera43f6e02013-06-07 23:10:32 +02004292 struct drm_device *dev = crtc->base.dev;
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01004293 struct drm_display_mode *adjusted_mode = &pipe_config->adjusted_mode;
Chris Wilson89749352010-09-12 18:25:19 +01004294
Ville Syrjäläad3a4472013-09-04 18:30:04 +03004295 /* FIXME should check pixel clock limits on all platforms */
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03004296 if (INTEL_INFO(dev)->gen < 4) {
4297 struct drm_i915_private *dev_priv = dev->dev_private;
4298 int clock_limit =
4299 dev_priv->display.get_display_clock_speed(dev);
4300
4301 /*
4302 * Enable pixel doubling when the dot clock
4303 * is > 90% of the (display) core speed.
4304 *
Ville Syrjäläb397c962013-09-04 18:30:06 +03004305 * GDG double wide on either pipe,
4306 * otherwise pipe A only.
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03004307 */
Ville Syrjäläb397c962013-09-04 18:30:06 +03004308 if ((crtc->pipe == PIPE_A || IS_I915G(dev)) &&
Damien Lespiau241bfc32013-09-25 16:45:37 +01004309 adjusted_mode->crtc_clock > clock_limit * 9 / 10) {
Ville Syrjäläad3a4472013-09-04 18:30:04 +03004310 clock_limit *= 2;
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03004311 pipe_config->double_wide = true;
Ville Syrjäläad3a4472013-09-04 18:30:04 +03004312 }
4313
Damien Lespiau241bfc32013-09-25 16:45:37 +01004314 if (adjusted_mode->crtc_clock > clock_limit * 9 / 10)
Daniel Vettere29c22c2013-02-21 00:00:16 +01004315 return -EINVAL;
Zhenyu Wang2c072452009-06-05 15:38:42 +08004316 }
Chris Wilson89749352010-09-12 18:25:19 +01004317
Ville Syrjälä1d1d0e22013-09-04 18:30:05 +03004318 /*
4319 * Pipe horizontal size must be even in:
4320 * - DVO ganged mode
4321 * - LVDS dual channel mode
4322 * - Double wide pipe
4323 */
4324 if ((intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_LVDS) &&
4325 intel_is_dual_link_lvds(dev)) || pipe_config->double_wide)
4326 pipe_config->pipe_src_w &= ~1;
4327
Damien Lespiau8693a822013-05-03 18:48:11 +01004328 /* Cantiga+ cannot handle modes with a hsync front porch of 0.
4329 * WaPruneModeWithIncorrectHsyncOffset:ctg,elk,ilk,snb,ivb,vlv,hsw.
Chris Wilson44f46b422012-06-21 13:19:59 +03004330 */
4331 if ((INTEL_INFO(dev)->gen > 4 || IS_G4X(dev)) &&
4332 adjusted_mode->hsync_start == adjusted_mode->hdisplay)
Daniel Vettere29c22c2013-02-21 00:00:16 +01004333 return -EINVAL;
Chris Wilson44f46b422012-06-21 13:19:59 +03004334
Daniel Vetterbd080ee2013-04-17 20:01:39 +02004335 if ((IS_G4X(dev) || IS_VALLEYVIEW(dev)) && pipe_config->pipe_bpp > 10*3) {
Daniel Vetter5d2d38d2013-03-27 00:45:01 +01004336 pipe_config->pipe_bpp = 10*3; /* 12bpc is gen5+ */
Daniel Vetterbd080ee2013-04-17 20:01:39 +02004337 } else if (INTEL_INFO(dev)->gen <= 4 && pipe_config->pipe_bpp > 8*3) {
Daniel Vetter5d2d38d2013-03-27 00:45:01 +01004338 /* only a 8bpc pipe, with 6bpc dither through the panel fitter
4339 * for lvds. */
4340 pipe_config->pipe_bpp = 8*3;
4341 }
4342
Damien Lespiauf5adf942013-06-24 18:29:34 +01004343 if (HAS_IPS(dev))
Daniel Vettera43f6e02013-06-07 23:10:32 +02004344 hsw_compute_ips_config(crtc, pipe_config);
4345
4346 /* XXX: PCH clock sharing is done in ->mode_set, so make sure the old
4347 * clock survives for now. */
4348 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev))
4349 pipe_config->shared_dpll = crtc->config.shared_dpll;
Paulo Zanoni42db64e2013-05-31 16:33:22 -03004350
Daniel Vetter877d48d2013-04-19 11:24:43 +02004351 if (pipe_config->has_pch_encoder)
Daniel Vettera43f6e02013-06-07 23:10:32 +02004352 return ironlake_fdi_compute_config(crtc, pipe_config);
Daniel Vetter877d48d2013-04-19 11:24:43 +02004353
Daniel Vettere29c22c2013-02-21 00:00:16 +01004354 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08004355}
4356
Jesse Barnes25eb05fc2012-03-28 13:39:23 -07004357static int valleyview_get_display_clock_speed(struct drm_device *dev)
4358{
4359 return 400000; /* FIXME */
4360}
4361
Jesse Barnese70236a2009-09-21 10:42:27 -07004362static int i945_get_display_clock_speed(struct drm_device *dev)
Jesse Barnes79e53942008-11-07 14:24:08 -08004363{
Jesse Barnese70236a2009-09-21 10:42:27 -07004364 return 400000;
4365}
Jesse Barnes79e53942008-11-07 14:24:08 -08004366
Jesse Barnese70236a2009-09-21 10:42:27 -07004367static int i915_get_display_clock_speed(struct drm_device *dev)
4368{
4369 return 333000;
4370}
Jesse Barnes79e53942008-11-07 14:24:08 -08004371
Jesse Barnese70236a2009-09-21 10:42:27 -07004372static int i9xx_misc_get_display_clock_speed(struct drm_device *dev)
4373{
4374 return 200000;
4375}
Jesse Barnes79e53942008-11-07 14:24:08 -08004376
Daniel Vetter257a7ff2013-07-26 08:35:42 +02004377static int pnv_get_display_clock_speed(struct drm_device *dev)
4378{
4379 u16 gcfgc = 0;
4380
4381 pci_read_config_word(dev->pdev, GCFGC, &gcfgc);
4382
4383 switch (gcfgc & GC_DISPLAY_CLOCK_MASK) {
4384 case GC_DISPLAY_CLOCK_267_MHZ_PNV:
4385 return 267000;
4386 case GC_DISPLAY_CLOCK_333_MHZ_PNV:
4387 return 333000;
4388 case GC_DISPLAY_CLOCK_444_MHZ_PNV:
4389 return 444000;
4390 case GC_DISPLAY_CLOCK_200_MHZ_PNV:
4391 return 200000;
4392 default:
4393 DRM_ERROR("Unknown pnv display core clock 0x%04x\n", gcfgc);
4394 case GC_DISPLAY_CLOCK_133_MHZ_PNV:
4395 return 133000;
4396 case GC_DISPLAY_CLOCK_167_MHZ_PNV:
4397 return 167000;
4398 }
4399}
4400
Jesse Barnese70236a2009-09-21 10:42:27 -07004401static int i915gm_get_display_clock_speed(struct drm_device *dev)
4402{
4403 u16 gcfgc = 0;
4404
4405 pci_read_config_word(dev->pdev, GCFGC, &gcfgc);
4406
4407 if (gcfgc & GC_LOW_FREQUENCY_ENABLE)
Jesse Barnes79e53942008-11-07 14:24:08 -08004408 return 133000;
Jesse Barnese70236a2009-09-21 10:42:27 -07004409 else {
4410 switch (gcfgc & GC_DISPLAY_CLOCK_MASK) {
4411 case GC_DISPLAY_CLOCK_333_MHZ:
4412 return 333000;
4413 default:
4414 case GC_DISPLAY_CLOCK_190_200_MHZ:
4415 return 190000;
4416 }
4417 }
4418}
Jesse Barnes79e53942008-11-07 14:24:08 -08004419
Jesse Barnese70236a2009-09-21 10:42:27 -07004420static int i865_get_display_clock_speed(struct drm_device *dev)
4421{
4422 return 266000;
4423}
4424
4425static int i855_get_display_clock_speed(struct drm_device *dev)
4426{
4427 u16 hpllcc = 0;
4428 /* Assume that the hardware is in the high speed state. This
4429 * should be the default.
4430 */
4431 switch (hpllcc & GC_CLOCK_CONTROL_MASK) {
4432 case GC_CLOCK_133_200:
4433 case GC_CLOCK_100_200:
4434 return 200000;
4435 case GC_CLOCK_166_250:
4436 return 250000;
4437 case GC_CLOCK_100_133:
4438 return 133000;
4439 }
4440
4441 /* Shouldn't happen */
4442 return 0;
4443}
4444
4445static int i830_get_display_clock_speed(struct drm_device *dev)
4446{
4447 return 133000;
Jesse Barnes79e53942008-11-07 14:24:08 -08004448}
4449
Zhenyu Wang2c072452009-06-05 15:38:42 +08004450static void
Ville Syrjäläa65851a2013-04-23 15:03:34 +03004451intel_reduce_m_n_ratio(uint32_t *num, uint32_t *den)
Zhenyu Wang2c072452009-06-05 15:38:42 +08004452{
Ville Syrjäläa65851a2013-04-23 15:03:34 +03004453 while (*num > DATA_LINK_M_N_MASK ||
4454 *den > DATA_LINK_M_N_MASK) {
Zhenyu Wang2c072452009-06-05 15:38:42 +08004455 *num >>= 1;
4456 *den >>= 1;
4457 }
4458}
4459
Ville Syrjäläa65851a2013-04-23 15:03:34 +03004460static void compute_m_n(unsigned int m, unsigned int n,
4461 uint32_t *ret_m, uint32_t *ret_n)
4462{
4463 *ret_n = min_t(unsigned int, roundup_pow_of_two(n), DATA_LINK_N_MAX);
4464 *ret_m = div_u64((uint64_t) m * *ret_n, n);
4465 intel_reduce_m_n_ratio(ret_m, ret_n);
4466}
4467
Daniel Vettere69d0bc2012-11-29 15:59:36 +01004468void
4469intel_link_compute_m_n(int bits_per_pixel, int nlanes,
4470 int pixel_clock, int link_clock,
4471 struct intel_link_m_n *m_n)
Zhenyu Wang2c072452009-06-05 15:38:42 +08004472{
Daniel Vettere69d0bc2012-11-29 15:59:36 +01004473 m_n->tu = 64;
Ville Syrjäläa65851a2013-04-23 15:03:34 +03004474
4475 compute_m_n(bits_per_pixel * pixel_clock,
4476 link_clock * nlanes * 8,
4477 &m_n->gmch_m, &m_n->gmch_n);
4478
4479 compute_m_n(pixel_clock, link_clock,
4480 &m_n->link_m, &m_n->link_n);
Zhenyu Wang2c072452009-06-05 15:38:42 +08004481}
4482
Chris Wilsona7615032011-01-12 17:04:08 +00004483static inline bool intel_panel_use_ssc(struct drm_i915_private *dev_priv)
4484{
Keith Packard72bbe582011-09-26 16:09:45 -07004485 if (i915_panel_use_ssc >= 0)
4486 return i915_panel_use_ssc != 0;
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03004487 return dev_priv->vbt.lvds_use_ssc
Keith Packard435793d2011-07-12 14:56:22 -07004488 && !(dev_priv->quirks & QUIRK_LVDS_SSC_DISABLE);
Chris Wilsona7615032011-01-12 17:04:08 +00004489}
4490
Jesse Barnesc65d77d2011-12-15 12:30:36 -08004491static int i9xx_get_refclk(struct drm_crtc *crtc, int num_connectors)
4492{
4493 struct drm_device *dev = crtc->dev;
4494 struct drm_i915_private *dev_priv = dev->dev_private;
4495 int refclk;
4496
Jesse Barnesa0c4da22012-06-15 11:55:13 -07004497 if (IS_VALLEYVIEW(dev)) {
Daniel Vetter9a0ea492013-09-16 11:29:34 +02004498 refclk = 100000;
Jesse Barnesa0c4da22012-06-15 11:55:13 -07004499 } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) &&
Jesse Barnesc65d77d2011-12-15 12:30:36 -08004500 intel_panel_use_ssc(dev_priv) && num_connectors < 2) {
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03004501 refclk = dev_priv->vbt.lvds_ssc_freq * 1000;
Jesse Barnesc65d77d2011-12-15 12:30:36 -08004502 DRM_DEBUG_KMS("using SSC reference clock of %d MHz\n",
4503 refclk / 1000);
4504 } else if (!IS_GEN2(dev)) {
4505 refclk = 96000;
4506 } else {
4507 refclk = 48000;
4508 }
4509
4510 return refclk;
4511}
4512
Daniel Vetter7429e9d2013-04-20 17:19:46 +02004513static uint32_t pnv_dpll_compute_fp(struct dpll *dpll)
Jesse Barnesc65d77d2011-12-15 12:30:36 -08004514{
Daniel Vetter7df00d72013-05-21 21:54:55 +02004515 return (1 << dpll->n) << 16 | dpll->m2;
Daniel Vetter7429e9d2013-04-20 17:19:46 +02004516}
Daniel Vetterf47709a2013-03-28 10:42:02 +01004517
Daniel Vetter7429e9d2013-04-20 17:19:46 +02004518static uint32_t i9xx_dpll_compute_fp(struct dpll *dpll)
4519{
4520 return dpll->n << 16 | dpll->m1 << 8 | dpll->m2;
Jesse Barnesc65d77d2011-12-15 12:30:36 -08004521}
4522
Daniel Vetterf47709a2013-03-28 10:42:02 +01004523static void i9xx_update_pll_dividers(struct intel_crtc *crtc,
Jesse Barnesa7516a02011-12-15 12:30:37 -08004524 intel_clock_t *reduced_clock)
4525{
Daniel Vetterf47709a2013-03-28 10:42:02 +01004526 struct drm_device *dev = crtc->base.dev;
Jesse Barnesa7516a02011-12-15 12:30:37 -08004527 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterf47709a2013-03-28 10:42:02 +01004528 int pipe = crtc->pipe;
Jesse Barnesa7516a02011-12-15 12:30:37 -08004529 u32 fp, fp2 = 0;
4530
4531 if (IS_PINEVIEW(dev)) {
Daniel Vetter7429e9d2013-04-20 17:19:46 +02004532 fp = pnv_dpll_compute_fp(&crtc->config.dpll);
Jesse Barnesa7516a02011-12-15 12:30:37 -08004533 if (reduced_clock)
Daniel Vetter7429e9d2013-04-20 17:19:46 +02004534 fp2 = pnv_dpll_compute_fp(reduced_clock);
Jesse Barnesa7516a02011-12-15 12:30:37 -08004535 } else {
Daniel Vetter7429e9d2013-04-20 17:19:46 +02004536 fp = i9xx_dpll_compute_fp(&crtc->config.dpll);
Jesse Barnesa7516a02011-12-15 12:30:37 -08004537 if (reduced_clock)
Daniel Vetter7429e9d2013-04-20 17:19:46 +02004538 fp2 = i9xx_dpll_compute_fp(reduced_clock);
Jesse Barnesa7516a02011-12-15 12:30:37 -08004539 }
4540
4541 I915_WRITE(FP0(pipe), fp);
Daniel Vetter8bcc2792013-06-05 13:34:28 +02004542 crtc->config.dpll_hw_state.fp0 = fp;
Jesse Barnesa7516a02011-12-15 12:30:37 -08004543
Daniel Vetterf47709a2013-03-28 10:42:02 +01004544 crtc->lowfreq_avail = false;
4545 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_LVDS) &&
Jesse Barnesa7516a02011-12-15 12:30:37 -08004546 reduced_clock && i915_powersave) {
4547 I915_WRITE(FP1(pipe), fp2);
Daniel Vetter8bcc2792013-06-05 13:34:28 +02004548 crtc->config.dpll_hw_state.fp1 = fp2;
Daniel Vetterf47709a2013-03-28 10:42:02 +01004549 crtc->lowfreq_avail = true;
Jesse Barnesa7516a02011-12-15 12:30:37 -08004550 } else {
4551 I915_WRITE(FP1(pipe), fp);
Daniel Vetter8bcc2792013-06-05 13:34:28 +02004552 crtc->config.dpll_hw_state.fp1 = fp;
Jesse Barnesa7516a02011-12-15 12:30:37 -08004553 }
4554}
4555
Chon Ming Lee5e69f972013-09-05 20:41:49 +08004556static void vlv_pllb_recal_opamp(struct drm_i915_private *dev_priv, enum pipe
4557 pipe)
Jesse Barnes89b667f2013-04-18 14:51:36 -07004558{
4559 u32 reg_val;
4560
4561 /*
4562 * PLLB opamp always calibrates to max value of 0x3f, force enable it
4563 * and set it to a reasonable value instead.
4564 */
Chon Ming Lee5e69f972013-09-05 20:41:49 +08004565 reg_val = vlv_dpio_read(dev_priv, pipe, DPIO_IREF(1));
Jesse Barnes89b667f2013-04-18 14:51:36 -07004566 reg_val &= 0xffffff00;
4567 reg_val |= 0x00000030;
Chon Ming Lee5e69f972013-09-05 20:41:49 +08004568 vlv_dpio_write(dev_priv, pipe, DPIO_IREF(1), reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07004569
Chon Ming Lee5e69f972013-09-05 20:41:49 +08004570 reg_val = vlv_dpio_read(dev_priv, pipe, DPIO_CALIBRATION);
Jesse Barnes89b667f2013-04-18 14:51:36 -07004571 reg_val &= 0x8cffffff;
4572 reg_val = 0x8c000000;
Chon Ming Lee5e69f972013-09-05 20:41:49 +08004573 vlv_dpio_write(dev_priv, pipe, DPIO_CALIBRATION, reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07004574
Chon Ming Lee5e69f972013-09-05 20:41:49 +08004575 reg_val = vlv_dpio_read(dev_priv, pipe, DPIO_IREF(1));
Jesse Barnes89b667f2013-04-18 14:51:36 -07004576 reg_val &= 0xffffff00;
Chon Ming Lee5e69f972013-09-05 20:41:49 +08004577 vlv_dpio_write(dev_priv, pipe, DPIO_IREF(1), reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07004578
Chon Ming Lee5e69f972013-09-05 20:41:49 +08004579 reg_val = vlv_dpio_read(dev_priv, pipe, DPIO_CALIBRATION);
Jesse Barnes89b667f2013-04-18 14:51:36 -07004580 reg_val &= 0x00ffffff;
4581 reg_val |= 0xb0000000;
Chon Ming Lee5e69f972013-09-05 20:41:49 +08004582 vlv_dpio_write(dev_priv, pipe, DPIO_CALIBRATION, reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07004583}
4584
Daniel Vetterb5518422013-05-03 11:49:48 +02004585static void intel_pch_transcoder_set_m_n(struct intel_crtc *crtc,
4586 struct intel_link_m_n *m_n)
4587{
4588 struct drm_device *dev = crtc->base.dev;
4589 struct drm_i915_private *dev_priv = dev->dev_private;
4590 int pipe = crtc->pipe;
4591
Daniel Vettere3b95f12013-05-03 11:49:49 +02004592 I915_WRITE(PCH_TRANS_DATA_M1(pipe), TU_SIZE(m_n->tu) | m_n->gmch_m);
4593 I915_WRITE(PCH_TRANS_DATA_N1(pipe), m_n->gmch_n);
4594 I915_WRITE(PCH_TRANS_LINK_M1(pipe), m_n->link_m);
4595 I915_WRITE(PCH_TRANS_LINK_N1(pipe), m_n->link_n);
Daniel Vetterb5518422013-05-03 11:49:48 +02004596}
4597
4598static void intel_cpu_transcoder_set_m_n(struct intel_crtc *crtc,
4599 struct intel_link_m_n *m_n)
4600{
4601 struct drm_device *dev = crtc->base.dev;
4602 struct drm_i915_private *dev_priv = dev->dev_private;
4603 int pipe = crtc->pipe;
4604 enum transcoder transcoder = crtc->config.cpu_transcoder;
4605
4606 if (INTEL_INFO(dev)->gen >= 5) {
4607 I915_WRITE(PIPE_DATA_M1(transcoder), TU_SIZE(m_n->tu) | m_n->gmch_m);
4608 I915_WRITE(PIPE_DATA_N1(transcoder), m_n->gmch_n);
4609 I915_WRITE(PIPE_LINK_M1(transcoder), m_n->link_m);
4610 I915_WRITE(PIPE_LINK_N1(transcoder), m_n->link_n);
4611 } else {
Daniel Vettere3b95f12013-05-03 11:49:49 +02004612 I915_WRITE(PIPE_DATA_M_G4X(pipe), TU_SIZE(m_n->tu) | m_n->gmch_m);
4613 I915_WRITE(PIPE_DATA_N_G4X(pipe), m_n->gmch_n);
4614 I915_WRITE(PIPE_LINK_M_G4X(pipe), m_n->link_m);
4615 I915_WRITE(PIPE_LINK_N_G4X(pipe), m_n->link_n);
Daniel Vetterb5518422013-05-03 11:49:48 +02004616 }
4617}
4618
Daniel Vetter03afc4a2013-04-02 23:42:31 +02004619static void intel_dp_set_m_n(struct intel_crtc *crtc)
4620{
4621 if (crtc->config.has_pch_encoder)
4622 intel_pch_transcoder_set_m_n(crtc, &crtc->config.dp_m_n);
4623 else
4624 intel_cpu_transcoder_set_m_n(crtc, &crtc->config.dp_m_n);
4625}
4626
Daniel Vetterf47709a2013-03-28 10:42:02 +01004627static void vlv_update_pll(struct intel_crtc *crtc)
Jesse Barnesa0c4da22012-06-15 11:55:13 -07004628{
Daniel Vetterf47709a2013-03-28 10:42:02 +01004629 struct drm_device *dev = crtc->base.dev;
Jesse Barnesa0c4da22012-06-15 11:55:13 -07004630 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterf47709a2013-03-28 10:42:02 +01004631 int pipe = crtc->pipe;
Jesse Barnes89b667f2013-04-18 14:51:36 -07004632 u32 dpll, mdiv;
Jesse Barnesa0c4da22012-06-15 11:55:13 -07004633 u32 bestn, bestm1, bestm2, bestp1, bestp2;
Daniel Vetter198a037f2013-04-19 11:14:37 +02004634 u32 coreclk, reg_val, dpll_md;
Jesse Barnesa0c4da22012-06-15 11:55:13 -07004635
Daniel Vetter09153002012-12-12 14:06:44 +01004636 mutex_lock(&dev_priv->dpio_lock);
4637
Daniel Vetterf47709a2013-03-28 10:42:02 +01004638 bestn = crtc->config.dpll.n;
4639 bestm1 = crtc->config.dpll.m1;
4640 bestm2 = crtc->config.dpll.m2;
4641 bestp1 = crtc->config.dpll.p1;
4642 bestp2 = crtc->config.dpll.p2;
Jesse Barnesa0c4da22012-06-15 11:55:13 -07004643
Jesse Barnes89b667f2013-04-18 14:51:36 -07004644 /* See eDP HDMI DPIO driver vbios notes doc */
4645
4646 /* PLL B needs special handling */
4647 if (pipe)
Chon Ming Lee5e69f972013-09-05 20:41:49 +08004648 vlv_pllb_recal_opamp(dev_priv, pipe);
Jesse Barnes89b667f2013-04-18 14:51:36 -07004649
4650 /* Set up Tx target for periodic Rcomp update */
Chon Ming Lee5e69f972013-09-05 20:41:49 +08004651 vlv_dpio_write(dev_priv, pipe, DPIO_IREF_BCAST, 0x0100000f);
Jesse Barnes89b667f2013-04-18 14:51:36 -07004652
4653 /* Disable target IRef on PLL */
Chon Ming Lee5e69f972013-09-05 20:41:49 +08004654 reg_val = vlv_dpio_read(dev_priv, pipe, DPIO_IREF_CTL(pipe));
Jesse Barnes89b667f2013-04-18 14:51:36 -07004655 reg_val &= 0x00ffffff;
Chon Ming Lee5e69f972013-09-05 20:41:49 +08004656 vlv_dpio_write(dev_priv, pipe, DPIO_IREF_CTL(pipe), reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07004657
4658 /* Disable fast lock */
Chon Ming Lee5e69f972013-09-05 20:41:49 +08004659 vlv_dpio_write(dev_priv, pipe, DPIO_FASTCLK_DISABLE, 0x610);
Jesse Barnes89b667f2013-04-18 14:51:36 -07004660
4661 /* Set idtafcrecal before PLL is enabled */
Jesse Barnesa0c4da22012-06-15 11:55:13 -07004662 mdiv = ((bestm1 << DPIO_M1DIV_SHIFT) | (bestm2 & DPIO_M2DIV_MASK));
4663 mdiv |= ((bestp1 << DPIO_P1_SHIFT) | (bestp2 << DPIO_P2_SHIFT));
4664 mdiv |= ((bestn << DPIO_N_SHIFT));
Jesse Barnesa0c4da22012-06-15 11:55:13 -07004665 mdiv |= (1 << DPIO_K_SHIFT);
Jesse Barnes7df50802013-05-02 10:48:09 -07004666
4667 /*
4668 * Post divider depends on pixel clock rate, DAC vs digital (and LVDS,
4669 * but we don't support that).
4670 * Note: don't use the DAC post divider as it seems unstable.
4671 */
4672 mdiv |= (DPIO_POST_DIV_HDMIDP << DPIO_POST_DIV_SHIFT);
Chon Ming Lee5e69f972013-09-05 20:41:49 +08004673 vlv_dpio_write(dev_priv, pipe, DPIO_DIV(pipe), mdiv);
Jesse Barnes89b667f2013-04-18 14:51:36 -07004674
Jesse Barnesa0c4da22012-06-15 11:55:13 -07004675 mdiv |= DPIO_ENABLE_CALIBRATION;
Chon Ming Lee5e69f972013-09-05 20:41:49 +08004676 vlv_dpio_write(dev_priv, pipe, DPIO_DIV(pipe), mdiv);
Jesse Barnesa0c4da22012-06-15 11:55:13 -07004677
Jesse Barnes89b667f2013-04-18 14:51:36 -07004678 /* Set HBR and RBR LPF coefficients */
Daniel Vetterff9a6752013-06-01 17:16:21 +02004679 if (crtc->config.port_clock == 162000 ||
Ville Syrjälä99750bd2013-06-14 14:02:52 +03004680 intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_ANALOG) ||
Jesse Barnes89b667f2013-04-18 14:51:36 -07004681 intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_HDMI))
Chon Ming Lee5e69f972013-09-05 20:41:49 +08004682 vlv_dpio_write(dev_priv, pipe, DPIO_LPF_COEFF(pipe),
Ville Syrjälä885b0122013-07-05 19:21:38 +03004683 0x009f0003);
Jesse Barnes89b667f2013-04-18 14:51:36 -07004684 else
Chon Ming Lee5e69f972013-09-05 20:41:49 +08004685 vlv_dpio_write(dev_priv, pipe, DPIO_LPF_COEFF(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07004686 0x00d0000f);
Jesse Barnesa0c4da22012-06-15 11:55:13 -07004687
Jesse Barnes89b667f2013-04-18 14:51:36 -07004688 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_EDP) ||
4689 intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_DISPLAYPORT)) {
4690 /* Use SSC source */
4691 if (!pipe)
Chon Ming Lee5e69f972013-09-05 20:41:49 +08004692 vlv_dpio_write(dev_priv, pipe, DPIO_REFSFR(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07004693 0x0df40000);
4694 else
Chon Ming Lee5e69f972013-09-05 20:41:49 +08004695 vlv_dpio_write(dev_priv, pipe, DPIO_REFSFR(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07004696 0x0df70000);
4697 } else { /* HDMI or VGA */
4698 /* Use bend source */
4699 if (!pipe)
Chon Ming Lee5e69f972013-09-05 20:41:49 +08004700 vlv_dpio_write(dev_priv, pipe, DPIO_REFSFR(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07004701 0x0df70000);
4702 else
Chon Ming Lee5e69f972013-09-05 20:41:49 +08004703 vlv_dpio_write(dev_priv, pipe, DPIO_REFSFR(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07004704 0x0df40000);
4705 }
Jesse Barnesa0c4da22012-06-15 11:55:13 -07004706
Chon Ming Lee5e69f972013-09-05 20:41:49 +08004707 coreclk = vlv_dpio_read(dev_priv, pipe, DPIO_CORE_CLK(pipe));
Jesse Barnes89b667f2013-04-18 14:51:36 -07004708 coreclk = (coreclk & 0x0000ff00) | 0x01c00000;
4709 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_DISPLAYPORT) ||
4710 intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_EDP))
4711 coreclk |= 0x01000000;
Chon Ming Lee5e69f972013-09-05 20:41:49 +08004712 vlv_dpio_write(dev_priv, pipe, DPIO_CORE_CLK(pipe), coreclk);
Jesse Barnes89b667f2013-04-18 14:51:36 -07004713
Chon Ming Lee5e69f972013-09-05 20:41:49 +08004714 vlv_dpio_write(dev_priv, pipe, DPIO_PLL_CML(pipe), 0x87871000);
Jesse Barnes89b667f2013-04-18 14:51:36 -07004715
Jesse Barnes89b667f2013-04-18 14:51:36 -07004716 /* Enable DPIO clock input */
4717 dpll = DPLL_EXT_BUFFER_ENABLE_VLV | DPLL_REFA_CLK_ENABLE_VLV |
4718 DPLL_VGA_MODE_DIS | DPLL_INTEGRATED_CLOCK_VLV;
Jesse Barnesf6071162013-10-01 10:41:38 -07004719 /* We should never disable this, set it here for state tracking */
4720 if (pipe == PIPE_B)
Jesse Barnes89b667f2013-04-18 14:51:36 -07004721 dpll |= DPLL_INTEGRATED_CRI_CLK_VLV;
Jesse Barnesa0c4da22012-06-15 11:55:13 -07004722 dpll |= DPLL_VCO_ENABLE;
Daniel Vetter8bcc2792013-06-05 13:34:28 +02004723 crtc->config.dpll_hw_state.dpll = dpll;
4724
Daniel Vetteref1b4602013-06-01 17:17:04 +02004725 dpll_md = (crtc->config.pixel_multiplier - 1)
4726 << DPLL_MD_UDI_MULTIPLIER_SHIFT;
Daniel Vetter8bcc2792013-06-05 13:34:28 +02004727 crtc->config.dpll_hw_state.dpll_md = dpll_md;
4728
Daniel Vetterf47709a2013-03-28 10:42:02 +01004729 if (crtc->config.has_dp_encoder)
4730 intel_dp_set_m_n(crtc);
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05304731
Daniel Vetter09153002012-12-12 14:06:44 +01004732 mutex_unlock(&dev_priv->dpio_lock);
Jesse Barnesa0c4da22012-06-15 11:55:13 -07004733}
4734
Daniel Vetterf47709a2013-03-28 10:42:02 +01004735static void i9xx_update_pll(struct intel_crtc *crtc,
4736 intel_clock_t *reduced_clock,
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004737 int num_connectors)
4738{
Daniel Vetterf47709a2013-03-28 10:42:02 +01004739 struct drm_device *dev = crtc->base.dev;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004740 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004741 u32 dpll;
4742 bool is_sdvo;
Daniel Vetterf47709a2013-03-28 10:42:02 +01004743 struct dpll *clock = &crtc->config.dpll;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004744
Daniel Vetterf47709a2013-03-28 10:42:02 +01004745 i9xx_update_pll_dividers(crtc, reduced_clock);
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05304746
Daniel Vetterf47709a2013-03-28 10:42:02 +01004747 is_sdvo = intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_SDVO) ||
4748 intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_HDMI);
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004749
4750 dpll = DPLL_VGA_MODE_DIS;
4751
Daniel Vetterf47709a2013-03-28 10:42:02 +01004752 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_LVDS))
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004753 dpll |= DPLLB_MODE_LVDS;
4754 else
4755 dpll |= DPLLB_MODE_DAC_SERIAL;
Daniel Vetter6cc5f342013-03-27 00:44:53 +01004756
Daniel Vetteref1b4602013-06-01 17:17:04 +02004757 if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev)) {
Daniel Vetter198a037f2013-04-19 11:14:37 +02004758 dpll |= (crtc->config.pixel_multiplier - 1)
4759 << SDVO_MULTIPLIER_SHIFT_HIRES;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004760 }
Daniel Vetter198a037f2013-04-19 11:14:37 +02004761
4762 if (is_sdvo)
Daniel Vetter4a33e482013-07-06 12:52:05 +02004763 dpll |= DPLL_SDVO_HIGH_SPEED;
Daniel Vetter198a037f2013-04-19 11:14:37 +02004764
Daniel Vetterf47709a2013-03-28 10:42:02 +01004765 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_DISPLAYPORT))
Daniel Vetter4a33e482013-07-06 12:52:05 +02004766 dpll |= DPLL_SDVO_HIGH_SPEED;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004767
4768 /* compute bitmask from p1 value */
4769 if (IS_PINEVIEW(dev))
4770 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW;
4771 else {
4772 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
4773 if (IS_G4X(dev) && reduced_clock)
4774 dpll |= (1 << (reduced_clock->p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
4775 }
4776 switch (clock->p2) {
4777 case 5:
4778 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
4779 break;
4780 case 7:
4781 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
4782 break;
4783 case 10:
4784 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
4785 break;
4786 case 14:
4787 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
4788 break;
4789 }
4790 if (INTEL_INFO(dev)->gen >= 4)
4791 dpll |= (6 << PLL_LOAD_PULSE_PHASE_SHIFT);
4792
Daniel Vetter09ede542013-04-30 14:01:45 +02004793 if (crtc->config.sdvo_tv_clock)
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004794 dpll |= PLL_REF_INPUT_TVCLKINBC;
Daniel Vetterf47709a2013-03-28 10:42:02 +01004795 else if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_LVDS) &&
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004796 intel_panel_use_ssc(dev_priv) && num_connectors < 2)
4797 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
4798 else
4799 dpll |= PLL_REF_INPUT_DREFCLK;
4800
4801 dpll |= DPLL_VCO_ENABLE;
Daniel Vetter8bcc2792013-06-05 13:34:28 +02004802 crtc->config.dpll_hw_state.dpll = dpll;
4803
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004804 if (INTEL_INFO(dev)->gen >= 4) {
Daniel Vetteref1b4602013-06-01 17:17:04 +02004805 u32 dpll_md = (crtc->config.pixel_multiplier - 1)
4806 << DPLL_MD_UDI_MULTIPLIER_SHIFT;
Daniel Vetter8bcc2792013-06-05 13:34:28 +02004807 crtc->config.dpll_hw_state.dpll_md = dpll_md;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004808 }
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02004809
4810 if (crtc->config.has_dp_encoder)
4811 intel_dp_set_m_n(crtc);
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004812}
4813
Daniel Vetterf47709a2013-03-28 10:42:02 +01004814static void i8xx_update_pll(struct intel_crtc *crtc,
Daniel Vetterf47709a2013-03-28 10:42:02 +01004815 intel_clock_t *reduced_clock,
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004816 int num_connectors)
4817{
Daniel Vetterf47709a2013-03-28 10:42:02 +01004818 struct drm_device *dev = crtc->base.dev;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004819 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004820 u32 dpll;
Daniel Vetterf47709a2013-03-28 10:42:02 +01004821 struct dpll *clock = &crtc->config.dpll;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004822
Daniel Vetterf47709a2013-03-28 10:42:02 +01004823 i9xx_update_pll_dividers(crtc, reduced_clock);
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05304824
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004825 dpll = DPLL_VGA_MODE_DIS;
4826
Daniel Vetterf47709a2013-03-28 10:42:02 +01004827 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_LVDS)) {
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004828 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
4829 } else {
4830 if (clock->p1 == 2)
4831 dpll |= PLL_P1_DIVIDE_BY_TWO;
4832 else
4833 dpll |= (clock->p1 - 2) << DPLL_FPA01_P1_POST_DIV_SHIFT;
4834 if (clock->p2 == 4)
4835 dpll |= PLL_P2_DIVIDE_BY_4;
4836 }
4837
Daniel Vetter4a33e482013-07-06 12:52:05 +02004838 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_DVO))
4839 dpll |= DPLL_DVO_2X_MODE;
4840
Daniel Vetterf47709a2013-03-28 10:42:02 +01004841 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_LVDS) &&
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004842 intel_panel_use_ssc(dev_priv) && num_connectors < 2)
4843 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
4844 else
4845 dpll |= PLL_REF_INPUT_DREFCLK;
4846
4847 dpll |= DPLL_VCO_ENABLE;
Daniel Vetter8bcc2792013-06-05 13:34:28 +02004848 crtc->config.dpll_hw_state.dpll = dpll;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004849}
4850
Daniel Vetter8a654f32013-06-01 17:16:22 +02004851static void intel_set_pipe_timings(struct intel_crtc *intel_crtc)
Paulo Zanonib0e77b92012-10-01 18:10:53 -03004852{
4853 struct drm_device *dev = intel_crtc->base.dev;
4854 struct drm_i915_private *dev_priv = dev->dev_private;
4855 enum pipe pipe = intel_crtc->pipe;
Daniel Vetter3b117c82013-04-17 20:15:07 +02004856 enum transcoder cpu_transcoder = intel_crtc->config.cpu_transcoder;
Daniel Vetter8a654f32013-06-01 17:16:22 +02004857 struct drm_display_mode *adjusted_mode =
4858 &intel_crtc->config.adjusted_mode;
Daniel Vetter4d8a62e2013-05-03 11:49:51 +02004859 uint32_t vsyncshift, crtc_vtotal, crtc_vblank_end;
4860
4861 /* We need to be careful not to changed the adjusted mode, for otherwise
4862 * the hw state checker will get angry at the mismatch. */
4863 crtc_vtotal = adjusted_mode->crtc_vtotal;
4864 crtc_vblank_end = adjusted_mode->crtc_vblank_end;
Paulo Zanonib0e77b92012-10-01 18:10:53 -03004865
4866 if (!IS_GEN2(dev) && adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE) {
4867 /* the chip adds 2 halflines automatically */
Daniel Vetter4d8a62e2013-05-03 11:49:51 +02004868 crtc_vtotal -= 1;
4869 crtc_vblank_end -= 1;
Paulo Zanonib0e77b92012-10-01 18:10:53 -03004870 vsyncshift = adjusted_mode->crtc_hsync_start
4871 - adjusted_mode->crtc_htotal / 2;
4872 } else {
4873 vsyncshift = 0;
4874 }
4875
4876 if (INTEL_INFO(dev)->gen > 3)
Paulo Zanonife2b8f92012-10-23 18:30:02 -02004877 I915_WRITE(VSYNCSHIFT(cpu_transcoder), vsyncshift);
Paulo Zanonib0e77b92012-10-01 18:10:53 -03004878
Paulo Zanonife2b8f92012-10-23 18:30:02 -02004879 I915_WRITE(HTOTAL(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03004880 (adjusted_mode->crtc_hdisplay - 1) |
4881 ((adjusted_mode->crtc_htotal - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02004882 I915_WRITE(HBLANK(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03004883 (adjusted_mode->crtc_hblank_start - 1) |
4884 ((adjusted_mode->crtc_hblank_end - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02004885 I915_WRITE(HSYNC(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03004886 (adjusted_mode->crtc_hsync_start - 1) |
4887 ((adjusted_mode->crtc_hsync_end - 1) << 16));
4888
Paulo Zanonife2b8f92012-10-23 18:30:02 -02004889 I915_WRITE(VTOTAL(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03004890 (adjusted_mode->crtc_vdisplay - 1) |
Daniel Vetter4d8a62e2013-05-03 11:49:51 +02004891 ((crtc_vtotal - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02004892 I915_WRITE(VBLANK(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03004893 (adjusted_mode->crtc_vblank_start - 1) |
Daniel Vetter4d8a62e2013-05-03 11:49:51 +02004894 ((crtc_vblank_end - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02004895 I915_WRITE(VSYNC(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03004896 (adjusted_mode->crtc_vsync_start - 1) |
4897 ((adjusted_mode->crtc_vsync_end - 1) << 16));
4898
Paulo Zanonib5e508d2012-10-24 11:34:43 -02004899 /* Workaround: when the EDP input selection is B, the VTOTAL_B must be
4900 * programmed with the VTOTAL_EDP value. Same for VTOTAL_C. This is
4901 * documented on the DDI_FUNC_CTL register description, EDP Input Select
4902 * bits. */
4903 if (IS_HASWELL(dev) && cpu_transcoder == TRANSCODER_EDP &&
4904 (pipe == PIPE_B || pipe == PIPE_C))
4905 I915_WRITE(VTOTAL(pipe), I915_READ(VTOTAL(cpu_transcoder)));
4906
Paulo Zanonib0e77b92012-10-01 18:10:53 -03004907 /* pipesrc controls the size that is scaled from, which should
4908 * always be the user's requested size.
4909 */
4910 I915_WRITE(PIPESRC(pipe),
Ville Syrjälä37327ab2013-09-04 18:25:28 +03004911 ((intel_crtc->config.pipe_src_w - 1) << 16) |
4912 (intel_crtc->config.pipe_src_h - 1));
Paulo Zanonib0e77b92012-10-01 18:10:53 -03004913}
4914
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02004915static void intel_get_pipe_timings(struct intel_crtc *crtc,
4916 struct intel_crtc_config *pipe_config)
4917{
4918 struct drm_device *dev = crtc->base.dev;
4919 struct drm_i915_private *dev_priv = dev->dev_private;
4920 enum transcoder cpu_transcoder = pipe_config->cpu_transcoder;
4921 uint32_t tmp;
4922
4923 tmp = I915_READ(HTOTAL(cpu_transcoder));
4924 pipe_config->adjusted_mode.crtc_hdisplay = (tmp & 0xffff) + 1;
4925 pipe_config->adjusted_mode.crtc_htotal = ((tmp >> 16) & 0xffff) + 1;
4926 tmp = I915_READ(HBLANK(cpu_transcoder));
4927 pipe_config->adjusted_mode.crtc_hblank_start = (tmp & 0xffff) + 1;
4928 pipe_config->adjusted_mode.crtc_hblank_end = ((tmp >> 16) & 0xffff) + 1;
4929 tmp = I915_READ(HSYNC(cpu_transcoder));
4930 pipe_config->adjusted_mode.crtc_hsync_start = (tmp & 0xffff) + 1;
4931 pipe_config->adjusted_mode.crtc_hsync_end = ((tmp >> 16) & 0xffff) + 1;
4932
4933 tmp = I915_READ(VTOTAL(cpu_transcoder));
4934 pipe_config->adjusted_mode.crtc_vdisplay = (tmp & 0xffff) + 1;
4935 pipe_config->adjusted_mode.crtc_vtotal = ((tmp >> 16) & 0xffff) + 1;
4936 tmp = I915_READ(VBLANK(cpu_transcoder));
4937 pipe_config->adjusted_mode.crtc_vblank_start = (tmp & 0xffff) + 1;
4938 pipe_config->adjusted_mode.crtc_vblank_end = ((tmp >> 16) & 0xffff) + 1;
4939 tmp = I915_READ(VSYNC(cpu_transcoder));
4940 pipe_config->adjusted_mode.crtc_vsync_start = (tmp & 0xffff) + 1;
4941 pipe_config->adjusted_mode.crtc_vsync_end = ((tmp >> 16) & 0xffff) + 1;
4942
4943 if (I915_READ(PIPECONF(cpu_transcoder)) & PIPECONF_INTERLACE_MASK) {
4944 pipe_config->adjusted_mode.flags |= DRM_MODE_FLAG_INTERLACE;
4945 pipe_config->adjusted_mode.crtc_vtotal += 1;
4946 pipe_config->adjusted_mode.crtc_vblank_end += 1;
4947 }
4948
4949 tmp = I915_READ(PIPESRC(crtc->pipe));
Ville Syrjälä37327ab2013-09-04 18:25:28 +03004950 pipe_config->pipe_src_h = (tmp & 0xffff) + 1;
4951 pipe_config->pipe_src_w = ((tmp >> 16) & 0xffff) + 1;
4952
4953 pipe_config->requested_mode.vdisplay = pipe_config->pipe_src_h;
4954 pipe_config->requested_mode.hdisplay = pipe_config->pipe_src_w;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02004955}
4956
Jesse Barnesbabea612013-06-26 18:57:38 +03004957static void intel_crtc_mode_from_pipe_config(struct intel_crtc *intel_crtc,
4958 struct intel_crtc_config *pipe_config)
4959{
4960 struct drm_crtc *crtc = &intel_crtc->base;
4961
4962 crtc->mode.hdisplay = pipe_config->adjusted_mode.crtc_hdisplay;
4963 crtc->mode.htotal = pipe_config->adjusted_mode.crtc_htotal;
4964 crtc->mode.hsync_start = pipe_config->adjusted_mode.crtc_hsync_start;
4965 crtc->mode.hsync_end = pipe_config->adjusted_mode.crtc_hsync_end;
4966
4967 crtc->mode.vdisplay = pipe_config->adjusted_mode.crtc_vdisplay;
4968 crtc->mode.vtotal = pipe_config->adjusted_mode.crtc_vtotal;
4969 crtc->mode.vsync_start = pipe_config->adjusted_mode.crtc_vsync_start;
4970 crtc->mode.vsync_end = pipe_config->adjusted_mode.crtc_vsync_end;
4971
4972 crtc->mode.flags = pipe_config->adjusted_mode.flags;
4973
Damien Lespiau241bfc32013-09-25 16:45:37 +01004974 crtc->mode.clock = pipe_config->adjusted_mode.crtc_clock;
Jesse Barnesbabea612013-06-26 18:57:38 +03004975 crtc->mode.flags |= pipe_config->adjusted_mode.flags;
4976}
4977
Daniel Vetter84b046f2013-02-19 18:48:54 +01004978static void i9xx_set_pipeconf(struct intel_crtc *intel_crtc)
4979{
4980 struct drm_device *dev = intel_crtc->base.dev;
4981 struct drm_i915_private *dev_priv = dev->dev_private;
4982 uint32_t pipeconf;
4983
Daniel Vetter9f11a9e2013-06-13 00:54:58 +02004984 pipeconf = 0;
Daniel Vetter84b046f2013-02-19 18:48:54 +01004985
Daniel Vetter67c72a12013-09-24 11:46:14 +02004986 if (dev_priv->quirks & QUIRK_PIPEA_FORCE &&
4987 I915_READ(PIPECONF(intel_crtc->pipe)) & PIPECONF_ENABLE)
4988 pipeconf |= PIPECONF_ENABLE;
4989
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03004990 if (intel_crtc->config.double_wide)
4991 pipeconf |= PIPECONF_DOUBLE_WIDE;
Daniel Vetter84b046f2013-02-19 18:48:54 +01004992
Daniel Vetterff9ce462013-04-24 14:57:17 +02004993 /* only g4x and later have fancy bpc/dither controls */
4994 if (IS_G4X(dev) || IS_VALLEYVIEW(dev)) {
Daniel Vetterff9ce462013-04-24 14:57:17 +02004995 /* Bspec claims that we can't use dithering for 30bpp pipes. */
4996 if (intel_crtc->config.dither && intel_crtc->config.pipe_bpp != 30)
4997 pipeconf |= PIPECONF_DITHER_EN |
4998 PIPECONF_DITHER_TYPE_SP;
4999
5000 switch (intel_crtc->config.pipe_bpp) {
5001 case 18:
5002 pipeconf |= PIPECONF_6BPC;
5003 break;
5004 case 24:
5005 pipeconf |= PIPECONF_8BPC;
5006 break;
5007 case 30:
5008 pipeconf |= PIPECONF_10BPC;
5009 break;
5010 default:
5011 /* Case prevented by intel_choose_pipe_bpp_dither. */
5012 BUG();
Daniel Vetter84b046f2013-02-19 18:48:54 +01005013 }
5014 }
5015
5016 if (HAS_PIPE_CXSR(dev)) {
5017 if (intel_crtc->lowfreq_avail) {
5018 DRM_DEBUG_KMS("enabling CxSR downclocking\n");
5019 pipeconf |= PIPECONF_CXSR_DOWNCLOCK;
5020 } else {
5021 DRM_DEBUG_KMS("disabling CxSR downclocking\n");
Daniel Vetter84b046f2013-02-19 18:48:54 +01005022 }
5023 }
5024
Daniel Vetter84b046f2013-02-19 18:48:54 +01005025 if (!IS_GEN2(dev) &&
5026 intel_crtc->config.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
5027 pipeconf |= PIPECONF_INTERLACE_W_FIELD_INDICATION;
5028 else
5029 pipeconf |= PIPECONF_PROGRESSIVE;
5030
Daniel Vetter9f11a9e2013-06-13 00:54:58 +02005031 if (IS_VALLEYVIEW(dev) && intel_crtc->config.limited_color_range)
5032 pipeconf |= PIPECONF_COLOR_RANGE_SELECT;
Ville Syrjälä9c8e09b2013-04-02 16:10:09 +03005033
Daniel Vetter84b046f2013-02-19 18:48:54 +01005034 I915_WRITE(PIPECONF(intel_crtc->pipe), pipeconf);
5035 POSTING_READ(PIPECONF(intel_crtc->pipe));
5036}
5037
Eric Anholtf564048e2011-03-30 13:01:02 -07005038static int i9xx_crtc_mode_set(struct drm_crtc *crtc,
Eric Anholtf564048e2011-03-30 13:01:02 -07005039 int x, int y,
Daniel Vetter94352cf2012-07-05 22:51:56 +02005040 struct drm_framebuffer *fb)
Jesse Barnes79e53942008-11-07 14:24:08 -08005041{
5042 struct drm_device *dev = crtc->dev;
5043 struct drm_i915_private *dev_priv = dev->dev_private;
5044 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5045 int pipe = intel_crtc->pipe;
Jesse Barnes80824002009-09-10 15:28:06 -07005046 int plane = intel_crtc->plane;
Eric Anholtc751ce42010-03-25 11:48:48 -07005047 int refclk, num_connectors = 0;
Jesse Barnes652c3932009-08-17 13:31:43 -07005048 intel_clock_t clock, reduced_clock;
Daniel Vetter84b046f2013-02-19 18:48:54 +01005049 u32 dspcntr;
Daniel Vettera16af7212013-04-30 14:01:44 +02005050 bool ok, has_reduced_clock = false;
Jani Nikulae9fd1c02013-08-27 15:12:23 +03005051 bool is_lvds = false, is_dsi = false;
Chris Wilson5eddb702010-09-11 13:48:45 +01005052 struct intel_encoder *encoder;
Ma Lingd4906092009-03-18 20:13:27 +08005053 const intel_limit_t *limit;
Chris Wilson5c3b82e2009-02-11 13:25:09 +00005054 int ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08005055
Daniel Vetter6c2b7c122012-07-05 09:50:24 +02005056 for_each_encoder_on_crtc(dev, crtc, encoder) {
Chris Wilson5eddb702010-09-11 13:48:45 +01005057 switch (encoder->type) {
Jesse Barnes79e53942008-11-07 14:24:08 -08005058 case INTEL_OUTPUT_LVDS:
5059 is_lvds = true;
5060 break;
Jani Nikulae9fd1c02013-08-27 15:12:23 +03005061 case INTEL_OUTPUT_DSI:
5062 is_dsi = true;
5063 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08005064 }
Kristian Høgsberg43565a02009-02-13 20:56:52 -05005065
Eric Anholtc751ce42010-03-25 11:48:48 -07005066 num_connectors++;
Jesse Barnes79e53942008-11-07 14:24:08 -08005067 }
5068
Jani Nikulaf2335332013-09-13 11:03:09 +03005069 if (is_dsi)
5070 goto skip_dpll;
Jesse Barnes79e53942008-11-07 14:24:08 -08005071
Jani Nikulaf2335332013-09-13 11:03:09 +03005072 if (!intel_crtc->config.clock_set) {
5073 refclk = i9xx_get_refclk(crtc, num_connectors);
5074
Jani Nikulae9fd1c02013-08-27 15:12:23 +03005075 /*
5076 * Returns a set of divisors for the desired target clock with
5077 * the given refclk, or FALSE. The returned values represent
5078 * the clock equation: reflck * (5 * (m1 + 2) + (m2 + 2)) / (n +
5079 * 2) / p1 / p2.
5080 */
5081 limit = intel_limit(crtc, refclk);
5082 ok = dev_priv->display.find_dpll(limit, crtc,
5083 intel_crtc->config.port_clock,
5084 refclk, NULL, &clock);
Jani Nikulaf2335332013-09-13 11:03:09 +03005085 if (!ok) {
Jani Nikulae9fd1c02013-08-27 15:12:23 +03005086 DRM_ERROR("Couldn't find PLL settings for mode!\n");
5087 return -EINVAL;
5088 }
Eric Anholtf564048e2011-03-30 13:01:02 -07005089
Jani Nikulaf2335332013-09-13 11:03:09 +03005090 if (is_lvds && dev_priv->lvds_downclock_avail) {
5091 /*
5092 * Ensure we match the reduced clock's P to the target
5093 * clock. If the clocks don't match, we can't switch
5094 * the display clock by using the FP0/FP1. In such case
5095 * we will disable the LVDS downclock feature.
5096 */
5097 has_reduced_clock =
5098 dev_priv->display.find_dpll(limit, crtc,
5099 dev_priv->lvds_downclock,
5100 refclk, &clock,
5101 &reduced_clock);
5102 }
5103 /* Compat-code for transition, will disappear. */
Daniel Vetterf47709a2013-03-28 10:42:02 +01005104 intel_crtc->config.dpll.n = clock.n;
5105 intel_crtc->config.dpll.m1 = clock.m1;
5106 intel_crtc->config.dpll.m2 = clock.m2;
5107 intel_crtc->config.dpll.p1 = clock.p1;
5108 intel_crtc->config.dpll.p2 = clock.p2;
5109 }
Eric Anholtf564048e2011-03-30 13:01:02 -07005110
Jani Nikulae9fd1c02013-08-27 15:12:23 +03005111 if (IS_GEN2(dev)) {
Daniel Vetter8a654f32013-06-01 17:16:22 +02005112 i8xx_update_pll(intel_crtc,
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05305113 has_reduced_clock ? &reduced_clock : NULL,
5114 num_connectors);
Jani Nikulae9fd1c02013-08-27 15:12:23 +03005115 } else if (IS_VALLEYVIEW(dev)) {
Jani Nikulaf2335332013-09-13 11:03:09 +03005116 vlv_update_pll(intel_crtc);
Jani Nikulae9fd1c02013-08-27 15:12:23 +03005117 } else {
Daniel Vetterf47709a2013-03-28 10:42:02 +01005118 i9xx_update_pll(intel_crtc,
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005119 has_reduced_clock ? &reduced_clock : NULL,
Jesse Barnes89b667f2013-04-18 14:51:36 -07005120 num_connectors);
Jani Nikulae9fd1c02013-08-27 15:12:23 +03005121 }
Eric Anholtf564048e2011-03-30 13:01:02 -07005122
Jani Nikulaf2335332013-09-13 11:03:09 +03005123skip_dpll:
Eric Anholtf564048e2011-03-30 13:01:02 -07005124 /* Set up the display plane register */
5125 dspcntr = DISPPLANE_GAMMA_ENABLE;
5126
Jesse Barnesda6ecc52013-03-08 10:46:00 -08005127 if (!IS_VALLEYVIEW(dev)) {
5128 if (pipe == 0)
5129 dspcntr &= ~DISPPLANE_SEL_PIPE_MASK;
5130 else
5131 dspcntr |= DISPPLANE_SEL_PIPE_B;
5132 }
Eric Anholtf564048e2011-03-30 13:01:02 -07005133
Daniel Vetter8a654f32013-06-01 17:16:22 +02005134 intel_set_pipe_timings(intel_crtc);
Eric Anholtf564048e2011-03-30 13:01:02 -07005135
5136 /* pipesrc and dspsize control the size that is scaled from,
5137 * which should always be the user's requested size.
5138 */
Eric Anholt929c77f2011-03-30 13:01:04 -07005139 I915_WRITE(DSPSIZE(plane),
Ville Syrjälä37327ab2013-09-04 18:25:28 +03005140 ((intel_crtc->config.pipe_src_h - 1) << 16) |
5141 (intel_crtc->config.pipe_src_w - 1));
Eric Anholt929c77f2011-03-30 13:01:04 -07005142 I915_WRITE(DSPPOS(plane), 0);
Eric Anholtf564048e2011-03-30 13:01:02 -07005143
Daniel Vetter84b046f2013-02-19 18:48:54 +01005144 i9xx_set_pipeconf(intel_crtc);
5145
Eric Anholtf564048e2011-03-30 13:01:02 -07005146 I915_WRITE(DSPCNTR(plane), dspcntr);
5147 POSTING_READ(DSPCNTR(plane));
5148
Daniel Vetter94352cf2012-07-05 22:51:56 +02005149 ret = intel_pipe_set_base(crtc, x, y, fb);
Eric Anholtf564048e2011-03-30 13:01:02 -07005150
Eric Anholtf564048e2011-03-30 13:01:02 -07005151 return ret;
5152}
5153
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02005154static void i9xx_get_pfit_config(struct intel_crtc *crtc,
5155 struct intel_crtc_config *pipe_config)
5156{
5157 struct drm_device *dev = crtc->base.dev;
5158 struct drm_i915_private *dev_priv = dev->dev_private;
5159 uint32_t tmp;
5160
5161 tmp = I915_READ(PFIT_CONTROL);
Daniel Vetter06922822013-07-11 13:35:40 +02005162 if (!(tmp & PFIT_ENABLE))
5163 return;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02005164
Daniel Vetter06922822013-07-11 13:35:40 +02005165 /* Check whether the pfit is attached to our pipe. */
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02005166 if (INTEL_INFO(dev)->gen < 4) {
5167 if (crtc->pipe != PIPE_B)
5168 return;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02005169 } else {
5170 if ((tmp & PFIT_PIPE_MASK) != (crtc->pipe << PFIT_PIPE_SHIFT))
5171 return;
5172 }
5173
Daniel Vetter06922822013-07-11 13:35:40 +02005174 pipe_config->gmch_pfit.control = tmp;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02005175 pipe_config->gmch_pfit.pgm_ratios = I915_READ(PFIT_PGM_RATIOS);
5176 if (INTEL_INFO(dev)->gen < 5)
5177 pipe_config->gmch_pfit.lvds_border_bits =
5178 I915_READ(LVDS) & LVDS_BORDER_ENABLE;
5179}
5180
Jesse Barnesacbec812013-09-20 11:29:32 -07005181static void vlv_crtc_clock_get(struct intel_crtc *crtc,
5182 struct intel_crtc_config *pipe_config)
5183{
5184 struct drm_device *dev = crtc->base.dev;
5185 struct drm_i915_private *dev_priv = dev->dev_private;
5186 int pipe = pipe_config->cpu_transcoder;
5187 intel_clock_t clock;
5188 u32 mdiv;
Chris Wilson662c6ec2013-09-25 14:24:01 -07005189 int refclk = 100000;
Jesse Barnesacbec812013-09-20 11:29:32 -07005190
5191 mutex_lock(&dev_priv->dpio_lock);
5192 mdiv = vlv_dpio_read(dev_priv, pipe, DPIO_DIV(pipe));
5193 mutex_unlock(&dev_priv->dpio_lock);
5194
5195 clock.m1 = (mdiv >> DPIO_M1DIV_SHIFT) & 7;
5196 clock.m2 = mdiv & DPIO_M2DIV_MASK;
5197 clock.n = (mdiv >> DPIO_N_SHIFT) & 0xf;
5198 clock.p1 = (mdiv >> DPIO_P1_SHIFT) & 7;
5199 clock.p2 = (mdiv >> DPIO_P2_SHIFT) & 0x1f;
5200
Chris Wilson662c6ec2013-09-25 14:24:01 -07005201 clock.vco = refclk * clock.m1 * clock.m2 / clock.n;
5202 clock.dot = 2 * clock.vco / (clock.p1 * clock.p2);
Jesse Barnesacbec812013-09-20 11:29:32 -07005203
5204 pipe_config->port_clock = clock.dot / 10;
5205}
5206
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01005207static bool i9xx_get_pipe_config(struct intel_crtc *crtc,
5208 struct intel_crtc_config *pipe_config)
5209{
5210 struct drm_device *dev = crtc->base.dev;
5211 struct drm_i915_private *dev_priv = dev->dev_private;
5212 uint32_t tmp;
5213
Daniel Vettere143a212013-07-04 12:01:15 +02005214 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +02005215 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
Daniel Vettereccb1402013-05-22 00:50:22 +02005216
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01005217 tmp = I915_READ(PIPECONF(crtc->pipe));
5218 if (!(tmp & PIPECONF_ENABLE))
5219 return false;
5220
Ville Syrjälä42571ae2013-09-06 23:29:00 +03005221 if (IS_G4X(dev) || IS_VALLEYVIEW(dev)) {
5222 switch (tmp & PIPECONF_BPC_MASK) {
5223 case PIPECONF_6BPC:
5224 pipe_config->pipe_bpp = 18;
5225 break;
5226 case PIPECONF_8BPC:
5227 pipe_config->pipe_bpp = 24;
5228 break;
5229 case PIPECONF_10BPC:
5230 pipe_config->pipe_bpp = 30;
5231 break;
5232 default:
5233 break;
5234 }
5235 }
5236
Ville Syrjälä282740f2013-09-04 18:30:03 +03005237 if (INTEL_INFO(dev)->gen < 4)
5238 pipe_config->double_wide = tmp & PIPECONF_DOUBLE_WIDE;
5239
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02005240 intel_get_pipe_timings(crtc, pipe_config);
5241
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02005242 i9xx_get_pfit_config(crtc, pipe_config);
5243
Daniel Vetter6c49f242013-06-06 12:45:25 +02005244 if (INTEL_INFO(dev)->gen >= 4) {
5245 tmp = I915_READ(DPLL_MD(crtc->pipe));
5246 pipe_config->pixel_multiplier =
5247 ((tmp & DPLL_MD_UDI_MULTIPLIER_MASK)
5248 >> DPLL_MD_UDI_MULTIPLIER_SHIFT) + 1;
Daniel Vetter8bcc2792013-06-05 13:34:28 +02005249 pipe_config->dpll_hw_state.dpll_md = tmp;
Daniel Vetter6c49f242013-06-06 12:45:25 +02005250 } else if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev)) {
5251 tmp = I915_READ(DPLL(crtc->pipe));
5252 pipe_config->pixel_multiplier =
5253 ((tmp & SDVO_MULTIPLIER_MASK)
5254 >> SDVO_MULTIPLIER_SHIFT_HIRES) + 1;
5255 } else {
5256 /* Note that on i915G/GM the pixel multiplier is in the sdvo
5257 * port and will be fixed up in the encoder->get_config
5258 * function. */
5259 pipe_config->pixel_multiplier = 1;
5260 }
Daniel Vetter8bcc2792013-06-05 13:34:28 +02005261 pipe_config->dpll_hw_state.dpll = I915_READ(DPLL(crtc->pipe));
5262 if (!IS_VALLEYVIEW(dev)) {
5263 pipe_config->dpll_hw_state.fp0 = I915_READ(FP0(crtc->pipe));
5264 pipe_config->dpll_hw_state.fp1 = I915_READ(FP1(crtc->pipe));
Ville Syrjälä165e9012013-06-26 17:44:15 +03005265 } else {
5266 /* Mask out read-only status bits. */
5267 pipe_config->dpll_hw_state.dpll &= ~(DPLL_LOCK_VLV |
5268 DPLL_PORTC_READY_MASK |
5269 DPLL_PORTB_READY_MASK);
Daniel Vetter8bcc2792013-06-05 13:34:28 +02005270 }
Daniel Vetter6c49f242013-06-06 12:45:25 +02005271
Jesse Barnesacbec812013-09-20 11:29:32 -07005272 if (IS_VALLEYVIEW(dev))
5273 vlv_crtc_clock_get(crtc, pipe_config);
5274 else
5275 i9xx_crtc_clock_get(crtc, pipe_config);
Ville Syrjälä18442d02013-09-13 16:00:08 +03005276
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01005277 return true;
5278}
5279
Paulo Zanonidde86e22012-12-01 12:04:25 -02005280static void ironlake_init_pch_refclk(struct drm_device *dev)
Jesse Barnes13d83a62011-08-03 12:59:20 -07005281{
5282 struct drm_i915_private *dev_priv = dev->dev_private;
5283 struct drm_mode_config *mode_config = &dev->mode_config;
Jesse Barnes13d83a62011-08-03 12:59:20 -07005284 struct intel_encoder *encoder;
Chris Wilson74cfd7a2013-03-26 16:33:04 -07005285 u32 val, final;
Jesse Barnes13d83a62011-08-03 12:59:20 -07005286 bool has_lvds = false;
Keith Packard199e5d72011-09-22 12:01:57 -07005287 bool has_cpu_edp = false;
Keith Packard199e5d72011-09-22 12:01:57 -07005288 bool has_panel = false;
Keith Packard99eb6a02011-09-26 14:29:12 -07005289 bool has_ck505 = false;
5290 bool can_ssc = false;
Jesse Barnes13d83a62011-08-03 12:59:20 -07005291
5292 /* We need to take the global config into account */
Keith Packard199e5d72011-09-22 12:01:57 -07005293 list_for_each_entry(encoder, &mode_config->encoder_list,
5294 base.head) {
5295 switch (encoder->type) {
5296 case INTEL_OUTPUT_LVDS:
5297 has_panel = true;
5298 has_lvds = true;
5299 break;
5300 case INTEL_OUTPUT_EDP:
5301 has_panel = true;
Imre Deak2de69052013-05-08 13:14:04 +03005302 if (enc_to_dig_port(&encoder->base)->port == PORT_A)
Keith Packard199e5d72011-09-22 12:01:57 -07005303 has_cpu_edp = true;
5304 break;
Jesse Barnes13d83a62011-08-03 12:59:20 -07005305 }
5306 }
5307
Keith Packard99eb6a02011-09-26 14:29:12 -07005308 if (HAS_PCH_IBX(dev)) {
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03005309 has_ck505 = dev_priv->vbt.display_clock_mode;
Keith Packard99eb6a02011-09-26 14:29:12 -07005310 can_ssc = has_ck505;
5311 } else {
5312 has_ck505 = false;
5313 can_ssc = true;
5314 }
5315
Imre Deak2de69052013-05-08 13:14:04 +03005316 DRM_DEBUG_KMS("has_panel %d has_lvds %d has_ck505 %d\n",
5317 has_panel, has_lvds, has_ck505);
Jesse Barnes13d83a62011-08-03 12:59:20 -07005318
5319 /* Ironlake: try to setup display ref clock before DPLL
5320 * enabling. This is only under driver's control after
5321 * PCH B stepping, previous chipset stepping should be
5322 * ignoring this setting.
5323 */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07005324 val = I915_READ(PCH_DREF_CONTROL);
Jesse Barnes13d83a62011-08-03 12:59:20 -07005325
Chris Wilson74cfd7a2013-03-26 16:33:04 -07005326 /* As we must carefully and slowly disable/enable each source in turn,
5327 * compute the final state we want first and check if we need to
5328 * make any changes at all.
5329 */
5330 final = val;
5331 final &= ~DREF_NONSPREAD_SOURCE_MASK;
Keith Packard99eb6a02011-09-26 14:29:12 -07005332 if (has_ck505)
Chris Wilson74cfd7a2013-03-26 16:33:04 -07005333 final |= DREF_NONSPREAD_CK505_ENABLE;
Keith Packard99eb6a02011-09-26 14:29:12 -07005334 else
Chris Wilson74cfd7a2013-03-26 16:33:04 -07005335 final |= DREF_NONSPREAD_SOURCE_ENABLE;
5336
5337 final &= ~DREF_SSC_SOURCE_MASK;
5338 final &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
5339 final &= ~DREF_SSC1_ENABLE;
Jesse Barnes13d83a62011-08-03 12:59:20 -07005340
Keith Packard199e5d72011-09-22 12:01:57 -07005341 if (has_panel) {
Chris Wilson74cfd7a2013-03-26 16:33:04 -07005342 final |= DREF_SSC_SOURCE_ENABLE;
5343
5344 if (intel_panel_use_ssc(dev_priv) && can_ssc)
5345 final |= DREF_SSC1_ENABLE;
5346
5347 if (has_cpu_edp) {
5348 if (intel_panel_use_ssc(dev_priv) && can_ssc)
5349 final |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD;
5350 else
5351 final |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD;
5352 } else
5353 final |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
5354 } else {
5355 final |= DREF_SSC_SOURCE_DISABLE;
5356 final |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
5357 }
5358
5359 if (final == val)
5360 return;
5361
5362 /* Always enable nonspread source */
5363 val &= ~DREF_NONSPREAD_SOURCE_MASK;
5364
5365 if (has_ck505)
5366 val |= DREF_NONSPREAD_CK505_ENABLE;
5367 else
5368 val |= DREF_NONSPREAD_SOURCE_ENABLE;
5369
5370 if (has_panel) {
5371 val &= ~DREF_SSC_SOURCE_MASK;
5372 val |= DREF_SSC_SOURCE_ENABLE;
Jesse Barnes13d83a62011-08-03 12:59:20 -07005373
Keith Packard199e5d72011-09-22 12:01:57 -07005374 /* SSC must be turned on before enabling the CPU output */
Keith Packard99eb6a02011-09-26 14:29:12 -07005375 if (intel_panel_use_ssc(dev_priv) && can_ssc) {
Keith Packard199e5d72011-09-22 12:01:57 -07005376 DRM_DEBUG_KMS("Using SSC on panel\n");
Chris Wilson74cfd7a2013-03-26 16:33:04 -07005377 val |= DREF_SSC1_ENABLE;
Daniel Vettere77166b2012-03-30 22:14:05 +02005378 } else
Chris Wilson74cfd7a2013-03-26 16:33:04 -07005379 val &= ~DREF_SSC1_ENABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07005380
5381 /* Get SSC going before enabling the outputs */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07005382 I915_WRITE(PCH_DREF_CONTROL, val);
Keith Packard199e5d72011-09-22 12:01:57 -07005383 POSTING_READ(PCH_DREF_CONTROL);
5384 udelay(200);
5385
Chris Wilson74cfd7a2013-03-26 16:33:04 -07005386 val &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
Jesse Barnes13d83a62011-08-03 12:59:20 -07005387
5388 /* Enable CPU source on CPU attached eDP */
Keith Packard199e5d72011-09-22 12:01:57 -07005389 if (has_cpu_edp) {
Keith Packard99eb6a02011-09-26 14:29:12 -07005390 if (intel_panel_use_ssc(dev_priv) && can_ssc) {
Keith Packard199e5d72011-09-22 12:01:57 -07005391 DRM_DEBUG_KMS("Using SSC on eDP\n");
Chris Wilson74cfd7a2013-03-26 16:33:04 -07005392 val |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD;
Keith Packard199e5d72011-09-22 12:01:57 -07005393 }
Jesse Barnes13d83a62011-08-03 12:59:20 -07005394 else
Chris Wilson74cfd7a2013-03-26 16:33:04 -07005395 val |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD;
Keith Packard199e5d72011-09-22 12:01:57 -07005396 } else
Chris Wilson74cfd7a2013-03-26 16:33:04 -07005397 val |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07005398
Chris Wilson74cfd7a2013-03-26 16:33:04 -07005399 I915_WRITE(PCH_DREF_CONTROL, val);
Keith Packard199e5d72011-09-22 12:01:57 -07005400 POSTING_READ(PCH_DREF_CONTROL);
5401 udelay(200);
5402 } else {
5403 DRM_DEBUG_KMS("Disabling SSC entirely\n");
5404
Chris Wilson74cfd7a2013-03-26 16:33:04 -07005405 val &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
Keith Packard199e5d72011-09-22 12:01:57 -07005406
5407 /* Turn off CPU output */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07005408 val |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07005409
Chris Wilson74cfd7a2013-03-26 16:33:04 -07005410 I915_WRITE(PCH_DREF_CONTROL, val);
Keith Packard199e5d72011-09-22 12:01:57 -07005411 POSTING_READ(PCH_DREF_CONTROL);
5412 udelay(200);
5413
5414 /* Turn off the SSC source */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07005415 val &= ~DREF_SSC_SOURCE_MASK;
5416 val |= DREF_SSC_SOURCE_DISABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07005417
5418 /* Turn off SSC1 */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07005419 val &= ~DREF_SSC1_ENABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07005420
Chris Wilson74cfd7a2013-03-26 16:33:04 -07005421 I915_WRITE(PCH_DREF_CONTROL, val);
Jesse Barnes13d83a62011-08-03 12:59:20 -07005422 POSTING_READ(PCH_DREF_CONTROL);
5423 udelay(200);
5424 }
Chris Wilson74cfd7a2013-03-26 16:33:04 -07005425
5426 BUG_ON(val != final);
Jesse Barnes13d83a62011-08-03 12:59:20 -07005427}
5428
Paulo Zanonif31f2d52013-07-18 18:51:11 -03005429static void lpt_reset_fdi_mphy(struct drm_i915_private *dev_priv)
Paulo Zanonidde86e22012-12-01 12:04:25 -02005430{
Paulo Zanonif31f2d52013-07-18 18:51:11 -03005431 uint32_t tmp;
Paulo Zanonidde86e22012-12-01 12:04:25 -02005432
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03005433 tmp = I915_READ(SOUTH_CHICKEN2);
5434 tmp |= FDI_MPHY_IOSFSB_RESET_CTL;
5435 I915_WRITE(SOUTH_CHICKEN2, tmp);
Paulo Zanonidde86e22012-12-01 12:04:25 -02005436
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03005437 if (wait_for_atomic_us(I915_READ(SOUTH_CHICKEN2) &
5438 FDI_MPHY_IOSFSB_RESET_STATUS, 100))
5439 DRM_ERROR("FDI mPHY reset assert timeout\n");
Paulo Zanonidde86e22012-12-01 12:04:25 -02005440
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03005441 tmp = I915_READ(SOUTH_CHICKEN2);
5442 tmp &= ~FDI_MPHY_IOSFSB_RESET_CTL;
5443 I915_WRITE(SOUTH_CHICKEN2, tmp);
Paulo Zanonidde86e22012-12-01 12:04:25 -02005444
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03005445 if (wait_for_atomic_us((I915_READ(SOUTH_CHICKEN2) &
5446 FDI_MPHY_IOSFSB_RESET_STATUS) == 0, 100))
5447 DRM_ERROR("FDI mPHY reset de-assert timeout\n");
Paulo Zanonif31f2d52013-07-18 18:51:11 -03005448}
5449
5450/* WaMPhyProgramming:hsw */
5451static void lpt_program_fdi_mphy(struct drm_i915_private *dev_priv)
5452{
5453 uint32_t tmp;
Paulo Zanonidde86e22012-12-01 12:04:25 -02005454
5455 tmp = intel_sbi_read(dev_priv, 0x8008, SBI_MPHY);
5456 tmp &= ~(0xFF << 24);
5457 tmp |= (0x12 << 24);
5458 intel_sbi_write(dev_priv, 0x8008, tmp, SBI_MPHY);
5459
Paulo Zanonidde86e22012-12-01 12:04:25 -02005460 tmp = intel_sbi_read(dev_priv, 0x2008, SBI_MPHY);
5461 tmp |= (1 << 11);
5462 intel_sbi_write(dev_priv, 0x2008, tmp, SBI_MPHY);
5463
5464 tmp = intel_sbi_read(dev_priv, 0x2108, SBI_MPHY);
5465 tmp |= (1 << 11);
5466 intel_sbi_write(dev_priv, 0x2108, tmp, SBI_MPHY);
5467
Paulo Zanonidde86e22012-12-01 12:04:25 -02005468 tmp = intel_sbi_read(dev_priv, 0x206C, SBI_MPHY);
5469 tmp |= (1 << 24) | (1 << 21) | (1 << 18);
5470 intel_sbi_write(dev_priv, 0x206C, tmp, SBI_MPHY);
5471
5472 tmp = intel_sbi_read(dev_priv, 0x216C, SBI_MPHY);
5473 tmp |= (1 << 24) | (1 << 21) | (1 << 18);
5474 intel_sbi_write(dev_priv, 0x216C, tmp, SBI_MPHY);
5475
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03005476 tmp = intel_sbi_read(dev_priv, 0x2080, SBI_MPHY);
5477 tmp &= ~(7 << 13);
5478 tmp |= (5 << 13);
5479 intel_sbi_write(dev_priv, 0x2080, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02005480
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03005481 tmp = intel_sbi_read(dev_priv, 0x2180, SBI_MPHY);
5482 tmp &= ~(7 << 13);
5483 tmp |= (5 << 13);
5484 intel_sbi_write(dev_priv, 0x2180, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02005485
5486 tmp = intel_sbi_read(dev_priv, 0x208C, SBI_MPHY);
5487 tmp &= ~0xFF;
5488 tmp |= 0x1C;
5489 intel_sbi_write(dev_priv, 0x208C, tmp, SBI_MPHY);
5490
5491 tmp = intel_sbi_read(dev_priv, 0x218C, SBI_MPHY);
5492 tmp &= ~0xFF;
5493 tmp |= 0x1C;
5494 intel_sbi_write(dev_priv, 0x218C, tmp, SBI_MPHY);
5495
5496 tmp = intel_sbi_read(dev_priv, 0x2098, SBI_MPHY);
5497 tmp &= ~(0xFF << 16);
5498 tmp |= (0x1C << 16);
5499 intel_sbi_write(dev_priv, 0x2098, tmp, SBI_MPHY);
5500
5501 tmp = intel_sbi_read(dev_priv, 0x2198, SBI_MPHY);
5502 tmp &= ~(0xFF << 16);
5503 tmp |= (0x1C << 16);
5504 intel_sbi_write(dev_priv, 0x2198, tmp, SBI_MPHY);
5505
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03005506 tmp = intel_sbi_read(dev_priv, 0x20C4, SBI_MPHY);
5507 tmp |= (1 << 27);
5508 intel_sbi_write(dev_priv, 0x20C4, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02005509
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03005510 tmp = intel_sbi_read(dev_priv, 0x21C4, SBI_MPHY);
5511 tmp |= (1 << 27);
5512 intel_sbi_write(dev_priv, 0x21C4, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02005513
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03005514 tmp = intel_sbi_read(dev_priv, 0x20EC, SBI_MPHY);
5515 tmp &= ~(0xF << 28);
5516 tmp |= (4 << 28);
5517 intel_sbi_write(dev_priv, 0x20EC, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02005518
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03005519 tmp = intel_sbi_read(dev_priv, 0x21EC, SBI_MPHY);
5520 tmp &= ~(0xF << 28);
5521 tmp |= (4 << 28);
5522 intel_sbi_write(dev_priv, 0x21EC, tmp, SBI_MPHY);
Paulo Zanonif31f2d52013-07-18 18:51:11 -03005523}
5524
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03005525/* Implements 3 different sequences from BSpec chapter "Display iCLK
5526 * Programming" based on the parameters passed:
5527 * - Sequence to enable CLKOUT_DP
5528 * - Sequence to enable CLKOUT_DP without spread
5529 * - Sequence to enable CLKOUT_DP for FDI usage and configure PCH FDI I/O
5530 */
5531static void lpt_enable_clkout_dp(struct drm_device *dev, bool with_spread,
5532 bool with_fdi)
Paulo Zanonif31f2d52013-07-18 18:51:11 -03005533{
5534 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03005535 uint32_t reg, tmp;
5536
5537 if (WARN(with_fdi && !with_spread, "FDI requires downspread\n"))
5538 with_spread = true;
5539 if (WARN(dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE &&
5540 with_fdi, "LP PCH doesn't have FDI\n"))
5541 with_fdi = false;
Paulo Zanonif31f2d52013-07-18 18:51:11 -03005542
5543 mutex_lock(&dev_priv->dpio_lock);
5544
5545 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
5546 tmp &= ~SBI_SSCCTL_DISABLE;
5547 tmp |= SBI_SSCCTL_PATHALT;
5548 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
5549
5550 udelay(24);
5551
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03005552 if (with_spread) {
5553 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
5554 tmp &= ~SBI_SSCCTL_PATHALT;
5555 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
Paulo Zanonif31f2d52013-07-18 18:51:11 -03005556
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03005557 if (with_fdi) {
5558 lpt_reset_fdi_mphy(dev_priv);
5559 lpt_program_fdi_mphy(dev_priv);
5560 }
5561 }
Paulo Zanonidde86e22012-12-01 12:04:25 -02005562
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03005563 reg = (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) ?
5564 SBI_GEN0 : SBI_DBUFF0;
5565 tmp = intel_sbi_read(dev_priv, reg, SBI_ICLK);
5566 tmp |= SBI_GEN0_CFG_BUFFENABLE_DISABLE;
5567 intel_sbi_write(dev_priv, reg, tmp, SBI_ICLK);
Daniel Vetterc00db242013-01-22 15:33:27 +01005568
5569 mutex_unlock(&dev_priv->dpio_lock);
Paulo Zanonidde86e22012-12-01 12:04:25 -02005570}
5571
Paulo Zanoni47701c32013-07-23 11:19:25 -03005572/* Sequence to disable CLKOUT_DP */
5573static void lpt_disable_clkout_dp(struct drm_device *dev)
5574{
5575 struct drm_i915_private *dev_priv = dev->dev_private;
5576 uint32_t reg, tmp;
5577
5578 mutex_lock(&dev_priv->dpio_lock);
5579
5580 reg = (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) ?
5581 SBI_GEN0 : SBI_DBUFF0;
5582 tmp = intel_sbi_read(dev_priv, reg, SBI_ICLK);
5583 tmp &= ~SBI_GEN0_CFG_BUFFENABLE_DISABLE;
5584 intel_sbi_write(dev_priv, reg, tmp, SBI_ICLK);
5585
5586 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
5587 if (!(tmp & SBI_SSCCTL_DISABLE)) {
5588 if (!(tmp & SBI_SSCCTL_PATHALT)) {
5589 tmp |= SBI_SSCCTL_PATHALT;
5590 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
5591 udelay(32);
5592 }
5593 tmp |= SBI_SSCCTL_DISABLE;
5594 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
5595 }
5596
5597 mutex_unlock(&dev_priv->dpio_lock);
5598}
5599
Paulo Zanonibf8fa3d2013-07-12 14:19:38 -03005600static void lpt_init_pch_refclk(struct drm_device *dev)
5601{
5602 struct drm_mode_config *mode_config = &dev->mode_config;
5603 struct intel_encoder *encoder;
5604 bool has_vga = false;
5605
5606 list_for_each_entry(encoder, &mode_config->encoder_list, base.head) {
5607 switch (encoder->type) {
5608 case INTEL_OUTPUT_ANALOG:
5609 has_vga = true;
5610 break;
5611 }
5612 }
5613
Paulo Zanoni47701c32013-07-23 11:19:25 -03005614 if (has_vga)
5615 lpt_enable_clkout_dp(dev, true, true);
5616 else
5617 lpt_disable_clkout_dp(dev);
Paulo Zanonibf8fa3d2013-07-12 14:19:38 -03005618}
5619
Paulo Zanonidde86e22012-12-01 12:04:25 -02005620/*
5621 * Initialize reference clocks when the driver loads
5622 */
5623void intel_init_pch_refclk(struct drm_device *dev)
5624{
5625 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev))
5626 ironlake_init_pch_refclk(dev);
5627 else if (HAS_PCH_LPT(dev))
5628 lpt_init_pch_refclk(dev);
5629}
5630
Jesse Barnesd9d444c2011-09-02 13:03:05 -07005631static int ironlake_get_refclk(struct drm_crtc *crtc)
5632{
5633 struct drm_device *dev = crtc->dev;
5634 struct drm_i915_private *dev_priv = dev->dev_private;
5635 struct intel_encoder *encoder;
Jesse Barnesd9d444c2011-09-02 13:03:05 -07005636 int num_connectors = 0;
5637 bool is_lvds = false;
5638
Daniel Vetter6c2b7c122012-07-05 09:50:24 +02005639 for_each_encoder_on_crtc(dev, crtc, encoder) {
Jesse Barnesd9d444c2011-09-02 13:03:05 -07005640 switch (encoder->type) {
5641 case INTEL_OUTPUT_LVDS:
5642 is_lvds = true;
5643 break;
Jesse Barnesd9d444c2011-09-02 13:03:05 -07005644 }
5645 num_connectors++;
5646 }
5647
5648 if (is_lvds && intel_panel_use_ssc(dev_priv) && num_connectors < 2) {
5649 DRM_DEBUG_KMS("using SSC reference clock of %d MHz\n",
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03005650 dev_priv->vbt.lvds_ssc_freq);
5651 return dev_priv->vbt.lvds_ssc_freq * 1000;
Jesse Barnesd9d444c2011-09-02 13:03:05 -07005652 }
5653
5654 return 120000;
5655}
5656
Daniel Vetter6ff93602013-04-19 11:24:36 +02005657static void ironlake_set_pipeconf(struct drm_crtc *crtc)
Paulo Zanonic8203562012-09-12 10:06:29 -03005658{
5659 struct drm_i915_private *dev_priv = crtc->dev->dev_private;
5660 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5661 int pipe = intel_crtc->pipe;
5662 uint32_t val;
5663
Daniel Vetter78114072013-06-13 00:54:57 +02005664 val = 0;
Paulo Zanonic8203562012-09-12 10:06:29 -03005665
Daniel Vetter965e0c42013-03-27 00:44:57 +01005666 switch (intel_crtc->config.pipe_bpp) {
Paulo Zanonic8203562012-09-12 10:06:29 -03005667 case 18:
Daniel Vetterdfd07d72012-12-17 11:21:38 +01005668 val |= PIPECONF_6BPC;
Paulo Zanonic8203562012-09-12 10:06:29 -03005669 break;
5670 case 24:
Daniel Vetterdfd07d72012-12-17 11:21:38 +01005671 val |= PIPECONF_8BPC;
Paulo Zanonic8203562012-09-12 10:06:29 -03005672 break;
5673 case 30:
Daniel Vetterdfd07d72012-12-17 11:21:38 +01005674 val |= PIPECONF_10BPC;
Paulo Zanonic8203562012-09-12 10:06:29 -03005675 break;
5676 case 36:
Daniel Vetterdfd07d72012-12-17 11:21:38 +01005677 val |= PIPECONF_12BPC;
Paulo Zanonic8203562012-09-12 10:06:29 -03005678 break;
5679 default:
Paulo Zanonicc769b62012-09-20 18:36:03 -03005680 /* Case prevented by intel_choose_pipe_bpp_dither. */
5681 BUG();
Paulo Zanonic8203562012-09-12 10:06:29 -03005682 }
5683
Daniel Vetterd8b32242013-04-25 17:54:44 +02005684 if (intel_crtc->config.dither)
Paulo Zanonic8203562012-09-12 10:06:29 -03005685 val |= (PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_SP);
5686
Daniel Vetter6ff93602013-04-19 11:24:36 +02005687 if (intel_crtc->config.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
Paulo Zanonic8203562012-09-12 10:06:29 -03005688 val |= PIPECONF_INTERLACED_ILK;
5689 else
5690 val |= PIPECONF_PROGRESSIVE;
5691
Daniel Vetter50f3b012013-03-27 00:44:56 +01005692 if (intel_crtc->config.limited_color_range)
Ville Syrjälä3685a8f2013-01-17 16:31:28 +02005693 val |= PIPECONF_COLOR_RANGE_SELECT;
Ville Syrjälä3685a8f2013-01-17 16:31:28 +02005694
Paulo Zanonic8203562012-09-12 10:06:29 -03005695 I915_WRITE(PIPECONF(pipe), val);
5696 POSTING_READ(PIPECONF(pipe));
5697}
5698
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02005699/*
5700 * Set up the pipe CSC unit.
5701 *
5702 * Currently only full range RGB to limited range RGB conversion
5703 * is supported, but eventually this should handle various
5704 * RGB<->YCbCr scenarios as well.
5705 */
Daniel Vetter50f3b012013-03-27 00:44:56 +01005706static void intel_set_pipe_csc(struct drm_crtc *crtc)
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02005707{
5708 struct drm_device *dev = crtc->dev;
5709 struct drm_i915_private *dev_priv = dev->dev_private;
5710 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5711 int pipe = intel_crtc->pipe;
5712 uint16_t coeff = 0x7800; /* 1.0 */
5713
5714 /*
5715 * TODO: Check what kind of values actually come out of the pipe
5716 * with these coeff/postoff values and adjust to get the best
5717 * accuracy. Perhaps we even need to take the bpc value into
5718 * consideration.
5719 */
5720
Daniel Vetter50f3b012013-03-27 00:44:56 +01005721 if (intel_crtc->config.limited_color_range)
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02005722 coeff = ((235 - 16) * (1 << 12) / 255) & 0xff8; /* 0.xxx... */
5723
5724 /*
5725 * GY/GU and RY/RU should be the other way around according
5726 * to BSpec, but reality doesn't agree. Just set them up in
5727 * a way that results in the correct picture.
5728 */
5729 I915_WRITE(PIPE_CSC_COEFF_RY_GY(pipe), coeff << 16);
5730 I915_WRITE(PIPE_CSC_COEFF_BY(pipe), 0);
5731
5732 I915_WRITE(PIPE_CSC_COEFF_RU_GU(pipe), coeff);
5733 I915_WRITE(PIPE_CSC_COEFF_BU(pipe), 0);
5734
5735 I915_WRITE(PIPE_CSC_COEFF_RV_GV(pipe), 0);
5736 I915_WRITE(PIPE_CSC_COEFF_BV(pipe), coeff << 16);
5737
5738 I915_WRITE(PIPE_CSC_PREOFF_HI(pipe), 0);
5739 I915_WRITE(PIPE_CSC_PREOFF_ME(pipe), 0);
5740 I915_WRITE(PIPE_CSC_PREOFF_LO(pipe), 0);
5741
5742 if (INTEL_INFO(dev)->gen > 6) {
5743 uint16_t postoff = 0;
5744
Daniel Vetter50f3b012013-03-27 00:44:56 +01005745 if (intel_crtc->config.limited_color_range)
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02005746 postoff = (16 * (1 << 13) / 255) & 0x1fff;
5747
5748 I915_WRITE(PIPE_CSC_POSTOFF_HI(pipe), postoff);
5749 I915_WRITE(PIPE_CSC_POSTOFF_ME(pipe), postoff);
5750 I915_WRITE(PIPE_CSC_POSTOFF_LO(pipe), postoff);
5751
5752 I915_WRITE(PIPE_CSC_MODE(pipe), 0);
5753 } else {
5754 uint32_t mode = CSC_MODE_YUV_TO_RGB;
5755
Daniel Vetter50f3b012013-03-27 00:44:56 +01005756 if (intel_crtc->config.limited_color_range)
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02005757 mode |= CSC_BLACK_SCREEN_OFFSET;
5758
5759 I915_WRITE(PIPE_CSC_MODE(pipe), mode);
5760 }
5761}
5762
Daniel Vetter6ff93602013-04-19 11:24:36 +02005763static void haswell_set_pipeconf(struct drm_crtc *crtc)
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03005764{
5765 struct drm_i915_private *dev_priv = crtc->dev->dev_private;
5766 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter3b117c82013-04-17 20:15:07 +02005767 enum transcoder cpu_transcoder = intel_crtc->config.cpu_transcoder;
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03005768 uint32_t val;
5769
Daniel Vetter3eff4fa2013-06-13 00:54:59 +02005770 val = 0;
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03005771
Daniel Vetterd8b32242013-04-25 17:54:44 +02005772 if (intel_crtc->config.dither)
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03005773 val |= (PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_SP);
5774
Daniel Vetter6ff93602013-04-19 11:24:36 +02005775 if (intel_crtc->config.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03005776 val |= PIPECONF_INTERLACED_ILK;
5777 else
5778 val |= PIPECONF_PROGRESSIVE;
5779
Paulo Zanoni702e7a52012-10-23 18:29:59 -02005780 I915_WRITE(PIPECONF(cpu_transcoder), val);
5781 POSTING_READ(PIPECONF(cpu_transcoder));
Daniel Vetter3eff4fa2013-06-13 00:54:59 +02005782
5783 I915_WRITE(GAMMA_MODE(intel_crtc->pipe), GAMMA_MODE_MODE_8BIT);
5784 POSTING_READ(GAMMA_MODE(intel_crtc->pipe));
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03005785}
5786
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03005787static bool ironlake_compute_clocks(struct drm_crtc *crtc,
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03005788 intel_clock_t *clock,
5789 bool *has_reduced_clock,
5790 intel_clock_t *reduced_clock)
5791{
5792 struct drm_device *dev = crtc->dev;
5793 struct drm_i915_private *dev_priv = dev->dev_private;
5794 struct intel_encoder *intel_encoder;
5795 int refclk;
5796 const intel_limit_t *limit;
Daniel Vettera16af7212013-04-30 14:01:44 +02005797 bool ret, is_lvds = false;
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03005798
5799 for_each_encoder_on_crtc(dev, crtc, intel_encoder) {
5800 switch (intel_encoder->type) {
5801 case INTEL_OUTPUT_LVDS:
5802 is_lvds = true;
5803 break;
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03005804 }
5805 }
5806
5807 refclk = ironlake_get_refclk(crtc);
5808
5809 /*
5810 * Returns a set of divisors for the desired target clock with the given
5811 * refclk, or FALSE. The returned values represent the clock equation:
5812 * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2.
5813 */
5814 limit = intel_limit(crtc, refclk);
Daniel Vetterff9a6752013-06-01 17:16:21 +02005815 ret = dev_priv->display.find_dpll(limit, crtc,
5816 to_intel_crtc(crtc)->config.port_clock,
Daniel Vetteree9300b2013-06-03 22:40:22 +02005817 refclk, NULL, clock);
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03005818 if (!ret)
5819 return false;
5820
5821 if (is_lvds && dev_priv->lvds_downclock_avail) {
5822 /*
5823 * Ensure we match the reduced clock's P to the target clock.
5824 * If the clocks don't match, we can't switch the display clock
5825 * by using the FP0/FP1. In such case we will disable the LVDS
5826 * downclock feature.
5827 */
Daniel Vetteree9300b2013-06-03 22:40:22 +02005828 *has_reduced_clock =
5829 dev_priv->display.find_dpll(limit, crtc,
5830 dev_priv->lvds_downclock,
5831 refclk, clock,
5832 reduced_clock);
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03005833 }
5834
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03005835 return true;
5836}
5837
Daniel Vetter01a415f2012-10-27 15:58:40 +02005838static void cpt_enable_fdi_bc_bifurcation(struct drm_device *dev)
5839{
5840 struct drm_i915_private *dev_priv = dev->dev_private;
5841 uint32_t temp;
5842
5843 temp = I915_READ(SOUTH_CHICKEN1);
5844 if (temp & FDI_BC_BIFURCATION_SELECT)
5845 return;
5846
5847 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_B)) & FDI_RX_ENABLE);
5848 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_C)) & FDI_RX_ENABLE);
5849
5850 temp |= FDI_BC_BIFURCATION_SELECT;
5851 DRM_DEBUG_KMS("enabling fdi C rx\n");
5852 I915_WRITE(SOUTH_CHICKEN1, temp);
5853 POSTING_READ(SOUTH_CHICKEN1);
5854}
5855
Daniel Vetterebfd86f2013-04-19 11:24:44 +02005856static void ivybridge_update_fdi_bc_bifurcation(struct intel_crtc *intel_crtc)
Daniel Vetter01a415f2012-10-27 15:58:40 +02005857{
5858 struct drm_device *dev = intel_crtc->base.dev;
5859 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter01a415f2012-10-27 15:58:40 +02005860
5861 switch (intel_crtc->pipe) {
5862 case PIPE_A:
Daniel Vetterebfd86f2013-04-19 11:24:44 +02005863 break;
Daniel Vetter01a415f2012-10-27 15:58:40 +02005864 case PIPE_B:
Daniel Vetterebfd86f2013-04-19 11:24:44 +02005865 if (intel_crtc->config.fdi_lanes > 2)
Daniel Vetter01a415f2012-10-27 15:58:40 +02005866 WARN_ON(I915_READ(SOUTH_CHICKEN1) & FDI_BC_BIFURCATION_SELECT);
5867 else
5868 cpt_enable_fdi_bc_bifurcation(dev);
5869
Daniel Vetterebfd86f2013-04-19 11:24:44 +02005870 break;
Daniel Vetter01a415f2012-10-27 15:58:40 +02005871 case PIPE_C:
Daniel Vetter01a415f2012-10-27 15:58:40 +02005872 cpt_enable_fdi_bc_bifurcation(dev);
5873
Daniel Vetterebfd86f2013-04-19 11:24:44 +02005874 break;
Daniel Vetter01a415f2012-10-27 15:58:40 +02005875 default:
5876 BUG();
5877 }
5878}
5879
Paulo Zanonid4b19312012-11-29 11:29:32 -02005880int ironlake_get_lanes_required(int target_clock, int link_bw, int bpp)
5881{
5882 /*
5883 * Account for spread spectrum to avoid
5884 * oversubscribing the link. Max center spread
5885 * is 2.5%; use 5% for safety's sake.
5886 */
5887 u32 bps = target_clock * bpp * 21 / 20;
5888 return bps / (link_bw * 8) + 1;
5889}
5890
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005891static bool ironlake_needs_fb_cb_tune(struct dpll *dpll, int factor)
Daniel Vetter6cf86a52013-04-02 23:38:10 +02005892{
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005893 return i9xx_dpll_compute_m(dpll) < factor * dpll->n;
Paulo Zanonif48d8f22012-09-20 18:36:04 -03005894}
5895
Paulo Zanonide13a2e2012-09-20 18:36:05 -03005896static uint32_t ironlake_compute_dpll(struct intel_crtc *intel_crtc,
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005897 u32 *fp,
Daniel Vetter9a7c7892013-04-04 22:20:34 +02005898 intel_clock_t *reduced_clock, u32 *fp2)
Paulo Zanonide13a2e2012-09-20 18:36:05 -03005899{
5900 struct drm_crtc *crtc = &intel_crtc->base;
5901 struct drm_device *dev = crtc->dev;
5902 struct drm_i915_private *dev_priv = dev->dev_private;
5903 struct intel_encoder *intel_encoder;
5904 uint32_t dpll;
Daniel Vetter6cc5f342013-03-27 00:44:53 +01005905 int factor, num_connectors = 0;
Daniel Vetter09ede542013-04-30 14:01:45 +02005906 bool is_lvds = false, is_sdvo = false;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03005907
5908 for_each_encoder_on_crtc(dev, crtc, intel_encoder) {
5909 switch (intel_encoder->type) {
5910 case INTEL_OUTPUT_LVDS:
5911 is_lvds = true;
5912 break;
5913 case INTEL_OUTPUT_SDVO:
5914 case INTEL_OUTPUT_HDMI:
5915 is_sdvo = true;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03005916 break;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03005917 }
5918
5919 num_connectors++;
5920 }
Jesse Barnes79e53942008-11-07 14:24:08 -08005921
Chris Wilsonc1858122010-12-03 21:35:48 +00005922 /* Enable autotuning of the PLL clock (if permissible) */
Eric Anholt8febb292011-03-30 13:01:07 -07005923 factor = 21;
5924 if (is_lvds) {
5925 if ((intel_panel_use_ssc(dev_priv) &&
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03005926 dev_priv->vbt.lvds_ssc_freq == 100) ||
Daniel Vetterf0b44052013-04-04 22:20:33 +02005927 (HAS_PCH_IBX(dev) && intel_is_dual_link_lvds(dev)))
Eric Anholt8febb292011-03-30 13:01:07 -07005928 factor = 25;
Daniel Vetter09ede542013-04-30 14:01:45 +02005929 } else if (intel_crtc->config.sdvo_tv_clock)
Eric Anholt8febb292011-03-30 13:01:07 -07005930 factor = 20;
Chris Wilsonc1858122010-12-03 21:35:48 +00005931
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005932 if (ironlake_needs_fb_cb_tune(&intel_crtc->config.dpll, factor))
Daniel Vetter7d0ac5b2013-04-04 22:20:32 +02005933 *fp |= FP_CB_TUNE;
Chris Wilsonc1858122010-12-03 21:35:48 +00005934
Daniel Vetter9a7c7892013-04-04 22:20:34 +02005935 if (fp2 && (reduced_clock->m < factor * reduced_clock->n))
5936 *fp2 |= FP_CB_TUNE;
5937
Chris Wilson5eddb702010-09-11 13:48:45 +01005938 dpll = 0;
Zhenyu Wang2c072452009-06-05 15:38:42 +08005939
Eric Anholta07d6782011-03-30 13:01:08 -07005940 if (is_lvds)
5941 dpll |= DPLLB_MODE_LVDS;
5942 else
5943 dpll |= DPLLB_MODE_DAC_SERIAL;
Daniel Vetter198a037f2013-04-19 11:14:37 +02005944
Daniel Vetteref1b4602013-06-01 17:17:04 +02005945 dpll |= (intel_crtc->config.pixel_multiplier - 1)
5946 << PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT;
Daniel Vetter198a037f2013-04-19 11:14:37 +02005947
5948 if (is_sdvo)
Daniel Vetter4a33e482013-07-06 12:52:05 +02005949 dpll |= DPLL_SDVO_HIGH_SPEED;
Daniel Vetter9566e9a2013-04-19 11:14:36 +02005950 if (intel_crtc->config.has_dp_encoder)
Daniel Vetter4a33e482013-07-06 12:52:05 +02005951 dpll |= DPLL_SDVO_HIGH_SPEED;
Jesse Barnes79e53942008-11-07 14:24:08 -08005952
Eric Anholta07d6782011-03-30 13:01:08 -07005953 /* compute bitmask from p1 value */
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005954 dpll |= (1 << (intel_crtc->config.dpll.p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
Eric Anholta07d6782011-03-30 13:01:08 -07005955 /* also FPA1 */
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005956 dpll |= (1 << (intel_crtc->config.dpll.p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
Eric Anholta07d6782011-03-30 13:01:08 -07005957
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005958 switch (intel_crtc->config.dpll.p2) {
Eric Anholta07d6782011-03-30 13:01:08 -07005959 case 5:
5960 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
5961 break;
5962 case 7:
5963 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
5964 break;
5965 case 10:
5966 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
5967 break;
5968 case 14:
5969 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
5970 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08005971 }
5972
Daniel Vetterb4c09f32013-04-30 14:01:42 +02005973 if (is_lvds && intel_panel_use_ssc(dev_priv) && num_connectors < 2)
Kristian Høgsberg43565a02009-02-13 20:56:52 -05005974 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
Jesse Barnes79e53942008-11-07 14:24:08 -08005975 else
5976 dpll |= PLL_REF_INPUT_DREFCLK;
5977
Daniel Vetter959e16d2013-06-05 13:34:21 +02005978 return dpll | DPLL_VCO_ENABLE;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03005979}
5980
Jesse Barnes79e53942008-11-07 14:24:08 -08005981static int ironlake_crtc_mode_set(struct drm_crtc *crtc,
Jesse Barnes79e53942008-11-07 14:24:08 -08005982 int x, int y,
Daniel Vetter94352cf2012-07-05 22:51:56 +02005983 struct drm_framebuffer *fb)
Jesse Barnes79e53942008-11-07 14:24:08 -08005984{
5985 struct drm_device *dev = crtc->dev;
5986 struct drm_i915_private *dev_priv = dev->dev_private;
5987 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5988 int pipe = intel_crtc->pipe;
5989 int plane = intel_crtc->plane;
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03005990 int num_connectors = 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08005991 intel_clock_t clock, reduced_clock;
Daniel Vettercbbab5b2013-04-19 11:14:31 +02005992 u32 dpll = 0, fp = 0, fp2 = 0;
Paulo Zanonie2f12b02012-09-20 18:36:06 -03005993 bool ok, has_reduced_clock = false;
Daniel Vetter8b470472013-03-28 10:41:59 +01005994 bool is_lvds = false;
Paulo Zanonif48d8f22012-09-20 18:36:04 -03005995 struct intel_encoder *encoder;
Daniel Vettere2b78262013-06-07 23:10:03 +02005996 struct intel_shared_dpll *pll;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03005997 int ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08005998
5999 for_each_encoder_on_crtc(dev, crtc, encoder) {
6000 switch (encoder->type) {
6001 case INTEL_OUTPUT_LVDS:
6002 is_lvds = true;
6003 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08006004 }
6005
6006 num_connectors++;
6007 }
6008
Paulo Zanoni5dc52982012-10-05 12:05:56 -03006009 WARN(!(HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev)),
6010 "Unexpected PCH type %d\n", INTEL_PCH_TYPE(dev));
6011
Daniel Vetterff9a6752013-06-01 17:16:21 +02006012 ok = ironlake_compute_clocks(crtc, &clock,
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03006013 &has_reduced_clock, &reduced_clock);
Daniel Vetteree9300b2013-06-03 22:40:22 +02006014 if (!ok && !intel_crtc->config.clock_set) {
Jesse Barnes79e53942008-11-07 14:24:08 -08006015 DRM_ERROR("Couldn't find PLL settings for mode!\n");
6016 return -EINVAL;
6017 }
Daniel Vetterf47709a2013-03-28 10:42:02 +01006018 /* Compat-code for transition, will disappear. */
6019 if (!intel_crtc->config.clock_set) {
6020 intel_crtc->config.dpll.n = clock.n;
6021 intel_crtc->config.dpll.m1 = clock.m1;
6022 intel_crtc->config.dpll.m2 = clock.m2;
6023 intel_crtc->config.dpll.p1 = clock.p1;
6024 intel_crtc->config.dpll.p2 = clock.p2;
6025 }
Jesse Barnes79e53942008-11-07 14:24:08 -08006026
Paulo Zanoni5dc52982012-10-05 12:05:56 -03006027 /* CPU eDP is the only output that doesn't need a PCH PLL of its own. */
Daniel Vetter8b470472013-03-28 10:41:59 +01006028 if (intel_crtc->config.has_pch_encoder) {
Daniel Vetter7429e9d2013-04-20 17:19:46 +02006029 fp = i9xx_dpll_compute_fp(&intel_crtc->config.dpll);
Daniel Vettercbbab5b2013-04-19 11:14:31 +02006030 if (has_reduced_clock)
Daniel Vetter7429e9d2013-04-20 17:19:46 +02006031 fp2 = i9xx_dpll_compute_fp(&reduced_clock);
Daniel Vettercbbab5b2013-04-19 11:14:31 +02006032
Daniel Vetter7429e9d2013-04-20 17:19:46 +02006033 dpll = ironlake_compute_dpll(intel_crtc,
Daniel Vettercbbab5b2013-04-19 11:14:31 +02006034 &fp, &reduced_clock,
6035 has_reduced_clock ? &fp2 : NULL);
6036
Daniel Vetter959e16d2013-06-05 13:34:21 +02006037 intel_crtc->config.dpll_hw_state.dpll = dpll;
Daniel Vetter66e985c2013-06-05 13:34:20 +02006038 intel_crtc->config.dpll_hw_state.fp0 = fp;
6039 if (has_reduced_clock)
6040 intel_crtc->config.dpll_hw_state.fp1 = fp2;
6041 else
6042 intel_crtc->config.dpll_hw_state.fp1 = fp;
6043
Daniel Vetterb89a1d32013-06-05 13:34:24 +02006044 pll = intel_get_shared_dpll(intel_crtc);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01006045 if (pll == NULL) {
Ville Syrjälä84f44ce2013-04-17 17:48:49 +03006046 DRM_DEBUG_DRIVER("failed to find PLL for pipe %c\n",
6047 pipe_name(pipe));
Jesse Barnes4b645f12011-10-12 09:51:31 -07006048 return -EINVAL;
6049 }
Jesse Barnesee7b9f92012-04-20 17:11:53 +01006050 } else
Daniel Vettere72f9fb2013-06-05 13:34:06 +02006051 intel_put_shared_dpll(intel_crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08006052
Daniel Vetter03afc4a2013-04-02 23:42:31 +02006053 if (intel_crtc->config.has_dp_encoder)
6054 intel_dp_set_m_n(intel_crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08006055
Daniel Vetterbcd644e2013-06-05 13:34:22 +02006056 if (is_lvds && has_reduced_clock && i915_powersave)
6057 intel_crtc->lowfreq_avail = true;
6058 else
6059 intel_crtc->lowfreq_avail = false;
Daniel Vettere2b78262013-06-07 23:10:03 +02006060
6061 if (intel_crtc->config.has_pch_encoder) {
6062 pll = intel_crtc_to_shared_dpll(intel_crtc);
6063
Jesse Barnes79e53942008-11-07 14:24:08 -08006064 }
Jesse Barnes79e53942008-11-07 14:24:08 -08006065
Daniel Vetter8a654f32013-06-01 17:16:22 +02006066 intel_set_pipe_timings(intel_crtc);
Krzysztof Halasa734b4152010-05-25 18:41:46 +02006067
Daniel Vetterca3a0ff2013-02-14 16:54:22 +01006068 if (intel_crtc->config.has_pch_encoder) {
Daniel Vetterca3a0ff2013-02-14 16:54:22 +01006069 intel_cpu_transcoder_set_m_n(intel_crtc,
6070 &intel_crtc->config.fdi_m_n);
6071 }
Chris Wilson5eddb702010-09-11 13:48:45 +01006072
Daniel Vetterebfd86f2013-04-19 11:24:44 +02006073 if (IS_IVYBRIDGE(dev))
6074 ivybridge_update_fdi_bc_bifurcation(intel_crtc);
Zhenyu Wang2c072452009-06-05 15:38:42 +08006075
Daniel Vetter6ff93602013-04-19 11:24:36 +02006076 ironlake_set_pipeconf(crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08006077
Paulo Zanonia1f9e772012-09-12 10:06:32 -03006078 /* Set up the display plane register */
6079 I915_WRITE(DSPCNTR(plane), DISPPLANE_GAMMA_ENABLE);
Jesse Barnesb24e7172011-01-04 15:09:30 -08006080 POSTING_READ(DSPCNTR(plane));
Jesse Barnes79e53942008-11-07 14:24:08 -08006081
Daniel Vetter94352cf2012-07-05 22:51:56 +02006082 ret = intel_pipe_set_base(crtc, x, y, fb);
Shaohua Li7662c8b2009-06-26 11:23:55 +08006083
Daniel Vetter1857e1d2013-04-29 19:34:16 +02006084 return ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08006085}
6086
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03006087static void intel_pch_transcoder_get_m_n(struct intel_crtc *crtc,
6088 struct intel_link_m_n *m_n)
Daniel Vetter72419202013-04-04 13:28:53 +02006089{
6090 struct drm_device *dev = crtc->base.dev;
6091 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03006092 enum pipe pipe = crtc->pipe;
Daniel Vetter72419202013-04-04 13:28:53 +02006093
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03006094 m_n->link_m = I915_READ(PCH_TRANS_LINK_M1(pipe));
6095 m_n->link_n = I915_READ(PCH_TRANS_LINK_N1(pipe));
6096 m_n->gmch_m = I915_READ(PCH_TRANS_DATA_M1(pipe))
6097 & ~TU_SIZE_MASK;
6098 m_n->gmch_n = I915_READ(PCH_TRANS_DATA_N1(pipe));
6099 m_n->tu = ((I915_READ(PCH_TRANS_DATA_M1(pipe))
6100 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
6101}
6102
6103static void intel_cpu_transcoder_get_m_n(struct intel_crtc *crtc,
6104 enum transcoder transcoder,
6105 struct intel_link_m_n *m_n)
6106{
6107 struct drm_device *dev = crtc->base.dev;
6108 struct drm_i915_private *dev_priv = dev->dev_private;
6109 enum pipe pipe = crtc->pipe;
6110
6111 if (INTEL_INFO(dev)->gen >= 5) {
6112 m_n->link_m = I915_READ(PIPE_LINK_M1(transcoder));
6113 m_n->link_n = I915_READ(PIPE_LINK_N1(transcoder));
6114 m_n->gmch_m = I915_READ(PIPE_DATA_M1(transcoder))
6115 & ~TU_SIZE_MASK;
6116 m_n->gmch_n = I915_READ(PIPE_DATA_N1(transcoder));
6117 m_n->tu = ((I915_READ(PIPE_DATA_M1(transcoder))
6118 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
6119 } else {
6120 m_n->link_m = I915_READ(PIPE_LINK_M_G4X(pipe));
6121 m_n->link_n = I915_READ(PIPE_LINK_N_G4X(pipe));
6122 m_n->gmch_m = I915_READ(PIPE_DATA_M_G4X(pipe))
6123 & ~TU_SIZE_MASK;
6124 m_n->gmch_n = I915_READ(PIPE_DATA_N_G4X(pipe));
6125 m_n->tu = ((I915_READ(PIPE_DATA_M_G4X(pipe))
6126 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
6127 }
6128}
6129
6130void intel_dp_get_m_n(struct intel_crtc *crtc,
6131 struct intel_crtc_config *pipe_config)
6132{
6133 if (crtc->config.has_pch_encoder)
6134 intel_pch_transcoder_get_m_n(crtc, &pipe_config->dp_m_n);
6135 else
6136 intel_cpu_transcoder_get_m_n(crtc, pipe_config->cpu_transcoder,
6137 &pipe_config->dp_m_n);
6138}
6139
Daniel Vetter72419202013-04-04 13:28:53 +02006140static void ironlake_get_fdi_m_n_config(struct intel_crtc *crtc,
6141 struct intel_crtc_config *pipe_config)
6142{
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03006143 intel_cpu_transcoder_get_m_n(crtc, pipe_config->cpu_transcoder,
6144 &pipe_config->fdi_m_n);
Daniel Vetter72419202013-04-04 13:28:53 +02006145}
6146
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02006147static void ironlake_get_pfit_config(struct intel_crtc *crtc,
6148 struct intel_crtc_config *pipe_config)
6149{
6150 struct drm_device *dev = crtc->base.dev;
6151 struct drm_i915_private *dev_priv = dev->dev_private;
6152 uint32_t tmp;
6153
6154 tmp = I915_READ(PF_CTL(crtc->pipe));
6155
6156 if (tmp & PF_ENABLE) {
Chris Wilsonfd4daa92013-08-27 17:04:17 +01006157 pipe_config->pch_pfit.enabled = true;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02006158 pipe_config->pch_pfit.pos = I915_READ(PF_WIN_POS(crtc->pipe));
6159 pipe_config->pch_pfit.size = I915_READ(PF_WIN_SZ(crtc->pipe));
Daniel Vettercb8b2a32013-06-01 17:16:23 +02006160
6161 /* We currently do not free assignements of panel fitters on
6162 * ivb/hsw (since we don't use the higher upscaling modes which
6163 * differentiates them) so just WARN about this case for now. */
6164 if (IS_GEN7(dev)) {
6165 WARN_ON((tmp & PF_PIPE_SEL_MASK_IVB) !=
6166 PF_PIPE_SEL_IVB(crtc->pipe));
6167 }
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02006168 }
Jesse Barnes79e53942008-11-07 14:24:08 -08006169}
6170
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01006171static bool ironlake_get_pipe_config(struct intel_crtc *crtc,
6172 struct intel_crtc_config *pipe_config)
6173{
6174 struct drm_device *dev = crtc->base.dev;
6175 struct drm_i915_private *dev_priv = dev->dev_private;
6176 uint32_t tmp;
6177
Daniel Vettere143a212013-07-04 12:01:15 +02006178 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +02006179 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
Daniel Vettereccb1402013-05-22 00:50:22 +02006180
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01006181 tmp = I915_READ(PIPECONF(crtc->pipe));
6182 if (!(tmp & PIPECONF_ENABLE))
6183 return false;
6184
Ville Syrjälä42571ae2013-09-06 23:29:00 +03006185 switch (tmp & PIPECONF_BPC_MASK) {
6186 case PIPECONF_6BPC:
6187 pipe_config->pipe_bpp = 18;
6188 break;
6189 case PIPECONF_8BPC:
6190 pipe_config->pipe_bpp = 24;
6191 break;
6192 case PIPECONF_10BPC:
6193 pipe_config->pipe_bpp = 30;
6194 break;
6195 case PIPECONF_12BPC:
6196 pipe_config->pipe_bpp = 36;
6197 break;
6198 default:
6199 break;
6200 }
6201
Daniel Vetterab9412b2013-05-03 11:49:46 +02006202 if (I915_READ(PCH_TRANSCONF(crtc->pipe)) & TRANS_ENABLE) {
Daniel Vetter66e985c2013-06-05 13:34:20 +02006203 struct intel_shared_dpll *pll;
6204
Daniel Vetter88adfff2013-03-28 10:42:01 +01006205 pipe_config->has_pch_encoder = true;
6206
Daniel Vetter627eb5a2013-04-29 19:33:42 +02006207 tmp = I915_READ(FDI_RX_CTL(crtc->pipe));
6208 pipe_config->fdi_lanes = ((FDI_DP_PORT_WIDTH_MASK & tmp) >>
6209 FDI_DP_PORT_WIDTH_SHIFT) + 1;
Daniel Vetter72419202013-04-04 13:28:53 +02006210
6211 ironlake_get_fdi_m_n_config(crtc, pipe_config);
Daniel Vetter6c49f242013-06-06 12:45:25 +02006212
Daniel Vetterc0d43d62013-06-07 23:11:08 +02006213 if (HAS_PCH_IBX(dev_priv->dev)) {
Daniel Vetterd94ab062013-07-04 12:01:16 +02006214 pipe_config->shared_dpll =
6215 (enum intel_dpll_id) crtc->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +02006216 } else {
6217 tmp = I915_READ(PCH_DPLL_SEL);
6218 if (tmp & TRANS_DPLLB_SEL(crtc->pipe))
6219 pipe_config->shared_dpll = DPLL_ID_PCH_PLL_B;
6220 else
6221 pipe_config->shared_dpll = DPLL_ID_PCH_PLL_A;
6222 }
Daniel Vetter66e985c2013-06-05 13:34:20 +02006223
6224 pll = &dev_priv->shared_dplls[pipe_config->shared_dpll];
6225
6226 WARN_ON(!pll->get_hw_state(dev_priv, pll,
6227 &pipe_config->dpll_hw_state));
Daniel Vetterc93f54c2013-06-27 19:47:19 +02006228
6229 tmp = pipe_config->dpll_hw_state.dpll;
6230 pipe_config->pixel_multiplier =
6231 ((tmp & PLL_REF_SDVO_HDMI_MULTIPLIER_MASK)
6232 >> PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT) + 1;
Ville Syrjälä18442d02013-09-13 16:00:08 +03006233
6234 ironlake_pch_clock_get(crtc, pipe_config);
Daniel Vetter6c49f242013-06-06 12:45:25 +02006235 } else {
6236 pipe_config->pixel_multiplier = 1;
Daniel Vetter627eb5a2013-04-29 19:33:42 +02006237 }
6238
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02006239 intel_get_pipe_timings(crtc, pipe_config);
6240
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02006241 ironlake_get_pfit_config(crtc, pipe_config);
6242
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01006243 return true;
6244}
6245
Paulo Zanonibe256dc2013-07-23 11:19:26 -03006246static void assert_can_disable_lcpll(struct drm_i915_private *dev_priv)
6247{
6248 struct drm_device *dev = dev_priv->dev;
6249 struct intel_ddi_plls *plls = &dev_priv->ddi_plls;
6250 struct intel_crtc *crtc;
6251 unsigned long irqflags;
Paulo Zanonibd633a72013-08-19 13:18:08 -03006252 uint32_t val;
Paulo Zanonibe256dc2013-07-23 11:19:26 -03006253
6254 list_for_each_entry(crtc, &dev->mode_config.crtc_list, base.head)
6255 WARN(crtc->base.enabled, "CRTC for pipe %c enabled\n",
6256 pipe_name(crtc->pipe));
6257
6258 WARN(I915_READ(HSW_PWR_WELL_DRIVER), "Power well on\n");
6259 WARN(plls->spll_refcount, "SPLL enabled\n");
6260 WARN(plls->wrpll1_refcount, "WRPLL1 enabled\n");
6261 WARN(plls->wrpll2_refcount, "WRPLL2 enabled\n");
6262 WARN(I915_READ(PCH_PP_STATUS) & PP_ON, "Panel power on\n");
6263 WARN(I915_READ(BLC_PWM_CPU_CTL2) & BLM_PWM_ENABLE,
6264 "CPU PWM1 enabled\n");
6265 WARN(I915_READ(HSW_BLC_PWM2_CTL) & BLM_PWM_ENABLE,
6266 "CPU PWM2 enabled\n");
6267 WARN(I915_READ(BLC_PWM_PCH_CTL1) & BLM_PCH_PWM_ENABLE,
6268 "PCH PWM1 enabled\n");
6269 WARN(I915_READ(UTIL_PIN_CTL) & UTIL_PIN_ENABLE,
6270 "Utility pin enabled\n");
6271 WARN(I915_READ(PCH_GTC_CTL) & PCH_GTC_ENABLE, "PCH GTC enabled\n");
6272
6273 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
6274 val = I915_READ(DEIMR);
6275 WARN((val & ~DE_PCH_EVENT_IVB) != val,
6276 "Unexpected DEIMR bits enabled: 0x%x\n", val);
6277 val = I915_READ(SDEIMR);
Paulo Zanonibd633a72013-08-19 13:18:08 -03006278 WARN((val | SDE_HOTPLUG_MASK_CPT) != 0xffffffff,
Paulo Zanonibe256dc2013-07-23 11:19:26 -03006279 "Unexpected SDEIMR bits enabled: 0x%x\n", val);
6280 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
6281}
6282
6283/*
6284 * This function implements pieces of two sequences from BSpec:
6285 * - Sequence for display software to disable LCPLL
6286 * - Sequence for display software to allow package C8+
6287 * The steps implemented here are just the steps that actually touch the LCPLL
6288 * register. Callers should take care of disabling all the display engine
6289 * functions, doing the mode unset, fixing interrupts, etc.
6290 */
Paulo Zanoni6ff58d52013-09-24 13:52:57 -03006291static void hsw_disable_lcpll(struct drm_i915_private *dev_priv,
6292 bool switch_to_fclk, bool allow_power_down)
Paulo Zanonibe256dc2013-07-23 11:19:26 -03006293{
6294 uint32_t val;
6295
6296 assert_can_disable_lcpll(dev_priv);
6297
6298 val = I915_READ(LCPLL_CTL);
6299
6300 if (switch_to_fclk) {
6301 val |= LCPLL_CD_SOURCE_FCLK;
6302 I915_WRITE(LCPLL_CTL, val);
6303
6304 if (wait_for_atomic_us(I915_READ(LCPLL_CTL) &
6305 LCPLL_CD_SOURCE_FCLK_DONE, 1))
6306 DRM_ERROR("Switching to FCLK failed\n");
6307
6308 val = I915_READ(LCPLL_CTL);
6309 }
6310
6311 val |= LCPLL_PLL_DISABLE;
6312 I915_WRITE(LCPLL_CTL, val);
6313 POSTING_READ(LCPLL_CTL);
6314
6315 if (wait_for((I915_READ(LCPLL_CTL) & LCPLL_PLL_LOCK) == 0, 1))
6316 DRM_ERROR("LCPLL still locked\n");
6317
6318 val = I915_READ(D_COMP);
6319 val |= D_COMP_COMP_DISABLE;
Paulo Zanoni515b2392013-09-10 19:36:37 -03006320 mutex_lock(&dev_priv->rps.hw_lock);
6321 if (sandybridge_pcode_write(dev_priv, GEN6_PCODE_WRITE_D_COMP, val))
6322 DRM_ERROR("Failed to disable D_COMP\n");
6323 mutex_unlock(&dev_priv->rps.hw_lock);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03006324 POSTING_READ(D_COMP);
6325 ndelay(100);
6326
6327 if (wait_for((I915_READ(D_COMP) & D_COMP_RCOMP_IN_PROGRESS) == 0, 1))
6328 DRM_ERROR("D_COMP RCOMP still in progress\n");
6329
6330 if (allow_power_down) {
6331 val = I915_READ(LCPLL_CTL);
6332 val |= LCPLL_POWER_DOWN_ALLOW;
6333 I915_WRITE(LCPLL_CTL, val);
6334 POSTING_READ(LCPLL_CTL);
6335 }
6336}
6337
6338/*
6339 * Fully restores LCPLL, disallowing power down and switching back to LCPLL
6340 * source.
6341 */
Paulo Zanoni6ff58d52013-09-24 13:52:57 -03006342static void hsw_restore_lcpll(struct drm_i915_private *dev_priv)
Paulo Zanonibe256dc2013-07-23 11:19:26 -03006343{
6344 uint32_t val;
6345
6346 val = I915_READ(LCPLL_CTL);
6347
6348 if ((val & (LCPLL_PLL_LOCK | LCPLL_PLL_DISABLE | LCPLL_CD_SOURCE_FCLK |
6349 LCPLL_POWER_DOWN_ALLOW)) == LCPLL_PLL_LOCK)
6350 return;
6351
Paulo Zanoni215733f2013-08-19 13:18:07 -03006352 /* Make sure we're not on PC8 state before disabling PC8, otherwise
6353 * we'll hang the machine! */
6354 dev_priv->uncore.funcs.force_wake_get(dev_priv);
6355
Paulo Zanonibe256dc2013-07-23 11:19:26 -03006356 if (val & LCPLL_POWER_DOWN_ALLOW) {
6357 val &= ~LCPLL_POWER_DOWN_ALLOW;
6358 I915_WRITE(LCPLL_CTL, val);
Daniel Vetter35d8f2e2013-08-21 23:38:08 +02006359 POSTING_READ(LCPLL_CTL);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03006360 }
6361
6362 val = I915_READ(D_COMP);
6363 val |= D_COMP_COMP_FORCE;
6364 val &= ~D_COMP_COMP_DISABLE;
Paulo Zanoni515b2392013-09-10 19:36:37 -03006365 mutex_lock(&dev_priv->rps.hw_lock);
6366 if (sandybridge_pcode_write(dev_priv, GEN6_PCODE_WRITE_D_COMP, val))
6367 DRM_ERROR("Failed to enable D_COMP\n");
6368 mutex_unlock(&dev_priv->rps.hw_lock);
Daniel Vetter35d8f2e2013-08-21 23:38:08 +02006369 POSTING_READ(D_COMP);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03006370
6371 val = I915_READ(LCPLL_CTL);
6372 val &= ~LCPLL_PLL_DISABLE;
6373 I915_WRITE(LCPLL_CTL, val);
6374
6375 if (wait_for(I915_READ(LCPLL_CTL) & LCPLL_PLL_LOCK, 5))
6376 DRM_ERROR("LCPLL not locked yet\n");
6377
6378 if (val & LCPLL_CD_SOURCE_FCLK) {
6379 val = I915_READ(LCPLL_CTL);
6380 val &= ~LCPLL_CD_SOURCE_FCLK;
6381 I915_WRITE(LCPLL_CTL, val);
6382
6383 if (wait_for_atomic_us((I915_READ(LCPLL_CTL) &
6384 LCPLL_CD_SOURCE_FCLK_DONE) == 0, 1))
6385 DRM_ERROR("Switching back to LCPLL failed\n");
6386 }
Paulo Zanoni215733f2013-08-19 13:18:07 -03006387
6388 dev_priv->uncore.funcs.force_wake_put(dev_priv);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03006389}
6390
Paulo Zanonic67a4702013-08-19 13:18:09 -03006391void hsw_enable_pc8_work(struct work_struct *__work)
6392{
6393 struct drm_i915_private *dev_priv =
6394 container_of(to_delayed_work(__work), struct drm_i915_private,
6395 pc8.enable_work);
6396 struct drm_device *dev = dev_priv->dev;
6397 uint32_t val;
6398
6399 if (dev_priv->pc8.enabled)
6400 return;
6401
6402 DRM_DEBUG_KMS("Enabling package C8+\n");
6403
6404 dev_priv->pc8.enabled = true;
6405
6406 if (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) {
6407 val = I915_READ(SOUTH_DSPCLK_GATE_D);
6408 val &= ~PCH_LP_PARTITION_LEVEL_DISABLE;
6409 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
6410 }
6411
6412 lpt_disable_clkout_dp(dev);
6413 hsw_pc8_disable_interrupts(dev);
6414 hsw_disable_lcpll(dev_priv, true, true);
6415}
6416
6417static void __hsw_enable_package_c8(struct drm_i915_private *dev_priv)
6418{
6419 WARN_ON(!mutex_is_locked(&dev_priv->pc8.lock));
6420 WARN(dev_priv->pc8.disable_count < 1,
6421 "pc8.disable_count: %d\n", dev_priv->pc8.disable_count);
6422
6423 dev_priv->pc8.disable_count--;
6424 if (dev_priv->pc8.disable_count != 0)
6425 return;
6426
6427 schedule_delayed_work(&dev_priv->pc8.enable_work,
Paulo Zanoni90058742013-08-19 13:18:11 -03006428 msecs_to_jiffies(i915_pc8_timeout));
Paulo Zanonic67a4702013-08-19 13:18:09 -03006429}
6430
6431static void __hsw_disable_package_c8(struct drm_i915_private *dev_priv)
6432{
6433 struct drm_device *dev = dev_priv->dev;
6434 uint32_t val;
6435
6436 WARN_ON(!mutex_is_locked(&dev_priv->pc8.lock));
6437 WARN(dev_priv->pc8.disable_count < 0,
6438 "pc8.disable_count: %d\n", dev_priv->pc8.disable_count);
6439
6440 dev_priv->pc8.disable_count++;
6441 if (dev_priv->pc8.disable_count != 1)
6442 return;
6443
6444 cancel_delayed_work_sync(&dev_priv->pc8.enable_work);
6445 if (!dev_priv->pc8.enabled)
6446 return;
6447
6448 DRM_DEBUG_KMS("Disabling package C8+\n");
6449
6450 hsw_restore_lcpll(dev_priv);
6451 hsw_pc8_restore_interrupts(dev);
6452 lpt_init_pch_refclk(dev);
6453
6454 if (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) {
6455 val = I915_READ(SOUTH_DSPCLK_GATE_D);
6456 val |= PCH_LP_PARTITION_LEVEL_DISABLE;
6457 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
6458 }
6459
6460 intel_prepare_ddi(dev);
6461 i915_gem_init_swizzling(dev);
6462 mutex_lock(&dev_priv->rps.hw_lock);
6463 gen6_update_ring_freq(dev);
6464 mutex_unlock(&dev_priv->rps.hw_lock);
6465 dev_priv->pc8.enabled = false;
6466}
6467
6468void hsw_enable_package_c8(struct drm_i915_private *dev_priv)
6469{
6470 mutex_lock(&dev_priv->pc8.lock);
6471 __hsw_enable_package_c8(dev_priv);
6472 mutex_unlock(&dev_priv->pc8.lock);
6473}
6474
6475void hsw_disable_package_c8(struct drm_i915_private *dev_priv)
6476{
6477 mutex_lock(&dev_priv->pc8.lock);
6478 __hsw_disable_package_c8(dev_priv);
6479 mutex_unlock(&dev_priv->pc8.lock);
6480}
6481
6482static bool hsw_can_enable_package_c8(struct drm_i915_private *dev_priv)
6483{
6484 struct drm_device *dev = dev_priv->dev;
6485 struct intel_crtc *crtc;
6486 uint32_t val;
6487
6488 list_for_each_entry(crtc, &dev->mode_config.crtc_list, base.head)
6489 if (crtc->base.enabled)
6490 return false;
6491
6492 /* This case is still possible since we have the i915.disable_power_well
6493 * parameter and also the KVMr or something else might be requesting the
6494 * power well. */
6495 val = I915_READ(HSW_PWR_WELL_DRIVER);
6496 if (val != 0) {
6497 DRM_DEBUG_KMS("Not enabling PC8: power well on\n");
6498 return false;
6499 }
6500
6501 return true;
6502}
6503
6504/* Since we're called from modeset_global_resources there's no way to
6505 * symmetrically increase and decrease the refcount, so we use
6506 * dev_priv->pc8.requirements_met to track whether we already have the refcount
6507 * or not.
6508 */
6509static void hsw_update_package_c8(struct drm_device *dev)
6510{
6511 struct drm_i915_private *dev_priv = dev->dev_private;
6512 bool allow;
6513
6514 if (!i915_enable_pc8)
6515 return;
6516
6517 mutex_lock(&dev_priv->pc8.lock);
6518
6519 allow = hsw_can_enable_package_c8(dev_priv);
6520
6521 if (allow == dev_priv->pc8.requirements_met)
6522 goto done;
6523
6524 dev_priv->pc8.requirements_met = allow;
6525
6526 if (allow)
6527 __hsw_enable_package_c8(dev_priv);
6528 else
6529 __hsw_disable_package_c8(dev_priv);
6530
6531done:
6532 mutex_unlock(&dev_priv->pc8.lock);
6533}
6534
6535static void hsw_package_c8_gpu_idle(struct drm_i915_private *dev_priv)
6536{
6537 if (!dev_priv->pc8.gpu_idle) {
6538 dev_priv->pc8.gpu_idle = true;
6539 hsw_enable_package_c8(dev_priv);
6540 }
6541}
6542
6543static void hsw_package_c8_gpu_busy(struct drm_i915_private *dev_priv)
6544{
6545 if (dev_priv->pc8.gpu_idle) {
6546 dev_priv->pc8.gpu_idle = false;
6547 hsw_disable_package_c8(dev_priv);
6548 }
Daniel Vetter94352cf2012-07-05 22:51:56 +02006549}
Eric Anholtf564048e2011-03-30 13:01:02 -07006550
6551static void haswell_modeset_global_resources(struct drm_device *dev)
6552{
Daniel Vetter9256aa12012-10-31 19:26:13 +01006553 bool enable = false;
6554 struct intel_crtc *crtc;
Eric Anholt0b701d22011-03-30 13:01:03 -07006555
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01006556 list_for_each_entry(crtc, &dev->mode_config.crtc_list, base.head) {
6557 if (!crtc->base.enabled)
6558 continue;
Eric Anholt0b701d22011-03-30 13:01:03 -07006559
Chris Wilsonfd4daa92013-08-27 17:04:17 +01006560 if (crtc->pipe != PIPE_A || crtc->config.pch_pfit.enabled ||
Jesse Barnes79e53942008-11-07 14:24:08 -08006561 crtc->config.cpu_transcoder != TRANSCODER_EDP)
6562 enable = true;
6563 }
6564
6565 intel_set_power_well(dev, enable);
Paulo Zanonic67a4702013-08-19 13:18:09 -03006566
6567 hsw_update_package_c8(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08006568}
6569
6570static int haswell_crtc_mode_set(struct drm_crtc *crtc,
6571 int x, int y,
6572 struct drm_framebuffer *fb)
6573{
6574 struct drm_device *dev = crtc->dev;
6575 struct drm_i915_private *dev_priv = dev->dev_private;
6576 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6577 int plane = intel_crtc->plane;
6578 int ret;
6579
6580 if (!intel_ddi_pll_mode_set(crtc))
6581 return -EINVAL;
6582
Chris Wilson560b85b2010-08-07 11:01:38 +01006583 if (intel_crtc->config.has_dp_encoder)
6584 intel_dp_set_m_n(intel_crtc);
6585
6586 intel_crtc->lowfreq_avail = false;
6587
6588 intel_set_pipe_timings(intel_crtc);
6589
6590 if (intel_crtc->config.has_pch_encoder) {
6591 intel_cpu_transcoder_set_m_n(intel_crtc,
6592 &intel_crtc->config.fdi_m_n);
6593 }
6594
6595 haswell_set_pipeconf(crtc);
6596
6597 intel_set_pipe_csc(crtc);
6598
6599 /* Set up the display plane register */
6600 I915_WRITE(DSPCNTR(plane), DISPPLANE_GAMMA_ENABLE | DISPPLANE_PIPE_CSC_ENABLE);
6601 POSTING_READ(DSPCNTR(plane));
6602
6603 ret = intel_pipe_set_base(crtc, x, y, fb);
6604
Chris Wilson560b85b2010-08-07 11:01:38 +01006605 return ret;
6606}
6607
6608static bool haswell_get_pipe_config(struct intel_crtc *crtc,
6609 struct intel_crtc_config *pipe_config)
6610{
6611 struct drm_device *dev = crtc->base.dev;
6612 struct drm_i915_private *dev_priv = dev->dev_private;
6613 enum intel_display_power_domain pfit_domain;
6614 uint32_t tmp;
6615
6616 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
6617 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
6618
6619 tmp = I915_READ(TRANS_DDI_FUNC_CTL(TRANSCODER_EDP));
6620 if (tmp & TRANS_DDI_FUNC_ENABLE) {
6621 enum pipe trans_edp_pipe;
6622 switch (tmp & TRANS_DDI_EDP_INPUT_MASK) {
6623 default:
6624 WARN(1, "unknown pipe linked to edp transcoder\n");
6625 case TRANS_DDI_EDP_INPUT_A_ONOFF:
6626 case TRANS_DDI_EDP_INPUT_A_ON:
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01006627 trans_edp_pipe = PIPE_A;
Chris Wilson6b383a72010-09-13 13:54:26 +01006628 break;
6629 case TRANS_DDI_EDP_INPUT_B_ONOFF:
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01006630 trans_edp_pipe = PIPE_B;
6631 break;
6632 case TRANS_DDI_EDP_INPUT_C_ONOFF:
6633 trans_edp_pipe = PIPE_C;
6634 break;
6635 }
6636
Chris Wilson560b85b2010-08-07 11:01:38 +01006637 if (trans_edp_pipe == crtc->pipe)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01006638 pipe_config->cpu_transcoder = TRANSCODER_EDP;
6639 }
6640
6641 if (!intel_display_power_enabled(dev,
Chris Wilson6b383a72010-09-13 13:54:26 +01006642 POWER_DOMAIN_TRANSCODER(pipe_config->cpu_transcoder)))
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01006643 return false;
6644
6645 tmp = I915_READ(PIPECONF(pipe_config->cpu_transcoder));
6646 if (!(tmp & PIPECONF_ENABLE))
6647 return false;
6648
6649 /*
6650 * Haswell has only FDI/PCH transcoder A. It is which is connected to
6651 * DDI E. So just check whether this pipe is wired to DDI E and whether
6652 * the PCH transcoder is on.
6653 */
6654 tmp = I915_READ(TRANS_DDI_FUNC_CTL(pipe_config->cpu_transcoder));
6655 if ((tmp & TRANS_DDI_PORT_MASK) == TRANS_DDI_SELECT_PORT(PORT_E) &&
6656 I915_READ(LPT_TRANSCONF) & TRANS_ENABLE) {
6657 pipe_config->has_pch_encoder = true;
6658
6659 tmp = I915_READ(FDI_RX_CTL(PIPE_A));
6660 pipe_config->fdi_lanes = ((FDI_DP_PORT_WIDTH_MASK & tmp) >>
6661 FDI_DP_PORT_WIDTH_SHIFT) + 1;
6662
6663 ironlake_get_fdi_m_n_config(crtc, pipe_config);
6664 }
6665
6666 intel_get_pipe_timings(crtc, pipe_config);
6667
6668 pfit_domain = POWER_DOMAIN_PIPE_PANEL_FITTER(crtc->pipe);
6669 if (intel_display_power_enabled(dev, pfit_domain))
6670 ironlake_get_pfit_config(crtc, pipe_config);
Chris Wilson560b85b2010-08-07 11:01:38 +01006671
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01006672 pipe_config->ips_enabled = hsw_crtc_supports_ips(crtc) &&
6673 (I915_READ(IPS_CTL) & IPS_ENABLE);
6674
Chris Wilson560b85b2010-08-07 11:01:38 +01006675 pipe_config->pixel_multiplier = 1;
6676
6677 return true;
6678}
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01006679
6680static int intel_crtc_mode_set(struct drm_crtc *crtc,
6681 int x, int y,
6682 struct drm_framebuffer *fb)
6683{
Jesse Barnes79e53942008-11-07 14:24:08 -08006684 struct drm_device *dev = crtc->dev;
Chris Wilson05394f32010-11-08 19:18:58 +00006685 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholtf564048e2011-03-30 13:01:02 -07006686 struct intel_encoder *encoder;
6687 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Eric Anholtf564048e2011-03-30 13:01:02 -07006688 struct drm_display_mode *mode = &intel_crtc->config.requested_mode;
6689 int pipe = intel_crtc->pipe;
6690 int ret;
6691
Eric Anholt0b701d22011-03-30 13:01:03 -07006692 drm_vblank_pre_modeset(dev, pipe);
6693
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01006694 ret = dev_priv->display.crtc_mode_set(crtc, x, y, fb);
6695
Jesse Barnes79e53942008-11-07 14:24:08 -08006696 drm_vblank_post_modeset(dev, pipe);
6697
Daniel Vetter9256aa12012-10-31 19:26:13 +01006698 if (ret != 0)
6699 return ret;
6700
6701 for_each_encoder_on_crtc(dev, crtc, encoder) {
6702 DRM_DEBUG_KMS("[ENCODER:%d:%s] set [MODE:%d:%s]\n",
6703 encoder->base.base.id,
6704 drm_get_encoder_name(&encoder->base),
6705 mode->base.id, mode->name);
Daniel Vetter36f2d1f2013-07-21 21:37:08 +02006706 encoder->mode_set(encoder);
Daniel Vetter9256aa12012-10-31 19:26:13 +01006707 }
6708
6709 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08006710}
6711
Wu Fengguang3a9627f2011-12-09 20:42:19 +08006712static bool intel_eld_uptodate(struct drm_connector *connector,
6713 int reg_eldv, uint32_t bits_eldv,
6714 int reg_elda, uint32_t bits_elda,
6715 int reg_edid)
6716{
6717 struct drm_i915_private *dev_priv = connector->dev->dev_private;
6718 uint8_t *eld = connector->eld;
6719 uint32_t i;
6720
6721 i = I915_READ(reg_eldv);
6722 i &= bits_eldv;
6723
6724 if (!eld[0])
6725 return !i;
6726
6727 if (!i)
6728 return false;
6729
6730 i = I915_READ(reg_elda);
6731 i &= ~bits_elda;
6732 I915_WRITE(reg_elda, i);
6733
6734 for (i = 0; i < eld[2]; i++)
6735 if (I915_READ(reg_edid) != *((uint32_t *)eld + i))
6736 return false;
6737
6738 return true;
6739}
6740
Wu Fengguange0dac652011-09-05 14:25:34 +08006741static void g4x_write_eld(struct drm_connector *connector,
6742 struct drm_crtc *crtc)
6743{
6744 struct drm_i915_private *dev_priv = connector->dev->dev_private;
6745 uint8_t *eld = connector->eld;
6746 uint32_t eldv;
6747 uint32_t len;
6748 uint32_t i;
6749
6750 i = I915_READ(G4X_AUD_VID_DID);
6751
6752 if (i == INTEL_AUDIO_DEVBLC || i == INTEL_AUDIO_DEVCL)
6753 eldv = G4X_ELDV_DEVCL_DEVBLC;
6754 else
6755 eldv = G4X_ELDV_DEVCTG;
6756
Wu Fengguang3a9627f2011-12-09 20:42:19 +08006757 if (intel_eld_uptodate(connector,
6758 G4X_AUD_CNTL_ST, eldv,
6759 G4X_AUD_CNTL_ST, G4X_ELD_ADDR,
6760 G4X_HDMIW_HDMIEDID))
6761 return;
6762
Wu Fengguange0dac652011-09-05 14:25:34 +08006763 i = I915_READ(G4X_AUD_CNTL_ST);
6764 i &= ~(eldv | G4X_ELD_ADDR);
6765 len = (i >> 9) & 0x1f; /* ELD buffer size */
6766 I915_WRITE(G4X_AUD_CNTL_ST, i);
6767
6768 if (!eld[0])
6769 return;
6770
6771 len = min_t(uint8_t, eld[2], len);
6772 DRM_DEBUG_DRIVER("ELD size %d\n", len);
6773 for (i = 0; i < len; i++)
6774 I915_WRITE(G4X_HDMIW_HDMIEDID, *((uint32_t *)eld + i));
6775
6776 i = I915_READ(G4X_AUD_CNTL_ST);
6777 i |= eldv;
6778 I915_WRITE(G4X_AUD_CNTL_ST, i);
6779}
6780
Wang Xingchao83358c852012-08-16 22:43:37 +08006781static void haswell_write_eld(struct drm_connector *connector,
6782 struct drm_crtc *crtc)
6783{
6784 struct drm_i915_private *dev_priv = connector->dev->dev_private;
6785 uint8_t *eld = connector->eld;
6786 struct drm_device *dev = crtc->dev;
Wang Xingchao7b9f35a2013-01-22 23:25:25 +08006787 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Wang Xingchao83358c852012-08-16 22:43:37 +08006788 uint32_t eldv;
6789 uint32_t i;
6790 int len;
6791 int pipe = to_intel_crtc(crtc)->pipe;
6792 int tmp;
6793
6794 int hdmiw_hdmiedid = HSW_AUD_EDID_DATA(pipe);
6795 int aud_cntl_st = HSW_AUD_DIP_ELD_CTRL(pipe);
6796 int aud_config = HSW_AUD_CFG(pipe);
6797 int aud_cntrl_st2 = HSW_AUD_PIN_ELD_CP_VLD;
6798
6799
6800 DRM_DEBUG_DRIVER("HDMI: Haswell Audio initialize....\n");
6801
6802 /* Audio output enable */
6803 DRM_DEBUG_DRIVER("HDMI audio: enable codec\n");
6804 tmp = I915_READ(aud_cntrl_st2);
6805 tmp |= (AUDIO_OUTPUT_ENABLE_A << (pipe * 4));
6806 I915_WRITE(aud_cntrl_st2, tmp);
6807
6808 /* Wait for 1 vertical blank */
6809 intel_wait_for_vblank(dev, pipe);
6810
6811 /* Set ELD valid state */
6812 tmp = I915_READ(aud_cntrl_st2);
Takashi Iwai7e7cb342013-09-10 07:30:36 +02006813 DRM_DEBUG_DRIVER("HDMI audio: pin eld vld status=0x%08x\n", tmp);
Wang Xingchao83358c852012-08-16 22:43:37 +08006814 tmp |= (AUDIO_ELD_VALID_A << (pipe * 4));
6815 I915_WRITE(aud_cntrl_st2, tmp);
6816 tmp = I915_READ(aud_cntrl_st2);
Takashi Iwai7e7cb342013-09-10 07:30:36 +02006817 DRM_DEBUG_DRIVER("HDMI audio: eld vld status=0x%08x\n", tmp);
Wang Xingchao83358c852012-08-16 22:43:37 +08006818
6819 /* Enable HDMI mode */
6820 tmp = I915_READ(aud_config);
Takashi Iwai7e7cb342013-09-10 07:30:36 +02006821 DRM_DEBUG_DRIVER("HDMI audio: audio conf: 0x%08x\n", tmp);
Wang Xingchao83358c852012-08-16 22:43:37 +08006822 /* clear N_programing_enable and N_value_index */
6823 tmp &= ~(AUD_CONFIG_N_VALUE_INDEX | AUD_CONFIG_N_PROG_ENABLE);
6824 I915_WRITE(aud_config, tmp);
6825
6826 DRM_DEBUG_DRIVER("ELD on pipe %c\n", pipe_name(pipe));
6827
6828 eldv = AUDIO_ELD_VALID_A << (pipe * 4);
Wang Xingchao7b9f35a2013-01-22 23:25:25 +08006829 intel_crtc->eld_vld = true;
Wang Xingchao83358c852012-08-16 22:43:37 +08006830
6831 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT)) {
6832 DRM_DEBUG_DRIVER("ELD: DisplayPort detected\n");
6833 eld[5] |= (1 << 2); /* Conn_Type, 0x1 = DisplayPort */
6834 I915_WRITE(aud_config, AUD_CONFIG_N_VALUE_INDEX); /* 0x1 = DP */
6835 } else
6836 I915_WRITE(aud_config, 0);
6837
6838 if (intel_eld_uptodate(connector,
6839 aud_cntrl_st2, eldv,
6840 aud_cntl_st, IBX_ELD_ADDRESS,
6841 hdmiw_hdmiedid))
6842 return;
6843
6844 i = I915_READ(aud_cntrl_st2);
6845 i &= ~eldv;
6846 I915_WRITE(aud_cntrl_st2, i);
6847
6848 if (!eld[0])
6849 return;
6850
6851 i = I915_READ(aud_cntl_st);
6852 i &= ~IBX_ELD_ADDRESS;
6853 I915_WRITE(aud_cntl_st, i);
6854 i = (i >> 29) & DIP_PORT_SEL_MASK; /* DIP_Port_Select, 0x1 = PortB */
6855 DRM_DEBUG_DRIVER("port num:%d\n", i);
6856
6857 len = min_t(uint8_t, eld[2], 21); /* 84 bytes of hw ELD buffer */
6858 DRM_DEBUG_DRIVER("ELD size %d\n", len);
6859 for (i = 0; i < len; i++)
6860 I915_WRITE(hdmiw_hdmiedid, *((uint32_t *)eld + i));
6861
6862 i = I915_READ(aud_cntrl_st2);
6863 i |= eldv;
6864 I915_WRITE(aud_cntrl_st2, i);
6865
6866}
6867
Wu Fengguange0dac652011-09-05 14:25:34 +08006868static void ironlake_write_eld(struct drm_connector *connector,
6869 struct drm_crtc *crtc)
6870{
6871 struct drm_i915_private *dev_priv = connector->dev->dev_private;
6872 uint8_t *eld = connector->eld;
6873 uint32_t eldv;
6874 uint32_t i;
6875 int len;
6876 int hdmiw_hdmiedid;
Wu Fengguangb6daa022012-01-06 14:41:31 -06006877 int aud_config;
Wu Fengguange0dac652011-09-05 14:25:34 +08006878 int aud_cntl_st;
6879 int aud_cntrl_st2;
Wang Xingchao9b138a82012-08-09 16:52:18 +08006880 int pipe = to_intel_crtc(crtc)->pipe;
Wu Fengguange0dac652011-09-05 14:25:34 +08006881
Wu Fengguangb3f33cb2011-12-09 20:42:17 +08006882 if (HAS_PCH_IBX(connector->dev)) {
Wang Xingchao9b138a82012-08-09 16:52:18 +08006883 hdmiw_hdmiedid = IBX_HDMIW_HDMIEDID(pipe);
6884 aud_config = IBX_AUD_CFG(pipe);
6885 aud_cntl_st = IBX_AUD_CNTL_ST(pipe);
Wu Fengguang1202b4c62011-12-09 20:42:18 +08006886 aud_cntrl_st2 = IBX_AUD_CNTL_ST2;
Wu Fengguange0dac652011-09-05 14:25:34 +08006887 } else {
Wang Xingchao9b138a82012-08-09 16:52:18 +08006888 hdmiw_hdmiedid = CPT_HDMIW_HDMIEDID(pipe);
6889 aud_config = CPT_AUD_CFG(pipe);
6890 aud_cntl_st = CPT_AUD_CNTL_ST(pipe);
Wu Fengguang1202b4c62011-12-09 20:42:18 +08006891 aud_cntrl_st2 = CPT_AUD_CNTRL_ST2;
Wu Fengguange0dac652011-09-05 14:25:34 +08006892 }
6893
Wang Xingchao9b138a82012-08-09 16:52:18 +08006894 DRM_DEBUG_DRIVER("ELD on pipe %c\n", pipe_name(pipe));
Wu Fengguange0dac652011-09-05 14:25:34 +08006895
6896 i = I915_READ(aud_cntl_st);
Wang Xingchao9b138a82012-08-09 16:52:18 +08006897 i = (i >> 29) & DIP_PORT_SEL_MASK; /* DIP_Port_Select, 0x1 = PortB */
Wu Fengguange0dac652011-09-05 14:25:34 +08006898 if (!i) {
6899 DRM_DEBUG_DRIVER("Audio directed to unknown port\n");
6900 /* operate blindly on all ports */
Wu Fengguang1202b4c62011-12-09 20:42:18 +08006901 eldv = IBX_ELD_VALIDB;
6902 eldv |= IBX_ELD_VALIDB << 4;
6903 eldv |= IBX_ELD_VALIDB << 8;
Wu Fengguange0dac652011-09-05 14:25:34 +08006904 } else {
Ville Syrjälä2582a852013-04-17 17:48:47 +03006905 DRM_DEBUG_DRIVER("ELD on port %c\n", port_name(i));
Wu Fengguang1202b4c62011-12-09 20:42:18 +08006906 eldv = IBX_ELD_VALIDB << ((i - 1) * 4);
Wu Fengguange0dac652011-09-05 14:25:34 +08006907 }
6908
Wu Fengguang3a9627f2011-12-09 20:42:19 +08006909 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT)) {
6910 DRM_DEBUG_DRIVER("ELD: DisplayPort detected\n");
6911 eld[5] |= (1 << 2); /* Conn_Type, 0x1 = DisplayPort */
Wu Fengguangb6daa022012-01-06 14:41:31 -06006912 I915_WRITE(aud_config, AUD_CONFIG_N_VALUE_INDEX); /* 0x1 = DP */
6913 } else
6914 I915_WRITE(aud_config, 0);
Wu Fengguang3a9627f2011-12-09 20:42:19 +08006915
6916 if (intel_eld_uptodate(connector,
6917 aud_cntrl_st2, eldv,
6918 aud_cntl_st, IBX_ELD_ADDRESS,
6919 hdmiw_hdmiedid))
6920 return;
6921
Wu Fengguange0dac652011-09-05 14:25:34 +08006922 i = I915_READ(aud_cntrl_st2);
6923 i &= ~eldv;
6924 I915_WRITE(aud_cntrl_st2, i);
6925
6926 if (!eld[0])
6927 return;
6928
Wu Fengguange0dac652011-09-05 14:25:34 +08006929 i = I915_READ(aud_cntl_st);
Wu Fengguang1202b4c62011-12-09 20:42:18 +08006930 i &= ~IBX_ELD_ADDRESS;
Wu Fengguange0dac652011-09-05 14:25:34 +08006931 I915_WRITE(aud_cntl_st, i);
6932
6933 len = min_t(uint8_t, eld[2], 21); /* 84 bytes of hw ELD buffer */
6934 DRM_DEBUG_DRIVER("ELD size %d\n", len);
6935 for (i = 0; i < len; i++)
6936 I915_WRITE(hdmiw_hdmiedid, *((uint32_t *)eld + i));
6937
6938 i = I915_READ(aud_cntrl_st2);
6939 i |= eldv;
6940 I915_WRITE(aud_cntrl_st2, i);
6941}
6942
6943void intel_write_eld(struct drm_encoder *encoder,
6944 struct drm_display_mode *mode)
6945{
6946 struct drm_crtc *crtc = encoder->crtc;
6947 struct drm_connector *connector;
6948 struct drm_device *dev = encoder->dev;
6949 struct drm_i915_private *dev_priv = dev->dev_private;
6950
6951 connector = drm_select_eld(encoder, mode);
6952 if (!connector)
6953 return;
6954
6955 DRM_DEBUG_DRIVER("ELD on [CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
6956 connector->base.id,
6957 drm_get_connector_name(connector),
6958 connector->encoder->base.id,
6959 drm_get_encoder_name(connector->encoder));
6960
6961 connector->eld[6] = drm_av_sync_delay(connector, mode) / 2;
6962
6963 if (dev_priv->display.write_eld)
6964 dev_priv->display.write_eld(connector, crtc);
6965}
6966
Jesse Barnes79e53942008-11-07 14:24:08 -08006967static void i845_update_cursor(struct drm_crtc *crtc, u32 base)
6968{
6969 struct drm_device *dev = crtc->dev;
6970 struct drm_i915_private *dev_priv = dev->dev_private;
6971 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6972 bool visible = base != 0;
6973 u32 cntl;
6974
6975 if (intel_crtc->cursor_visible == visible)
6976 return;
6977
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08006978 cntl = I915_READ(_CURACNTR);
Jesse Barnes79e53942008-11-07 14:24:08 -08006979 if (visible) {
6980 /* On these chipsets we can only modify the base whilst
6981 * the cursor is disabled.
6982 */
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08006983 I915_WRITE(_CURABASE, base);
Jesse Barnes79e53942008-11-07 14:24:08 -08006984
6985 cntl &= ~(CURSOR_FORMAT_MASK);
6986 /* XXX width must be 64, stride 256 => 0x00 << 28 */
6987 cntl |= CURSOR_ENABLE |
6988 CURSOR_GAMMA_ENABLE |
6989 CURSOR_FORMAT_ARGB;
6990 } else
6991 cntl &= ~(CURSOR_ENABLE | CURSOR_GAMMA_ENABLE);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08006992 I915_WRITE(_CURACNTR, cntl);
Jesse Barnes79e53942008-11-07 14:24:08 -08006993
6994 intel_crtc->cursor_visible = visible;
6995}
6996
6997static void i9xx_update_cursor(struct drm_crtc *crtc, u32 base)
6998{
6999 struct drm_device *dev = crtc->dev;
7000 struct drm_i915_private *dev_priv = dev->dev_private;
7001 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
7002 int pipe = intel_crtc->pipe;
7003 bool visible = base != 0;
7004
7005 if (intel_crtc->cursor_visible != visible) {
Jesse Barnes548f2452011-02-17 10:40:53 -08007006 uint32_t cntl = I915_READ(CURCNTR(pipe));
Jesse Barnes79e53942008-11-07 14:24:08 -08007007 if (base) {
7008 cntl &= ~(CURSOR_MODE | MCURSOR_PIPE_SELECT);
7009 cntl |= CURSOR_MODE_64_ARGB_AX | MCURSOR_GAMMA_ENABLE;
7010 cntl |= pipe << 28; /* Connect to correct pipe */
7011 } else {
7012 cntl &= ~(CURSOR_MODE | MCURSOR_GAMMA_ENABLE);
7013 cntl |= CURSOR_MODE_DISABLE;
7014 }
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08007015 I915_WRITE(CURCNTR(pipe), cntl);
Jesse Barnes79e53942008-11-07 14:24:08 -08007016
7017 intel_crtc->cursor_visible = visible;
7018 }
7019 /* and commit changes on next vblank */
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08007020 I915_WRITE(CURBASE(pipe), base);
Jesse Barnes79e53942008-11-07 14:24:08 -08007021}
7022
Jesse Barnes65a21cd2011-10-12 11:10:21 -07007023static void ivb_update_cursor(struct drm_crtc *crtc, u32 base)
7024{
7025 struct drm_device *dev = crtc->dev;
7026 struct drm_i915_private *dev_priv = dev->dev_private;
7027 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
7028 int pipe = intel_crtc->pipe;
7029 bool visible = base != 0;
7030
7031 if (intel_crtc->cursor_visible != visible) {
7032 uint32_t cntl = I915_READ(CURCNTR_IVB(pipe));
7033 if (base) {
7034 cntl &= ~CURSOR_MODE;
7035 cntl |= CURSOR_MODE_64_ARGB_AX | MCURSOR_GAMMA_ENABLE;
7036 } else {
7037 cntl &= ~(CURSOR_MODE | MCURSOR_GAMMA_ENABLE);
7038 cntl |= CURSOR_MODE_DISABLE;
7039 }
Paulo Zanoni1f5d76d2013-08-23 19:51:28 -03007040 if (IS_HASWELL(dev)) {
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02007041 cntl |= CURSOR_PIPE_CSC_ENABLE;
Paulo Zanoni1f5d76d2013-08-23 19:51:28 -03007042 cntl &= ~CURSOR_TRICKLE_FEED_DISABLE;
7043 }
Jesse Barnes65a21cd2011-10-12 11:10:21 -07007044 I915_WRITE(CURCNTR_IVB(pipe), cntl);
7045
7046 intel_crtc->cursor_visible = visible;
7047 }
7048 /* and commit changes on next vblank */
7049 I915_WRITE(CURBASE_IVB(pipe), base);
7050}
7051
Jesse Barnes79e53942008-11-07 14:24:08 -08007052/* If no-part of the cursor is visible on the framebuffer, then the GPU may hang... */
7053static void intel_crtc_update_cursor(struct drm_crtc *crtc,
7054 bool on)
7055{
7056 struct drm_device *dev = crtc->dev;
7057 struct drm_i915_private *dev_priv = dev->dev_private;
7058 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
7059 int pipe = intel_crtc->pipe;
7060 int x = intel_crtc->cursor_x;
7061 int y = intel_crtc->cursor_y;
Ville Syrjäläd6e4db12013-09-04 18:25:31 +03007062 u32 base = 0, pos = 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08007063 bool visible;
7064
Ville Syrjäläd6e4db12013-09-04 18:25:31 +03007065 if (on)
Jesse Barnes79e53942008-11-07 14:24:08 -08007066 base = intel_crtc->cursor_addr;
Jesse Barnes79e53942008-11-07 14:24:08 -08007067
Ville Syrjäläd6e4db12013-09-04 18:25:31 +03007068 if (x >= intel_crtc->config.pipe_src_w)
7069 base = 0;
7070
7071 if (y >= intel_crtc->config.pipe_src_h)
Jesse Barnes79e53942008-11-07 14:24:08 -08007072 base = 0;
7073
7074 if (x < 0) {
Ville Syrjäläefc90642013-09-04 18:25:30 +03007075 if (x + intel_crtc->cursor_width <= 0)
Jesse Barnes79e53942008-11-07 14:24:08 -08007076 base = 0;
7077
7078 pos |= CURSOR_POS_SIGN << CURSOR_X_SHIFT;
7079 x = -x;
7080 }
7081 pos |= x << CURSOR_X_SHIFT;
7082
7083 if (y < 0) {
Ville Syrjäläefc90642013-09-04 18:25:30 +03007084 if (y + intel_crtc->cursor_height <= 0)
Jesse Barnes79e53942008-11-07 14:24:08 -08007085 base = 0;
7086
7087 pos |= CURSOR_POS_SIGN << CURSOR_Y_SHIFT;
7088 y = -y;
7089 }
7090 pos |= y << CURSOR_Y_SHIFT;
7091
7092 visible = base != 0;
7093 if (!visible && !intel_crtc->cursor_visible)
7094 return;
7095
Eugeni Dodonov0cd83aa2012-04-13 17:08:48 -03007096 if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev)) {
Jesse Barnes65a21cd2011-10-12 11:10:21 -07007097 I915_WRITE(CURPOS_IVB(pipe), pos);
7098 ivb_update_cursor(crtc, base);
7099 } else {
7100 I915_WRITE(CURPOS(pipe), pos);
7101 if (IS_845G(dev) || IS_I865G(dev))
7102 i845_update_cursor(crtc, base);
7103 else
7104 i9xx_update_cursor(crtc, base);
7105 }
Jesse Barnes79e53942008-11-07 14:24:08 -08007106}
7107
7108static int intel_crtc_cursor_set(struct drm_crtc *crtc,
7109 struct drm_file *file,
7110 uint32_t handle,
7111 uint32_t width, uint32_t height)
7112{
7113 struct drm_device *dev = crtc->dev;
7114 struct drm_i915_private *dev_priv = dev->dev_private;
7115 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Chris Wilson05394f32010-11-08 19:18:58 +00007116 struct drm_i915_gem_object *obj;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01007117 uint32_t addr;
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05007118 int ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08007119
Jesse Barnes79e53942008-11-07 14:24:08 -08007120 /* if we want to turn off the cursor ignore width and height */
7121 if (!handle) {
Zhao Yakui28c97732009-10-09 11:39:41 +08007122 DRM_DEBUG_KMS("cursor off\n");
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05007123 addr = 0;
Chris Wilson05394f32010-11-08 19:18:58 +00007124 obj = NULL;
Pierre Willenbrock50044172009-02-23 10:12:15 +10007125 mutex_lock(&dev->struct_mutex);
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05007126 goto finish;
Jesse Barnes79e53942008-11-07 14:24:08 -08007127 }
7128
7129 /* Currently we only support 64x64 cursors */
7130 if (width != 64 || height != 64) {
7131 DRM_ERROR("we currently only support 64x64 cursors\n");
7132 return -EINVAL;
7133 }
7134
Chris Wilson05394f32010-11-08 19:18:58 +00007135 obj = to_intel_bo(drm_gem_object_lookup(dev, file, handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00007136 if (&obj->base == NULL)
Jesse Barnes79e53942008-11-07 14:24:08 -08007137 return -ENOENT;
7138
Chris Wilson05394f32010-11-08 19:18:58 +00007139 if (obj->base.size < width * height * 4) {
Jesse Barnes79e53942008-11-07 14:24:08 -08007140 DRM_ERROR("buffer is to small\n");
Dave Airlie34b8686e2009-01-15 14:03:07 +10007141 ret = -ENOMEM;
7142 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -08007143 }
7144
Dave Airlie71acb5e2008-12-30 20:31:46 +10007145 /* we only need to pin inside GTT if cursor is non-phy */
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05007146 mutex_lock(&dev->struct_mutex);
Kristian Høgsbergb295d1b2009-12-16 15:16:17 -05007147 if (!dev_priv->info->cursor_needs_physical) {
Chris Wilson693db182013-03-05 14:52:39 +00007148 unsigned alignment;
7149
Chris Wilsond9e86c02010-11-10 16:40:20 +00007150 if (obj->tiling_mode) {
7151 DRM_ERROR("cursor cannot be tiled\n");
7152 ret = -EINVAL;
7153 goto fail_locked;
7154 }
7155
Chris Wilson693db182013-03-05 14:52:39 +00007156 /* Note that the w/a also requires 2 PTE of padding following
7157 * the bo. We currently fill all unused PTE with the shadow
7158 * page and so we should always have valid PTE following the
7159 * cursor preventing the VT-d warning.
7160 */
7161 alignment = 0;
7162 if (need_vtd_wa(dev))
7163 alignment = 64*1024;
7164
7165 ret = i915_gem_object_pin_to_display_plane(obj, alignment, NULL);
Chris Wilsone7b526b2010-06-02 08:30:48 +01007166 if (ret) {
7167 DRM_ERROR("failed to move cursor bo into the GTT\n");
Chris Wilson2da3b9b2011-04-14 09:41:17 +01007168 goto fail_locked;
Chris Wilsone7b526b2010-06-02 08:30:48 +01007169 }
7170
Chris Wilsond9e86c02010-11-10 16:40:20 +00007171 ret = i915_gem_object_put_fence(obj);
7172 if (ret) {
Chris Wilson2da3b9b2011-04-14 09:41:17 +01007173 DRM_ERROR("failed to release fence for cursor");
Chris Wilsond9e86c02010-11-10 16:40:20 +00007174 goto fail_unpin;
7175 }
7176
Ben Widawskyf343c5f2013-07-05 14:41:04 -07007177 addr = i915_gem_obj_ggtt_offset(obj);
Dave Airlie71acb5e2008-12-30 20:31:46 +10007178 } else {
Chris Wilson6eeefaf2010-08-07 11:01:39 +01007179 int align = IS_I830(dev) ? 16 * 1024 : 256;
Chris Wilson05394f32010-11-08 19:18:58 +00007180 ret = i915_gem_attach_phys_object(dev, obj,
Chris Wilson6eeefaf2010-08-07 11:01:39 +01007181 (intel_crtc->pipe == 0) ? I915_GEM_PHYS_CURSOR_0 : I915_GEM_PHYS_CURSOR_1,
7182 align);
Dave Airlie71acb5e2008-12-30 20:31:46 +10007183 if (ret) {
7184 DRM_ERROR("failed to attach phys object\n");
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05007185 goto fail_locked;
Dave Airlie71acb5e2008-12-30 20:31:46 +10007186 }
Chris Wilson05394f32010-11-08 19:18:58 +00007187 addr = obj->phys_obj->handle->busaddr;
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05007188 }
7189
Chris Wilsona6c45cf2010-09-17 00:32:17 +01007190 if (IS_GEN2(dev))
Jesse Barnes14b60392009-05-20 16:47:08 -04007191 I915_WRITE(CURSIZE, (height << 12) | width);
7192
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05007193 finish:
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05007194 if (intel_crtc->cursor_bo) {
Kristian Høgsbergb295d1b2009-12-16 15:16:17 -05007195 if (dev_priv->info->cursor_needs_physical) {
Chris Wilson05394f32010-11-08 19:18:58 +00007196 if (intel_crtc->cursor_bo != obj)
Dave Airlie71acb5e2008-12-30 20:31:46 +10007197 i915_gem_detach_phys_object(dev, intel_crtc->cursor_bo);
7198 } else
Chris Wilsoncc98b412013-08-09 12:25:09 +01007199 i915_gem_object_unpin_from_display_plane(intel_crtc->cursor_bo);
Chris Wilson05394f32010-11-08 19:18:58 +00007200 drm_gem_object_unreference(&intel_crtc->cursor_bo->base);
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05007201 }
Jesse Barnes80824002009-09-10 15:28:06 -07007202
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05007203 mutex_unlock(&dev->struct_mutex);
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05007204
7205 intel_crtc->cursor_addr = addr;
Chris Wilson05394f32010-11-08 19:18:58 +00007206 intel_crtc->cursor_bo = obj;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01007207 intel_crtc->cursor_width = width;
7208 intel_crtc->cursor_height = height;
7209
Ville Syrjäläf2f5f772013-09-17 18:33:44 +03007210 if (intel_crtc->active)
7211 intel_crtc_update_cursor(crtc, intel_crtc->cursor_bo != NULL);
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05007212
Jesse Barnes79e53942008-11-07 14:24:08 -08007213 return 0;
Chris Wilsone7b526b2010-06-02 08:30:48 +01007214fail_unpin:
Chris Wilsoncc98b412013-08-09 12:25:09 +01007215 i915_gem_object_unpin_from_display_plane(obj);
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05007216fail_locked:
Dave Airlie34b8686e2009-01-15 14:03:07 +10007217 mutex_unlock(&dev->struct_mutex);
Luca Barbieribc9025b2010-02-09 05:49:12 +00007218fail:
Chris Wilson05394f32010-11-08 19:18:58 +00007219 drm_gem_object_unreference_unlocked(&obj->base);
Dave Airlie34b8686e2009-01-15 14:03:07 +10007220 return ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08007221}
7222
7223static int intel_crtc_cursor_move(struct drm_crtc *crtc, int x, int y)
7224{
Jesse Barnes79e53942008-11-07 14:24:08 -08007225 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08007226
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01007227 intel_crtc->cursor_x = x;
7228 intel_crtc->cursor_y = y;
Jesse Barnes652c3932009-08-17 13:31:43 -07007229
Ville Syrjäläf2f5f772013-09-17 18:33:44 +03007230 if (intel_crtc->active)
7231 intel_crtc_update_cursor(crtc, intel_crtc->cursor_bo != NULL);
Jesse Barnes79e53942008-11-07 14:24:08 -08007232
7233 return 0;
7234}
7235
Jesse Barnes79e53942008-11-07 14:24:08 -08007236static void intel_crtc_gamma_set(struct drm_crtc *crtc, u16 *red, u16 *green,
James Simmons72034252010-08-03 01:33:19 +01007237 u16 *blue, uint32_t start, uint32_t size)
Jesse Barnes79e53942008-11-07 14:24:08 -08007238{
James Simmons72034252010-08-03 01:33:19 +01007239 int end = (start + size > 256) ? 256 : start + size, i;
Jesse Barnes79e53942008-11-07 14:24:08 -08007240 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08007241
James Simmons72034252010-08-03 01:33:19 +01007242 for (i = start; i < end; i++) {
Jesse Barnes79e53942008-11-07 14:24:08 -08007243 intel_crtc->lut_r[i] = red[i] >> 8;
7244 intel_crtc->lut_g[i] = green[i] >> 8;
7245 intel_crtc->lut_b[i] = blue[i] >> 8;
7246 }
7247
7248 intel_crtc_load_lut(crtc);
7249}
7250
Jesse Barnes79e53942008-11-07 14:24:08 -08007251/* VESA 640x480x72Hz mode to set on the pipe */
7252static struct drm_display_mode load_detect_mode = {
7253 DRM_MODE("640x480", DRM_MODE_TYPE_DEFAULT, 31500, 640, 664,
7254 704, 832, 0, 480, 489, 491, 520, 0, DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
7255};
7256
Chris Wilsond2dff872011-04-19 08:36:26 +01007257static struct drm_framebuffer *
7258intel_framebuffer_create(struct drm_device *dev,
Jesse Barnes308e5bc2011-11-14 14:51:28 -08007259 struct drm_mode_fb_cmd2 *mode_cmd,
Chris Wilsond2dff872011-04-19 08:36:26 +01007260 struct drm_i915_gem_object *obj)
7261{
7262 struct intel_framebuffer *intel_fb;
7263 int ret;
7264
7265 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
7266 if (!intel_fb) {
7267 drm_gem_object_unreference_unlocked(&obj->base);
7268 return ERR_PTR(-ENOMEM);
7269 }
7270
7271 ret = intel_framebuffer_init(dev, intel_fb, mode_cmd, obj);
7272 if (ret) {
7273 drm_gem_object_unreference_unlocked(&obj->base);
7274 kfree(intel_fb);
7275 return ERR_PTR(ret);
7276 }
7277
7278 return &intel_fb->base;
7279}
7280
7281static u32
7282intel_framebuffer_pitch_for_width(int width, int bpp)
7283{
7284 u32 pitch = DIV_ROUND_UP(width * bpp, 8);
7285 return ALIGN(pitch, 64);
7286}
7287
7288static u32
7289intel_framebuffer_size_for_mode(struct drm_display_mode *mode, int bpp)
7290{
7291 u32 pitch = intel_framebuffer_pitch_for_width(mode->hdisplay, bpp);
7292 return ALIGN(pitch * mode->vdisplay, PAGE_SIZE);
7293}
7294
7295static struct drm_framebuffer *
7296intel_framebuffer_create_for_mode(struct drm_device *dev,
7297 struct drm_display_mode *mode,
7298 int depth, int bpp)
7299{
7300 struct drm_i915_gem_object *obj;
Chris Wilson0fed39b2012-11-05 22:25:07 +00007301 struct drm_mode_fb_cmd2 mode_cmd = { 0 };
Chris Wilsond2dff872011-04-19 08:36:26 +01007302
7303 obj = i915_gem_alloc_object(dev,
7304 intel_framebuffer_size_for_mode(mode, bpp));
7305 if (obj == NULL)
7306 return ERR_PTR(-ENOMEM);
7307
7308 mode_cmd.width = mode->hdisplay;
7309 mode_cmd.height = mode->vdisplay;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08007310 mode_cmd.pitches[0] = intel_framebuffer_pitch_for_width(mode_cmd.width,
7311 bpp);
Dave Airlie5ca0c342012-02-23 15:33:40 +00007312 mode_cmd.pixel_format = drm_mode_legacy_fb_format(bpp, depth);
Chris Wilsond2dff872011-04-19 08:36:26 +01007313
7314 return intel_framebuffer_create(dev, &mode_cmd, obj);
7315}
7316
7317static struct drm_framebuffer *
7318mode_fits_in_fbdev(struct drm_device *dev,
7319 struct drm_display_mode *mode)
7320{
7321 struct drm_i915_private *dev_priv = dev->dev_private;
7322 struct drm_i915_gem_object *obj;
7323 struct drm_framebuffer *fb;
7324
7325 if (dev_priv->fbdev == NULL)
7326 return NULL;
7327
7328 obj = dev_priv->fbdev->ifb.obj;
7329 if (obj == NULL)
7330 return NULL;
7331
7332 fb = &dev_priv->fbdev->ifb.base;
Ville Syrjälä01f2c772011-12-20 00:06:49 +02007333 if (fb->pitches[0] < intel_framebuffer_pitch_for_width(mode->hdisplay,
7334 fb->bits_per_pixel))
Chris Wilsond2dff872011-04-19 08:36:26 +01007335 return NULL;
7336
Ville Syrjälä01f2c772011-12-20 00:06:49 +02007337 if (obj->base.size < mode->vdisplay * fb->pitches[0])
Chris Wilsond2dff872011-04-19 08:36:26 +01007338 return NULL;
7339
7340 return fb;
7341}
7342
Daniel Vetterd2434ab2012-08-12 21:20:10 +02007343bool intel_get_load_detect_pipe(struct drm_connector *connector,
Chris Wilson71731882011-04-19 23:10:58 +01007344 struct drm_display_mode *mode,
Chris Wilson8261b192011-04-19 23:18:09 +01007345 struct intel_load_detect_pipe *old)
Jesse Barnes79e53942008-11-07 14:24:08 -08007346{
7347 struct intel_crtc *intel_crtc;
Daniel Vetterd2434ab2012-08-12 21:20:10 +02007348 struct intel_encoder *intel_encoder =
7349 intel_attached_encoder(connector);
Jesse Barnes79e53942008-11-07 14:24:08 -08007350 struct drm_crtc *possible_crtc;
Chris Wilson4ef69c72010-09-09 15:14:28 +01007351 struct drm_encoder *encoder = &intel_encoder->base;
Jesse Barnes79e53942008-11-07 14:24:08 -08007352 struct drm_crtc *crtc = NULL;
7353 struct drm_device *dev = encoder->dev;
Daniel Vetter94352cf2012-07-05 22:51:56 +02007354 struct drm_framebuffer *fb;
Jesse Barnes79e53942008-11-07 14:24:08 -08007355 int i = -1;
7356
Chris Wilsond2dff872011-04-19 08:36:26 +01007357 DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
7358 connector->base.id, drm_get_connector_name(connector),
7359 encoder->base.id, drm_get_encoder_name(encoder));
7360
Jesse Barnes79e53942008-11-07 14:24:08 -08007361 /*
7362 * Algorithm gets a little messy:
Chris Wilson7a5e4802011-04-19 23:21:12 +01007363 *
Jesse Barnes79e53942008-11-07 14:24:08 -08007364 * - if the connector already has an assigned crtc, use it (but make
7365 * sure it's on first)
Chris Wilson7a5e4802011-04-19 23:21:12 +01007366 *
Jesse Barnes79e53942008-11-07 14:24:08 -08007367 * - try to find the first unused crtc that can drive this connector,
7368 * and use that if we find one
Jesse Barnes79e53942008-11-07 14:24:08 -08007369 */
7370
7371 /* See if we already have a CRTC for this connector */
7372 if (encoder->crtc) {
7373 crtc = encoder->crtc;
Chris Wilson8261b192011-04-19 23:18:09 +01007374
Daniel Vetter7b240562012-12-12 00:35:33 +01007375 mutex_lock(&crtc->mutex);
7376
Daniel Vetter24218aa2012-08-12 19:27:11 +02007377 old->dpms_mode = connector->dpms;
Chris Wilson8261b192011-04-19 23:18:09 +01007378 old->load_detect_temp = false;
7379
7380 /* Make sure the crtc and connector are running */
Daniel Vetter24218aa2012-08-12 19:27:11 +02007381 if (connector->dpms != DRM_MODE_DPMS_ON)
7382 connector->funcs->dpms(connector, DRM_MODE_DPMS_ON);
Chris Wilson8261b192011-04-19 23:18:09 +01007383
Chris Wilson71731882011-04-19 23:10:58 +01007384 return true;
Jesse Barnes79e53942008-11-07 14:24:08 -08007385 }
7386
7387 /* Find an unused one (if possible) */
7388 list_for_each_entry(possible_crtc, &dev->mode_config.crtc_list, head) {
7389 i++;
7390 if (!(encoder->possible_crtcs & (1 << i)))
7391 continue;
7392 if (!possible_crtc->enabled) {
7393 crtc = possible_crtc;
7394 break;
7395 }
Jesse Barnes79e53942008-11-07 14:24:08 -08007396 }
7397
7398 /*
7399 * If we didn't find an unused CRTC, don't use any.
7400 */
7401 if (!crtc) {
Chris Wilson71731882011-04-19 23:10:58 +01007402 DRM_DEBUG_KMS("no pipe available for load-detect\n");
7403 return false;
Jesse Barnes79e53942008-11-07 14:24:08 -08007404 }
7405
Daniel Vetter7b240562012-12-12 00:35:33 +01007406 mutex_lock(&crtc->mutex);
Daniel Vetterfc303102012-07-09 10:40:58 +02007407 intel_encoder->new_crtc = to_intel_crtc(crtc);
7408 to_intel_connector(connector)->new_encoder = intel_encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08007409
7410 intel_crtc = to_intel_crtc(crtc);
Daniel Vetter24218aa2012-08-12 19:27:11 +02007411 old->dpms_mode = connector->dpms;
Chris Wilson8261b192011-04-19 23:18:09 +01007412 old->load_detect_temp = true;
Chris Wilsond2dff872011-04-19 08:36:26 +01007413 old->release_fb = NULL;
Jesse Barnes79e53942008-11-07 14:24:08 -08007414
Chris Wilson64927112011-04-20 07:25:26 +01007415 if (!mode)
7416 mode = &load_detect_mode;
Jesse Barnes79e53942008-11-07 14:24:08 -08007417
Chris Wilsond2dff872011-04-19 08:36:26 +01007418 /* We need a framebuffer large enough to accommodate all accesses
7419 * that the plane may generate whilst we perform load detection.
7420 * We can not rely on the fbcon either being present (we get called
7421 * during its initialisation to detect all boot displays, or it may
7422 * not even exist) or that it is large enough to satisfy the
7423 * requested mode.
7424 */
Daniel Vetter94352cf2012-07-05 22:51:56 +02007425 fb = mode_fits_in_fbdev(dev, mode);
7426 if (fb == NULL) {
Chris Wilsond2dff872011-04-19 08:36:26 +01007427 DRM_DEBUG_KMS("creating tmp fb for load-detection\n");
Daniel Vetter94352cf2012-07-05 22:51:56 +02007428 fb = intel_framebuffer_create_for_mode(dev, mode, 24, 32);
7429 old->release_fb = fb;
Chris Wilsond2dff872011-04-19 08:36:26 +01007430 } else
7431 DRM_DEBUG_KMS("reusing fbdev for load-detection framebuffer\n");
Daniel Vetter94352cf2012-07-05 22:51:56 +02007432 if (IS_ERR(fb)) {
Chris Wilsond2dff872011-04-19 08:36:26 +01007433 DRM_DEBUG_KMS("failed to allocate framebuffer for load-detection\n");
Daniel Vetter7b240562012-12-12 00:35:33 +01007434 mutex_unlock(&crtc->mutex);
Chris Wilson0e8b3d32012-11-05 22:25:08 +00007435 return false;
Jesse Barnes79e53942008-11-07 14:24:08 -08007436 }
Chris Wilsond2dff872011-04-19 08:36:26 +01007437
Chris Wilsonc0c36b942012-12-19 16:08:43 +00007438 if (intel_set_mode(crtc, mode, 0, 0, fb)) {
Chris Wilson64927112011-04-20 07:25:26 +01007439 DRM_DEBUG_KMS("failed to set mode on load-detect pipe\n");
Chris Wilsond2dff872011-04-19 08:36:26 +01007440 if (old->release_fb)
7441 old->release_fb->funcs->destroy(old->release_fb);
Daniel Vetter7b240562012-12-12 00:35:33 +01007442 mutex_unlock(&crtc->mutex);
Chris Wilson0e8b3d32012-11-05 22:25:08 +00007443 return false;
Jesse Barnes79e53942008-11-07 14:24:08 -08007444 }
Chris Wilson71731882011-04-19 23:10:58 +01007445
Jesse Barnes79e53942008-11-07 14:24:08 -08007446 /* let the connector get through one full cycle before testing */
Jesse Barnes9d0498a2010-08-18 13:20:54 -07007447 intel_wait_for_vblank(dev, intel_crtc->pipe);
Chris Wilson71731882011-04-19 23:10:58 +01007448 return true;
Jesse Barnes79e53942008-11-07 14:24:08 -08007449}
7450
Daniel Vetterd2434ab2012-08-12 21:20:10 +02007451void intel_release_load_detect_pipe(struct drm_connector *connector,
Chris Wilson8261b192011-04-19 23:18:09 +01007452 struct intel_load_detect_pipe *old)
Jesse Barnes79e53942008-11-07 14:24:08 -08007453{
Daniel Vetterd2434ab2012-08-12 21:20:10 +02007454 struct intel_encoder *intel_encoder =
7455 intel_attached_encoder(connector);
Chris Wilson4ef69c72010-09-09 15:14:28 +01007456 struct drm_encoder *encoder = &intel_encoder->base;
Daniel Vetter7b240562012-12-12 00:35:33 +01007457 struct drm_crtc *crtc = encoder->crtc;
Jesse Barnes79e53942008-11-07 14:24:08 -08007458
Chris Wilsond2dff872011-04-19 08:36:26 +01007459 DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
7460 connector->base.id, drm_get_connector_name(connector),
7461 encoder->base.id, drm_get_encoder_name(encoder));
7462
Chris Wilson8261b192011-04-19 23:18:09 +01007463 if (old->load_detect_temp) {
Daniel Vetterfc303102012-07-09 10:40:58 +02007464 to_intel_connector(connector)->new_encoder = NULL;
7465 intel_encoder->new_crtc = NULL;
7466 intel_set_mode(crtc, NULL, 0, 0, NULL);
Chris Wilsond2dff872011-04-19 08:36:26 +01007467
Daniel Vetter36206362012-12-10 20:42:17 +01007468 if (old->release_fb) {
7469 drm_framebuffer_unregister_private(old->release_fb);
7470 drm_framebuffer_unreference(old->release_fb);
7471 }
Chris Wilsond2dff872011-04-19 08:36:26 +01007472
Daniel Vetter67c96402013-01-23 16:25:09 +00007473 mutex_unlock(&crtc->mutex);
Chris Wilson0622a532011-04-21 09:32:11 +01007474 return;
Jesse Barnes79e53942008-11-07 14:24:08 -08007475 }
7476
Eric Anholtc751ce42010-03-25 11:48:48 -07007477 /* Switch crtc and encoder back off if necessary */
Daniel Vetter24218aa2012-08-12 19:27:11 +02007478 if (old->dpms_mode != DRM_MODE_DPMS_ON)
7479 connector->funcs->dpms(connector, old->dpms_mode);
Daniel Vetter7b240562012-12-12 00:35:33 +01007480
7481 mutex_unlock(&crtc->mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -08007482}
7483
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +03007484static int i9xx_pll_refclk(struct drm_device *dev,
7485 const struct intel_crtc_config *pipe_config)
7486{
7487 struct drm_i915_private *dev_priv = dev->dev_private;
7488 u32 dpll = pipe_config->dpll_hw_state.dpll;
7489
7490 if ((dpll & PLL_REF_INPUT_MASK) == PLLB_REF_INPUT_SPREADSPECTRUMIN)
7491 return dev_priv->vbt.lvds_ssc_freq * 1000;
7492 else if (HAS_PCH_SPLIT(dev))
7493 return 120000;
7494 else if (!IS_GEN2(dev))
7495 return 96000;
7496 else
7497 return 48000;
7498}
7499
Jesse Barnes79e53942008-11-07 14:24:08 -08007500/* Returns the clock of the currently programmed mode of the given pipe. */
Jesse Barnesf1f644d2013-06-27 00:39:25 +03007501static void i9xx_crtc_clock_get(struct intel_crtc *crtc,
7502 struct intel_crtc_config *pipe_config)
Jesse Barnes79e53942008-11-07 14:24:08 -08007503{
Jesse Barnesf1f644d2013-06-27 00:39:25 +03007504 struct drm_device *dev = crtc->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08007505 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesf1f644d2013-06-27 00:39:25 +03007506 int pipe = pipe_config->cpu_transcoder;
Ville Syrjälä293623f2013-09-13 16:18:46 +03007507 u32 dpll = pipe_config->dpll_hw_state.dpll;
Jesse Barnes79e53942008-11-07 14:24:08 -08007508 u32 fp;
7509 intel_clock_t clock;
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +03007510 int refclk = i9xx_pll_refclk(dev, pipe_config);
Jesse Barnes79e53942008-11-07 14:24:08 -08007511
7512 if ((dpll & DISPLAY_RATE_SELECT_FPA1) == 0)
Ville Syrjälä293623f2013-09-13 16:18:46 +03007513 fp = pipe_config->dpll_hw_state.fp0;
Jesse Barnes79e53942008-11-07 14:24:08 -08007514 else
Ville Syrjälä293623f2013-09-13 16:18:46 +03007515 fp = pipe_config->dpll_hw_state.fp1;
Jesse Barnes79e53942008-11-07 14:24:08 -08007516
7517 clock.m1 = (fp & FP_M1_DIV_MASK) >> FP_M1_DIV_SHIFT;
Adam Jacksonf2b115e2009-12-03 17:14:42 -05007518 if (IS_PINEVIEW(dev)) {
7519 clock.n = ffs((fp & FP_N_PINEVIEW_DIV_MASK) >> FP_N_DIV_SHIFT) - 1;
7520 clock.m2 = (fp & FP_M2_PINEVIEW_DIV_MASK) >> FP_M2_DIV_SHIFT;
Shaohua Li21778322009-02-23 15:19:16 +08007521 } else {
7522 clock.n = (fp & FP_N_DIV_MASK) >> FP_N_DIV_SHIFT;
7523 clock.m2 = (fp & FP_M2_DIV_MASK) >> FP_M2_DIV_SHIFT;
7524 }
7525
Chris Wilsona6c45cf2010-09-17 00:32:17 +01007526 if (!IS_GEN2(dev)) {
Adam Jacksonf2b115e2009-12-03 17:14:42 -05007527 if (IS_PINEVIEW(dev))
7528 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_PINEVIEW) >>
7529 DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW);
Shaohua Li21778322009-02-23 15:19:16 +08007530 else
7531 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK) >>
Jesse Barnes79e53942008-11-07 14:24:08 -08007532 DPLL_FPA01_P1_POST_DIV_SHIFT);
7533
7534 switch (dpll & DPLL_MODE_MASK) {
7535 case DPLLB_MODE_DAC_SERIAL:
7536 clock.p2 = dpll & DPLL_DAC_SERIAL_P2_CLOCK_DIV_5 ?
7537 5 : 10;
7538 break;
7539 case DPLLB_MODE_LVDS:
7540 clock.p2 = dpll & DPLLB_LVDS_P2_CLOCK_DIV_7 ?
7541 7 : 14;
7542 break;
7543 default:
Zhao Yakui28c97732009-10-09 11:39:41 +08007544 DRM_DEBUG_KMS("Unknown DPLL mode %08x in programmed "
Jesse Barnes79e53942008-11-07 14:24:08 -08007545 "mode\n", (int)(dpll & DPLL_MODE_MASK));
Jesse Barnesf1f644d2013-06-27 00:39:25 +03007546 return;
Jesse Barnes79e53942008-11-07 14:24:08 -08007547 }
7548
Daniel Vetterac58c3f2013-06-01 17:16:17 +02007549 if (IS_PINEVIEW(dev))
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +03007550 pineview_clock(refclk, &clock);
Daniel Vetterac58c3f2013-06-01 17:16:17 +02007551 else
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +03007552 i9xx_clock(refclk, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08007553 } else {
7554 bool is_lvds = (pipe == 1) && (I915_READ(LVDS) & LVDS_PORT_EN);
7555
7556 if (is_lvds) {
7557 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830_LVDS) >>
7558 DPLL_FPA01_P1_POST_DIV_SHIFT);
7559 clock.p2 = 14;
Jesse Barnes79e53942008-11-07 14:24:08 -08007560 } else {
7561 if (dpll & PLL_P1_DIVIDE_BY_TWO)
7562 clock.p1 = 2;
7563 else {
7564 clock.p1 = ((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830) >>
7565 DPLL_FPA01_P1_POST_DIV_SHIFT) + 2;
7566 }
7567 if (dpll & PLL_P2_DIVIDE_BY_4)
7568 clock.p2 = 4;
7569 else
7570 clock.p2 = 2;
Jesse Barnes79e53942008-11-07 14:24:08 -08007571 }
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +03007572
7573 i9xx_clock(refclk, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08007574 }
7575
Ville Syrjälä18442d02013-09-13 16:00:08 +03007576 /*
7577 * This value includes pixel_multiplier. We will use
Damien Lespiau241bfc32013-09-25 16:45:37 +01007578 * port_clock to compute adjusted_mode.crtc_clock in the
Ville Syrjälä18442d02013-09-13 16:00:08 +03007579 * encoder's get_config() function.
7580 */
7581 pipe_config->port_clock = clock.dot;
Jesse Barnesf1f644d2013-06-27 00:39:25 +03007582}
7583
Ville Syrjälä6878da02013-09-13 15:59:11 +03007584int intel_dotclock_calculate(int link_freq,
7585 const struct intel_link_m_n *m_n)
Jesse Barnesf1f644d2013-06-27 00:39:25 +03007586{
Jesse Barnesf1f644d2013-06-27 00:39:25 +03007587 /*
7588 * The calculation for the data clock is:
Ville Syrjälä1041a022013-09-06 23:28:58 +03007589 * pixel_clock = ((m/n)*(link_clock * nr_lanes))/bpp
Jesse Barnesf1f644d2013-06-27 00:39:25 +03007590 * But we want to avoid losing precison if possible, so:
Ville Syrjälä1041a022013-09-06 23:28:58 +03007591 * pixel_clock = ((m * link_clock * nr_lanes)/(n*bpp))
Jesse Barnesf1f644d2013-06-27 00:39:25 +03007592 *
7593 * and the link clock is simpler:
Ville Syrjälä1041a022013-09-06 23:28:58 +03007594 * link_clock = (m * link_clock) / n
Jesse Barnes79e53942008-11-07 14:24:08 -08007595 */
7596
Ville Syrjälä6878da02013-09-13 15:59:11 +03007597 if (!m_n->link_n)
7598 return 0;
7599
7600 return div_u64((u64)m_n->link_m * link_freq, m_n->link_n);
7601}
7602
Ville Syrjälä18442d02013-09-13 16:00:08 +03007603static void ironlake_pch_clock_get(struct intel_crtc *crtc,
7604 struct intel_crtc_config *pipe_config)
Ville Syrjälä6878da02013-09-13 15:59:11 +03007605{
7606 struct drm_device *dev = crtc->base.dev;
Ville Syrjälä18442d02013-09-13 16:00:08 +03007607
7608 /* read out port_clock from the DPLL */
7609 i9xx_crtc_clock_get(crtc, pipe_config);
Ville Syrjälä6878da02013-09-13 15:59:11 +03007610
Jesse Barnesf1f644d2013-06-27 00:39:25 +03007611 /*
Ville Syrjälä18442d02013-09-13 16:00:08 +03007612 * This value does not include pixel_multiplier.
Damien Lespiau241bfc32013-09-25 16:45:37 +01007613 * We will check that port_clock and adjusted_mode.crtc_clock
Ville Syrjälä18442d02013-09-13 16:00:08 +03007614 * agree once we know their relationship in the encoder's
7615 * get_config() function.
Jesse Barnesf1f644d2013-06-27 00:39:25 +03007616 */
Damien Lespiau241bfc32013-09-25 16:45:37 +01007617 pipe_config->adjusted_mode.crtc_clock =
Ville Syrjälä18442d02013-09-13 16:00:08 +03007618 intel_dotclock_calculate(intel_fdi_link_freq(dev) * 10000,
7619 &pipe_config->fdi_m_n);
Jesse Barnes79e53942008-11-07 14:24:08 -08007620}
7621
7622/** Returns the currently programmed mode of the given pipe. */
7623struct drm_display_mode *intel_crtc_mode_get(struct drm_device *dev,
7624 struct drm_crtc *crtc)
7625{
Jesse Barnes548f2452011-02-17 10:40:53 -08007626 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -08007627 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter3b117c82013-04-17 20:15:07 +02007628 enum transcoder cpu_transcoder = intel_crtc->config.cpu_transcoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08007629 struct drm_display_mode *mode;
Jesse Barnesf1f644d2013-06-27 00:39:25 +03007630 struct intel_crtc_config pipe_config;
Paulo Zanonife2b8f92012-10-23 18:30:02 -02007631 int htot = I915_READ(HTOTAL(cpu_transcoder));
7632 int hsync = I915_READ(HSYNC(cpu_transcoder));
7633 int vtot = I915_READ(VTOTAL(cpu_transcoder));
7634 int vsync = I915_READ(VSYNC(cpu_transcoder));
Ville Syrjälä293623f2013-09-13 16:18:46 +03007635 enum pipe pipe = intel_crtc->pipe;
Jesse Barnes79e53942008-11-07 14:24:08 -08007636
7637 mode = kzalloc(sizeof(*mode), GFP_KERNEL);
7638 if (!mode)
7639 return NULL;
7640
Jesse Barnesf1f644d2013-06-27 00:39:25 +03007641 /*
7642 * Construct a pipe_config sufficient for getting the clock info
7643 * back out of crtc_clock_get.
7644 *
7645 * Note, if LVDS ever uses a non-1 pixel multiplier, we'll need
7646 * to use a real value here instead.
7647 */
Ville Syrjälä293623f2013-09-13 16:18:46 +03007648 pipe_config.cpu_transcoder = (enum transcoder) pipe;
Jesse Barnesf1f644d2013-06-27 00:39:25 +03007649 pipe_config.pixel_multiplier = 1;
Ville Syrjälä293623f2013-09-13 16:18:46 +03007650 pipe_config.dpll_hw_state.dpll = I915_READ(DPLL(pipe));
7651 pipe_config.dpll_hw_state.fp0 = I915_READ(FP0(pipe));
7652 pipe_config.dpll_hw_state.fp1 = I915_READ(FP1(pipe));
Jesse Barnesf1f644d2013-06-27 00:39:25 +03007653 i9xx_crtc_clock_get(intel_crtc, &pipe_config);
7654
Ville Syrjälä773ae032013-09-23 17:48:20 +03007655 mode->clock = pipe_config.port_clock / pipe_config.pixel_multiplier;
Jesse Barnes79e53942008-11-07 14:24:08 -08007656 mode->hdisplay = (htot & 0xffff) + 1;
7657 mode->htotal = ((htot & 0xffff0000) >> 16) + 1;
7658 mode->hsync_start = (hsync & 0xffff) + 1;
7659 mode->hsync_end = ((hsync & 0xffff0000) >> 16) + 1;
7660 mode->vdisplay = (vtot & 0xffff) + 1;
7661 mode->vtotal = ((vtot & 0xffff0000) >> 16) + 1;
7662 mode->vsync_start = (vsync & 0xffff) + 1;
7663 mode->vsync_end = ((vsync & 0xffff0000) >> 16) + 1;
7664
7665 drm_mode_set_name(mode);
Jesse Barnes79e53942008-11-07 14:24:08 -08007666
7667 return mode;
7668}
7669
Daniel Vetter3dec0092010-08-20 21:40:52 +02007670static void intel_increase_pllclock(struct drm_crtc *crtc)
Jesse Barnes652c3932009-08-17 13:31:43 -07007671{
7672 struct drm_device *dev = crtc->dev;
7673 drm_i915_private_t *dev_priv = dev->dev_private;
7674 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
7675 int pipe = intel_crtc->pipe;
Jesse Barnesdbdc6472010-12-30 09:36:39 -08007676 int dpll_reg = DPLL(pipe);
7677 int dpll;
Jesse Barnes652c3932009-08-17 13:31:43 -07007678
Eric Anholtbad720f2009-10-22 16:11:14 -07007679 if (HAS_PCH_SPLIT(dev))
Jesse Barnes652c3932009-08-17 13:31:43 -07007680 return;
7681
7682 if (!dev_priv->lvds_downclock_avail)
7683 return;
7684
Jesse Barnesdbdc6472010-12-30 09:36:39 -08007685 dpll = I915_READ(dpll_reg);
Jesse Barnes652c3932009-08-17 13:31:43 -07007686 if (!HAS_PIPE_CXSR(dev) && (dpll & DISPLAY_RATE_SELECT_FPA1)) {
Zhao Yakui44d98a62009-10-09 11:39:40 +08007687 DRM_DEBUG_DRIVER("upclocking LVDS\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07007688
Sean Paul8ac5a6d2012-02-13 13:14:51 -05007689 assert_panel_unlocked(dev_priv, pipe);
Jesse Barnes652c3932009-08-17 13:31:43 -07007690
7691 dpll &= ~DISPLAY_RATE_SELECT_FPA1;
7692 I915_WRITE(dpll_reg, dpll);
Jesse Barnes9d0498a2010-08-18 13:20:54 -07007693 intel_wait_for_vblank(dev, pipe);
Jesse Barnesdbdc6472010-12-30 09:36:39 -08007694
Jesse Barnes652c3932009-08-17 13:31:43 -07007695 dpll = I915_READ(dpll_reg);
7696 if (dpll & DISPLAY_RATE_SELECT_FPA1)
Zhao Yakui44d98a62009-10-09 11:39:40 +08007697 DRM_DEBUG_DRIVER("failed to upclock LVDS!\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07007698 }
Jesse Barnes652c3932009-08-17 13:31:43 -07007699}
7700
7701static void intel_decrease_pllclock(struct drm_crtc *crtc)
7702{
7703 struct drm_device *dev = crtc->dev;
7704 drm_i915_private_t *dev_priv = dev->dev_private;
7705 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes652c3932009-08-17 13:31:43 -07007706
Eric Anholtbad720f2009-10-22 16:11:14 -07007707 if (HAS_PCH_SPLIT(dev))
Jesse Barnes652c3932009-08-17 13:31:43 -07007708 return;
7709
7710 if (!dev_priv->lvds_downclock_avail)
7711 return;
7712
7713 /*
7714 * Since this is called by a timer, we should never get here in
7715 * the manual case.
7716 */
7717 if (!HAS_PIPE_CXSR(dev) && intel_crtc->lowfreq_avail) {
Chris Wilson074b5e12012-05-02 12:07:06 +01007718 int pipe = intel_crtc->pipe;
7719 int dpll_reg = DPLL(pipe);
Daniel Vetterdc257cf2012-05-07 11:30:46 +02007720 int dpll;
Chris Wilson074b5e12012-05-02 12:07:06 +01007721
Zhao Yakui44d98a62009-10-09 11:39:40 +08007722 DRM_DEBUG_DRIVER("downclocking LVDS\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07007723
Sean Paul8ac5a6d2012-02-13 13:14:51 -05007724 assert_panel_unlocked(dev_priv, pipe);
Jesse Barnes652c3932009-08-17 13:31:43 -07007725
Chris Wilson074b5e12012-05-02 12:07:06 +01007726 dpll = I915_READ(dpll_reg);
Jesse Barnes652c3932009-08-17 13:31:43 -07007727 dpll |= DISPLAY_RATE_SELECT_FPA1;
7728 I915_WRITE(dpll_reg, dpll);
Jesse Barnes9d0498a2010-08-18 13:20:54 -07007729 intel_wait_for_vblank(dev, pipe);
Jesse Barnes652c3932009-08-17 13:31:43 -07007730 dpll = I915_READ(dpll_reg);
7731 if (!(dpll & DISPLAY_RATE_SELECT_FPA1))
Zhao Yakui44d98a62009-10-09 11:39:40 +08007732 DRM_DEBUG_DRIVER("failed to downclock LVDS!\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07007733 }
7734
7735}
7736
Chris Wilsonf047e392012-07-21 12:31:41 +01007737void intel_mark_busy(struct drm_device *dev)
Jesse Barnes652c3932009-08-17 13:31:43 -07007738{
Paulo Zanonic67a4702013-08-19 13:18:09 -03007739 struct drm_i915_private *dev_priv = dev->dev_private;
7740
7741 hsw_package_c8_gpu_busy(dev_priv);
7742 i915_update_gfx_val(dev_priv);
Chris Wilsonf047e392012-07-21 12:31:41 +01007743}
7744
7745void intel_mark_idle(struct drm_device *dev)
7746{
Paulo Zanonic67a4702013-08-19 13:18:09 -03007747 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson725a5b52013-01-08 11:02:57 +00007748 struct drm_crtc *crtc;
7749
Paulo Zanonic67a4702013-08-19 13:18:09 -03007750 hsw_package_c8_gpu_idle(dev_priv);
7751
Chris Wilson725a5b52013-01-08 11:02:57 +00007752 if (!i915_powersave)
7753 return;
7754
7755 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
7756 if (!crtc->fb)
7757 continue;
7758
7759 intel_decrease_pllclock(crtc);
7760 }
Chris Wilsonb29c19b2013-09-25 17:34:56 +01007761
7762 if (dev_priv->info->gen >= 6)
7763 gen6_rps_idle(dev->dev_private);
Chris Wilsonf047e392012-07-21 12:31:41 +01007764}
7765
Chris Wilsonc65355b2013-06-06 16:53:41 -03007766void intel_mark_fb_busy(struct drm_i915_gem_object *obj,
7767 struct intel_ring_buffer *ring)
Chris Wilsonf047e392012-07-21 12:31:41 +01007768{
7769 struct drm_device *dev = obj->base.dev;
Jesse Barnes652c3932009-08-17 13:31:43 -07007770 struct drm_crtc *crtc;
Jesse Barnes652c3932009-08-17 13:31:43 -07007771
7772 if (!i915_powersave)
7773 return;
7774
Jesse Barnes652c3932009-08-17 13:31:43 -07007775 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
Jesse Barnes652c3932009-08-17 13:31:43 -07007776 if (!crtc->fb)
7777 continue;
7778
Chris Wilsonc65355b2013-06-06 16:53:41 -03007779 if (to_intel_framebuffer(crtc->fb)->obj != obj)
7780 continue;
7781
7782 intel_increase_pllclock(crtc);
7783 if (ring && intel_fbc_enabled(dev))
7784 ring->fbc_dirty = true;
Jesse Barnes652c3932009-08-17 13:31:43 -07007785 }
Jesse Barnes652c3932009-08-17 13:31:43 -07007786}
7787
Jesse Barnes79e53942008-11-07 14:24:08 -08007788static void intel_crtc_destroy(struct drm_crtc *crtc)
7789{
7790 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter67e77c52010-08-20 22:26:30 +02007791 struct drm_device *dev = crtc->dev;
7792 struct intel_unpin_work *work;
7793 unsigned long flags;
7794
7795 spin_lock_irqsave(&dev->event_lock, flags);
7796 work = intel_crtc->unpin_work;
7797 intel_crtc->unpin_work = NULL;
7798 spin_unlock_irqrestore(&dev->event_lock, flags);
7799
7800 if (work) {
7801 cancel_work_sync(&work->work);
7802 kfree(work);
7803 }
Jesse Barnes79e53942008-11-07 14:24:08 -08007804
Mika Kuoppala40ccc722013-04-23 17:27:08 +03007805 intel_crtc_cursor_set(crtc, NULL, 0, 0, 0);
7806
Jesse Barnes79e53942008-11-07 14:24:08 -08007807 drm_crtc_cleanup(crtc);
Daniel Vetter67e77c52010-08-20 22:26:30 +02007808
Jesse Barnes79e53942008-11-07 14:24:08 -08007809 kfree(intel_crtc);
7810}
7811
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007812static void intel_unpin_work_fn(struct work_struct *__work)
7813{
7814 struct intel_unpin_work *work =
7815 container_of(__work, struct intel_unpin_work, work);
Chris Wilsonb4a98e52012-11-01 09:26:26 +00007816 struct drm_device *dev = work->crtc->dev;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007817
Chris Wilsonb4a98e52012-11-01 09:26:26 +00007818 mutex_lock(&dev->struct_mutex);
Chris Wilson1690e1e2011-12-14 13:57:08 +01007819 intel_unpin_fb_obj(work->old_fb_obj);
Chris Wilson05394f32010-11-08 19:18:58 +00007820 drm_gem_object_unreference(&work->pending_flip_obj->base);
7821 drm_gem_object_unreference(&work->old_fb_obj->base);
Chris Wilsond9e86c02010-11-10 16:40:20 +00007822
Chris Wilsonb4a98e52012-11-01 09:26:26 +00007823 intel_update_fbc(dev);
7824 mutex_unlock(&dev->struct_mutex);
7825
7826 BUG_ON(atomic_read(&to_intel_crtc(work->crtc)->unpin_work_count) == 0);
7827 atomic_dec(&to_intel_crtc(work->crtc)->unpin_work_count);
7828
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007829 kfree(work);
7830}
7831
Jesse Barnes1afe3e92010-03-26 10:35:20 -07007832static void do_intel_finish_page_flip(struct drm_device *dev,
Mario Kleiner49b14a52010-12-09 07:00:07 +01007833 struct drm_crtc *crtc)
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007834{
7835 drm_i915_private_t *dev_priv = dev->dev_private;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007836 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
7837 struct intel_unpin_work *work;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007838 unsigned long flags;
7839
7840 /* Ignore early vblank irqs */
7841 if (intel_crtc == NULL)
7842 return;
7843
7844 spin_lock_irqsave(&dev->event_lock, flags);
7845 work = intel_crtc->unpin_work;
Chris Wilsone7d841c2012-12-03 11:36:30 +00007846
7847 /* Ensure we don't miss a work->pending update ... */
7848 smp_rmb();
7849
7850 if (work == NULL || atomic_read(&work->pending) < INTEL_FLIP_COMPLETE) {
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007851 spin_unlock_irqrestore(&dev->event_lock, flags);
7852 return;
7853 }
7854
Chris Wilsone7d841c2012-12-03 11:36:30 +00007855 /* and that the unpin work is consistent wrt ->pending. */
7856 smp_rmb();
7857
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007858 intel_crtc->unpin_work = NULL;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007859
Rob Clark45a066e2012-10-08 14:50:40 -05007860 if (work->event)
7861 drm_send_vblank_event(dev, intel_crtc->pipe, work->event);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007862
Mario Kleiner0af7e4d2010-12-08 04:07:19 +01007863 drm_vblank_put(dev, intel_crtc->pipe);
7864
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007865 spin_unlock_irqrestore(&dev->event_lock, flags);
7866
Daniel Vetter2c10d572012-12-20 21:24:07 +01007867 wake_up_all(&dev_priv->pending_flip_queue);
Chris Wilsonb4a98e52012-11-01 09:26:26 +00007868
7869 queue_work(dev_priv->wq, &work->work);
Jesse Barnese5510fa2010-07-01 16:48:37 -07007870
7871 trace_i915_flip_complete(intel_crtc->plane, work->pending_flip_obj);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007872}
7873
Jesse Barnes1afe3e92010-03-26 10:35:20 -07007874void intel_finish_page_flip(struct drm_device *dev, int pipe)
7875{
7876 drm_i915_private_t *dev_priv = dev->dev_private;
7877 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
7878
Mario Kleiner49b14a52010-12-09 07:00:07 +01007879 do_intel_finish_page_flip(dev, crtc);
Jesse Barnes1afe3e92010-03-26 10:35:20 -07007880}
7881
7882void intel_finish_page_flip_plane(struct drm_device *dev, int plane)
7883{
7884 drm_i915_private_t *dev_priv = dev->dev_private;
7885 struct drm_crtc *crtc = dev_priv->plane_to_crtc_mapping[plane];
7886
Mario Kleiner49b14a52010-12-09 07:00:07 +01007887 do_intel_finish_page_flip(dev, crtc);
Jesse Barnes1afe3e92010-03-26 10:35:20 -07007888}
7889
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007890void intel_prepare_page_flip(struct drm_device *dev, int plane)
7891{
7892 drm_i915_private_t *dev_priv = dev->dev_private;
7893 struct intel_crtc *intel_crtc =
7894 to_intel_crtc(dev_priv->plane_to_crtc_mapping[plane]);
7895 unsigned long flags;
7896
Chris Wilsone7d841c2012-12-03 11:36:30 +00007897 /* NB: An MMIO update of the plane base pointer will also
7898 * generate a page-flip completion irq, i.e. every modeset
7899 * is also accompanied by a spurious intel_prepare_page_flip().
7900 */
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007901 spin_lock_irqsave(&dev->event_lock, flags);
Chris Wilsone7d841c2012-12-03 11:36:30 +00007902 if (intel_crtc->unpin_work)
7903 atomic_inc_not_zero(&intel_crtc->unpin_work->pending);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007904 spin_unlock_irqrestore(&dev->event_lock, flags);
7905}
7906
Chris Wilsone7d841c2012-12-03 11:36:30 +00007907inline static void intel_mark_page_flip_active(struct intel_crtc *intel_crtc)
7908{
7909 /* Ensure that the work item is consistent when activating it ... */
7910 smp_wmb();
7911 atomic_set(&intel_crtc->unpin_work->pending, INTEL_FLIP_PENDING);
7912 /* and that it is marked active as soon as the irq could fire. */
7913 smp_wmb();
7914}
7915
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07007916static int intel_gen2_queue_flip(struct drm_device *dev,
7917 struct drm_crtc *crtc,
7918 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07007919 struct drm_i915_gem_object *obj,
7920 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07007921{
7922 struct drm_i915_private *dev_priv = dev->dev_private;
7923 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07007924 u32 flip_mask;
Daniel Vetter6d90c952012-04-26 23:28:05 +02007925 struct intel_ring_buffer *ring = &dev_priv->ring[RCS];
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07007926 int ret;
7927
Daniel Vetter6d90c952012-04-26 23:28:05 +02007928 ret = intel_pin_and_fence_fb_obj(dev, obj, ring);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07007929 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01007930 goto err;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07007931
Daniel Vetter6d90c952012-04-26 23:28:05 +02007932 ret = intel_ring_begin(ring, 6);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07007933 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01007934 goto err_unpin;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07007935
7936 /* Can't queue multiple flips, so wait for the previous
7937 * one to finish before executing the next.
7938 */
7939 if (intel_crtc->plane)
7940 flip_mask = MI_WAIT_FOR_PLANE_B_FLIP;
7941 else
7942 flip_mask = MI_WAIT_FOR_PLANE_A_FLIP;
Daniel Vetter6d90c952012-04-26 23:28:05 +02007943 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | flip_mask);
7944 intel_ring_emit(ring, MI_NOOP);
7945 intel_ring_emit(ring, MI_DISPLAY_FLIP |
7946 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
7947 intel_ring_emit(ring, fb->pitches[0]);
Ben Widawskyf343c5f2013-07-05 14:41:04 -07007948 intel_ring_emit(ring, i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset);
Daniel Vetter6d90c952012-04-26 23:28:05 +02007949 intel_ring_emit(ring, 0); /* aux display base address, unused */
Chris Wilsone7d841c2012-12-03 11:36:30 +00007950
7951 intel_mark_page_flip_active(intel_crtc);
Chris Wilson09246732013-08-10 22:16:32 +01007952 __intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01007953 return 0;
7954
7955err_unpin:
7956 intel_unpin_fb_obj(obj);
7957err:
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07007958 return ret;
7959}
7960
7961static int intel_gen3_queue_flip(struct drm_device *dev,
7962 struct drm_crtc *crtc,
7963 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07007964 struct drm_i915_gem_object *obj,
7965 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07007966{
7967 struct drm_i915_private *dev_priv = dev->dev_private;
7968 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07007969 u32 flip_mask;
Daniel Vetter6d90c952012-04-26 23:28:05 +02007970 struct intel_ring_buffer *ring = &dev_priv->ring[RCS];
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07007971 int ret;
7972
Daniel Vetter6d90c952012-04-26 23:28:05 +02007973 ret = intel_pin_and_fence_fb_obj(dev, obj, ring);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07007974 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01007975 goto err;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07007976
Daniel Vetter6d90c952012-04-26 23:28:05 +02007977 ret = intel_ring_begin(ring, 6);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07007978 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01007979 goto err_unpin;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07007980
7981 if (intel_crtc->plane)
7982 flip_mask = MI_WAIT_FOR_PLANE_B_FLIP;
7983 else
7984 flip_mask = MI_WAIT_FOR_PLANE_A_FLIP;
Daniel Vetter6d90c952012-04-26 23:28:05 +02007985 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | flip_mask);
7986 intel_ring_emit(ring, MI_NOOP);
7987 intel_ring_emit(ring, MI_DISPLAY_FLIP_I915 |
7988 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
7989 intel_ring_emit(ring, fb->pitches[0]);
Ben Widawskyf343c5f2013-07-05 14:41:04 -07007990 intel_ring_emit(ring, i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset);
Daniel Vetter6d90c952012-04-26 23:28:05 +02007991 intel_ring_emit(ring, MI_NOOP);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07007992
Chris Wilsone7d841c2012-12-03 11:36:30 +00007993 intel_mark_page_flip_active(intel_crtc);
Chris Wilson09246732013-08-10 22:16:32 +01007994 __intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01007995 return 0;
7996
7997err_unpin:
7998 intel_unpin_fb_obj(obj);
7999err:
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008000 return ret;
8001}
8002
8003static int intel_gen4_queue_flip(struct drm_device *dev,
8004 struct drm_crtc *crtc,
8005 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07008006 struct drm_i915_gem_object *obj,
8007 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008008{
8009 struct drm_i915_private *dev_priv = dev->dev_private;
8010 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
8011 uint32_t pf, pipesrc;
Daniel Vetter6d90c952012-04-26 23:28:05 +02008012 struct intel_ring_buffer *ring = &dev_priv->ring[RCS];
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008013 int ret;
8014
Daniel Vetter6d90c952012-04-26 23:28:05 +02008015 ret = intel_pin_and_fence_fb_obj(dev, obj, ring);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008016 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01008017 goto err;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008018
Daniel Vetter6d90c952012-04-26 23:28:05 +02008019 ret = intel_ring_begin(ring, 4);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008020 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01008021 goto err_unpin;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008022
8023 /* i965+ uses the linear or tiled offsets from the
8024 * Display Registers (which do not change across a page-flip)
8025 * so we need only reprogram the base address.
8026 */
Daniel Vetter6d90c952012-04-26 23:28:05 +02008027 intel_ring_emit(ring, MI_DISPLAY_FLIP |
8028 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
8029 intel_ring_emit(ring, fb->pitches[0]);
Daniel Vetterc2c75132012-07-05 12:17:30 +02008030 intel_ring_emit(ring,
Ben Widawskyf343c5f2013-07-05 14:41:04 -07008031 (i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset) |
Daniel Vetterc2c75132012-07-05 12:17:30 +02008032 obj->tiling_mode);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008033
8034 /* XXX Enabling the panel-fitter across page-flip is so far
8035 * untested on non-native modes, so ignore it for now.
8036 * pf = I915_READ(pipe == 0 ? PFA_CTL_1 : PFB_CTL_1) & PF_ENABLE;
8037 */
8038 pf = 0;
8039 pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff;
Daniel Vetter6d90c952012-04-26 23:28:05 +02008040 intel_ring_emit(ring, pf | pipesrc);
Chris Wilsone7d841c2012-12-03 11:36:30 +00008041
8042 intel_mark_page_flip_active(intel_crtc);
Chris Wilson09246732013-08-10 22:16:32 +01008043 __intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01008044 return 0;
8045
8046err_unpin:
8047 intel_unpin_fb_obj(obj);
8048err:
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008049 return ret;
8050}
8051
8052static int intel_gen6_queue_flip(struct drm_device *dev,
8053 struct drm_crtc *crtc,
8054 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07008055 struct drm_i915_gem_object *obj,
8056 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008057{
8058 struct drm_i915_private *dev_priv = dev->dev_private;
8059 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter6d90c952012-04-26 23:28:05 +02008060 struct intel_ring_buffer *ring = &dev_priv->ring[RCS];
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008061 uint32_t pf, pipesrc;
8062 int ret;
8063
Daniel Vetter6d90c952012-04-26 23:28:05 +02008064 ret = intel_pin_and_fence_fb_obj(dev, obj, ring);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008065 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01008066 goto err;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008067
Daniel Vetter6d90c952012-04-26 23:28:05 +02008068 ret = intel_ring_begin(ring, 4);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008069 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01008070 goto err_unpin;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008071
Daniel Vetter6d90c952012-04-26 23:28:05 +02008072 intel_ring_emit(ring, MI_DISPLAY_FLIP |
8073 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
8074 intel_ring_emit(ring, fb->pitches[0] | obj->tiling_mode);
Ben Widawskyf343c5f2013-07-05 14:41:04 -07008075 intel_ring_emit(ring, i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008076
Chris Wilson99d9acd2012-04-17 20:37:00 +01008077 /* Contrary to the suggestions in the documentation,
8078 * "Enable Panel Fitter" does not seem to be required when page
8079 * flipping with a non-native mode, and worse causes a normal
8080 * modeset to fail.
8081 * pf = I915_READ(PF_CTL(intel_crtc->pipe)) & PF_ENABLE;
8082 */
8083 pf = 0;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008084 pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff;
Daniel Vetter6d90c952012-04-26 23:28:05 +02008085 intel_ring_emit(ring, pf | pipesrc);
Chris Wilsone7d841c2012-12-03 11:36:30 +00008086
8087 intel_mark_page_flip_active(intel_crtc);
Chris Wilson09246732013-08-10 22:16:32 +01008088 __intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01008089 return 0;
8090
8091err_unpin:
8092 intel_unpin_fb_obj(obj);
8093err:
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008094 return ret;
8095}
8096
Jesse Barnes7c9017e2011-06-16 12:18:54 -07008097static int intel_gen7_queue_flip(struct drm_device *dev,
8098 struct drm_crtc *crtc,
8099 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07008100 struct drm_i915_gem_object *obj,
8101 uint32_t flags)
Jesse Barnes7c9017e2011-06-16 12:18:54 -07008102{
8103 struct drm_i915_private *dev_priv = dev->dev_private;
8104 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Chris Wilsonffe74d72013-08-26 20:58:12 +01008105 struct intel_ring_buffer *ring;
Daniel Vettercb05d8d2012-05-23 14:02:00 +02008106 uint32_t plane_bit = 0;
Chris Wilsonffe74d72013-08-26 20:58:12 +01008107 int len, ret;
8108
8109 ring = obj->ring;
Chris Wilson1c5fd082013-09-04 10:54:30 +01008110 if (IS_VALLEYVIEW(dev) || ring == NULL || ring->id != RCS)
Chris Wilsonffe74d72013-08-26 20:58:12 +01008111 ring = &dev_priv->ring[BCS];
Jesse Barnes7c9017e2011-06-16 12:18:54 -07008112
8113 ret = intel_pin_and_fence_fb_obj(dev, obj, ring);
8114 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01008115 goto err;
Jesse Barnes7c9017e2011-06-16 12:18:54 -07008116
Daniel Vettercb05d8d2012-05-23 14:02:00 +02008117 switch(intel_crtc->plane) {
8118 case PLANE_A:
8119 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_A;
8120 break;
8121 case PLANE_B:
8122 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_B;
8123 break;
8124 case PLANE_C:
8125 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_C;
8126 break;
8127 default:
8128 WARN_ONCE(1, "unknown plane in flip command\n");
8129 ret = -ENODEV;
Eugeni Dodonovab3951e2012-06-18 19:03:38 -03008130 goto err_unpin;
Daniel Vettercb05d8d2012-05-23 14:02:00 +02008131 }
8132
Chris Wilsonffe74d72013-08-26 20:58:12 +01008133 len = 4;
8134 if (ring->id == RCS)
8135 len += 6;
8136
8137 ret = intel_ring_begin(ring, len);
Jesse Barnes7c9017e2011-06-16 12:18:54 -07008138 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01008139 goto err_unpin;
Jesse Barnes7c9017e2011-06-16 12:18:54 -07008140
Chris Wilsonffe74d72013-08-26 20:58:12 +01008141 /* Unmask the flip-done completion message. Note that the bspec says that
8142 * we should do this for both the BCS and RCS, and that we must not unmask
8143 * more than one flip event at any time (or ensure that one flip message
8144 * can be sent by waiting for flip-done prior to queueing new flips).
8145 * Experimentation says that BCS works despite DERRMR masking all
8146 * flip-done completion events and that unmasking all planes at once
8147 * for the RCS also doesn't appear to drop events. Setting the DERRMR
8148 * to zero does lead to lockups within MI_DISPLAY_FLIP.
8149 */
8150 if (ring->id == RCS) {
8151 intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(1));
8152 intel_ring_emit(ring, DERRMR);
8153 intel_ring_emit(ring, ~(DERRMR_PIPEA_PRI_FLIP_DONE |
8154 DERRMR_PIPEB_PRI_FLIP_DONE |
8155 DERRMR_PIPEC_PRI_FLIP_DONE));
8156 intel_ring_emit(ring, MI_STORE_REGISTER_MEM(1));
8157 intel_ring_emit(ring, DERRMR);
8158 intel_ring_emit(ring, ring->scratch.gtt_offset + 256);
8159 }
8160
Daniel Vettercb05d8d2012-05-23 14:02:00 +02008161 intel_ring_emit(ring, MI_DISPLAY_FLIP_I915 | plane_bit);
Ville Syrjälä01f2c772011-12-20 00:06:49 +02008162 intel_ring_emit(ring, (fb->pitches[0] | obj->tiling_mode));
Ben Widawskyf343c5f2013-07-05 14:41:04 -07008163 intel_ring_emit(ring, i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset);
Jesse Barnes7c9017e2011-06-16 12:18:54 -07008164 intel_ring_emit(ring, (MI_NOOP));
Chris Wilsone7d841c2012-12-03 11:36:30 +00008165
8166 intel_mark_page_flip_active(intel_crtc);
Chris Wilson09246732013-08-10 22:16:32 +01008167 __intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01008168 return 0;
8169
8170err_unpin:
8171 intel_unpin_fb_obj(obj);
8172err:
Jesse Barnes7c9017e2011-06-16 12:18:54 -07008173 return ret;
8174}
8175
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008176static int intel_default_queue_flip(struct drm_device *dev,
8177 struct drm_crtc *crtc,
8178 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07008179 struct drm_i915_gem_object *obj,
8180 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008181{
8182 return -ENODEV;
8183}
8184
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008185static int intel_crtc_page_flip(struct drm_crtc *crtc,
8186 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07008187 struct drm_pending_vblank_event *event,
8188 uint32_t page_flip_flags)
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008189{
8190 struct drm_device *dev = crtc->dev;
8191 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä4a35f832013-02-22 16:53:38 +02008192 struct drm_framebuffer *old_fb = crtc->fb;
8193 struct drm_i915_gem_object *obj = to_intel_framebuffer(fb)->obj;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008194 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
8195 struct intel_unpin_work *work;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008196 unsigned long flags;
Chris Wilson52e68632010-08-08 10:15:59 +01008197 int ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008198
Ville Syrjäläe6a595d2012-05-24 21:08:59 +03008199 /* Can't change pixel format via MI display flips. */
8200 if (fb->pixel_format != crtc->fb->pixel_format)
8201 return -EINVAL;
8202
8203 /*
8204 * TILEOFF/LINOFF registers can't be changed via MI display flips.
8205 * Note that pitch changes could also affect these register.
8206 */
8207 if (INTEL_INFO(dev)->gen > 3 &&
8208 (fb->offsets[0] != crtc->fb->offsets[0] ||
8209 fb->pitches[0] != crtc->fb->pitches[0]))
8210 return -EINVAL;
8211
Daniel Vetterb14c5672013-09-19 12:18:32 +02008212 work = kzalloc(sizeof(*work), GFP_KERNEL);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008213 if (work == NULL)
8214 return -ENOMEM;
8215
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008216 work->event = event;
Chris Wilsonb4a98e52012-11-01 09:26:26 +00008217 work->crtc = crtc;
Ville Syrjälä4a35f832013-02-22 16:53:38 +02008218 work->old_fb_obj = to_intel_framebuffer(old_fb)->obj;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008219 INIT_WORK(&work->work, intel_unpin_work_fn);
8220
Jesse Barnes7317c75e62011-08-29 09:45:28 -07008221 ret = drm_vblank_get(dev, intel_crtc->pipe);
8222 if (ret)
8223 goto free_work;
8224
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008225 /* We borrow the event spin lock for protecting unpin_work */
8226 spin_lock_irqsave(&dev->event_lock, flags);
8227 if (intel_crtc->unpin_work) {
8228 spin_unlock_irqrestore(&dev->event_lock, flags);
8229 kfree(work);
Jesse Barnes7317c75e62011-08-29 09:45:28 -07008230 drm_vblank_put(dev, intel_crtc->pipe);
Chris Wilson468f0b42010-05-27 13:18:13 +01008231
8232 DRM_DEBUG_DRIVER("flip queue: crtc already busy\n");
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008233 return -EBUSY;
8234 }
8235 intel_crtc->unpin_work = work;
8236 spin_unlock_irqrestore(&dev->event_lock, flags);
8237
Chris Wilsonb4a98e52012-11-01 09:26:26 +00008238 if (atomic_read(&intel_crtc->unpin_work_count) >= 2)
8239 flush_workqueue(dev_priv->wq);
8240
Chris Wilson79158102012-05-23 11:13:58 +01008241 ret = i915_mutex_lock_interruptible(dev);
8242 if (ret)
8243 goto cleanup;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008244
Jesse Barnes75dfca82010-02-10 15:09:44 -08008245 /* Reference the objects for the scheduled work. */
Chris Wilson05394f32010-11-08 19:18:58 +00008246 drm_gem_object_reference(&work->old_fb_obj->base);
8247 drm_gem_object_reference(&obj->base);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008248
8249 crtc->fb = fb;
Chris Wilson96b099f2010-06-07 14:03:04 +01008250
Chris Wilsone1f99ce2010-10-27 12:45:26 +01008251 work->pending_flip_obj = obj;
Chris Wilsone1f99ce2010-10-27 12:45:26 +01008252
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01008253 work->enable_stall_check = true;
8254
Chris Wilsonb4a98e52012-11-01 09:26:26 +00008255 atomic_inc(&intel_crtc->unpin_work_count);
Ville Syrjälä10d83732013-01-29 18:13:34 +02008256 intel_crtc->reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
Chris Wilsone1f99ce2010-10-27 12:45:26 +01008257
Keith Packarded8d1972013-07-22 18:49:58 -07008258 ret = dev_priv->display.queue_flip(dev, crtc, fb, obj, page_flip_flags);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008259 if (ret)
8260 goto cleanup_pending;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008261
Chris Wilson7782de32011-07-08 12:22:41 +01008262 intel_disable_fbc(dev);
Chris Wilsonc65355b2013-06-06 16:53:41 -03008263 intel_mark_fb_busy(obj, NULL);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008264 mutex_unlock(&dev->struct_mutex);
8265
Jesse Barnese5510fa2010-07-01 16:48:37 -07008266 trace_i915_flip_request(intel_crtc->plane, obj);
8267
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008268 return 0;
Chris Wilson96b099f2010-06-07 14:03:04 +01008269
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008270cleanup_pending:
Chris Wilsonb4a98e52012-11-01 09:26:26 +00008271 atomic_dec(&intel_crtc->unpin_work_count);
Ville Syrjälä4a35f832013-02-22 16:53:38 +02008272 crtc->fb = old_fb;
Chris Wilson05394f32010-11-08 19:18:58 +00008273 drm_gem_object_unreference(&work->old_fb_obj->base);
8274 drm_gem_object_unreference(&obj->base);
Chris Wilson96b099f2010-06-07 14:03:04 +01008275 mutex_unlock(&dev->struct_mutex);
8276
Chris Wilson79158102012-05-23 11:13:58 +01008277cleanup:
Chris Wilson96b099f2010-06-07 14:03:04 +01008278 spin_lock_irqsave(&dev->event_lock, flags);
8279 intel_crtc->unpin_work = NULL;
8280 spin_unlock_irqrestore(&dev->event_lock, flags);
8281
Jesse Barnes7317c75e62011-08-29 09:45:28 -07008282 drm_vblank_put(dev, intel_crtc->pipe);
8283free_work:
Chris Wilson96b099f2010-06-07 14:03:04 +01008284 kfree(work);
8285
8286 return ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008287}
8288
Chris Wilsonf6e5b162011-04-12 18:06:51 +01008289static struct drm_crtc_helper_funcs intel_helper_funcs = {
Chris Wilsonf6e5b162011-04-12 18:06:51 +01008290 .mode_set_base_atomic = intel_pipe_set_base_atomic,
8291 .load_lut = intel_crtc_load_lut,
Chris Wilsonf6e5b162011-04-12 18:06:51 +01008292};
8293
Daniel Vetter50f56112012-07-02 09:35:43 +02008294static bool intel_encoder_crtc_ok(struct drm_encoder *encoder,
8295 struct drm_crtc *crtc)
8296{
8297 struct drm_device *dev;
8298 struct drm_crtc *tmp;
8299 int crtc_mask = 1;
8300
8301 WARN(!crtc, "checking null crtc?\n");
8302
8303 dev = crtc->dev;
8304
8305 list_for_each_entry(tmp, &dev->mode_config.crtc_list, head) {
8306 if (tmp == crtc)
8307 break;
8308 crtc_mask <<= 1;
8309 }
8310
8311 if (encoder->possible_crtcs & crtc_mask)
8312 return true;
8313 return false;
8314}
8315
Daniel Vetter9a935852012-07-05 22:34:27 +02008316/**
8317 * intel_modeset_update_staged_output_state
8318 *
8319 * Updates the staged output configuration state, e.g. after we've read out the
8320 * current hw state.
8321 */
8322static void intel_modeset_update_staged_output_state(struct drm_device *dev)
8323{
8324 struct intel_encoder *encoder;
8325 struct intel_connector *connector;
8326
8327 list_for_each_entry(connector, &dev->mode_config.connector_list,
8328 base.head) {
8329 connector->new_encoder =
8330 to_intel_encoder(connector->base.encoder);
8331 }
8332
8333 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
8334 base.head) {
8335 encoder->new_crtc =
8336 to_intel_crtc(encoder->base.crtc);
8337 }
8338}
8339
8340/**
8341 * intel_modeset_commit_output_state
8342 *
8343 * This function copies the stage display pipe configuration to the real one.
8344 */
8345static void intel_modeset_commit_output_state(struct drm_device *dev)
8346{
8347 struct intel_encoder *encoder;
8348 struct intel_connector *connector;
8349
8350 list_for_each_entry(connector, &dev->mode_config.connector_list,
8351 base.head) {
8352 connector->base.encoder = &connector->new_encoder->base;
8353 }
8354
8355 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
8356 base.head) {
8357 encoder->base.crtc = &encoder->new_crtc->base;
8358 }
8359}
8360
Daniel Vetter050f7ae2013-06-02 13:26:23 +02008361static void
8362connected_sink_compute_bpp(struct intel_connector * connector,
8363 struct intel_crtc_config *pipe_config)
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01008364{
Daniel Vetter050f7ae2013-06-02 13:26:23 +02008365 int bpp = pipe_config->pipe_bpp;
8366
8367 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] checking for sink bpp constrains\n",
8368 connector->base.base.id,
8369 drm_get_connector_name(&connector->base));
8370
8371 /* Don't use an invalid EDID bpc value */
8372 if (connector->base.display_info.bpc &&
8373 connector->base.display_info.bpc * 3 < bpp) {
8374 DRM_DEBUG_KMS("clamping display bpp (was %d) to EDID reported max of %d\n",
8375 bpp, connector->base.display_info.bpc*3);
8376 pipe_config->pipe_bpp = connector->base.display_info.bpc*3;
8377 }
8378
8379 /* Clamp bpp to 8 on screens without EDID 1.4 */
8380 if (connector->base.display_info.bpc == 0 && bpp > 24) {
8381 DRM_DEBUG_KMS("clamping display bpp (was %d) to default limit of 24\n",
8382 bpp);
8383 pipe_config->pipe_bpp = 24;
8384 }
8385}
8386
8387static int
8388compute_baseline_pipe_bpp(struct intel_crtc *crtc,
8389 struct drm_framebuffer *fb,
8390 struct intel_crtc_config *pipe_config)
8391{
8392 struct drm_device *dev = crtc->base.dev;
8393 struct intel_connector *connector;
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01008394 int bpp;
8395
Daniel Vetterd42264b2013-03-28 16:38:08 +01008396 switch (fb->pixel_format) {
8397 case DRM_FORMAT_C8:
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01008398 bpp = 8*3; /* since we go through a colormap */
8399 break;
Daniel Vetterd42264b2013-03-28 16:38:08 +01008400 case DRM_FORMAT_XRGB1555:
8401 case DRM_FORMAT_ARGB1555:
8402 /* checked in intel_framebuffer_init already */
8403 if (WARN_ON(INTEL_INFO(dev)->gen > 3))
8404 return -EINVAL;
8405 case DRM_FORMAT_RGB565:
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01008406 bpp = 6*3; /* min is 18bpp */
8407 break;
Daniel Vetterd42264b2013-03-28 16:38:08 +01008408 case DRM_FORMAT_XBGR8888:
8409 case DRM_FORMAT_ABGR8888:
8410 /* checked in intel_framebuffer_init already */
8411 if (WARN_ON(INTEL_INFO(dev)->gen < 4))
8412 return -EINVAL;
8413 case DRM_FORMAT_XRGB8888:
8414 case DRM_FORMAT_ARGB8888:
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01008415 bpp = 8*3;
8416 break;
Daniel Vetterd42264b2013-03-28 16:38:08 +01008417 case DRM_FORMAT_XRGB2101010:
8418 case DRM_FORMAT_ARGB2101010:
8419 case DRM_FORMAT_XBGR2101010:
8420 case DRM_FORMAT_ABGR2101010:
8421 /* checked in intel_framebuffer_init already */
8422 if (WARN_ON(INTEL_INFO(dev)->gen < 4))
Daniel Vetterbaba1332013-03-27 00:45:00 +01008423 return -EINVAL;
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01008424 bpp = 10*3;
8425 break;
Daniel Vetterbaba1332013-03-27 00:45:00 +01008426 /* TODO: gen4+ supports 16 bpc floating point, too. */
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01008427 default:
8428 DRM_DEBUG_KMS("unsupported depth\n");
8429 return -EINVAL;
8430 }
8431
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01008432 pipe_config->pipe_bpp = bpp;
8433
8434 /* Clamp display bpp to EDID value */
8435 list_for_each_entry(connector, &dev->mode_config.connector_list,
Daniel Vetter050f7ae2013-06-02 13:26:23 +02008436 base.head) {
Daniel Vetter1b829e02013-06-02 13:26:24 +02008437 if (!connector->new_encoder ||
8438 connector->new_encoder->new_crtc != crtc)
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01008439 continue;
8440
Daniel Vetter050f7ae2013-06-02 13:26:23 +02008441 connected_sink_compute_bpp(connector, pipe_config);
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01008442 }
8443
8444 return bpp;
8445}
8446
Daniel Vetter644db712013-09-19 14:53:58 +02008447static void intel_dump_crtc_timings(const struct drm_display_mode *mode)
8448{
8449 DRM_DEBUG_KMS("crtc timings: %d %d %d %d %d %d %d %d %d, "
8450 "type: 0x%x flags: 0x%x\n",
Damien Lespiau13428302013-09-25 16:45:36 +01008451 mode->crtc_clock,
Daniel Vetter644db712013-09-19 14:53:58 +02008452 mode->crtc_hdisplay, mode->crtc_hsync_start,
8453 mode->crtc_hsync_end, mode->crtc_htotal,
8454 mode->crtc_vdisplay, mode->crtc_vsync_start,
8455 mode->crtc_vsync_end, mode->crtc_vtotal, mode->type, mode->flags);
8456}
8457
Daniel Vetterc0b03412013-05-28 12:05:54 +02008458static void intel_dump_pipe_config(struct intel_crtc *crtc,
8459 struct intel_crtc_config *pipe_config,
8460 const char *context)
8461{
8462 DRM_DEBUG_KMS("[CRTC:%d]%s config for pipe %c\n", crtc->base.base.id,
8463 context, pipe_name(crtc->pipe));
8464
8465 DRM_DEBUG_KMS("cpu_transcoder: %c\n", transcoder_name(pipe_config->cpu_transcoder));
8466 DRM_DEBUG_KMS("pipe bpp: %i, dithering: %i\n",
8467 pipe_config->pipe_bpp, pipe_config->dither);
8468 DRM_DEBUG_KMS("fdi/pch: %i, lanes: %i, gmch_m: %u, gmch_n: %u, link_m: %u, link_n: %u, tu: %u\n",
8469 pipe_config->has_pch_encoder,
8470 pipe_config->fdi_lanes,
8471 pipe_config->fdi_m_n.gmch_m, pipe_config->fdi_m_n.gmch_n,
8472 pipe_config->fdi_m_n.link_m, pipe_config->fdi_m_n.link_n,
8473 pipe_config->fdi_m_n.tu);
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03008474 DRM_DEBUG_KMS("dp: %i, gmch_m: %u, gmch_n: %u, link_m: %u, link_n: %u, tu: %u\n",
8475 pipe_config->has_dp_encoder,
8476 pipe_config->dp_m_n.gmch_m, pipe_config->dp_m_n.gmch_n,
8477 pipe_config->dp_m_n.link_m, pipe_config->dp_m_n.link_n,
8478 pipe_config->dp_m_n.tu);
Daniel Vetterc0b03412013-05-28 12:05:54 +02008479 DRM_DEBUG_KMS("requested mode:\n");
8480 drm_mode_debug_printmodeline(&pipe_config->requested_mode);
8481 DRM_DEBUG_KMS("adjusted mode:\n");
8482 drm_mode_debug_printmodeline(&pipe_config->adjusted_mode);
Daniel Vetter644db712013-09-19 14:53:58 +02008483 intel_dump_crtc_timings(&pipe_config->adjusted_mode);
Ville Syrjäläd71b8d42013-09-06 23:29:08 +03008484 DRM_DEBUG_KMS("port clock: %d\n", pipe_config->port_clock);
Ville Syrjälä37327ab2013-09-04 18:25:28 +03008485 DRM_DEBUG_KMS("pipe src size: %dx%d\n",
8486 pipe_config->pipe_src_w, pipe_config->pipe_src_h);
Daniel Vetterc0b03412013-05-28 12:05:54 +02008487 DRM_DEBUG_KMS("gmch pfit: control: 0x%08x, ratios: 0x%08x, lvds border: 0x%08x\n",
8488 pipe_config->gmch_pfit.control,
8489 pipe_config->gmch_pfit.pgm_ratios,
8490 pipe_config->gmch_pfit.lvds_border_bits);
Chris Wilsonfd4daa92013-08-27 17:04:17 +01008491 DRM_DEBUG_KMS("pch pfit: pos: 0x%08x, size: 0x%08x, %s\n",
Daniel Vetterc0b03412013-05-28 12:05:54 +02008492 pipe_config->pch_pfit.pos,
Chris Wilsonfd4daa92013-08-27 17:04:17 +01008493 pipe_config->pch_pfit.size,
8494 pipe_config->pch_pfit.enabled ? "enabled" : "disabled");
Paulo Zanoni42db64e2013-05-31 16:33:22 -03008495 DRM_DEBUG_KMS("ips: %i\n", pipe_config->ips_enabled);
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03008496 DRM_DEBUG_KMS("double wide: %i\n", pipe_config->double_wide);
Daniel Vetterc0b03412013-05-28 12:05:54 +02008497}
8498
Daniel Vetteraccfc0c2013-05-30 15:04:25 +02008499static bool check_encoder_cloning(struct drm_crtc *crtc)
8500{
8501 int num_encoders = 0;
8502 bool uncloneable_encoders = false;
8503 struct intel_encoder *encoder;
8504
8505 list_for_each_entry(encoder, &crtc->dev->mode_config.encoder_list,
8506 base.head) {
8507 if (&encoder->new_crtc->base != crtc)
8508 continue;
8509
8510 num_encoders++;
8511 if (!encoder->cloneable)
8512 uncloneable_encoders = true;
8513 }
8514
8515 return !(num_encoders > 1 && uncloneable_encoders);
8516}
8517
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01008518static struct intel_crtc_config *
8519intel_modeset_pipe_config(struct drm_crtc *crtc,
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01008520 struct drm_framebuffer *fb,
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01008521 struct drm_display_mode *mode)
Daniel Vetter7758a112012-07-08 19:40:39 +02008522{
8523 struct drm_device *dev = crtc->dev;
Daniel Vetter7758a112012-07-08 19:40:39 +02008524 struct intel_encoder *encoder;
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01008525 struct intel_crtc_config *pipe_config;
Daniel Vettere29c22c2013-02-21 00:00:16 +01008526 int plane_bpp, ret = -EINVAL;
8527 bool retry = true;
Daniel Vetter7758a112012-07-08 19:40:39 +02008528
Daniel Vetteraccfc0c2013-05-30 15:04:25 +02008529 if (!check_encoder_cloning(crtc)) {
8530 DRM_DEBUG_KMS("rejecting invalid cloning configuration\n");
8531 return ERR_PTR(-EINVAL);
8532 }
8533
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01008534 pipe_config = kzalloc(sizeof(*pipe_config), GFP_KERNEL);
8535 if (!pipe_config)
Daniel Vetter7758a112012-07-08 19:40:39 +02008536 return ERR_PTR(-ENOMEM);
8537
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01008538 drm_mode_copy(&pipe_config->adjusted_mode, mode);
8539 drm_mode_copy(&pipe_config->requested_mode, mode);
Ville Syrjälä37327ab2013-09-04 18:25:28 +03008540
Daniel Vettere143a212013-07-04 12:01:15 +02008541 pipe_config->cpu_transcoder =
8542 (enum transcoder) to_intel_crtc(crtc)->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +02008543 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01008544
Imre Deak2960bc92013-07-30 13:36:32 +03008545 /*
8546 * Sanitize sync polarity flags based on requested ones. If neither
8547 * positive or negative polarity is requested, treat this as meaning
8548 * negative polarity.
8549 */
8550 if (!(pipe_config->adjusted_mode.flags &
8551 (DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NHSYNC)))
8552 pipe_config->adjusted_mode.flags |= DRM_MODE_FLAG_NHSYNC;
8553
8554 if (!(pipe_config->adjusted_mode.flags &
8555 (DRM_MODE_FLAG_PVSYNC | DRM_MODE_FLAG_NVSYNC)))
8556 pipe_config->adjusted_mode.flags |= DRM_MODE_FLAG_NVSYNC;
8557
Daniel Vetter050f7ae2013-06-02 13:26:23 +02008558 /* Compute a starting value for pipe_config->pipe_bpp taking the source
8559 * plane pixel format and any sink constraints into account. Returns the
8560 * source plane bpp so that dithering can be selected on mismatches
8561 * after encoders and crtc also have had their say. */
8562 plane_bpp = compute_baseline_pipe_bpp(to_intel_crtc(crtc),
8563 fb, pipe_config);
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01008564 if (plane_bpp < 0)
8565 goto fail;
8566
Ville Syrjäläe41a56b2013-10-01 22:52:14 +03008567 /*
8568 * Determine the real pipe dimensions. Note that stereo modes can
8569 * increase the actual pipe size due to the frame doubling and
8570 * insertion of additional space for blanks between the frame. This
8571 * is stored in the crtc timings. We use the requested mode to do this
8572 * computation to clearly distinguish it from the adjusted mode, which
8573 * can be changed by the connectors in the below retry loop.
8574 */
8575 drm_mode_set_crtcinfo(&pipe_config->requested_mode, CRTC_STEREO_DOUBLE);
8576 pipe_config->pipe_src_w = pipe_config->requested_mode.crtc_hdisplay;
8577 pipe_config->pipe_src_h = pipe_config->requested_mode.crtc_vdisplay;
8578
Daniel Vettere29c22c2013-02-21 00:00:16 +01008579encoder_retry:
Daniel Vetteref1b4602013-06-01 17:17:04 +02008580 /* Ensure the port clock defaults are reset when retrying. */
Daniel Vetterff9a6752013-06-01 17:16:21 +02008581 pipe_config->port_clock = 0;
Daniel Vetteref1b4602013-06-01 17:17:04 +02008582 pipe_config->pixel_multiplier = 1;
Daniel Vetterff9a6752013-06-01 17:16:21 +02008583
Daniel Vetter135c81b2013-07-21 21:37:09 +02008584 /* Fill in default crtc timings, allow encoders to overwrite them. */
Damien Lespiau6ce70f52013-09-25 16:45:38 +01008585 drm_mode_set_crtcinfo(&pipe_config->adjusted_mode, CRTC_STEREO_DOUBLE);
Daniel Vetter135c81b2013-07-21 21:37:09 +02008586
Daniel Vetter7758a112012-07-08 19:40:39 +02008587 /* Pass our mode to the connectors and the CRTC to give them a chance to
8588 * adjust it according to limitations or connector properties, and also
8589 * a chance to reject the mode entirely.
8590 */
8591 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
8592 base.head) {
8593
8594 if (&encoder->new_crtc->base != crtc)
8595 continue;
Daniel Vetter7ae89232013-03-27 00:44:52 +01008596
Daniel Vetterefea6e82013-07-21 21:36:59 +02008597 if (!(encoder->compute_config(encoder, pipe_config))) {
8598 DRM_DEBUG_KMS("Encoder config failure\n");
Daniel Vetter7758a112012-07-08 19:40:39 +02008599 goto fail;
8600 }
8601 }
8602
Daniel Vetterff9a6752013-06-01 17:16:21 +02008603 /* Set default port clock if not overwritten by the encoder. Needs to be
8604 * done afterwards in case the encoder adjusts the mode. */
8605 if (!pipe_config->port_clock)
Damien Lespiau241bfc32013-09-25 16:45:37 +01008606 pipe_config->port_clock = pipe_config->adjusted_mode.crtc_clock
8607 * pipe_config->pixel_multiplier;
Daniel Vetterff9a6752013-06-01 17:16:21 +02008608
Daniel Vettera43f6e02013-06-07 23:10:32 +02008609 ret = intel_crtc_compute_config(to_intel_crtc(crtc), pipe_config);
Daniel Vettere29c22c2013-02-21 00:00:16 +01008610 if (ret < 0) {
Daniel Vetter7758a112012-07-08 19:40:39 +02008611 DRM_DEBUG_KMS("CRTC fixup failed\n");
8612 goto fail;
8613 }
Daniel Vettere29c22c2013-02-21 00:00:16 +01008614
8615 if (ret == RETRY) {
8616 if (WARN(!retry, "loop in pipe configuration computation\n")) {
8617 ret = -EINVAL;
8618 goto fail;
8619 }
8620
8621 DRM_DEBUG_KMS("CRTC bw constrained, retrying\n");
8622 retry = false;
8623 goto encoder_retry;
8624 }
8625
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01008626 pipe_config->dither = pipe_config->pipe_bpp != plane_bpp;
8627 DRM_DEBUG_KMS("plane bpp: %i, pipe bpp: %i, dithering: %i\n",
8628 plane_bpp, pipe_config->pipe_bpp, pipe_config->dither);
8629
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01008630 return pipe_config;
Daniel Vetter7758a112012-07-08 19:40:39 +02008631fail:
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01008632 kfree(pipe_config);
Daniel Vettere29c22c2013-02-21 00:00:16 +01008633 return ERR_PTR(ret);
Daniel Vetter7758a112012-07-08 19:40:39 +02008634}
8635
Daniel Vettere2e1ed42012-07-08 21:14:38 +02008636/* Computes which crtcs are affected and sets the relevant bits in the mask. For
8637 * simplicity we use the crtc's pipe number (because it's easier to obtain). */
8638static void
8639intel_modeset_affected_pipes(struct drm_crtc *crtc, unsigned *modeset_pipes,
8640 unsigned *prepare_pipes, unsigned *disable_pipes)
8641{
8642 struct intel_crtc *intel_crtc;
8643 struct drm_device *dev = crtc->dev;
8644 struct intel_encoder *encoder;
8645 struct intel_connector *connector;
8646 struct drm_crtc *tmp_crtc;
8647
8648 *disable_pipes = *modeset_pipes = *prepare_pipes = 0;
8649
8650 /* Check which crtcs have changed outputs connected to them, these need
8651 * to be part of the prepare_pipes mask. We don't (yet) support global
8652 * modeset across multiple crtcs, so modeset_pipes will only have one
8653 * bit set at most. */
8654 list_for_each_entry(connector, &dev->mode_config.connector_list,
8655 base.head) {
8656 if (connector->base.encoder == &connector->new_encoder->base)
8657 continue;
8658
8659 if (connector->base.encoder) {
8660 tmp_crtc = connector->base.encoder->crtc;
8661
8662 *prepare_pipes |= 1 << to_intel_crtc(tmp_crtc)->pipe;
8663 }
8664
8665 if (connector->new_encoder)
8666 *prepare_pipes |=
8667 1 << connector->new_encoder->new_crtc->pipe;
8668 }
8669
8670 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
8671 base.head) {
8672 if (encoder->base.crtc == &encoder->new_crtc->base)
8673 continue;
8674
8675 if (encoder->base.crtc) {
8676 tmp_crtc = encoder->base.crtc;
8677
8678 *prepare_pipes |= 1 << to_intel_crtc(tmp_crtc)->pipe;
8679 }
8680
8681 if (encoder->new_crtc)
8682 *prepare_pipes |= 1 << encoder->new_crtc->pipe;
8683 }
8684
8685 /* Check for any pipes that will be fully disabled ... */
8686 list_for_each_entry(intel_crtc, &dev->mode_config.crtc_list,
8687 base.head) {
8688 bool used = false;
8689
8690 /* Don't try to disable disabled crtcs. */
8691 if (!intel_crtc->base.enabled)
8692 continue;
8693
8694 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
8695 base.head) {
8696 if (encoder->new_crtc == intel_crtc)
8697 used = true;
8698 }
8699
8700 if (!used)
8701 *disable_pipes |= 1 << intel_crtc->pipe;
8702 }
8703
8704
8705 /* set_mode is also used to update properties on life display pipes. */
8706 intel_crtc = to_intel_crtc(crtc);
8707 if (crtc->enabled)
8708 *prepare_pipes |= 1 << intel_crtc->pipe;
8709
Daniel Vetterb6c51642013-04-12 18:48:43 +02008710 /*
8711 * For simplicity do a full modeset on any pipe where the output routing
8712 * changed. We could be more clever, but that would require us to be
8713 * more careful with calling the relevant encoder->mode_set functions.
8714 */
Daniel Vettere2e1ed42012-07-08 21:14:38 +02008715 if (*prepare_pipes)
8716 *modeset_pipes = *prepare_pipes;
8717
8718 /* ... and mask these out. */
8719 *modeset_pipes &= ~(*disable_pipes);
8720 *prepare_pipes &= ~(*disable_pipes);
Daniel Vetterb6c51642013-04-12 18:48:43 +02008721
8722 /*
8723 * HACK: We don't (yet) fully support global modesets. intel_set_config
8724 * obies this rule, but the modeset restore mode of
8725 * intel_modeset_setup_hw_state does not.
8726 */
8727 *modeset_pipes &= 1 << intel_crtc->pipe;
8728 *prepare_pipes &= 1 << intel_crtc->pipe;
Daniel Vettere3641d32013-04-11 19:49:07 +02008729
8730 DRM_DEBUG_KMS("set mode pipe masks: modeset: %x, prepare: %x, disable: %x\n",
8731 *modeset_pipes, *prepare_pipes, *disable_pipes);
Daniel Vettere2e1ed42012-07-08 21:14:38 +02008732}
8733
Daniel Vetterea9d7582012-07-10 10:42:52 +02008734static bool intel_crtc_in_use(struct drm_crtc *crtc)
8735{
8736 struct drm_encoder *encoder;
8737 struct drm_device *dev = crtc->dev;
8738
8739 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head)
8740 if (encoder->crtc == crtc)
8741 return true;
8742
8743 return false;
8744}
8745
8746static void
8747intel_modeset_update_state(struct drm_device *dev, unsigned prepare_pipes)
8748{
8749 struct intel_encoder *intel_encoder;
8750 struct intel_crtc *intel_crtc;
8751 struct drm_connector *connector;
8752
8753 list_for_each_entry(intel_encoder, &dev->mode_config.encoder_list,
8754 base.head) {
8755 if (!intel_encoder->base.crtc)
8756 continue;
8757
8758 intel_crtc = to_intel_crtc(intel_encoder->base.crtc);
8759
8760 if (prepare_pipes & (1 << intel_crtc->pipe))
8761 intel_encoder->connectors_active = false;
8762 }
8763
8764 intel_modeset_commit_output_state(dev);
8765
8766 /* Update computed state. */
8767 list_for_each_entry(intel_crtc, &dev->mode_config.crtc_list,
8768 base.head) {
8769 intel_crtc->base.enabled = intel_crtc_in_use(&intel_crtc->base);
8770 }
8771
8772 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
8773 if (!connector->encoder || !connector->encoder->crtc)
8774 continue;
8775
8776 intel_crtc = to_intel_crtc(connector->encoder->crtc);
8777
8778 if (prepare_pipes & (1 << intel_crtc->pipe)) {
Daniel Vetter68d34722012-09-06 22:08:35 +02008779 struct drm_property *dpms_property =
8780 dev->mode_config.dpms_property;
8781
Daniel Vetterea9d7582012-07-10 10:42:52 +02008782 connector->dpms = DRM_MODE_DPMS_ON;
Rob Clark662595d2012-10-11 20:36:04 -05008783 drm_object_property_set_value(&connector->base,
Daniel Vetter68d34722012-09-06 22:08:35 +02008784 dpms_property,
8785 DRM_MODE_DPMS_ON);
Daniel Vetterea9d7582012-07-10 10:42:52 +02008786
8787 intel_encoder = to_intel_encoder(connector->encoder);
8788 intel_encoder->connectors_active = true;
8789 }
8790 }
8791
8792}
8793
Ville Syrjälä3bd26262013-09-06 23:29:02 +03008794static bool intel_fuzzy_clock_check(int clock1, int clock2)
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008795{
Ville Syrjälä3bd26262013-09-06 23:29:02 +03008796 int diff;
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008797
8798 if (clock1 == clock2)
8799 return true;
8800
8801 if (!clock1 || !clock2)
8802 return false;
8803
8804 diff = abs(clock1 - clock2);
8805
8806 if (((((diff + clock1 + clock2) * 100)) / (clock1 + clock2)) < 105)
8807 return true;
8808
8809 return false;
8810}
8811
Daniel Vetter25c5b262012-07-08 22:08:04 +02008812#define for_each_intel_crtc_masked(dev, mask, intel_crtc) \
8813 list_for_each_entry((intel_crtc), \
8814 &(dev)->mode_config.crtc_list, \
8815 base.head) \
Daniel Vetter0973f182013-04-19 11:25:33 +02008816 if (mask & (1 <<(intel_crtc)->pipe))
Daniel Vetter25c5b262012-07-08 22:08:04 +02008817
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01008818static bool
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02008819intel_pipe_config_compare(struct drm_device *dev,
8820 struct intel_crtc_config *current_config,
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01008821 struct intel_crtc_config *pipe_config)
8822{
Daniel Vetter66e985c2013-06-05 13:34:20 +02008823#define PIPE_CONF_CHECK_X(name) \
8824 if (current_config->name != pipe_config->name) { \
8825 DRM_ERROR("mismatch in " #name " " \
8826 "(expected 0x%08x, found 0x%08x)\n", \
8827 current_config->name, \
8828 pipe_config->name); \
8829 return false; \
8830 }
8831
Daniel Vetter08a24032013-04-19 11:25:34 +02008832#define PIPE_CONF_CHECK_I(name) \
8833 if (current_config->name != pipe_config->name) { \
8834 DRM_ERROR("mismatch in " #name " " \
8835 "(expected %i, found %i)\n", \
8836 current_config->name, \
8837 pipe_config->name); \
8838 return false; \
Daniel Vetter88adfff2013-03-28 10:42:01 +01008839 }
8840
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02008841#define PIPE_CONF_CHECK_FLAGS(name, mask) \
8842 if ((current_config->name ^ pipe_config->name) & (mask)) { \
Jesse Barnes6f024882013-07-01 10:19:09 -07008843 DRM_ERROR("mismatch in " #name "(" #mask ") " \
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02008844 "(expected %i, found %i)\n", \
8845 current_config->name & (mask), \
8846 pipe_config->name & (mask)); \
8847 return false; \
8848 }
8849
Ville Syrjälä5e550652013-09-06 23:29:07 +03008850#define PIPE_CONF_CHECK_CLOCK_FUZZY(name) \
8851 if (!intel_fuzzy_clock_check(current_config->name, pipe_config->name)) { \
8852 DRM_ERROR("mismatch in " #name " " \
8853 "(expected %i, found %i)\n", \
8854 current_config->name, \
8855 pipe_config->name); \
8856 return false; \
8857 }
8858
Daniel Vetterbb760062013-06-06 14:55:52 +02008859#define PIPE_CONF_QUIRK(quirk) \
8860 ((current_config->quirks | pipe_config->quirks) & (quirk))
8861
Daniel Vettereccb1402013-05-22 00:50:22 +02008862 PIPE_CONF_CHECK_I(cpu_transcoder);
8863
Daniel Vetter08a24032013-04-19 11:25:34 +02008864 PIPE_CONF_CHECK_I(has_pch_encoder);
8865 PIPE_CONF_CHECK_I(fdi_lanes);
Daniel Vetter72419202013-04-04 13:28:53 +02008866 PIPE_CONF_CHECK_I(fdi_m_n.gmch_m);
8867 PIPE_CONF_CHECK_I(fdi_m_n.gmch_n);
8868 PIPE_CONF_CHECK_I(fdi_m_n.link_m);
8869 PIPE_CONF_CHECK_I(fdi_m_n.link_n);
8870 PIPE_CONF_CHECK_I(fdi_m_n.tu);
Daniel Vetter08a24032013-04-19 11:25:34 +02008871
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03008872 PIPE_CONF_CHECK_I(has_dp_encoder);
8873 PIPE_CONF_CHECK_I(dp_m_n.gmch_m);
8874 PIPE_CONF_CHECK_I(dp_m_n.gmch_n);
8875 PIPE_CONF_CHECK_I(dp_m_n.link_m);
8876 PIPE_CONF_CHECK_I(dp_m_n.link_n);
8877 PIPE_CONF_CHECK_I(dp_m_n.tu);
8878
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02008879 PIPE_CONF_CHECK_I(adjusted_mode.crtc_hdisplay);
8880 PIPE_CONF_CHECK_I(adjusted_mode.crtc_htotal);
8881 PIPE_CONF_CHECK_I(adjusted_mode.crtc_hblank_start);
8882 PIPE_CONF_CHECK_I(adjusted_mode.crtc_hblank_end);
8883 PIPE_CONF_CHECK_I(adjusted_mode.crtc_hsync_start);
8884 PIPE_CONF_CHECK_I(adjusted_mode.crtc_hsync_end);
8885
8886 PIPE_CONF_CHECK_I(adjusted_mode.crtc_vdisplay);
8887 PIPE_CONF_CHECK_I(adjusted_mode.crtc_vtotal);
8888 PIPE_CONF_CHECK_I(adjusted_mode.crtc_vblank_start);
8889 PIPE_CONF_CHECK_I(adjusted_mode.crtc_vblank_end);
8890 PIPE_CONF_CHECK_I(adjusted_mode.crtc_vsync_start);
8891 PIPE_CONF_CHECK_I(adjusted_mode.crtc_vsync_end);
8892
Daniel Vetterc93f54c2013-06-27 19:47:19 +02008893 PIPE_CONF_CHECK_I(pixel_multiplier);
Daniel Vetter6c49f242013-06-06 12:45:25 +02008894
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02008895 PIPE_CONF_CHECK_FLAGS(adjusted_mode.flags,
8896 DRM_MODE_FLAG_INTERLACE);
8897
Daniel Vetterbb760062013-06-06 14:55:52 +02008898 if (!PIPE_CONF_QUIRK(PIPE_CONFIG_QUIRK_MODE_SYNC_FLAGS)) {
8899 PIPE_CONF_CHECK_FLAGS(adjusted_mode.flags,
8900 DRM_MODE_FLAG_PHSYNC);
8901 PIPE_CONF_CHECK_FLAGS(adjusted_mode.flags,
8902 DRM_MODE_FLAG_NHSYNC);
8903 PIPE_CONF_CHECK_FLAGS(adjusted_mode.flags,
8904 DRM_MODE_FLAG_PVSYNC);
8905 PIPE_CONF_CHECK_FLAGS(adjusted_mode.flags,
8906 DRM_MODE_FLAG_NVSYNC);
8907 }
Jesse Barnes045ac3b2013-05-14 17:08:26 -07008908
Ville Syrjälä37327ab2013-09-04 18:25:28 +03008909 PIPE_CONF_CHECK_I(pipe_src_w);
8910 PIPE_CONF_CHECK_I(pipe_src_h);
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02008911
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02008912 PIPE_CONF_CHECK_I(gmch_pfit.control);
8913 /* pfit ratios are autocomputed by the hw on gen4+ */
8914 if (INTEL_INFO(dev)->gen < 4)
8915 PIPE_CONF_CHECK_I(gmch_pfit.pgm_ratios);
8916 PIPE_CONF_CHECK_I(gmch_pfit.lvds_border_bits);
Chris Wilsonfd4daa92013-08-27 17:04:17 +01008917 PIPE_CONF_CHECK_I(pch_pfit.enabled);
8918 if (current_config->pch_pfit.enabled) {
8919 PIPE_CONF_CHECK_I(pch_pfit.pos);
8920 PIPE_CONF_CHECK_I(pch_pfit.size);
8921 }
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02008922
Paulo Zanoni42db64e2013-05-31 16:33:22 -03008923 PIPE_CONF_CHECK_I(ips_enabled);
8924
Ville Syrjälä282740f2013-09-04 18:30:03 +03008925 PIPE_CONF_CHECK_I(double_wide);
8926
Daniel Vetterc0d43d62013-06-07 23:11:08 +02008927 PIPE_CONF_CHECK_I(shared_dpll);
Daniel Vetter66e985c2013-06-05 13:34:20 +02008928 PIPE_CONF_CHECK_X(dpll_hw_state.dpll);
Daniel Vetter8bcc2792013-06-05 13:34:28 +02008929 PIPE_CONF_CHECK_X(dpll_hw_state.dpll_md);
Daniel Vetter66e985c2013-06-05 13:34:20 +02008930 PIPE_CONF_CHECK_X(dpll_hw_state.fp0);
8931 PIPE_CONF_CHECK_X(dpll_hw_state.fp1);
Daniel Vetterc0d43d62013-06-07 23:11:08 +02008932
Ville Syrjälä42571ae2013-09-06 23:29:00 +03008933 if (IS_G4X(dev) || INTEL_INFO(dev)->gen >= 5)
8934 PIPE_CONF_CHECK_I(pipe_bpp);
8935
Ville Syrjäläd71b8d42013-09-06 23:29:08 +03008936 if (!IS_HASWELL(dev)) {
Damien Lespiau241bfc32013-09-25 16:45:37 +01008937 PIPE_CONF_CHECK_CLOCK_FUZZY(adjusted_mode.crtc_clock);
Ville Syrjäläd71b8d42013-09-06 23:29:08 +03008938 PIPE_CONF_CHECK_CLOCK_FUZZY(port_clock);
8939 }
Ville Syrjälä5e550652013-09-06 23:29:07 +03008940
Daniel Vetter66e985c2013-06-05 13:34:20 +02008941#undef PIPE_CONF_CHECK_X
Daniel Vetter08a24032013-04-19 11:25:34 +02008942#undef PIPE_CONF_CHECK_I
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02008943#undef PIPE_CONF_CHECK_FLAGS
Ville Syrjälä5e550652013-09-06 23:29:07 +03008944#undef PIPE_CONF_CHECK_CLOCK_FUZZY
Daniel Vetterbb760062013-06-06 14:55:52 +02008945#undef PIPE_CONF_QUIRK
Daniel Vetter627eb5a2013-04-29 19:33:42 +02008946
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01008947 return true;
8948}
8949
Daniel Vetter91d1b4b2013-06-05 13:34:18 +02008950static void
8951check_connector_state(struct drm_device *dev)
Daniel Vetter8af6cf82012-07-10 09:50:11 +02008952{
Daniel Vetter8af6cf82012-07-10 09:50:11 +02008953 struct intel_connector *connector;
8954
8955 list_for_each_entry(connector, &dev->mode_config.connector_list,
8956 base.head) {
8957 /* This also checks the encoder/connector hw state with the
8958 * ->get_hw_state callbacks. */
8959 intel_connector_check_state(connector);
8960
8961 WARN(&connector->new_encoder->base != connector->base.encoder,
8962 "connector's staged encoder doesn't match current encoder\n");
8963 }
Daniel Vetter91d1b4b2013-06-05 13:34:18 +02008964}
8965
8966static void
8967check_encoder_state(struct drm_device *dev)
8968{
8969 struct intel_encoder *encoder;
8970 struct intel_connector *connector;
Daniel Vetter8af6cf82012-07-10 09:50:11 +02008971
8972 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
8973 base.head) {
8974 bool enabled = false;
8975 bool active = false;
8976 enum pipe pipe, tracked_pipe;
8977
8978 DRM_DEBUG_KMS("[ENCODER:%d:%s]\n",
8979 encoder->base.base.id,
8980 drm_get_encoder_name(&encoder->base));
8981
8982 WARN(&encoder->new_crtc->base != encoder->base.crtc,
8983 "encoder's stage crtc doesn't match current crtc\n");
8984 WARN(encoder->connectors_active && !encoder->base.crtc,
8985 "encoder's active_connectors set, but no crtc\n");
8986
8987 list_for_each_entry(connector, &dev->mode_config.connector_list,
8988 base.head) {
8989 if (connector->base.encoder != &encoder->base)
8990 continue;
8991 enabled = true;
8992 if (connector->base.dpms != DRM_MODE_DPMS_OFF)
8993 active = true;
8994 }
8995 WARN(!!encoder->base.crtc != enabled,
8996 "encoder's enabled state mismatch "
8997 "(expected %i, found %i)\n",
8998 !!encoder->base.crtc, enabled);
8999 WARN(active && !encoder->base.crtc,
9000 "active encoder with no crtc\n");
9001
9002 WARN(encoder->connectors_active != active,
9003 "encoder's computed active state doesn't match tracked active state "
9004 "(expected %i, found %i)\n", active, encoder->connectors_active);
9005
9006 active = encoder->get_hw_state(encoder, &pipe);
9007 WARN(active != encoder->connectors_active,
9008 "encoder's hw state doesn't match sw tracking "
9009 "(expected %i, found %i)\n",
9010 encoder->connectors_active, active);
9011
9012 if (!encoder->base.crtc)
9013 continue;
9014
9015 tracked_pipe = to_intel_crtc(encoder->base.crtc)->pipe;
9016 WARN(active && pipe != tracked_pipe,
9017 "active encoder's pipe doesn't match"
9018 "(expected %i, found %i)\n",
9019 tracked_pipe, pipe);
9020
9021 }
Daniel Vetter91d1b4b2013-06-05 13:34:18 +02009022}
9023
9024static void
9025check_crtc_state(struct drm_device *dev)
9026{
9027 drm_i915_private_t *dev_priv = dev->dev_private;
9028 struct intel_crtc *crtc;
9029 struct intel_encoder *encoder;
9030 struct intel_crtc_config pipe_config;
Daniel Vetter8af6cf82012-07-10 09:50:11 +02009031
9032 list_for_each_entry(crtc, &dev->mode_config.crtc_list,
9033 base.head) {
9034 bool enabled = false;
9035 bool active = false;
9036
Jesse Barnes045ac3b2013-05-14 17:08:26 -07009037 memset(&pipe_config, 0, sizeof(pipe_config));
9038
Daniel Vetter8af6cf82012-07-10 09:50:11 +02009039 DRM_DEBUG_KMS("[CRTC:%d]\n",
9040 crtc->base.base.id);
9041
9042 WARN(crtc->active && !crtc->base.enabled,
9043 "active crtc, but not enabled in sw tracking\n");
9044
9045 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
9046 base.head) {
9047 if (encoder->base.crtc != &crtc->base)
9048 continue;
9049 enabled = true;
9050 if (encoder->connectors_active)
9051 active = true;
9052 }
Daniel Vetter6c49f242013-06-06 12:45:25 +02009053
Daniel Vetter8af6cf82012-07-10 09:50:11 +02009054 WARN(active != crtc->active,
9055 "crtc's computed active state doesn't match tracked active state "
9056 "(expected %i, found %i)\n", active, crtc->active);
9057 WARN(enabled != crtc->base.enabled,
9058 "crtc's computed enabled state doesn't match tracked enabled state "
9059 "(expected %i, found %i)\n", enabled, crtc->base.enabled);
9060
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01009061 active = dev_priv->display.get_pipe_config(crtc,
9062 &pipe_config);
Daniel Vetterd62cf622013-05-29 10:41:29 +02009063
9064 /* hw state is inconsistent with the pipe A quirk */
9065 if (crtc->pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE)
9066 active = crtc->active;
9067
Daniel Vetter6c49f242013-06-06 12:45:25 +02009068 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
9069 base.head) {
Ville Syrjälä3eaba512013-08-05 17:57:48 +03009070 enum pipe pipe;
Daniel Vetter6c49f242013-06-06 12:45:25 +02009071 if (encoder->base.crtc != &crtc->base)
9072 continue;
Ville Syrjälä3eaba512013-08-05 17:57:48 +03009073 if (encoder->get_config &&
9074 encoder->get_hw_state(encoder, &pipe))
Daniel Vetter6c49f242013-06-06 12:45:25 +02009075 encoder->get_config(encoder, &pipe_config);
9076 }
9077
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01009078 WARN(crtc->active != active,
9079 "crtc active state doesn't match with hw state "
9080 "(expected %i, found %i)\n", crtc->active, active);
9081
Daniel Vetterc0b03412013-05-28 12:05:54 +02009082 if (active &&
9083 !intel_pipe_config_compare(dev, &crtc->config, &pipe_config)) {
9084 WARN(1, "pipe state doesn't match!\n");
9085 intel_dump_pipe_config(crtc, &pipe_config,
9086 "[hw state]");
9087 intel_dump_pipe_config(crtc, &crtc->config,
9088 "[sw state]");
9089 }
Daniel Vetter8af6cf82012-07-10 09:50:11 +02009090 }
9091}
9092
Daniel Vetter91d1b4b2013-06-05 13:34:18 +02009093static void
9094check_shared_dpll_state(struct drm_device *dev)
9095{
9096 drm_i915_private_t *dev_priv = dev->dev_private;
9097 struct intel_crtc *crtc;
9098 struct intel_dpll_hw_state dpll_hw_state;
9099 int i;
Daniel Vetter53589012013-06-05 13:34:16 +02009100
9101 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
9102 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
9103 int enabled_crtcs = 0, active_crtcs = 0;
9104 bool active;
9105
9106 memset(&dpll_hw_state, 0, sizeof(dpll_hw_state));
9107
9108 DRM_DEBUG_KMS("%s\n", pll->name);
9109
9110 active = pll->get_hw_state(dev_priv, pll, &dpll_hw_state);
9111
9112 WARN(pll->active > pll->refcount,
9113 "more active pll users than references: %i vs %i\n",
9114 pll->active, pll->refcount);
9115 WARN(pll->active && !pll->on,
9116 "pll in active use but not on in sw tracking\n");
Daniel Vetter35c95372013-07-17 06:55:04 +02009117 WARN(pll->on && !pll->active,
9118 "pll in on but not on in use in sw tracking\n");
Daniel Vetter53589012013-06-05 13:34:16 +02009119 WARN(pll->on != active,
9120 "pll on state mismatch (expected %i, found %i)\n",
9121 pll->on, active);
9122
9123 list_for_each_entry(crtc, &dev->mode_config.crtc_list,
9124 base.head) {
9125 if (crtc->base.enabled && intel_crtc_to_shared_dpll(crtc) == pll)
9126 enabled_crtcs++;
9127 if (crtc->active && intel_crtc_to_shared_dpll(crtc) == pll)
9128 active_crtcs++;
9129 }
9130 WARN(pll->active != active_crtcs,
9131 "pll active crtcs mismatch (expected %i, found %i)\n",
9132 pll->active, active_crtcs);
9133 WARN(pll->refcount != enabled_crtcs,
9134 "pll enabled crtcs mismatch (expected %i, found %i)\n",
9135 pll->refcount, enabled_crtcs);
Daniel Vetter66e985c2013-06-05 13:34:20 +02009136
9137 WARN(pll->on && memcmp(&pll->hw_state, &dpll_hw_state,
9138 sizeof(dpll_hw_state)),
9139 "pll hw state mismatch\n");
Daniel Vetter53589012013-06-05 13:34:16 +02009140 }
Daniel Vettera6778b32012-07-02 09:56:42 +02009141}
9142
Daniel Vetter91d1b4b2013-06-05 13:34:18 +02009143void
9144intel_modeset_check_state(struct drm_device *dev)
9145{
9146 check_connector_state(dev);
9147 check_encoder_state(dev);
9148 check_crtc_state(dev);
9149 check_shared_dpll_state(dev);
9150}
9151
Ville Syrjälä18442d02013-09-13 16:00:08 +03009152void ironlake_check_encoder_dotclock(const struct intel_crtc_config *pipe_config,
9153 int dotclock)
9154{
9155 /*
9156 * FDI already provided one idea for the dotclock.
9157 * Yell if the encoder disagrees.
9158 */
Damien Lespiau241bfc32013-09-25 16:45:37 +01009159 WARN(!intel_fuzzy_clock_check(pipe_config->adjusted_mode.crtc_clock, dotclock),
Ville Syrjälä18442d02013-09-13 16:00:08 +03009160 "FDI dotclock and encoder dotclock mismatch, fdi: %i, encoder: %i\n",
Damien Lespiau241bfc32013-09-25 16:45:37 +01009161 pipe_config->adjusted_mode.crtc_clock, dotclock);
Ville Syrjälä18442d02013-09-13 16:00:08 +03009162}
9163
Daniel Vetterf30da182013-04-11 20:22:50 +02009164static int __intel_set_mode(struct drm_crtc *crtc,
9165 struct drm_display_mode *mode,
9166 int x, int y, struct drm_framebuffer *fb)
Daniel Vettera6778b32012-07-02 09:56:42 +02009167{
9168 struct drm_device *dev = crtc->dev;
Daniel Vetterdbf2b54e2012-07-02 11:18:29 +02009169 drm_i915_private_t *dev_priv = dev->dev_private;
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01009170 struct drm_display_mode *saved_mode, *saved_hwmode;
9171 struct intel_crtc_config *pipe_config = NULL;
Daniel Vetter25c5b262012-07-08 22:08:04 +02009172 struct intel_crtc *intel_crtc;
9173 unsigned disable_pipes, prepare_pipes, modeset_pipes;
Chris Wilsonc0c36b942012-12-19 16:08:43 +00009174 int ret = 0;
Daniel Vettera6778b32012-07-02 09:56:42 +02009175
Daniel Vettera1e22652013-09-21 00:35:38 +02009176 saved_mode = kcalloc(2, sizeof(*saved_mode), GFP_KERNEL);
Chris Wilsonc0c36b942012-12-19 16:08:43 +00009177 if (!saved_mode)
9178 return -ENOMEM;
Tim Gardner3ac18232012-12-07 07:54:26 -07009179 saved_hwmode = saved_mode + 1;
Daniel Vettera6778b32012-07-02 09:56:42 +02009180
Daniel Vettere2e1ed42012-07-08 21:14:38 +02009181 intel_modeset_affected_pipes(crtc, &modeset_pipes,
Daniel Vetter25c5b262012-07-08 22:08:04 +02009182 &prepare_pipes, &disable_pipes);
9183
Tim Gardner3ac18232012-12-07 07:54:26 -07009184 *saved_hwmode = crtc->hwmode;
9185 *saved_mode = crtc->mode;
Daniel Vettera6778b32012-07-02 09:56:42 +02009186
Daniel Vetter25c5b262012-07-08 22:08:04 +02009187 /* Hack: Because we don't (yet) support global modeset on multiple
9188 * crtcs, we don't keep track of the new mode for more than one crtc.
9189 * Hence simply check whether any bit is set in modeset_pipes in all the
9190 * pieces of code that are not yet converted to deal with mutliple crtcs
9191 * changing their mode at the same time. */
Daniel Vetter25c5b262012-07-08 22:08:04 +02009192 if (modeset_pipes) {
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01009193 pipe_config = intel_modeset_pipe_config(crtc, fb, mode);
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01009194 if (IS_ERR(pipe_config)) {
9195 ret = PTR_ERR(pipe_config);
9196 pipe_config = NULL;
9197
Tim Gardner3ac18232012-12-07 07:54:26 -07009198 goto out;
Daniel Vetter25c5b262012-07-08 22:08:04 +02009199 }
Daniel Vetterc0b03412013-05-28 12:05:54 +02009200 intel_dump_pipe_config(to_intel_crtc(crtc), pipe_config,
9201 "[modeset]");
Daniel Vettera6778b32012-07-02 09:56:42 +02009202 }
9203
Daniel Vetter460da9162013-03-27 00:44:51 +01009204 for_each_intel_crtc_masked(dev, disable_pipes, intel_crtc)
9205 intel_crtc_disable(&intel_crtc->base);
9206
Daniel Vetterea9d7582012-07-10 10:42:52 +02009207 for_each_intel_crtc_masked(dev, prepare_pipes, intel_crtc) {
9208 if (intel_crtc->base.enabled)
9209 dev_priv->display.crtc_disable(&intel_crtc->base);
9210 }
Daniel Vettera6778b32012-07-02 09:56:42 +02009211
Daniel Vetter6c4c86f2012-09-10 21:58:30 +02009212 /* crtc->mode is already used by the ->mode_set callbacks, hence we need
9213 * to set it here already despite that we pass it down the callchain.
9214 */
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01009215 if (modeset_pipes) {
Daniel Vetter25c5b262012-07-08 22:08:04 +02009216 crtc->mode = *mode;
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01009217 /* mode_set/enable/disable functions rely on a correct pipe
9218 * config. */
9219 to_intel_crtc(crtc)->config = *pipe_config;
9220 }
Daniel Vetter7758a112012-07-08 19:40:39 +02009221
Daniel Vetterea9d7582012-07-10 10:42:52 +02009222 /* Only after disabling all output pipelines that will be changed can we
9223 * update the the output configuration. */
9224 intel_modeset_update_state(dev, prepare_pipes);
9225
Daniel Vetter47fab732012-10-26 10:58:18 +02009226 if (dev_priv->display.modeset_global_resources)
9227 dev_priv->display.modeset_global_resources(dev);
9228
Daniel Vettera6778b32012-07-02 09:56:42 +02009229 /* Set up the DPLL and any encoders state that needs to adjust or depend
9230 * on the DPLL.
9231 */
Daniel Vetter25c5b262012-07-08 22:08:04 +02009232 for_each_intel_crtc_masked(dev, modeset_pipes, intel_crtc) {
Chris Wilsonc0c36b942012-12-19 16:08:43 +00009233 ret = intel_crtc_mode_set(&intel_crtc->base,
Chris Wilsonc0c36b942012-12-19 16:08:43 +00009234 x, y, fb);
9235 if (ret)
9236 goto done;
Daniel Vettera6778b32012-07-02 09:56:42 +02009237 }
9238
9239 /* Now enable the clocks, plane, pipe, and connectors that we set up. */
Daniel Vetter25c5b262012-07-08 22:08:04 +02009240 for_each_intel_crtc_masked(dev, prepare_pipes, intel_crtc)
9241 dev_priv->display.crtc_enable(&intel_crtc->base);
Daniel Vettera6778b32012-07-02 09:56:42 +02009242
Daniel Vetter25c5b262012-07-08 22:08:04 +02009243 if (modeset_pipes) {
9244 /* Store real post-adjustment hardware mode. */
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01009245 crtc->hwmode = pipe_config->adjusted_mode;
Daniel Vettera6778b32012-07-02 09:56:42 +02009246
Daniel Vetter25c5b262012-07-08 22:08:04 +02009247 /* Calculate and store various constants which
9248 * are later needed by vblank and swap-completion
9249 * timestamping. They are derived from true hwmode.
9250 */
9251 drm_calc_timestamping_constants(crtc);
9252 }
Daniel Vettera6778b32012-07-02 09:56:42 +02009253
9254 /* FIXME: add subpixel order */
9255done:
Chris Wilsonc0c36b942012-12-19 16:08:43 +00009256 if (ret && crtc->enabled) {
Tim Gardner3ac18232012-12-07 07:54:26 -07009257 crtc->hwmode = *saved_hwmode;
9258 crtc->mode = *saved_mode;
Daniel Vettera6778b32012-07-02 09:56:42 +02009259 }
9260
Tim Gardner3ac18232012-12-07 07:54:26 -07009261out:
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01009262 kfree(pipe_config);
Tim Gardner3ac18232012-12-07 07:54:26 -07009263 kfree(saved_mode);
Daniel Vettera6778b32012-07-02 09:56:42 +02009264 return ret;
9265}
9266
Damien Lespiaue7457a92013-08-08 22:28:59 +01009267static int intel_set_mode(struct drm_crtc *crtc,
9268 struct drm_display_mode *mode,
9269 int x, int y, struct drm_framebuffer *fb)
Daniel Vetterf30da182013-04-11 20:22:50 +02009270{
9271 int ret;
9272
9273 ret = __intel_set_mode(crtc, mode, x, y, fb);
9274
9275 if (ret == 0)
9276 intel_modeset_check_state(crtc->dev);
9277
9278 return ret;
9279}
9280
Chris Wilsonc0c36b942012-12-19 16:08:43 +00009281void intel_crtc_restore_mode(struct drm_crtc *crtc)
9282{
9283 intel_set_mode(crtc, &crtc->mode, crtc->x, crtc->y, crtc->fb);
9284}
9285
Daniel Vetter25c5b262012-07-08 22:08:04 +02009286#undef for_each_intel_crtc_masked
9287
Daniel Vetterd9e55602012-07-04 22:16:09 +02009288static void intel_set_config_free(struct intel_set_config *config)
9289{
9290 if (!config)
9291 return;
9292
Daniel Vetter1aa4b622012-07-05 16:20:48 +02009293 kfree(config->save_connector_encoders);
9294 kfree(config->save_encoder_crtcs);
Daniel Vetterd9e55602012-07-04 22:16:09 +02009295 kfree(config);
9296}
9297
Daniel Vetter85f9eb72012-07-04 22:24:08 +02009298static int intel_set_config_save_state(struct drm_device *dev,
9299 struct intel_set_config *config)
9300{
Daniel Vetter85f9eb72012-07-04 22:24:08 +02009301 struct drm_encoder *encoder;
9302 struct drm_connector *connector;
9303 int count;
9304
Daniel Vetter1aa4b622012-07-05 16:20:48 +02009305 config->save_encoder_crtcs =
9306 kcalloc(dev->mode_config.num_encoder,
9307 sizeof(struct drm_crtc *), GFP_KERNEL);
9308 if (!config->save_encoder_crtcs)
Daniel Vetter85f9eb72012-07-04 22:24:08 +02009309 return -ENOMEM;
9310
Daniel Vetter1aa4b622012-07-05 16:20:48 +02009311 config->save_connector_encoders =
9312 kcalloc(dev->mode_config.num_connector,
9313 sizeof(struct drm_encoder *), GFP_KERNEL);
9314 if (!config->save_connector_encoders)
Daniel Vetter85f9eb72012-07-04 22:24:08 +02009315 return -ENOMEM;
9316
9317 /* Copy data. Note that driver private data is not affected.
9318 * Should anything bad happen only the expected state is
9319 * restored, not the drivers personal bookkeeping.
9320 */
9321 count = 0;
Daniel Vetter85f9eb72012-07-04 22:24:08 +02009322 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
Daniel Vetter1aa4b622012-07-05 16:20:48 +02009323 config->save_encoder_crtcs[count++] = encoder->crtc;
Daniel Vetter85f9eb72012-07-04 22:24:08 +02009324 }
9325
9326 count = 0;
9327 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
Daniel Vetter1aa4b622012-07-05 16:20:48 +02009328 config->save_connector_encoders[count++] = connector->encoder;
Daniel Vetter85f9eb72012-07-04 22:24:08 +02009329 }
9330
9331 return 0;
9332}
9333
9334static void intel_set_config_restore_state(struct drm_device *dev,
9335 struct intel_set_config *config)
9336{
Daniel Vetter9a935852012-07-05 22:34:27 +02009337 struct intel_encoder *encoder;
9338 struct intel_connector *connector;
Daniel Vetter85f9eb72012-07-04 22:24:08 +02009339 int count;
9340
9341 count = 0;
Daniel Vetter9a935852012-07-05 22:34:27 +02009342 list_for_each_entry(encoder, &dev->mode_config.encoder_list, base.head) {
9343 encoder->new_crtc =
9344 to_intel_crtc(config->save_encoder_crtcs[count++]);
Daniel Vetter85f9eb72012-07-04 22:24:08 +02009345 }
9346
9347 count = 0;
Daniel Vetter9a935852012-07-05 22:34:27 +02009348 list_for_each_entry(connector, &dev->mode_config.connector_list, base.head) {
9349 connector->new_encoder =
9350 to_intel_encoder(config->save_connector_encoders[count++]);
Daniel Vetter85f9eb72012-07-04 22:24:08 +02009351 }
9352}
9353
Imre Deake3de42b2013-05-03 19:44:07 +02009354static bool
Chris Wilson2e57f472013-07-17 12:14:40 +01009355is_crtc_connector_off(struct drm_mode_set *set)
Imre Deake3de42b2013-05-03 19:44:07 +02009356{
9357 int i;
9358
Chris Wilson2e57f472013-07-17 12:14:40 +01009359 if (set->num_connectors == 0)
9360 return false;
9361
9362 if (WARN_ON(set->connectors == NULL))
9363 return false;
9364
9365 for (i = 0; i < set->num_connectors; i++)
9366 if (set->connectors[i]->encoder &&
9367 set->connectors[i]->encoder->crtc == set->crtc &&
9368 set->connectors[i]->dpms != DRM_MODE_DPMS_ON)
Imre Deake3de42b2013-05-03 19:44:07 +02009369 return true;
9370
9371 return false;
9372}
9373
Daniel Vetter5e2b5842012-07-04 22:41:29 +02009374static void
9375intel_set_config_compute_mode_changes(struct drm_mode_set *set,
9376 struct intel_set_config *config)
9377{
9378
9379 /* We should be able to check here if the fb has the same properties
9380 * and then just flip_or_move it */
Chris Wilson2e57f472013-07-17 12:14:40 +01009381 if (is_crtc_connector_off(set)) {
9382 config->mode_changed = true;
Imre Deake3de42b2013-05-03 19:44:07 +02009383 } else if (set->crtc->fb != set->fb) {
Daniel Vetter5e2b5842012-07-04 22:41:29 +02009384 /* If we have no fb then treat it as a full mode set */
9385 if (set->crtc->fb == NULL) {
Jesse Barnes319d9822013-06-26 01:38:19 +03009386 struct intel_crtc *intel_crtc =
9387 to_intel_crtc(set->crtc);
9388
9389 if (intel_crtc->active && i915_fastboot) {
9390 DRM_DEBUG_KMS("crtc has no fb, will flip\n");
9391 config->fb_changed = true;
9392 } else {
9393 DRM_DEBUG_KMS("inactive crtc, full mode set\n");
9394 config->mode_changed = true;
9395 }
Daniel Vetter5e2b5842012-07-04 22:41:29 +02009396 } else if (set->fb == NULL) {
9397 config->mode_changed = true;
Daniel Vetter72f49012013-03-28 16:01:35 +01009398 } else if (set->fb->pixel_format !=
9399 set->crtc->fb->pixel_format) {
Daniel Vetter5e2b5842012-07-04 22:41:29 +02009400 config->mode_changed = true;
Imre Deake3de42b2013-05-03 19:44:07 +02009401 } else {
Daniel Vetter5e2b5842012-07-04 22:41:29 +02009402 config->fb_changed = true;
Imre Deake3de42b2013-05-03 19:44:07 +02009403 }
Daniel Vetter5e2b5842012-07-04 22:41:29 +02009404 }
9405
Daniel Vetter835c5872012-07-10 18:11:08 +02009406 if (set->fb && (set->x != set->crtc->x || set->y != set->crtc->y))
Daniel Vetter5e2b5842012-07-04 22:41:29 +02009407 config->fb_changed = true;
9408
9409 if (set->mode && !drm_mode_equal(set->mode, &set->crtc->mode)) {
9410 DRM_DEBUG_KMS("modes are different, full mode set\n");
9411 drm_mode_debug_printmodeline(&set->crtc->mode);
9412 drm_mode_debug_printmodeline(set->mode);
9413 config->mode_changed = true;
9414 }
Chris Wilsona1d95702013-08-13 18:48:47 +01009415
9416 DRM_DEBUG_KMS("computed changes for [CRTC:%d], mode_changed=%d, fb_changed=%d\n",
9417 set->crtc->base.id, config->mode_changed, config->fb_changed);
Daniel Vetter5e2b5842012-07-04 22:41:29 +02009418}
9419
Daniel Vetter2e431052012-07-04 22:42:15 +02009420static int
Daniel Vetter9a935852012-07-05 22:34:27 +02009421intel_modeset_stage_output_state(struct drm_device *dev,
9422 struct drm_mode_set *set,
9423 struct intel_set_config *config)
Daniel Vetter50f56112012-07-02 09:35:43 +02009424{
Daniel Vetter85f9eb72012-07-04 22:24:08 +02009425 struct drm_crtc *new_crtc;
Daniel Vetter9a935852012-07-05 22:34:27 +02009426 struct intel_connector *connector;
9427 struct intel_encoder *encoder;
Paulo Zanonif3f08572013-08-12 14:56:53 -03009428 int ro;
Daniel Vetter50f56112012-07-02 09:35:43 +02009429
Damien Lespiau9abdda72013-02-13 13:29:23 +00009430 /* The upper layers ensure that we either disable a crtc or have a list
Daniel Vetter9a935852012-07-05 22:34:27 +02009431 * of connectors. For paranoia, double-check this. */
9432 WARN_ON(!set->fb && (set->num_connectors != 0));
9433 WARN_ON(set->fb && (set->num_connectors == 0));
9434
Daniel Vetter9a935852012-07-05 22:34:27 +02009435 list_for_each_entry(connector, &dev->mode_config.connector_list,
9436 base.head) {
9437 /* Otherwise traverse passed in connector list and get encoders
9438 * for them. */
Daniel Vetter50f56112012-07-02 09:35:43 +02009439 for (ro = 0; ro < set->num_connectors; ro++) {
Daniel Vetter9a935852012-07-05 22:34:27 +02009440 if (set->connectors[ro] == &connector->base) {
9441 connector->new_encoder = connector->encoder;
Daniel Vetter50f56112012-07-02 09:35:43 +02009442 break;
9443 }
9444 }
9445
Daniel Vetter9a935852012-07-05 22:34:27 +02009446 /* If we disable the crtc, disable all its connectors. Also, if
9447 * the connector is on the changing crtc but not on the new
9448 * connector list, disable it. */
9449 if ((!set->fb || ro == set->num_connectors) &&
9450 connector->base.encoder &&
9451 connector->base.encoder->crtc == set->crtc) {
9452 connector->new_encoder = NULL;
9453
9454 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] to [NOCRTC]\n",
9455 connector->base.base.id,
9456 drm_get_connector_name(&connector->base));
9457 }
9458
9459
9460 if (&connector->new_encoder->base != connector->base.encoder) {
Daniel Vetter50f56112012-07-02 09:35:43 +02009461 DRM_DEBUG_KMS("encoder changed, full mode switch\n");
Daniel Vetter5e2b5842012-07-04 22:41:29 +02009462 config->mode_changed = true;
Daniel Vetter50f56112012-07-02 09:35:43 +02009463 }
Daniel Vetter9a935852012-07-05 22:34:27 +02009464 }
9465 /* connector->new_encoder is now updated for all connectors. */
9466
9467 /* Update crtc of enabled connectors. */
Daniel Vetter9a935852012-07-05 22:34:27 +02009468 list_for_each_entry(connector, &dev->mode_config.connector_list,
9469 base.head) {
9470 if (!connector->new_encoder)
Daniel Vetter50f56112012-07-02 09:35:43 +02009471 continue;
9472
Daniel Vetter9a935852012-07-05 22:34:27 +02009473 new_crtc = connector->new_encoder->base.crtc;
Daniel Vetter50f56112012-07-02 09:35:43 +02009474
9475 for (ro = 0; ro < set->num_connectors; ro++) {
Daniel Vetter9a935852012-07-05 22:34:27 +02009476 if (set->connectors[ro] == &connector->base)
Daniel Vetter50f56112012-07-02 09:35:43 +02009477 new_crtc = set->crtc;
9478 }
9479
9480 /* Make sure the new CRTC will work with the encoder */
Daniel Vetter9a935852012-07-05 22:34:27 +02009481 if (!intel_encoder_crtc_ok(&connector->new_encoder->base,
9482 new_crtc)) {
Daniel Vetter5e2b5842012-07-04 22:41:29 +02009483 return -EINVAL;
Daniel Vetter50f56112012-07-02 09:35:43 +02009484 }
Daniel Vetter9a935852012-07-05 22:34:27 +02009485 connector->encoder->new_crtc = to_intel_crtc(new_crtc);
9486
9487 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] to [CRTC:%d]\n",
9488 connector->base.base.id,
9489 drm_get_connector_name(&connector->base),
9490 new_crtc->base.id);
9491 }
9492
9493 /* Check for any encoders that needs to be disabled. */
9494 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
9495 base.head) {
9496 list_for_each_entry(connector,
9497 &dev->mode_config.connector_list,
9498 base.head) {
9499 if (connector->new_encoder == encoder) {
9500 WARN_ON(!connector->new_encoder->new_crtc);
9501
9502 goto next_encoder;
9503 }
9504 }
9505 encoder->new_crtc = NULL;
9506next_encoder:
9507 /* Only now check for crtc changes so we don't miss encoders
9508 * that will be disabled. */
9509 if (&encoder->new_crtc->base != encoder->base.crtc) {
Daniel Vetter50f56112012-07-02 09:35:43 +02009510 DRM_DEBUG_KMS("crtc changed, full mode switch\n");
Daniel Vetter5e2b5842012-07-04 22:41:29 +02009511 config->mode_changed = true;
Daniel Vetter50f56112012-07-02 09:35:43 +02009512 }
9513 }
Daniel Vetter9a935852012-07-05 22:34:27 +02009514 /* Now we've also updated encoder->new_crtc for all encoders. */
Daniel Vetter50f56112012-07-02 09:35:43 +02009515
Daniel Vetter2e431052012-07-04 22:42:15 +02009516 return 0;
9517}
9518
9519static int intel_crtc_set_config(struct drm_mode_set *set)
9520{
9521 struct drm_device *dev;
Daniel Vetter2e431052012-07-04 22:42:15 +02009522 struct drm_mode_set save_set;
9523 struct intel_set_config *config;
9524 int ret;
Daniel Vetter2e431052012-07-04 22:42:15 +02009525
Daniel Vetter8d3e3752012-07-05 16:09:09 +02009526 BUG_ON(!set);
9527 BUG_ON(!set->crtc);
9528 BUG_ON(!set->crtc->helper_private);
Daniel Vetter2e431052012-07-04 22:42:15 +02009529
Daniel Vetter7e53f3a2013-01-21 10:52:17 +01009530 /* Enforce sane interface api - has been abused by the fb helper. */
9531 BUG_ON(!set->mode && set->fb);
9532 BUG_ON(set->fb && set->num_connectors == 0);
Daniel Vetter431e50f2012-07-10 17:53:42 +02009533
Daniel Vetter2e431052012-07-04 22:42:15 +02009534 if (set->fb) {
9535 DRM_DEBUG_KMS("[CRTC:%d] [FB:%d] #connectors=%d (x y) (%i %i)\n",
9536 set->crtc->base.id, set->fb->base.id,
9537 (int)set->num_connectors, set->x, set->y);
9538 } else {
9539 DRM_DEBUG_KMS("[CRTC:%d] [NOFB]\n", set->crtc->base.id);
Daniel Vetter2e431052012-07-04 22:42:15 +02009540 }
9541
9542 dev = set->crtc->dev;
9543
9544 ret = -ENOMEM;
9545 config = kzalloc(sizeof(*config), GFP_KERNEL);
9546 if (!config)
9547 goto out_config;
9548
9549 ret = intel_set_config_save_state(dev, config);
9550 if (ret)
9551 goto out_config;
9552
9553 save_set.crtc = set->crtc;
9554 save_set.mode = &set->crtc->mode;
9555 save_set.x = set->crtc->x;
9556 save_set.y = set->crtc->y;
9557 save_set.fb = set->crtc->fb;
9558
9559 /* Compute whether we need a full modeset, only an fb base update or no
9560 * change at all. In the future we might also check whether only the
9561 * mode changed, e.g. for LVDS where we only change the panel fitter in
9562 * such cases. */
9563 intel_set_config_compute_mode_changes(set, config);
9564
Daniel Vetter9a935852012-07-05 22:34:27 +02009565 ret = intel_modeset_stage_output_state(dev, set, config);
Daniel Vetter2e431052012-07-04 22:42:15 +02009566 if (ret)
9567 goto fail;
9568
Daniel Vetter5e2b5842012-07-04 22:41:29 +02009569 if (config->mode_changed) {
Chris Wilsonc0c36b942012-12-19 16:08:43 +00009570 ret = intel_set_mode(set->crtc, set->mode,
9571 set->x, set->y, set->fb);
Daniel Vetter5e2b5842012-07-04 22:41:29 +02009572 } else if (config->fb_changed) {
Ville Syrjälä4878cae2013-02-18 19:08:48 +02009573 intel_crtc_wait_for_pending_flips(set->crtc);
9574
Daniel Vetter4f660f42012-07-02 09:47:37 +02009575 ret = intel_pipe_set_base(set->crtc,
Daniel Vetter94352cf2012-07-05 22:51:56 +02009576 set->x, set->y, set->fb);
Daniel Vetter50f56112012-07-02 09:35:43 +02009577 }
9578
Chris Wilson2d05eae2013-05-03 17:36:25 +01009579 if (ret) {
Daniel Vetterbf67dfe2013-06-25 11:06:52 +02009580 DRM_DEBUG_KMS("failed to set mode on [CRTC:%d], err = %d\n",
9581 set->crtc->base.id, ret);
Daniel Vetter50f56112012-07-02 09:35:43 +02009582fail:
Chris Wilson2d05eae2013-05-03 17:36:25 +01009583 intel_set_config_restore_state(dev, config);
Daniel Vetter50f56112012-07-02 09:35:43 +02009584
Chris Wilson2d05eae2013-05-03 17:36:25 +01009585 /* Try to restore the config */
9586 if (config->mode_changed &&
9587 intel_set_mode(save_set.crtc, save_set.mode,
9588 save_set.x, save_set.y, save_set.fb))
9589 DRM_ERROR("failed to restore config after modeset failure\n");
9590 }
Daniel Vetter50f56112012-07-02 09:35:43 +02009591
Daniel Vetterd9e55602012-07-04 22:16:09 +02009592out_config:
9593 intel_set_config_free(config);
Daniel Vetter50f56112012-07-02 09:35:43 +02009594 return ret;
9595}
9596
Chris Wilsonf6e5b162011-04-12 18:06:51 +01009597static const struct drm_crtc_funcs intel_crtc_funcs = {
Chris Wilsonf6e5b162011-04-12 18:06:51 +01009598 .cursor_set = intel_crtc_cursor_set,
9599 .cursor_move = intel_crtc_cursor_move,
9600 .gamma_set = intel_crtc_gamma_set,
Daniel Vetter50f56112012-07-02 09:35:43 +02009601 .set_config = intel_crtc_set_config,
Chris Wilsonf6e5b162011-04-12 18:06:51 +01009602 .destroy = intel_crtc_destroy,
9603 .page_flip = intel_crtc_page_flip,
9604};
9605
Paulo Zanoni79f689a2012-10-05 12:05:52 -03009606static void intel_cpu_pll_init(struct drm_device *dev)
9607{
Paulo Zanoniaffa9352012-11-23 15:30:39 -02009608 if (HAS_DDI(dev))
Paulo Zanoni79f689a2012-10-05 12:05:52 -03009609 intel_ddi_pll_init(dev);
9610}
9611
Daniel Vetter53589012013-06-05 13:34:16 +02009612static bool ibx_pch_dpll_get_hw_state(struct drm_i915_private *dev_priv,
9613 struct intel_shared_dpll *pll,
9614 struct intel_dpll_hw_state *hw_state)
Jesse Barnesee7b9f92012-04-20 17:11:53 +01009615{
Daniel Vetter53589012013-06-05 13:34:16 +02009616 uint32_t val;
9617
9618 val = I915_READ(PCH_DPLL(pll->id));
Daniel Vetter66e985c2013-06-05 13:34:20 +02009619 hw_state->dpll = val;
9620 hw_state->fp0 = I915_READ(PCH_FP0(pll->id));
9621 hw_state->fp1 = I915_READ(PCH_FP1(pll->id));
Daniel Vetter53589012013-06-05 13:34:16 +02009622
9623 return val & DPLL_VCO_ENABLE;
9624}
9625
Daniel Vetter15bdd4c2013-06-05 13:34:23 +02009626static void ibx_pch_dpll_mode_set(struct drm_i915_private *dev_priv,
9627 struct intel_shared_dpll *pll)
9628{
9629 I915_WRITE(PCH_FP0(pll->id), pll->hw_state.fp0);
9630 I915_WRITE(PCH_FP1(pll->id), pll->hw_state.fp1);
9631}
9632
Daniel Vettere7b903d2013-06-05 13:34:14 +02009633static void ibx_pch_dpll_enable(struct drm_i915_private *dev_priv,
9634 struct intel_shared_dpll *pll)
9635{
Daniel Vettere7b903d2013-06-05 13:34:14 +02009636 /* PCH refclock must be enabled first */
9637 assert_pch_refclk_enabled(dev_priv);
9638
Daniel Vetter15bdd4c2013-06-05 13:34:23 +02009639 I915_WRITE(PCH_DPLL(pll->id), pll->hw_state.dpll);
9640
9641 /* Wait for the clocks to stabilize. */
9642 POSTING_READ(PCH_DPLL(pll->id));
9643 udelay(150);
9644
9645 /* The pixel multiplier can only be updated once the
9646 * DPLL is enabled and the clocks are stable.
9647 *
9648 * So write it again.
9649 */
9650 I915_WRITE(PCH_DPLL(pll->id), pll->hw_state.dpll);
9651 POSTING_READ(PCH_DPLL(pll->id));
Daniel Vettere7b903d2013-06-05 13:34:14 +02009652 udelay(200);
9653}
9654
9655static void ibx_pch_dpll_disable(struct drm_i915_private *dev_priv,
9656 struct intel_shared_dpll *pll)
9657{
9658 struct drm_device *dev = dev_priv->dev;
9659 struct intel_crtc *crtc;
Daniel Vettere7b903d2013-06-05 13:34:14 +02009660
9661 /* Make sure no transcoder isn't still depending on us. */
9662 list_for_each_entry(crtc, &dev->mode_config.crtc_list, base.head) {
9663 if (intel_crtc_to_shared_dpll(crtc) == pll)
9664 assert_pch_transcoder_disabled(dev_priv, crtc->pipe);
9665 }
9666
Daniel Vetter15bdd4c2013-06-05 13:34:23 +02009667 I915_WRITE(PCH_DPLL(pll->id), 0);
9668 POSTING_READ(PCH_DPLL(pll->id));
Daniel Vettere7b903d2013-06-05 13:34:14 +02009669 udelay(200);
9670}
9671
Daniel Vetter46edb022013-06-05 13:34:12 +02009672static char *ibx_pch_dpll_names[] = {
9673 "PCH DPLL A",
9674 "PCH DPLL B",
9675};
9676
Daniel Vetter7c74ade2013-06-05 13:34:11 +02009677static void ibx_pch_dpll_init(struct drm_device *dev)
Jesse Barnesee7b9f92012-04-20 17:11:53 +01009678{
Daniel Vettere7b903d2013-06-05 13:34:14 +02009679 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01009680 int i;
9681
Daniel Vetter7c74ade2013-06-05 13:34:11 +02009682 dev_priv->num_shared_dpll = 2;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01009683
Daniel Vettere72f9fb2013-06-05 13:34:06 +02009684 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
Daniel Vetter46edb022013-06-05 13:34:12 +02009685 dev_priv->shared_dplls[i].id = i;
9686 dev_priv->shared_dplls[i].name = ibx_pch_dpll_names[i];
Daniel Vetter15bdd4c2013-06-05 13:34:23 +02009687 dev_priv->shared_dplls[i].mode_set = ibx_pch_dpll_mode_set;
Daniel Vettere7b903d2013-06-05 13:34:14 +02009688 dev_priv->shared_dplls[i].enable = ibx_pch_dpll_enable;
9689 dev_priv->shared_dplls[i].disable = ibx_pch_dpll_disable;
Daniel Vetter53589012013-06-05 13:34:16 +02009690 dev_priv->shared_dplls[i].get_hw_state =
9691 ibx_pch_dpll_get_hw_state;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01009692 }
9693}
9694
Daniel Vetter7c74ade2013-06-05 13:34:11 +02009695static void intel_shared_dpll_init(struct drm_device *dev)
9696{
Daniel Vettere7b903d2013-06-05 13:34:14 +02009697 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter7c74ade2013-06-05 13:34:11 +02009698
9699 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev))
9700 ibx_pch_dpll_init(dev);
9701 else
9702 dev_priv->num_shared_dpll = 0;
9703
9704 BUG_ON(dev_priv->num_shared_dpll > I915_NUM_PLLS);
9705 DRM_DEBUG_KMS("%i shared PLLs initialized\n",
9706 dev_priv->num_shared_dpll);
9707}
9708
Hannes Ederb358d0a2008-12-18 21:18:47 +01009709static void intel_crtc_init(struct drm_device *dev, int pipe)
Jesse Barnes79e53942008-11-07 14:24:08 -08009710{
Jesse Barnes22fd0fa2009-12-02 13:42:53 -08009711 drm_i915_private_t *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -08009712 struct intel_crtc *intel_crtc;
9713 int i;
9714
Daniel Vetter955382f2013-09-19 14:05:45 +02009715 intel_crtc = kzalloc(sizeof(*intel_crtc), GFP_KERNEL);
Jesse Barnes79e53942008-11-07 14:24:08 -08009716 if (intel_crtc == NULL)
9717 return;
9718
9719 drm_crtc_init(dev, &intel_crtc->base, &intel_crtc_funcs);
9720
9721 drm_mode_crtc_set_gamma_size(&intel_crtc->base, 256);
Jesse Barnes79e53942008-11-07 14:24:08 -08009722 for (i = 0; i < 256; i++) {
9723 intel_crtc->lut_r[i] = i;
9724 intel_crtc->lut_g[i] = i;
9725 intel_crtc->lut_b[i] = i;
9726 }
9727
Jesse Barnes80824002009-09-10 15:28:06 -07009728 /* Swap pipes & planes for FBC on pre-965 */
9729 intel_crtc->pipe = pipe;
9730 intel_crtc->plane = pipe;
Chris Wilsone2e767a2010-09-13 16:53:12 +01009731 if (IS_MOBILE(dev) && IS_GEN3(dev)) {
Zhao Yakui28c97732009-10-09 11:39:41 +08009732 DRM_DEBUG_KMS("swapping pipes & planes for FBC\n");
Chris Wilsone2e767a2010-09-13 16:53:12 +01009733 intel_crtc->plane = !pipe;
Jesse Barnes80824002009-09-10 15:28:06 -07009734 }
9735
Jesse Barnes22fd0fa2009-12-02 13:42:53 -08009736 BUG_ON(pipe >= ARRAY_SIZE(dev_priv->plane_to_crtc_mapping) ||
9737 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] != NULL);
9738 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] = &intel_crtc->base;
9739 dev_priv->pipe_to_crtc_mapping[intel_crtc->pipe] = &intel_crtc->base;
9740
Jesse Barnes79e53942008-11-07 14:24:08 -08009741 drm_crtc_helper_add(&intel_crtc->base, &intel_helper_funcs);
Jesse Barnes79e53942008-11-07 14:24:08 -08009742}
9743
Carl Worth08d7b3d2009-04-29 14:43:54 -07009744int intel_get_pipe_from_crtc_id(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00009745 struct drm_file *file)
Carl Worth08d7b3d2009-04-29 14:43:54 -07009746{
Carl Worth08d7b3d2009-04-29 14:43:54 -07009747 struct drm_i915_get_pipe_from_crtc_id *pipe_from_crtc_id = data;
Daniel Vetterc05422d2009-08-11 16:05:30 +02009748 struct drm_mode_object *drmmode_obj;
9749 struct intel_crtc *crtc;
Carl Worth08d7b3d2009-04-29 14:43:54 -07009750
Daniel Vetter1cff8f62012-04-24 09:55:08 +02009751 if (!drm_core_check_feature(dev, DRIVER_MODESET))
9752 return -ENODEV;
Carl Worth08d7b3d2009-04-29 14:43:54 -07009753
Daniel Vetterc05422d2009-08-11 16:05:30 +02009754 drmmode_obj = drm_mode_object_find(dev, pipe_from_crtc_id->crtc_id,
9755 DRM_MODE_OBJECT_CRTC);
Carl Worth08d7b3d2009-04-29 14:43:54 -07009756
Daniel Vetterc05422d2009-08-11 16:05:30 +02009757 if (!drmmode_obj) {
Carl Worth08d7b3d2009-04-29 14:43:54 -07009758 DRM_ERROR("no such CRTC id\n");
9759 return -EINVAL;
9760 }
9761
Daniel Vetterc05422d2009-08-11 16:05:30 +02009762 crtc = to_intel_crtc(obj_to_crtc(drmmode_obj));
9763 pipe_from_crtc_id->pipe = crtc->pipe;
Carl Worth08d7b3d2009-04-29 14:43:54 -07009764
Daniel Vetterc05422d2009-08-11 16:05:30 +02009765 return 0;
Carl Worth08d7b3d2009-04-29 14:43:54 -07009766}
9767
Daniel Vetter66a92782012-07-12 20:08:18 +02009768static int intel_encoder_clones(struct intel_encoder *encoder)
Jesse Barnes79e53942008-11-07 14:24:08 -08009769{
Daniel Vetter66a92782012-07-12 20:08:18 +02009770 struct drm_device *dev = encoder->base.dev;
9771 struct intel_encoder *source_encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08009772 int index_mask = 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08009773 int entry = 0;
9774
Daniel Vetter66a92782012-07-12 20:08:18 +02009775 list_for_each_entry(source_encoder,
9776 &dev->mode_config.encoder_list, base.head) {
9777
9778 if (encoder == source_encoder)
Jesse Barnes79e53942008-11-07 14:24:08 -08009779 index_mask |= (1 << entry);
Daniel Vetter66a92782012-07-12 20:08:18 +02009780
9781 /* Intel hw has only one MUX where enocoders could be cloned. */
9782 if (encoder->cloneable && source_encoder->cloneable)
9783 index_mask |= (1 << entry);
9784
Jesse Barnes79e53942008-11-07 14:24:08 -08009785 entry++;
9786 }
Chris Wilson4ef69c72010-09-09 15:14:28 +01009787
Jesse Barnes79e53942008-11-07 14:24:08 -08009788 return index_mask;
9789}
9790
Chris Wilson4d302442010-12-14 19:21:29 +00009791static bool has_edp_a(struct drm_device *dev)
9792{
9793 struct drm_i915_private *dev_priv = dev->dev_private;
9794
9795 if (!IS_MOBILE(dev))
9796 return false;
9797
9798 if ((I915_READ(DP_A) & DP_DETECTED) == 0)
9799 return false;
9800
9801 if (IS_GEN5(dev) &&
9802 (I915_READ(ILK_DISPLAY_CHICKEN_FUSES) & ILK_eDP_A_DISABLE))
9803 return false;
9804
9805 return true;
9806}
9807
Jesse Barnes79e53942008-11-07 14:24:08 -08009808static void intel_setup_outputs(struct drm_device *dev)
9809{
Eric Anholt725e30a2009-01-22 13:01:02 -08009810 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson4ef69c72010-09-09 15:14:28 +01009811 struct intel_encoder *encoder;
Adam Jacksoncb0953d2010-07-16 14:46:29 -04009812 bool dpd_is_edp = false;
Jesse Barnes79e53942008-11-07 14:24:08 -08009813
Daniel Vetterc9093352013-06-06 22:22:47 +02009814 intel_lvds_init(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08009815
Paulo Zanonic40c0f52013-04-12 18:16:53 -03009816 if (!IS_ULT(dev))
Paulo Zanoni79935fc2012-11-20 13:27:40 -02009817 intel_crt_init(dev);
Adam Jacksoncb0953d2010-07-16 14:46:29 -04009818
Paulo Zanoniaffa9352012-11-23 15:30:39 -02009819 if (HAS_DDI(dev)) {
Eugeni Dodonov0e72a5b2012-05-09 15:37:27 -03009820 int found;
9821
9822 /* Haswell uses DDI functions to detect digital outputs */
9823 found = I915_READ(DDI_BUF_CTL_A) & DDI_INIT_DISPLAY_DETECTED;
9824 /* DDI A only supports eDP */
9825 if (found)
9826 intel_ddi_init(dev, PORT_A);
9827
9828 /* DDI B, C and D detection is indicated by the SFUSE_STRAP
9829 * register */
9830 found = I915_READ(SFUSE_STRAP);
9831
9832 if (found & SFUSE_STRAP_DDIB_DETECTED)
9833 intel_ddi_init(dev, PORT_B);
9834 if (found & SFUSE_STRAP_DDIC_DETECTED)
9835 intel_ddi_init(dev, PORT_C);
9836 if (found & SFUSE_STRAP_DDID_DETECTED)
9837 intel_ddi_init(dev, PORT_D);
9838 } else if (HAS_PCH_SPLIT(dev)) {
Adam Jacksoncb0953d2010-07-16 14:46:29 -04009839 int found;
Daniel Vetter270b3042012-10-27 15:52:05 +02009840 dpd_is_edp = intel_dpd_is_edp(dev);
9841
9842 if (has_edp_a(dev))
9843 intel_dp_init(dev, DP_A, PORT_A);
Adam Jacksoncb0953d2010-07-16 14:46:29 -04009844
Paulo Zanonidc0fa712013-02-19 16:21:46 -03009845 if (I915_READ(PCH_HDMIB) & SDVO_DETECTED) {
Zhao Yakui461ed3c2010-03-30 15:11:33 +08009846 /* PCH SDVOB multiplex with HDMIB */
Daniel Vettereef4eac2012-03-23 23:43:35 +01009847 found = intel_sdvo_init(dev, PCH_SDVOB, true);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +08009848 if (!found)
Paulo Zanonie2debe92013-02-18 19:00:27 -03009849 intel_hdmi_init(dev, PCH_HDMIB, PORT_B);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08009850 if (!found && (I915_READ(PCH_DP_B) & DP_DETECTED))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03009851 intel_dp_init(dev, PCH_DP_B, PORT_B);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +08009852 }
9853
Paulo Zanonidc0fa712013-02-19 16:21:46 -03009854 if (I915_READ(PCH_HDMIC) & SDVO_DETECTED)
Paulo Zanonie2debe92013-02-18 19:00:27 -03009855 intel_hdmi_init(dev, PCH_HDMIC, PORT_C);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +08009856
Paulo Zanonidc0fa712013-02-19 16:21:46 -03009857 if (!dpd_is_edp && I915_READ(PCH_HDMID) & SDVO_DETECTED)
Paulo Zanonie2debe92013-02-18 19:00:27 -03009858 intel_hdmi_init(dev, PCH_HDMID, PORT_D);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +08009859
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08009860 if (I915_READ(PCH_DP_C) & DP_DETECTED)
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03009861 intel_dp_init(dev, PCH_DP_C, PORT_C);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08009862
Daniel Vetter270b3042012-10-27 15:52:05 +02009863 if (I915_READ(PCH_DP_D) & DP_DETECTED)
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03009864 intel_dp_init(dev, PCH_DP_D, PORT_D);
Jesse Barnes4a87d652012-06-15 11:55:16 -07009865 } else if (IS_VALLEYVIEW(dev)) {
Gajanan Bhat19c03922012-09-27 19:13:07 +05309866 /* Check for built-in panel first. Shares lanes with HDMI on SDVOC */
Jesse Barnes6f6005a2013-08-09 09:34:35 -07009867 if (I915_READ(VLV_DISPLAY_BASE + GEN4_HDMIC) & SDVO_DETECTED) {
9868 intel_hdmi_init(dev, VLV_DISPLAY_BASE + GEN4_HDMIC,
9869 PORT_C);
9870 if (I915_READ(VLV_DISPLAY_BASE + DP_C) & DP_DETECTED)
9871 intel_dp_init(dev, VLV_DISPLAY_BASE + DP_C,
9872 PORT_C);
9873 }
Gajanan Bhat19c03922012-09-27 19:13:07 +05309874
Paulo Zanonidc0fa712013-02-19 16:21:46 -03009875 if (I915_READ(VLV_DISPLAY_BASE + GEN4_HDMIB) & SDVO_DETECTED) {
Paulo Zanonie2debe92013-02-18 19:00:27 -03009876 intel_hdmi_init(dev, VLV_DISPLAY_BASE + GEN4_HDMIB,
9877 PORT_B);
Ville Syrjälä67cfc202013-01-25 21:44:44 +02009878 if (I915_READ(VLV_DISPLAY_BASE + DP_B) & DP_DETECTED)
9879 intel_dp_init(dev, VLV_DISPLAY_BASE + DP_B, PORT_B);
Jesse Barnes4a87d652012-06-15 11:55:16 -07009880 }
Jani Nikula3cfca972013-08-27 15:12:26 +03009881
9882 intel_dsi_init(dev);
Zhenyu Wang103a1962009-11-27 11:44:36 +08009883 } else if (SUPPORTS_DIGITAL_OUTPUTS(dev)) {
Ma Ling27185ae2009-08-24 13:50:23 +08009884 bool found = false;
Eric Anholt7d573822009-01-02 13:33:00 -08009885
Paulo Zanonie2debe92013-02-18 19:00:27 -03009886 if (I915_READ(GEN3_SDVOB) & SDVO_DETECTED) {
Jesse Barnesb01f2c32009-12-11 11:07:17 -08009887 DRM_DEBUG_KMS("probing SDVOB\n");
Paulo Zanonie2debe92013-02-18 19:00:27 -03009888 found = intel_sdvo_init(dev, GEN3_SDVOB, true);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08009889 if (!found && SUPPORTS_INTEGRATED_HDMI(dev)) {
9890 DRM_DEBUG_KMS("probing HDMI on SDVOB\n");
Paulo Zanonie2debe92013-02-18 19:00:27 -03009891 intel_hdmi_init(dev, GEN4_HDMIB, PORT_B);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08009892 }
Ma Ling27185ae2009-08-24 13:50:23 +08009893
Imre Deake7281ea2013-05-08 13:14:08 +03009894 if (!found && SUPPORTS_INTEGRATED_DP(dev))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03009895 intel_dp_init(dev, DP_B, PORT_B);
Eric Anholt725e30a2009-01-22 13:01:02 -08009896 }
Kristian Høgsberg13520b02009-03-13 15:42:14 -04009897
9898 /* Before G4X SDVOC doesn't have its own detect register */
Kristian Høgsberg13520b02009-03-13 15:42:14 -04009899
Paulo Zanonie2debe92013-02-18 19:00:27 -03009900 if (I915_READ(GEN3_SDVOB) & SDVO_DETECTED) {
Jesse Barnesb01f2c32009-12-11 11:07:17 -08009901 DRM_DEBUG_KMS("probing SDVOC\n");
Paulo Zanonie2debe92013-02-18 19:00:27 -03009902 found = intel_sdvo_init(dev, GEN3_SDVOC, false);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08009903 }
Ma Ling27185ae2009-08-24 13:50:23 +08009904
Paulo Zanonie2debe92013-02-18 19:00:27 -03009905 if (!found && (I915_READ(GEN3_SDVOC) & SDVO_DETECTED)) {
Ma Ling27185ae2009-08-24 13:50:23 +08009906
Jesse Barnesb01f2c32009-12-11 11:07:17 -08009907 if (SUPPORTS_INTEGRATED_HDMI(dev)) {
9908 DRM_DEBUG_KMS("probing HDMI on SDVOC\n");
Paulo Zanonie2debe92013-02-18 19:00:27 -03009909 intel_hdmi_init(dev, GEN4_HDMIC, PORT_C);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08009910 }
Imre Deake7281ea2013-05-08 13:14:08 +03009911 if (SUPPORTS_INTEGRATED_DP(dev))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03009912 intel_dp_init(dev, DP_C, PORT_C);
Eric Anholt725e30a2009-01-22 13:01:02 -08009913 }
Ma Ling27185ae2009-08-24 13:50:23 +08009914
Jesse Barnesb01f2c32009-12-11 11:07:17 -08009915 if (SUPPORTS_INTEGRATED_DP(dev) &&
Imre Deake7281ea2013-05-08 13:14:08 +03009916 (I915_READ(DP_D) & DP_DETECTED))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03009917 intel_dp_init(dev, DP_D, PORT_D);
Eric Anholtbad720f2009-10-22 16:11:14 -07009918 } else if (IS_GEN2(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -08009919 intel_dvo_init(dev);
9920
Zhenyu Wang103a1962009-11-27 11:44:36 +08009921 if (SUPPORTS_TV(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -08009922 intel_tv_init(dev);
9923
Chris Wilson4ef69c72010-09-09 15:14:28 +01009924 list_for_each_entry(encoder, &dev->mode_config.encoder_list, base.head) {
9925 encoder->base.possible_crtcs = encoder->crtc_mask;
9926 encoder->base.possible_clones =
Daniel Vetter66a92782012-07-12 20:08:18 +02009927 intel_encoder_clones(encoder);
Jesse Barnes79e53942008-11-07 14:24:08 -08009928 }
Chris Wilson47356eb2011-01-11 17:06:04 +00009929
Paulo Zanonidde86e22012-12-01 12:04:25 -02009930 intel_init_pch_refclk(dev);
Daniel Vetter270b3042012-10-27 15:52:05 +02009931
9932 drm_helper_move_panel_connectors_to_head(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08009933}
9934
Chris Wilsonddfe1562013-08-06 17:43:07 +01009935void intel_framebuffer_fini(struct intel_framebuffer *fb)
9936{
9937 drm_framebuffer_cleanup(&fb->base);
9938 drm_gem_object_unreference_unlocked(&fb->obj->base);
9939}
9940
Jesse Barnes79e53942008-11-07 14:24:08 -08009941static void intel_user_framebuffer_destroy(struct drm_framebuffer *fb)
9942{
9943 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
Jesse Barnes79e53942008-11-07 14:24:08 -08009944
Chris Wilsonddfe1562013-08-06 17:43:07 +01009945 intel_framebuffer_fini(intel_fb);
Jesse Barnes79e53942008-11-07 14:24:08 -08009946 kfree(intel_fb);
9947}
9948
9949static int intel_user_framebuffer_create_handle(struct drm_framebuffer *fb,
Chris Wilson05394f32010-11-08 19:18:58 +00009950 struct drm_file *file,
Jesse Barnes79e53942008-11-07 14:24:08 -08009951 unsigned int *handle)
9952{
9953 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
Chris Wilson05394f32010-11-08 19:18:58 +00009954 struct drm_i915_gem_object *obj = intel_fb->obj;
Jesse Barnes79e53942008-11-07 14:24:08 -08009955
Chris Wilson05394f32010-11-08 19:18:58 +00009956 return drm_gem_handle_create(file, &obj->base, handle);
Jesse Barnes79e53942008-11-07 14:24:08 -08009957}
9958
9959static const struct drm_framebuffer_funcs intel_fb_funcs = {
9960 .destroy = intel_user_framebuffer_destroy,
9961 .create_handle = intel_user_framebuffer_create_handle,
9962};
9963
Dave Airlie38651672010-03-30 05:34:13 +00009964int intel_framebuffer_init(struct drm_device *dev,
9965 struct intel_framebuffer *intel_fb,
Jesse Barnes308e5bc2011-11-14 14:51:28 -08009966 struct drm_mode_fb_cmd2 *mode_cmd,
Chris Wilson05394f32010-11-08 19:18:58 +00009967 struct drm_i915_gem_object *obj)
Jesse Barnes79e53942008-11-07 14:24:08 -08009968{
Chris Wilsona35cdaa2013-06-25 17:26:45 +01009969 int pitch_limit;
Jesse Barnes79e53942008-11-07 14:24:08 -08009970 int ret;
9971
Chris Wilsonc16ed4b2012-12-18 22:13:14 +00009972 if (obj->tiling_mode == I915_TILING_Y) {
9973 DRM_DEBUG("hardware does not support tiling Y\n");
Chris Wilson57cd6502010-08-08 12:34:44 +01009974 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +00009975 }
Chris Wilson57cd6502010-08-08 12:34:44 +01009976
Chris Wilsonc16ed4b2012-12-18 22:13:14 +00009977 if (mode_cmd->pitches[0] & 63) {
9978 DRM_DEBUG("pitch (%d) must be at least 64 byte aligned\n",
9979 mode_cmd->pitches[0]);
Chris Wilson57cd6502010-08-08 12:34:44 +01009980 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +00009981 }
Chris Wilson57cd6502010-08-08 12:34:44 +01009982
Chris Wilsona35cdaa2013-06-25 17:26:45 +01009983 if (INTEL_INFO(dev)->gen >= 5 && !IS_VALLEYVIEW(dev)) {
9984 pitch_limit = 32*1024;
9985 } else if (INTEL_INFO(dev)->gen >= 4) {
9986 if (obj->tiling_mode)
9987 pitch_limit = 16*1024;
9988 else
9989 pitch_limit = 32*1024;
9990 } else if (INTEL_INFO(dev)->gen >= 3) {
9991 if (obj->tiling_mode)
9992 pitch_limit = 8*1024;
9993 else
9994 pitch_limit = 16*1024;
9995 } else
9996 /* XXX DSPC is limited to 4k tiled */
9997 pitch_limit = 8*1024;
9998
9999 if (mode_cmd->pitches[0] > pitch_limit) {
10000 DRM_DEBUG("%s pitch (%d) must be at less than %d\n",
10001 obj->tiling_mode ? "tiled" : "linear",
10002 mode_cmd->pitches[0], pitch_limit);
Ville Syrjälä5d7bd702012-10-31 17:50:18 +020010003 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000010004 }
Ville Syrjälä5d7bd702012-10-31 17:50:18 +020010005
10006 if (obj->tiling_mode != I915_TILING_NONE &&
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000010007 mode_cmd->pitches[0] != obj->stride) {
10008 DRM_DEBUG("pitch (%d) must match tiling stride (%d)\n",
10009 mode_cmd->pitches[0], obj->stride);
Ville Syrjälä5d7bd702012-10-31 17:50:18 +020010010 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000010011 }
Ville Syrjälä5d7bd702012-10-31 17:50:18 +020010012
Ville Syrjälä57779d02012-10-31 17:50:14 +020010013 /* Reject formats not supported by any plane early. */
Jesse Barnes308e5bc2011-11-14 14:51:28 -080010014 switch (mode_cmd->pixel_format) {
Ville Syrjälä57779d02012-10-31 17:50:14 +020010015 case DRM_FORMAT_C8:
Ville Syrjälä04b39242011-11-17 18:05:13 +020010016 case DRM_FORMAT_RGB565:
10017 case DRM_FORMAT_XRGB8888:
10018 case DRM_FORMAT_ARGB8888:
Ville Syrjälä57779d02012-10-31 17:50:14 +020010019 break;
10020 case DRM_FORMAT_XRGB1555:
10021 case DRM_FORMAT_ARGB1555:
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000010022 if (INTEL_INFO(dev)->gen > 3) {
Ville Syrjälä4ee62c72013-06-07 15:43:05 +000010023 DRM_DEBUG("unsupported pixel format: %s\n",
10024 drm_get_format_name(mode_cmd->pixel_format));
Ville Syrjälä57779d02012-10-31 17:50:14 +020010025 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000010026 }
Ville Syrjälä57779d02012-10-31 17:50:14 +020010027 break;
10028 case DRM_FORMAT_XBGR8888:
10029 case DRM_FORMAT_ABGR8888:
Ville Syrjälä04b39242011-11-17 18:05:13 +020010030 case DRM_FORMAT_XRGB2101010:
10031 case DRM_FORMAT_ARGB2101010:
Ville Syrjälä57779d02012-10-31 17:50:14 +020010032 case DRM_FORMAT_XBGR2101010:
10033 case DRM_FORMAT_ABGR2101010:
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000010034 if (INTEL_INFO(dev)->gen < 4) {
Ville Syrjälä4ee62c72013-06-07 15:43:05 +000010035 DRM_DEBUG("unsupported pixel format: %s\n",
10036 drm_get_format_name(mode_cmd->pixel_format));
Ville Syrjälä57779d02012-10-31 17:50:14 +020010037 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000010038 }
Jesse Barnesb5626742011-06-24 12:19:27 -070010039 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +020010040 case DRM_FORMAT_YUYV:
10041 case DRM_FORMAT_UYVY:
10042 case DRM_FORMAT_YVYU:
10043 case DRM_FORMAT_VYUY:
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000010044 if (INTEL_INFO(dev)->gen < 5) {
Ville Syrjälä4ee62c72013-06-07 15:43:05 +000010045 DRM_DEBUG("unsupported pixel format: %s\n",
10046 drm_get_format_name(mode_cmd->pixel_format));
Ville Syrjälä57779d02012-10-31 17:50:14 +020010047 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000010048 }
Chris Wilson57cd6502010-08-08 12:34:44 +010010049 break;
10050 default:
Ville Syrjälä4ee62c72013-06-07 15:43:05 +000010051 DRM_DEBUG("unsupported pixel format: %s\n",
10052 drm_get_format_name(mode_cmd->pixel_format));
Chris Wilson57cd6502010-08-08 12:34:44 +010010053 return -EINVAL;
10054 }
10055
Ville Syrjälä90f9a332012-10-31 17:50:19 +020010056 /* FIXME need to adjust LINOFF/TILEOFF accordingly. */
10057 if (mode_cmd->offsets[0] != 0)
10058 return -EINVAL;
10059
Daniel Vetterc7d73f62012-12-13 23:38:38 +010010060 drm_helper_mode_fill_fb_struct(&intel_fb->base, mode_cmd);
10061 intel_fb->obj = obj;
10062
Jesse Barnes79e53942008-11-07 14:24:08 -080010063 ret = drm_framebuffer_init(dev, &intel_fb->base, &intel_fb_funcs);
10064 if (ret) {
10065 DRM_ERROR("framebuffer init failed %d\n", ret);
10066 return ret;
10067 }
10068
Jesse Barnes79e53942008-11-07 14:24:08 -080010069 return 0;
10070}
10071
Jesse Barnes79e53942008-11-07 14:24:08 -080010072static struct drm_framebuffer *
10073intel_user_framebuffer_create(struct drm_device *dev,
10074 struct drm_file *filp,
Jesse Barnes308e5bc2011-11-14 14:51:28 -080010075 struct drm_mode_fb_cmd2 *mode_cmd)
Jesse Barnes79e53942008-11-07 14:24:08 -080010076{
Chris Wilson05394f32010-11-08 19:18:58 +000010077 struct drm_i915_gem_object *obj;
Jesse Barnes79e53942008-11-07 14:24:08 -080010078
Jesse Barnes308e5bc2011-11-14 14:51:28 -080010079 obj = to_intel_bo(drm_gem_object_lookup(dev, filp,
10080 mode_cmd->handles[0]));
Chris Wilsonc8725222011-02-19 11:31:06 +000010081 if (&obj->base == NULL)
Chris Wilsoncce13ff2010-08-08 13:36:38 +010010082 return ERR_PTR(-ENOENT);
Jesse Barnes79e53942008-11-07 14:24:08 -080010083
Chris Wilsond2dff872011-04-19 08:36:26 +010010084 return intel_framebuffer_create(dev, mode_cmd, obj);
Jesse Barnes79e53942008-11-07 14:24:08 -080010085}
10086
Jesse Barnes79e53942008-11-07 14:24:08 -080010087static const struct drm_mode_config_funcs intel_mode_funcs = {
Jesse Barnes79e53942008-11-07 14:24:08 -080010088 .fb_create = intel_user_framebuffer_create,
Dave Airlieeb1f8e42010-05-07 06:42:51 +000010089 .output_poll_changed = intel_fb_output_poll_changed,
Jesse Barnes79e53942008-11-07 14:24:08 -080010090};
10091
Jesse Barnese70236a2009-09-21 10:42:27 -070010092/* Set up chip specific display functions */
10093static void intel_init_display(struct drm_device *dev)
10094{
10095 struct drm_i915_private *dev_priv = dev->dev_private;
10096
Daniel Vetteree9300b2013-06-03 22:40:22 +020010097 if (HAS_PCH_SPLIT(dev) || IS_G4X(dev))
10098 dev_priv->display.find_dpll = g4x_find_best_dpll;
10099 else if (IS_VALLEYVIEW(dev))
10100 dev_priv->display.find_dpll = vlv_find_best_dpll;
10101 else if (IS_PINEVIEW(dev))
10102 dev_priv->display.find_dpll = pnv_find_best_dpll;
10103 else
10104 dev_priv->display.find_dpll = i9xx_find_best_dpll;
10105
Paulo Zanoniaffa9352012-11-23 15:30:39 -020010106 if (HAS_DDI(dev)) {
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010010107 dev_priv->display.get_pipe_config = haswell_get_pipe_config;
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -030010108 dev_priv->display.crtc_mode_set = haswell_crtc_mode_set;
Paulo Zanoni4f771f12012-10-23 18:29:51 -020010109 dev_priv->display.crtc_enable = haswell_crtc_enable;
10110 dev_priv->display.crtc_disable = haswell_crtc_disable;
Paulo Zanoni6441ab52012-10-05 12:05:58 -030010111 dev_priv->display.off = haswell_crtc_off;
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -030010112 dev_priv->display.update_plane = ironlake_update_plane;
10113 } else if (HAS_PCH_SPLIT(dev)) {
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010010114 dev_priv->display.get_pipe_config = ironlake_get_pipe_config;
Eric Anholtf564048e2011-03-30 13:01:02 -070010115 dev_priv->display.crtc_mode_set = ironlake_crtc_mode_set;
Daniel Vetter76e5a892012-06-29 22:39:33 +020010116 dev_priv->display.crtc_enable = ironlake_crtc_enable;
10117 dev_priv->display.crtc_disable = ironlake_crtc_disable;
Jesse Barnesee7b9f92012-04-20 17:11:53 +010010118 dev_priv->display.off = ironlake_crtc_off;
Jesse Barnes17638cd2011-06-24 12:19:23 -070010119 dev_priv->display.update_plane = ironlake_update_plane;
Jesse Barnes89b667f2013-04-18 14:51:36 -070010120 } else if (IS_VALLEYVIEW(dev)) {
10121 dev_priv->display.get_pipe_config = i9xx_get_pipe_config;
10122 dev_priv->display.crtc_mode_set = i9xx_crtc_mode_set;
10123 dev_priv->display.crtc_enable = valleyview_crtc_enable;
10124 dev_priv->display.crtc_disable = i9xx_crtc_disable;
10125 dev_priv->display.off = i9xx_crtc_off;
10126 dev_priv->display.update_plane = i9xx_update_plane;
Eric Anholtf564048e2011-03-30 13:01:02 -070010127 } else {
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010010128 dev_priv->display.get_pipe_config = i9xx_get_pipe_config;
Eric Anholtf564048e2011-03-30 13:01:02 -070010129 dev_priv->display.crtc_mode_set = i9xx_crtc_mode_set;
Daniel Vetter76e5a892012-06-29 22:39:33 +020010130 dev_priv->display.crtc_enable = i9xx_crtc_enable;
10131 dev_priv->display.crtc_disable = i9xx_crtc_disable;
Jesse Barnesee7b9f92012-04-20 17:11:53 +010010132 dev_priv->display.off = i9xx_crtc_off;
Jesse Barnes17638cd2011-06-24 12:19:23 -070010133 dev_priv->display.update_plane = i9xx_update_plane;
Eric Anholtf564048e2011-03-30 13:01:02 -070010134 }
Jesse Barnese70236a2009-09-21 10:42:27 -070010135
Jesse Barnese70236a2009-09-21 10:42:27 -070010136 /* Returns the core display clock speed */
Jesse Barnes25eb05fc2012-03-28 13:39:23 -070010137 if (IS_VALLEYVIEW(dev))
10138 dev_priv->display.get_display_clock_speed =
10139 valleyview_get_display_clock_speed;
10140 else if (IS_I945G(dev) || (IS_G33(dev) && !IS_PINEVIEW_M(dev)))
Jesse Barnese70236a2009-09-21 10:42:27 -070010141 dev_priv->display.get_display_clock_speed =
10142 i945_get_display_clock_speed;
10143 else if (IS_I915G(dev))
10144 dev_priv->display.get_display_clock_speed =
10145 i915_get_display_clock_speed;
Daniel Vetter257a7ff2013-07-26 08:35:42 +020010146 else if (IS_I945GM(dev) || IS_845G(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -070010147 dev_priv->display.get_display_clock_speed =
10148 i9xx_misc_get_display_clock_speed;
Daniel Vetter257a7ff2013-07-26 08:35:42 +020010149 else if (IS_PINEVIEW(dev))
10150 dev_priv->display.get_display_clock_speed =
10151 pnv_get_display_clock_speed;
Jesse Barnese70236a2009-09-21 10:42:27 -070010152 else if (IS_I915GM(dev))
10153 dev_priv->display.get_display_clock_speed =
10154 i915gm_get_display_clock_speed;
10155 else if (IS_I865G(dev))
10156 dev_priv->display.get_display_clock_speed =
10157 i865_get_display_clock_speed;
Daniel Vetterf0f8a9c2009-09-15 22:57:33 +020010158 else if (IS_I85X(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -070010159 dev_priv->display.get_display_clock_speed =
10160 i855_get_display_clock_speed;
10161 else /* 852, 830 */
10162 dev_priv->display.get_display_clock_speed =
10163 i830_get_display_clock_speed;
10164
Zhenyu Wang7f8a8562010-04-01 13:07:53 +080010165 if (HAS_PCH_SPLIT(dev)) {
Chris Wilsonf00a3dd2010-10-21 14:57:17 +010010166 if (IS_GEN5(dev)) {
Jesse Barnes674cf962011-04-28 14:27:04 -070010167 dev_priv->display.fdi_link_train = ironlake_fdi_link_train;
Wu Fengguange0dac652011-09-05 14:25:34 +080010168 dev_priv->display.write_eld = ironlake_write_eld;
Yuanhan Liu13982612010-12-15 15:42:31 +080010169 } else if (IS_GEN6(dev)) {
Jesse Barnes674cf962011-04-28 14:27:04 -070010170 dev_priv->display.fdi_link_train = gen6_fdi_link_train;
Wu Fengguange0dac652011-09-05 14:25:34 +080010171 dev_priv->display.write_eld = ironlake_write_eld;
Jesse Barnes357555c2011-04-28 15:09:55 -070010172 } else if (IS_IVYBRIDGE(dev)) {
10173 /* FIXME: detect B0+ stepping and use auto training */
10174 dev_priv->display.fdi_link_train = ivb_manual_fdi_link_train;
Wu Fengguange0dac652011-09-05 14:25:34 +080010175 dev_priv->display.write_eld = ironlake_write_eld;
Daniel Vetter01a415f2012-10-27 15:58:40 +020010176 dev_priv->display.modeset_global_resources =
10177 ivb_modeset_global_resources;
Eugeni Dodonovc82e4d22012-05-09 15:37:21 -030010178 } else if (IS_HASWELL(dev)) {
10179 dev_priv->display.fdi_link_train = hsw_fdi_link_train;
Wang Xingchao83358c852012-08-16 22:43:37 +080010180 dev_priv->display.write_eld = haswell_write_eld;
Daniel Vetterd6dd9eb2013-01-29 16:35:20 -020010181 dev_priv->display.modeset_global_resources =
10182 haswell_modeset_global_resources;
Paulo Zanonia0e63c22012-12-06 11:12:39 -020010183 }
Jesse Barnes6067aae2011-04-28 15:04:31 -070010184 } else if (IS_G4X(dev)) {
Wu Fengguange0dac652011-09-05 14:25:34 +080010185 dev_priv->display.write_eld = g4x_write_eld;
Jesse Barnese70236a2009-09-21 10:42:27 -070010186 }
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010187
10188 /* Default just returns -ENODEV to indicate unsupported */
10189 dev_priv->display.queue_flip = intel_default_queue_flip;
10190
10191 switch (INTEL_INFO(dev)->gen) {
10192 case 2:
10193 dev_priv->display.queue_flip = intel_gen2_queue_flip;
10194 break;
10195
10196 case 3:
10197 dev_priv->display.queue_flip = intel_gen3_queue_flip;
10198 break;
10199
10200 case 4:
10201 case 5:
10202 dev_priv->display.queue_flip = intel_gen4_queue_flip;
10203 break;
10204
10205 case 6:
10206 dev_priv->display.queue_flip = intel_gen6_queue_flip;
10207 break;
Jesse Barnes7c9017e2011-06-16 12:18:54 -070010208 case 7:
10209 dev_priv->display.queue_flip = intel_gen7_queue_flip;
10210 break;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070010211 }
Jesse Barnese70236a2009-09-21 10:42:27 -070010212}
10213
Jesse Barnesb690e962010-07-19 13:53:12 -070010214/*
10215 * Some BIOSes insist on assuming the GPU's pipe A is enabled at suspend,
10216 * resume, or other times. This quirk makes sure that's the case for
10217 * affected systems.
10218 */
Akshay Joshi0206e352011-08-16 15:34:10 -040010219static void quirk_pipea_force(struct drm_device *dev)
Jesse Barnesb690e962010-07-19 13:53:12 -070010220{
10221 struct drm_i915_private *dev_priv = dev->dev_private;
10222
10223 dev_priv->quirks |= QUIRK_PIPEA_FORCE;
Daniel Vetterbc0daf42012-04-01 13:16:49 +020010224 DRM_INFO("applying pipe a force quirk\n");
Jesse Barnesb690e962010-07-19 13:53:12 -070010225}
10226
Keith Packard435793d2011-07-12 14:56:22 -070010227/*
10228 * Some machines (Lenovo U160) do not work with SSC on LVDS for some reason
10229 */
10230static void quirk_ssc_force_disable(struct drm_device *dev)
10231{
10232 struct drm_i915_private *dev_priv = dev->dev_private;
10233 dev_priv->quirks |= QUIRK_LVDS_SSC_DISABLE;
Daniel Vetterbc0daf42012-04-01 13:16:49 +020010234 DRM_INFO("applying lvds SSC disable quirk\n");
Keith Packard435793d2011-07-12 14:56:22 -070010235}
10236
Carsten Emde4dca20e2012-03-15 15:56:26 +010010237/*
Carsten Emde5a15ab52012-03-15 15:56:27 +010010238 * A machine (e.g. Acer Aspire 5734Z) may need to invert the panel backlight
10239 * brightness value
Carsten Emde4dca20e2012-03-15 15:56:26 +010010240 */
10241static void quirk_invert_brightness(struct drm_device *dev)
10242{
10243 struct drm_i915_private *dev_priv = dev->dev_private;
10244 dev_priv->quirks |= QUIRK_INVERT_BRIGHTNESS;
Daniel Vetterbc0daf42012-04-01 13:16:49 +020010245 DRM_INFO("applying inverted panel brightness quirk\n");
Jesse Barnesb690e962010-07-19 13:53:12 -070010246}
10247
Kamal Mostafae85843b2013-07-19 15:02:01 -070010248/*
10249 * Some machines (Dell XPS13) suffer broken backlight controls if
10250 * BLM_PCH_PWM_ENABLE is set.
10251 */
10252static void quirk_no_pcm_pwm_enable(struct drm_device *dev)
10253{
10254 struct drm_i915_private *dev_priv = dev->dev_private;
10255 dev_priv->quirks |= QUIRK_NO_PCH_PWM_ENABLE;
10256 DRM_INFO("applying no-PCH_PWM_ENABLE quirk\n");
10257}
10258
Jesse Barnesb690e962010-07-19 13:53:12 -070010259struct intel_quirk {
10260 int device;
10261 int subsystem_vendor;
10262 int subsystem_device;
10263 void (*hook)(struct drm_device *dev);
10264};
10265
Egbert Eich5f85f1762012-10-14 15:46:38 +020010266/* For systems that don't have a meaningful PCI subdevice/subvendor ID */
10267struct intel_dmi_quirk {
10268 void (*hook)(struct drm_device *dev);
10269 const struct dmi_system_id (*dmi_id_list)[];
10270};
10271
10272static int intel_dmi_reverse_brightness(const struct dmi_system_id *id)
10273{
10274 DRM_INFO("Backlight polarity reversed on %s\n", id->ident);
10275 return 1;
10276}
10277
10278static const struct intel_dmi_quirk intel_dmi_quirks[] = {
10279 {
10280 .dmi_id_list = &(const struct dmi_system_id[]) {
10281 {
10282 .callback = intel_dmi_reverse_brightness,
10283 .ident = "NCR Corporation",
10284 .matches = {DMI_MATCH(DMI_SYS_VENDOR, "NCR Corporation"),
10285 DMI_MATCH(DMI_PRODUCT_NAME, ""),
10286 },
10287 },
10288 { } /* terminating entry */
10289 },
10290 .hook = quirk_invert_brightness,
10291 },
10292};
10293
Ben Widawskyc43b5632012-04-16 14:07:40 -070010294static struct intel_quirk intel_quirks[] = {
Jesse Barnesb690e962010-07-19 13:53:12 -070010295 /* HP Mini needs pipe A force quirk (LP: #322104) */
Akshay Joshi0206e352011-08-16 15:34:10 -040010296 { 0x27ae, 0x103c, 0x361a, quirk_pipea_force },
Jesse Barnesb690e962010-07-19 13:53:12 -070010297
Jesse Barnesb690e962010-07-19 13:53:12 -070010298 /* Toshiba Protege R-205, S-209 needs pipe A force quirk */
10299 { 0x2592, 0x1179, 0x0001, quirk_pipea_force },
10300
Jesse Barnesb690e962010-07-19 13:53:12 -070010301 /* ThinkPad T60 needs pipe A force quirk (bug #16494) */
10302 { 0x2782, 0x17aa, 0x201a, quirk_pipea_force },
10303
Daniel Vetterccd0d362012-10-10 23:13:59 +020010304 /* 830/845 need to leave pipe A & dpll A up */
Jesse Barnesb690e962010-07-19 13:53:12 -070010305 { 0x2562, PCI_ANY_ID, PCI_ANY_ID, quirk_pipea_force },
Daniel Vetterdcdaed62012-08-12 21:19:34 +020010306 { 0x3577, PCI_ANY_ID, PCI_ANY_ID, quirk_pipea_force },
Keith Packard435793d2011-07-12 14:56:22 -070010307
10308 /* Lenovo U160 cannot use SSC on LVDS */
10309 { 0x0046, 0x17aa, 0x3920, quirk_ssc_force_disable },
Michel Alexandre Salim070d3292011-07-28 18:52:06 +020010310
10311 /* Sony Vaio Y cannot use SSC on LVDS */
10312 { 0x0046, 0x104d, 0x9076, quirk_ssc_force_disable },
Carsten Emde5a15ab52012-03-15 15:56:27 +010010313
Jani Nikulaee1452d2013-09-20 15:05:30 +030010314 /*
10315 * All GM45 Acer (and its brands eMachines and Packard Bell) laptops
10316 * seem to use inverted backlight PWM.
10317 */
10318 { 0x2a42, 0x1025, PCI_ANY_ID, quirk_invert_brightness },
Kamal Mostafae85843b2013-07-19 15:02:01 -070010319
10320 /* Dell XPS13 HD Sandy Bridge */
10321 { 0x0116, 0x1028, 0x052e, quirk_no_pcm_pwm_enable },
10322 /* Dell XPS13 HD and XPS13 FHD Ivy Bridge */
10323 { 0x0166, 0x1028, 0x058b, quirk_no_pcm_pwm_enable },
Jesse Barnesb690e962010-07-19 13:53:12 -070010324};
10325
10326static void intel_init_quirks(struct drm_device *dev)
10327{
10328 struct pci_dev *d = dev->pdev;
10329 int i;
10330
10331 for (i = 0; i < ARRAY_SIZE(intel_quirks); i++) {
10332 struct intel_quirk *q = &intel_quirks[i];
10333
10334 if (d->device == q->device &&
10335 (d->subsystem_vendor == q->subsystem_vendor ||
10336 q->subsystem_vendor == PCI_ANY_ID) &&
10337 (d->subsystem_device == q->subsystem_device ||
10338 q->subsystem_device == PCI_ANY_ID))
10339 q->hook(dev);
10340 }
Egbert Eich5f85f1762012-10-14 15:46:38 +020010341 for (i = 0; i < ARRAY_SIZE(intel_dmi_quirks); i++) {
10342 if (dmi_check_system(*intel_dmi_quirks[i].dmi_id_list) != 0)
10343 intel_dmi_quirks[i].hook(dev);
10344 }
Jesse Barnesb690e962010-07-19 13:53:12 -070010345}
10346
Jesse Barnes9cce37f2010-08-13 15:11:26 -070010347/* Disable the VGA plane that we never use */
10348static void i915_disable_vga(struct drm_device *dev)
10349{
10350 struct drm_i915_private *dev_priv = dev->dev_private;
10351 u8 sr1;
Ville Syrjälä766aa1c2013-01-25 21:44:46 +020010352 u32 vga_reg = i915_vgacntrl_reg(dev);
Jesse Barnes9cce37f2010-08-13 15:11:26 -070010353
10354 vga_get_uninterruptible(dev->pdev, VGA_RSRC_LEGACY_IO);
Jesse Barnes3fdcf432012-04-06 11:46:27 -070010355 outb(SR01, VGA_SR_INDEX);
Jesse Barnes9cce37f2010-08-13 15:11:26 -070010356 sr1 = inb(VGA_SR_DATA);
10357 outb(sr1 | 1<<5, VGA_SR_DATA);
10358 vga_put(dev->pdev, VGA_RSRC_LEGACY_IO);
10359 udelay(300);
10360
10361 I915_WRITE(vga_reg, VGA_DISP_DISABLE);
10362 POSTING_READ(vga_reg);
10363}
10364
Ville Syrjälä6e1b4fd2013-09-05 20:40:52 +030010365static void i915_enable_vga_mem(struct drm_device *dev)
Alex Williamson81b5c7b2013-08-28 09:39:08 -060010366{
10367 /* Enable VGA memory on Intel HD */
10368 if (HAS_PCH_SPLIT(dev)) {
10369 vga_get_uninterruptible(dev->pdev, VGA_RSRC_LEGACY_IO);
10370 outb(inb(VGA_MSR_READ) | VGA_MSR_MEM_EN, VGA_MSR_WRITE);
10371 vga_set_legacy_decoding(dev->pdev, VGA_RSRC_LEGACY_IO |
10372 VGA_RSRC_LEGACY_MEM |
10373 VGA_RSRC_NORMAL_IO |
10374 VGA_RSRC_NORMAL_MEM);
10375 vga_put(dev->pdev, VGA_RSRC_LEGACY_IO);
10376 }
10377}
10378
Ville Syrjälä6e1b4fd2013-09-05 20:40:52 +030010379void i915_disable_vga_mem(struct drm_device *dev)
10380{
10381 /* Disable VGA memory on Intel HD */
10382 if (HAS_PCH_SPLIT(dev)) {
10383 vga_get_uninterruptible(dev->pdev, VGA_RSRC_LEGACY_IO);
10384 outb(inb(VGA_MSR_READ) & ~VGA_MSR_MEM_EN, VGA_MSR_WRITE);
10385 vga_set_legacy_decoding(dev->pdev, VGA_RSRC_LEGACY_IO |
10386 VGA_RSRC_NORMAL_IO |
10387 VGA_RSRC_NORMAL_MEM);
10388 vga_put(dev->pdev, VGA_RSRC_LEGACY_IO);
10389 }
10390}
10391
Daniel Vetterf8175862012-04-10 15:50:11 +020010392void intel_modeset_init_hw(struct drm_device *dev)
10393{
Jesse Barnesf6071162013-10-01 10:41:38 -070010394 struct drm_i915_private *dev_priv = dev->dev_private;
10395
Eugeni Dodonova8f78b52012-06-28 15:55:35 -030010396 intel_prepare_ddi(dev);
10397
Daniel Vetterf8175862012-04-10 15:50:11 +020010398 intel_init_clock_gating(dev);
10399
Jesse Barnesf6071162013-10-01 10:41:38 -070010400 /* Enable the CRI clock source so we can get at the display */
10401 if (IS_VALLEYVIEW(dev))
10402 I915_WRITE(DPLL(PIPE_B), I915_READ(DPLL(PIPE_B)) |
10403 DPLL_INTEGRATED_CRI_CLK_VLV);
10404
Jesse Barnes40e9cf62013-10-03 11:35:46 -070010405 intel_init_dpio(dev);
10406
Daniel Vetter79f5b2c2012-06-24 16:42:33 +020010407 mutex_lock(&dev->struct_mutex);
Daniel Vetter8090c6b2012-06-24 16:42:32 +020010408 intel_enable_gt_powersave(dev);
Daniel Vetter79f5b2c2012-06-24 16:42:33 +020010409 mutex_unlock(&dev->struct_mutex);
Daniel Vetterf8175862012-04-10 15:50:11 +020010410}
10411
Imre Deak7d708ee2013-04-17 14:04:50 +030010412void intel_modeset_suspend_hw(struct drm_device *dev)
10413{
10414 intel_suspend_hw(dev);
10415}
10416
Jesse Barnes79e53942008-11-07 14:24:08 -080010417void intel_modeset_init(struct drm_device *dev)
10418{
Jesse Barnes652c3932009-08-17 13:31:43 -070010419 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes7f1f3852013-04-02 11:22:20 -070010420 int i, j, ret;
Jesse Barnes79e53942008-11-07 14:24:08 -080010421
10422 drm_mode_config_init(dev);
10423
10424 dev->mode_config.min_width = 0;
10425 dev->mode_config.min_height = 0;
10426
Dave Airlie019d96c2011-09-29 16:20:42 +010010427 dev->mode_config.preferred_depth = 24;
10428 dev->mode_config.prefer_shadow = 1;
10429
Laurent Pincharte6ecefa2012-05-17 13:27:23 +020010430 dev->mode_config.funcs = &intel_mode_funcs;
Jesse Barnes79e53942008-11-07 14:24:08 -080010431
Jesse Barnesb690e962010-07-19 13:53:12 -070010432 intel_init_quirks(dev);
10433
Eugeni Dodonov1fa61102012-04-18 15:29:26 -030010434 intel_init_pm(dev);
10435
Ben Widawskye3c74752013-04-05 13:12:39 -070010436 if (INTEL_INFO(dev)->num_pipes == 0)
10437 return;
10438
Jesse Barnese70236a2009-09-21 10:42:27 -070010439 intel_init_display(dev);
10440
Chris Wilsona6c45cf2010-09-17 00:32:17 +010010441 if (IS_GEN2(dev)) {
10442 dev->mode_config.max_width = 2048;
10443 dev->mode_config.max_height = 2048;
10444 } else if (IS_GEN3(dev)) {
Keith Packard5e4d6fa2009-07-12 23:53:17 -070010445 dev->mode_config.max_width = 4096;
10446 dev->mode_config.max_height = 4096;
Jesse Barnes79e53942008-11-07 14:24:08 -080010447 } else {
Chris Wilsona6c45cf2010-09-17 00:32:17 +010010448 dev->mode_config.max_width = 8192;
10449 dev->mode_config.max_height = 8192;
Jesse Barnes79e53942008-11-07 14:24:08 -080010450 }
Ben Widawsky5d4545a2013-01-17 12:45:15 -080010451 dev->mode_config.fb_base = dev_priv->gtt.mappable_base;
Jesse Barnes79e53942008-11-07 14:24:08 -080010452
Zhao Yakui28c97732009-10-09 11:39:41 +080010453 DRM_DEBUG_KMS("%d display pipe%s available.\n",
Ben Widawsky7eb552a2013-03-13 14:05:41 -070010454 INTEL_INFO(dev)->num_pipes,
10455 INTEL_INFO(dev)->num_pipes > 1 ? "s" : "");
Jesse Barnes79e53942008-11-07 14:24:08 -080010456
Damien Lespiau08e2a7d2013-07-11 20:10:54 +010010457 for_each_pipe(i) {
Jesse Barnes79e53942008-11-07 14:24:08 -080010458 intel_crtc_init(dev, i);
Jesse Barnes7f1f3852013-04-02 11:22:20 -070010459 for (j = 0; j < dev_priv->num_plane; j++) {
10460 ret = intel_plane_init(dev, i, j);
10461 if (ret)
Ville Syrjälä06da8da2013-04-17 17:48:51 +030010462 DRM_DEBUG_KMS("pipe %c sprite %c init failed: %d\n",
10463 pipe_name(i), sprite_name(i, j), ret);
Jesse Barnes7f1f3852013-04-02 11:22:20 -070010464 }
Jesse Barnes79e53942008-11-07 14:24:08 -080010465 }
10466
Paulo Zanoni79f689a2012-10-05 12:05:52 -030010467 intel_cpu_pll_init(dev);
Daniel Vettere72f9fb2013-06-05 13:34:06 +020010468 intel_shared_dpll_init(dev);
Jesse Barnesee7b9f92012-04-20 17:11:53 +010010469
Jesse Barnes9cce37f2010-08-13 15:11:26 -070010470 /* Just disable it once at startup */
10471 i915_disable_vga(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -080010472 intel_setup_outputs(dev);
Chris Wilson11be49e2012-11-15 11:32:20 +000010473
10474 /* Just in case the BIOS is doing something questionable. */
10475 intel_disable_fbc(dev);
Chris Wilson2c7111d2011-03-29 10:40:27 +010010476}
Jesse Barnesd5bb0812011-01-05 12:01:26 -080010477
Daniel Vetter24929352012-07-02 20:28:59 +020010478static void
10479intel_connector_break_all_links(struct intel_connector *connector)
10480{
10481 connector->base.dpms = DRM_MODE_DPMS_OFF;
10482 connector->base.encoder = NULL;
10483 connector->encoder->connectors_active = false;
10484 connector->encoder->base.crtc = NULL;
10485}
10486
Daniel Vetter7fad7982012-07-04 17:51:47 +020010487static void intel_enable_pipe_a(struct drm_device *dev)
10488{
10489 struct intel_connector *connector;
10490 struct drm_connector *crt = NULL;
10491 struct intel_load_detect_pipe load_detect_temp;
10492
10493 /* We can't just switch on the pipe A, we need to set things up with a
10494 * proper mode and output configuration. As a gross hack, enable pipe A
10495 * by enabling the load detect pipe once. */
10496 list_for_each_entry(connector,
10497 &dev->mode_config.connector_list,
10498 base.head) {
10499 if (connector->encoder->type == INTEL_OUTPUT_ANALOG) {
10500 crt = &connector->base;
10501 break;
10502 }
10503 }
10504
10505 if (!crt)
10506 return;
10507
10508 if (intel_get_load_detect_pipe(crt, NULL, &load_detect_temp))
10509 intel_release_load_detect_pipe(crt, &load_detect_temp);
10510
10511
10512}
10513
Daniel Vetterfa555832012-10-10 23:14:00 +020010514static bool
10515intel_check_plane_mapping(struct intel_crtc *crtc)
10516{
Ben Widawsky7eb552a2013-03-13 14:05:41 -070010517 struct drm_device *dev = crtc->base.dev;
10518 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterfa555832012-10-10 23:14:00 +020010519 u32 reg, val;
10520
Ben Widawsky7eb552a2013-03-13 14:05:41 -070010521 if (INTEL_INFO(dev)->num_pipes == 1)
Daniel Vetterfa555832012-10-10 23:14:00 +020010522 return true;
10523
10524 reg = DSPCNTR(!crtc->plane);
10525 val = I915_READ(reg);
10526
10527 if ((val & DISPLAY_PLANE_ENABLE) &&
10528 (!!(val & DISPPLANE_SEL_PIPE_MASK) == crtc->pipe))
10529 return false;
10530
10531 return true;
10532}
10533
Daniel Vetter24929352012-07-02 20:28:59 +020010534static void intel_sanitize_crtc(struct intel_crtc *crtc)
10535{
10536 struct drm_device *dev = crtc->base.dev;
10537 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterfa555832012-10-10 23:14:00 +020010538 u32 reg;
Daniel Vetter24929352012-07-02 20:28:59 +020010539
Daniel Vetter24929352012-07-02 20:28:59 +020010540 /* Clear any frame start delays used for debugging left by the BIOS */
Daniel Vetter3b117c82013-04-17 20:15:07 +020010541 reg = PIPECONF(crtc->config.cpu_transcoder);
Daniel Vetter24929352012-07-02 20:28:59 +020010542 I915_WRITE(reg, I915_READ(reg) & ~PIPECONF_FRAME_START_DELAY_MASK);
10543
10544 /* We need to sanitize the plane -> pipe mapping first because this will
Daniel Vetterfa555832012-10-10 23:14:00 +020010545 * disable the crtc (and hence change the state) if it is wrong. Note
10546 * that gen4+ has a fixed plane -> pipe mapping. */
10547 if (INTEL_INFO(dev)->gen < 4 && !intel_check_plane_mapping(crtc)) {
Daniel Vetter24929352012-07-02 20:28:59 +020010548 struct intel_connector *connector;
10549 bool plane;
10550
Daniel Vetter24929352012-07-02 20:28:59 +020010551 DRM_DEBUG_KMS("[CRTC:%d] wrong plane connection detected!\n",
10552 crtc->base.base.id);
10553
10554 /* Pipe has the wrong plane attached and the plane is active.
10555 * Temporarily change the plane mapping and disable everything
10556 * ... */
10557 plane = crtc->plane;
10558 crtc->plane = !plane;
10559 dev_priv->display.crtc_disable(&crtc->base);
10560 crtc->plane = plane;
10561
10562 /* ... and break all links. */
10563 list_for_each_entry(connector, &dev->mode_config.connector_list,
10564 base.head) {
10565 if (connector->encoder->base.crtc != &crtc->base)
10566 continue;
10567
10568 intel_connector_break_all_links(connector);
10569 }
10570
10571 WARN_ON(crtc->active);
10572 crtc->base.enabled = false;
10573 }
Daniel Vetter24929352012-07-02 20:28:59 +020010574
Daniel Vetter7fad7982012-07-04 17:51:47 +020010575 if (dev_priv->quirks & QUIRK_PIPEA_FORCE &&
10576 crtc->pipe == PIPE_A && !crtc->active) {
10577 /* BIOS forgot to enable pipe A, this mostly happens after
10578 * resume. Force-enable the pipe to fix this, the update_dpms
10579 * call below we restore the pipe to the right state, but leave
10580 * the required bits on. */
10581 intel_enable_pipe_a(dev);
10582 }
10583
Daniel Vetter24929352012-07-02 20:28:59 +020010584 /* Adjust the state of the output pipe according to whether we
10585 * have active connectors/encoders. */
10586 intel_crtc_update_dpms(&crtc->base);
10587
10588 if (crtc->active != crtc->base.enabled) {
10589 struct intel_encoder *encoder;
10590
10591 /* This can happen either due to bugs in the get_hw_state
10592 * functions or because the pipe is force-enabled due to the
10593 * pipe A quirk. */
10594 DRM_DEBUG_KMS("[CRTC:%d] hw state adjusted, was %s, now %s\n",
10595 crtc->base.base.id,
10596 crtc->base.enabled ? "enabled" : "disabled",
10597 crtc->active ? "enabled" : "disabled");
10598
10599 crtc->base.enabled = crtc->active;
10600
10601 /* Because we only establish the connector -> encoder ->
10602 * crtc links if something is active, this means the
10603 * crtc is now deactivated. Break the links. connector
10604 * -> encoder links are only establish when things are
10605 * actually up, hence no need to break them. */
10606 WARN_ON(crtc->active);
10607
10608 for_each_encoder_on_crtc(dev, &crtc->base, encoder) {
10609 WARN_ON(encoder->connectors_active);
10610 encoder->base.crtc = NULL;
10611 }
10612 }
10613}
10614
10615static void intel_sanitize_encoder(struct intel_encoder *encoder)
10616{
10617 struct intel_connector *connector;
10618 struct drm_device *dev = encoder->base.dev;
10619
10620 /* We need to check both for a crtc link (meaning that the
10621 * encoder is active and trying to read from a pipe) and the
10622 * pipe itself being active. */
10623 bool has_active_crtc = encoder->base.crtc &&
10624 to_intel_crtc(encoder->base.crtc)->active;
10625
10626 if (encoder->connectors_active && !has_active_crtc) {
10627 DRM_DEBUG_KMS("[ENCODER:%d:%s] has active connectors but no active pipe!\n",
10628 encoder->base.base.id,
10629 drm_get_encoder_name(&encoder->base));
10630
10631 /* Connector is active, but has no active pipe. This is
10632 * fallout from our resume register restoring. Disable
10633 * the encoder manually again. */
10634 if (encoder->base.crtc) {
10635 DRM_DEBUG_KMS("[ENCODER:%d:%s] manually disabled\n",
10636 encoder->base.base.id,
10637 drm_get_encoder_name(&encoder->base));
10638 encoder->disable(encoder);
10639 }
10640
10641 /* Inconsistent output/port/pipe state happens presumably due to
10642 * a bug in one of the get_hw_state functions. Or someplace else
10643 * in our code, like the register restore mess on resume. Clamp
10644 * things to off as a safer default. */
10645 list_for_each_entry(connector,
10646 &dev->mode_config.connector_list,
10647 base.head) {
10648 if (connector->encoder != encoder)
10649 continue;
10650
10651 intel_connector_break_all_links(connector);
10652 }
10653 }
10654 /* Enabled encoders without active connectors will be fixed in
10655 * the crtc fixup. */
10656}
10657
Daniel Vetter44cec742013-01-25 17:53:21 +010010658void i915_redisable_vga(struct drm_device *dev)
Krzysztof Mazur0fde9012012-12-19 11:03:41 +010010659{
10660 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä766aa1c2013-01-25 21:44:46 +020010661 u32 vga_reg = i915_vgacntrl_reg(dev);
Krzysztof Mazur0fde9012012-12-19 11:03:41 +010010662
Paulo Zanoni8dc8a272013-08-02 16:22:24 -030010663 /* This function can be called both from intel_modeset_setup_hw_state or
10664 * at a very early point in our resume sequence, where the power well
10665 * structures are not yet restored. Since this function is at a very
10666 * paranoid "someone might have enabled VGA while we were not looking"
10667 * level, just check if the power well is enabled instead of trying to
10668 * follow the "don't touch the power well if we don't need it" policy
10669 * the rest of the driver uses. */
10670 if (HAS_POWER_WELL(dev) &&
Paulo Zanoni6aedd1f2013-08-02 16:22:25 -030010671 (I915_READ(HSW_PWR_WELL_DRIVER) & HSW_PWR_WELL_STATE_ENABLED) == 0)
Paulo Zanoni8dc8a272013-08-02 16:22:24 -030010672 return;
10673
Ville Syrjäläe1553fa2013-10-04 20:32:25 +030010674 if (!(I915_READ(vga_reg) & VGA_DISP_DISABLE)) {
Krzysztof Mazur0fde9012012-12-19 11:03:41 +010010675 DRM_DEBUG_KMS("Something enabled VGA plane, disabling it\n");
Ville Syrjälä209d5212013-01-25 21:44:48 +020010676 i915_disable_vga(dev);
Ville Syrjälä6e1b4fd2013-09-05 20:40:52 +030010677 i915_disable_vga_mem(dev);
Krzysztof Mazur0fde9012012-12-19 11:03:41 +010010678 }
10679}
10680
Daniel Vetter30e984d2013-06-05 13:34:17 +020010681static void intel_modeset_readout_hw_state(struct drm_device *dev)
Daniel Vetter24929352012-07-02 20:28:59 +020010682{
10683 struct drm_i915_private *dev_priv = dev->dev_private;
10684 enum pipe pipe;
Daniel Vetter24929352012-07-02 20:28:59 +020010685 struct intel_crtc *crtc;
10686 struct intel_encoder *encoder;
10687 struct intel_connector *connector;
Daniel Vetter53589012013-06-05 13:34:16 +020010688 int i;
Daniel Vetter24929352012-07-02 20:28:59 +020010689
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010010690 list_for_each_entry(crtc, &dev->mode_config.crtc_list,
10691 base.head) {
Daniel Vetter88adfff2013-03-28 10:42:01 +010010692 memset(&crtc->config, 0, sizeof(crtc->config));
Daniel Vetter3b117c82013-04-17 20:15:07 +020010693
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010010694 crtc->active = dev_priv->display.get_pipe_config(crtc,
10695 &crtc->config);
Daniel Vetter24929352012-07-02 20:28:59 +020010696
10697 crtc->base.enabled = crtc->active;
10698
10699 DRM_DEBUG_KMS("[CRTC:%d] hw state readout: %s\n",
10700 crtc->base.base.id,
10701 crtc->active ? "enabled" : "disabled");
10702 }
10703
Daniel Vetter53589012013-06-05 13:34:16 +020010704 /* FIXME: Smash this into the new shared dpll infrastructure. */
Paulo Zanoniaffa9352012-11-23 15:30:39 -020010705 if (HAS_DDI(dev))
Paulo Zanoni6441ab52012-10-05 12:05:58 -030010706 intel_ddi_setup_hw_pll_state(dev);
10707
Daniel Vetter53589012013-06-05 13:34:16 +020010708 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
10709 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
10710
10711 pll->on = pll->get_hw_state(dev_priv, pll, &pll->hw_state);
10712 pll->active = 0;
10713 list_for_each_entry(crtc, &dev->mode_config.crtc_list,
10714 base.head) {
10715 if (crtc->active && intel_crtc_to_shared_dpll(crtc) == pll)
10716 pll->active++;
10717 }
10718 pll->refcount = pll->active;
10719
Daniel Vetter35c95372013-07-17 06:55:04 +020010720 DRM_DEBUG_KMS("%s hw state readout: refcount %i, on %i\n",
10721 pll->name, pll->refcount, pll->on);
Daniel Vetter53589012013-06-05 13:34:16 +020010722 }
10723
Daniel Vetter24929352012-07-02 20:28:59 +020010724 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
10725 base.head) {
10726 pipe = 0;
10727
10728 if (encoder->get_hw_state(encoder, &pipe)) {
Jesse Barnes045ac3b2013-05-14 17:08:26 -070010729 crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
10730 encoder->base.crtc = &crtc->base;
Jesse Barnes510d5f22013-07-01 15:50:17 -070010731 if (encoder->get_config)
Jesse Barnes045ac3b2013-05-14 17:08:26 -070010732 encoder->get_config(encoder, &crtc->config);
Daniel Vetter24929352012-07-02 20:28:59 +020010733 } else {
10734 encoder->base.crtc = NULL;
10735 }
10736
10737 encoder->connectors_active = false;
10738 DRM_DEBUG_KMS("[ENCODER:%d:%s] hw state readout: %s, pipe=%i\n",
10739 encoder->base.base.id,
10740 drm_get_encoder_name(&encoder->base),
10741 encoder->base.crtc ? "enabled" : "disabled",
10742 pipe);
10743 }
10744
10745 list_for_each_entry(connector, &dev->mode_config.connector_list,
10746 base.head) {
10747 if (connector->get_hw_state(connector)) {
10748 connector->base.dpms = DRM_MODE_DPMS_ON;
10749 connector->encoder->connectors_active = true;
10750 connector->base.encoder = &connector->encoder->base;
10751 } else {
10752 connector->base.dpms = DRM_MODE_DPMS_OFF;
10753 connector->base.encoder = NULL;
10754 }
10755 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] hw state readout: %s\n",
10756 connector->base.base.id,
10757 drm_get_connector_name(&connector->base),
10758 connector->base.encoder ? "enabled" : "disabled");
10759 }
Daniel Vetter30e984d2013-06-05 13:34:17 +020010760}
10761
10762/* Scan out the current hw modeset state, sanitizes it and maps it into the drm
10763 * and i915 state tracking structures. */
10764void intel_modeset_setup_hw_state(struct drm_device *dev,
10765 bool force_restore)
10766{
10767 struct drm_i915_private *dev_priv = dev->dev_private;
10768 enum pipe pipe;
Daniel Vetter30e984d2013-06-05 13:34:17 +020010769 struct intel_crtc *crtc;
10770 struct intel_encoder *encoder;
Daniel Vetter35c95372013-07-17 06:55:04 +020010771 int i;
Daniel Vetter30e984d2013-06-05 13:34:17 +020010772
10773 intel_modeset_readout_hw_state(dev);
Daniel Vetter24929352012-07-02 20:28:59 +020010774
Jesse Barnesbabea612013-06-26 18:57:38 +030010775 /*
10776 * Now that we have the config, copy it to each CRTC struct
10777 * Note that this could go away if we move to using crtc_config
10778 * checking everywhere.
10779 */
10780 list_for_each_entry(crtc, &dev->mode_config.crtc_list,
10781 base.head) {
10782 if (crtc->active && i915_fastboot) {
10783 intel_crtc_mode_from_pipe_config(crtc, &crtc->config);
10784
10785 DRM_DEBUG_KMS("[CRTC:%d] found active mode: ",
10786 crtc->base.base.id);
10787 drm_mode_debug_printmodeline(&crtc->base.mode);
10788 }
10789 }
10790
Daniel Vetter24929352012-07-02 20:28:59 +020010791 /* HW state is read out, now we need to sanitize this mess. */
10792 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
10793 base.head) {
10794 intel_sanitize_encoder(encoder);
10795 }
10796
10797 for_each_pipe(pipe) {
10798 crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
10799 intel_sanitize_crtc(crtc);
Daniel Vetterc0b03412013-05-28 12:05:54 +020010800 intel_dump_pipe_config(crtc, &crtc->config, "[setup_hw_state]");
Daniel Vetter24929352012-07-02 20:28:59 +020010801 }
Daniel Vetter9a935852012-07-05 22:34:27 +020010802
Daniel Vetter35c95372013-07-17 06:55:04 +020010803 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
10804 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
10805
10806 if (!pll->on || pll->active)
10807 continue;
10808
10809 DRM_DEBUG_KMS("%s enabled but not in use, disabling\n", pll->name);
10810
10811 pll->disable(dev_priv, pll);
10812 pll->on = false;
10813 }
10814
Daniel Vetter45e2b5f2012-11-23 18:16:34 +010010815 if (force_restore) {
Ville Syrjälä7d0bc1e2013-09-16 17:38:33 +030010816 i915_redisable_vga(dev);
10817
Daniel Vetterf30da182013-04-11 20:22:50 +020010818 /*
10819 * We need to use raw interfaces for restoring state to avoid
10820 * checking (bogus) intermediate states.
10821 */
Daniel Vetter45e2b5f2012-11-23 18:16:34 +010010822 for_each_pipe(pipe) {
Jesse Barnesb5644d02013-03-26 13:25:27 -070010823 struct drm_crtc *crtc =
10824 dev_priv->pipe_to_crtc_mapping[pipe];
Daniel Vetterf30da182013-04-11 20:22:50 +020010825
10826 __intel_set_mode(crtc, &crtc->mode, crtc->x, crtc->y,
10827 crtc->fb);
Daniel Vetter45e2b5f2012-11-23 18:16:34 +010010828 }
10829 } else {
10830 intel_modeset_update_staged_output_state(dev);
10831 }
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010832
10833 intel_modeset_check_state(dev);
Daniel Vetter2e938892012-10-11 20:08:24 +020010834
10835 drm_mode_config_reset(dev);
Chris Wilson2c7111d2011-03-29 10:40:27 +010010836}
10837
10838void intel_modeset_gem_init(struct drm_device *dev)
10839{
Chris Wilson1833b132012-05-09 11:56:28 +010010840 intel_modeset_init_hw(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +020010841
10842 intel_setup_overlay(dev);
Daniel Vetter24929352012-07-02 20:28:59 +020010843
Daniel Vetter45e2b5f2012-11-23 18:16:34 +010010844 intel_modeset_setup_hw_state(dev, false);
Jesse Barnes79e53942008-11-07 14:24:08 -080010845}
10846
10847void intel_modeset_cleanup(struct drm_device *dev)
10848{
Jesse Barnes652c3932009-08-17 13:31:43 -070010849 struct drm_i915_private *dev_priv = dev->dev_private;
10850 struct drm_crtc *crtc;
Paulo Zanonid9255d52013-09-26 20:05:59 -030010851 struct drm_connector *connector;
Jesse Barnes652c3932009-08-17 13:31:43 -070010852
Daniel Vetterfd0c0642013-04-24 11:13:35 +020010853 /*
10854 * Interrupts and polling as the first thing to avoid creating havoc.
10855 * Too much stuff here (turning of rps, connectors, ...) would
10856 * experience fancy races otherwise.
10857 */
10858 drm_irq_uninstall(dev);
10859 cancel_work_sync(&dev_priv->hotplug_work);
10860 /*
10861 * Due to the hpd irq storm handling the hotplug work can re-arm the
10862 * poll handlers. Hence disable polling after hpd handling is shut down.
10863 */
Keith Packardf87ea762010-10-03 19:36:26 -070010864 drm_kms_helper_poll_fini(dev);
Daniel Vetterfd0c0642013-04-24 11:13:35 +020010865
Jesse Barnes652c3932009-08-17 13:31:43 -070010866 mutex_lock(&dev->struct_mutex);
10867
Jesse Barnes723bfd72010-10-07 16:01:13 -070010868 intel_unregister_dsm_handler();
10869
Jesse Barnes652c3932009-08-17 13:31:43 -070010870 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
10871 /* Skip inactive CRTCs */
10872 if (!crtc->fb)
10873 continue;
10874
Daniel Vetter3dec0092010-08-20 21:40:52 +020010875 intel_increase_pllclock(crtc);
Jesse Barnes652c3932009-08-17 13:31:43 -070010876 }
10877
Chris Wilson973d04f2011-07-08 12:22:37 +010010878 intel_disable_fbc(dev);
Jesse Barnese70236a2009-09-21 10:42:27 -070010879
Ville Syrjälä6e1b4fd2013-09-05 20:40:52 +030010880 i915_enable_vga_mem(dev);
Alex Williamson81b5c7b2013-08-28 09:39:08 -060010881
Daniel Vetter8090c6b2012-06-24 16:42:32 +020010882 intel_disable_gt_powersave(dev);
Chris Wilson0cdab212010-12-05 17:27:06 +000010883
Daniel Vetter930ebb42012-06-29 23:32:16 +020010884 ironlake_teardown_rc6(dev);
10885
Kristian Høgsberg69341a52009-11-11 12:19:17 -050010886 mutex_unlock(&dev->struct_mutex);
10887
Chris Wilson1630fe72011-07-08 12:22:42 +010010888 /* flush any delayed tasks or pending work */
10889 flush_scheduled_work();
10890
Jani Nikuladc652f92013-04-12 15:18:38 +030010891 /* destroy backlight, if any, before the connectors */
10892 intel_panel_destroy_backlight(dev);
10893
Paulo Zanonid9255d52013-09-26 20:05:59 -030010894 /* destroy the sysfs files before encoders/connectors */
10895 list_for_each_entry(connector, &dev->mode_config.connector_list, head)
10896 drm_sysfs_connector_remove(connector);
10897
Jesse Barnes79e53942008-11-07 14:24:08 -080010898 drm_mode_config_cleanup(dev);
Daniel Vetter4d7bb012012-12-18 15:24:37 +010010899
10900 intel_cleanup_overlay(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -080010901}
10902
Dave Airlie28d52042009-09-21 14:33:58 +100010903/*
Zhenyu Wangf1c79df2010-03-30 14:39:29 +080010904 * Return which encoder is currently attached for connector.
10905 */
Chris Wilsondf0e9242010-09-09 16:20:55 +010010906struct drm_encoder *intel_best_encoder(struct drm_connector *connector)
Jesse Barnes79e53942008-11-07 14:24:08 -080010907{
Chris Wilsondf0e9242010-09-09 16:20:55 +010010908 return &intel_attached_encoder(connector)->base;
10909}
Jesse Barnes79e53942008-11-07 14:24:08 -080010910
Chris Wilsondf0e9242010-09-09 16:20:55 +010010911void intel_connector_attach_encoder(struct intel_connector *connector,
10912 struct intel_encoder *encoder)
10913{
10914 connector->encoder = encoder;
10915 drm_mode_connector_attach_encoder(&connector->base,
10916 &encoder->base);
Jesse Barnes79e53942008-11-07 14:24:08 -080010917}
Dave Airlie28d52042009-09-21 14:33:58 +100010918
10919/*
10920 * set vga decode state - true == enable VGA decode
10921 */
10922int intel_modeset_vga_set_state(struct drm_device *dev, bool state)
10923{
10924 struct drm_i915_private *dev_priv = dev->dev_private;
10925 u16 gmch_ctrl;
10926
10927 pci_read_config_word(dev_priv->bridge_dev, INTEL_GMCH_CTRL, &gmch_ctrl);
10928 if (state)
10929 gmch_ctrl &= ~INTEL_GMCH_VGA_DISABLE;
10930 else
10931 gmch_ctrl |= INTEL_GMCH_VGA_DISABLE;
10932 pci_write_config_word(dev_priv->bridge_dev, INTEL_GMCH_CTRL, gmch_ctrl);
10933 return 0;
10934}
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000010935
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000010936struct intel_display_error_state {
Paulo Zanoniff57f1b2013-05-03 12:15:37 -030010937
10938 u32 power_well_driver;
10939
Chris Wilson63b66e52013-08-08 15:12:06 +020010940 int num_transcoders;
10941
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000010942 struct intel_cursor_error_state {
10943 u32 control;
10944 u32 position;
10945 u32 base;
10946 u32 size;
Damien Lespiau52331302012-08-15 19:23:25 +010010947 } cursor[I915_MAX_PIPES];
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000010948
10949 struct intel_pipe_error_state {
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000010950 u32 source;
Damien Lespiau52331302012-08-15 19:23:25 +010010951 } pipe[I915_MAX_PIPES];
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000010952
10953 struct intel_plane_error_state {
10954 u32 control;
10955 u32 stride;
10956 u32 size;
10957 u32 pos;
10958 u32 addr;
10959 u32 surface;
10960 u32 tile_offset;
Damien Lespiau52331302012-08-15 19:23:25 +010010961 } plane[I915_MAX_PIPES];
Chris Wilson63b66e52013-08-08 15:12:06 +020010962
10963 struct intel_transcoder_error_state {
10964 enum transcoder cpu_transcoder;
10965
10966 u32 conf;
10967
10968 u32 htotal;
10969 u32 hblank;
10970 u32 hsync;
10971 u32 vtotal;
10972 u32 vblank;
10973 u32 vsync;
10974 } transcoder[4];
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000010975};
10976
10977struct intel_display_error_state *
10978intel_display_capture_error_state(struct drm_device *dev)
10979{
Akshay Joshi0206e352011-08-16 15:34:10 -040010980 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000010981 struct intel_display_error_state *error;
Chris Wilson63b66e52013-08-08 15:12:06 +020010982 int transcoders[] = {
10983 TRANSCODER_A,
10984 TRANSCODER_B,
10985 TRANSCODER_C,
10986 TRANSCODER_EDP,
10987 };
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000010988 int i;
10989
Chris Wilson63b66e52013-08-08 15:12:06 +020010990 if (INTEL_INFO(dev)->num_pipes == 0)
10991 return NULL;
10992
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000010993 error = kmalloc(sizeof(*error), GFP_ATOMIC);
10994 if (error == NULL)
10995 return NULL;
10996
Paulo Zanoniff57f1b2013-05-03 12:15:37 -030010997 if (HAS_POWER_WELL(dev))
10998 error->power_well_driver = I915_READ(HSW_PWR_WELL_DRIVER);
10999
Damien Lespiau52331302012-08-15 19:23:25 +010011000 for_each_pipe(i) {
Paulo Zanonia18c4c32013-03-06 20:03:12 -030011001 if (INTEL_INFO(dev)->gen <= 6 || IS_VALLEYVIEW(dev)) {
11002 error->cursor[i].control = I915_READ(CURCNTR(i));
11003 error->cursor[i].position = I915_READ(CURPOS(i));
11004 error->cursor[i].base = I915_READ(CURBASE(i));
11005 } else {
11006 error->cursor[i].control = I915_READ(CURCNTR_IVB(i));
11007 error->cursor[i].position = I915_READ(CURPOS_IVB(i));
11008 error->cursor[i].base = I915_READ(CURBASE_IVB(i));
11009 }
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000011010
11011 error->plane[i].control = I915_READ(DSPCNTR(i));
11012 error->plane[i].stride = I915_READ(DSPSTRIDE(i));
Paulo Zanoni80ca3782013-03-22 14:20:57 -030011013 if (INTEL_INFO(dev)->gen <= 3) {
Paulo Zanoni51889b32013-03-06 20:03:13 -030011014 error->plane[i].size = I915_READ(DSPSIZE(i));
Paulo Zanoni80ca3782013-03-22 14:20:57 -030011015 error->plane[i].pos = I915_READ(DSPPOS(i));
11016 }
Paulo Zanonica291362013-03-06 20:03:14 -030011017 if (INTEL_INFO(dev)->gen <= 7 && !IS_HASWELL(dev))
11018 error->plane[i].addr = I915_READ(DSPADDR(i));
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000011019 if (INTEL_INFO(dev)->gen >= 4) {
11020 error->plane[i].surface = I915_READ(DSPSURF(i));
11021 error->plane[i].tile_offset = I915_READ(DSPTILEOFF(i));
11022 }
11023
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000011024 error->pipe[i].source = I915_READ(PIPESRC(i));
Chris Wilson63b66e52013-08-08 15:12:06 +020011025 }
11026
11027 error->num_transcoders = INTEL_INFO(dev)->num_pipes;
11028 if (HAS_DDI(dev_priv->dev))
11029 error->num_transcoders++; /* Account for eDP. */
11030
11031 for (i = 0; i < error->num_transcoders; i++) {
11032 enum transcoder cpu_transcoder = transcoders[i];
11033
11034 error->transcoder[i].cpu_transcoder = cpu_transcoder;
11035
11036 error->transcoder[i].conf = I915_READ(PIPECONF(cpu_transcoder));
11037 error->transcoder[i].htotal = I915_READ(HTOTAL(cpu_transcoder));
11038 error->transcoder[i].hblank = I915_READ(HBLANK(cpu_transcoder));
11039 error->transcoder[i].hsync = I915_READ(HSYNC(cpu_transcoder));
11040 error->transcoder[i].vtotal = I915_READ(VTOTAL(cpu_transcoder));
11041 error->transcoder[i].vblank = I915_READ(VBLANK(cpu_transcoder));
11042 error->transcoder[i].vsync = I915_READ(VSYNC(cpu_transcoder));
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000011043 }
11044
Paulo Zanoni12d217c2013-05-03 12:15:38 -030011045 /* In the code above we read the registers without checking if the power
11046 * well was on, so here we have to clear the FPGA_DBG_RM_NOCLAIM bit to
11047 * prevent the next I915_WRITE from detecting it and printing an error
11048 * message. */
Chris Wilson907b28c2013-07-19 20:36:52 +010011049 intel_uncore_clear_errors(dev);
Paulo Zanoni12d217c2013-05-03 12:15:38 -030011050
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000011051 return error;
11052}
11053
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030011054#define err_printf(e, ...) i915_error_printf(e, __VA_ARGS__)
11055
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000011056void
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030011057intel_display_print_error_state(struct drm_i915_error_state_buf *m,
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000011058 struct drm_device *dev,
11059 struct intel_display_error_state *error)
11060{
11061 int i;
11062
Chris Wilson63b66e52013-08-08 15:12:06 +020011063 if (!error)
11064 return;
11065
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030011066 err_printf(m, "Num Pipes: %d\n", INTEL_INFO(dev)->num_pipes);
Paulo Zanoniff57f1b2013-05-03 12:15:37 -030011067 if (HAS_POWER_WELL(dev))
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030011068 err_printf(m, "PWR_WELL_CTL2: %08x\n",
Paulo Zanoniff57f1b2013-05-03 12:15:37 -030011069 error->power_well_driver);
Damien Lespiau52331302012-08-15 19:23:25 +010011070 for_each_pipe(i) {
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030011071 err_printf(m, "Pipe [%d]:\n", i);
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030011072 err_printf(m, " SRC: %08x\n", error->pipe[i].source);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000011073
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030011074 err_printf(m, "Plane [%d]:\n", i);
11075 err_printf(m, " CNTR: %08x\n", error->plane[i].control);
11076 err_printf(m, " STRIDE: %08x\n", error->plane[i].stride);
Paulo Zanoni80ca3782013-03-22 14:20:57 -030011077 if (INTEL_INFO(dev)->gen <= 3) {
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030011078 err_printf(m, " SIZE: %08x\n", error->plane[i].size);
11079 err_printf(m, " POS: %08x\n", error->plane[i].pos);
Paulo Zanoni80ca3782013-03-22 14:20:57 -030011080 }
Paulo Zanoni4b71a572013-03-22 14:19:21 -030011081 if (INTEL_INFO(dev)->gen <= 7 && !IS_HASWELL(dev))
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030011082 err_printf(m, " ADDR: %08x\n", error->plane[i].addr);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000011083 if (INTEL_INFO(dev)->gen >= 4) {
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030011084 err_printf(m, " SURF: %08x\n", error->plane[i].surface);
11085 err_printf(m, " TILEOFF: %08x\n", error->plane[i].tile_offset);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000011086 }
11087
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030011088 err_printf(m, "Cursor [%d]:\n", i);
11089 err_printf(m, " CNTR: %08x\n", error->cursor[i].control);
11090 err_printf(m, " POS: %08x\n", error->cursor[i].position);
11091 err_printf(m, " BASE: %08x\n", error->cursor[i].base);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000011092 }
Chris Wilson63b66e52013-08-08 15:12:06 +020011093
11094 for (i = 0; i < error->num_transcoders; i++) {
11095 err_printf(m, " CPU transcoder: %c\n",
11096 transcoder_name(error->transcoder[i].cpu_transcoder));
11097 err_printf(m, " CONF: %08x\n", error->transcoder[i].conf);
11098 err_printf(m, " HTOTAL: %08x\n", error->transcoder[i].htotal);
11099 err_printf(m, " HBLANK: %08x\n", error->transcoder[i].hblank);
11100 err_printf(m, " HSYNC: %08x\n", error->transcoder[i].hsync);
11101 err_printf(m, " VTOTAL: %08x\n", error->transcoder[i].vtotal);
11102 err_printf(m, " VBLANK: %08x\n", error->transcoder[i].vblank);
11103 err_printf(m, " VSYNC: %08x\n", error->transcoder[i].vsync);
11104 }
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000011105}