blob: 537b8a44107dd21b95ebe07e29a9c32506d0a258 [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
Akshay Joshi0206e352011-08-16 15:34:10 -040044bool intel_pipe_has_type(struct drm_crtc *crtc, int type);
Daniel Vetter3dec0092010-08-20 21:40:52 +020045static void intel_increase_pllclock(struct drm_crtc *crtc);
Chris Wilson6b383a72010-09-13 13:54:26 +010046static void intel_crtc_update_cursor(struct drm_crtc *crtc, bool on);
Jesse Barnes79e53942008-11-07 14:24:08 -080047
48typedef struct {
Akshay Joshi0206e352011-08-16 15:34:10 -040049 int min, max;
Jesse Barnes79e53942008-11-07 14:24:08 -080050} intel_range_t;
51
52typedef struct {
Akshay Joshi0206e352011-08-16 15:34:10 -040053 int dot_limit;
54 int p2_slow, p2_fast;
Jesse Barnes79e53942008-11-07 14:24:08 -080055} intel_p2_t;
56
57#define INTEL_P2_NUM 2
Ma Lingd4906092009-03-18 20:13:27 +080058typedef struct intel_limit intel_limit_t;
59struct intel_limit {
Akshay Joshi0206e352011-08-16 15:34:10 -040060 intel_range_t dot, vco, n, m, m1, m2, p, p1;
61 intel_p2_t p2;
Ma Lingd4906092009-03-18 20:13:27 +080062};
Jesse Barnes79e53942008-11-07 14:24:08 -080063
Jesse Barnes2377b742010-07-07 14:06:43 -070064/* FDI */
65#define IRONLAKE_FDI_FREQ 2700000 /* in kHz for mode->clock */
66
Daniel Vetterd2acd212012-10-20 20:57:43 +020067int
68intel_pch_rawclk(struct drm_device *dev)
69{
70 struct drm_i915_private *dev_priv = dev->dev_private;
71
72 WARN_ON(!HAS_PCH_SPLIT(dev));
73
74 return I915_READ(PCH_RAWCLK_FREQ) & RAWCLK_FREQ_MASK;
75}
76
Chris Wilson021357a2010-09-07 20:54:59 +010077static inline u32 /* units of 100MHz */
78intel_fdi_link_freq(struct drm_device *dev)
79{
Chris Wilson8b99e682010-10-13 09:59:17 +010080 if (IS_GEN5(dev)) {
81 struct drm_i915_private *dev_priv = dev->dev_private;
82 return (I915_READ(FDI_PLL_BIOS_0) & FDI_PLL_FB_CLOCK_MASK) + 2;
83 } else
84 return 27;
Chris Wilson021357a2010-09-07 20:54:59 +010085}
86
Keith Packarde4b36692009-06-05 19:22:17 -070087static const intel_limit_t intel_limits_i8xx_dvo = {
Akshay Joshi0206e352011-08-16 15:34:10 -040088 .dot = { .min = 25000, .max = 350000 },
89 .vco = { .min = 930000, .max = 1400000 },
90 .n = { .min = 3, .max = 16 },
91 .m = { .min = 96, .max = 140 },
92 .m1 = { .min = 18, .max = 26 },
93 .m2 = { .min = 6, .max = 16 },
94 .p = { .min = 4, .max = 128 },
95 .p1 = { .min = 2, .max = 33 },
Eric Anholt273e27c2011-03-30 13:01:10 -070096 .p2 = { .dot_limit = 165000,
97 .p2_slow = 4, .p2_fast = 2 },
Keith Packarde4b36692009-06-05 19:22:17 -070098};
99
100static const intel_limit_t intel_limits_i8xx_lvds = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400101 .dot = { .min = 25000, .max = 350000 },
102 .vco = { .min = 930000, .max = 1400000 },
103 .n = { .min = 3, .max = 16 },
104 .m = { .min = 96, .max = 140 },
105 .m1 = { .min = 18, .max = 26 },
106 .m2 = { .min = 6, .max = 16 },
107 .p = { .min = 4, .max = 128 },
108 .p1 = { .min = 1, .max = 6 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700109 .p2 = { .dot_limit = 165000,
110 .p2_slow = 14, .p2_fast = 7 },
Keith Packarde4b36692009-06-05 19:22:17 -0700111};
Eric Anholt273e27c2011-03-30 13:01:10 -0700112
Keith Packarde4b36692009-06-05 19:22:17 -0700113static const intel_limit_t intel_limits_i9xx_sdvo = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400114 .dot = { .min = 20000, .max = 400000 },
115 .vco = { .min = 1400000, .max = 2800000 },
116 .n = { .min = 1, .max = 6 },
117 .m = { .min = 70, .max = 120 },
Patrik Jakobsson4f7dfb62013-02-13 22:20:22 +0100118 .m1 = { .min = 8, .max = 18 },
119 .m2 = { .min = 3, .max = 7 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400120 .p = { .min = 5, .max = 80 },
121 .p1 = { .min = 1, .max = 8 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700122 .p2 = { .dot_limit = 200000,
123 .p2_slow = 10, .p2_fast = 5 },
Keith Packarde4b36692009-06-05 19:22:17 -0700124};
125
126static const intel_limit_t intel_limits_i9xx_lvds = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400127 .dot = { .min = 20000, .max = 400000 },
128 .vco = { .min = 1400000, .max = 2800000 },
129 .n = { .min = 1, .max = 6 },
130 .m = { .min = 70, .max = 120 },
Patrik Jakobsson53a7d2d2013-02-13 22:20:21 +0100131 .m1 = { .min = 8, .max = 18 },
132 .m2 = { .min = 3, .max = 7 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400133 .p = { .min = 7, .max = 98 },
134 .p1 = { .min = 1, .max = 8 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700135 .p2 = { .dot_limit = 112000,
136 .p2_slow = 14, .p2_fast = 7 },
Keith Packarde4b36692009-06-05 19:22:17 -0700137};
138
Eric Anholt273e27c2011-03-30 13:01:10 -0700139
Keith Packarde4b36692009-06-05 19:22:17 -0700140static const intel_limit_t intel_limits_g4x_sdvo = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700141 .dot = { .min = 25000, .max = 270000 },
142 .vco = { .min = 1750000, .max = 3500000},
143 .n = { .min = 1, .max = 4 },
144 .m = { .min = 104, .max = 138 },
145 .m1 = { .min = 17, .max = 23 },
146 .m2 = { .min = 5, .max = 11 },
147 .p = { .min = 10, .max = 30 },
148 .p1 = { .min = 1, .max = 3},
149 .p2 = { .dot_limit = 270000,
150 .p2_slow = 10,
151 .p2_fast = 10
Ma Ling044c7c42009-03-18 20:13:23 +0800152 },
Keith Packarde4b36692009-06-05 19:22:17 -0700153};
154
155static const intel_limit_t intel_limits_g4x_hdmi = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700156 .dot = { .min = 22000, .max = 400000 },
157 .vco = { .min = 1750000, .max = 3500000},
158 .n = { .min = 1, .max = 4 },
159 .m = { .min = 104, .max = 138 },
160 .m1 = { .min = 16, .max = 23 },
161 .m2 = { .min = 5, .max = 11 },
162 .p = { .min = 5, .max = 80 },
163 .p1 = { .min = 1, .max = 8},
164 .p2 = { .dot_limit = 165000,
165 .p2_slow = 10, .p2_fast = 5 },
Keith Packarde4b36692009-06-05 19:22:17 -0700166};
167
168static const intel_limit_t intel_limits_g4x_single_channel_lvds = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700169 .dot = { .min = 20000, .max = 115000 },
170 .vco = { .min = 1750000, .max = 3500000 },
171 .n = { .min = 1, .max = 3 },
172 .m = { .min = 104, .max = 138 },
173 .m1 = { .min = 17, .max = 23 },
174 .m2 = { .min = 5, .max = 11 },
175 .p = { .min = 28, .max = 112 },
176 .p1 = { .min = 2, .max = 8 },
177 .p2 = { .dot_limit = 0,
178 .p2_slow = 14, .p2_fast = 14
Ma Ling044c7c42009-03-18 20:13:23 +0800179 },
Keith Packarde4b36692009-06-05 19:22:17 -0700180};
181
182static const intel_limit_t intel_limits_g4x_dual_channel_lvds = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700183 .dot = { .min = 80000, .max = 224000 },
184 .vco = { .min = 1750000, .max = 3500000 },
185 .n = { .min = 1, .max = 3 },
186 .m = { .min = 104, .max = 138 },
187 .m1 = { .min = 17, .max = 23 },
188 .m2 = { .min = 5, .max = 11 },
189 .p = { .min = 14, .max = 42 },
190 .p1 = { .min = 2, .max = 6 },
191 .p2 = { .dot_limit = 0,
192 .p2_slow = 7, .p2_fast = 7
Ma Ling044c7c42009-03-18 20:13:23 +0800193 },
Keith Packarde4b36692009-06-05 19:22:17 -0700194};
195
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500196static const intel_limit_t intel_limits_pineview_sdvo = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400197 .dot = { .min = 20000, .max = 400000},
198 .vco = { .min = 1700000, .max = 3500000 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700199 /* Pineview's Ncounter is a ring counter */
Akshay Joshi0206e352011-08-16 15:34:10 -0400200 .n = { .min = 3, .max = 6 },
201 .m = { .min = 2, .max = 256 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700202 /* Pineview only has one combined m divider, which we treat as m2. */
Akshay Joshi0206e352011-08-16 15:34:10 -0400203 .m1 = { .min = 0, .max = 0 },
204 .m2 = { .min = 0, .max = 254 },
205 .p = { .min = 5, .max = 80 },
206 .p1 = { .min = 1, .max = 8 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700207 .p2 = { .dot_limit = 200000,
208 .p2_slow = 10, .p2_fast = 5 },
Keith Packarde4b36692009-06-05 19:22:17 -0700209};
210
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500211static const intel_limit_t intel_limits_pineview_lvds = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400212 .dot = { .min = 20000, .max = 400000 },
213 .vco = { .min = 1700000, .max = 3500000 },
214 .n = { .min = 3, .max = 6 },
215 .m = { .min = 2, .max = 256 },
216 .m1 = { .min = 0, .max = 0 },
217 .m2 = { .min = 0, .max = 254 },
218 .p = { .min = 7, .max = 112 },
219 .p1 = { .min = 1, .max = 8 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700220 .p2 = { .dot_limit = 112000,
221 .p2_slow = 14, .p2_fast = 14 },
Keith Packarde4b36692009-06-05 19:22:17 -0700222};
223
Eric Anholt273e27c2011-03-30 13:01:10 -0700224/* Ironlake / Sandybridge
225 *
226 * We calculate clock using (register_value + 2) for N/M1/M2, so here
227 * the range value for them is (actual_value - 2).
228 */
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800229static const intel_limit_t intel_limits_ironlake_dac = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700230 .dot = { .min = 25000, .max = 350000 },
231 .vco = { .min = 1760000, .max = 3510000 },
232 .n = { .min = 1, .max = 5 },
233 .m = { .min = 79, .max = 127 },
234 .m1 = { .min = 12, .max = 22 },
235 .m2 = { .min = 5, .max = 9 },
236 .p = { .min = 5, .max = 80 },
237 .p1 = { .min = 1, .max = 8 },
238 .p2 = { .dot_limit = 225000,
239 .p2_slow = 10, .p2_fast = 5 },
Keith Packarde4b36692009-06-05 19:22:17 -0700240};
241
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800242static const intel_limit_t intel_limits_ironlake_single_lvds = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700243 .dot = { .min = 25000, .max = 350000 },
244 .vco = { .min = 1760000, .max = 3510000 },
245 .n = { .min = 1, .max = 3 },
246 .m = { .min = 79, .max = 118 },
247 .m1 = { .min = 12, .max = 22 },
248 .m2 = { .min = 5, .max = 9 },
249 .p = { .min = 28, .max = 112 },
250 .p1 = { .min = 2, .max = 8 },
251 .p2 = { .dot_limit = 225000,
252 .p2_slow = 14, .p2_fast = 14 },
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800253};
254
255static const intel_limit_t intel_limits_ironlake_dual_lvds = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700256 .dot = { .min = 25000, .max = 350000 },
257 .vco = { .min = 1760000, .max = 3510000 },
258 .n = { .min = 1, .max = 3 },
259 .m = { .min = 79, .max = 127 },
260 .m1 = { .min = 12, .max = 22 },
261 .m2 = { .min = 5, .max = 9 },
262 .p = { .min = 14, .max = 56 },
263 .p1 = { .min = 2, .max = 8 },
264 .p2 = { .dot_limit = 225000,
265 .p2_slow = 7, .p2_fast = 7 },
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800266};
267
Eric Anholt273e27c2011-03-30 13:01:10 -0700268/* LVDS 100mhz refclk limits. */
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800269static const intel_limit_t intel_limits_ironlake_single_lvds_100m = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700270 .dot = { .min = 25000, .max = 350000 },
271 .vco = { .min = 1760000, .max = 3510000 },
272 .n = { .min = 1, .max = 2 },
273 .m = { .min = 79, .max = 126 },
274 .m1 = { .min = 12, .max = 22 },
275 .m2 = { .min = 5, .max = 9 },
276 .p = { .min = 28, .max = 112 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400277 .p1 = { .min = 2, .max = 8 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700278 .p2 = { .dot_limit = 225000,
279 .p2_slow = 14, .p2_fast = 14 },
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800280};
281
282static const intel_limit_t intel_limits_ironlake_dual_lvds_100m = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700283 .dot = { .min = 25000, .max = 350000 },
284 .vco = { .min = 1760000, .max = 3510000 },
285 .n = { .min = 1, .max = 3 },
286 .m = { .min = 79, .max = 126 },
287 .m1 = { .min = 12, .max = 22 },
288 .m2 = { .min = 5, .max = 9 },
289 .p = { .min = 14, .max = 42 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400290 .p1 = { .min = 2, .max = 6 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700291 .p2 = { .dot_limit = 225000,
292 .p2_slow = 7, .p2_fast = 7 },
Zhao Yakui45476682009-12-31 16:06:04 +0800293};
294
Jesse Barnesa0c4da22012-06-15 11:55:13 -0700295static const intel_limit_t intel_limits_vlv_dac = {
296 .dot = { .min = 25000, .max = 270000 },
297 .vco = { .min = 4000000, .max = 6000000 },
298 .n = { .min = 1, .max = 7 },
299 .m = { .min = 22, .max = 450 }, /* guess */
300 .m1 = { .min = 2, .max = 3 },
301 .m2 = { .min = 11, .max = 156 },
302 .p = { .min = 10, .max = 30 },
Daniel Vetter75e53982013-04-18 21:10:43 +0200303 .p1 = { .min = 1, .max = 3 },
Jesse Barnesa0c4da22012-06-15 11:55:13 -0700304 .p2 = { .dot_limit = 270000,
305 .p2_slow = 2, .p2_fast = 20 },
Jesse Barnesa0c4da22012-06-15 11:55:13 -0700306};
307
308static const intel_limit_t intel_limits_vlv_hdmi = {
Daniel Vetter75e53982013-04-18 21:10:43 +0200309 .dot = { .min = 25000, .max = 270000 },
310 .vco = { .min = 4000000, .max = 6000000 },
Jesse Barnesa0c4da22012-06-15 11:55:13 -0700311 .n = { .min = 1, .max = 7 },
312 .m = { .min = 60, .max = 300 }, /* guess */
313 .m1 = { .min = 2, .max = 3 },
314 .m2 = { .min = 11, .max = 156 },
315 .p = { .min = 10, .max = 30 },
316 .p1 = { .min = 2, .max = 3 },
317 .p2 = { .dot_limit = 270000,
318 .p2_slow = 2, .p2_fast = 20 },
Jesse Barnesa0c4da22012-06-15 11:55:13 -0700319};
320
321static const intel_limit_t intel_limits_vlv_dp = {
Vijay Purushothaman74a4dd22012-09-27 19:13:04 +0530322 .dot = { .min = 25000, .max = 270000 },
323 .vco = { .min = 4000000, .max = 6000000 },
Jesse Barnesa0c4da22012-06-15 11:55:13 -0700324 .n = { .min = 1, .max = 7 },
Vijay Purushothaman74a4dd22012-09-27 19:13:04 +0530325 .m = { .min = 22, .max = 450 },
Jesse Barnesa0c4da22012-06-15 11:55:13 -0700326 .m1 = { .min = 2, .max = 3 },
327 .m2 = { .min = 11, .max = 156 },
328 .p = { .min = 10, .max = 30 },
Daniel Vetter75e53982013-04-18 21:10:43 +0200329 .p1 = { .min = 1, .max = 3 },
Jesse Barnesa0c4da22012-06-15 11:55:13 -0700330 .p2 = { .dot_limit = 270000,
331 .p2_slow = 2, .p2_fast = 20 },
Jesse Barnesa0c4da22012-06-15 11:55:13 -0700332};
333
Chris Wilson1b894b52010-12-14 20:04:54 +0000334static const intel_limit_t *intel_ironlake_limit(struct drm_crtc *crtc,
335 int refclk)
Zhenyu Wang2c072452009-06-05 15:38:42 +0800336{
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800337 struct drm_device *dev = crtc->dev;
Zhenyu Wang2c072452009-06-05 15:38:42 +0800338 const intel_limit_t *limit;
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800339
340 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
Daniel Vetter1974cad2012-11-26 17:22:09 +0100341 if (intel_is_dual_link_lvds(dev)) {
Chris Wilson1b894b52010-12-14 20:04:54 +0000342 if (refclk == 100000)
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800343 limit = &intel_limits_ironlake_dual_lvds_100m;
344 else
345 limit = &intel_limits_ironlake_dual_lvds;
346 } else {
Chris Wilson1b894b52010-12-14 20:04:54 +0000347 if (refclk == 100000)
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800348 limit = &intel_limits_ironlake_single_lvds_100m;
349 else
350 limit = &intel_limits_ironlake_single_lvds;
351 }
Daniel Vetterc6bb3532013-04-19 11:14:33 +0200352 } else
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800353 limit = &intel_limits_ironlake_dac;
Zhenyu Wang2c072452009-06-05 15:38:42 +0800354
355 return limit;
356}
357
Ma Ling044c7c42009-03-18 20:13:23 +0800358static const intel_limit_t *intel_g4x_limit(struct drm_crtc *crtc)
359{
360 struct drm_device *dev = crtc->dev;
Ma Ling044c7c42009-03-18 20:13:23 +0800361 const intel_limit_t *limit;
362
363 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
Daniel Vetter1974cad2012-11-26 17:22:09 +0100364 if (intel_is_dual_link_lvds(dev))
Keith Packarde4b36692009-06-05 19:22:17 -0700365 limit = &intel_limits_g4x_dual_channel_lvds;
Ma Ling044c7c42009-03-18 20:13:23 +0800366 else
Keith Packarde4b36692009-06-05 19:22:17 -0700367 limit = &intel_limits_g4x_single_channel_lvds;
Ma Ling044c7c42009-03-18 20:13:23 +0800368 } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI) ||
369 intel_pipe_has_type(crtc, INTEL_OUTPUT_ANALOG)) {
Keith Packarde4b36692009-06-05 19:22:17 -0700370 limit = &intel_limits_g4x_hdmi;
Ma Ling044c7c42009-03-18 20:13:23 +0800371 } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_SDVO)) {
Keith Packarde4b36692009-06-05 19:22:17 -0700372 limit = &intel_limits_g4x_sdvo;
Ma Ling044c7c42009-03-18 20:13:23 +0800373 } else /* The option is for other outputs */
Keith Packarde4b36692009-06-05 19:22:17 -0700374 limit = &intel_limits_i9xx_sdvo;
Ma Ling044c7c42009-03-18 20:13:23 +0800375
376 return limit;
377}
378
Chris Wilson1b894b52010-12-14 20:04:54 +0000379static const intel_limit_t *intel_limit(struct drm_crtc *crtc, int refclk)
Jesse Barnes79e53942008-11-07 14:24:08 -0800380{
381 struct drm_device *dev = crtc->dev;
382 const intel_limit_t *limit;
383
Eric Anholtbad720f2009-10-22 16:11:14 -0700384 if (HAS_PCH_SPLIT(dev))
Chris Wilson1b894b52010-12-14 20:04:54 +0000385 limit = intel_ironlake_limit(crtc, refclk);
Zhenyu Wang2c072452009-06-05 15:38:42 +0800386 else if (IS_G4X(dev)) {
Ma Ling044c7c42009-03-18 20:13:23 +0800387 limit = intel_g4x_limit(crtc);
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500388 } else if (IS_PINEVIEW(dev)) {
Shaohua Li21778322009-02-23 15:19:16 +0800389 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS))
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500390 limit = &intel_limits_pineview_lvds;
Shaohua Li21778322009-02-23 15:19:16 +0800391 else
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500392 limit = &intel_limits_pineview_sdvo;
Jesse Barnesa0c4da22012-06-15 11:55:13 -0700393 } else if (IS_VALLEYVIEW(dev)) {
394 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_ANALOG))
395 limit = &intel_limits_vlv_dac;
396 else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI))
397 limit = &intel_limits_vlv_hdmi;
398 else
399 limit = &intel_limits_vlv_dp;
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100400 } else if (!IS_GEN2(dev)) {
401 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS))
402 limit = &intel_limits_i9xx_lvds;
403 else
404 limit = &intel_limits_i9xx_sdvo;
Jesse Barnes79e53942008-11-07 14:24:08 -0800405 } else {
406 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS))
Keith Packarde4b36692009-06-05 19:22:17 -0700407 limit = &intel_limits_i8xx_lvds;
Jesse Barnes79e53942008-11-07 14:24:08 -0800408 else
Keith Packarde4b36692009-06-05 19:22:17 -0700409 limit = &intel_limits_i8xx_dvo;
Jesse Barnes79e53942008-11-07 14:24:08 -0800410 }
411 return limit;
412}
413
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500414/* m1 is reserved as 0 in Pineview, n is a ring counter */
415static void pineview_clock(int refclk, intel_clock_t *clock)
Jesse Barnes79e53942008-11-07 14:24:08 -0800416{
Shaohua Li21778322009-02-23 15:19:16 +0800417 clock->m = clock->m2 + 2;
418 clock->p = clock->p1 * clock->p2;
419 clock->vco = refclk * clock->m / clock->n;
420 clock->dot = clock->vco / clock->p;
421}
422
Daniel Vetter7429e9d2013-04-20 17:19:46 +0200423static uint32_t i9xx_dpll_compute_m(struct dpll *dpll)
424{
425 return 5 * (dpll->m1 + 2) + (dpll->m2 + 2);
426}
427
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200428static void i9xx_clock(int refclk, intel_clock_t *clock)
Shaohua Li21778322009-02-23 15:19:16 +0800429{
Daniel Vetter7429e9d2013-04-20 17:19:46 +0200430 clock->m = i9xx_dpll_compute_m(clock);
Jesse Barnes79e53942008-11-07 14:24:08 -0800431 clock->p = clock->p1 * clock->p2;
432 clock->vco = refclk * clock->m / (clock->n + 2);
433 clock->dot = clock->vco / clock->p;
434}
435
Jesse Barnes79e53942008-11-07 14:24:08 -0800436/**
437 * Returns whether any output on the specified pipe is of the specified type
438 */
Chris Wilson4ef69c72010-09-09 15:14:28 +0100439bool intel_pipe_has_type(struct drm_crtc *crtc, int type)
Jesse Barnes79e53942008-11-07 14:24:08 -0800440{
Chris Wilson4ef69c72010-09-09 15:14:28 +0100441 struct drm_device *dev = crtc->dev;
Chris Wilson4ef69c72010-09-09 15:14:28 +0100442 struct intel_encoder *encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -0800443
Daniel Vetter6c2b7c122012-07-05 09:50:24 +0200444 for_each_encoder_on_crtc(dev, crtc, encoder)
445 if (encoder->type == type)
Chris Wilson4ef69c72010-09-09 15:14:28 +0100446 return true;
447
448 return false;
Jesse Barnes79e53942008-11-07 14:24:08 -0800449}
450
Jesse Barnes7c04d1d2009-02-23 15:36:40 -0800451#define INTELPllInvalid(s) do { /* DRM_DEBUG(s); */ return false; } while (0)
Jesse Barnes79e53942008-11-07 14:24:08 -0800452/**
453 * Returns whether the given set of divisors are valid for a given refclk with
454 * the given connectors.
455 */
456
Chris Wilson1b894b52010-12-14 20:04:54 +0000457static bool intel_PLL_is_valid(struct drm_device *dev,
458 const intel_limit_t *limit,
459 const intel_clock_t *clock)
Jesse Barnes79e53942008-11-07 14:24:08 -0800460{
Jesse Barnes79e53942008-11-07 14:24:08 -0800461 if (clock->p1 < limit->p1.min || limit->p1.max < clock->p1)
Akshay Joshi0206e352011-08-16 15:34:10 -0400462 INTELPllInvalid("p1 out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800463 if (clock->p < limit->p.min || limit->p.max < clock->p)
Akshay Joshi0206e352011-08-16 15:34:10 -0400464 INTELPllInvalid("p out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800465 if (clock->m2 < limit->m2.min || limit->m2.max < clock->m2)
Akshay Joshi0206e352011-08-16 15:34:10 -0400466 INTELPllInvalid("m2 out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800467 if (clock->m1 < limit->m1.min || limit->m1.max < clock->m1)
Akshay Joshi0206e352011-08-16 15:34:10 -0400468 INTELPllInvalid("m1 out of range\n");
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500469 if (clock->m1 <= clock->m2 && !IS_PINEVIEW(dev))
Akshay Joshi0206e352011-08-16 15:34:10 -0400470 INTELPllInvalid("m1 <= m2\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800471 if (clock->m < limit->m.min || limit->m.max < clock->m)
Akshay Joshi0206e352011-08-16 15:34:10 -0400472 INTELPllInvalid("m out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800473 if (clock->n < limit->n.min || limit->n.max < clock->n)
Akshay Joshi0206e352011-08-16 15:34:10 -0400474 INTELPllInvalid("n out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800475 if (clock->vco < limit->vco.min || limit->vco.max < clock->vco)
Akshay Joshi0206e352011-08-16 15:34:10 -0400476 INTELPllInvalid("vco out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800477 /* XXX: We may need to be checking "Dot clock" depending on the multiplier,
478 * connector, etc., rather than just a single range.
479 */
480 if (clock->dot < limit->dot.min || limit->dot.max < clock->dot)
Akshay Joshi0206e352011-08-16 15:34:10 -0400481 INTELPllInvalid("dot out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800482
483 return true;
484}
485
Ma Lingd4906092009-03-18 20:13:27 +0800486static bool
Daniel Vetteree9300b2013-06-03 22:40:22 +0200487i9xx_find_best_dpll(const intel_limit_t *limit, struct drm_crtc *crtc,
Sean Paulcec2f352012-01-10 15:09:36 -0800488 int target, int refclk, intel_clock_t *match_clock,
489 intel_clock_t *best_clock)
Jesse Barnes79e53942008-11-07 14:24:08 -0800490{
491 struct drm_device *dev = crtc->dev;
Jesse Barnes79e53942008-11-07 14:24:08 -0800492 intel_clock_t clock;
Jesse Barnes79e53942008-11-07 14:24:08 -0800493 int err = target;
494
Daniel Vettera210b022012-11-26 17:22:08 +0100495 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
Jesse Barnes79e53942008-11-07 14:24:08 -0800496 /*
Daniel Vettera210b022012-11-26 17:22:08 +0100497 * For LVDS just rely on its current settings for dual-channel.
498 * We haven't figured out how to reliably set up different
499 * single/dual channel state, if we even can.
Jesse Barnes79e53942008-11-07 14:24:08 -0800500 */
Daniel Vetter1974cad2012-11-26 17:22:09 +0100501 if (intel_is_dual_link_lvds(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -0800502 clock.p2 = limit->p2.p2_fast;
503 else
504 clock.p2 = limit->p2.p2_slow;
505 } else {
506 if (target < limit->p2.dot_limit)
507 clock.p2 = limit->p2.p2_slow;
508 else
509 clock.p2 = limit->p2.p2_fast;
510 }
511
Akshay Joshi0206e352011-08-16 15:34:10 -0400512 memset(best_clock, 0, sizeof(*best_clock));
Jesse Barnes79e53942008-11-07 14:24:08 -0800513
Zhao Yakui42158662009-11-20 11:24:18 +0800514 for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max;
515 clock.m1++) {
516 for (clock.m2 = limit->m2.min;
517 clock.m2 <= limit->m2.max; clock.m2++) {
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500518 /* m1 is always 0 in Pineview */
519 if (clock.m2 >= clock.m1 && !IS_PINEVIEW(dev))
Zhao Yakui42158662009-11-20 11:24:18 +0800520 break;
521 for (clock.n = limit->n.min;
522 clock.n <= limit->n.max; clock.n++) {
523 for (clock.p1 = limit->p1.min;
524 clock.p1 <= limit->p1.max; clock.p1++) {
Jesse Barnes79e53942008-11-07 14:24:08 -0800525 int this_err;
526
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200527 i9xx_clock(refclk, &clock);
528 if (!intel_PLL_is_valid(dev, limit,
529 &clock))
530 continue;
531 if (match_clock &&
532 clock.p != match_clock->p)
533 continue;
534
535 this_err = abs(clock.dot - target);
536 if (this_err < err) {
537 *best_clock = clock;
538 err = this_err;
539 }
540 }
541 }
542 }
543 }
544
545 return (err != target);
546}
547
548static bool
Daniel Vetteree9300b2013-06-03 22:40:22 +0200549pnv_find_best_dpll(const intel_limit_t *limit, struct drm_crtc *crtc,
550 int target, int refclk, intel_clock_t *match_clock,
551 intel_clock_t *best_clock)
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200552{
553 struct drm_device *dev = crtc->dev;
554 intel_clock_t clock;
555 int err = target;
556
557 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
558 /*
559 * For LVDS just rely on its current settings for dual-channel.
560 * We haven't figured out how to reliably set up different
561 * single/dual channel state, if we even can.
562 */
563 if (intel_is_dual_link_lvds(dev))
564 clock.p2 = limit->p2.p2_fast;
565 else
566 clock.p2 = limit->p2.p2_slow;
567 } else {
568 if (target < limit->p2.dot_limit)
569 clock.p2 = limit->p2.p2_slow;
570 else
571 clock.p2 = limit->p2.p2_fast;
572 }
573
574 memset(best_clock, 0, sizeof(*best_clock));
575
576 for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max;
577 clock.m1++) {
578 for (clock.m2 = limit->m2.min;
579 clock.m2 <= limit->m2.max; clock.m2++) {
580 /* m1 is always 0 in Pineview */
581 if (clock.m2 >= clock.m1 && !IS_PINEVIEW(dev))
582 break;
583 for (clock.n = limit->n.min;
584 clock.n <= limit->n.max; clock.n++) {
585 for (clock.p1 = limit->p1.min;
586 clock.p1 <= limit->p1.max; clock.p1++) {
587 int this_err;
588
589 pineview_clock(refclk, &clock);
Chris Wilson1b894b52010-12-14 20:04:54 +0000590 if (!intel_PLL_is_valid(dev, limit,
591 &clock))
Jesse Barnes79e53942008-11-07 14:24:08 -0800592 continue;
Sean Paulcec2f352012-01-10 15:09:36 -0800593 if (match_clock &&
594 clock.p != match_clock->p)
595 continue;
Jesse Barnes79e53942008-11-07 14:24:08 -0800596
597 this_err = abs(clock.dot - target);
598 if (this_err < err) {
599 *best_clock = clock;
600 err = this_err;
601 }
602 }
603 }
604 }
605 }
606
607 return (err != target);
608}
609
Ma Lingd4906092009-03-18 20:13:27 +0800610static bool
Daniel Vetteree9300b2013-06-03 22:40:22 +0200611g4x_find_best_dpll(const intel_limit_t *limit, struct drm_crtc *crtc,
612 int target, int refclk, intel_clock_t *match_clock,
613 intel_clock_t *best_clock)
Ma Lingd4906092009-03-18 20:13:27 +0800614{
615 struct drm_device *dev = crtc->dev;
Ma Lingd4906092009-03-18 20:13:27 +0800616 intel_clock_t clock;
617 int max_n;
618 bool found;
Adam Jackson6ba770d2010-07-02 16:43:30 -0400619 /* approximately equals target * 0.00585 */
620 int err_most = (target >> 8) + (target >> 9);
Ma Lingd4906092009-03-18 20:13:27 +0800621 found = false;
622
623 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
Daniel Vetter1974cad2012-11-26 17:22:09 +0100624 if (intel_is_dual_link_lvds(dev))
Ma Lingd4906092009-03-18 20:13:27 +0800625 clock.p2 = limit->p2.p2_fast;
626 else
627 clock.p2 = limit->p2.p2_slow;
628 } else {
629 if (target < limit->p2.dot_limit)
630 clock.p2 = limit->p2.p2_slow;
631 else
632 clock.p2 = limit->p2.p2_fast;
633 }
634
635 memset(best_clock, 0, sizeof(*best_clock));
636 max_n = limit->n.max;
Gilles Espinassef77f13e2010-03-29 15:41:47 +0200637 /* based on hardware requirement, prefer smaller n to precision */
Ma Lingd4906092009-03-18 20:13:27 +0800638 for (clock.n = limit->n.min; clock.n <= max_n; clock.n++) {
Gilles Espinassef77f13e2010-03-29 15:41:47 +0200639 /* based on hardware requirement, prefere larger m1,m2 */
Ma Lingd4906092009-03-18 20:13:27 +0800640 for (clock.m1 = limit->m1.max;
641 clock.m1 >= limit->m1.min; clock.m1--) {
642 for (clock.m2 = limit->m2.max;
643 clock.m2 >= limit->m2.min; clock.m2--) {
644 for (clock.p1 = limit->p1.max;
645 clock.p1 >= limit->p1.min; clock.p1--) {
646 int this_err;
647
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200648 i9xx_clock(refclk, &clock);
Chris Wilson1b894b52010-12-14 20:04:54 +0000649 if (!intel_PLL_is_valid(dev, limit,
650 &clock))
Ma Lingd4906092009-03-18 20:13:27 +0800651 continue;
Chris Wilson1b894b52010-12-14 20:04:54 +0000652
653 this_err = abs(clock.dot - target);
Ma Lingd4906092009-03-18 20:13:27 +0800654 if (this_err < err_most) {
655 *best_clock = clock;
656 err_most = this_err;
657 max_n = clock.n;
658 found = true;
659 }
660 }
661 }
662 }
663 }
Zhenyu Wang2c072452009-06-05 15:38:42 +0800664 return found;
665}
Ma Lingd4906092009-03-18 20:13:27 +0800666
Zhenyu Wang2c072452009-06-05 15:38:42 +0800667static bool
Daniel Vetteree9300b2013-06-03 22:40:22 +0200668vlv_find_best_dpll(const intel_limit_t *limit, struct drm_crtc *crtc,
669 int target, int refclk, intel_clock_t *match_clock,
670 intel_clock_t *best_clock)
Jesse Barnesa0c4da22012-06-15 11:55:13 -0700671{
672 u32 p1, p2, m1, m2, vco, bestn, bestm1, bestm2, bestp1, bestp2;
673 u32 m, n, fastclk;
674 u32 updrate, minupdate, fracbits, p;
675 unsigned long bestppm, ppm, absppm;
676 int dotclk, flag;
677
Alan Coxaf447bd2012-07-25 13:49:18 +0100678 flag = 0;
Jesse Barnesa0c4da22012-06-15 11:55:13 -0700679 dotclk = target * 1000;
680 bestppm = 1000000;
681 ppm = absppm = 0;
682 fastclk = dotclk / (2*100);
683 updrate = 0;
684 minupdate = 19200;
685 fracbits = 1;
686 n = p = p1 = p2 = m = m1 = m2 = vco = bestn = 0;
687 bestm1 = bestm2 = bestp1 = bestp2 = 0;
688
689 /* based on hardware requirement, prefer smaller n to precision */
690 for (n = limit->n.min; n <= ((refclk) / minupdate); n++) {
691 updrate = refclk / n;
692 for (p1 = limit->p1.max; p1 > limit->p1.min; p1--) {
693 for (p2 = limit->p2.p2_fast+1; p2 > 0; p2--) {
694 if (p2 > 10)
695 p2 = p2 - 1;
696 p = p1 * p2;
697 /* based on hardware requirement, prefer bigger m1,m2 values */
698 for (m1 = limit->m1.min; m1 <= limit->m1.max; m1++) {
699 m2 = (((2*(fastclk * p * n / m1 )) +
700 refclk) / (2*refclk));
701 m = m1 * m2;
702 vco = updrate * m;
703 if (vco >= limit->vco.min && vco < limit->vco.max) {
704 ppm = 1000000 * ((vco / p) - fastclk) / fastclk;
705 absppm = (ppm > 0) ? ppm : (-ppm);
706 if (absppm < 100 && ((p1 * p2) > (bestp1 * bestp2))) {
707 bestppm = 0;
708 flag = 1;
709 }
710 if (absppm < bestppm - 10) {
711 bestppm = absppm;
712 flag = 1;
713 }
714 if (flag) {
715 bestn = n;
716 bestm1 = m1;
717 bestm2 = m2;
718 bestp1 = p1;
719 bestp2 = p2;
720 flag = 0;
721 }
722 }
723 }
724 }
725 }
726 }
727 best_clock->n = bestn;
728 best_clock->m1 = bestm1;
729 best_clock->m2 = bestm2;
730 best_clock->p1 = bestp1;
731 best_clock->p2 = bestp2;
732
733 return true;
734}
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700735
Paulo Zanonia5c961d2012-10-24 15:59:34 -0200736enum transcoder intel_pipe_to_cpu_transcoder(struct drm_i915_private *dev_priv,
737 enum pipe pipe)
738{
739 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
740 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
741
Daniel Vetter3b117c82013-04-17 20:15:07 +0200742 return intel_crtc->config.cpu_transcoder;
Paulo Zanonia5c961d2012-10-24 15:59:34 -0200743}
744
Paulo Zanonia928d532012-05-04 17:18:15 -0300745static void ironlake_wait_for_vblank(struct drm_device *dev, int pipe)
746{
747 struct drm_i915_private *dev_priv = dev->dev_private;
748 u32 frame, frame_reg = PIPEFRAME(pipe);
749
750 frame = I915_READ(frame_reg);
751
752 if (wait_for(I915_READ_NOTRACE(frame_reg) != frame, 50))
753 DRM_DEBUG_KMS("vblank wait timed out\n");
754}
755
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700756/**
757 * intel_wait_for_vblank - wait for vblank on a given pipe
758 * @dev: drm device
759 * @pipe: pipe to wait for
760 *
761 * Wait for vblank to occur on a given pipe. Needed for various bits of
762 * mode setting code.
763 */
764void intel_wait_for_vblank(struct drm_device *dev, int pipe)
Jesse Barnes79e53942008-11-07 14:24:08 -0800765{
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700766 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800767 int pipestat_reg = PIPESTAT(pipe);
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700768
Paulo Zanonia928d532012-05-04 17:18:15 -0300769 if (INTEL_INFO(dev)->gen >= 5) {
770 ironlake_wait_for_vblank(dev, pipe);
771 return;
772 }
773
Chris Wilson300387c2010-09-05 20:25:43 +0100774 /* Clear existing vblank status. Note this will clear any other
775 * sticky status fields as well.
776 *
777 * This races with i915_driver_irq_handler() with the result
778 * that either function could miss a vblank event. Here it is not
779 * fatal, as we will either wait upon the next vblank interrupt or
780 * timeout. Generally speaking intel_wait_for_vblank() is only
781 * called during modeset at which time the GPU should be idle and
782 * should *not* be performing page flips and thus not waiting on
783 * vblanks...
784 * Currently, the result of us stealing a vblank from the irq
785 * handler is that a single frame will be skipped during swapbuffers.
786 */
787 I915_WRITE(pipestat_reg,
788 I915_READ(pipestat_reg) | PIPE_VBLANK_INTERRUPT_STATUS);
789
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700790 /* Wait for vblank interrupt bit to set */
Chris Wilson481b6af2010-08-23 17:43:35 +0100791 if (wait_for(I915_READ(pipestat_reg) &
792 PIPE_VBLANK_INTERRUPT_STATUS,
793 50))
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700794 DRM_DEBUG_KMS("vblank wait timed out\n");
795}
796
Keith Packardab7ad7f2010-10-03 00:33:06 -0700797/*
798 * intel_wait_for_pipe_off - wait for pipe to turn off
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700799 * @dev: drm device
800 * @pipe: pipe to wait for
801 *
802 * After disabling a pipe, we can't wait for vblank in the usual way,
803 * spinning on the vblank interrupt status bit, since we won't actually
804 * see an interrupt when the pipe is disabled.
805 *
Keith Packardab7ad7f2010-10-03 00:33:06 -0700806 * On Gen4 and above:
807 * wait for the pipe register state bit to turn off
808 *
809 * Otherwise:
810 * wait for the display line value to settle (it usually
811 * ends up stopping at the start of the next frame).
Chris Wilson58e10eb2010-10-03 10:56:11 +0100812 *
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700813 */
Chris Wilson58e10eb2010-10-03 10:56:11 +0100814void intel_wait_for_pipe_off(struct drm_device *dev, int pipe)
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700815{
816 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni702e7a52012-10-23 18:29:59 -0200817 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
818 pipe);
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700819
Keith Packardab7ad7f2010-10-03 00:33:06 -0700820 if (INTEL_INFO(dev)->gen >= 4) {
Paulo Zanoni702e7a52012-10-23 18:29:59 -0200821 int reg = PIPECONF(cpu_transcoder);
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700822
Keith Packardab7ad7f2010-10-03 00:33:06 -0700823 /* Wait for the Pipe State to go off */
Chris Wilson58e10eb2010-10-03 10:56:11 +0100824 if (wait_for((I915_READ(reg) & I965_PIPECONF_ACTIVE) == 0,
825 100))
Daniel Vetter284637d2012-07-09 09:51:57 +0200826 WARN(1, "pipe_off wait timed out\n");
Keith Packardab7ad7f2010-10-03 00:33:06 -0700827 } else {
Paulo Zanoni837ba002012-05-04 17:18:14 -0300828 u32 last_line, line_mask;
Chris Wilson58e10eb2010-10-03 10:56:11 +0100829 int reg = PIPEDSL(pipe);
Keith Packardab7ad7f2010-10-03 00:33:06 -0700830 unsigned long timeout = jiffies + msecs_to_jiffies(100);
831
Paulo Zanoni837ba002012-05-04 17:18:14 -0300832 if (IS_GEN2(dev))
833 line_mask = DSL_LINEMASK_GEN2;
834 else
835 line_mask = DSL_LINEMASK_GEN3;
836
Keith Packardab7ad7f2010-10-03 00:33:06 -0700837 /* Wait for the display line to settle */
838 do {
Paulo Zanoni837ba002012-05-04 17:18:14 -0300839 last_line = I915_READ(reg) & line_mask;
Keith Packardab7ad7f2010-10-03 00:33:06 -0700840 mdelay(5);
Paulo Zanoni837ba002012-05-04 17:18:14 -0300841 } while (((I915_READ(reg) & line_mask) != last_line) &&
Keith Packardab7ad7f2010-10-03 00:33:06 -0700842 time_after(timeout, jiffies));
843 if (time_after(jiffies, timeout))
Daniel Vetter284637d2012-07-09 09:51:57 +0200844 WARN(1, "pipe_off wait timed out\n");
Keith Packardab7ad7f2010-10-03 00:33:06 -0700845 }
Jesse Barnes79e53942008-11-07 14:24:08 -0800846}
847
Damien Lespiaub0ea7d32012-12-13 16:09:00 +0000848/*
849 * ibx_digital_port_connected - is the specified port connected?
850 * @dev_priv: i915 private structure
851 * @port: the port to test
852 *
853 * Returns true if @port is connected, false otherwise.
854 */
855bool ibx_digital_port_connected(struct drm_i915_private *dev_priv,
856 struct intel_digital_port *port)
857{
858 u32 bit;
859
Damien Lespiauc36346e2012-12-13 16:09:03 +0000860 if (HAS_PCH_IBX(dev_priv->dev)) {
861 switch(port->port) {
862 case PORT_B:
863 bit = SDE_PORTB_HOTPLUG;
864 break;
865 case PORT_C:
866 bit = SDE_PORTC_HOTPLUG;
867 break;
868 case PORT_D:
869 bit = SDE_PORTD_HOTPLUG;
870 break;
871 default:
872 return true;
873 }
874 } else {
875 switch(port->port) {
876 case PORT_B:
877 bit = SDE_PORTB_HOTPLUG_CPT;
878 break;
879 case PORT_C:
880 bit = SDE_PORTC_HOTPLUG_CPT;
881 break;
882 case PORT_D:
883 bit = SDE_PORTD_HOTPLUG_CPT;
884 break;
885 default:
886 return true;
887 }
Damien Lespiaub0ea7d32012-12-13 16:09:00 +0000888 }
889
890 return I915_READ(SDEISR) & bit;
891}
892
Jesse Barnesb24e7172011-01-04 15:09:30 -0800893static const char *state_string(bool enabled)
894{
895 return enabled ? "on" : "off";
896}
897
898/* Only for pre-ILK configs */
899static void assert_pll(struct drm_i915_private *dev_priv,
900 enum pipe pipe, bool state)
901{
902 int reg;
903 u32 val;
904 bool cur_state;
905
906 reg = DPLL(pipe);
907 val = I915_READ(reg);
908 cur_state = !!(val & DPLL_VCO_ENABLE);
909 WARN(cur_state != state,
910 "PLL state assertion failure (expected %s, current %s)\n",
911 state_string(state), state_string(cur_state));
912}
913#define assert_pll_enabled(d, p) assert_pll(d, p, true)
914#define assert_pll_disabled(d, p) assert_pll(d, p, false)
915
Jesse Barnes040484a2011-01-03 12:14:26 -0800916/* For ILK+ */
917static void assert_pch_pll(struct drm_i915_private *dev_priv,
Chris Wilson92b27b02012-05-20 18:10:50 +0100918 struct intel_pch_pll *pll,
919 struct intel_crtc *crtc,
920 bool state)
Jesse Barnes040484a2011-01-03 12:14:26 -0800921{
Jesse Barnes040484a2011-01-03 12:14:26 -0800922 u32 val;
923 bool cur_state;
924
Eugeni Dodonov9d82aa12012-05-09 15:37:17 -0300925 if (HAS_PCH_LPT(dev_priv->dev)) {
926 DRM_DEBUG_DRIVER("LPT detected: skipping PCH PLL test\n");
927 return;
928 }
929
Chris Wilson92b27b02012-05-20 18:10:50 +0100930 if (WARN (!pll,
931 "asserting PCH PLL %s with no PLL\n", state_string(state)))
Jesse Barnesee7b9f92012-04-20 17:11:53 +0100932 return;
Jesse Barnesee7b9f92012-04-20 17:11:53 +0100933
Chris Wilson92b27b02012-05-20 18:10:50 +0100934 val = I915_READ(pll->pll_reg);
935 cur_state = !!(val & DPLL_VCO_ENABLE);
936 WARN(cur_state != state,
937 "PCH PLL state for reg %x assertion failure (expected %s, current %s), val=%08x\n",
938 pll->pll_reg, state_string(state), state_string(cur_state), val);
939
940 /* Make sure the selected PLL is correctly attached to the transcoder */
941 if (crtc && HAS_PCH_CPT(dev_priv->dev)) {
Jesse Barnesd3ccbe82011-10-12 09:27:42 -0700942 u32 pch_dpll;
943
944 pch_dpll = I915_READ(PCH_DPLL_SEL);
Chris Wilson92b27b02012-05-20 18:10:50 +0100945 cur_state = pll->pll_reg == _PCH_DPLL_B;
946 if (!WARN(((pch_dpll >> (4 * crtc->pipe)) & 1) != cur_state,
Ville Syrjälä4bb6f1f2013-04-17 17:48:50 +0300947 "PLL[%d] not attached to this transcoder %c: %08x\n",
948 cur_state, pipe_name(crtc->pipe), pch_dpll)) {
Chris Wilson92b27b02012-05-20 18:10:50 +0100949 cur_state = !!(val >> (4*crtc->pipe + 3));
950 WARN(cur_state != state,
Ville Syrjälä4bb6f1f2013-04-17 17:48:50 +0300951 "PLL[%d] not %s on this transcoder %c: %08x\n",
Chris Wilson92b27b02012-05-20 18:10:50 +0100952 pll->pll_reg == _PCH_DPLL_B,
953 state_string(state),
Ville Syrjälä4bb6f1f2013-04-17 17:48:50 +0300954 pipe_name(crtc->pipe),
Chris Wilson92b27b02012-05-20 18:10:50 +0100955 val);
956 }
Jesse Barnesd3ccbe82011-10-12 09:27:42 -0700957 }
Jesse Barnes040484a2011-01-03 12:14:26 -0800958}
Chris Wilson92b27b02012-05-20 18:10:50 +0100959#define assert_pch_pll_enabled(d, p, c) assert_pch_pll(d, p, c, true)
960#define assert_pch_pll_disabled(d, p, c) assert_pch_pll(d, p, c, false)
Jesse Barnes040484a2011-01-03 12:14:26 -0800961
962static void assert_fdi_tx(struct drm_i915_private *dev_priv,
963 enum pipe pipe, bool state)
964{
965 int reg;
966 u32 val;
967 bool cur_state;
Paulo Zanoniad80a812012-10-24 16:06:19 -0200968 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
969 pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -0800970
Paulo Zanoniaffa9352012-11-23 15:30:39 -0200971 if (HAS_DDI(dev_priv->dev)) {
972 /* DDI does not have a specific FDI_TX register */
Paulo Zanoniad80a812012-10-24 16:06:19 -0200973 reg = TRANS_DDI_FUNC_CTL(cpu_transcoder);
Eugeni Dodonovbf507ef2012-05-09 15:37:18 -0300974 val = I915_READ(reg);
Paulo Zanoniad80a812012-10-24 16:06:19 -0200975 cur_state = !!(val & TRANS_DDI_FUNC_ENABLE);
Eugeni Dodonovbf507ef2012-05-09 15:37:18 -0300976 } else {
977 reg = FDI_TX_CTL(pipe);
978 val = I915_READ(reg);
979 cur_state = !!(val & FDI_TX_ENABLE);
980 }
Jesse Barnes040484a2011-01-03 12:14:26 -0800981 WARN(cur_state != state,
982 "FDI TX state assertion failure (expected %s, current %s)\n",
983 state_string(state), state_string(cur_state));
984}
985#define assert_fdi_tx_enabled(d, p) assert_fdi_tx(d, p, true)
986#define assert_fdi_tx_disabled(d, p) assert_fdi_tx(d, p, false)
987
988static void assert_fdi_rx(struct drm_i915_private *dev_priv,
989 enum pipe pipe, bool state)
990{
991 int reg;
992 u32 val;
993 bool cur_state;
994
Paulo Zanonid63fa0d2012-11-20 13:27:35 -0200995 reg = FDI_RX_CTL(pipe);
996 val = I915_READ(reg);
997 cur_state = !!(val & FDI_RX_ENABLE);
Jesse Barnes040484a2011-01-03 12:14:26 -0800998 WARN(cur_state != state,
999 "FDI RX state assertion failure (expected %s, current %s)\n",
1000 state_string(state), state_string(cur_state));
1001}
1002#define assert_fdi_rx_enabled(d, p) assert_fdi_rx(d, p, true)
1003#define assert_fdi_rx_disabled(d, p) assert_fdi_rx(d, p, false)
1004
1005static void assert_fdi_tx_pll_enabled(struct drm_i915_private *dev_priv,
1006 enum pipe pipe)
1007{
1008 int reg;
1009 u32 val;
1010
1011 /* ILK FDI PLL is always enabled */
1012 if (dev_priv->info->gen == 5)
1013 return;
1014
Eugeni Dodonovbf507ef2012-05-09 15:37:18 -03001015 /* On Haswell, DDI ports are responsible for the FDI PLL setup */
Paulo Zanoniaffa9352012-11-23 15:30:39 -02001016 if (HAS_DDI(dev_priv->dev))
Eugeni Dodonovbf507ef2012-05-09 15:37:18 -03001017 return;
1018
Jesse Barnes040484a2011-01-03 12:14:26 -08001019 reg = FDI_TX_CTL(pipe);
1020 val = I915_READ(reg);
1021 WARN(!(val & FDI_TX_PLL_ENABLE), "FDI TX PLL assertion failure, should be active but is disabled\n");
1022}
1023
1024static void assert_fdi_rx_pll_enabled(struct drm_i915_private *dev_priv,
1025 enum pipe pipe)
1026{
1027 int reg;
1028 u32 val;
1029
1030 reg = FDI_RX_CTL(pipe);
1031 val = I915_READ(reg);
1032 WARN(!(val & FDI_RX_PLL_ENABLE), "FDI RX PLL assertion failure, should be active but is disabled\n");
1033}
1034
Jesse Barnesea0760c2011-01-04 15:09:32 -08001035static void assert_panel_unlocked(struct drm_i915_private *dev_priv,
1036 enum pipe pipe)
1037{
1038 int pp_reg, lvds_reg;
1039 u32 val;
1040 enum pipe panel_pipe = PIPE_A;
Thomas Jarosch0de3b482011-08-25 15:37:45 +02001041 bool locked = true;
Jesse Barnesea0760c2011-01-04 15:09:32 -08001042
1043 if (HAS_PCH_SPLIT(dev_priv->dev)) {
1044 pp_reg = PCH_PP_CONTROL;
1045 lvds_reg = PCH_LVDS;
1046 } else {
1047 pp_reg = PP_CONTROL;
1048 lvds_reg = LVDS;
1049 }
1050
1051 val = I915_READ(pp_reg);
1052 if (!(val & PANEL_POWER_ON) ||
1053 ((val & PANEL_UNLOCK_REGS) == PANEL_UNLOCK_REGS))
1054 locked = false;
1055
1056 if (I915_READ(lvds_reg) & LVDS_PIPEB_SELECT)
1057 panel_pipe = PIPE_B;
1058
1059 WARN(panel_pipe == pipe && locked,
1060 "panel assertion failure, pipe %c regs locked\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001061 pipe_name(pipe));
Jesse Barnesea0760c2011-01-04 15:09:32 -08001062}
1063
Jesse Barnesb840d907f2011-12-13 13:19:38 -08001064void assert_pipe(struct drm_i915_private *dev_priv,
1065 enum pipe pipe, bool state)
Jesse Barnesb24e7172011-01-04 15:09:30 -08001066{
1067 int reg;
1068 u32 val;
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001069 bool cur_state;
Paulo Zanoni702e7a52012-10-23 18:29:59 -02001070 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
1071 pipe);
Jesse Barnesb24e7172011-01-04 15:09:30 -08001072
Daniel Vetter8e636782012-01-22 01:36:48 +01001073 /* if we need the pipe A quirk it must be always on */
1074 if (pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE)
1075 state = true;
1076
Paulo Zanonib97186f2013-05-03 12:15:36 -03001077 if (!intel_display_power_enabled(dev_priv->dev,
1078 POWER_DOMAIN_TRANSCODER(cpu_transcoder))) {
Paulo Zanoni69310162013-01-29 16:35:19 -02001079 cur_state = false;
1080 } else {
1081 reg = PIPECONF(cpu_transcoder);
1082 val = I915_READ(reg);
1083 cur_state = !!(val & PIPECONF_ENABLE);
1084 }
1085
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001086 WARN(cur_state != state,
1087 "pipe %c assertion failure (expected %s, current %s)\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001088 pipe_name(pipe), state_string(state), state_string(cur_state));
Jesse Barnesb24e7172011-01-04 15:09:30 -08001089}
1090
Chris Wilson931872f2012-01-16 23:01:13 +00001091static void assert_plane(struct drm_i915_private *dev_priv,
1092 enum plane plane, bool state)
Jesse Barnesb24e7172011-01-04 15:09:30 -08001093{
1094 int reg;
1095 u32 val;
Chris Wilson931872f2012-01-16 23:01:13 +00001096 bool cur_state;
Jesse Barnesb24e7172011-01-04 15:09:30 -08001097
1098 reg = DSPCNTR(plane);
1099 val = I915_READ(reg);
Chris Wilson931872f2012-01-16 23:01:13 +00001100 cur_state = !!(val & DISPLAY_PLANE_ENABLE);
1101 WARN(cur_state != state,
1102 "plane %c assertion failure (expected %s, current %s)\n",
1103 plane_name(plane), state_string(state), state_string(cur_state));
Jesse Barnesb24e7172011-01-04 15:09:30 -08001104}
1105
Chris Wilson931872f2012-01-16 23:01:13 +00001106#define assert_plane_enabled(d, p) assert_plane(d, p, true)
1107#define assert_plane_disabled(d, p) assert_plane(d, p, false)
1108
Jesse Barnesb24e7172011-01-04 15:09:30 -08001109static void assert_planes_disabled(struct drm_i915_private *dev_priv,
1110 enum pipe pipe)
1111{
1112 int reg, i;
1113 u32 val;
1114 int cur_pipe;
1115
Jesse Barnes19ec1352011-02-02 12:28:02 -08001116 /* Planes are fixed to pipes on ILK+ */
Jesse Barnesda6ecc52013-03-08 10:46:00 -08001117 if (HAS_PCH_SPLIT(dev_priv->dev) || IS_VALLEYVIEW(dev_priv->dev)) {
Adam Jackson28c057942011-10-07 14:38:42 -04001118 reg = DSPCNTR(pipe);
1119 val = I915_READ(reg);
1120 WARN((val & DISPLAY_PLANE_ENABLE),
1121 "plane %c assertion failure, should be disabled but not\n",
1122 plane_name(pipe));
Jesse Barnes19ec1352011-02-02 12:28:02 -08001123 return;
Adam Jackson28c057942011-10-07 14:38:42 -04001124 }
Jesse Barnes19ec1352011-02-02 12:28:02 -08001125
Jesse Barnesb24e7172011-01-04 15:09:30 -08001126 /* Need to check both planes against the pipe */
1127 for (i = 0; i < 2; i++) {
1128 reg = DSPCNTR(i);
1129 val = I915_READ(reg);
1130 cur_pipe = (val & DISPPLANE_SEL_PIPE_MASK) >>
1131 DISPPLANE_SEL_PIPE_SHIFT;
1132 WARN((val & DISPLAY_PLANE_ENABLE) && pipe == cur_pipe,
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001133 "plane %c assertion failure, should be off on pipe %c but is still active\n",
1134 plane_name(i), pipe_name(pipe));
Jesse Barnesb24e7172011-01-04 15:09:30 -08001135 }
1136}
1137
Jesse Barnes19332d72013-03-28 09:55:38 -07001138static void assert_sprites_disabled(struct drm_i915_private *dev_priv,
1139 enum pipe pipe)
1140{
1141 int reg, i;
1142 u32 val;
1143
1144 if (!IS_VALLEYVIEW(dev_priv->dev))
1145 return;
1146
1147 /* Need to check both planes against the pipe */
1148 for (i = 0; i < dev_priv->num_plane; i++) {
1149 reg = SPCNTR(pipe, i);
1150 val = I915_READ(reg);
1151 WARN((val & SP_ENABLE),
Ville Syrjälä06da8da2013-04-17 17:48:51 +03001152 "sprite %c assertion failure, should be off on pipe %c but is still active\n",
1153 sprite_name(pipe, i), pipe_name(pipe));
Jesse Barnes19332d72013-03-28 09:55:38 -07001154 }
1155}
1156
Jesse Barnes92f25842011-01-04 15:09:34 -08001157static void assert_pch_refclk_enabled(struct drm_i915_private *dev_priv)
1158{
1159 u32 val;
1160 bool enabled;
1161
Eugeni Dodonov9d82aa12012-05-09 15:37:17 -03001162 if (HAS_PCH_LPT(dev_priv->dev)) {
1163 DRM_DEBUG_DRIVER("LPT does not has PCH refclk, skipping check\n");
1164 return;
1165 }
1166
Jesse Barnes92f25842011-01-04 15:09:34 -08001167 val = I915_READ(PCH_DREF_CONTROL);
1168 enabled = !!(val & (DREF_SSC_SOURCE_MASK | DREF_NONSPREAD_SOURCE_MASK |
1169 DREF_SUPERSPREAD_SOURCE_MASK));
1170 WARN(!enabled, "PCH refclk assertion failure, should be active but is disabled\n");
1171}
1172
Daniel Vetterab9412b2013-05-03 11:49:46 +02001173static void assert_pch_transcoder_disabled(struct drm_i915_private *dev_priv,
1174 enum pipe pipe)
Jesse Barnes92f25842011-01-04 15:09:34 -08001175{
1176 int reg;
1177 u32 val;
1178 bool enabled;
1179
Daniel Vetterab9412b2013-05-03 11:49:46 +02001180 reg = PCH_TRANSCONF(pipe);
Jesse Barnes92f25842011-01-04 15:09:34 -08001181 val = I915_READ(reg);
1182 enabled = !!(val & TRANS_ENABLE);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001183 WARN(enabled,
1184 "transcoder assertion failed, should be off on pipe %c but is still active\n",
1185 pipe_name(pipe));
Jesse Barnes92f25842011-01-04 15:09:34 -08001186}
1187
Keith Packard4e634382011-08-06 10:39:45 -07001188static bool dp_pipe_enabled(struct drm_i915_private *dev_priv,
1189 enum pipe pipe, u32 port_sel, u32 val)
Keith Packardf0575e92011-07-25 22:12:43 -07001190{
1191 if ((val & DP_PORT_EN) == 0)
1192 return false;
1193
1194 if (HAS_PCH_CPT(dev_priv->dev)) {
1195 u32 trans_dp_ctl_reg = TRANS_DP_CTL(pipe);
1196 u32 trans_dp_ctl = I915_READ(trans_dp_ctl_reg);
1197 if ((trans_dp_ctl & TRANS_DP_PORT_SEL_MASK) != port_sel)
1198 return false;
1199 } else {
1200 if ((val & DP_PIPE_MASK) != (pipe << 30))
1201 return false;
1202 }
1203 return true;
1204}
1205
Keith Packard1519b992011-08-06 10:35:34 -07001206static bool hdmi_pipe_enabled(struct drm_i915_private *dev_priv,
1207 enum pipe pipe, u32 val)
1208{
Paulo Zanonidc0fa712013-02-19 16:21:46 -03001209 if ((val & SDVO_ENABLE) == 0)
Keith Packard1519b992011-08-06 10:35:34 -07001210 return false;
1211
1212 if (HAS_PCH_CPT(dev_priv->dev)) {
Paulo Zanonidc0fa712013-02-19 16:21:46 -03001213 if ((val & SDVO_PIPE_SEL_MASK_CPT) != SDVO_PIPE_SEL_CPT(pipe))
Keith Packard1519b992011-08-06 10:35:34 -07001214 return false;
1215 } else {
Paulo Zanonidc0fa712013-02-19 16:21:46 -03001216 if ((val & SDVO_PIPE_SEL_MASK) != SDVO_PIPE_SEL(pipe))
Keith Packard1519b992011-08-06 10:35:34 -07001217 return false;
1218 }
1219 return true;
1220}
1221
1222static bool lvds_pipe_enabled(struct drm_i915_private *dev_priv,
1223 enum pipe pipe, u32 val)
1224{
1225 if ((val & LVDS_PORT_EN) == 0)
1226 return false;
1227
1228 if (HAS_PCH_CPT(dev_priv->dev)) {
1229 if ((val & PORT_TRANS_SEL_MASK) != PORT_TRANS_SEL_CPT(pipe))
1230 return false;
1231 } else {
1232 if ((val & LVDS_PIPE_MASK) != LVDS_PIPE(pipe))
1233 return false;
1234 }
1235 return true;
1236}
1237
1238static bool adpa_pipe_enabled(struct drm_i915_private *dev_priv,
1239 enum pipe pipe, u32 val)
1240{
1241 if ((val & ADPA_DAC_ENABLE) == 0)
1242 return false;
1243 if (HAS_PCH_CPT(dev_priv->dev)) {
1244 if ((val & PORT_TRANS_SEL_MASK) != PORT_TRANS_SEL_CPT(pipe))
1245 return false;
1246 } else {
1247 if ((val & ADPA_PIPE_SELECT_MASK) != ADPA_PIPE_SELECT(pipe))
1248 return false;
1249 }
1250 return true;
1251}
1252
Jesse Barnes291906f2011-02-02 12:28:03 -08001253static void assert_pch_dp_disabled(struct drm_i915_private *dev_priv,
Keith Packardf0575e92011-07-25 22:12:43 -07001254 enum pipe pipe, int reg, u32 port_sel)
Jesse Barnes291906f2011-02-02 12:28:03 -08001255{
Jesse Barnes47a05ec2011-02-07 13:46:40 -08001256 u32 val = I915_READ(reg);
Keith Packard4e634382011-08-06 10:39:45 -07001257 WARN(dp_pipe_enabled(dev_priv, pipe, port_sel, val),
Jesse Barnes291906f2011-02-02 12:28:03 -08001258 "PCH DP (0x%08x) enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001259 reg, pipe_name(pipe));
Daniel Vetterde9a35a2012-06-05 11:03:40 +02001260
Daniel Vetter75c5da22012-09-10 21:58:29 +02001261 WARN(HAS_PCH_IBX(dev_priv->dev) && (val & DP_PORT_EN) == 0
1262 && (val & DP_PIPEB_SELECT),
Daniel Vetterde9a35a2012-06-05 11:03:40 +02001263 "IBX PCH dp port still using transcoder B\n");
Jesse Barnes291906f2011-02-02 12:28:03 -08001264}
1265
1266static void assert_pch_hdmi_disabled(struct drm_i915_private *dev_priv,
1267 enum pipe pipe, int reg)
1268{
Jesse Barnes47a05ec2011-02-07 13:46:40 -08001269 u32 val = I915_READ(reg);
Xu, Anhuab70ad582012-08-13 03:08:33 +00001270 WARN(hdmi_pipe_enabled(dev_priv, pipe, val),
Adam Jackson23c99e72011-10-07 14:38:43 -04001271 "PCH HDMI (0x%08x) enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001272 reg, pipe_name(pipe));
Daniel Vetterde9a35a2012-06-05 11:03:40 +02001273
Paulo Zanonidc0fa712013-02-19 16:21:46 -03001274 WARN(HAS_PCH_IBX(dev_priv->dev) && (val & SDVO_ENABLE) == 0
Daniel Vetter75c5da22012-09-10 21:58:29 +02001275 && (val & SDVO_PIPE_B_SELECT),
Daniel Vetterde9a35a2012-06-05 11:03:40 +02001276 "IBX PCH hdmi port still using transcoder B\n");
Jesse Barnes291906f2011-02-02 12:28:03 -08001277}
1278
1279static void assert_pch_ports_disabled(struct drm_i915_private *dev_priv,
1280 enum pipe pipe)
1281{
1282 int reg;
1283 u32 val;
Jesse Barnes291906f2011-02-02 12:28:03 -08001284
Keith Packardf0575e92011-07-25 22:12:43 -07001285 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_B, TRANS_DP_PORT_SEL_B);
1286 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_C, TRANS_DP_PORT_SEL_C);
1287 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_D, TRANS_DP_PORT_SEL_D);
Jesse Barnes291906f2011-02-02 12:28:03 -08001288
1289 reg = PCH_ADPA;
1290 val = I915_READ(reg);
Xu, Anhuab70ad582012-08-13 03:08:33 +00001291 WARN(adpa_pipe_enabled(dev_priv, pipe, val),
Jesse Barnes291906f2011-02-02 12:28:03 -08001292 "PCH VGA enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001293 pipe_name(pipe));
Jesse Barnes291906f2011-02-02 12:28:03 -08001294
1295 reg = PCH_LVDS;
1296 val = I915_READ(reg);
Xu, Anhuab70ad582012-08-13 03:08:33 +00001297 WARN(lvds_pipe_enabled(dev_priv, pipe, val),
Jesse Barnes291906f2011-02-02 12:28:03 -08001298 "PCH LVDS enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001299 pipe_name(pipe));
Jesse Barnes291906f2011-02-02 12:28:03 -08001300
Paulo Zanonie2debe92013-02-18 19:00:27 -03001301 assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMIB);
1302 assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMIC);
1303 assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMID);
Jesse Barnes291906f2011-02-02 12:28:03 -08001304}
1305
Jesse Barnesb24e7172011-01-04 15:09:30 -08001306/**
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001307 * intel_enable_pll - enable a PLL
1308 * @dev_priv: i915 private structure
1309 * @pipe: pipe PLL to enable
1310 *
1311 * Enable @pipe's PLL so we can start pumping pixels from a plane. Check to
1312 * make sure the PLL reg is writable first though, since the panel write
1313 * protect mechanism may be enabled.
1314 *
1315 * Note! This is for pre-ILK only.
Thomas Richter7434a252012-07-18 19:22:30 +02001316 *
1317 * Unfortunately needed by dvo_ns2501 since the dvo depends on it running.
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001318 */
1319static void intel_enable_pll(struct drm_i915_private *dev_priv, enum pipe pipe)
1320{
1321 int reg;
1322 u32 val;
1323
Daniel Vetter58c6eaa2013-04-11 16:29:09 +02001324 assert_pipe_disabled(dev_priv, pipe);
1325
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001326 /* No really, not for ILK+ */
Jesse Barnesa0c4da22012-06-15 11:55:13 -07001327 BUG_ON(!IS_VALLEYVIEW(dev_priv->dev) && dev_priv->info->gen >= 5);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001328
1329 /* PLL is protected by panel, make sure we can write it */
1330 if (IS_MOBILE(dev_priv->dev) && !IS_I830(dev_priv->dev))
1331 assert_panel_unlocked(dev_priv, pipe);
1332
1333 reg = DPLL(pipe);
1334 val = I915_READ(reg);
1335 val |= DPLL_VCO_ENABLE;
1336
1337 /* We do this three times for luck */
1338 I915_WRITE(reg, val);
1339 POSTING_READ(reg);
1340 udelay(150); /* wait for warmup */
1341 I915_WRITE(reg, val);
1342 POSTING_READ(reg);
1343 udelay(150); /* wait for warmup */
1344 I915_WRITE(reg, val);
1345 POSTING_READ(reg);
1346 udelay(150); /* wait for warmup */
1347}
1348
1349/**
1350 * intel_disable_pll - disable a PLL
1351 * @dev_priv: i915 private structure
1352 * @pipe: pipe PLL to disable
1353 *
1354 * Disable the PLL for @pipe, making sure the pipe is off first.
1355 *
1356 * Note! This is for pre-ILK only.
1357 */
1358static void intel_disable_pll(struct drm_i915_private *dev_priv, enum pipe pipe)
1359{
1360 int reg;
1361 u32 val;
1362
1363 /* Don't disable pipe A or pipe A PLLs if needed */
1364 if (pipe == PIPE_A && (dev_priv->quirks & QUIRK_PIPEA_FORCE))
1365 return;
1366
1367 /* Make sure the pipe isn't still relying on us */
1368 assert_pipe_disabled(dev_priv, pipe);
1369
1370 reg = DPLL(pipe);
1371 val = I915_READ(reg);
1372 val &= ~DPLL_VCO_ENABLE;
1373 I915_WRITE(reg, val);
1374 POSTING_READ(reg);
1375}
1376
Jesse Barnes89b667f2013-04-18 14:51:36 -07001377void vlv_wait_port_ready(struct drm_i915_private *dev_priv, int port)
1378{
1379 u32 port_mask;
1380
1381 if (!port)
1382 port_mask = DPLL_PORTB_READY_MASK;
1383 else
1384 port_mask = DPLL_PORTC_READY_MASK;
1385
1386 if (wait_for((I915_READ(DPLL(0)) & port_mask) == 0, 1000))
1387 WARN(1, "timed out waiting for port %c ready: 0x%08x\n",
1388 'B' + port, I915_READ(DPLL(0)));
1389}
1390
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001391/**
Paulo Zanonib6b4e182012-10-31 18:12:38 -02001392 * ironlake_enable_pch_pll - enable PCH PLL
Jesse Barnes92f25842011-01-04 15:09:34 -08001393 * @dev_priv: i915 private structure
1394 * @pipe: pipe PLL to enable
1395 *
1396 * The PCH PLL needs to be enabled before the PCH transcoder, since it
1397 * drives the transcoder clock.
1398 */
Paulo Zanonib6b4e182012-10-31 18:12:38 -02001399static void ironlake_enable_pch_pll(struct intel_crtc *intel_crtc)
Jesse Barnes92f25842011-01-04 15:09:34 -08001400{
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001401 struct drm_i915_private *dev_priv = intel_crtc->base.dev->dev_private;
Chris Wilson48da64a2012-05-13 20:16:12 +01001402 struct intel_pch_pll *pll;
Jesse Barnes92f25842011-01-04 15:09:34 -08001403 int reg;
1404 u32 val;
1405
Chris Wilson48da64a2012-05-13 20:16:12 +01001406 /* PCH PLLs only available on ILK, SNB and IVB */
Jesse Barnes92f25842011-01-04 15:09:34 -08001407 BUG_ON(dev_priv->info->gen < 5);
Chris Wilson48da64a2012-05-13 20:16:12 +01001408 pll = intel_crtc->pch_pll;
1409 if (pll == NULL)
1410 return;
1411
1412 if (WARN_ON(pll->refcount == 0))
1413 return;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001414
1415 DRM_DEBUG_KMS("enable PCH PLL %x (active %d, on? %d)for crtc %d\n",
1416 pll->pll_reg, pll->active, pll->on,
1417 intel_crtc->base.base.id);
Jesse Barnes92f25842011-01-04 15:09:34 -08001418
1419 /* PCH refclock must be enabled first */
1420 assert_pch_refclk_enabled(dev_priv);
1421
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001422 if (pll->active++ && pll->on) {
Chris Wilson92b27b02012-05-20 18:10:50 +01001423 assert_pch_pll_enabled(dev_priv, pll, NULL);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001424 return;
1425 }
1426
1427 DRM_DEBUG_KMS("enabling PCH PLL %x\n", pll->pll_reg);
1428
1429 reg = pll->pll_reg;
Jesse Barnes92f25842011-01-04 15:09:34 -08001430 val = I915_READ(reg);
1431 val |= DPLL_VCO_ENABLE;
1432 I915_WRITE(reg, val);
1433 POSTING_READ(reg);
1434 udelay(200);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001435
1436 pll->on = true;
Jesse Barnes92f25842011-01-04 15:09:34 -08001437}
1438
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001439static void intel_disable_pch_pll(struct intel_crtc *intel_crtc)
Jesse Barnes92f25842011-01-04 15:09:34 -08001440{
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001441 struct drm_i915_private *dev_priv = intel_crtc->base.dev->dev_private;
1442 struct intel_pch_pll *pll = intel_crtc->pch_pll;
Jesse Barnes92f25842011-01-04 15:09:34 -08001443 int reg;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001444 u32 val;
Jesse Barnes4c609cb2011-09-02 12:52:11 -07001445
Jesse Barnes92f25842011-01-04 15:09:34 -08001446 /* PCH only available on ILK+ */
1447 BUG_ON(dev_priv->info->gen < 5);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001448 if (pll == NULL)
1449 return;
1450
Chris Wilson48da64a2012-05-13 20:16:12 +01001451 if (WARN_ON(pll->refcount == 0))
1452 return;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001453
1454 DRM_DEBUG_KMS("disable PCH PLL %x (active %d, on? %d) for crtc %d\n",
1455 pll->pll_reg, pll->active, pll->on,
1456 intel_crtc->base.base.id);
1457
Chris Wilson48da64a2012-05-13 20:16:12 +01001458 if (WARN_ON(pll->active == 0)) {
Chris Wilson92b27b02012-05-20 18:10:50 +01001459 assert_pch_pll_disabled(dev_priv, pll, NULL);
Chris Wilson48da64a2012-05-13 20:16:12 +01001460 return;
1461 }
1462
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001463 if (--pll->active) {
Chris Wilson92b27b02012-05-20 18:10:50 +01001464 assert_pch_pll_enabled(dev_priv, pll, NULL);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001465 return;
1466 }
1467
1468 DRM_DEBUG_KMS("disabling PCH PLL %x\n", pll->pll_reg);
Jesse Barnes92f25842011-01-04 15:09:34 -08001469
1470 /* Make sure transcoder isn't still depending on us */
Daniel Vetterab9412b2013-05-03 11:49:46 +02001471 assert_pch_transcoder_disabled(dev_priv, intel_crtc->pipe);
Jesse Barnes92f25842011-01-04 15:09:34 -08001472
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001473 reg = pll->pll_reg;
Jesse Barnes92f25842011-01-04 15:09:34 -08001474 val = I915_READ(reg);
1475 val &= ~DPLL_VCO_ENABLE;
1476 I915_WRITE(reg, val);
1477 POSTING_READ(reg);
1478 udelay(200);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001479
1480 pll->on = false;
Jesse Barnes92f25842011-01-04 15:09:34 -08001481}
1482
Paulo Zanonib8a4f402012-10-31 18:12:42 -02001483static void ironlake_enable_pch_transcoder(struct drm_i915_private *dev_priv,
1484 enum pipe pipe)
Jesse Barnes040484a2011-01-03 12:14:26 -08001485{
Daniel Vetter23670b322012-11-01 09:15:30 +01001486 struct drm_device *dev = dev_priv->dev;
Paulo Zanoni7c26e5c2012-02-14 17:07:09 -02001487 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
Daniel Vetter23670b322012-11-01 09:15:30 +01001488 uint32_t reg, val, pipeconf_val;
Jesse Barnes040484a2011-01-03 12:14:26 -08001489
1490 /* PCH only available on ILK+ */
1491 BUG_ON(dev_priv->info->gen < 5);
1492
1493 /* Make sure PCH DPLL is enabled */
Chris Wilson92b27b02012-05-20 18:10:50 +01001494 assert_pch_pll_enabled(dev_priv,
1495 to_intel_crtc(crtc)->pch_pll,
1496 to_intel_crtc(crtc));
Jesse Barnes040484a2011-01-03 12:14:26 -08001497
1498 /* FDI must be feeding us bits for PCH ports */
1499 assert_fdi_tx_enabled(dev_priv, pipe);
1500 assert_fdi_rx_enabled(dev_priv, pipe);
1501
Daniel Vetter23670b322012-11-01 09:15:30 +01001502 if (HAS_PCH_CPT(dev)) {
1503 /* Workaround: Set the timing override bit before enabling the
1504 * pch transcoder. */
1505 reg = TRANS_CHICKEN2(pipe);
1506 val = I915_READ(reg);
1507 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
1508 I915_WRITE(reg, val);
Eugeni Dodonov59c859d2012-05-09 15:37:19 -03001509 }
Daniel Vetter23670b322012-11-01 09:15:30 +01001510
Daniel Vetterab9412b2013-05-03 11:49:46 +02001511 reg = PCH_TRANSCONF(pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08001512 val = I915_READ(reg);
Paulo Zanoni5f7f7262012-02-03 17:47:15 -02001513 pipeconf_val = I915_READ(PIPECONF(pipe));
Jesse Barnese9bcff52011-06-24 12:19:20 -07001514
1515 if (HAS_PCH_IBX(dev_priv->dev)) {
1516 /*
1517 * make the BPC in transcoder be consistent with
1518 * that in pipeconf reg.
1519 */
Daniel Vetterdfd07d72012-12-17 11:21:38 +01001520 val &= ~PIPECONF_BPC_MASK;
1521 val |= pipeconf_val & PIPECONF_BPC_MASK;
Jesse Barnese9bcff52011-06-24 12:19:20 -07001522 }
Paulo Zanoni5f7f7262012-02-03 17:47:15 -02001523
1524 val &= ~TRANS_INTERLACE_MASK;
1525 if ((pipeconf_val & PIPECONF_INTERLACE_MASK) == PIPECONF_INTERLACED_ILK)
Paulo Zanoni7c26e5c2012-02-14 17:07:09 -02001526 if (HAS_PCH_IBX(dev_priv->dev) &&
1527 intel_pipe_has_type(crtc, INTEL_OUTPUT_SDVO))
1528 val |= TRANS_LEGACY_INTERLACED_ILK;
1529 else
1530 val |= TRANS_INTERLACED;
Paulo Zanoni5f7f7262012-02-03 17:47:15 -02001531 else
1532 val |= TRANS_PROGRESSIVE;
1533
Jesse Barnes040484a2011-01-03 12:14:26 -08001534 I915_WRITE(reg, val | TRANS_ENABLE);
1535 if (wait_for(I915_READ(reg) & TRANS_STATE_ENABLE, 100))
Ville Syrjälä4bb6f1f2013-04-17 17:48:50 +03001536 DRM_ERROR("failed to enable transcoder %c\n", pipe_name(pipe));
Jesse Barnes040484a2011-01-03 12:14:26 -08001537}
1538
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001539static void lpt_enable_pch_transcoder(struct drm_i915_private *dev_priv,
Paulo Zanoni937bb612012-10-31 18:12:47 -02001540 enum transcoder cpu_transcoder)
Jesse Barnes040484a2011-01-03 12:14:26 -08001541{
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001542 u32 val, pipeconf_val;
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001543
1544 /* PCH only available on ILK+ */
1545 BUG_ON(dev_priv->info->gen < 5);
1546
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001547 /* FDI must be feeding us bits for PCH ports */
Daniel Vetter1a240d42012-11-29 22:18:51 +01001548 assert_fdi_tx_enabled(dev_priv, (enum pipe) cpu_transcoder);
Paulo Zanoni937bb612012-10-31 18:12:47 -02001549 assert_fdi_rx_enabled(dev_priv, TRANSCODER_A);
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001550
Paulo Zanoni223a6fd2012-10-31 18:12:52 -02001551 /* Workaround: set timing override bit. */
1552 val = I915_READ(_TRANSA_CHICKEN2);
Daniel Vetter23670b322012-11-01 09:15:30 +01001553 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
Paulo Zanoni223a6fd2012-10-31 18:12:52 -02001554 I915_WRITE(_TRANSA_CHICKEN2, val);
1555
Paulo Zanoni25f3ef12012-10-31 18:12:49 -02001556 val = TRANS_ENABLE;
Paulo Zanoni937bb612012-10-31 18:12:47 -02001557 pipeconf_val = I915_READ(PIPECONF(cpu_transcoder));
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001558
Paulo Zanoni9a76b1c2012-10-31 18:12:48 -02001559 if ((pipeconf_val & PIPECONF_INTERLACE_MASK_HSW) ==
1560 PIPECONF_INTERLACED_ILK)
Paulo Zanonia35f2672012-10-31 18:12:45 -02001561 val |= TRANS_INTERLACED;
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001562 else
1563 val |= TRANS_PROGRESSIVE;
1564
Daniel Vetterab9412b2013-05-03 11:49:46 +02001565 I915_WRITE(LPT_TRANSCONF, val);
1566 if (wait_for(I915_READ(LPT_TRANSCONF) & TRANS_STATE_ENABLE, 100))
Paulo Zanoni937bb612012-10-31 18:12:47 -02001567 DRM_ERROR("Failed to enable PCH transcoder\n");
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001568}
1569
Paulo Zanonib8a4f402012-10-31 18:12:42 -02001570static void ironlake_disable_pch_transcoder(struct drm_i915_private *dev_priv,
1571 enum pipe pipe)
Jesse Barnes040484a2011-01-03 12:14:26 -08001572{
Daniel Vetter23670b322012-11-01 09:15:30 +01001573 struct drm_device *dev = dev_priv->dev;
1574 uint32_t reg, val;
Jesse Barnes040484a2011-01-03 12:14:26 -08001575
1576 /* FDI relies on the transcoder */
1577 assert_fdi_tx_disabled(dev_priv, pipe);
1578 assert_fdi_rx_disabled(dev_priv, pipe);
1579
Jesse Barnes291906f2011-02-02 12:28:03 -08001580 /* Ports must be off as well */
1581 assert_pch_ports_disabled(dev_priv, pipe);
1582
Daniel Vetterab9412b2013-05-03 11:49:46 +02001583 reg = PCH_TRANSCONF(pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08001584 val = I915_READ(reg);
1585 val &= ~TRANS_ENABLE;
1586 I915_WRITE(reg, val);
1587 /* wait for PCH transcoder off, transcoder state */
1588 if (wait_for((I915_READ(reg) & TRANS_STATE_ENABLE) == 0, 50))
Ville Syrjälä4bb6f1f2013-04-17 17:48:50 +03001589 DRM_ERROR("failed to disable transcoder %c\n", pipe_name(pipe));
Daniel Vetter23670b322012-11-01 09:15:30 +01001590
1591 if (!HAS_PCH_IBX(dev)) {
1592 /* Workaround: Clear the timing override chicken bit again. */
1593 reg = TRANS_CHICKEN2(pipe);
1594 val = I915_READ(reg);
1595 val &= ~TRANS_CHICKEN2_TIMING_OVERRIDE;
1596 I915_WRITE(reg, val);
1597 }
Jesse Barnes040484a2011-01-03 12:14:26 -08001598}
1599
Paulo Zanoniab4d9662012-10-31 18:12:55 -02001600static void lpt_disable_pch_transcoder(struct drm_i915_private *dev_priv)
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001601{
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001602 u32 val;
1603
Daniel Vetterab9412b2013-05-03 11:49:46 +02001604 val = I915_READ(LPT_TRANSCONF);
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001605 val &= ~TRANS_ENABLE;
Daniel Vetterab9412b2013-05-03 11:49:46 +02001606 I915_WRITE(LPT_TRANSCONF, val);
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001607 /* wait for PCH transcoder off, transcoder state */
Daniel Vetterab9412b2013-05-03 11:49:46 +02001608 if (wait_for((I915_READ(LPT_TRANSCONF) & TRANS_STATE_ENABLE) == 0, 50))
Paulo Zanoni8a52fd92012-10-31 18:12:51 -02001609 DRM_ERROR("Failed to disable PCH transcoder\n");
Paulo Zanoni223a6fd2012-10-31 18:12:52 -02001610
1611 /* Workaround: clear timing override bit. */
1612 val = I915_READ(_TRANSA_CHICKEN2);
Daniel Vetter23670b322012-11-01 09:15:30 +01001613 val &= ~TRANS_CHICKEN2_TIMING_OVERRIDE;
Paulo Zanoni223a6fd2012-10-31 18:12:52 -02001614 I915_WRITE(_TRANSA_CHICKEN2, val);
Jesse Barnes92f25842011-01-04 15:09:34 -08001615}
1616
1617/**
Chris Wilson309cfea2011-01-28 13:54:53 +00001618 * intel_enable_pipe - enable a pipe, asserting requirements
Jesse Barnesb24e7172011-01-04 15:09:30 -08001619 * @dev_priv: i915 private structure
1620 * @pipe: pipe to enable
Jesse Barnes040484a2011-01-03 12:14:26 -08001621 * @pch_port: on ILK+, is this pipe driving a PCH port or not
Jesse Barnesb24e7172011-01-04 15:09:30 -08001622 *
1623 * Enable @pipe, making sure that various hardware specific requirements
1624 * are met, if applicable, e.g. PLL enabled, LVDS pairs enabled, etc.
1625 *
1626 * @pipe should be %PIPE_A or %PIPE_B.
1627 *
1628 * Will wait until the pipe is actually running (i.e. first vblank) before
1629 * returning.
1630 */
Jesse Barnes040484a2011-01-03 12:14:26 -08001631static void intel_enable_pipe(struct drm_i915_private *dev_priv, enum pipe pipe,
1632 bool pch_port)
Jesse Barnesb24e7172011-01-04 15:09:30 -08001633{
Paulo Zanoni702e7a52012-10-23 18:29:59 -02001634 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
1635 pipe);
Daniel Vetter1a240d42012-11-29 22:18:51 +01001636 enum pipe pch_transcoder;
Jesse Barnesb24e7172011-01-04 15:09:30 -08001637 int reg;
1638 u32 val;
1639
Daniel Vetter58c6eaa2013-04-11 16:29:09 +02001640 assert_planes_disabled(dev_priv, pipe);
1641 assert_sprites_disabled(dev_priv, pipe);
1642
Paulo Zanoni681e5812012-12-06 11:12:38 -02001643 if (HAS_PCH_LPT(dev_priv->dev))
Paulo Zanonicc391bb2012-11-20 13:27:37 -02001644 pch_transcoder = TRANSCODER_A;
1645 else
1646 pch_transcoder = pipe;
1647
Jesse Barnesb24e7172011-01-04 15:09:30 -08001648 /*
1649 * A pipe without a PLL won't actually be able to drive bits from
1650 * a plane. On ILK+ the pipe PLLs are integrated, so we don't
1651 * need the check.
1652 */
1653 if (!HAS_PCH_SPLIT(dev_priv->dev))
1654 assert_pll_enabled(dev_priv, pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08001655 else {
1656 if (pch_port) {
1657 /* if driving the PCH, we need FDI enabled */
Paulo Zanonicc391bb2012-11-20 13:27:37 -02001658 assert_fdi_rx_pll_enabled(dev_priv, pch_transcoder);
Daniel Vetter1a240d42012-11-29 22:18:51 +01001659 assert_fdi_tx_pll_enabled(dev_priv,
1660 (enum pipe) cpu_transcoder);
Jesse Barnes040484a2011-01-03 12:14:26 -08001661 }
1662 /* FIXME: assert CPU port conditions for SNB+ */
1663 }
Jesse Barnesb24e7172011-01-04 15:09:30 -08001664
Paulo Zanoni702e7a52012-10-23 18:29:59 -02001665 reg = PIPECONF(cpu_transcoder);
Jesse Barnesb24e7172011-01-04 15:09:30 -08001666 val = I915_READ(reg);
Chris Wilson00d70b12011-03-17 07:18:29 +00001667 if (val & PIPECONF_ENABLE)
1668 return;
1669
1670 I915_WRITE(reg, val | PIPECONF_ENABLE);
Jesse Barnesb24e7172011-01-04 15:09:30 -08001671 intel_wait_for_vblank(dev_priv->dev, pipe);
1672}
1673
1674/**
Chris Wilson309cfea2011-01-28 13:54:53 +00001675 * intel_disable_pipe - disable a pipe, asserting requirements
Jesse Barnesb24e7172011-01-04 15:09:30 -08001676 * @dev_priv: i915 private structure
1677 * @pipe: pipe to disable
1678 *
1679 * Disable @pipe, making sure that various hardware specific requirements
1680 * are met, if applicable, e.g. plane disabled, panel fitter off, etc.
1681 *
1682 * @pipe should be %PIPE_A or %PIPE_B.
1683 *
1684 * Will wait until the pipe has shut down before returning.
1685 */
1686static void intel_disable_pipe(struct drm_i915_private *dev_priv,
1687 enum pipe pipe)
1688{
Paulo Zanoni702e7a52012-10-23 18:29:59 -02001689 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
1690 pipe);
Jesse Barnesb24e7172011-01-04 15:09:30 -08001691 int reg;
1692 u32 val;
1693
1694 /*
1695 * Make sure planes won't keep trying to pump pixels to us,
1696 * or we might hang the display.
1697 */
1698 assert_planes_disabled(dev_priv, pipe);
Jesse Barnes19332d72013-03-28 09:55:38 -07001699 assert_sprites_disabled(dev_priv, pipe);
Jesse Barnesb24e7172011-01-04 15:09:30 -08001700
1701 /* Don't disable pipe A or pipe A PLLs if needed */
1702 if (pipe == PIPE_A && (dev_priv->quirks & QUIRK_PIPEA_FORCE))
1703 return;
1704
Paulo Zanoni702e7a52012-10-23 18:29:59 -02001705 reg = PIPECONF(cpu_transcoder);
Jesse Barnesb24e7172011-01-04 15:09:30 -08001706 val = I915_READ(reg);
Chris Wilson00d70b12011-03-17 07:18:29 +00001707 if ((val & PIPECONF_ENABLE) == 0)
1708 return;
1709
1710 I915_WRITE(reg, val & ~PIPECONF_ENABLE);
Jesse Barnesb24e7172011-01-04 15:09:30 -08001711 intel_wait_for_pipe_off(dev_priv->dev, pipe);
1712}
1713
Keith Packardd74362c2011-07-28 14:47:14 -07001714/*
1715 * Plane regs are double buffered, going from enabled->disabled needs a
1716 * trigger in order to latch. The display address reg provides this.
1717 */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03001718void intel_flush_display_plane(struct drm_i915_private *dev_priv,
Keith Packardd74362c2011-07-28 14:47:14 -07001719 enum plane plane)
1720{
Damien Lespiau14f86142012-10-29 15:24:49 +00001721 if (dev_priv->info->gen >= 4)
1722 I915_WRITE(DSPSURF(plane), I915_READ(DSPSURF(plane)));
1723 else
1724 I915_WRITE(DSPADDR(plane), I915_READ(DSPADDR(plane)));
Keith Packardd74362c2011-07-28 14:47:14 -07001725}
1726
Jesse Barnesb24e7172011-01-04 15:09:30 -08001727/**
1728 * intel_enable_plane - enable a display plane on a given pipe
1729 * @dev_priv: i915 private structure
1730 * @plane: plane to enable
1731 * @pipe: pipe being fed
1732 *
1733 * Enable @plane on @pipe, making sure that @pipe is running first.
1734 */
1735static void intel_enable_plane(struct drm_i915_private *dev_priv,
1736 enum plane plane, enum pipe pipe)
1737{
1738 int reg;
1739 u32 val;
1740
1741 /* If the pipe isn't enabled, we can't pump pixels and may hang */
1742 assert_pipe_enabled(dev_priv, pipe);
1743
1744 reg = DSPCNTR(plane);
1745 val = I915_READ(reg);
Chris Wilson00d70b12011-03-17 07:18:29 +00001746 if (val & DISPLAY_PLANE_ENABLE)
1747 return;
1748
1749 I915_WRITE(reg, val | DISPLAY_PLANE_ENABLE);
Keith Packardd74362c2011-07-28 14:47:14 -07001750 intel_flush_display_plane(dev_priv, plane);
Jesse Barnesb24e7172011-01-04 15:09:30 -08001751 intel_wait_for_vblank(dev_priv->dev, pipe);
1752}
1753
Jesse Barnesb24e7172011-01-04 15:09:30 -08001754/**
1755 * intel_disable_plane - disable a display plane
1756 * @dev_priv: i915 private structure
1757 * @plane: plane to disable
1758 * @pipe: pipe consuming the data
1759 *
1760 * Disable @plane; should be an independent operation.
1761 */
1762static void intel_disable_plane(struct drm_i915_private *dev_priv,
1763 enum plane plane, enum pipe pipe)
1764{
1765 int reg;
1766 u32 val;
1767
1768 reg = DSPCNTR(plane);
1769 val = I915_READ(reg);
Chris Wilson00d70b12011-03-17 07:18:29 +00001770 if ((val & DISPLAY_PLANE_ENABLE) == 0)
1771 return;
1772
1773 I915_WRITE(reg, val & ~DISPLAY_PLANE_ENABLE);
Jesse Barnesb24e7172011-01-04 15:09:30 -08001774 intel_flush_display_plane(dev_priv, plane);
1775 intel_wait_for_vblank(dev_priv->dev, pipe);
1776}
1777
Chris Wilson693db182013-03-05 14:52:39 +00001778static bool need_vtd_wa(struct drm_device *dev)
1779{
1780#ifdef CONFIG_INTEL_IOMMU
1781 if (INTEL_INFO(dev)->gen >= 6 && intel_iommu_gfx_mapped)
1782 return true;
1783#endif
1784 return false;
1785}
1786
Chris Wilson127bd2a2010-07-23 23:32:05 +01001787int
Chris Wilson48b956c2010-09-14 12:50:34 +01001788intel_pin_and_fence_fb_obj(struct drm_device *dev,
Chris Wilson05394f32010-11-08 19:18:58 +00001789 struct drm_i915_gem_object *obj,
Chris Wilson919926a2010-11-12 13:42:53 +00001790 struct intel_ring_buffer *pipelined)
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001791{
Chris Wilsonce453d82011-02-21 14:43:56 +00001792 struct drm_i915_private *dev_priv = dev->dev_private;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001793 u32 alignment;
1794 int ret;
1795
Chris Wilson05394f32010-11-08 19:18:58 +00001796 switch (obj->tiling_mode) {
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001797 case I915_TILING_NONE:
Chris Wilson534843d2010-07-05 18:01:46 +01001798 if (IS_BROADWATER(dev) || IS_CRESTLINE(dev))
1799 alignment = 128 * 1024;
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001800 else if (INTEL_INFO(dev)->gen >= 4)
Chris Wilson534843d2010-07-05 18:01:46 +01001801 alignment = 4 * 1024;
1802 else
1803 alignment = 64 * 1024;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001804 break;
1805 case I915_TILING_X:
1806 /* pin() will align the object as required by fence */
1807 alignment = 0;
1808 break;
1809 case I915_TILING_Y:
Daniel Vetter8bb6e952013-04-06 23:54:56 +02001810 /* Despite that we check this in framebuffer_init userspace can
1811 * screw us over and change the tiling after the fact. Only
1812 * pinned buffers can't change their tiling. */
1813 DRM_DEBUG_DRIVER("Y tiled not allowed for scan out buffers\n");
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001814 return -EINVAL;
1815 default:
1816 BUG();
1817 }
1818
Chris Wilson693db182013-03-05 14:52:39 +00001819 /* Note that the w/a also requires 64 PTE of padding following the
1820 * bo. We currently fill all unused PTE with the shadow page and so
1821 * we should always have valid PTE following the scanout preventing
1822 * the VT-d warning.
1823 */
1824 if (need_vtd_wa(dev) && alignment < 256 * 1024)
1825 alignment = 256 * 1024;
1826
Chris Wilsonce453d82011-02-21 14:43:56 +00001827 dev_priv->mm.interruptible = false;
Chris Wilson2da3b9b2011-04-14 09:41:17 +01001828 ret = i915_gem_object_pin_to_display_plane(obj, alignment, pipelined);
Chris Wilson48b956c2010-09-14 12:50:34 +01001829 if (ret)
Chris Wilsonce453d82011-02-21 14:43:56 +00001830 goto err_interruptible;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001831
1832 /* Install a fence for tiled scan-out. Pre-i965 always needs a
1833 * fence, whereas 965+ only requires a fence if using
1834 * framebuffer compression. For simplicity, we always install
1835 * a fence as the cost is not that onerous.
1836 */
Chris Wilson06d98132012-04-17 15:31:24 +01001837 ret = i915_gem_object_get_fence(obj);
Chris Wilson9a5a53b2012-03-22 15:10:00 +00001838 if (ret)
1839 goto err_unpin;
Chris Wilson1690e1e2011-12-14 13:57:08 +01001840
Chris Wilson9a5a53b2012-03-22 15:10:00 +00001841 i915_gem_object_pin_fence(obj);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001842
Chris Wilsonce453d82011-02-21 14:43:56 +00001843 dev_priv->mm.interruptible = true;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001844 return 0;
Chris Wilson48b956c2010-09-14 12:50:34 +01001845
1846err_unpin:
1847 i915_gem_object_unpin(obj);
Chris Wilsonce453d82011-02-21 14:43:56 +00001848err_interruptible:
1849 dev_priv->mm.interruptible = true;
Chris Wilson48b956c2010-09-14 12:50:34 +01001850 return ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001851}
1852
Chris Wilson1690e1e2011-12-14 13:57:08 +01001853void intel_unpin_fb_obj(struct drm_i915_gem_object *obj)
1854{
1855 i915_gem_object_unpin_fence(obj);
1856 i915_gem_object_unpin(obj);
1857}
1858
Daniel Vetterc2c75132012-07-05 12:17:30 +02001859/* Computes the linear offset to the base tile and adjusts x, y. bytes per pixel
1860 * is assumed to be a power-of-two. */
Chris Wilsonbc752862013-02-21 20:04:31 +00001861unsigned long intel_gen4_compute_page_offset(int *x, int *y,
1862 unsigned int tiling_mode,
1863 unsigned int cpp,
1864 unsigned int pitch)
Daniel Vetterc2c75132012-07-05 12:17:30 +02001865{
Chris Wilsonbc752862013-02-21 20:04:31 +00001866 if (tiling_mode != I915_TILING_NONE) {
1867 unsigned int tile_rows, tiles;
Daniel Vetterc2c75132012-07-05 12:17:30 +02001868
Chris Wilsonbc752862013-02-21 20:04:31 +00001869 tile_rows = *y / 8;
1870 *y %= 8;
Daniel Vetterc2c75132012-07-05 12:17:30 +02001871
Chris Wilsonbc752862013-02-21 20:04:31 +00001872 tiles = *x / (512/cpp);
1873 *x %= 512/cpp;
1874
1875 return tile_rows * pitch * 8 + tiles * 4096;
1876 } else {
1877 unsigned int offset;
1878
1879 offset = *y * pitch + *x * cpp;
1880 *y = 0;
1881 *x = (offset & 4095) / cpp;
1882 return offset & -4096;
1883 }
Daniel Vetterc2c75132012-07-05 12:17:30 +02001884}
1885
Jesse Barnes17638cd2011-06-24 12:19:23 -07001886static int i9xx_update_plane(struct drm_crtc *crtc, struct drm_framebuffer *fb,
1887 int x, int y)
Jesse Barnes81255562010-08-02 12:07:50 -07001888{
1889 struct drm_device *dev = crtc->dev;
1890 struct drm_i915_private *dev_priv = dev->dev_private;
1891 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1892 struct intel_framebuffer *intel_fb;
Chris Wilson05394f32010-11-08 19:18:58 +00001893 struct drm_i915_gem_object *obj;
Jesse Barnes81255562010-08-02 12:07:50 -07001894 int plane = intel_crtc->plane;
Daniel Vettere506a0c2012-07-05 12:17:29 +02001895 unsigned long linear_offset;
Jesse Barnes81255562010-08-02 12:07:50 -07001896 u32 dspcntr;
Chris Wilson5eddb702010-09-11 13:48:45 +01001897 u32 reg;
Jesse Barnes81255562010-08-02 12:07:50 -07001898
1899 switch (plane) {
1900 case 0:
1901 case 1:
1902 break;
1903 default:
Ville Syrjälä84f44ce2013-04-17 17:48:49 +03001904 DRM_ERROR("Can't update plane %c in SAREA\n", plane_name(plane));
Jesse Barnes81255562010-08-02 12:07:50 -07001905 return -EINVAL;
1906 }
1907
1908 intel_fb = to_intel_framebuffer(fb);
1909 obj = intel_fb->obj;
Jesse Barnes81255562010-08-02 12:07:50 -07001910
Chris Wilson5eddb702010-09-11 13:48:45 +01001911 reg = DSPCNTR(plane);
1912 dspcntr = I915_READ(reg);
Jesse Barnes81255562010-08-02 12:07:50 -07001913 /* Mask out pixel format bits in case we change it */
1914 dspcntr &= ~DISPPLANE_PIXFORMAT_MASK;
Ville Syrjälä57779d02012-10-31 17:50:14 +02001915 switch (fb->pixel_format) {
1916 case DRM_FORMAT_C8:
Jesse Barnes81255562010-08-02 12:07:50 -07001917 dspcntr |= DISPPLANE_8BPP;
1918 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02001919 case DRM_FORMAT_XRGB1555:
1920 case DRM_FORMAT_ARGB1555:
1921 dspcntr |= DISPPLANE_BGRX555;
Jesse Barnes81255562010-08-02 12:07:50 -07001922 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02001923 case DRM_FORMAT_RGB565:
1924 dspcntr |= DISPPLANE_BGRX565;
1925 break;
1926 case DRM_FORMAT_XRGB8888:
1927 case DRM_FORMAT_ARGB8888:
1928 dspcntr |= DISPPLANE_BGRX888;
1929 break;
1930 case DRM_FORMAT_XBGR8888:
1931 case DRM_FORMAT_ABGR8888:
1932 dspcntr |= DISPPLANE_RGBX888;
1933 break;
1934 case DRM_FORMAT_XRGB2101010:
1935 case DRM_FORMAT_ARGB2101010:
1936 dspcntr |= DISPPLANE_BGRX101010;
1937 break;
1938 case DRM_FORMAT_XBGR2101010:
1939 case DRM_FORMAT_ABGR2101010:
1940 dspcntr |= DISPPLANE_RGBX101010;
Jesse Barnes81255562010-08-02 12:07:50 -07001941 break;
1942 default:
Daniel Vetterbaba1332013-03-27 00:45:00 +01001943 BUG();
Jesse Barnes81255562010-08-02 12:07:50 -07001944 }
Ville Syrjälä57779d02012-10-31 17:50:14 +02001945
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001946 if (INTEL_INFO(dev)->gen >= 4) {
Chris Wilson05394f32010-11-08 19:18:58 +00001947 if (obj->tiling_mode != I915_TILING_NONE)
Jesse Barnes81255562010-08-02 12:07:50 -07001948 dspcntr |= DISPPLANE_TILED;
1949 else
1950 dspcntr &= ~DISPPLANE_TILED;
1951 }
1952
Chris Wilson5eddb702010-09-11 13:48:45 +01001953 I915_WRITE(reg, dspcntr);
Jesse Barnes81255562010-08-02 12:07:50 -07001954
Daniel Vettere506a0c2012-07-05 12:17:29 +02001955 linear_offset = y * fb->pitches[0] + x * (fb->bits_per_pixel / 8);
Jesse Barnes81255562010-08-02 12:07:50 -07001956
Daniel Vetterc2c75132012-07-05 12:17:30 +02001957 if (INTEL_INFO(dev)->gen >= 4) {
1958 intel_crtc->dspaddr_offset =
Chris Wilsonbc752862013-02-21 20:04:31 +00001959 intel_gen4_compute_page_offset(&x, &y, obj->tiling_mode,
1960 fb->bits_per_pixel / 8,
1961 fb->pitches[0]);
Daniel Vetterc2c75132012-07-05 12:17:30 +02001962 linear_offset -= intel_crtc->dspaddr_offset;
1963 } else {
Daniel Vettere506a0c2012-07-05 12:17:29 +02001964 intel_crtc->dspaddr_offset = linear_offset;
Daniel Vetterc2c75132012-07-05 12:17:30 +02001965 }
Daniel Vettere506a0c2012-07-05 12:17:29 +02001966
1967 DRM_DEBUG_KMS("Writing base %08X %08lX %d %d %d\n",
1968 obj->gtt_offset, linear_offset, x, y, fb->pitches[0]);
Ville Syrjälä01f2c772011-12-20 00:06:49 +02001969 I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]);
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001970 if (INTEL_INFO(dev)->gen >= 4) {
Daniel Vetterc2c75132012-07-05 12:17:30 +02001971 I915_MODIFY_DISPBASE(DSPSURF(plane),
1972 obj->gtt_offset + intel_crtc->dspaddr_offset);
Chris Wilson5eddb702010-09-11 13:48:45 +01001973 I915_WRITE(DSPTILEOFF(plane), (y << 16) | x);
Daniel Vettere506a0c2012-07-05 12:17:29 +02001974 I915_WRITE(DSPLINOFF(plane), linear_offset);
Chris Wilson5eddb702010-09-11 13:48:45 +01001975 } else
Daniel Vettere506a0c2012-07-05 12:17:29 +02001976 I915_WRITE(DSPADDR(plane), obj->gtt_offset + linear_offset);
Chris Wilson5eddb702010-09-11 13:48:45 +01001977 POSTING_READ(reg);
Jesse Barnes81255562010-08-02 12:07:50 -07001978
Jesse Barnes17638cd2011-06-24 12:19:23 -07001979 return 0;
1980}
1981
1982static int ironlake_update_plane(struct drm_crtc *crtc,
1983 struct drm_framebuffer *fb, int x, int y)
1984{
1985 struct drm_device *dev = crtc->dev;
1986 struct drm_i915_private *dev_priv = dev->dev_private;
1987 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1988 struct intel_framebuffer *intel_fb;
1989 struct drm_i915_gem_object *obj;
1990 int plane = intel_crtc->plane;
Daniel Vettere506a0c2012-07-05 12:17:29 +02001991 unsigned long linear_offset;
Jesse Barnes17638cd2011-06-24 12:19:23 -07001992 u32 dspcntr;
1993 u32 reg;
1994
1995 switch (plane) {
1996 case 0:
1997 case 1:
Jesse Barnes27f82272011-09-02 12:54:37 -07001998 case 2:
Jesse Barnes17638cd2011-06-24 12:19:23 -07001999 break;
2000 default:
Ville Syrjälä84f44ce2013-04-17 17:48:49 +03002001 DRM_ERROR("Can't update plane %c in SAREA\n", plane_name(plane));
Jesse Barnes17638cd2011-06-24 12:19:23 -07002002 return -EINVAL;
2003 }
2004
2005 intel_fb = to_intel_framebuffer(fb);
2006 obj = intel_fb->obj;
2007
2008 reg = DSPCNTR(plane);
2009 dspcntr = I915_READ(reg);
2010 /* Mask out pixel format bits in case we change it */
2011 dspcntr &= ~DISPPLANE_PIXFORMAT_MASK;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002012 switch (fb->pixel_format) {
2013 case DRM_FORMAT_C8:
Jesse Barnes17638cd2011-06-24 12:19:23 -07002014 dspcntr |= DISPPLANE_8BPP;
2015 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002016 case DRM_FORMAT_RGB565:
2017 dspcntr |= DISPPLANE_BGRX565;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002018 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002019 case DRM_FORMAT_XRGB8888:
2020 case DRM_FORMAT_ARGB8888:
2021 dspcntr |= DISPPLANE_BGRX888;
2022 break;
2023 case DRM_FORMAT_XBGR8888:
2024 case DRM_FORMAT_ABGR8888:
2025 dspcntr |= DISPPLANE_RGBX888;
2026 break;
2027 case DRM_FORMAT_XRGB2101010:
2028 case DRM_FORMAT_ARGB2101010:
2029 dspcntr |= DISPPLANE_BGRX101010;
2030 break;
2031 case DRM_FORMAT_XBGR2101010:
2032 case DRM_FORMAT_ABGR2101010:
2033 dspcntr |= DISPPLANE_RGBX101010;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002034 break;
2035 default:
Daniel Vetterbaba1332013-03-27 00:45:00 +01002036 BUG();
Jesse Barnes17638cd2011-06-24 12:19:23 -07002037 }
2038
2039 if (obj->tiling_mode != I915_TILING_NONE)
2040 dspcntr |= DISPPLANE_TILED;
2041 else
2042 dspcntr &= ~DISPPLANE_TILED;
2043
2044 /* must disable */
2045 dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE;
2046
2047 I915_WRITE(reg, dspcntr);
2048
Daniel Vettere506a0c2012-07-05 12:17:29 +02002049 linear_offset = y * fb->pitches[0] + x * (fb->bits_per_pixel / 8);
Daniel Vetterc2c75132012-07-05 12:17:30 +02002050 intel_crtc->dspaddr_offset =
Chris Wilsonbc752862013-02-21 20:04:31 +00002051 intel_gen4_compute_page_offset(&x, &y, obj->tiling_mode,
2052 fb->bits_per_pixel / 8,
2053 fb->pitches[0]);
Daniel Vetterc2c75132012-07-05 12:17:30 +02002054 linear_offset -= intel_crtc->dspaddr_offset;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002055
Daniel Vettere506a0c2012-07-05 12:17:29 +02002056 DRM_DEBUG_KMS("Writing base %08X %08lX %d %d %d\n",
2057 obj->gtt_offset, linear_offset, x, y, fb->pitches[0]);
Ville Syrjälä01f2c772011-12-20 00:06:49 +02002058 I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]);
Daniel Vetterc2c75132012-07-05 12:17:30 +02002059 I915_MODIFY_DISPBASE(DSPSURF(plane),
2060 obj->gtt_offset + intel_crtc->dspaddr_offset);
Damien Lespiaubc1c91e2012-10-29 12:14:21 +00002061 if (IS_HASWELL(dev)) {
2062 I915_WRITE(DSPOFFSET(plane), (y << 16) | x);
2063 } else {
2064 I915_WRITE(DSPTILEOFF(plane), (y << 16) | x);
2065 I915_WRITE(DSPLINOFF(plane), linear_offset);
2066 }
Jesse Barnes17638cd2011-06-24 12:19:23 -07002067 POSTING_READ(reg);
2068
2069 return 0;
2070}
2071
2072/* Assume fb object is pinned & idle & fenced and just update base pointers */
2073static int
2074intel_pipe_set_base_atomic(struct drm_crtc *crtc, struct drm_framebuffer *fb,
2075 int x, int y, enum mode_set_atomic state)
2076{
2077 struct drm_device *dev = crtc->dev;
2078 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002079
Chris Wilson6b8e6ed2012-04-17 15:08:19 +01002080 if (dev_priv->display.disable_fbc)
2081 dev_priv->display.disable_fbc(dev);
Daniel Vetter3dec0092010-08-20 21:40:52 +02002082 intel_increase_pllclock(crtc);
Jesse Barnes81255562010-08-02 12:07:50 -07002083
Chris Wilson6b8e6ed2012-04-17 15:08:19 +01002084 return dev_priv->display.update_plane(crtc, fb, x, y);
Jesse Barnes81255562010-08-02 12:07:50 -07002085}
2086
Ville Syrjälä96a02912013-02-18 19:08:49 +02002087void intel_display_handle_reset(struct drm_device *dev)
2088{
2089 struct drm_i915_private *dev_priv = dev->dev_private;
2090 struct drm_crtc *crtc;
2091
2092 /*
2093 * Flips in the rings have been nuked by the reset,
2094 * so complete all pending flips so that user space
2095 * will get its events and not get stuck.
2096 *
2097 * Also update the base address of all primary
2098 * planes to the the last fb to make sure we're
2099 * showing the correct fb after a reset.
2100 *
2101 * Need to make two loops over the crtcs so that we
2102 * don't try to grab a crtc mutex before the
2103 * pending_flip_queue really got woken up.
2104 */
2105
2106 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
2107 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2108 enum plane plane = intel_crtc->plane;
2109
2110 intel_prepare_page_flip(dev, plane);
2111 intel_finish_page_flip_plane(dev, plane);
2112 }
2113
2114 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
2115 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2116
2117 mutex_lock(&crtc->mutex);
2118 if (intel_crtc->active)
2119 dev_priv->display.update_plane(crtc, crtc->fb,
2120 crtc->x, crtc->y);
2121 mutex_unlock(&crtc->mutex);
2122 }
2123}
2124
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002125static int
Chris Wilson14667a42012-04-03 17:58:35 +01002126intel_finish_fb(struct drm_framebuffer *old_fb)
2127{
2128 struct drm_i915_gem_object *obj = to_intel_framebuffer(old_fb)->obj;
2129 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
2130 bool was_interruptible = dev_priv->mm.interruptible;
2131 int ret;
2132
Chris Wilson14667a42012-04-03 17:58:35 +01002133 /* Big Hammer, we also need to ensure that any pending
2134 * MI_WAIT_FOR_EVENT inside a user batch buffer on the
2135 * current scanout is retired before unpinning the old
2136 * framebuffer.
2137 *
2138 * This should only fail upon a hung GPU, in which case we
2139 * can safely continue.
2140 */
2141 dev_priv->mm.interruptible = false;
2142 ret = i915_gem_object_finish_gpu(obj);
2143 dev_priv->mm.interruptible = was_interruptible;
2144
2145 return ret;
2146}
2147
Ville Syrjälä198598d2012-10-31 17:50:24 +02002148static void intel_crtc_update_sarea_pos(struct drm_crtc *crtc, int x, int y)
2149{
2150 struct drm_device *dev = crtc->dev;
2151 struct drm_i915_master_private *master_priv;
2152 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2153
2154 if (!dev->primary->master)
2155 return;
2156
2157 master_priv = dev->primary->master->driver_priv;
2158 if (!master_priv->sarea_priv)
2159 return;
2160
2161 switch (intel_crtc->pipe) {
2162 case 0:
2163 master_priv->sarea_priv->pipeA_x = x;
2164 master_priv->sarea_priv->pipeA_y = y;
2165 break;
2166 case 1:
2167 master_priv->sarea_priv->pipeB_x = x;
2168 master_priv->sarea_priv->pipeB_y = y;
2169 break;
2170 default:
2171 break;
2172 }
2173}
2174
Chris Wilson14667a42012-04-03 17:58:35 +01002175static int
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -05002176intel_pipe_set_base(struct drm_crtc *crtc, int x, int y,
Daniel Vetter94352cf2012-07-05 22:51:56 +02002177 struct drm_framebuffer *fb)
Jesse Barnes79e53942008-11-07 14:24:08 -08002178{
2179 struct drm_device *dev = crtc->dev;
Chris Wilson6b8e6ed2012-04-17 15:08:19 +01002180 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -08002181 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter94352cf2012-07-05 22:51:56 +02002182 struct drm_framebuffer *old_fb;
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002183 int ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08002184
2185 /* no fb bound */
Daniel Vetter94352cf2012-07-05 22:51:56 +02002186 if (!fb) {
Jesse Barnesa5071c22011-07-19 15:38:56 -07002187 DRM_ERROR("No FB bound\n");
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002188 return 0;
2189 }
2190
Ben Widawsky7eb552a2013-03-13 14:05:41 -07002191 if (intel_crtc->plane > INTEL_INFO(dev)->num_pipes) {
Ville Syrjälä84f44ce2013-04-17 17:48:49 +03002192 DRM_ERROR("no plane for crtc: plane %c, num_pipes %d\n",
2193 plane_name(intel_crtc->plane),
2194 INTEL_INFO(dev)->num_pipes);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002195 return -EINVAL;
Jesse Barnes79e53942008-11-07 14:24:08 -08002196 }
2197
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002198 mutex_lock(&dev->struct_mutex);
Chris Wilson265db952010-09-20 15:41:01 +01002199 ret = intel_pin_and_fence_fb_obj(dev,
Daniel Vetter94352cf2012-07-05 22:51:56 +02002200 to_intel_framebuffer(fb)->obj,
Chris Wilson919926a2010-11-12 13:42:53 +00002201 NULL);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002202 if (ret != 0) {
2203 mutex_unlock(&dev->struct_mutex);
Jesse Barnesa5071c22011-07-19 15:38:56 -07002204 DRM_ERROR("pin & fence failed\n");
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002205 return ret;
2206 }
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -05002207
Daniel Vetter94352cf2012-07-05 22:51:56 +02002208 ret = dev_priv->display.update_plane(crtc, fb, x, y);
Chris Wilson4e6cfef2010-08-08 13:20:19 +01002209 if (ret) {
Daniel Vetter94352cf2012-07-05 22:51:56 +02002210 intel_unpin_fb_obj(to_intel_framebuffer(fb)->obj);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002211 mutex_unlock(&dev->struct_mutex);
Jesse Barnesa5071c22011-07-19 15:38:56 -07002212 DRM_ERROR("failed to update base address\n");
Chris Wilson4e6cfef2010-08-08 13:20:19 +01002213 return ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08002214 }
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -05002215
Daniel Vetter94352cf2012-07-05 22:51:56 +02002216 old_fb = crtc->fb;
2217 crtc->fb = fb;
Daniel Vetter6c4c86f2012-09-10 21:58:30 +02002218 crtc->x = x;
2219 crtc->y = y;
Daniel Vetter94352cf2012-07-05 22:51:56 +02002220
Chris Wilsonb7f1de22010-12-14 16:09:31 +00002221 if (old_fb) {
Daniel Vetterd7697ee2013-06-02 17:23:01 +02002222 if (intel_crtc->active && old_fb != fb)
2223 intel_wait_for_vblank(dev, intel_crtc->pipe);
Chris Wilson1690e1e2011-12-14 13:57:08 +01002224 intel_unpin_fb_obj(to_intel_framebuffer(old_fb)->obj);
Chris Wilsonb7f1de22010-12-14 16:09:31 +00002225 }
Jesse Barnes652c3932009-08-17 13:31:43 -07002226
Chris Wilson6b8e6ed2012-04-17 15:08:19 +01002227 intel_update_fbc(dev);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002228 mutex_unlock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -08002229
Ville Syrjälä198598d2012-10-31 17:50:24 +02002230 intel_crtc_update_sarea_pos(crtc, x, y);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002231
2232 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08002233}
2234
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08002235static void intel_fdi_normal_train(struct drm_crtc *crtc)
2236{
2237 struct drm_device *dev = crtc->dev;
2238 struct drm_i915_private *dev_priv = dev->dev_private;
2239 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2240 int pipe = intel_crtc->pipe;
2241 u32 reg, temp;
2242
2243 /* enable normal train */
2244 reg = FDI_TX_CTL(pipe);
2245 temp = I915_READ(reg);
Keith Packard61e499b2011-05-17 16:13:52 -07002246 if (IS_IVYBRIDGE(dev)) {
Jesse Barnes357555c2011-04-28 15:09:55 -07002247 temp &= ~FDI_LINK_TRAIN_NONE_IVB;
2248 temp |= FDI_LINK_TRAIN_NONE_IVB | FDI_TX_ENHANCE_FRAME_ENABLE;
Keith Packard61e499b2011-05-17 16:13:52 -07002249 } else {
2250 temp &= ~FDI_LINK_TRAIN_NONE;
2251 temp |= FDI_LINK_TRAIN_NONE | FDI_TX_ENHANCE_FRAME_ENABLE;
Jesse Barnes357555c2011-04-28 15:09:55 -07002252 }
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08002253 I915_WRITE(reg, temp);
2254
2255 reg = FDI_RX_CTL(pipe);
2256 temp = I915_READ(reg);
2257 if (HAS_PCH_CPT(dev)) {
2258 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2259 temp |= FDI_LINK_TRAIN_NORMAL_CPT;
2260 } else {
2261 temp &= ~FDI_LINK_TRAIN_NONE;
2262 temp |= FDI_LINK_TRAIN_NONE;
2263 }
2264 I915_WRITE(reg, temp | FDI_RX_ENHANCE_FRAME_ENABLE);
2265
2266 /* wait one idle pattern time */
2267 POSTING_READ(reg);
2268 udelay(1000);
Jesse Barnes357555c2011-04-28 15:09:55 -07002269
2270 /* IVB wants error correction enabled */
2271 if (IS_IVYBRIDGE(dev))
2272 I915_WRITE(reg, I915_READ(reg) | FDI_FS_ERRC_ENABLE |
2273 FDI_FE_ERRC_ENABLE);
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08002274}
2275
Daniel Vetter1e833f42013-02-19 22:31:57 +01002276static bool pipe_has_enabled_pch(struct intel_crtc *intel_crtc)
2277{
2278 return intel_crtc->base.enabled && intel_crtc->config.has_pch_encoder;
2279}
2280
Daniel Vetter01a415f2012-10-27 15:58:40 +02002281static void ivb_modeset_global_resources(struct drm_device *dev)
2282{
2283 struct drm_i915_private *dev_priv = dev->dev_private;
2284 struct intel_crtc *pipe_B_crtc =
2285 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[PIPE_B]);
2286 struct intel_crtc *pipe_C_crtc =
2287 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[PIPE_C]);
2288 uint32_t temp;
2289
Daniel Vetter1e833f42013-02-19 22:31:57 +01002290 /*
2291 * When everything is off disable fdi C so that we could enable fdi B
2292 * with all lanes. Note that we don't care about enabled pipes without
2293 * an enabled pch encoder.
2294 */
2295 if (!pipe_has_enabled_pch(pipe_B_crtc) &&
2296 !pipe_has_enabled_pch(pipe_C_crtc)) {
Daniel Vetter01a415f2012-10-27 15:58:40 +02002297 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_B)) & FDI_RX_ENABLE);
2298 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_C)) & FDI_RX_ENABLE);
2299
2300 temp = I915_READ(SOUTH_CHICKEN1);
2301 temp &= ~FDI_BC_BIFURCATION_SELECT;
2302 DRM_DEBUG_KMS("disabling fdi C rx\n");
2303 I915_WRITE(SOUTH_CHICKEN1, temp);
2304 }
2305}
2306
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002307/* The FDI link training functions for ILK/Ibexpeak. */
2308static void ironlake_fdi_link_train(struct drm_crtc *crtc)
2309{
2310 struct drm_device *dev = crtc->dev;
2311 struct drm_i915_private *dev_priv = dev->dev_private;
2312 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2313 int pipe = intel_crtc->pipe;
Jesse Barnes0fc932b2011-01-04 15:09:37 -08002314 int plane = intel_crtc->plane;
Chris Wilson5eddb702010-09-11 13:48:45 +01002315 u32 reg, temp, tries;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002316
Jesse Barnes0fc932b2011-01-04 15:09:37 -08002317 /* FDI needs bits from pipe & plane first */
2318 assert_pipe_enabled(dev_priv, pipe);
2319 assert_plane_enabled(dev_priv, plane);
2320
Adam Jacksone1a44742010-06-25 15:32:14 -04002321 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
2322 for train result */
Chris Wilson5eddb702010-09-11 13:48:45 +01002323 reg = FDI_RX_IMR(pipe);
2324 temp = I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04002325 temp &= ~FDI_RX_SYMBOL_LOCK;
2326 temp &= ~FDI_RX_BIT_LOCK;
Chris Wilson5eddb702010-09-11 13:48:45 +01002327 I915_WRITE(reg, temp);
2328 I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04002329 udelay(150);
2330
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002331 /* enable CPU FDI TX and PCH FDI RX */
Chris Wilson5eddb702010-09-11 13:48:45 +01002332 reg = FDI_TX_CTL(pipe);
2333 temp = I915_READ(reg);
Daniel Vetter627eb5a2013-04-29 19:33:42 +02002334 temp &= ~FDI_DP_PORT_WIDTH_MASK;
2335 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config.fdi_lanes);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002336 temp &= ~FDI_LINK_TRAIN_NONE;
2337 temp |= FDI_LINK_TRAIN_PATTERN_1;
Chris Wilson5eddb702010-09-11 13:48:45 +01002338 I915_WRITE(reg, temp | FDI_TX_ENABLE);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002339
Chris Wilson5eddb702010-09-11 13:48:45 +01002340 reg = FDI_RX_CTL(pipe);
2341 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002342 temp &= ~FDI_LINK_TRAIN_NONE;
2343 temp |= FDI_LINK_TRAIN_PATTERN_1;
Chris Wilson5eddb702010-09-11 13:48:45 +01002344 I915_WRITE(reg, temp | FDI_RX_ENABLE);
2345
2346 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002347 udelay(150);
2348
Jesse Barnes5b2adf82010-10-07 16:01:15 -07002349 /* Ironlake workaround, enable clock pointer after FDI enable*/
Daniel Vetter8f5718a2012-10-31 22:52:28 +01002350 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR);
2351 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR |
2352 FDI_RX_PHASE_SYNC_POINTER_EN);
Jesse Barnes5b2adf82010-10-07 16:01:15 -07002353
Chris Wilson5eddb702010-09-11 13:48:45 +01002354 reg = FDI_RX_IIR(pipe);
Adam Jacksone1a44742010-06-25 15:32:14 -04002355 for (tries = 0; tries < 5; tries++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002356 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002357 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2358
2359 if ((temp & FDI_RX_BIT_LOCK)) {
2360 DRM_DEBUG_KMS("FDI train 1 done.\n");
Chris Wilson5eddb702010-09-11 13:48:45 +01002361 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002362 break;
2363 }
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002364 }
Adam Jacksone1a44742010-06-25 15:32:14 -04002365 if (tries == 5)
Chris Wilson5eddb702010-09-11 13:48:45 +01002366 DRM_ERROR("FDI train 1 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002367
2368 /* Train 2 */
Chris Wilson5eddb702010-09-11 13:48:45 +01002369 reg = FDI_TX_CTL(pipe);
2370 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002371 temp &= ~FDI_LINK_TRAIN_NONE;
2372 temp |= FDI_LINK_TRAIN_PATTERN_2;
Chris Wilson5eddb702010-09-11 13:48:45 +01002373 I915_WRITE(reg, temp);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002374
Chris Wilson5eddb702010-09-11 13:48:45 +01002375 reg = FDI_RX_CTL(pipe);
2376 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002377 temp &= ~FDI_LINK_TRAIN_NONE;
2378 temp |= FDI_LINK_TRAIN_PATTERN_2;
Chris Wilson5eddb702010-09-11 13:48:45 +01002379 I915_WRITE(reg, temp);
2380
2381 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002382 udelay(150);
2383
Chris Wilson5eddb702010-09-11 13:48:45 +01002384 reg = FDI_RX_IIR(pipe);
Adam Jacksone1a44742010-06-25 15:32:14 -04002385 for (tries = 0; tries < 5; tries++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002386 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002387 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2388
2389 if (temp & FDI_RX_SYMBOL_LOCK) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002390 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002391 DRM_DEBUG_KMS("FDI train 2 done.\n");
2392 break;
2393 }
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002394 }
Adam Jacksone1a44742010-06-25 15:32:14 -04002395 if (tries == 5)
Chris Wilson5eddb702010-09-11 13:48:45 +01002396 DRM_ERROR("FDI train 2 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002397
2398 DRM_DEBUG_KMS("FDI train done\n");
Jesse Barnes5c5313c2010-10-07 16:01:11 -07002399
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002400}
2401
Akshay Joshi0206e352011-08-16 15:34:10 -04002402static const int snb_b_fdi_train_param[] = {
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002403 FDI_LINK_TRAIN_400MV_0DB_SNB_B,
2404 FDI_LINK_TRAIN_400MV_6DB_SNB_B,
2405 FDI_LINK_TRAIN_600MV_3_5DB_SNB_B,
2406 FDI_LINK_TRAIN_800MV_0DB_SNB_B,
2407};
2408
2409/* The FDI link training functions for SNB/Cougarpoint. */
2410static void gen6_fdi_link_train(struct drm_crtc *crtc)
2411{
2412 struct drm_device *dev = crtc->dev;
2413 struct drm_i915_private *dev_priv = dev->dev_private;
2414 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2415 int pipe = intel_crtc->pipe;
Sean Paulfa37d392012-03-02 12:53:39 -05002416 u32 reg, temp, i, retry;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002417
Adam Jacksone1a44742010-06-25 15:32:14 -04002418 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
2419 for train result */
Chris Wilson5eddb702010-09-11 13:48:45 +01002420 reg = FDI_RX_IMR(pipe);
2421 temp = I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04002422 temp &= ~FDI_RX_SYMBOL_LOCK;
2423 temp &= ~FDI_RX_BIT_LOCK;
Chris Wilson5eddb702010-09-11 13:48:45 +01002424 I915_WRITE(reg, temp);
2425
2426 POSTING_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04002427 udelay(150);
2428
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002429 /* enable CPU FDI TX and PCH FDI RX */
Chris Wilson5eddb702010-09-11 13:48:45 +01002430 reg = FDI_TX_CTL(pipe);
2431 temp = I915_READ(reg);
Daniel Vetter627eb5a2013-04-29 19:33:42 +02002432 temp &= ~FDI_DP_PORT_WIDTH_MASK;
2433 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config.fdi_lanes);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002434 temp &= ~FDI_LINK_TRAIN_NONE;
2435 temp |= FDI_LINK_TRAIN_PATTERN_1;
2436 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2437 /* SNB-B */
2438 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
Chris Wilson5eddb702010-09-11 13:48:45 +01002439 I915_WRITE(reg, temp | FDI_TX_ENABLE);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002440
Daniel Vetterd74cf322012-10-26 10:58:13 +02002441 I915_WRITE(FDI_RX_MISC(pipe),
2442 FDI_RX_TP1_TO_TP2_48 | FDI_RX_FDI_DELAY_90);
2443
Chris Wilson5eddb702010-09-11 13:48:45 +01002444 reg = FDI_RX_CTL(pipe);
2445 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002446 if (HAS_PCH_CPT(dev)) {
2447 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2448 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
2449 } else {
2450 temp &= ~FDI_LINK_TRAIN_NONE;
2451 temp |= FDI_LINK_TRAIN_PATTERN_1;
2452 }
Chris Wilson5eddb702010-09-11 13:48:45 +01002453 I915_WRITE(reg, temp | FDI_RX_ENABLE);
2454
2455 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002456 udelay(150);
2457
Akshay Joshi0206e352011-08-16 15:34:10 -04002458 for (i = 0; i < 4; i++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002459 reg = FDI_TX_CTL(pipe);
2460 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002461 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2462 temp |= snb_b_fdi_train_param[i];
Chris Wilson5eddb702010-09-11 13:48:45 +01002463 I915_WRITE(reg, temp);
2464
2465 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002466 udelay(500);
2467
Sean Paulfa37d392012-03-02 12:53:39 -05002468 for (retry = 0; retry < 5; retry++) {
2469 reg = FDI_RX_IIR(pipe);
2470 temp = I915_READ(reg);
2471 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2472 if (temp & FDI_RX_BIT_LOCK) {
2473 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
2474 DRM_DEBUG_KMS("FDI train 1 done.\n");
2475 break;
2476 }
2477 udelay(50);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002478 }
Sean Paulfa37d392012-03-02 12:53:39 -05002479 if (retry < 5)
2480 break;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002481 }
2482 if (i == 4)
Chris Wilson5eddb702010-09-11 13:48:45 +01002483 DRM_ERROR("FDI train 1 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002484
2485 /* Train 2 */
Chris Wilson5eddb702010-09-11 13:48:45 +01002486 reg = FDI_TX_CTL(pipe);
2487 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002488 temp &= ~FDI_LINK_TRAIN_NONE;
2489 temp |= FDI_LINK_TRAIN_PATTERN_2;
2490 if (IS_GEN6(dev)) {
2491 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2492 /* SNB-B */
2493 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
2494 }
Chris Wilson5eddb702010-09-11 13:48:45 +01002495 I915_WRITE(reg, temp);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002496
Chris Wilson5eddb702010-09-11 13:48:45 +01002497 reg = FDI_RX_CTL(pipe);
2498 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002499 if (HAS_PCH_CPT(dev)) {
2500 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2501 temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
2502 } else {
2503 temp &= ~FDI_LINK_TRAIN_NONE;
2504 temp |= FDI_LINK_TRAIN_PATTERN_2;
2505 }
Chris Wilson5eddb702010-09-11 13:48:45 +01002506 I915_WRITE(reg, temp);
2507
2508 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002509 udelay(150);
2510
Akshay Joshi0206e352011-08-16 15:34:10 -04002511 for (i = 0; i < 4; i++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002512 reg = FDI_TX_CTL(pipe);
2513 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002514 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2515 temp |= snb_b_fdi_train_param[i];
Chris Wilson5eddb702010-09-11 13:48:45 +01002516 I915_WRITE(reg, temp);
2517
2518 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002519 udelay(500);
2520
Sean Paulfa37d392012-03-02 12:53:39 -05002521 for (retry = 0; retry < 5; retry++) {
2522 reg = FDI_RX_IIR(pipe);
2523 temp = I915_READ(reg);
2524 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2525 if (temp & FDI_RX_SYMBOL_LOCK) {
2526 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
2527 DRM_DEBUG_KMS("FDI train 2 done.\n");
2528 break;
2529 }
2530 udelay(50);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002531 }
Sean Paulfa37d392012-03-02 12:53:39 -05002532 if (retry < 5)
2533 break;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002534 }
2535 if (i == 4)
Chris Wilson5eddb702010-09-11 13:48:45 +01002536 DRM_ERROR("FDI train 2 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002537
2538 DRM_DEBUG_KMS("FDI train done.\n");
2539}
2540
Jesse Barnes357555c2011-04-28 15:09:55 -07002541/* Manual link training for Ivy Bridge A0 parts */
2542static void ivb_manual_fdi_link_train(struct drm_crtc *crtc)
2543{
2544 struct drm_device *dev = crtc->dev;
2545 struct drm_i915_private *dev_priv = dev->dev_private;
2546 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2547 int pipe = intel_crtc->pipe;
2548 u32 reg, temp, i;
2549
2550 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
2551 for train result */
2552 reg = FDI_RX_IMR(pipe);
2553 temp = I915_READ(reg);
2554 temp &= ~FDI_RX_SYMBOL_LOCK;
2555 temp &= ~FDI_RX_BIT_LOCK;
2556 I915_WRITE(reg, temp);
2557
2558 POSTING_READ(reg);
2559 udelay(150);
2560
Daniel Vetter01a415f2012-10-27 15:58:40 +02002561 DRM_DEBUG_KMS("FDI_RX_IIR before link train 0x%x\n",
2562 I915_READ(FDI_RX_IIR(pipe)));
2563
Jesse Barnes357555c2011-04-28 15:09:55 -07002564 /* enable CPU FDI TX and PCH FDI RX */
2565 reg = FDI_TX_CTL(pipe);
2566 temp = I915_READ(reg);
Daniel Vetter627eb5a2013-04-29 19:33:42 +02002567 temp &= ~FDI_DP_PORT_WIDTH_MASK;
2568 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config.fdi_lanes);
Jesse Barnes357555c2011-04-28 15:09:55 -07002569 temp &= ~(FDI_LINK_TRAIN_AUTO | FDI_LINK_TRAIN_NONE_IVB);
2570 temp |= FDI_LINK_TRAIN_PATTERN_1_IVB;
2571 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2572 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
Jesse Barnesc4f9c4c2011-10-10 14:28:52 -07002573 temp |= FDI_COMPOSITE_SYNC;
Jesse Barnes357555c2011-04-28 15:09:55 -07002574 I915_WRITE(reg, temp | FDI_TX_ENABLE);
2575
Daniel Vetterd74cf322012-10-26 10:58:13 +02002576 I915_WRITE(FDI_RX_MISC(pipe),
2577 FDI_RX_TP1_TO_TP2_48 | FDI_RX_FDI_DELAY_90);
2578
Jesse Barnes357555c2011-04-28 15:09:55 -07002579 reg = FDI_RX_CTL(pipe);
2580 temp = I915_READ(reg);
2581 temp &= ~FDI_LINK_TRAIN_AUTO;
2582 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2583 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
Jesse Barnesc4f9c4c2011-10-10 14:28:52 -07002584 temp |= FDI_COMPOSITE_SYNC;
Jesse Barnes357555c2011-04-28 15:09:55 -07002585 I915_WRITE(reg, temp | FDI_RX_ENABLE);
2586
2587 POSTING_READ(reg);
2588 udelay(150);
2589
Akshay Joshi0206e352011-08-16 15:34:10 -04002590 for (i = 0; i < 4; i++) {
Jesse Barnes357555c2011-04-28 15:09:55 -07002591 reg = FDI_TX_CTL(pipe);
2592 temp = I915_READ(reg);
2593 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2594 temp |= snb_b_fdi_train_param[i];
2595 I915_WRITE(reg, temp);
2596
2597 POSTING_READ(reg);
2598 udelay(500);
2599
2600 reg = FDI_RX_IIR(pipe);
2601 temp = I915_READ(reg);
2602 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2603
2604 if (temp & FDI_RX_BIT_LOCK ||
2605 (I915_READ(reg) & FDI_RX_BIT_LOCK)) {
2606 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
Daniel Vetter01a415f2012-10-27 15:58:40 +02002607 DRM_DEBUG_KMS("FDI train 1 done, level %i.\n", i);
Jesse Barnes357555c2011-04-28 15:09:55 -07002608 break;
2609 }
2610 }
2611 if (i == 4)
2612 DRM_ERROR("FDI train 1 fail!\n");
2613
2614 /* Train 2 */
2615 reg = FDI_TX_CTL(pipe);
2616 temp = I915_READ(reg);
2617 temp &= ~FDI_LINK_TRAIN_NONE_IVB;
2618 temp |= FDI_LINK_TRAIN_PATTERN_2_IVB;
2619 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2620 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
2621 I915_WRITE(reg, temp);
2622
2623 reg = FDI_RX_CTL(pipe);
2624 temp = I915_READ(reg);
2625 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2626 temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
2627 I915_WRITE(reg, temp);
2628
2629 POSTING_READ(reg);
2630 udelay(150);
2631
Akshay Joshi0206e352011-08-16 15:34:10 -04002632 for (i = 0; i < 4; i++) {
Jesse Barnes357555c2011-04-28 15:09:55 -07002633 reg = FDI_TX_CTL(pipe);
2634 temp = I915_READ(reg);
2635 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2636 temp |= snb_b_fdi_train_param[i];
2637 I915_WRITE(reg, temp);
2638
2639 POSTING_READ(reg);
2640 udelay(500);
2641
2642 reg = FDI_RX_IIR(pipe);
2643 temp = I915_READ(reg);
2644 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2645
2646 if (temp & FDI_RX_SYMBOL_LOCK) {
2647 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
Daniel Vetter01a415f2012-10-27 15:58:40 +02002648 DRM_DEBUG_KMS("FDI train 2 done, level %i.\n", i);
Jesse Barnes357555c2011-04-28 15:09:55 -07002649 break;
2650 }
2651 }
2652 if (i == 4)
2653 DRM_ERROR("FDI train 2 fail!\n");
2654
2655 DRM_DEBUG_KMS("FDI train done.\n");
2656}
2657
Daniel Vetter88cefb62012-08-12 19:27:14 +02002658static void ironlake_fdi_pll_enable(struct intel_crtc *intel_crtc)
Jesse Barnes0e23b992010-09-10 11:10:00 -07002659{
Daniel Vetter88cefb62012-08-12 19:27:14 +02002660 struct drm_device *dev = intel_crtc->base.dev;
Jesse Barnes0e23b992010-09-10 11:10:00 -07002661 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes0e23b992010-09-10 11:10:00 -07002662 int pipe = intel_crtc->pipe;
Chris Wilson5eddb702010-09-11 13:48:45 +01002663 u32 reg, temp;
Jesse Barnes0e23b992010-09-10 11:10:00 -07002664
Jesse Barnesc64e3112010-09-10 11:27:03 -07002665
Jesse Barnes0e23b992010-09-10 11:10:00 -07002666 /* enable PCH FDI RX PLL, wait warmup plus DMI latency */
Chris Wilson5eddb702010-09-11 13:48:45 +01002667 reg = FDI_RX_CTL(pipe);
2668 temp = I915_READ(reg);
Daniel Vetter627eb5a2013-04-29 19:33:42 +02002669 temp &= ~(FDI_DP_PORT_WIDTH_MASK | (0x7 << 16));
2670 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config.fdi_lanes);
Daniel Vetterdfd07d72012-12-17 11:21:38 +01002671 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
Chris Wilson5eddb702010-09-11 13:48:45 +01002672 I915_WRITE(reg, temp | FDI_RX_PLL_ENABLE);
2673
2674 POSTING_READ(reg);
Jesse Barnes0e23b992010-09-10 11:10:00 -07002675 udelay(200);
2676
2677 /* Switch from Rawclk to PCDclk */
Chris Wilson5eddb702010-09-11 13:48:45 +01002678 temp = I915_READ(reg);
2679 I915_WRITE(reg, temp | FDI_PCDCLK);
2680
2681 POSTING_READ(reg);
Jesse Barnes0e23b992010-09-10 11:10:00 -07002682 udelay(200);
2683
Paulo Zanoni20749732012-11-23 15:30:38 -02002684 /* Enable CPU FDI TX PLL, always on for Ironlake */
2685 reg = FDI_TX_CTL(pipe);
2686 temp = I915_READ(reg);
2687 if ((temp & FDI_TX_PLL_ENABLE) == 0) {
2688 I915_WRITE(reg, temp | FDI_TX_PLL_ENABLE);
Chris Wilson5eddb702010-09-11 13:48:45 +01002689
Paulo Zanoni20749732012-11-23 15:30:38 -02002690 POSTING_READ(reg);
2691 udelay(100);
Jesse Barnes0e23b992010-09-10 11:10:00 -07002692 }
2693}
2694
Daniel Vetter88cefb62012-08-12 19:27:14 +02002695static void ironlake_fdi_pll_disable(struct intel_crtc *intel_crtc)
2696{
2697 struct drm_device *dev = intel_crtc->base.dev;
2698 struct drm_i915_private *dev_priv = dev->dev_private;
2699 int pipe = intel_crtc->pipe;
2700 u32 reg, temp;
2701
2702 /* Switch from PCDclk to Rawclk */
2703 reg = FDI_RX_CTL(pipe);
2704 temp = I915_READ(reg);
2705 I915_WRITE(reg, temp & ~FDI_PCDCLK);
2706
2707 /* Disable CPU FDI TX PLL */
2708 reg = FDI_TX_CTL(pipe);
2709 temp = I915_READ(reg);
2710 I915_WRITE(reg, temp & ~FDI_TX_PLL_ENABLE);
2711
2712 POSTING_READ(reg);
2713 udelay(100);
2714
2715 reg = FDI_RX_CTL(pipe);
2716 temp = I915_READ(reg);
2717 I915_WRITE(reg, temp & ~FDI_RX_PLL_ENABLE);
2718
2719 /* Wait for the clocks to turn off. */
2720 POSTING_READ(reg);
2721 udelay(100);
2722}
2723
Jesse Barnes0fc932b2011-01-04 15:09:37 -08002724static void ironlake_fdi_disable(struct drm_crtc *crtc)
2725{
2726 struct drm_device *dev = crtc->dev;
2727 struct drm_i915_private *dev_priv = dev->dev_private;
2728 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2729 int pipe = intel_crtc->pipe;
2730 u32 reg, temp;
2731
2732 /* disable CPU FDI tx and PCH FDI rx */
2733 reg = FDI_TX_CTL(pipe);
2734 temp = I915_READ(reg);
2735 I915_WRITE(reg, temp & ~FDI_TX_ENABLE);
2736 POSTING_READ(reg);
2737
2738 reg = FDI_RX_CTL(pipe);
2739 temp = I915_READ(reg);
2740 temp &= ~(0x7 << 16);
Daniel Vetterdfd07d72012-12-17 11:21:38 +01002741 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
Jesse Barnes0fc932b2011-01-04 15:09:37 -08002742 I915_WRITE(reg, temp & ~FDI_RX_ENABLE);
2743
2744 POSTING_READ(reg);
2745 udelay(100);
2746
2747 /* Ironlake workaround, disable clock pointer after downing FDI */
Jesse Barnes6f06ce12011-01-04 15:09:38 -08002748 if (HAS_PCH_IBX(dev)) {
2749 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR);
Jesse Barnes6f06ce12011-01-04 15:09:38 -08002750 }
Jesse Barnes0fc932b2011-01-04 15:09:37 -08002751
2752 /* still set train pattern 1 */
2753 reg = FDI_TX_CTL(pipe);
2754 temp = I915_READ(reg);
2755 temp &= ~FDI_LINK_TRAIN_NONE;
2756 temp |= FDI_LINK_TRAIN_PATTERN_1;
2757 I915_WRITE(reg, temp);
2758
2759 reg = FDI_RX_CTL(pipe);
2760 temp = I915_READ(reg);
2761 if (HAS_PCH_CPT(dev)) {
2762 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2763 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
2764 } else {
2765 temp &= ~FDI_LINK_TRAIN_NONE;
2766 temp |= FDI_LINK_TRAIN_PATTERN_1;
2767 }
2768 /* BPC in FDI rx is consistent with that in PIPECONF */
2769 temp &= ~(0x07 << 16);
Daniel Vetterdfd07d72012-12-17 11:21:38 +01002770 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
Jesse Barnes0fc932b2011-01-04 15:09:37 -08002771 I915_WRITE(reg, temp);
2772
2773 POSTING_READ(reg);
2774 udelay(100);
2775}
2776
Chris Wilson5bb61642012-09-27 21:25:58 +01002777static bool intel_crtc_has_pending_flip(struct drm_crtc *crtc)
2778{
2779 struct drm_device *dev = crtc->dev;
2780 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä10d83732013-01-29 18:13:34 +02002781 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Chris Wilson5bb61642012-09-27 21:25:58 +01002782 unsigned long flags;
2783 bool pending;
2784
Ville Syrjälä10d83732013-01-29 18:13:34 +02002785 if (i915_reset_in_progress(&dev_priv->gpu_error) ||
2786 intel_crtc->reset_counter != atomic_read(&dev_priv->gpu_error.reset_counter))
Chris Wilson5bb61642012-09-27 21:25:58 +01002787 return false;
2788
2789 spin_lock_irqsave(&dev->event_lock, flags);
2790 pending = to_intel_crtc(crtc)->unpin_work != NULL;
2791 spin_unlock_irqrestore(&dev->event_lock, flags);
2792
2793 return pending;
2794}
2795
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01002796static void intel_crtc_wait_for_pending_flips(struct drm_crtc *crtc)
2797{
Chris Wilson0f911282012-04-17 10:05:38 +01002798 struct drm_device *dev = crtc->dev;
Chris Wilson5bb61642012-09-27 21:25:58 +01002799 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01002800
2801 if (crtc->fb == NULL)
2802 return;
2803
Daniel Vetter2c10d572012-12-20 21:24:07 +01002804 WARN_ON(waitqueue_active(&dev_priv->pending_flip_queue));
2805
Chris Wilson5bb61642012-09-27 21:25:58 +01002806 wait_event(dev_priv->pending_flip_queue,
2807 !intel_crtc_has_pending_flip(crtc));
2808
Chris Wilson0f911282012-04-17 10:05:38 +01002809 mutex_lock(&dev->struct_mutex);
2810 intel_finish_fb(crtc->fb);
2811 mutex_unlock(&dev->struct_mutex);
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01002812}
2813
Eugeni Dodonove615efe2012-05-09 15:37:26 -03002814/* Program iCLKIP clock to the desired frequency */
2815static void lpt_program_iclkip(struct drm_crtc *crtc)
2816{
2817 struct drm_device *dev = crtc->dev;
2818 struct drm_i915_private *dev_priv = dev->dev_private;
2819 u32 divsel, phaseinc, auxdiv, phasedir = 0;
2820 u32 temp;
2821
Daniel Vetter09153002012-12-12 14:06:44 +01002822 mutex_lock(&dev_priv->dpio_lock);
2823
Eugeni Dodonove615efe2012-05-09 15:37:26 -03002824 /* It is necessary to ungate the pixclk gate prior to programming
2825 * the divisors, and gate it back when it is done.
2826 */
2827 I915_WRITE(PIXCLK_GATE, PIXCLK_GATE_GATE);
2828
2829 /* Disable SSCCTL */
2830 intel_sbi_write(dev_priv, SBI_SSCCTL6,
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02002831 intel_sbi_read(dev_priv, SBI_SSCCTL6, SBI_ICLK) |
2832 SBI_SSCCTL_DISABLE,
2833 SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03002834
2835 /* 20MHz is a corner case which is out of range for the 7-bit divisor */
2836 if (crtc->mode.clock == 20000) {
2837 auxdiv = 1;
2838 divsel = 0x41;
2839 phaseinc = 0x20;
2840 } else {
2841 /* The iCLK virtual clock root frequency is in MHz,
2842 * but the crtc->mode.clock in in KHz. To get the divisors,
2843 * it is necessary to divide one by another, so we
2844 * convert the virtual clock precision to KHz here for higher
2845 * precision.
2846 */
2847 u32 iclk_virtual_root_freq = 172800 * 1000;
2848 u32 iclk_pi_range = 64;
2849 u32 desired_divisor, msb_divisor_value, pi_value;
2850
2851 desired_divisor = (iclk_virtual_root_freq / crtc->mode.clock);
2852 msb_divisor_value = desired_divisor / iclk_pi_range;
2853 pi_value = desired_divisor % iclk_pi_range;
2854
2855 auxdiv = 0;
2856 divsel = msb_divisor_value - 2;
2857 phaseinc = pi_value;
2858 }
2859
2860 /* This should not happen with any sane values */
2861 WARN_ON(SBI_SSCDIVINTPHASE_DIVSEL(divsel) &
2862 ~SBI_SSCDIVINTPHASE_DIVSEL_MASK);
2863 WARN_ON(SBI_SSCDIVINTPHASE_DIR(phasedir) &
2864 ~SBI_SSCDIVINTPHASE_INCVAL_MASK);
2865
2866 DRM_DEBUG_KMS("iCLKIP clock: found settings for %dKHz refresh rate: auxdiv=%x, divsel=%x, phasedir=%x, phaseinc=%x\n",
2867 crtc->mode.clock,
2868 auxdiv,
2869 divsel,
2870 phasedir,
2871 phaseinc);
2872
2873 /* Program SSCDIVINTPHASE6 */
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02002874 temp = intel_sbi_read(dev_priv, SBI_SSCDIVINTPHASE6, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03002875 temp &= ~SBI_SSCDIVINTPHASE_DIVSEL_MASK;
2876 temp |= SBI_SSCDIVINTPHASE_DIVSEL(divsel);
2877 temp &= ~SBI_SSCDIVINTPHASE_INCVAL_MASK;
2878 temp |= SBI_SSCDIVINTPHASE_INCVAL(phaseinc);
2879 temp |= SBI_SSCDIVINTPHASE_DIR(phasedir);
2880 temp |= SBI_SSCDIVINTPHASE_PROPAGATE;
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02002881 intel_sbi_write(dev_priv, SBI_SSCDIVINTPHASE6, temp, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03002882
2883 /* Program SSCAUXDIV */
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02002884 temp = intel_sbi_read(dev_priv, SBI_SSCAUXDIV6, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03002885 temp &= ~SBI_SSCAUXDIV_FINALDIV2SEL(1);
2886 temp |= SBI_SSCAUXDIV_FINALDIV2SEL(auxdiv);
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02002887 intel_sbi_write(dev_priv, SBI_SSCAUXDIV6, temp, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03002888
2889 /* Enable modulator and associated divider */
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02002890 temp = intel_sbi_read(dev_priv, SBI_SSCCTL6, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03002891 temp &= ~SBI_SSCCTL_DISABLE;
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02002892 intel_sbi_write(dev_priv, SBI_SSCCTL6, temp, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03002893
2894 /* Wait for initialization time */
2895 udelay(24);
2896
2897 I915_WRITE(PIXCLK_GATE, PIXCLK_GATE_UNGATE);
Daniel Vetter09153002012-12-12 14:06:44 +01002898
2899 mutex_unlock(&dev_priv->dpio_lock);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03002900}
2901
Daniel Vetter275f01b22013-05-03 11:49:47 +02002902static void ironlake_pch_transcoder_set_timings(struct intel_crtc *crtc,
2903 enum pipe pch_transcoder)
2904{
2905 struct drm_device *dev = crtc->base.dev;
2906 struct drm_i915_private *dev_priv = dev->dev_private;
2907 enum transcoder cpu_transcoder = crtc->config.cpu_transcoder;
2908
2909 I915_WRITE(PCH_TRANS_HTOTAL(pch_transcoder),
2910 I915_READ(HTOTAL(cpu_transcoder)));
2911 I915_WRITE(PCH_TRANS_HBLANK(pch_transcoder),
2912 I915_READ(HBLANK(cpu_transcoder)));
2913 I915_WRITE(PCH_TRANS_HSYNC(pch_transcoder),
2914 I915_READ(HSYNC(cpu_transcoder)));
2915
2916 I915_WRITE(PCH_TRANS_VTOTAL(pch_transcoder),
2917 I915_READ(VTOTAL(cpu_transcoder)));
2918 I915_WRITE(PCH_TRANS_VBLANK(pch_transcoder),
2919 I915_READ(VBLANK(cpu_transcoder)));
2920 I915_WRITE(PCH_TRANS_VSYNC(pch_transcoder),
2921 I915_READ(VSYNC(cpu_transcoder)));
2922 I915_WRITE(PCH_TRANS_VSYNCSHIFT(pch_transcoder),
2923 I915_READ(VSYNCSHIFT(cpu_transcoder)));
2924}
2925
Jesse Barnesf67a5592011-01-05 10:31:48 -08002926/*
2927 * Enable PCH resources required for PCH ports:
2928 * - PCH PLLs
2929 * - FDI training & RX/TX
2930 * - update transcoder timings
2931 * - DP transcoding bits
2932 * - transcoder
2933 */
2934static void ironlake_pch_enable(struct drm_crtc *crtc)
Jesse Barnes79e53942008-11-07 14:24:08 -08002935{
2936 struct drm_device *dev = crtc->dev;
Zhenyu Wang2c072452009-06-05 15:38:42 +08002937 struct drm_i915_private *dev_priv = dev->dev_private;
2938 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2939 int pipe = intel_crtc->pipe;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01002940 u32 reg, temp;
Jesse Barnes6be4a602010-09-10 10:26:01 -07002941
Daniel Vetterab9412b2013-05-03 11:49:46 +02002942 assert_pch_transcoder_disabled(dev_priv, pipe);
Chris Wilsone7e164d2012-05-11 09:21:25 +01002943
Daniel Vettercd986ab2012-10-26 10:58:12 +02002944 /* Write the TU size bits before fdi link training, so that error
2945 * detection works. */
2946 I915_WRITE(FDI_RX_TUSIZE1(pipe),
2947 I915_READ(PIPE_DATA_M1(pipe)) & TU_SIZE_MASK);
2948
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002949 /* For PCH output, training FDI link */
Jesse Barnes674cf962011-04-28 14:27:04 -07002950 dev_priv->display.fdi_link_train(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002951
Daniel Vetter572deb32012-10-27 18:46:14 +02002952 /* XXX: pch pll's can be enabled any time before we enable the PCH
2953 * transcoder, and we actually should do this to not upset any PCH
2954 * transcoder that already use the clock when we share it.
2955 *
2956 * Note that enable_pch_pll tries to do the right thing, but get_pch_pll
2957 * unconditionally resets the pll - we need that to have the right LVDS
2958 * enable sequence. */
Paulo Zanonib6b4e182012-10-31 18:12:38 -02002959 ironlake_enable_pch_pll(intel_crtc);
Chris Wilson6f13b7b2012-05-13 09:54:09 +01002960
Paulo Zanoni303b81e2012-10-31 18:12:23 -02002961 if (HAS_PCH_CPT(dev)) {
Jesse Barnesee7b9f92012-04-20 17:11:53 +01002962 u32 sel;
Jesse Barnes4b645f12011-10-12 09:51:31 -07002963
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002964 temp = I915_READ(PCH_DPLL_SEL);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01002965 switch (pipe) {
2966 default:
2967 case 0:
2968 temp |= TRANSA_DPLL_ENABLE;
2969 sel = TRANSA_DPLLB_SEL;
2970 break;
2971 case 1:
2972 temp |= TRANSB_DPLL_ENABLE;
2973 sel = TRANSB_DPLLB_SEL;
2974 break;
2975 case 2:
2976 temp |= TRANSC_DPLL_ENABLE;
2977 sel = TRANSC_DPLLB_SEL;
2978 break;
Jesse Barnesd64311a2011-10-12 15:01:33 -07002979 }
Jesse Barnesee7b9f92012-04-20 17:11:53 +01002980 if (intel_crtc->pch_pll->pll_reg == _PCH_DPLL_B)
2981 temp |= sel;
2982 else
2983 temp &= ~sel;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002984 I915_WRITE(PCH_DPLL_SEL, temp);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002985 }
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002986
Jesse Barnesd9b6cb52011-01-04 15:09:35 -08002987 /* set transcoder timing, panel must allow it */
2988 assert_panel_unlocked(dev_priv, pipe);
Daniel Vetter275f01b22013-05-03 11:49:47 +02002989 ironlake_pch_transcoder_set_timings(intel_crtc, pipe);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002990
Paulo Zanoni303b81e2012-10-31 18:12:23 -02002991 intel_fdi_normal_train(crtc);
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08002992
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002993 /* For PCH DP, enable TRANS_DP_CTL */
2994 if (HAS_PCH_CPT(dev) &&
Keith Packard417e8222011-11-01 19:54:11 -07002995 (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT) ||
2996 intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP))) {
Daniel Vetterdfd07d72012-12-17 11:21:38 +01002997 u32 bpc = (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) >> 5;
Chris Wilson5eddb702010-09-11 13:48:45 +01002998 reg = TRANS_DP_CTL(pipe);
2999 temp = I915_READ(reg);
3000 temp &= ~(TRANS_DP_PORT_SEL_MASK |
Eric Anholt220cad32010-11-18 09:32:58 +08003001 TRANS_DP_SYNC_MASK |
3002 TRANS_DP_BPC_MASK);
Chris Wilson5eddb702010-09-11 13:48:45 +01003003 temp |= (TRANS_DP_OUTPUT_ENABLE |
3004 TRANS_DP_ENH_FRAMING);
Jesse Barnes9325c9f2011-06-24 12:19:21 -07003005 temp |= bpc << 9; /* same format but at 11:9 */
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003006
3007 if (crtc->mode.flags & DRM_MODE_FLAG_PHSYNC)
Chris Wilson5eddb702010-09-11 13:48:45 +01003008 temp |= TRANS_DP_HSYNC_ACTIVE_HIGH;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003009 if (crtc->mode.flags & DRM_MODE_FLAG_PVSYNC)
Chris Wilson5eddb702010-09-11 13:48:45 +01003010 temp |= TRANS_DP_VSYNC_ACTIVE_HIGH;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003011
3012 switch (intel_trans_dp_port_sel(crtc)) {
3013 case PCH_DP_B:
Chris Wilson5eddb702010-09-11 13:48:45 +01003014 temp |= TRANS_DP_PORT_SEL_B;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003015 break;
3016 case PCH_DP_C:
Chris Wilson5eddb702010-09-11 13:48:45 +01003017 temp |= TRANS_DP_PORT_SEL_C;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003018 break;
3019 case PCH_DP_D:
Chris Wilson5eddb702010-09-11 13:48:45 +01003020 temp |= TRANS_DP_PORT_SEL_D;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003021 break;
3022 default:
Daniel Vettere95d41e2012-10-26 10:58:16 +02003023 BUG();
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003024 }
3025
Chris Wilson5eddb702010-09-11 13:48:45 +01003026 I915_WRITE(reg, temp);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003027 }
3028
Paulo Zanonib8a4f402012-10-31 18:12:42 -02003029 ironlake_enable_pch_transcoder(dev_priv, pipe);
Jesse Barnesf67a5592011-01-05 10:31:48 -08003030}
3031
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003032static void lpt_pch_enable(struct drm_crtc *crtc)
3033{
3034 struct drm_device *dev = crtc->dev;
3035 struct drm_i915_private *dev_priv = dev->dev_private;
3036 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter3b117c82013-04-17 20:15:07 +02003037 enum transcoder cpu_transcoder = intel_crtc->config.cpu_transcoder;
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003038
Daniel Vetterab9412b2013-05-03 11:49:46 +02003039 assert_pch_transcoder_disabled(dev_priv, TRANSCODER_A);
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003040
Paulo Zanoni8c52b5e2012-10-31 18:12:24 -02003041 lpt_program_iclkip(crtc);
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003042
Paulo Zanoni0540e482012-10-31 18:12:40 -02003043 /* Set transcoder timing. */
Daniel Vetter275f01b22013-05-03 11:49:47 +02003044 ironlake_pch_transcoder_set_timings(intel_crtc, PIPE_A);
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003045
Paulo Zanoni937bb612012-10-31 18:12:47 -02003046 lpt_enable_pch_transcoder(dev_priv, cpu_transcoder);
Jesse Barnesf67a5592011-01-05 10:31:48 -08003047}
3048
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003049static void intel_put_pch_pll(struct intel_crtc *intel_crtc)
3050{
3051 struct intel_pch_pll *pll = intel_crtc->pch_pll;
3052
3053 if (pll == NULL)
3054 return;
3055
3056 if (pll->refcount == 0) {
3057 WARN(1, "bad PCH PLL refcount\n");
3058 return;
3059 }
3060
3061 --pll->refcount;
3062 intel_crtc->pch_pll = NULL;
3063}
3064
3065static struct intel_pch_pll *intel_get_pch_pll(struct intel_crtc *intel_crtc, u32 dpll, u32 fp)
3066{
3067 struct drm_i915_private *dev_priv = intel_crtc->base.dev->dev_private;
3068 struct intel_pch_pll *pll;
3069 int i;
3070
3071 pll = intel_crtc->pch_pll;
3072 if (pll) {
3073 DRM_DEBUG_KMS("CRTC:%d reusing existing PCH PLL %x\n",
3074 intel_crtc->base.base.id, pll->pll_reg);
3075 goto prepare;
3076 }
3077
Daniel Vetter98b6bd92012-05-20 20:00:25 +02003078 if (HAS_PCH_IBX(dev_priv->dev)) {
3079 /* Ironlake PCH has a fixed PLL->PCH pipe mapping. */
3080 i = intel_crtc->pipe;
3081 pll = &dev_priv->pch_plls[i];
3082
3083 DRM_DEBUG_KMS("CRTC:%d using pre-allocated PCH PLL %x\n",
3084 intel_crtc->base.base.id, pll->pll_reg);
3085
3086 goto found;
3087 }
3088
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003089 for (i = 0; i < dev_priv->num_pch_pll; i++) {
3090 pll = &dev_priv->pch_plls[i];
3091
3092 /* Only want to check enabled timings first */
3093 if (pll->refcount == 0)
3094 continue;
3095
3096 if (dpll == (I915_READ(pll->pll_reg) & 0x7fffffff) &&
3097 fp == I915_READ(pll->fp0_reg)) {
3098 DRM_DEBUG_KMS("CRTC:%d sharing existing PCH PLL %x (refcount %d, ative %d)\n",
3099 intel_crtc->base.base.id,
3100 pll->pll_reg, pll->refcount, pll->active);
3101
3102 goto found;
3103 }
3104 }
3105
3106 /* Ok no matching timings, maybe there's a free one? */
3107 for (i = 0; i < dev_priv->num_pch_pll; i++) {
3108 pll = &dev_priv->pch_plls[i];
3109 if (pll->refcount == 0) {
3110 DRM_DEBUG_KMS("CRTC:%d allocated PCH PLL %x\n",
3111 intel_crtc->base.base.id, pll->pll_reg);
3112 goto found;
3113 }
3114 }
3115
3116 return NULL;
3117
3118found:
3119 intel_crtc->pch_pll = pll;
3120 pll->refcount++;
Ville Syrjälä84f44ce2013-04-17 17:48:49 +03003121 DRM_DEBUG_DRIVER("using pll %d for pipe %c\n", i, pipe_name(intel_crtc->pipe));
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003122prepare: /* separate function? */
3123 DRM_DEBUG_DRIVER("switching PLL %x off\n", pll->pll_reg);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003124
Chris Wilsone04c7352012-05-02 20:43:56 +01003125 /* Wait for the clocks to stabilize before rewriting the regs */
3126 I915_WRITE(pll->pll_reg, dpll & ~DPLL_VCO_ENABLE);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003127 POSTING_READ(pll->pll_reg);
3128 udelay(150);
Chris Wilsone04c7352012-05-02 20:43:56 +01003129
3130 I915_WRITE(pll->fp0_reg, fp);
3131 I915_WRITE(pll->pll_reg, dpll & ~DPLL_VCO_ENABLE);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003132 pll->on = false;
3133 return pll;
3134}
3135
Daniel Vettera1520312013-05-03 11:49:50 +02003136static void cpt_verify_modeset(struct drm_device *dev, int pipe)
Jesse Barnesd4270e52011-10-11 10:43:02 -07003137{
3138 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter23670b322012-11-01 09:15:30 +01003139 int dslreg = PIPEDSL(pipe);
Jesse Barnesd4270e52011-10-11 10:43:02 -07003140 u32 temp;
3141
3142 temp = I915_READ(dslreg);
3143 udelay(500);
3144 if (wait_for(I915_READ(dslreg) != temp, 5)) {
Jesse Barnesd4270e52011-10-11 10:43:02 -07003145 if (wait_for(I915_READ(dslreg) != temp, 5))
Ville Syrjälä84f44ce2013-04-17 17:48:49 +03003146 DRM_ERROR("mode set failed: pipe %c stuck\n", pipe_name(pipe));
Jesse Barnesd4270e52011-10-11 10:43:02 -07003147 }
3148}
3149
Jesse Barnesb074cec2013-04-25 12:55:02 -07003150static void ironlake_pfit_enable(struct intel_crtc *crtc)
3151{
3152 struct drm_device *dev = crtc->base.dev;
3153 struct drm_i915_private *dev_priv = dev->dev_private;
3154 int pipe = crtc->pipe;
3155
Jesse Barnes0ef37f32013-05-03 13:26:37 -07003156 if (crtc->config.pch_pfit.size) {
Jesse Barnesb074cec2013-04-25 12:55:02 -07003157 /* Force use of hard-coded filter coefficients
3158 * as some pre-programmed values are broken,
3159 * e.g. x201.
3160 */
3161 if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev))
3162 I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3 |
3163 PF_PIPE_SEL_IVB(pipe));
3164 else
3165 I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3);
3166 I915_WRITE(PF_WIN_POS(pipe), crtc->config.pch_pfit.pos);
3167 I915_WRITE(PF_WIN_SZ(pipe), crtc->config.pch_pfit.size);
3168 }
3169}
3170
Jesse Barnesf67a5592011-01-05 10:31:48 -08003171static void ironlake_crtc_enable(struct drm_crtc *crtc)
3172{
3173 struct drm_device *dev = crtc->dev;
3174 struct drm_i915_private *dev_priv = dev->dev_private;
3175 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02003176 struct intel_encoder *encoder;
Jesse Barnesf67a5592011-01-05 10:31:48 -08003177 int pipe = intel_crtc->pipe;
3178 int plane = intel_crtc->plane;
3179 u32 temp;
Jesse Barnesf67a5592011-01-05 10:31:48 -08003180
Daniel Vetter08a48462012-07-02 11:43:47 +02003181 WARN_ON(!crtc->enabled);
3182
Jesse Barnesf67a5592011-01-05 10:31:48 -08003183 if (intel_crtc->active)
3184 return;
3185
3186 intel_crtc->active = true;
Paulo Zanoni86642812013-04-12 17:57:57 -03003187
3188 intel_set_cpu_fifo_underrun_reporting(dev, pipe, true);
3189 intel_set_pch_fifo_underrun_reporting(dev, pipe, true);
3190
Jesse Barnesf67a5592011-01-05 10:31:48 -08003191 intel_update_watermarks(dev);
3192
3193 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
3194 temp = I915_READ(PCH_LVDS);
3195 if ((temp & LVDS_PORT_EN) == 0)
3196 I915_WRITE(PCH_LVDS, temp | LVDS_PORT_EN);
3197 }
3198
Jesse Barnesf67a5592011-01-05 10:31:48 -08003199
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01003200 if (intel_crtc->config.has_pch_encoder) {
Daniel Vetterfff367c2012-10-27 15:50:28 +02003201 /* Note: FDI PLL enabling _must_ be done before we enable the
3202 * cpu pipes, hence this is separate from all the other fdi/pch
3203 * enabling. */
Daniel Vetter88cefb62012-08-12 19:27:14 +02003204 ironlake_fdi_pll_enable(intel_crtc);
Daniel Vetter46b6f812012-09-06 22:08:33 +02003205 } else {
3206 assert_fdi_tx_disabled(dev_priv, pipe);
3207 assert_fdi_rx_disabled(dev_priv, pipe);
3208 }
Jesse Barnesf67a5592011-01-05 10:31:48 -08003209
Daniel Vetterbf49ec82012-09-06 22:15:40 +02003210 for_each_encoder_on_crtc(dev, crtc, encoder)
3211 if (encoder->pre_enable)
3212 encoder->pre_enable(encoder);
Jesse Barnesf67a5592011-01-05 10:31:48 -08003213
3214 /* Enable panel fitting for LVDS */
Jesse Barnesb074cec2013-04-25 12:55:02 -07003215 ironlake_pfit_enable(intel_crtc);
Jesse Barnesf67a5592011-01-05 10:31:48 -08003216
Jesse Barnes9c54c0d2011-06-15 23:32:33 +02003217 /*
3218 * On ILK+ LUT must be loaded before the pipe is running but with
3219 * clocks enabled
3220 */
3221 intel_crtc_load_lut(crtc);
3222
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01003223 intel_enable_pipe(dev_priv, pipe,
3224 intel_crtc->config.has_pch_encoder);
Jesse Barnesf67a5592011-01-05 10:31:48 -08003225 intel_enable_plane(dev_priv, plane, pipe);
3226
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01003227 if (intel_crtc->config.has_pch_encoder)
Jesse Barnesf67a5592011-01-05 10:31:48 -08003228 ironlake_pch_enable(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003229
Ben Widawskyd1ebd8162011-04-25 20:11:50 +01003230 mutex_lock(&dev->struct_mutex);
Chris Wilsonbed4a672010-09-11 10:47:47 +01003231 intel_update_fbc(dev);
Ben Widawskyd1ebd8162011-04-25 20:11:50 +01003232 mutex_unlock(&dev->struct_mutex);
3233
Chris Wilson6b383a72010-09-13 13:54:26 +01003234 intel_crtc_update_cursor(crtc, true);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02003235
Daniel Vetterfa5c73b2012-07-01 23:24:36 +02003236 for_each_encoder_on_crtc(dev, crtc, encoder)
3237 encoder->enable(encoder);
Daniel Vetter61b77dd2012-07-02 00:16:19 +02003238
3239 if (HAS_PCH_CPT(dev))
Daniel Vettera1520312013-05-03 11:49:50 +02003240 cpt_verify_modeset(dev, intel_crtc->pipe);
Daniel Vetter6ce94102012-10-04 19:20:03 +02003241
3242 /*
3243 * There seems to be a race in PCH platform hw (at least on some
3244 * outputs) where an enabled pipe still completes any pageflip right
3245 * away (as if the pipe is off) instead of waiting for vblank. As soon
3246 * as the first vblank happend, everything works as expected. Hence just
3247 * wait for one vblank before returning to avoid strange things
3248 * happening.
3249 */
3250 intel_wait_for_vblank(dev, intel_crtc->pipe);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003251}
3252
Paulo Zanoni42db64e2013-05-31 16:33:22 -03003253/* IPS only exists on ULT machines and is tied to pipe A. */
3254static bool hsw_crtc_supports_ips(struct intel_crtc *crtc)
3255{
3256 return IS_ULT(crtc->base.dev) && crtc->pipe == PIPE_A;
3257}
3258
3259static void hsw_enable_ips(struct intel_crtc *crtc)
3260{
3261 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
3262
3263 if (!crtc->config.ips_enabled)
3264 return;
3265
3266 /* We can only enable IPS after we enable a plane and wait for a vblank.
3267 * We guarantee that the plane is enabled by calling intel_enable_ips
3268 * only after intel_enable_plane. And intel_enable_plane already waits
3269 * for a vblank, so all we need to do here is to enable the IPS bit. */
3270 assert_plane_enabled(dev_priv, crtc->plane);
3271 I915_WRITE(IPS_CTL, IPS_ENABLE);
3272}
3273
3274static void hsw_disable_ips(struct intel_crtc *crtc)
3275{
3276 struct drm_device *dev = crtc->base.dev;
3277 struct drm_i915_private *dev_priv = dev->dev_private;
3278
3279 if (!crtc->config.ips_enabled)
3280 return;
3281
3282 assert_plane_enabled(dev_priv, crtc->plane);
3283 I915_WRITE(IPS_CTL, 0);
3284
3285 /* We need to wait for a vblank before we can disable the plane. */
3286 intel_wait_for_vblank(dev, crtc->pipe);
3287}
3288
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003289static void haswell_crtc_enable(struct drm_crtc *crtc)
3290{
3291 struct drm_device *dev = crtc->dev;
3292 struct drm_i915_private *dev_priv = dev->dev_private;
3293 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3294 struct intel_encoder *encoder;
3295 int pipe = intel_crtc->pipe;
3296 int plane = intel_crtc->plane;
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003297
3298 WARN_ON(!crtc->enabled);
3299
3300 if (intel_crtc->active)
3301 return;
3302
3303 intel_crtc->active = true;
Paulo Zanoni86642812013-04-12 17:57:57 -03003304
3305 intel_set_cpu_fifo_underrun_reporting(dev, pipe, true);
3306 if (intel_crtc->config.has_pch_encoder)
3307 intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_A, true);
3308
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003309 intel_update_watermarks(dev);
3310
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01003311 if (intel_crtc->config.has_pch_encoder)
Paulo Zanoni04945642012-11-01 21:00:59 -02003312 dev_priv->display.fdi_link_train(crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003313
3314 for_each_encoder_on_crtc(dev, crtc, encoder)
3315 if (encoder->pre_enable)
3316 encoder->pre_enable(encoder);
3317
Paulo Zanoni1f544382012-10-24 11:32:00 -02003318 intel_ddi_enable_pipe_clock(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003319
Paulo Zanoni1f544382012-10-24 11:32:00 -02003320 /* Enable panel fitting for eDP */
Jesse Barnesb074cec2013-04-25 12:55:02 -07003321 ironlake_pfit_enable(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003322
3323 /*
3324 * On ILK+ LUT must be loaded before the pipe is running but with
3325 * clocks enabled
3326 */
3327 intel_crtc_load_lut(crtc);
3328
Paulo Zanoni1f544382012-10-24 11:32:00 -02003329 intel_ddi_set_pipe_settings(crtc);
Damien Lespiau8228c252013-03-07 15:30:27 +00003330 intel_ddi_enable_transcoder_func(crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003331
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01003332 intel_enable_pipe(dev_priv, pipe,
3333 intel_crtc->config.has_pch_encoder);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003334 intel_enable_plane(dev_priv, plane, pipe);
3335
Paulo Zanoni42db64e2013-05-31 16:33:22 -03003336 hsw_enable_ips(intel_crtc);
3337
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01003338 if (intel_crtc->config.has_pch_encoder)
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003339 lpt_pch_enable(crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003340
3341 mutex_lock(&dev->struct_mutex);
3342 intel_update_fbc(dev);
3343 mutex_unlock(&dev->struct_mutex);
3344
3345 intel_crtc_update_cursor(crtc, true);
3346
3347 for_each_encoder_on_crtc(dev, crtc, encoder)
3348 encoder->enable(encoder);
3349
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003350 /*
3351 * There seems to be a race in PCH platform hw (at least on some
3352 * outputs) where an enabled pipe still completes any pageflip right
3353 * away (as if the pipe is off) instead of waiting for vblank. As soon
3354 * as the first vblank happend, everything works as expected. Hence just
3355 * wait for one vblank before returning to avoid strange things
3356 * happening.
3357 */
3358 intel_wait_for_vblank(dev, intel_crtc->pipe);
3359}
3360
Daniel Vetter3f8dce32013-05-08 10:36:30 +02003361static void ironlake_pfit_disable(struct intel_crtc *crtc)
3362{
3363 struct drm_device *dev = crtc->base.dev;
3364 struct drm_i915_private *dev_priv = dev->dev_private;
3365 int pipe = crtc->pipe;
3366
3367 /* To avoid upsetting the power well on haswell only disable the pfit if
3368 * it's in use. The hw state code will make sure we get this right. */
3369 if (crtc->config.pch_pfit.size) {
3370 I915_WRITE(PF_CTL(pipe), 0);
3371 I915_WRITE(PF_WIN_POS(pipe), 0);
3372 I915_WRITE(PF_WIN_SZ(pipe), 0);
3373 }
3374}
3375
Jesse Barnes6be4a602010-09-10 10:26:01 -07003376static void ironlake_crtc_disable(struct drm_crtc *crtc)
3377{
3378 struct drm_device *dev = crtc->dev;
3379 struct drm_i915_private *dev_priv = dev->dev_private;
3380 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02003381 struct intel_encoder *encoder;
Jesse Barnes6be4a602010-09-10 10:26:01 -07003382 int pipe = intel_crtc->pipe;
3383 int plane = intel_crtc->plane;
Chris Wilson5eddb702010-09-11 13:48:45 +01003384 u32 reg, temp;
Jesse Barnes6be4a602010-09-10 10:26:01 -07003385
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02003386
Chris Wilsonf7abfe82010-09-13 14:19:16 +01003387 if (!intel_crtc->active)
3388 return;
3389
Daniel Vetterea9d7582012-07-10 10:42:52 +02003390 for_each_encoder_on_crtc(dev, crtc, encoder)
3391 encoder->disable(encoder);
3392
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01003393 intel_crtc_wait_for_pending_flips(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003394 drm_vblank_off(dev, pipe);
Chris Wilson6b383a72010-09-13 13:54:26 +01003395 intel_crtc_update_cursor(crtc, false);
Chris Wilson5eddb702010-09-11 13:48:45 +01003396
Jesse Barnesb24e7172011-01-04 15:09:30 -08003397 intel_disable_plane(dev_priv, plane, pipe);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003398
Chris Wilson973d04f2011-07-08 12:22:37 +01003399 if (dev_priv->cfb_plane == plane)
3400 intel_disable_fbc(dev);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003401
Paulo Zanoni86642812013-04-12 17:57:57 -03003402 intel_set_pch_fifo_underrun_reporting(dev, pipe, false);
Jesse Barnesb24e7172011-01-04 15:09:30 -08003403 intel_disable_pipe(dev_priv, pipe);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003404
Daniel Vetter3f8dce32013-05-08 10:36:30 +02003405 ironlake_pfit_disable(intel_crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003406
Daniel Vetterbf49ec82012-09-06 22:15:40 +02003407 for_each_encoder_on_crtc(dev, crtc, encoder)
3408 if (encoder->post_disable)
3409 encoder->post_disable(encoder);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003410
Chris Wilson5eddb702010-09-11 13:48:45 +01003411 ironlake_fdi_disable(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003412
Paulo Zanonib8a4f402012-10-31 18:12:42 -02003413 ironlake_disable_pch_transcoder(dev_priv, pipe);
Paulo Zanoni86642812013-04-12 17:57:57 -03003414 intel_set_pch_fifo_underrun_reporting(dev, pipe, true);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003415
3416 if (HAS_PCH_CPT(dev)) {
3417 /* disable TRANS_DP_CTL */
Chris Wilson5eddb702010-09-11 13:48:45 +01003418 reg = TRANS_DP_CTL(pipe);
3419 temp = I915_READ(reg);
3420 temp &= ~(TRANS_DP_OUTPUT_ENABLE | TRANS_DP_PORT_SEL_MASK);
Eric Anholtcb3543c2011-02-02 12:08:07 -08003421 temp |= TRANS_DP_PORT_SEL_NONE;
Chris Wilson5eddb702010-09-11 13:48:45 +01003422 I915_WRITE(reg, temp);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003423
3424 /* disable DPLL_SEL */
3425 temp = I915_READ(PCH_DPLL_SEL);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08003426 switch (pipe) {
3427 case 0:
Jesse Barnesd64311a2011-10-12 15:01:33 -07003428 temp &= ~(TRANSA_DPLL_ENABLE | TRANSA_DPLLB_SEL);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08003429 break;
3430 case 1:
Jesse Barnes6be4a602010-09-10 10:26:01 -07003431 temp &= ~(TRANSB_DPLL_ENABLE | TRANSB_DPLLB_SEL);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08003432 break;
3433 case 2:
Jesse Barnes4b645f12011-10-12 09:51:31 -07003434 /* C shares PLL A or B */
Jesse Barnesd64311a2011-10-12 15:01:33 -07003435 temp &= ~(TRANSC_DPLL_ENABLE | TRANSC_DPLLB_SEL);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08003436 break;
3437 default:
3438 BUG(); /* wtf */
3439 }
Jesse Barnes6be4a602010-09-10 10:26:01 -07003440 I915_WRITE(PCH_DPLL_SEL, temp);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003441 }
3442
3443 /* disable PCH DPLL */
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003444 intel_disable_pch_pll(intel_crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003445
Daniel Vetter88cefb62012-08-12 19:27:14 +02003446 ironlake_fdi_pll_disable(intel_crtc);
Chris Wilson6b383a72010-09-13 13:54:26 +01003447
Chris Wilsonf7abfe82010-09-13 14:19:16 +01003448 intel_crtc->active = false;
Chris Wilson6b383a72010-09-13 13:54:26 +01003449 intel_update_watermarks(dev);
Ben Widawskyd1ebd8162011-04-25 20:11:50 +01003450
3451 mutex_lock(&dev->struct_mutex);
Chris Wilson6b383a72010-09-13 13:54:26 +01003452 intel_update_fbc(dev);
Ben Widawskyd1ebd8162011-04-25 20:11:50 +01003453 mutex_unlock(&dev->struct_mutex);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003454}
3455
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003456static void haswell_crtc_disable(struct drm_crtc *crtc)
3457{
3458 struct drm_device *dev = crtc->dev;
3459 struct drm_i915_private *dev_priv = dev->dev_private;
3460 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3461 struct intel_encoder *encoder;
3462 int pipe = intel_crtc->pipe;
3463 int plane = intel_crtc->plane;
Daniel Vetter3b117c82013-04-17 20:15:07 +02003464 enum transcoder cpu_transcoder = intel_crtc->config.cpu_transcoder;
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003465
3466 if (!intel_crtc->active)
3467 return;
3468
3469 for_each_encoder_on_crtc(dev, crtc, encoder)
3470 encoder->disable(encoder);
3471
3472 intel_crtc_wait_for_pending_flips(crtc);
3473 drm_vblank_off(dev, pipe);
3474 intel_crtc_update_cursor(crtc, false);
3475
Rodrigo Vivi891348b2013-05-06 19:37:36 -03003476 /* FBC must be disabled before disabling the plane on HSW. */
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003477 if (dev_priv->cfb_plane == plane)
3478 intel_disable_fbc(dev);
3479
Paulo Zanoni42db64e2013-05-31 16:33:22 -03003480 hsw_disable_ips(intel_crtc);
3481
Rodrigo Vivi891348b2013-05-06 19:37:36 -03003482 intel_disable_plane(dev_priv, plane, pipe);
3483
Paulo Zanoni86642812013-04-12 17:57:57 -03003484 if (intel_crtc->config.has_pch_encoder)
3485 intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_A, false);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003486 intel_disable_pipe(dev_priv, pipe);
3487
Paulo Zanoniad80a812012-10-24 16:06:19 -02003488 intel_ddi_disable_transcoder_func(dev_priv, cpu_transcoder);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003489
Daniel Vetter3f8dce32013-05-08 10:36:30 +02003490 ironlake_pfit_disable(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003491
Paulo Zanoni1f544382012-10-24 11:32:00 -02003492 intel_ddi_disable_pipe_clock(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003493
3494 for_each_encoder_on_crtc(dev, crtc, encoder)
3495 if (encoder->post_disable)
3496 encoder->post_disable(encoder);
3497
Daniel Vetter88adfff2013-03-28 10:42:01 +01003498 if (intel_crtc->config.has_pch_encoder) {
Paulo Zanoniab4d9662012-10-31 18:12:55 -02003499 lpt_disable_pch_transcoder(dev_priv);
Paulo Zanoni86642812013-04-12 17:57:57 -03003500 intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_A, true);
Paulo Zanoni1ad960f2012-11-01 21:05:05 -02003501 intel_ddi_fdi_disable(crtc);
Paulo Zanoni83616632012-10-23 18:29:54 -02003502 }
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003503
3504 intel_crtc->active = false;
3505 intel_update_watermarks(dev);
3506
3507 mutex_lock(&dev->struct_mutex);
3508 intel_update_fbc(dev);
3509 mutex_unlock(&dev->struct_mutex);
3510}
3511
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003512static void ironlake_crtc_off(struct drm_crtc *crtc)
3513{
3514 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3515 intel_put_pch_pll(intel_crtc);
3516}
3517
Paulo Zanoni6441ab52012-10-05 12:05:58 -03003518static void haswell_crtc_off(struct drm_crtc *crtc)
3519{
3520 intel_ddi_put_crtc_pll(crtc);
3521}
3522
Daniel Vetter02e792f2009-09-15 22:57:34 +02003523static void intel_crtc_dpms_overlay(struct intel_crtc *intel_crtc, bool enable)
3524{
Daniel Vetter02e792f2009-09-15 22:57:34 +02003525 if (!enable && intel_crtc->overlay) {
Chris Wilson23f09ce2010-08-12 13:53:37 +01003526 struct drm_device *dev = intel_crtc->base.dev;
Chris Wilsonce453d82011-02-21 14:43:56 +00003527 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter03f77ea2009-09-15 22:57:37 +02003528
Chris Wilson23f09ce2010-08-12 13:53:37 +01003529 mutex_lock(&dev->struct_mutex);
Chris Wilsonce453d82011-02-21 14:43:56 +00003530 dev_priv->mm.interruptible = false;
3531 (void) intel_overlay_switch_off(intel_crtc->overlay);
3532 dev_priv->mm.interruptible = true;
Chris Wilson23f09ce2010-08-12 13:53:37 +01003533 mutex_unlock(&dev->struct_mutex);
Daniel Vetter02e792f2009-09-15 22:57:34 +02003534 }
Daniel Vetter02e792f2009-09-15 22:57:34 +02003535
Chris Wilson5dcdbcb2010-08-12 13:50:28 +01003536 /* Let userspace switch the overlay on again. In most cases userspace
3537 * has to recompute where to put it anyway.
3538 */
Daniel Vetter02e792f2009-09-15 22:57:34 +02003539}
3540
Egbert Eich61bc95c2013-03-04 09:24:38 -05003541/**
3542 * i9xx_fixup_plane - ugly workaround for G45 to fire up the hardware
3543 * cursor plane briefly if not already running after enabling the display
3544 * plane.
3545 * This workaround avoids occasional blank screens when self refresh is
3546 * enabled.
3547 */
3548static void
3549g4x_fixup_plane(struct drm_i915_private *dev_priv, enum pipe pipe)
3550{
3551 u32 cntl = I915_READ(CURCNTR(pipe));
3552
3553 if ((cntl & CURSOR_MODE) == 0) {
3554 u32 fw_bcl_self = I915_READ(FW_BLC_SELF);
3555
3556 I915_WRITE(FW_BLC_SELF, fw_bcl_self & ~FW_BLC_SELF_EN);
3557 I915_WRITE(CURCNTR(pipe), CURSOR_MODE_64_ARGB_AX);
3558 intel_wait_for_vblank(dev_priv->dev, pipe);
3559 I915_WRITE(CURCNTR(pipe), cntl);
3560 I915_WRITE(CURBASE(pipe), I915_READ(CURBASE(pipe)));
3561 I915_WRITE(FW_BLC_SELF, fw_bcl_self);
3562 }
3563}
3564
Jesse Barnes2dd24552013-04-25 12:55:01 -07003565static void i9xx_pfit_enable(struct intel_crtc *crtc)
3566{
3567 struct drm_device *dev = crtc->base.dev;
3568 struct drm_i915_private *dev_priv = dev->dev_private;
3569 struct intel_crtc_config *pipe_config = &crtc->config;
3570
Daniel Vetter328d8e82013-05-08 10:36:31 +02003571 if (!crtc->config.gmch_pfit.control)
Jesse Barnes2dd24552013-04-25 12:55:01 -07003572 return;
3573
Daniel Vetterc0b03412013-05-28 12:05:54 +02003574 /*
3575 * The panel fitter should only be adjusted whilst the pipe is disabled,
3576 * according to register description and PRM.
3577 */
Jesse Barnes2dd24552013-04-25 12:55:01 -07003578 WARN_ON(I915_READ(PFIT_CONTROL) & PFIT_ENABLE);
3579 assert_pipe_disabled(dev_priv, crtc->pipe);
3580
Jesse Barnesb074cec2013-04-25 12:55:02 -07003581 I915_WRITE(PFIT_PGM_RATIOS, pipe_config->gmch_pfit.pgm_ratios);
3582 I915_WRITE(PFIT_CONTROL, pipe_config->gmch_pfit.control);
Daniel Vetter5a80c452013-04-25 22:52:18 +02003583
3584 /* Border color in case we don't scale up to the full screen. Black by
3585 * default, change to something else for debugging. */
3586 I915_WRITE(BCLRPAT(crtc->pipe), 0);
Jesse Barnes2dd24552013-04-25 12:55:01 -07003587}
3588
Jesse Barnes89b667f2013-04-18 14:51:36 -07003589static void valleyview_crtc_enable(struct drm_crtc *crtc)
3590{
3591 struct drm_device *dev = crtc->dev;
3592 struct drm_i915_private *dev_priv = dev->dev_private;
3593 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3594 struct intel_encoder *encoder;
3595 int pipe = intel_crtc->pipe;
3596 int plane = intel_crtc->plane;
3597
3598 WARN_ON(!crtc->enabled);
3599
3600 if (intel_crtc->active)
3601 return;
3602
3603 intel_crtc->active = true;
3604 intel_update_watermarks(dev);
3605
3606 mutex_lock(&dev_priv->dpio_lock);
3607
3608 for_each_encoder_on_crtc(dev, crtc, encoder)
3609 if (encoder->pre_pll_enable)
3610 encoder->pre_pll_enable(encoder);
3611
3612 intel_enable_pll(dev_priv, pipe);
3613
3614 for_each_encoder_on_crtc(dev, crtc, encoder)
3615 if (encoder->pre_enable)
3616 encoder->pre_enable(encoder);
3617
3618 /* VLV wants encoder enabling _before_ the pipe is up. */
3619 for_each_encoder_on_crtc(dev, crtc, encoder)
3620 encoder->enable(encoder);
3621
Jesse Barnes2dd24552013-04-25 12:55:01 -07003622 /* Enable panel fitting for eDP */
3623 i9xx_pfit_enable(intel_crtc);
3624
Jesse Barnes89b667f2013-04-18 14:51:36 -07003625 intel_enable_pipe(dev_priv, pipe, false);
3626 intel_enable_plane(dev_priv, plane, pipe);
3627
3628 intel_crtc_load_lut(crtc);
3629 intel_update_fbc(dev);
3630
3631 /* Give the overlay scaler a chance to enable if it's on this pipe */
3632 intel_crtc_dpms_overlay(intel_crtc, true);
3633 intel_crtc_update_cursor(crtc, true);
3634
3635 mutex_unlock(&dev_priv->dpio_lock);
3636}
3637
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003638static void i9xx_crtc_enable(struct drm_crtc *crtc)
Zhenyu Wang2c072452009-06-05 15:38:42 +08003639{
3640 struct drm_device *dev = crtc->dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08003641 struct drm_i915_private *dev_priv = dev->dev_private;
3642 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02003643 struct intel_encoder *encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08003644 int pipe = intel_crtc->pipe;
Jesse Barnes80824002009-09-10 15:28:06 -07003645 int plane = intel_crtc->plane;
Jesse Barnes79e53942008-11-07 14:24:08 -08003646
Daniel Vetter08a48462012-07-02 11:43:47 +02003647 WARN_ON(!crtc->enabled);
3648
Chris Wilsonf7abfe82010-09-13 14:19:16 +01003649 if (intel_crtc->active)
3650 return;
3651
3652 intel_crtc->active = true;
Chris Wilson6b383a72010-09-13 13:54:26 +01003653 intel_update_watermarks(dev);
3654
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08003655 intel_enable_pll(dev_priv, pipe);
Mika Kuoppala9d6d9f12013-02-08 16:35:38 +02003656
3657 for_each_encoder_on_crtc(dev, crtc, encoder)
3658 if (encoder->pre_enable)
3659 encoder->pre_enable(encoder);
3660
Jesse Barnes2dd24552013-04-25 12:55:01 -07003661 /* Enable panel fitting for LVDS */
3662 i9xx_pfit_enable(intel_crtc);
3663
Jesse Barnes040484a2011-01-03 12:14:26 -08003664 intel_enable_pipe(dev_priv, pipe, false);
Jesse Barnesb24e7172011-01-04 15:09:30 -08003665 intel_enable_plane(dev_priv, plane, pipe);
Egbert Eich61bc95c2013-03-04 09:24:38 -05003666 if (IS_G4X(dev))
3667 g4x_fixup_plane(dev_priv, pipe);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003668
3669 intel_crtc_load_lut(crtc);
Chris Wilsonbed4a672010-09-11 10:47:47 +01003670 intel_update_fbc(dev);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003671
3672 /* Give the overlay scaler a chance to enable if it's on this pipe */
3673 intel_crtc_dpms_overlay(intel_crtc, true);
Chris Wilson6b383a72010-09-13 13:54:26 +01003674 intel_crtc_update_cursor(crtc, true);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02003675
Daniel Vetterfa5c73b2012-07-01 23:24:36 +02003676 for_each_encoder_on_crtc(dev, crtc, encoder)
3677 encoder->enable(encoder);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003678}
3679
Daniel Vetter87476d62013-04-11 16:29:06 +02003680static void i9xx_pfit_disable(struct intel_crtc *crtc)
3681{
3682 struct drm_device *dev = crtc->base.dev;
3683 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter328d8e82013-05-08 10:36:31 +02003684
3685 if (!crtc->config.gmch_pfit.control)
3686 return;
Daniel Vetter87476d62013-04-11 16:29:06 +02003687
3688 assert_pipe_disabled(dev_priv, crtc->pipe);
3689
Daniel Vetter328d8e82013-05-08 10:36:31 +02003690 DRM_DEBUG_DRIVER("disabling pfit, current: 0x%08x\n",
3691 I915_READ(PFIT_CONTROL));
3692 I915_WRITE(PFIT_CONTROL, 0);
Daniel Vetter87476d62013-04-11 16:29:06 +02003693}
3694
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003695static void i9xx_crtc_disable(struct drm_crtc *crtc)
3696{
3697 struct drm_device *dev = crtc->dev;
3698 struct drm_i915_private *dev_priv = dev->dev_private;
3699 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02003700 struct intel_encoder *encoder;
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003701 int pipe = intel_crtc->pipe;
3702 int plane = intel_crtc->plane;
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02003703
Chris Wilsonf7abfe82010-09-13 14:19:16 +01003704 if (!intel_crtc->active)
3705 return;
3706
Daniel Vetterea9d7582012-07-10 10:42:52 +02003707 for_each_encoder_on_crtc(dev, crtc, encoder)
3708 encoder->disable(encoder);
3709
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003710 /* Give the overlay scaler a chance to disable if it's on this pipe */
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01003711 intel_crtc_wait_for_pending_flips(crtc);
3712 drm_vblank_off(dev, pipe);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003713 intel_crtc_dpms_overlay(intel_crtc, false);
Chris Wilson6b383a72010-09-13 13:54:26 +01003714 intel_crtc_update_cursor(crtc, false);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003715
Chris Wilson973d04f2011-07-08 12:22:37 +01003716 if (dev_priv->cfb_plane == plane)
3717 intel_disable_fbc(dev);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003718
Jesse Barnesb24e7172011-01-04 15:09:30 -08003719 intel_disable_plane(dev_priv, plane, pipe);
Jesse Barnesb24e7172011-01-04 15:09:30 -08003720 intel_disable_pipe(dev_priv, pipe);
Mika Kuoppala24a1f162013-02-08 16:35:37 +02003721
Daniel Vetter87476d62013-04-11 16:29:06 +02003722 i9xx_pfit_disable(intel_crtc);
Mika Kuoppala24a1f162013-02-08 16:35:37 +02003723
Jesse Barnes89b667f2013-04-18 14:51:36 -07003724 for_each_encoder_on_crtc(dev, crtc, encoder)
3725 if (encoder->post_disable)
3726 encoder->post_disable(encoder);
3727
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08003728 intel_disable_pll(dev_priv, pipe);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003729
Chris Wilsonf7abfe82010-09-13 14:19:16 +01003730 intel_crtc->active = false;
Chris Wilson6b383a72010-09-13 13:54:26 +01003731 intel_update_fbc(dev);
3732 intel_update_watermarks(dev);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003733}
3734
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003735static void i9xx_crtc_off(struct drm_crtc *crtc)
3736{
3737}
3738
Daniel Vetter976f8a22012-07-08 22:34:21 +02003739static void intel_crtc_update_sarea(struct drm_crtc *crtc,
3740 bool enabled)
Zhenyu Wang2c072452009-06-05 15:38:42 +08003741{
3742 struct drm_device *dev = crtc->dev;
3743 struct drm_i915_master_private *master_priv;
3744 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3745 int pipe = intel_crtc->pipe;
Jesse Barnes79e53942008-11-07 14:24:08 -08003746
3747 if (!dev->primary->master)
3748 return;
3749
3750 master_priv = dev->primary->master->driver_priv;
3751 if (!master_priv->sarea_priv)
3752 return;
3753
Jesse Barnes79e53942008-11-07 14:24:08 -08003754 switch (pipe) {
3755 case 0:
3756 master_priv->sarea_priv->pipeA_w = enabled ? crtc->mode.hdisplay : 0;
3757 master_priv->sarea_priv->pipeA_h = enabled ? crtc->mode.vdisplay : 0;
3758 break;
3759 case 1:
3760 master_priv->sarea_priv->pipeB_w = enabled ? crtc->mode.hdisplay : 0;
3761 master_priv->sarea_priv->pipeB_h = enabled ? crtc->mode.vdisplay : 0;
3762 break;
3763 default:
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08003764 DRM_ERROR("Can't update pipe %c in SAREA\n", pipe_name(pipe));
Jesse Barnes79e53942008-11-07 14:24:08 -08003765 break;
3766 }
Jesse Barnes79e53942008-11-07 14:24:08 -08003767}
3768
Daniel Vetter976f8a22012-07-08 22:34:21 +02003769/**
3770 * Sets the power management mode of the pipe and plane.
3771 */
3772void intel_crtc_update_dpms(struct drm_crtc *crtc)
Chris Wilsoncdd59982010-09-08 16:30:16 +01003773{
Chris Wilsoncdd59982010-09-08 16:30:16 +01003774 struct drm_device *dev = crtc->dev;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003775 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter976f8a22012-07-08 22:34:21 +02003776 struct intel_encoder *intel_encoder;
3777 bool enable = false;
Chris Wilsoncdd59982010-09-08 16:30:16 +01003778
Daniel Vetter976f8a22012-07-08 22:34:21 +02003779 for_each_encoder_on_crtc(dev, crtc, intel_encoder)
3780 enable |= intel_encoder->connectors_active;
3781
3782 if (enable)
3783 dev_priv->display.crtc_enable(crtc);
3784 else
3785 dev_priv->display.crtc_disable(crtc);
3786
3787 intel_crtc_update_sarea(crtc, enable);
3788}
3789
Daniel Vetter976f8a22012-07-08 22:34:21 +02003790static void intel_crtc_disable(struct drm_crtc *crtc)
3791{
3792 struct drm_device *dev = crtc->dev;
3793 struct drm_connector *connector;
3794 struct drm_i915_private *dev_priv = dev->dev_private;
Wang Xingchao7b9f35a2013-01-22 23:25:25 +08003795 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter976f8a22012-07-08 22:34:21 +02003796
3797 /* crtc should still be enabled when we disable it. */
3798 WARN_ON(!crtc->enabled);
3799
3800 dev_priv->display.crtc_disable(crtc);
Paulo Zanonic77bf562013-05-03 12:15:40 -03003801 intel_crtc->eld_vld = false;
Daniel Vetter976f8a22012-07-08 22:34:21 +02003802 intel_crtc_update_sarea(crtc, false);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003803 dev_priv->display.off(crtc);
3804
Chris Wilson931872f2012-01-16 23:01:13 +00003805 assert_plane_disabled(dev->dev_private, to_intel_crtc(crtc)->plane);
3806 assert_pipe_disabled(dev->dev_private, to_intel_crtc(crtc)->pipe);
Chris Wilsoncdd59982010-09-08 16:30:16 +01003807
3808 if (crtc->fb) {
3809 mutex_lock(&dev->struct_mutex);
Chris Wilson1690e1e2011-12-14 13:57:08 +01003810 intel_unpin_fb_obj(to_intel_framebuffer(crtc->fb)->obj);
Chris Wilsoncdd59982010-09-08 16:30:16 +01003811 mutex_unlock(&dev->struct_mutex);
Daniel Vetter976f8a22012-07-08 22:34:21 +02003812 crtc->fb = NULL;
3813 }
3814
3815 /* Update computed state. */
3816 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
3817 if (!connector->encoder || !connector->encoder->crtc)
3818 continue;
3819
3820 if (connector->encoder->crtc != crtc)
3821 continue;
3822
3823 connector->dpms = DRM_MODE_DPMS_OFF;
3824 to_intel_encoder(connector->encoder)->connectors_active = false;
Chris Wilsoncdd59982010-09-08 16:30:16 +01003825 }
3826}
3827
Daniel Vettera261b242012-07-26 19:21:47 +02003828void intel_modeset_disable(struct drm_device *dev)
Jesse Barnes79e53942008-11-07 14:24:08 -08003829{
Daniel Vettera261b242012-07-26 19:21:47 +02003830 struct drm_crtc *crtc;
3831
3832 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
3833 if (crtc->enabled)
3834 intel_crtc_disable(crtc);
3835 }
Jesse Barnes79e53942008-11-07 14:24:08 -08003836}
3837
Chris Wilsonea5b2132010-08-04 13:50:23 +01003838void intel_encoder_destroy(struct drm_encoder *encoder)
3839{
Chris Wilson4ef69c72010-09-09 15:14:28 +01003840 struct intel_encoder *intel_encoder = to_intel_encoder(encoder);
Chris Wilsonea5b2132010-08-04 13:50:23 +01003841
Chris Wilsonea5b2132010-08-04 13:50:23 +01003842 drm_encoder_cleanup(encoder);
3843 kfree(intel_encoder);
3844}
3845
Daniel Vetter5ab432e2012-06-30 08:59:56 +02003846/* Simple dpms helper for encodres with just one connector, no cloning and only
3847 * one kind of off state. It clamps all !ON modes to fully OFF and changes the
3848 * state of the entire output pipe. */
3849void intel_encoder_dpms(struct intel_encoder *encoder, int mode)
3850{
3851 if (mode == DRM_MODE_DPMS_ON) {
3852 encoder->connectors_active = true;
3853
Daniel Vetterb2cabb02012-07-01 22:42:24 +02003854 intel_crtc_update_dpms(encoder->base.crtc);
Daniel Vetter5ab432e2012-06-30 08:59:56 +02003855 } else {
3856 encoder->connectors_active = false;
3857
Daniel Vetterb2cabb02012-07-01 22:42:24 +02003858 intel_crtc_update_dpms(encoder->base.crtc);
Daniel Vetter5ab432e2012-06-30 08:59:56 +02003859 }
3860}
3861
Daniel Vetter0a91ca22012-07-02 21:54:27 +02003862/* Cross check the actual hw state with our own modeset state tracking (and it's
3863 * internal consistency). */
Daniel Vetterb9805142012-08-31 17:37:33 +02003864static void intel_connector_check_state(struct intel_connector *connector)
Daniel Vetter0a91ca22012-07-02 21:54:27 +02003865{
3866 if (connector->get_hw_state(connector)) {
3867 struct intel_encoder *encoder = connector->encoder;
3868 struct drm_crtc *crtc;
3869 bool encoder_enabled;
3870 enum pipe pipe;
3871
3872 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
3873 connector->base.base.id,
3874 drm_get_connector_name(&connector->base));
3875
3876 WARN(connector->base.dpms == DRM_MODE_DPMS_OFF,
3877 "wrong connector dpms state\n");
3878 WARN(connector->base.encoder != &encoder->base,
3879 "active connector not linked to encoder\n");
3880 WARN(!encoder->connectors_active,
3881 "encoder->connectors_active not set\n");
3882
3883 encoder_enabled = encoder->get_hw_state(encoder, &pipe);
3884 WARN(!encoder_enabled, "encoder not enabled\n");
3885 if (WARN_ON(!encoder->base.crtc))
3886 return;
3887
3888 crtc = encoder->base.crtc;
3889
3890 WARN(!crtc->enabled, "crtc not enabled\n");
3891 WARN(!to_intel_crtc(crtc)->active, "crtc not active\n");
3892 WARN(pipe != to_intel_crtc(crtc)->pipe,
3893 "encoder active on the wrong pipe\n");
3894 }
3895}
3896
Daniel Vetter5ab432e2012-06-30 08:59:56 +02003897/* Even simpler default implementation, if there's really no special case to
3898 * consider. */
3899void intel_connector_dpms(struct drm_connector *connector, int mode)
3900{
3901 struct intel_encoder *encoder = intel_attached_encoder(connector);
3902
3903 /* All the simple cases only support two dpms states. */
3904 if (mode != DRM_MODE_DPMS_ON)
3905 mode = DRM_MODE_DPMS_OFF;
3906
3907 if (mode == connector->dpms)
3908 return;
3909
3910 connector->dpms = mode;
3911
3912 /* Only need to change hw state when actually enabled */
3913 if (encoder->base.crtc)
3914 intel_encoder_dpms(encoder, mode);
3915 else
Daniel Vetter8af6cf82012-07-10 09:50:11 +02003916 WARN_ON(encoder->connectors_active != false);
Daniel Vetter0a91ca22012-07-02 21:54:27 +02003917
Daniel Vetterb9805142012-08-31 17:37:33 +02003918 intel_modeset_check_state(connector->dev);
Daniel Vetter5ab432e2012-06-30 08:59:56 +02003919}
3920
Daniel Vetterf0947c32012-07-02 13:10:34 +02003921/* Simple connector->get_hw_state implementation for encoders that support only
3922 * one connector and no cloning and hence the encoder state determines the state
3923 * of the connector. */
3924bool intel_connector_get_hw_state(struct intel_connector *connector)
3925{
Daniel Vetter24929352012-07-02 20:28:59 +02003926 enum pipe pipe = 0;
Daniel Vetterf0947c32012-07-02 13:10:34 +02003927 struct intel_encoder *encoder = connector->encoder;
3928
3929 return encoder->get_hw_state(encoder, &pipe);
3930}
3931
Daniel Vetter1857e1d2013-04-29 19:34:16 +02003932static bool ironlake_check_fdi_lanes(struct drm_device *dev, enum pipe pipe,
3933 struct intel_crtc_config *pipe_config)
3934{
3935 struct drm_i915_private *dev_priv = dev->dev_private;
3936 struct intel_crtc *pipe_B_crtc =
3937 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[PIPE_B]);
3938
3939 DRM_DEBUG_KMS("checking fdi config on pipe %c, lanes %i\n",
3940 pipe_name(pipe), pipe_config->fdi_lanes);
3941 if (pipe_config->fdi_lanes > 4) {
3942 DRM_DEBUG_KMS("invalid fdi lane config on pipe %c: %i lanes\n",
3943 pipe_name(pipe), pipe_config->fdi_lanes);
3944 return false;
3945 }
3946
3947 if (IS_HASWELL(dev)) {
3948 if (pipe_config->fdi_lanes > 2) {
3949 DRM_DEBUG_KMS("only 2 lanes on haswell, required: %i lanes\n",
3950 pipe_config->fdi_lanes);
3951 return false;
3952 } else {
3953 return true;
3954 }
3955 }
3956
3957 if (INTEL_INFO(dev)->num_pipes == 2)
3958 return true;
3959
3960 /* Ivybridge 3 pipe is really complicated */
3961 switch (pipe) {
3962 case PIPE_A:
3963 return true;
3964 case PIPE_B:
3965 if (dev_priv->pipe_to_crtc_mapping[PIPE_C]->enabled &&
3966 pipe_config->fdi_lanes > 2) {
3967 DRM_DEBUG_KMS("invalid shared fdi lane config on pipe %c: %i lanes\n",
3968 pipe_name(pipe), pipe_config->fdi_lanes);
3969 return false;
3970 }
3971 return true;
3972 case PIPE_C:
Daniel Vetter1e833f42013-02-19 22:31:57 +01003973 if (!pipe_has_enabled_pch(pipe_B_crtc) ||
Daniel Vetter1857e1d2013-04-29 19:34:16 +02003974 pipe_B_crtc->config.fdi_lanes <= 2) {
3975 if (pipe_config->fdi_lanes > 2) {
3976 DRM_DEBUG_KMS("invalid shared fdi lane config on pipe %c: %i lanes\n",
3977 pipe_name(pipe), pipe_config->fdi_lanes);
3978 return false;
3979 }
3980 } else {
3981 DRM_DEBUG_KMS("fdi link B uses too many lanes to enable link C\n");
3982 return false;
3983 }
3984 return true;
3985 default:
3986 BUG();
3987 }
3988}
3989
Daniel Vettere29c22c2013-02-21 00:00:16 +01003990#define RETRY 1
3991static int ironlake_fdi_compute_config(struct intel_crtc *intel_crtc,
3992 struct intel_crtc_config *pipe_config)
Daniel Vetter877d48d2013-04-19 11:24:43 +02003993{
Daniel Vetter1857e1d2013-04-29 19:34:16 +02003994 struct drm_device *dev = intel_crtc->base.dev;
Daniel Vetter877d48d2013-04-19 11:24:43 +02003995 struct drm_display_mode *adjusted_mode = &pipe_config->adjusted_mode;
3996 int target_clock, lane, link_bw;
Daniel Vettere29c22c2013-02-21 00:00:16 +01003997 bool setup_ok, needs_recompute = false;
Daniel Vetter877d48d2013-04-19 11:24:43 +02003998
Daniel Vettere29c22c2013-02-21 00:00:16 +01003999retry:
Daniel Vetter877d48d2013-04-19 11:24:43 +02004000 /* FDI is a binary signal running at ~2.7GHz, encoding
4001 * each output octet as 10 bits. The actual frequency
4002 * is stored as a divider into a 100MHz clock, and the
4003 * mode pixel clock is stored in units of 1KHz.
4004 * Hence the bw of each lane in terms of the mode signal
4005 * is:
4006 */
4007 link_bw = intel_fdi_link_freq(dev) * MHz(100)/KHz(1)/10;
4008
4009 if (pipe_config->pixel_target_clock)
4010 target_clock = pipe_config->pixel_target_clock;
4011 else
4012 target_clock = adjusted_mode->clock;
4013
4014 lane = ironlake_get_lanes_required(target_clock, link_bw,
4015 pipe_config->pipe_bpp);
4016
4017 pipe_config->fdi_lanes = lane;
4018
4019 if (pipe_config->pixel_multiplier > 1)
4020 link_bw *= pipe_config->pixel_multiplier;
4021 intel_link_compute_m_n(pipe_config->pipe_bpp, lane, target_clock,
4022 link_bw, &pipe_config->fdi_m_n);
Daniel Vetter1857e1d2013-04-29 19:34:16 +02004023
Daniel Vettere29c22c2013-02-21 00:00:16 +01004024 setup_ok = ironlake_check_fdi_lanes(intel_crtc->base.dev,
4025 intel_crtc->pipe, pipe_config);
4026 if (!setup_ok && pipe_config->pipe_bpp > 6*3) {
4027 pipe_config->pipe_bpp -= 2*3;
4028 DRM_DEBUG_KMS("fdi link bw constraint, reducing pipe bpp to %i\n",
4029 pipe_config->pipe_bpp);
4030 needs_recompute = true;
4031 pipe_config->bw_constrained = true;
4032
4033 goto retry;
4034 }
4035
4036 if (needs_recompute)
4037 return RETRY;
4038
4039 return setup_ok ? 0 : -EINVAL;
Daniel Vetter877d48d2013-04-19 11:24:43 +02004040}
4041
Paulo Zanoni42db64e2013-05-31 16:33:22 -03004042static void hsw_compute_ips_config(struct intel_crtc *crtc,
4043 struct intel_crtc_config *pipe_config)
4044{
Paulo Zanoni3c4ca582013-05-31 16:33:23 -03004045 pipe_config->ips_enabled = i915_enable_ips &&
4046 hsw_crtc_supports_ips(crtc) &&
Paulo Zanoni42db64e2013-05-31 16:33:22 -03004047 pipe_config->pipe_bpp == 24;
4048}
4049
Daniel Vettere29c22c2013-02-21 00:00:16 +01004050static int intel_crtc_compute_config(struct drm_crtc *crtc,
4051 struct intel_crtc_config *pipe_config)
Jesse Barnes79e53942008-11-07 14:24:08 -08004052{
Zhenyu Wang2c072452009-06-05 15:38:42 +08004053 struct drm_device *dev = crtc->dev;
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01004054 struct drm_display_mode *adjusted_mode = &pipe_config->adjusted_mode;
Paulo Zanoni42db64e2013-05-31 16:33:22 -03004055 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Chris Wilson89749352010-09-12 18:25:19 +01004056
Eric Anholtbad720f2009-10-22 16:11:14 -07004057 if (HAS_PCH_SPLIT(dev)) {
Zhenyu Wang2c072452009-06-05 15:38:42 +08004058 /* FDI link clock is fixed at 2.7G */
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01004059 if (pipe_config->requested_mode.clock * 3
4060 > IRONLAKE_FDI_FREQ * 4)
Daniel Vettere29c22c2013-02-21 00:00:16 +01004061 return -EINVAL;
Zhenyu Wang2c072452009-06-05 15:38:42 +08004062 }
Chris Wilson89749352010-09-12 18:25:19 +01004063
Daniel Vetterf9bef082012-04-15 19:53:19 +02004064 /* All interlaced capable intel hw wants timings in frames. Note though
4065 * that intel_lvds_mode_fixup does some funny tricks with the crtc
4066 * timings, so we need to be careful not to clobber these.*/
Daniel Vetter7ae89232013-03-27 00:44:52 +01004067 if (!pipe_config->timings_set)
Daniel Vetterf9bef082012-04-15 19:53:19 +02004068 drm_mode_set_crtcinfo(adjusted_mode, 0);
Chris Wilson89749352010-09-12 18:25:19 +01004069
Damien Lespiau8693a822013-05-03 18:48:11 +01004070 /* Cantiga+ cannot handle modes with a hsync front porch of 0.
4071 * WaPruneModeWithIncorrectHsyncOffset:ctg,elk,ilk,snb,ivb,vlv,hsw.
Chris Wilson44f46b422012-06-21 13:19:59 +03004072 */
4073 if ((INTEL_INFO(dev)->gen > 4 || IS_G4X(dev)) &&
4074 adjusted_mode->hsync_start == adjusted_mode->hdisplay)
Daniel Vettere29c22c2013-02-21 00:00:16 +01004075 return -EINVAL;
Chris Wilson44f46b422012-06-21 13:19:59 +03004076
Daniel Vetterbd080ee2013-04-17 20:01:39 +02004077 if ((IS_G4X(dev) || IS_VALLEYVIEW(dev)) && pipe_config->pipe_bpp > 10*3) {
Daniel Vetter5d2d38d2013-03-27 00:45:01 +01004078 pipe_config->pipe_bpp = 10*3; /* 12bpc is gen5+ */
Daniel Vetterbd080ee2013-04-17 20:01:39 +02004079 } else if (INTEL_INFO(dev)->gen <= 4 && pipe_config->pipe_bpp > 8*3) {
Daniel Vetter5d2d38d2013-03-27 00:45:01 +01004080 /* only a 8bpc pipe, with 6bpc dither through the panel fitter
4081 * for lvds. */
4082 pipe_config->pipe_bpp = 8*3;
4083 }
4084
Paulo Zanoni42db64e2013-05-31 16:33:22 -03004085 if (IS_HASWELL(dev))
4086 hsw_compute_ips_config(intel_crtc, pipe_config);
4087
Daniel Vetter877d48d2013-04-19 11:24:43 +02004088 if (pipe_config->has_pch_encoder)
Paulo Zanoni42db64e2013-05-31 16:33:22 -03004089 return ironlake_fdi_compute_config(intel_crtc, pipe_config);
Daniel Vetter877d48d2013-04-19 11:24:43 +02004090
Daniel Vettere29c22c2013-02-21 00:00:16 +01004091 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08004092}
4093
Jesse Barnes25eb05fc2012-03-28 13:39:23 -07004094static int valleyview_get_display_clock_speed(struct drm_device *dev)
4095{
4096 return 400000; /* FIXME */
4097}
4098
Jesse Barnese70236a2009-09-21 10:42:27 -07004099static int i945_get_display_clock_speed(struct drm_device *dev)
Jesse Barnes79e53942008-11-07 14:24:08 -08004100{
Jesse Barnese70236a2009-09-21 10:42:27 -07004101 return 400000;
4102}
Jesse Barnes79e53942008-11-07 14:24:08 -08004103
Jesse Barnese70236a2009-09-21 10:42:27 -07004104static int i915_get_display_clock_speed(struct drm_device *dev)
4105{
4106 return 333000;
4107}
Jesse Barnes79e53942008-11-07 14:24:08 -08004108
Jesse Barnese70236a2009-09-21 10:42:27 -07004109static int i9xx_misc_get_display_clock_speed(struct drm_device *dev)
4110{
4111 return 200000;
4112}
Jesse Barnes79e53942008-11-07 14:24:08 -08004113
Jesse Barnese70236a2009-09-21 10:42:27 -07004114static int i915gm_get_display_clock_speed(struct drm_device *dev)
4115{
4116 u16 gcfgc = 0;
4117
4118 pci_read_config_word(dev->pdev, GCFGC, &gcfgc);
4119
4120 if (gcfgc & GC_LOW_FREQUENCY_ENABLE)
Jesse Barnes79e53942008-11-07 14:24:08 -08004121 return 133000;
Jesse Barnese70236a2009-09-21 10:42:27 -07004122 else {
4123 switch (gcfgc & GC_DISPLAY_CLOCK_MASK) {
4124 case GC_DISPLAY_CLOCK_333_MHZ:
4125 return 333000;
4126 default:
4127 case GC_DISPLAY_CLOCK_190_200_MHZ:
4128 return 190000;
4129 }
4130 }
4131}
Jesse Barnes79e53942008-11-07 14:24:08 -08004132
Jesse Barnese70236a2009-09-21 10:42:27 -07004133static int i865_get_display_clock_speed(struct drm_device *dev)
4134{
4135 return 266000;
4136}
4137
4138static int i855_get_display_clock_speed(struct drm_device *dev)
4139{
4140 u16 hpllcc = 0;
4141 /* Assume that the hardware is in the high speed state. This
4142 * should be the default.
4143 */
4144 switch (hpllcc & GC_CLOCK_CONTROL_MASK) {
4145 case GC_CLOCK_133_200:
4146 case GC_CLOCK_100_200:
4147 return 200000;
4148 case GC_CLOCK_166_250:
4149 return 250000;
4150 case GC_CLOCK_100_133:
4151 return 133000;
4152 }
4153
4154 /* Shouldn't happen */
4155 return 0;
4156}
4157
4158static int i830_get_display_clock_speed(struct drm_device *dev)
4159{
4160 return 133000;
Jesse Barnes79e53942008-11-07 14:24:08 -08004161}
4162
Zhenyu Wang2c072452009-06-05 15:38:42 +08004163static void
Ville Syrjäläa65851a2013-04-23 15:03:34 +03004164intel_reduce_m_n_ratio(uint32_t *num, uint32_t *den)
Zhenyu Wang2c072452009-06-05 15:38:42 +08004165{
Ville Syrjäläa65851a2013-04-23 15:03:34 +03004166 while (*num > DATA_LINK_M_N_MASK ||
4167 *den > DATA_LINK_M_N_MASK) {
Zhenyu Wang2c072452009-06-05 15:38:42 +08004168 *num >>= 1;
4169 *den >>= 1;
4170 }
4171}
4172
Ville Syrjäläa65851a2013-04-23 15:03:34 +03004173static void compute_m_n(unsigned int m, unsigned int n,
4174 uint32_t *ret_m, uint32_t *ret_n)
4175{
4176 *ret_n = min_t(unsigned int, roundup_pow_of_two(n), DATA_LINK_N_MAX);
4177 *ret_m = div_u64((uint64_t) m * *ret_n, n);
4178 intel_reduce_m_n_ratio(ret_m, ret_n);
4179}
4180
Daniel Vettere69d0bc2012-11-29 15:59:36 +01004181void
4182intel_link_compute_m_n(int bits_per_pixel, int nlanes,
4183 int pixel_clock, int link_clock,
4184 struct intel_link_m_n *m_n)
Zhenyu Wang2c072452009-06-05 15:38:42 +08004185{
Daniel Vettere69d0bc2012-11-29 15:59:36 +01004186 m_n->tu = 64;
Ville Syrjäläa65851a2013-04-23 15:03:34 +03004187
4188 compute_m_n(bits_per_pixel * pixel_clock,
4189 link_clock * nlanes * 8,
4190 &m_n->gmch_m, &m_n->gmch_n);
4191
4192 compute_m_n(pixel_clock, link_clock,
4193 &m_n->link_m, &m_n->link_n);
Zhenyu Wang2c072452009-06-05 15:38:42 +08004194}
4195
Chris Wilsona7615032011-01-12 17:04:08 +00004196static inline bool intel_panel_use_ssc(struct drm_i915_private *dev_priv)
4197{
Keith Packard72bbe582011-09-26 16:09:45 -07004198 if (i915_panel_use_ssc >= 0)
4199 return i915_panel_use_ssc != 0;
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03004200 return dev_priv->vbt.lvds_use_ssc
Keith Packard435793d2011-07-12 14:56:22 -07004201 && !(dev_priv->quirks & QUIRK_LVDS_SSC_DISABLE);
Chris Wilsona7615032011-01-12 17:04:08 +00004202}
4203
Jesse Barnesa0c4da22012-06-15 11:55:13 -07004204static int vlv_get_refclk(struct drm_crtc *crtc)
4205{
4206 struct drm_device *dev = crtc->dev;
4207 struct drm_i915_private *dev_priv = dev->dev_private;
4208 int refclk = 27000; /* for DP & HDMI */
4209
4210 return 100000; /* only one validated so far */
4211
4212 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_ANALOG)) {
4213 refclk = 96000;
4214 } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
4215 if (intel_panel_use_ssc(dev_priv))
4216 refclk = 100000;
4217 else
4218 refclk = 96000;
4219 } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP)) {
4220 refclk = 100000;
4221 }
4222
4223 return refclk;
4224}
4225
Jesse Barnesc65d77d2011-12-15 12:30:36 -08004226static int i9xx_get_refclk(struct drm_crtc *crtc, int num_connectors)
4227{
4228 struct drm_device *dev = crtc->dev;
4229 struct drm_i915_private *dev_priv = dev->dev_private;
4230 int refclk;
4231
Jesse Barnesa0c4da22012-06-15 11:55:13 -07004232 if (IS_VALLEYVIEW(dev)) {
4233 refclk = vlv_get_refclk(crtc);
4234 } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) &&
Jesse Barnesc65d77d2011-12-15 12:30:36 -08004235 intel_panel_use_ssc(dev_priv) && num_connectors < 2) {
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03004236 refclk = dev_priv->vbt.lvds_ssc_freq * 1000;
Jesse Barnesc65d77d2011-12-15 12:30:36 -08004237 DRM_DEBUG_KMS("using SSC reference clock of %d MHz\n",
4238 refclk / 1000);
4239 } else if (!IS_GEN2(dev)) {
4240 refclk = 96000;
4241 } else {
4242 refclk = 48000;
4243 }
4244
4245 return refclk;
4246}
4247
Daniel Vetter7429e9d2013-04-20 17:19:46 +02004248static uint32_t pnv_dpll_compute_fp(struct dpll *dpll)
4249{
4250 return (1 << dpll->n) << 16 | dpll->m1 << 8 | dpll->m2;
4251}
4252
4253static uint32_t i9xx_dpll_compute_fp(struct dpll *dpll)
4254{
4255 return dpll->n << 16 | dpll->m1 << 8 | dpll->m2;
4256}
4257
Daniel Vetterf47709a2013-03-28 10:42:02 +01004258static void i9xx_update_pll_dividers(struct intel_crtc *crtc,
Jesse Barnesa7516a02011-12-15 12:30:37 -08004259 intel_clock_t *reduced_clock)
4260{
Daniel Vetterf47709a2013-03-28 10:42:02 +01004261 struct drm_device *dev = crtc->base.dev;
Jesse Barnesa7516a02011-12-15 12:30:37 -08004262 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterf47709a2013-03-28 10:42:02 +01004263 int pipe = crtc->pipe;
Jesse Barnesa7516a02011-12-15 12:30:37 -08004264 u32 fp, fp2 = 0;
4265
4266 if (IS_PINEVIEW(dev)) {
Daniel Vetter7429e9d2013-04-20 17:19:46 +02004267 fp = pnv_dpll_compute_fp(&crtc->config.dpll);
Jesse Barnesa7516a02011-12-15 12:30:37 -08004268 if (reduced_clock)
Daniel Vetter7429e9d2013-04-20 17:19:46 +02004269 fp2 = pnv_dpll_compute_fp(reduced_clock);
Jesse Barnesa7516a02011-12-15 12:30:37 -08004270 } else {
Daniel Vetter7429e9d2013-04-20 17:19:46 +02004271 fp = i9xx_dpll_compute_fp(&crtc->config.dpll);
Jesse Barnesa7516a02011-12-15 12:30:37 -08004272 if (reduced_clock)
Daniel Vetter7429e9d2013-04-20 17:19:46 +02004273 fp2 = i9xx_dpll_compute_fp(reduced_clock);
Jesse Barnesa7516a02011-12-15 12:30:37 -08004274 }
4275
4276 I915_WRITE(FP0(pipe), fp);
4277
Daniel Vetterf47709a2013-03-28 10:42:02 +01004278 crtc->lowfreq_avail = false;
4279 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_LVDS) &&
Jesse Barnesa7516a02011-12-15 12:30:37 -08004280 reduced_clock && i915_powersave) {
4281 I915_WRITE(FP1(pipe), fp2);
Daniel Vetterf47709a2013-03-28 10:42:02 +01004282 crtc->lowfreq_avail = true;
Jesse Barnesa7516a02011-12-15 12:30:37 -08004283 } else {
4284 I915_WRITE(FP1(pipe), fp);
4285 }
4286}
4287
Jesse Barnes89b667f2013-04-18 14:51:36 -07004288static void vlv_pllb_recal_opamp(struct drm_i915_private *dev_priv)
4289{
4290 u32 reg_val;
4291
4292 /*
4293 * PLLB opamp always calibrates to max value of 0x3f, force enable it
4294 * and set it to a reasonable value instead.
4295 */
Jani Nikulaae992582013-05-22 15:36:19 +03004296 reg_val = vlv_dpio_read(dev_priv, DPIO_IREF(1));
Jesse Barnes89b667f2013-04-18 14:51:36 -07004297 reg_val &= 0xffffff00;
4298 reg_val |= 0x00000030;
Jani Nikulaae992582013-05-22 15:36:19 +03004299 vlv_dpio_write(dev_priv, DPIO_IREF(1), reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07004300
Jani Nikulaae992582013-05-22 15:36:19 +03004301 reg_val = vlv_dpio_read(dev_priv, DPIO_CALIBRATION);
Jesse Barnes89b667f2013-04-18 14:51:36 -07004302 reg_val &= 0x8cffffff;
4303 reg_val = 0x8c000000;
Jani Nikulaae992582013-05-22 15:36:19 +03004304 vlv_dpio_write(dev_priv, DPIO_CALIBRATION, reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07004305
Jani Nikulaae992582013-05-22 15:36:19 +03004306 reg_val = vlv_dpio_read(dev_priv, DPIO_IREF(1));
Jesse Barnes89b667f2013-04-18 14:51:36 -07004307 reg_val &= 0xffffff00;
Jani Nikulaae992582013-05-22 15:36:19 +03004308 vlv_dpio_write(dev_priv, DPIO_IREF(1), reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07004309
Jani Nikulaae992582013-05-22 15:36:19 +03004310 reg_val = vlv_dpio_read(dev_priv, DPIO_CALIBRATION);
Jesse Barnes89b667f2013-04-18 14:51:36 -07004311 reg_val &= 0x00ffffff;
4312 reg_val |= 0xb0000000;
Jani Nikulaae992582013-05-22 15:36:19 +03004313 vlv_dpio_write(dev_priv, DPIO_CALIBRATION, reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07004314}
4315
Daniel Vetterb5518422013-05-03 11:49:48 +02004316static void intel_pch_transcoder_set_m_n(struct intel_crtc *crtc,
4317 struct intel_link_m_n *m_n)
4318{
4319 struct drm_device *dev = crtc->base.dev;
4320 struct drm_i915_private *dev_priv = dev->dev_private;
4321 int pipe = crtc->pipe;
4322
Daniel Vettere3b95f12013-05-03 11:49:49 +02004323 I915_WRITE(PCH_TRANS_DATA_M1(pipe), TU_SIZE(m_n->tu) | m_n->gmch_m);
4324 I915_WRITE(PCH_TRANS_DATA_N1(pipe), m_n->gmch_n);
4325 I915_WRITE(PCH_TRANS_LINK_M1(pipe), m_n->link_m);
4326 I915_WRITE(PCH_TRANS_LINK_N1(pipe), m_n->link_n);
Daniel Vetterb5518422013-05-03 11:49:48 +02004327}
4328
4329static void intel_cpu_transcoder_set_m_n(struct intel_crtc *crtc,
4330 struct intel_link_m_n *m_n)
4331{
4332 struct drm_device *dev = crtc->base.dev;
4333 struct drm_i915_private *dev_priv = dev->dev_private;
4334 int pipe = crtc->pipe;
4335 enum transcoder transcoder = crtc->config.cpu_transcoder;
4336
4337 if (INTEL_INFO(dev)->gen >= 5) {
4338 I915_WRITE(PIPE_DATA_M1(transcoder), TU_SIZE(m_n->tu) | m_n->gmch_m);
4339 I915_WRITE(PIPE_DATA_N1(transcoder), m_n->gmch_n);
4340 I915_WRITE(PIPE_LINK_M1(transcoder), m_n->link_m);
4341 I915_WRITE(PIPE_LINK_N1(transcoder), m_n->link_n);
4342 } else {
Daniel Vettere3b95f12013-05-03 11:49:49 +02004343 I915_WRITE(PIPE_DATA_M_G4X(pipe), TU_SIZE(m_n->tu) | m_n->gmch_m);
4344 I915_WRITE(PIPE_DATA_N_G4X(pipe), m_n->gmch_n);
4345 I915_WRITE(PIPE_LINK_M_G4X(pipe), m_n->link_m);
4346 I915_WRITE(PIPE_LINK_N_G4X(pipe), m_n->link_n);
Daniel Vetterb5518422013-05-03 11:49:48 +02004347 }
4348}
4349
Daniel Vetter03afc4a2013-04-02 23:42:31 +02004350static void intel_dp_set_m_n(struct intel_crtc *crtc)
4351{
4352 if (crtc->config.has_pch_encoder)
4353 intel_pch_transcoder_set_m_n(crtc, &crtc->config.dp_m_n);
4354 else
4355 intel_cpu_transcoder_set_m_n(crtc, &crtc->config.dp_m_n);
4356}
4357
Daniel Vetterf47709a2013-03-28 10:42:02 +01004358static void vlv_update_pll(struct intel_crtc *crtc)
Jesse Barnesa0c4da22012-06-15 11:55:13 -07004359{
Daniel Vetterf47709a2013-03-28 10:42:02 +01004360 struct drm_device *dev = crtc->base.dev;
Jesse Barnesa0c4da22012-06-15 11:55:13 -07004361 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes89b667f2013-04-18 14:51:36 -07004362 struct drm_display_mode *adjusted_mode =
4363 &crtc->config.adjusted_mode;
4364 struct intel_encoder *encoder;
Daniel Vetterf47709a2013-03-28 10:42:02 +01004365 int pipe = crtc->pipe;
Jesse Barnes89b667f2013-04-18 14:51:36 -07004366 u32 dpll, mdiv;
Jesse Barnesa0c4da22012-06-15 11:55:13 -07004367 u32 bestn, bestm1, bestm2, bestp1, bestp2;
Jesse Barnes89b667f2013-04-18 14:51:36 -07004368 bool is_hdmi;
Daniel Vetter198a037f2013-04-19 11:14:37 +02004369 u32 coreclk, reg_val, dpll_md;
Jesse Barnesa0c4da22012-06-15 11:55:13 -07004370
Daniel Vetter09153002012-12-12 14:06:44 +01004371 mutex_lock(&dev_priv->dpio_lock);
4372
Jesse Barnes89b667f2013-04-18 14:51:36 -07004373 is_hdmi = intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_HDMI);
Jesse Barnesa0c4da22012-06-15 11:55:13 -07004374
Daniel Vetterf47709a2013-03-28 10:42:02 +01004375 bestn = crtc->config.dpll.n;
4376 bestm1 = crtc->config.dpll.m1;
4377 bestm2 = crtc->config.dpll.m2;
4378 bestp1 = crtc->config.dpll.p1;
4379 bestp2 = crtc->config.dpll.p2;
Jesse Barnesa0c4da22012-06-15 11:55:13 -07004380
Jesse Barnes89b667f2013-04-18 14:51:36 -07004381 /* See eDP HDMI DPIO driver vbios notes doc */
4382
4383 /* PLL B needs special handling */
4384 if (pipe)
4385 vlv_pllb_recal_opamp(dev_priv);
4386
4387 /* Set up Tx target for periodic Rcomp update */
Jani Nikulaae992582013-05-22 15:36:19 +03004388 vlv_dpio_write(dev_priv, DPIO_IREF_BCAST, 0x0100000f);
Jesse Barnes89b667f2013-04-18 14:51:36 -07004389
4390 /* Disable target IRef on PLL */
Jani Nikulaae992582013-05-22 15:36:19 +03004391 reg_val = vlv_dpio_read(dev_priv, DPIO_IREF_CTL(pipe));
Jesse Barnes89b667f2013-04-18 14:51:36 -07004392 reg_val &= 0x00ffffff;
Jani Nikulaae992582013-05-22 15:36:19 +03004393 vlv_dpio_write(dev_priv, DPIO_IREF_CTL(pipe), reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07004394
4395 /* Disable fast lock */
Jani Nikulaae992582013-05-22 15:36:19 +03004396 vlv_dpio_write(dev_priv, DPIO_FASTCLK_DISABLE, 0x610);
Jesse Barnes89b667f2013-04-18 14:51:36 -07004397
4398 /* Set idtafcrecal before PLL is enabled */
Jesse Barnesa0c4da22012-06-15 11:55:13 -07004399 mdiv = ((bestm1 << DPIO_M1DIV_SHIFT) | (bestm2 & DPIO_M2DIV_MASK));
4400 mdiv |= ((bestp1 << DPIO_P1_SHIFT) | (bestp2 << DPIO_P2_SHIFT));
4401 mdiv |= ((bestn << DPIO_N_SHIFT));
Jesse Barnesa0c4da22012-06-15 11:55:13 -07004402 mdiv |= (1 << DPIO_K_SHIFT);
Jesse Barnes7df50802013-05-02 10:48:09 -07004403
4404 /*
4405 * Post divider depends on pixel clock rate, DAC vs digital (and LVDS,
4406 * but we don't support that).
4407 * Note: don't use the DAC post divider as it seems unstable.
4408 */
4409 mdiv |= (DPIO_POST_DIV_HDMIDP << DPIO_POST_DIV_SHIFT);
Jani Nikulaae992582013-05-22 15:36:19 +03004410 vlv_dpio_write(dev_priv, DPIO_DIV(pipe), mdiv);
Jesse Barnes89b667f2013-04-18 14:51:36 -07004411
Jesse Barnesa0c4da22012-06-15 11:55:13 -07004412 mdiv |= DPIO_ENABLE_CALIBRATION;
Jani Nikulaae992582013-05-22 15:36:19 +03004413 vlv_dpio_write(dev_priv, DPIO_DIV(pipe), mdiv);
Jesse Barnesa0c4da22012-06-15 11:55:13 -07004414
Jesse Barnes89b667f2013-04-18 14:51:36 -07004415 /* Set HBR and RBR LPF coefficients */
4416 if (adjusted_mode->clock == 162000 ||
4417 intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_HDMI))
Jani Nikulaae992582013-05-22 15:36:19 +03004418 vlv_dpio_write(dev_priv, DPIO_LFP_COEFF(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07004419 0x005f0021);
4420 else
Jani Nikulaae992582013-05-22 15:36:19 +03004421 vlv_dpio_write(dev_priv, DPIO_LFP_COEFF(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07004422 0x00d0000f);
Jesse Barnesa0c4da22012-06-15 11:55:13 -07004423
Jesse Barnes89b667f2013-04-18 14:51:36 -07004424 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_EDP) ||
4425 intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_DISPLAYPORT)) {
4426 /* Use SSC source */
4427 if (!pipe)
Jani Nikulaae992582013-05-22 15:36:19 +03004428 vlv_dpio_write(dev_priv, DPIO_REFSFR(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07004429 0x0df40000);
4430 else
Jani Nikulaae992582013-05-22 15:36:19 +03004431 vlv_dpio_write(dev_priv, DPIO_REFSFR(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07004432 0x0df70000);
4433 } else { /* HDMI or VGA */
4434 /* Use bend source */
4435 if (!pipe)
Jani Nikulaae992582013-05-22 15:36:19 +03004436 vlv_dpio_write(dev_priv, DPIO_REFSFR(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07004437 0x0df70000);
4438 else
Jani Nikulaae992582013-05-22 15:36:19 +03004439 vlv_dpio_write(dev_priv, DPIO_REFSFR(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07004440 0x0df40000);
4441 }
Jesse Barnesa0c4da22012-06-15 11:55:13 -07004442
Jani Nikulaae992582013-05-22 15:36:19 +03004443 coreclk = vlv_dpio_read(dev_priv, DPIO_CORE_CLK(pipe));
Jesse Barnes89b667f2013-04-18 14:51:36 -07004444 coreclk = (coreclk & 0x0000ff00) | 0x01c00000;
4445 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_DISPLAYPORT) ||
4446 intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_EDP))
4447 coreclk |= 0x01000000;
Jani Nikulaae992582013-05-22 15:36:19 +03004448 vlv_dpio_write(dev_priv, DPIO_CORE_CLK(pipe), coreclk);
Jesse Barnes89b667f2013-04-18 14:51:36 -07004449
Jani Nikulaae992582013-05-22 15:36:19 +03004450 vlv_dpio_write(dev_priv, DPIO_PLL_CML(pipe), 0x87871000);
Jesse Barnes89b667f2013-04-18 14:51:36 -07004451
4452 for_each_encoder_on_crtc(dev, &crtc->base, encoder)
4453 if (encoder->pre_pll_enable)
4454 encoder->pre_pll_enable(encoder);
4455
4456 /* Enable DPIO clock input */
4457 dpll = DPLL_EXT_BUFFER_ENABLE_VLV | DPLL_REFA_CLK_ENABLE_VLV |
4458 DPLL_VGA_MODE_DIS | DPLL_INTEGRATED_CLOCK_VLV;
4459 if (pipe)
4460 dpll |= DPLL_INTEGRATED_CRI_CLK_VLV;
Jesse Barnesa0c4da22012-06-15 11:55:13 -07004461
4462 dpll |= DPLL_VCO_ENABLE;
4463 I915_WRITE(DPLL(pipe), dpll);
4464 POSTING_READ(DPLL(pipe));
Jesse Barnes89b667f2013-04-18 14:51:36 -07004465 udelay(150);
4466
Jesse Barnesa0c4da22012-06-15 11:55:13 -07004467 if (wait_for(((I915_READ(DPLL(pipe)) & DPLL_LOCK_VLV) == DPLL_LOCK_VLV), 1))
4468 DRM_ERROR("DPLL %d failed to lock\n", pipe);
4469
Daniel Vetter198a037f2013-04-19 11:14:37 +02004470 dpll_md = 0;
4471 if (crtc->config.pixel_multiplier > 1) {
4472 dpll_md = (crtc->config.pixel_multiplier - 1)
4473 << DPLL_MD_UDI_MULTIPLIER_SHIFT;
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05304474 }
Daniel Vetter198a037f2013-04-19 11:14:37 +02004475 I915_WRITE(DPLL_MD(pipe), dpll_md);
4476 POSTING_READ(DPLL_MD(pipe));
Daniel Vetterf47709a2013-03-28 10:42:02 +01004477
Jesse Barnes89b667f2013-04-18 14:51:36 -07004478 if (crtc->config.has_dp_encoder)
4479 intel_dp_set_m_n(crtc);
Daniel Vetter09153002012-12-12 14:06:44 +01004480
4481 mutex_unlock(&dev_priv->dpio_lock);
Jesse Barnesa0c4da22012-06-15 11:55:13 -07004482}
4483
Daniel Vetterf47709a2013-03-28 10:42:02 +01004484static void i9xx_update_pll(struct intel_crtc *crtc,
4485 intel_clock_t *reduced_clock,
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004486 int num_connectors)
4487{
Daniel Vetterf47709a2013-03-28 10:42:02 +01004488 struct drm_device *dev = crtc->base.dev;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004489 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterdafd2262012-11-26 17:22:07 +01004490 struct intel_encoder *encoder;
Daniel Vetterf47709a2013-03-28 10:42:02 +01004491 int pipe = crtc->pipe;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004492 u32 dpll;
4493 bool is_sdvo;
Daniel Vetterf47709a2013-03-28 10:42:02 +01004494 struct dpll *clock = &crtc->config.dpll;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004495
Daniel Vetterf47709a2013-03-28 10:42:02 +01004496 i9xx_update_pll_dividers(crtc, reduced_clock);
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05304497
Daniel Vetterf47709a2013-03-28 10:42:02 +01004498 is_sdvo = intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_SDVO) ||
4499 intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_HDMI);
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004500
4501 dpll = DPLL_VGA_MODE_DIS;
4502
Daniel Vetterf47709a2013-03-28 10:42:02 +01004503 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_LVDS))
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004504 dpll |= DPLLB_MODE_LVDS;
4505 else
4506 dpll |= DPLLB_MODE_DAC_SERIAL;
Daniel Vetter6cc5f342013-03-27 00:44:53 +01004507
Daniel Vetter198a037f2013-04-19 11:14:37 +02004508 if ((crtc->config.pixel_multiplier > 1) &&
4509 (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev))) {
4510 dpll |= (crtc->config.pixel_multiplier - 1)
4511 << SDVO_MULTIPLIER_SHIFT_HIRES;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004512 }
Daniel Vetter198a037f2013-04-19 11:14:37 +02004513
4514 if (is_sdvo)
4515 dpll |= DPLL_DVO_HIGH_SPEED;
4516
Daniel Vetterf47709a2013-03-28 10:42:02 +01004517 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_DISPLAYPORT))
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004518 dpll |= DPLL_DVO_HIGH_SPEED;
4519
4520 /* compute bitmask from p1 value */
4521 if (IS_PINEVIEW(dev))
4522 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW;
4523 else {
4524 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
4525 if (IS_G4X(dev) && reduced_clock)
4526 dpll |= (1 << (reduced_clock->p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
4527 }
4528 switch (clock->p2) {
4529 case 5:
4530 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
4531 break;
4532 case 7:
4533 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
4534 break;
4535 case 10:
4536 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
4537 break;
4538 case 14:
4539 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
4540 break;
4541 }
4542 if (INTEL_INFO(dev)->gen >= 4)
4543 dpll |= (6 << PLL_LOAD_PULSE_PHASE_SHIFT);
4544
Daniel Vetter09ede542013-04-30 14:01:45 +02004545 if (crtc->config.sdvo_tv_clock)
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004546 dpll |= PLL_REF_INPUT_TVCLKINBC;
Daniel Vetterf47709a2013-03-28 10:42:02 +01004547 else if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_LVDS) &&
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004548 intel_panel_use_ssc(dev_priv) && num_connectors < 2)
4549 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
4550 else
4551 dpll |= PLL_REF_INPUT_DREFCLK;
4552
4553 dpll |= DPLL_VCO_ENABLE;
4554 I915_WRITE(DPLL(pipe), dpll & ~DPLL_VCO_ENABLE);
4555 POSTING_READ(DPLL(pipe));
4556 udelay(150);
4557
Daniel Vetterf47709a2013-03-28 10:42:02 +01004558 for_each_encoder_on_crtc(dev, &crtc->base, encoder)
Daniel Vetterdafd2262012-11-26 17:22:07 +01004559 if (encoder->pre_pll_enable)
4560 encoder->pre_pll_enable(encoder);
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004561
Daniel Vetterf47709a2013-03-28 10:42:02 +01004562 if (crtc->config.has_dp_encoder)
4563 intel_dp_set_m_n(crtc);
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004564
4565 I915_WRITE(DPLL(pipe), dpll);
4566
4567 /* Wait for the clocks to stabilize. */
4568 POSTING_READ(DPLL(pipe));
4569 udelay(150);
4570
4571 if (INTEL_INFO(dev)->gen >= 4) {
Daniel Vetter198a037f2013-04-19 11:14:37 +02004572 u32 dpll_md = 0;
4573 if (crtc->config.pixel_multiplier > 1) {
4574 dpll_md = (crtc->config.pixel_multiplier - 1)
4575 << DPLL_MD_UDI_MULTIPLIER_SHIFT;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004576 }
Daniel Vetter198a037f2013-04-19 11:14:37 +02004577 I915_WRITE(DPLL_MD(pipe), dpll_md);
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004578 } else {
4579 /* The pixel multiplier can only be updated once the
4580 * DPLL is enabled and the clocks are stable.
4581 *
4582 * So write it again.
4583 */
4584 I915_WRITE(DPLL(pipe), dpll);
4585 }
4586}
4587
Daniel Vetterf47709a2013-03-28 10:42:02 +01004588static void i8xx_update_pll(struct intel_crtc *crtc,
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004589 struct drm_display_mode *adjusted_mode,
Daniel Vetterf47709a2013-03-28 10:42:02 +01004590 intel_clock_t *reduced_clock,
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004591 int num_connectors)
4592{
Daniel Vetterf47709a2013-03-28 10:42:02 +01004593 struct drm_device *dev = crtc->base.dev;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004594 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterdafd2262012-11-26 17:22:07 +01004595 struct intel_encoder *encoder;
Daniel Vetterf47709a2013-03-28 10:42:02 +01004596 int pipe = crtc->pipe;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004597 u32 dpll;
Daniel Vetterf47709a2013-03-28 10:42:02 +01004598 struct dpll *clock = &crtc->config.dpll;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004599
Daniel Vetterf47709a2013-03-28 10:42:02 +01004600 i9xx_update_pll_dividers(crtc, reduced_clock);
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05304601
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004602 dpll = DPLL_VGA_MODE_DIS;
4603
Daniel Vetterf47709a2013-03-28 10:42:02 +01004604 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_LVDS)) {
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004605 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
4606 } else {
4607 if (clock->p1 == 2)
4608 dpll |= PLL_P1_DIVIDE_BY_TWO;
4609 else
4610 dpll |= (clock->p1 - 2) << DPLL_FPA01_P1_POST_DIV_SHIFT;
4611 if (clock->p2 == 4)
4612 dpll |= PLL_P2_DIVIDE_BY_4;
4613 }
4614
Daniel Vetterf47709a2013-03-28 10:42:02 +01004615 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_LVDS) &&
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004616 intel_panel_use_ssc(dev_priv) && num_connectors < 2)
4617 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
4618 else
4619 dpll |= PLL_REF_INPUT_DREFCLK;
4620
4621 dpll |= DPLL_VCO_ENABLE;
4622 I915_WRITE(DPLL(pipe), dpll & ~DPLL_VCO_ENABLE);
4623 POSTING_READ(DPLL(pipe));
4624 udelay(150);
4625
Daniel Vetterf47709a2013-03-28 10:42:02 +01004626 for_each_encoder_on_crtc(dev, &crtc->base, encoder)
Daniel Vetterdafd2262012-11-26 17:22:07 +01004627 if (encoder->pre_pll_enable)
4628 encoder->pre_pll_enable(encoder);
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004629
Daniel Vetter5b5896e2012-09-11 12:37:55 +02004630 I915_WRITE(DPLL(pipe), dpll);
4631
4632 /* Wait for the clocks to stabilize. */
4633 POSTING_READ(DPLL(pipe));
4634 udelay(150);
4635
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004636 /* The pixel multiplier can only be updated once the
4637 * DPLL is enabled and the clocks are stable.
4638 *
4639 * So write it again.
4640 */
4641 I915_WRITE(DPLL(pipe), dpll);
4642}
4643
Paulo Zanonib0e77b92012-10-01 18:10:53 -03004644static void intel_set_pipe_timings(struct intel_crtc *intel_crtc,
4645 struct drm_display_mode *mode,
4646 struct drm_display_mode *adjusted_mode)
4647{
4648 struct drm_device *dev = intel_crtc->base.dev;
4649 struct drm_i915_private *dev_priv = dev->dev_private;
4650 enum pipe pipe = intel_crtc->pipe;
Daniel Vetter3b117c82013-04-17 20:15:07 +02004651 enum transcoder cpu_transcoder = intel_crtc->config.cpu_transcoder;
Daniel Vetter4d8a62e2013-05-03 11:49:51 +02004652 uint32_t vsyncshift, crtc_vtotal, crtc_vblank_end;
4653
4654 /* We need to be careful not to changed the adjusted mode, for otherwise
4655 * the hw state checker will get angry at the mismatch. */
4656 crtc_vtotal = adjusted_mode->crtc_vtotal;
4657 crtc_vblank_end = adjusted_mode->crtc_vblank_end;
Paulo Zanonib0e77b92012-10-01 18:10:53 -03004658
4659 if (!IS_GEN2(dev) && adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE) {
4660 /* the chip adds 2 halflines automatically */
Daniel Vetter4d8a62e2013-05-03 11:49:51 +02004661 crtc_vtotal -= 1;
4662 crtc_vblank_end -= 1;
Paulo Zanonib0e77b92012-10-01 18:10:53 -03004663 vsyncshift = adjusted_mode->crtc_hsync_start
4664 - adjusted_mode->crtc_htotal / 2;
4665 } else {
4666 vsyncshift = 0;
4667 }
4668
4669 if (INTEL_INFO(dev)->gen > 3)
Paulo Zanonife2b8f92012-10-23 18:30:02 -02004670 I915_WRITE(VSYNCSHIFT(cpu_transcoder), vsyncshift);
Paulo Zanonib0e77b92012-10-01 18:10:53 -03004671
Paulo Zanonife2b8f92012-10-23 18:30:02 -02004672 I915_WRITE(HTOTAL(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03004673 (adjusted_mode->crtc_hdisplay - 1) |
4674 ((adjusted_mode->crtc_htotal - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02004675 I915_WRITE(HBLANK(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03004676 (adjusted_mode->crtc_hblank_start - 1) |
4677 ((adjusted_mode->crtc_hblank_end - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02004678 I915_WRITE(HSYNC(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03004679 (adjusted_mode->crtc_hsync_start - 1) |
4680 ((adjusted_mode->crtc_hsync_end - 1) << 16));
4681
Paulo Zanonife2b8f92012-10-23 18:30:02 -02004682 I915_WRITE(VTOTAL(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03004683 (adjusted_mode->crtc_vdisplay - 1) |
Daniel Vetter4d8a62e2013-05-03 11:49:51 +02004684 ((crtc_vtotal - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02004685 I915_WRITE(VBLANK(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03004686 (adjusted_mode->crtc_vblank_start - 1) |
Daniel Vetter4d8a62e2013-05-03 11:49:51 +02004687 ((crtc_vblank_end - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02004688 I915_WRITE(VSYNC(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03004689 (adjusted_mode->crtc_vsync_start - 1) |
4690 ((adjusted_mode->crtc_vsync_end - 1) << 16));
4691
Paulo Zanonib5e508d2012-10-24 11:34:43 -02004692 /* Workaround: when the EDP input selection is B, the VTOTAL_B must be
4693 * programmed with the VTOTAL_EDP value. Same for VTOTAL_C. This is
4694 * documented on the DDI_FUNC_CTL register description, EDP Input Select
4695 * bits. */
4696 if (IS_HASWELL(dev) && cpu_transcoder == TRANSCODER_EDP &&
4697 (pipe == PIPE_B || pipe == PIPE_C))
4698 I915_WRITE(VTOTAL(pipe), I915_READ(VTOTAL(cpu_transcoder)));
4699
Paulo Zanonib0e77b92012-10-01 18:10:53 -03004700 /* pipesrc controls the size that is scaled from, which should
4701 * always be the user's requested size.
4702 */
4703 I915_WRITE(PIPESRC(pipe),
4704 ((mode->hdisplay - 1) << 16) | (mode->vdisplay - 1));
4705}
4706
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02004707static void intel_get_pipe_timings(struct intel_crtc *crtc,
4708 struct intel_crtc_config *pipe_config)
4709{
4710 struct drm_device *dev = crtc->base.dev;
4711 struct drm_i915_private *dev_priv = dev->dev_private;
4712 enum transcoder cpu_transcoder = pipe_config->cpu_transcoder;
4713 uint32_t tmp;
4714
4715 tmp = I915_READ(HTOTAL(cpu_transcoder));
4716 pipe_config->adjusted_mode.crtc_hdisplay = (tmp & 0xffff) + 1;
4717 pipe_config->adjusted_mode.crtc_htotal = ((tmp >> 16) & 0xffff) + 1;
4718 tmp = I915_READ(HBLANK(cpu_transcoder));
4719 pipe_config->adjusted_mode.crtc_hblank_start = (tmp & 0xffff) + 1;
4720 pipe_config->adjusted_mode.crtc_hblank_end = ((tmp >> 16) & 0xffff) + 1;
4721 tmp = I915_READ(HSYNC(cpu_transcoder));
4722 pipe_config->adjusted_mode.crtc_hsync_start = (tmp & 0xffff) + 1;
4723 pipe_config->adjusted_mode.crtc_hsync_end = ((tmp >> 16) & 0xffff) + 1;
4724
4725 tmp = I915_READ(VTOTAL(cpu_transcoder));
4726 pipe_config->adjusted_mode.crtc_vdisplay = (tmp & 0xffff) + 1;
4727 pipe_config->adjusted_mode.crtc_vtotal = ((tmp >> 16) & 0xffff) + 1;
4728 tmp = I915_READ(VBLANK(cpu_transcoder));
4729 pipe_config->adjusted_mode.crtc_vblank_start = (tmp & 0xffff) + 1;
4730 pipe_config->adjusted_mode.crtc_vblank_end = ((tmp >> 16) & 0xffff) + 1;
4731 tmp = I915_READ(VSYNC(cpu_transcoder));
4732 pipe_config->adjusted_mode.crtc_vsync_start = (tmp & 0xffff) + 1;
4733 pipe_config->adjusted_mode.crtc_vsync_end = ((tmp >> 16) & 0xffff) + 1;
4734
4735 if (I915_READ(PIPECONF(cpu_transcoder)) & PIPECONF_INTERLACE_MASK) {
4736 pipe_config->adjusted_mode.flags |= DRM_MODE_FLAG_INTERLACE;
4737 pipe_config->adjusted_mode.crtc_vtotal += 1;
4738 pipe_config->adjusted_mode.crtc_vblank_end += 1;
4739 }
4740
4741 tmp = I915_READ(PIPESRC(crtc->pipe));
4742 pipe_config->requested_mode.vdisplay = (tmp & 0xffff) + 1;
4743 pipe_config->requested_mode.hdisplay = ((tmp >> 16) & 0xffff) + 1;
4744}
4745
Daniel Vetter84b046f2013-02-19 18:48:54 +01004746static void i9xx_set_pipeconf(struct intel_crtc *intel_crtc)
4747{
4748 struct drm_device *dev = intel_crtc->base.dev;
4749 struct drm_i915_private *dev_priv = dev->dev_private;
4750 uint32_t pipeconf;
4751
4752 pipeconf = I915_READ(PIPECONF(intel_crtc->pipe));
4753
4754 if (intel_crtc->pipe == 0 && INTEL_INFO(dev)->gen < 4) {
4755 /* Enable pixel doubling when the dot clock is > 90% of the (display)
4756 * core speed.
4757 *
4758 * XXX: No double-wide on 915GM pipe B. Is that the only reason for the
4759 * pipe == 0 check?
4760 */
4761 if (intel_crtc->config.requested_mode.clock >
4762 dev_priv->display.get_display_clock_speed(dev) * 9 / 10)
4763 pipeconf |= PIPECONF_DOUBLE_WIDE;
4764 else
4765 pipeconf &= ~PIPECONF_DOUBLE_WIDE;
4766 }
4767
Daniel Vetterff9ce462013-04-24 14:57:17 +02004768 /* only g4x and later have fancy bpc/dither controls */
4769 if (IS_G4X(dev) || IS_VALLEYVIEW(dev)) {
4770 pipeconf &= ~(PIPECONF_BPC_MASK |
4771 PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_MASK);
Daniel Vetter84b046f2013-02-19 18:48:54 +01004772
Daniel Vetterff9ce462013-04-24 14:57:17 +02004773 /* Bspec claims that we can't use dithering for 30bpp pipes. */
4774 if (intel_crtc->config.dither && intel_crtc->config.pipe_bpp != 30)
4775 pipeconf |= PIPECONF_DITHER_EN |
4776 PIPECONF_DITHER_TYPE_SP;
4777
4778 switch (intel_crtc->config.pipe_bpp) {
4779 case 18:
4780 pipeconf |= PIPECONF_6BPC;
4781 break;
4782 case 24:
4783 pipeconf |= PIPECONF_8BPC;
4784 break;
4785 case 30:
4786 pipeconf |= PIPECONF_10BPC;
4787 break;
4788 default:
4789 /* Case prevented by intel_choose_pipe_bpp_dither. */
4790 BUG();
Daniel Vetter84b046f2013-02-19 18:48:54 +01004791 }
4792 }
4793
4794 if (HAS_PIPE_CXSR(dev)) {
4795 if (intel_crtc->lowfreq_avail) {
4796 DRM_DEBUG_KMS("enabling CxSR downclocking\n");
4797 pipeconf |= PIPECONF_CXSR_DOWNCLOCK;
4798 } else {
4799 DRM_DEBUG_KMS("disabling CxSR downclocking\n");
4800 pipeconf &= ~PIPECONF_CXSR_DOWNCLOCK;
4801 }
4802 }
4803
4804 pipeconf &= ~PIPECONF_INTERLACE_MASK;
4805 if (!IS_GEN2(dev) &&
4806 intel_crtc->config.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
4807 pipeconf |= PIPECONF_INTERLACE_W_FIELD_INDICATION;
4808 else
4809 pipeconf |= PIPECONF_PROGRESSIVE;
4810
Ville Syrjälä9c8e09b2013-04-02 16:10:09 +03004811 if (IS_VALLEYVIEW(dev)) {
4812 if (intel_crtc->config.limited_color_range)
4813 pipeconf |= PIPECONF_COLOR_RANGE_SELECT;
4814 else
4815 pipeconf &= ~PIPECONF_COLOR_RANGE_SELECT;
4816 }
4817
Daniel Vetter84b046f2013-02-19 18:48:54 +01004818 I915_WRITE(PIPECONF(intel_crtc->pipe), pipeconf);
4819 POSTING_READ(PIPECONF(intel_crtc->pipe));
4820}
4821
Eric Anholtf564048e2011-03-30 13:01:02 -07004822static int i9xx_crtc_mode_set(struct drm_crtc *crtc,
Eric Anholtf564048e2011-03-30 13:01:02 -07004823 int x, int y,
Daniel Vetter94352cf2012-07-05 22:51:56 +02004824 struct drm_framebuffer *fb)
Jesse Barnes79e53942008-11-07 14:24:08 -08004825{
4826 struct drm_device *dev = crtc->dev;
4827 struct drm_i915_private *dev_priv = dev->dev_private;
4828 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01004829 struct drm_display_mode *adjusted_mode =
4830 &intel_crtc->config.adjusted_mode;
4831 struct drm_display_mode *mode = &intel_crtc->config.requested_mode;
Jesse Barnes79e53942008-11-07 14:24:08 -08004832 int pipe = intel_crtc->pipe;
Jesse Barnes80824002009-09-10 15:28:06 -07004833 int plane = intel_crtc->plane;
Eric Anholtc751ce42010-03-25 11:48:48 -07004834 int refclk, num_connectors = 0;
Jesse Barnes652c3932009-08-17 13:31:43 -07004835 intel_clock_t clock, reduced_clock;
Daniel Vetter84b046f2013-02-19 18:48:54 +01004836 u32 dspcntr;
Daniel Vettera16af7212013-04-30 14:01:44 +02004837 bool ok, has_reduced_clock = false;
4838 bool is_lvds = false;
Chris Wilson5eddb702010-09-11 13:48:45 +01004839 struct intel_encoder *encoder;
Ma Lingd4906092009-03-18 20:13:27 +08004840 const intel_limit_t *limit;
Chris Wilson5c3b82e2009-02-11 13:25:09 +00004841 int ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08004842
Daniel Vetter6c2b7c122012-07-05 09:50:24 +02004843 for_each_encoder_on_crtc(dev, crtc, encoder) {
Chris Wilson5eddb702010-09-11 13:48:45 +01004844 switch (encoder->type) {
Jesse Barnes79e53942008-11-07 14:24:08 -08004845 case INTEL_OUTPUT_LVDS:
4846 is_lvds = true;
4847 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08004848 }
Kristian Høgsberg43565a02009-02-13 20:56:52 -05004849
Eric Anholtc751ce42010-03-25 11:48:48 -07004850 num_connectors++;
Jesse Barnes79e53942008-11-07 14:24:08 -08004851 }
4852
Jesse Barnesc65d77d2011-12-15 12:30:36 -08004853 refclk = i9xx_get_refclk(crtc, num_connectors);
Jesse Barnes79e53942008-11-07 14:24:08 -08004854
Ma Lingd4906092009-03-18 20:13:27 +08004855 /*
4856 * Returns a set of divisors for the desired target clock with the given
4857 * refclk, or FALSE. The returned values represent the clock equation:
4858 * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2.
4859 */
Chris Wilson1b894b52010-12-14 20:04:54 +00004860 limit = intel_limit(crtc, refclk);
Daniel Vetteree9300b2013-06-03 22:40:22 +02004861 ok = dev_priv->display.find_dpll(limit, crtc, adjusted_mode->clock,
4862 refclk, NULL, &clock);
4863 if (!ok && !intel_crtc->config.clock_set) {
Jesse Barnes79e53942008-11-07 14:24:08 -08004864 DRM_ERROR("Couldn't find PLL settings for mode!\n");
Eric Anholtf564048e2011-03-30 13:01:02 -07004865 return -EINVAL;
4866 }
4867
4868 /* Ensure that the cursor is valid for the new mode before changing... */
4869 intel_crtc_update_cursor(crtc, true);
4870
4871 if (is_lvds && dev_priv->lvds_downclock_avail) {
Sean Paulcec2f352012-01-10 15:09:36 -08004872 /*
4873 * Ensure we match the reduced clock's P to the target clock.
4874 * If the clocks don't match, we can't switch the display clock
4875 * by using the FP0/FP1. In such case we will disable the LVDS
4876 * downclock feature.
4877 */
Daniel Vetteree9300b2013-06-03 22:40:22 +02004878 has_reduced_clock =
4879 dev_priv->display.find_dpll(limit, crtc,
Eric Anholtf564048e2011-03-30 13:01:02 -07004880 dev_priv->lvds_downclock,
Daniel Vetteree9300b2013-06-03 22:40:22 +02004881 refclk, &clock,
Eric Anholtf564048e2011-03-30 13:01:02 -07004882 &reduced_clock);
Eric Anholtf564048e2011-03-30 13:01:02 -07004883 }
Daniel Vetterf47709a2013-03-28 10:42:02 +01004884 /* Compat-code for transition, will disappear. */
4885 if (!intel_crtc->config.clock_set) {
4886 intel_crtc->config.dpll.n = clock.n;
4887 intel_crtc->config.dpll.m1 = clock.m1;
4888 intel_crtc->config.dpll.m2 = clock.m2;
4889 intel_crtc->config.dpll.p1 = clock.p1;
4890 intel_crtc->config.dpll.p2 = clock.p2;
4891 }
Eric Anholtf564048e2011-03-30 13:01:02 -07004892
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004893 if (IS_GEN2(dev))
Daniel Vetterf47709a2013-03-28 10:42:02 +01004894 i8xx_update_pll(intel_crtc, adjusted_mode,
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05304895 has_reduced_clock ? &reduced_clock : NULL,
4896 num_connectors);
Jesse Barnesa0c4da22012-06-15 11:55:13 -07004897 else if (IS_VALLEYVIEW(dev))
Daniel Vetterf47709a2013-03-28 10:42:02 +01004898 vlv_update_pll(intel_crtc);
Eric Anholtf564048e2011-03-30 13:01:02 -07004899 else
Daniel Vetterf47709a2013-03-28 10:42:02 +01004900 i9xx_update_pll(intel_crtc,
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004901 has_reduced_clock ? &reduced_clock : NULL,
Jesse Barnes89b667f2013-04-18 14:51:36 -07004902 num_connectors);
Eric Anholtf564048e2011-03-30 13:01:02 -07004903
Eric Anholtf564048e2011-03-30 13:01:02 -07004904 /* Set up the display plane register */
4905 dspcntr = DISPPLANE_GAMMA_ENABLE;
4906
Jesse Barnesda6ecc52013-03-08 10:46:00 -08004907 if (!IS_VALLEYVIEW(dev)) {
4908 if (pipe == 0)
4909 dspcntr &= ~DISPPLANE_SEL_PIPE_MASK;
4910 else
4911 dspcntr |= DISPPLANE_SEL_PIPE_B;
4912 }
Eric Anholtf564048e2011-03-30 13:01:02 -07004913
Paulo Zanonib0e77b92012-10-01 18:10:53 -03004914 intel_set_pipe_timings(intel_crtc, mode, adjusted_mode);
Eric Anholtf564048e2011-03-30 13:01:02 -07004915
4916 /* pipesrc and dspsize control the size that is scaled from,
4917 * which should always be the user's requested size.
4918 */
Eric Anholt929c77f2011-03-30 13:01:04 -07004919 I915_WRITE(DSPSIZE(plane),
4920 ((mode->vdisplay - 1) << 16) |
4921 (mode->hdisplay - 1));
4922 I915_WRITE(DSPPOS(plane), 0);
Eric Anholtf564048e2011-03-30 13:01:02 -07004923
Daniel Vetter84b046f2013-02-19 18:48:54 +01004924 i9xx_set_pipeconf(intel_crtc);
4925
Eric Anholtf564048e2011-03-30 13:01:02 -07004926 I915_WRITE(DSPCNTR(plane), dspcntr);
4927 POSTING_READ(DSPCNTR(plane));
4928
Daniel Vetter94352cf2012-07-05 22:51:56 +02004929 ret = intel_pipe_set_base(crtc, x, y, fb);
Eric Anholtf564048e2011-03-30 13:01:02 -07004930
4931 intel_update_watermarks(dev);
4932
Eric Anholtf564048e2011-03-30 13:01:02 -07004933 return ret;
4934}
4935
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02004936static void i9xx_get_pfit_config(struct intel_crtc *crtc,
4937 struct intel_crtc_config *pipe_config)
4938{
4939 struct drm_device *dev = crtc->base.dev;
4940 struct drm_i915_private *dev_priv = dev->dev_private;
4941 uint32_t tmp;
4942
4943 tmp = I915_READ(PFIT_CONTROL);
4944
4945 if (INTEL_INFO(dev)->gen < 4) {
4946 if (crtc->pipe != PIPE_B)
4947 return;
4948
4949 /* gen2/3 store dither state in pfit control, needs to match */
4950 pipe_config->gmch_pfit.control = tmp & PANEL_8TO6_DITHER_ENABLE;
4951 } else {
4952 if ((tmp & PFIT_PIPE_MASK) != (crtc->pipe << PFIT_PIPE_SHIFT))
4953 return;
4954 }
4955
4956 if (!(tmp & PFIT_ENABLE))
4957 return;
4958
4959 pipe_config->gmch_pfit.control = I915_READ(PFIT_CONTROL);
4960 pipe_config->gmch_pfit.pgm_ratios = I915_READ(PFIT_PGM_RATIOS);
4961 if (INTEL_INFO(dev)->gen < 5)
4962 pipe_config->gmch_pfit.lvds_border_bits =
4963 I915_READ(LVDS) & LVDS_BORDER_ENABLE;
4964}
4965
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01004966static bool i9xx_get_pipe_config(struct intel_crtc *crtc,
4967 struct intel_crtc_config *pipe_config)
4968{
4969 struct drm_device *dev = crtc->base.dev;
4970 struct drm_i915_private *dev_priv = dev->dev_private;
4971 uint32_t tmp;
4972
Daniel Vettereccb1402013-05-22 00:50:22 +02004973 pipe_config->cpu_transcoder = crtc->pipe;
4974
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01004975 tmp = I915_READ(PIPECONF(crtc->pipe));
4976 if (!(tmp & PIPECONF_ENABLE))
4977 return false;
4978
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02004979 intel_get_pipe_timings(crtc, pipe_config);
4980
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02004981 i9xx_get_pfit_config(crtc, pipe_config);
4982
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01004983 return true;
4984}
4985
Paulo Zanonidde86e22012-12-01 12:04:25 -02004986static void ironlake_init_pch_refclk(struct drm_device *dev)
Jesse Barnes13d83a62011-08-03 12:59:20 -07004987{
4988 struct drm_i915_private *dev_priv = dev->dev_private;
4989 struct drm_mode_config *mode_config = &dev->mode_config;
Jesse Barnes13d83a62011-08-03 12:59:20 -07004990 struct intel_encoder *encoder;
Chris Wilson74cfd7a2013-03-26 16:33:04 -07004991 u32 val, final;
Jesse Barnes13d83a62011-08-03 12:59:20 -07004992 bool has_lvds = false;
Keith Packard199e5d72011-09-22 12:01:57 -07004993 bool has_cpu_edp = false;
Keith Packard199e5d72011-09-22 12:01:57 -07004994 bool has_panel = false;
Keith Packard99eb6a02011-09-26 14:29:12 -07004995 bool has_ck505 = false;
4996 bool can_ssc = false;
Jesse Barnes13d83a62011-08-03 12:59:20 -07004997
4998 /* We need to take the global config into account */
Keith Packard199e5d72011-09-22 12:01:57 -07004999 list_for_each_entry(encoder, &mode_config->encoder_list,
5000 base.head) {
5001 switch (encoder->type) {
5002 case INTEL_OUTPUT_LVDS:
5003 has_panel = true;
5004 has_lvds = true;
5005 break;
5006 case INTEL_OUTPUT_EDP:
5007 has_panel = true;
Imre Deak2de69052013-05-08 13:14:04 +03005008 if (enc_to_dig_port(&encoder->base)->port == PORT_A)
Keith Packard199e5d72011-09-22 12:01:57 -07005009 has_cpu_edp = true;
5010 break;
Jesse Barnes13d83a62011-08-03 12:59:20 -07005011 }
5012 }
5013
Keith Packard99eb6a02011-09-26 14:29:12 -07005014 if (HAS_PCH_IBX(dev)) {
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03005015 has_ck505 = dev_priv->vbt.display_clock_mode;
Keith Packard99eb6a02011-09-26 14:29:12 -07005016 can_ssc = has_ck505;
5017 } else {
5018 has_ck505 = false;
5019 can_ssc = true;
5020 }
5021
Imre Deak2de69052013-05-08 13:14:04 +03005022 DRM_DEBUG_KMS("has_panel %d has_lvds %d has_ck505 %d\n",
5023 has_panel, has_lvds, has_ck505);
Jesse Barnes13d83a62011-08-03 12:59:20 -07005024
5025 /* Ironlake: try to setup display ref clock before DPLL
5026 * enabling. This is only under driver's control after
5027 * PCH B stepping, previous chipset stepping should be
5028 * ignoring this setting.
5029 */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07005030 val = I915_READ(PCH_DREF_CONTROL);
Jesse Barnes13d83a62011-08-03 12:59:20 -07005031
Chris Wilson74cfd7a2013-03-26 16:33:04 -07005032 /* As we must carefully and slowly disable/enable each source in turn,
5033 * compute the final state we want first and check if we need to
5034 * make any changes at all.
5035 */
5036 final = val;
5037 final &= ~DREF_NONSPREAD_SOURCE_MASK;
Keith Packard99eb6a02011-09-26 14:29:12 -07005038 if (has_ck505)
Chris Wilson74cfd7a2013-03-26 16:33:04 -07005039 final |= DREF_NONSPREAD_CK505_ENABLE;
Keith Packard99eb6a02011-09-26 14:29:12 -07005040 else
Chris Wilson74cfd7a2013-03-26 16:33:04 -07005041 final |= DREF_NONSPREAD_SOURCE_ENABLE;
5042
5043 final &= ~DREF_SSC_SOURCE_MASK;
5044 final &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
5045 final &= ~DREF_SSC1_ENABLE;
Jesse Barnes13d83a62011-08-03 12:59:20 -07005046
Keith Packard199e5d72011-09-22 12:01:57 -07005047 if (has_panel) {
Chris Wilson74cfd7a2013-03-26 16:33:04 -07005048 final |= DREF_SSC_SOURCE_ENABLE;
5049
5050 if (intel_panel_use_ssc(dev_priv) && can_ssc)
5051 final |= DREF_SSC1_ENABLE;
5052
5053 if (has_cpu_edp) {
5054 if (intel_panel_use_ssc(dev_priv) && can_ssc)
5055 final |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD;
5056 else
5057 final |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD;
5058 } else
5059 final |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
5060 } else {
5061 final |= DREF_SSC_SOURCE_DISABLE;
5062 final |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
5063 }
5064
5065 if (final == val)
5066 return;
5067
5068 /* Always enable nonspread source */
5069 val &= ~DREF_NONSPREAD_SOURCE_MASK;
5070
5071 if (has_ck505)
5072 val |= DREF_NONSPREAD_CK505_ENABLE;
5073 else
5074 val |= DREF_NONSPREAD_SOURCE_ENABLE;
5075
5076 if (has_panel) {
5077 val &= ~DREF_SSC_SOURCE_MASK;
5078 val |= DREF_SSC_SOURCE_ENABLE;
Jesse Barnes13d83a62011-08-03 12:59:20 -07005079
Keith Packard199e5d72011-09-22 12:01:57 -07005080 /* SSC must be turned on before enabling the CPU output */
Keith Packard99eb6a02011-09-26 14:29:12 -07005081 if (intel_panel_use_ssc(dev_priv) && can_ssc) {
Keith Packard199e5d72011-09-22 12:01:57 -07005082 DRM_DEBUG_KMS("Using SSC on panel\n");
Chris Wilson74cfd7a2013-03-26 16:33:04 -07005083 val |= DREF_SSC1_ENABLE;
Daniel Vettere77166b2012-03-30 22:14:05 +02005084 } else
Chris Wilson74cfd7a2013-03-26 16:33:04 -07005085 val &= ~DREF_SSC1_ENABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07005086
5087 /* Get SSC going before enabling the outputs */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07005088 I915_WRITE(PCH_DREF_CONTROL, val);
Keith Packard199e5d72011-09-22 12:01:57 -07005089 POSTING_READ(PCH_DREF_CONTROL);
5090 udelay(200);
5091
Chris Wilson74cfd7a2013-03-26 16:33:04 -07005092 val &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
Jesse Barnes13d83a62011-08-03 12:59:20 -07005093
5094 /* Enable CPU source on CPU attached eDP */
Keith Packard199e5d72011-09-22 12:01:57 -07005095 if (has_cpu_edp) {
Keith Packard99eb6a02011-09-26 14:29:12 -07005096 if (intel_panel_use_ssc(dev_priv) && can_ssc) {
Keith Packard199e5d72011-09-22 12:01:57 -07005097 DRM_DEBUG_KMS("Using SSC on eDP\n");
Chris Wilson74cfd7a2013-03-26 16:33:04 -07005098 val |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD;
Keith Packard199e5d72011-09-22 12:01:57 -07005099 }
Jesse Barnes13d83a62011-08-03 12:59:20 -07005100 else
Chris Wilson74cfd7a2013-03-26 16:33:04 -07005101 val |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD;
Keith Packard199e5d72011-09-22 12:01:57 -07005102 } else
Chris Wilson74cfd7a2013-03-26 16:33:04 -07005103 val |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07005104
Chris Wilson74cfd7a2013-03-26 16:33:04 -07005105 I915_WRITE(PCH_DREF_CONTROL, val);
Keith Packard199e5d72011-09-22 12:01:57 -07005106 POSTING_READ(PCH_DREF_CONTROL);
5107 udelay(200);
5108 } else {
5109 DRM_DEBUG_KMS("Disabling SSC entirely\n");
5110
Chris Wilson74cfd7a2013-03-26 16:33:04 -07005111 val &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
Keith Packard199e5d72011-09-22 12:01:57 -07005112
5113 /* Turn off CPU output */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07005114 val |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07005115
Chris Wilson74cfd7a2013-03-26 16:33:04 -07005116 I915_WRITE(PCH_DREF_CONTROL, val);
Keith Packard199e5d72011-09-22 12:01:57 -07005117 POSTING_READ(PCH_DREF_CONTROL);
5118 udelay(200);
5119
5120 /* Turn off the SSC source */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07005121 val &= ~DREF_SSC_SOURCE_MASK;
5122 val |= DREF_SSC_SOURCE_DISABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07005123
5124 /* Turn off SSC1 */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07005125 val &= ~DREF_SSC1_ENABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07005126
Chris Wilson74cfd7a2013-03-26 16:33:04 -07005127 I915_WRITE(PCH_DREF_CONTROL, val);
Jesse Barnes13d83a62011-08-03 12:59:20 -07005128 POSTING_READ(PCH_DREF_CONTROL);
5129 udelay(200);
5130 }
Chris Wilson74cfd7a2013-03-26 16:33:04 -07005131
5132 BUG_ON(val != final);
Jesse Barnes13d83a62011-08-03 12:59:20 -07005133}
5134
Paulo Zanonidde86e22012-12-01 12:04:25 -02005135/* Sequence to enable CLKOUT_DP for FDI usage and configure PCH FDI I/O. */
5136static void lpt_init_pch_refclk(struct drm_device *dev)
5137{
5138 struct drm_i915_private *dev_priv = dev->dev_private;
5139 struct drm_mode_config *mode_config = &dev->mode_config;
5140 struct intel_encoder *encoder;
5141 bool has_vga = false;
5142 bool is_sdv = false;
5143 u32 tmp;
5144
5145 list_for_each_entry(encoder, &mode_config->encoder_list, base.head) {
5146 switch (encoder->type) {
5147 case INTEL_OUTPUT_ANALOG:
5148 has_vga = true;
5149 break;
5150 }
5151 }
5152
5153 if (!has_vga)
5154 return;
5155
Daniel Vetterc00db242013-01-22 15:33:27 +01005156 mutex_lock(&dev_priv->dpio_lock);
5157
Paulo Zanonidde86e22012-12-01 12:04:25 -02005158 /* XXX: Rip out SDV support once Haswell ships for real. */
5159 if (IS_HASWELL(dev) && (dev->pci_device & 0xFF00) == 0x0C00)
5160 is_sdv = true;
5161
5162 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
5163 tmp &= ~SBI_SSCCTL_DISABLE;
5164 tmp |= SBI_SSCCTL_PATHALT;
5165 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
5166
5167 udelay(24);
5168
5169 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
5170 tmp &= ~SBI_SSCCTL_PATHALT;
5171 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
5172
5173 if (!is_sdv) {
5174 tmp = I915_READ(SOUTH_CHICKEN2);
5175 tmp |= FDI_MPHY_IOSFSB_RESET_CTL;
5176 I915_WRITE(SOUTH_CHICKEN2, tmp);
5177
5178 if (wait_for_atomic_us(I915_READ(SOUTH_CHICKEN2) &
5179 FDI_MPHY_IOSFSB_RESET_STATUS, 100))
5180 DRM_ERROR("FDI mPHY reset assert timeout\n");
5181
5182 tmp = I915_READ(SOUTH_CHICKEN2);
5183 tmp &= ~FDI_MPHY_IOSFSB_RESET_CTL;
5184 I915_WRITE(SOUTH_CHICKEN2, tmp);
5185
5186 if (wait_for_atomic_us((I915_READ(SOUTH_CHICKEN2) &
5187 FDI_MPHY_IOSFSB_RESET_STATUS) == 0,
5188 100))
5189 DRM_ERROR("FDI mPHY reset de-assert timeout\n");
5190 }
5191
5192 tmp = intel_sbi_read(dev_priv, 0x8008, SBI_MPHY);
5193 tmp &= ~(0xFF << 24);
5194 tmp |= (0x12 << 24);
5195 intel_sbi_write(dev_priv, 0x8008, tmp, SBI_MPHY);
5196
Paulo Zanonidde86e22012-12-01 12:04:25 -02005197 if (is_sdv) {
5198 tmp = intel_sbi_read(dev_priv, 0x800C, SBI_MPHY);
5199 tmp |= 0x7FFF;
5200 intel_sbi_write(dev_priv, 0x800C, tmp, SBI_MPHY);
5201 }
5202
5203 tmp = intel_sbi_read(dev_priv, 0x2008, SBI_MPHY);
5204 tmp |= (1 << 11);
5205 intel_sbi_write(dev_priv, 0x2008, tmp, SBI_MPHY);
5206
5207 tmp = intel_sbi_read(dev_priv, 0x2108, SBI_MPHY);
5208 tmp |= (1 << 11);
5209 intel_sbi_write(dev_priv, 0x2108, tmp, SBI_MPHY);
5210
5211 if (is_sdv) {
5212 tmp = intel_sbi_read(dev_priv, 0x2038, SBI_MPHY);
5213 tmp |= (0x3F << 24) | (0xF << 20) | (0xF << 16);
5214 intel_sbi_write(dev_priv, 0x2038, tmp, SBI_MPHY);
5215
5216 tmp = intel_sbi_read(dev_priv, 0x2138, SBI_MPHY);
5217 tmp |= (0x3F << 24) | (0xF << 20) | (0xF << 16);
5218 intel_sbi_write(dev_priv, 0x2138, tmp, SBI_MPHY);
5219
5220 tmp = intel_sbi_read(dev_priv, 0x203C, SBI_MPHY);
5221 tmp |= (0x3F << 8);
5222 intel_sbi_write(dev_priv, 0x203C, tmp, SBI_MPHY);
5223
5224 tmp = intel_sbi_read(dev_priv, 0x213C, SBI_MPHY);
5225 tmp |= (0x3F << 8);
5226 intel_sbi_write(dev_priv, 0x213C, tmp, SBI_MPHY);
5227 }
5228
5229 tmp = intel_sbi_read(dev_priv, 0x206C, SBI_MPHY);
5230 tmp |= (1 << 24) | (1 << 21) | (1 << 18);
5231 intel_sbi_write(dev_priv, 0x206C, tmp, SBI_MPHY);
5232
5233 tmp = intel_sbi_read(dev_priv, 0x216C, SBI_MPHY);
5234 tmp |= (1 << 24) | (1 << 21) | (1 << 18);
5235 intel_sbi_write(dev_priv, 0x216C, tmp, SBI_MPHY);
5236
5237 if (!is_sdv) {
5238 tmp = intel_sbi_read(dev_priv, 0x2080, SBI_MPHY);
5239 tmp &= ~(7 << 13);
5240 tmp |= (5 << 13);
5241 intel_sbi_write(dev_priv, 0x2080, tmp, SBI_MPHY);
5242
5243 tmp = intel_sbi_read(dev_priv, 0x2180, SBI_MPHY);
5244 tmp &= ~(7 << 13);
5245 tmp |= (5 << 13);
5246 intel_sbi_write(dev_priv, 0x2180, tmp, SBI_MPHY);
5247 }
5248
5249 tmp = intel_sbi_read(dev_priv, 0x208C, SBI_MPHY);
5250 tmp &= ~0xFF;
5251 tmp |= 0x1C;
5252 intel_sbi_write(dev_priv, 0x208C, tmp, SBI_MPHY);
5253
5254 tmp = intel_sbi_read(dev_priv, 0x218C, SBI_MPHY);
5255 tmp &= ~0xFF;
5256 tmp |= 0x1C;
5257 intel_sbi_write(dev_priv, 0x218C, tmp, SBI_MPHY);
5258
5259 tmp = intel_sbi_read(dev_priv, 0x2098, SBI_MPHY);
5260 tmp &= ~(0xFF << 16);
5261 tmp |= (0x1C << 16);
5262 intel_sbi_write(dev_priv, 0x2098, tmp, SBI_MPHY);
5263
5264 tmp = intel_sbi_read(dev_priv, 0x2198, SBI_MPHY);
5265 tmp &= ~(0xFF << 16);
5266 tmp |= (0x1C << 16);
5267 intel_sbi_write(dev_priv, 0x2198, tmp, SBI_MPHY);
5268
5269 if (!is_sdv) {
5270 tmp = intel_sbi_read(dev_priv, 0x20C4, SBI_MPHY);
5271 tmp |= (1 << 27);
5272 intel_sbi_write(dev_priv, 0x20C4, tmp, SBI_MPHY);
5273
5274 tmp = intel_sbi_read(dev_priv, 0x21C4, SBI_MPHY);
5275 tmp |= (1 << 27);
5276 intel_sbi_write(dev_priv, 0x21C4, tmp, SBI_MPHY);
5277
5278 tmp = intel_sbi_read(dev_priv, 0x20EC, SBI_MPHY);
5279 tmp &= ~(0xF << 28);
5280 tmp |= (4 << 28);
5281 intel_sbi_write(dev_priv, 0x20EC, tmp, SBI_MPHY);
5282
5283 tmp = intel_sbi_read(dev_priv, 0x21EC, SBI_MPHY);
5284 tmp &= ~(0xF << 28);
5285 tmp |= (4 << 28);
5286 intel_sbi_write(dev_priv, 0x21EC, tmp, SBI_MPHY);
5287 }
5288
5289 /* ULT uses SBI_GEN0, but ULT doesn't have VGA, so we don't care. */
5290 tmp = intel_sbi_read(dev_priv, SBI_DBUFF0, SBI_ICLK);
5291 tmp |= SBI_DBUFF0_ENABLE;
5292 intel_sbi_write(dev_priv, SBI_DBUFF0, tmp, SBI_ICLK);
Daniel Vetterc00db242013-01-22 15:33:27 +01005293
5294 mutex_unlock(&dev_priv->dpio_lock);
Paulo Zanonidde86e22012-12-01 12:04:25 -02005295}
5296
5297/*
5298 * Initialize reference clocks when the driver loads
5299 */
5300void intel_init_pch_refclk(struct drm_device *dev)
5301{
5302 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev))
5303 ironlake_init_pch_refclk(dev);
5304 else if (HAS_PCH_LPT(dev))
5305 lpt_init_pch_refclk(dev);
5306}
5307
Jesse Barnesd9d444c2011-09-02 13:03:05 -07005308static int ironlake_get_refclk(struct drm_crtc *crtc)
5309{
5310 struct drm_device *dev = crtc->dev;
5311 struct drm_i915_private *dev_priv = dev->dev_private;
5312 struct intel_encoder *encoder;
Jesse Barnesd9d444c2011-09-02 13:03:05 -07005313 int num_connectors = 0;
5314 bool is_lvds = false;
5315
Daniel Vetter6c2b7c122012-07-05 09:50:24 +02005316 for_each_encoder_on_crtc(dev, crtc, encoder) {
Jesse Barnesd9d444c2011-09-02 13:03:05 -07005317 switch (encoder->type) {
5318 case INTEL_OUTPUT_LVDS:
5319 is_lvds = true;
5320 break;
Jesse Barnesd9d444c2011-09-02 13:03:05 -07005321 }
5322 num_connectors++;
5323 }
5324
5325 if (is_lvds && intel_panel_use_ssc(dev_priv) && num_connectors < 2) {
5326 DRM_DEBUG_KMS("using SSC reference clock of %d MHz\n",
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03005327 dev_priv->vbt.lvds_ssc_freq);
5328 return dev_priv->vbt.lvds_ssc_freq * 1000;
Jesse Barnesd9d444c2011-09-02 13:03:05 -07005329 }
5330
5331 return 120000;
5332}
5333
Daniel Vetter6ff93602013-04-19 11:24:36 +02005334static void ironlake_set_pipeconf(struct drm_crtc *crtc)
Paulo Zanonic8203562012-09-12 10:06:29 -03005335{
5336 struct drm_i915_private *dev_priv = crtc->dev->dev_private;
5337 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5338 int pipe = intel_crtc->pipe;
5339 uint32_t val;
5340
5341 val = I915_READ(PIPECONF(pipe));
5342
Daniel Vetterdfd07d72012-12-17 11:21:38 +01005343 val &= ~PIPECONF_BPC_MASK;
Daniel Vetter965e0c42013-03-27 00:44:57 +01005344 switch (intel_crtc->config.pipe_bpp) {
Paulo Zanonic8203562012-09-12 10:06:29 -03005345 case 18:
Daniel Vetterdfd07d72012-12-17 11:21:38 +01005346 val |= PIPECONF_6BPC;
Paulo Zanonic8203562012-09-12 10:06:29 -03005347 break;
5348 case 24:
Daniel Vetterdfd07d72012-12-17 11:21:38 +01005349 val |= PIPECONF_8BPC;
Paulo Zanonic8203562012-09-12 10:06:29 -03005350 break;
5351 case 30:
Daniel Vetterdfd07d72012-12-17 11:21:38 +01005352 val |= PIPECONF_10BPC;
Paulo Zanonic8203562012-09-12 10:06:29 -03005353 break;
5354 case 36:
Daniel Vetterdfd07d72012-12-17 11:21:38 +01005355 val |= PIPECONF_12BPC;
Paulo Zanonic8203562012-09-12 10:06:29 -03005356 break;
5357 default:
Paulo Zanonicc769b62012-09-20 18:36:03 -03005358 /* Case prevented by intel_choose_pipe_bpp_dither. */
5359 BUG();
Paulo Zanonic8203562012-09-12 10:06:29 -03005360 }
5361
5362 val &= ~(PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_MASK);
Daniel Vetterd8b32242013-04-25 17:54:44 +02005363 if (intel_crtc->config.dither)
Paulo Zanonic8203562012-09-12 10:06:29 -03005364 val |= (PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_SP);
5365
5366 val &= ~PIPECONF_INTERLACE_MASK;
Daniel Vetter6ff93602013-04-19 11:24:36 +02005367 if (intel_crtc->config.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
Paulo Zanonic8203562012-09-12 10:06:29 -03005368 val |= PIPECONF_INTERLACED_ILK;
5369 else
5370 val |= PIPECONF_PROGRESSIVE;
5371
Daniel Vetter50f3b012013-03-27 00:44:56 +01005372 if (intel_crtc->config.limited_color_range)
Ville Syrjälä3685a8f2013-01-17 16:31:28 +02005373 val |= PIPECONF_COLOR_RANGE_SELECT;
5374 else
5375 val &= ~PIPECONF_COLOR_RANGE_SELECT;
5376
Paulo Zanonic8203562012-09-12 10:06:29 -03005377 I915_WRITE(PIPECONF(pipe), val);
5378 POSTING_READ(PIPECONF(pipe));
5379}
5380
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02005381/*
5382 * Set up the pipe CSC unit.
5383 *
5384 * Currently only full range RGB to limited range RGB conversion
5385 * is supported, but eventually this should handle various
5386 * RGB<->YCbCr scenarios as well.
5387 */
Daniel Vetter50f3b012013-03-27 00:44:56 +01005388static void intel_set_pipe_csc(struct drm_crtc *crtc)
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02005389{
5390 struct drm_device *dev = crtc->dev;
5391 struct drm_i915_private *dev_priv = dev->dev_private;
5392 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5393 int pipe = intel_crtc->pipe;
5394 uint16_t coeff = 0x7800; /* 1.0 */
5395
5396 /*
5397 * TODO: Check what kind of values actually come out of the pipe
5398 * with these coeff/postoff values and adjust to get the best
5399 * accuracy. Perhaps we even need to take the bpc value into
5400 * consideration.
5401 */
5402
Daniel Vetter50f3b012013-03-27 00:44:56 +01005403 if (intel_crtc->config.limited_color_range)
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02005404 coeff = ((235 - 16) * (1 << 12) / 255) & 0xff8; /* 0.xxx... */
5405
5406 /*
5407 * GY/GU and RY/RU should be the other way around according
5408 * to BSpec, but reality doesn't agree. Just set them up in
5409 * a way that results in the correct picture.
5410 */
5411 I915_WRITE(PIPE_CSC_COEFF_RY_GY(pipe), coeff << 16);
5412 I915_WRITE(PIPE_CSC_COEFF_BY(pipe), 0);
5413
5414 I915_WRITE(PIPE_CSC_COEFF_RU_GU(pipe), coeff);
5415 I915_WRITE(PIPE_CSC_COEFF_BU(pipe), 0);
5416
5417 I915_WRITE(PIPE_CSC_COEFF_RV_GV(pipe), 0);
5418 I915_WRITE(PIPE_CSC_COEFF_BV(pipe), coeff << 16);
5419
5420 I915_WRITE(PIPE_CSC_PREOFF_HI(pipe), 0);
5421 I915_WRITE(PIPE_CSC_PREOFF_ME(pipe), 0);
5422 I915_WRITE(PIPE_CSC_PREOFF_LO(pipe), 0);
5423
5424 if (INTEL_INFO(dev)->gen > 6) {
5425 uint16_t postoff = 0;
5426
Daniel Vetter50f3b012013-03-27 00:44:56 +01005427 if (intel_crtc->config.limited_color_range)
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02005428 postoff = (16 * (1 << 13) / 255) & 0x1fff;
5429
5430 I915_WRITE(PIPE_CSC_POSTOFF_HI(pipe), postoff);
5431 I915_WRITE(PIPE_CSC_POSTOFF_ME(pipe), postoff);
5432 I915_WRITE(PIPE_CSC_POSTOFF_LO(pipe), postoff);
5433
5434 I915_WRITE(PIPE_CSC_MODE(pipe), 0);
5435 } else {
5436 uint32_t mode = CSC_MODE_YUV_TO_RGB;
5437
Daniel Vetter50f3b012013-03-27 00:44:56 +01005438 if (intel_crtc->config.limited_color_range)
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02005439 mode |= CSC_BLACK_SCREEN_OFFSET;
5440
5441 I915_WRITE(PIPE_CSC_MODE(pipe), mode);
5442 }
5443}
5444
Daniel Vetter6ff93602013-04-19 11:24:36 +02005445static void haswell_set_pipeconf(struct drm_crtc *crtc)
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03005446{
5447 struct drm_i915_private *dev_priv = crtc->dev->dev_private;
5448 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter3b117c82013-04-17 20:15:07 +02005449 enum transcoder cpu_transcoder = intel_crtc->config.cpu_transcoder;
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03005450 uint32_t val;
5451
Paulo Zanoni702e7a52012-10-23 18:29:59 -02005452 val = I915_READ(PIPECONF(cpu_transcoder));
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03005453
5454 val &= ~(PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_MASK);
Daniel Vetterd8b32242013-04-25 17:54:44 +02005455 if (intel_crtc->config.dither)
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03005456 val |= (PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_SP);
5457
5458 val &= ~PIPECONF_INTERLACE_MASK_HSW;
Daniel Vetter6ff93602013-04-19 11:24:36 +02005459 if (intel_crtc->config.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03005460 val |= PIPECONF_INTERLACED_ILK;
5461 else
5462 val |= PIPECONF_PROGRESSIVE;
5463
Paulo Zanoni702e7a52012-10-23 18:29:59 -02005464 I915_WRITE(PIPECONF(cpu_transcoder), val);
5465 POSTING_READ(PIPECONF(cpu_transcoder));
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03005466}
5467
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03005468static bool ironlake_compute_clocks(struct drm_crtc *crtc,
5469 struct drm_display_mode *adjusted_mode,
5470 intel_clock_t *clock,
5471 bool *has_reduced_clock,
5472 intel_clock_t *reduced_clock)
5473{
5474 struct drm_device *dev = crtc->dev;
5475 struct drm_i915_private *dev_priv = dev->dev_private;
5476 struct intel_encoder *intel_encoder;
5477 int refclk;
5478 const intel_limit_t *limit;
Daniel Vettera16af7212013-04-30 14:01:44 +02005479 bool ret, is_lvds = false;
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03005480
5481 for_each_encoder_on_crtc(dev, crtc, intel_encoder) {
5482 switch (intel_encoder->type) {
5483 case INTEL_OUTPUT_LVDS:
5484 is_lvds = true;
5485 break;
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03005486 }
5487 }
5488
5489 refclk = ironlake_get_refclk(crtc);
5490
5491 /*
5492 * Returns a set of divisors for the desired target clock with the given
5493 * refclk, or FALSE. The returned values represent the clock equation:
5494 * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2.
5495 */
5496 limit = intel_limit(crtc, refclk);
Daniel Vetteree9300b2013-06-03 22:40:22 +02005497 ret = dev_priv->display.find_dpll(limit, crtc, adjusted_mode->clock,
5498 refclk, NULL, clock);
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03005499 if (!ret)
5500 return false;
5501
5502 if (is_lvds && dev_priv->lvds_downclock_avail) {
5503 /*
5504 * Ensure we match the reduced clock's P to the target clock.
5505 * If the clocks don't match, we can't switch the display clock
5506 * by using the FP0/FP1. In such case we will disable the LVDS
5507 * downclock feature.
5508 */
Daniel Vetteree9300b2013-06-03 22:40:22 +02005509 *has_reduced_clock =
5510 dev_priv->display.find_dpll(limit, crtc,
5511 dev_priv->lvds_downclock,
5512 refclk, clock,
5513 reduced_clock);
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03005514 }
5515
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03005516 return true;
5517}
5518
Daniel Vetter01a415f2012-10-27 15:58:40 +02005519static void cpt_enable_fdi_bc_bifurcation(struct drm_device *dev)
5520{
5521 struct drm_i915_private *dev_priv = dev->dev_private;
5522 uint32_t temp;
5523
5524 temp = I915_READ(SOUTH_CHICKEN1);
5525 if (temp & FDI_BC_BIFURCATION_SELECT)
5526 return;
5527
5528 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_B)) & FDI_RX_ENABLE);
5529 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_C)) & FDI_RX_ENABLE);
5530
5531 temp |= FDI_BC_BIFURCATION_SELECT;
5532 DRM_DEBUG_KMS("enabling fdi C rx\n");
5533 I915_WRITE(SOUTH_CHICKEN1, temp);
5534 POSTING_READ(SOUTH_CHICKEN1);
5535}
5536
Daniel Vetterebfd86f2013-04-19 11:24:44 +02005537static void ivybridge_update_fdi_bc_bifurcation(struct intel_crtc *intel_crtc)
5538{
5539 struct drm_device *dev = intel_crtc->base.dev;
5540 struct drm_i915_private *dev_priv = dev->dev_private;
5541
5542 switch (intel_crtc->pipe) {
5543 case PIPE_A:
5544 break;
5545 case PIPE_B:
5546 if (intel_crtc->config.fdi_lanes > 2)
5547 WARN_ON(I915_READ(SOUTH_CHICKEN1) & FDI_BC_BIFURCATION_SELECT);
5548 else
5549 cpt_enable_fdi_bc_bifurcation(dev);
5550
5551 break;
5552 case PIPE_C:
Daniel Vetter01a415f2012-10-27 15:58:40 +02005553 cpt_enable_fdi_bc_bifurcation(dev);
5554
Daniel Vetterebfd86f2013-04-19 11:24:44 +02005555 break;
Daniel Vetter01a415f2012-10-27 15:58:40 +02005556 default:
5557 BUG();
5558 }
5559}
5560
Paulo Zanonid4b19312012-11-29 11:29:32 -02005561int ironlake_get_lanes_required(int target_clock, int link_bw, int bpp)
5562{
5563 /*
5564 * Account for spread spectrum to avoid
5565 * oversubscribing the link. Max center spread
5566 * is 2.5%; use 5% for safety's sake.
5567 */
5568 u32 bps = target_clock * bpp * 21 / 20;
5569 return bps / (link_bw * 8) + 1;
5570}
5571
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005572static bool ironlake_needs_fb_cb_tune(struct dpll *dpll, int factor)
5573{
5574 return i9xx_dpll_compute_m(dpll) < factor * dpll->n;
5575}
5576
Paulo Zanonide13a2e2012-09-20 18:36:05 -03005577static uint32_t ironlake_compute_dpll(struct intel_crtc *intel_crtc,
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005578 u32 *fp,
Daniel Vetter9a7c7892013-04-04 22:20:34 +02005579 intel_clock_t *reduced_clock, u32 *fp2)
Paulo Zanonide13a2e2012-09-20 18:36:05 -03005580{
5581 struct drm_crtc *crtc = &intel_crtc->base;
5582 struct drm_device *dev = crtc->dev;
5583 struct drm_i915_private *dev_priv = dev->dev_private;
5584 struct intel_encoder *intel_encoder;
5585 uint32_t dpll;
Daniel Vetter6cc5f342013-03-27 00:44:53 +01005586 int factor, num_connectors = 0;
Daniel Vetter09ede542013-04-30 14:01:45 +02005587 bool is_lvds = false, is_sdvo = false;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03005588
5589 for_each_encoder_on_crtc(dev, crtc, intel_encoder) {
5590 switch (intel_encoder->type) {
5591 case INTEL_OUTPUT_LVDS:
5592 is_lvds = true;
5593 break;
5594 case INTEL_OUTPUT_SDVO:
5595 case INTEL_OUTPUT_HDMI:
5596 is_sdvo = true;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03005597 break;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03005598 }
5599
5600 num_connectors++;
5601 }
Jesse Barnes79e53942008-11-07 14:24:08 -08005602
Chris Wilsonc1858122010-12-03 21:35:48 +00005603 /* Enable autotuning of the PLL clock (if permissible) */
Eric Anholt8febb292011-03-30 13:01:07 -07005604 factor = 21;
5605 if (is_lvds) {
5606 if ((intel_panel_use_ssc(dev_priv) &&
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03005607 dev_priv->vbt.lvds_ssc_freq == 100) ||
Daniel Vetterf0b44052013-04-04 22:20:33 +02005608 (HAS_PCH_IBX(dev) && intel_is_dual_link_lvds(dev)))
Eric Anholt8febb292011-03-30 13:01:07 -07005609 factor = 25;
Daniel Vetter09ede542013-04-30 14:01:45 +02005610 } else if (intel_crtc->config.sdvo_tv_clock)
Eric Anholt8febb292011-03-30 13:01:07 -07005611 factor = 20;
Chris Wilsonc1858122010-12-03 21:35:48 +00005612
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005613 if (ironlake_needs_fb_cb_tune(&intel_crtc->config.dpll, factor))
Daniel Vetter7d0ac5b2013-04-04 22:20:32 +02005614 *fp |= FP_CB_TUNE;
Chris Wilsonc1858122010-12-03 21:35:48 +00005615
Daniel Vetter9a7c7892013-04-04 22:20:34 +02005616 if (fp2 && (reduced_clock->m < factor * reduced_clock->n))
5617 *fp2 |= FP_CB_TUNE;
5618
Chris Wilson5eddb702010-09-11 13:48:45 +01005619 dpll = 0;
Zhenyu Wang2c072452009-06-05 15:38:42 +08005620
Eric Anholta07d6782011-03-30 13:01:08 -07005621 if (is_lvds)
5622 dpll |= DPLLB_MODE_LVDS;
5623 else
5624 dpll |= DPLLB_MODE_DAC_SERIAL;
Daniel Vetter198a037f2013-04-19 11:14:37 +02005625
5626 if (intel_crtc->config.pixel_multiplier > 1) {
5627 dpll |= (intel_crtc->config.pixel_multiplier - 1)
5628 << PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT;
Eric Anholta07d6782011-03-30 13:01:08 -07005629 }
Daniel Vetter198a037f2013-04-19 11:14:37 +02005630
5631 if (is_sdvo)
5632 dpll |= DPLL_DVO_HIGH_SPEED;
Daniel Vetter9566e9a2013-04-19 11:14:36 +02005633 if (intel_crtc->config.has_dp_encoder)
Eric Anholta07d6782011-03-30 13:01:08 -07005634 dpll |= DPLL_DVO_HIGH_SPEED;
Jesse Barnes79e53942008-11-07 14:24:08 -08005635
Eric Anholta07d6782011-03-30 13:01:08 -07005636 /* compute bitmask from p1 value */
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005637 dpll |= (1 << (intel_crtc->config.dpll.p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
Eric Anholta07d6782011-03-30 13:01:08 -07005638 /* also FPA1 */
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005639 dpll |= (1 << (intel_crtc->config.dpll.p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
Eric Anholta07d6782011-03-30 13:01:08 -07005640
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005641 switch (intel_crtc->config.dpll.p2) {
Eric Anholta07d6782011-03-30 13:01:08 -07005642 case 5:
5643 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
5644 break;
5645 case 7:
5646 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
5647 break;
5648 case 10:
5649 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
5650 break;
5651 case 14:
5652 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
5653 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08005654 }
5655
Daniel Vetterb4c09f32013-04-30 14:01:42 +02005656 if (is_lvds && intel_panel_use_ssc(dev_priv) && num_connectors < 2)
Kristian Høgsberg43565a02009-02-13 20:56:52 -05005657 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
Jesse Barnes79e53942008-11-07 14:24:08 -08005658 else
5659 dpll |= PLL_REF_INPUT_DREFCLK;
5660
Paulo Zanonide13a2e2012-09-20 18:36:05 -03005661 return dpll;
5662}
5663
Jesse Barnes79e53942008-11-07 14:24:08 -08005664static int ironlake_crtc_mode_set(struct drm_crtc *crtc,
Jesse Barnes79e53942008-11-07 14:24:08 -08005665 int x, int y,
Daniel Vetter94352cf2012-07-05 22:51:56 +02005666 struct drm_framebuffer *fb)
Jesse Barnes79e53942008-11-07 14:24:08 -08005667{
5668 struct drm_device *dev = crtc->dev;
5669 struct drm_i915_private *dev_priv = dev->dev_private;
5670 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01005671 struct drm_display_mode *adjusted_mode =
5672 &intel_crtc->config.adjusted_mode;
5673 struct drm_display_mode *mode = &intel_crtc->config.requested_mode;
Jesse Barnes79e53942008-11-07 14:24:08 -08005674 int pipe = intel_crtc->pipe;
5675 int plane = intel_crtc->plane;
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03005676 int num_connectors = 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08005677 intel_clock_t clock, reduced_clock;
Daniel Vettercbbab5b2013-04-19 11:14:31 +02005678 u32 dpll = 0, fp = 0, fp2 = 0;
Paulo Zanonie2f12b02012-09-20 18:36:06 -03005679 bool ok, has_reduced_clock = false;
Daniel Vetter8b470472013-03-28 10:41:59 +01005680 bool is_lvds = false;
Paulo Zanonif48d8f22012-09-20 18:36:04 -03005681 struct intel_encoder *encoder;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03005682 int ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08005683
5684 for_each_encoder_on_crtc(dev, crtc, encoder) {
5685 switch (encoder->type) {
5686 case INTEL_OUTPUT_LVDS:
5687 is_lvds = true;
5688 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08005689 }
5690
5691 num_connectors++;
5692 }
5693
Paulo Zanoni5dc52982012-10-05 12:05:56 -03005694 WARN(!(HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev)),
5695 "Unexpected PCH type %d\n", INTEL_PCH_TYPE(dev));
5696
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03005697 ok = ironlake_compute_clocks(crtc, adjusted_mode, &clock,
5698 &has_reduced_clock, &reduced_clock);
Daniel Vetteree9300b2013-06-03 22:40:22 +02005699 if (!ok && !intel_crtc->config.clock_set) {
Jesse Barnes79e53942008-11-07 14:24:08 -08005700 DRM_ERROR("Couldn't find PLL settings for mode!\n");
5701 return -EINVAL;
5702 }
Daniel Vetterf47709a2013-03-28 10:42:02 +01005703 /* Compat-code for transition, will disappear. */
5704 if (!intel_crtc->config.clock_set) {
5705 intel_crtc->config.dpll.n = clock.n;
5706 intel_crtc->config.dpll.m1 = clock.m1;
5707 intel_crtc->config.dpll.m2 = clock.m2;
5708 intel_crtc->config.dpll.p1 = clock.p1;
5709 intel_crtc->config.dpll.p2 = clock.p2;
5710 }
Jesse Barnes79e53942008-11-07 14:24:08 -08005711
5712 /* Ensure that the cursor is valid for the new mode before changing... */
5713 intel_crtc_update_cursor(crtc, true);
5714
Paulo Zanoni5dc52982012-10-05 12:05:56 -03005715 /* CPU eDP is the only output that doesn't need a PCH PLL of its own. */
Daniel Vetter8b470472013-03-28 10:41:59 +01005716 if (intel_crtc->config.has_pch_encoder) {
Jesse Barnesee7b9f92012-04-20 17:11:53 +01005717 struct intel_pch_pll *pll;
Chris Wilson5eddb702010-09-11 13:48:45 +01005718
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005719 fp = i9xx_dpll_compute_fp(&intel_crtc->config.dpll);
Daniel Vettercbbab5b2013-04-19 11:14:31 +02005720 if (has_reduced_clock)
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005721 fp2 = i9xx_dpll_compute_fp(&reduced_clock);
Daniel Vettercbbab5b2013-04-19 11:14:31 +02005722
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005723 dpll = ironlake_compute_dpll(intel_crtc,
Daniel Vettercbbab5b2013-04-19 11:14:31 +02005724 &fp, &reduced_clock,
5725 has_reduced_clock ? &fp2 : NULL);
5726
Jesse Barnesee7b9f92012-04-20 17:11:53 +01005727 pll = intel_get_pch_pll(intel_crtc, dpll, fp);
5728 if (pll == NULL) {
Ville Syrjälä84f44ce2013-04-17 17:48:49 +03005729 DRM_DEBUG_DRIVER("failed to find PLL for pipe %c\n",
5730 pipe_name(pipe));
Jesse Barnes4b645f12011-10-12 09:51:31 -07005731 return -EINVAL;
5732 }
Jesse Barnesee7b9f92012-04-20 17:11:53 +01005733 } else
5734 intel_put_pch_pll(intel_crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08005735
Daniel Vetter03afc4a2013-04-02 23:42:31 +02005736 if (intel_crtc->config.has_dp_encoder)
5737 intel_dp_set_m_n(intel_crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08005738
Daniel Vetterdafd2262012-11-26 17:22:07 +01005739 for_each_encoder_on_crtc(dev, crtc, encoder)
5740 if (encoder->pre_pll_enable)
5741 encoder->pre_pll_enable(encoder);
Jesse Barnes79e53942008-11-07 14:24:08 -08005742
Jesse Barnesee7b9f92012-04-20 17:11:53 +01005743 if (intel_crtc->pch_pll) {
5744 I915_WRITE(intel_crtc->pch_pll->pll_reg, dpll);
Chris Wilson5eddb702010-09-11 13:48:45 +01005745
Zhenyu Wang32f9d652009-07-24 01:00:32 +08005746 /* Wait for the clocks to stabilize. */
Jesse Barnesee7b9f92012-04-20 17:11:53 +01005747 POSTING_READ(intel_crtc->pch_pll->pll_reg);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08005748 udelay(150);
5749
Eric Anholt8febb292011-03-30 13:01:07 -07005750 /* The pixel multiplier can only be updated once the
5751 * DPLL is enabled and the clocks are stable.
5752 *
5753 * So write it again.
5754 */
Jesse Barnesee7b9f92012-04-20 17:11:53 +01005755 I915_WRITE(intel_crtc->pch_pll->pll_reg, dpll);
Jesse Barnes79e53942008-11-07 14:24:08 -08005756 }
Jesse Barnes79e53942008-11-07 14:24:08 -08005757
Chris Wilson5eddb702010-09-11 13:48:45 +01005758 intel_crtc->lowfreq_avail = false;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01005759 if (intel_crtc->pch_pll) {
Jesse Barnes4b645f12011-10-12 09:51:31 -07005760 if (is_lvds && has_reduced_clock && i915_powersave) {
Jesse Barnesee7b9f92012-04-20 17:11:53 +01005761 I915_WRITE(intel_crtc->pch_pll->fp1_reg, fp2);
Jesse Barnes4b645f12011-10-12 09:51:31 -07005762 intel_crtc->lowfreq_avail = true;
Jesse Barnes4b645f12011-10-12 09:51:31 -07005763 } else {
Jesse Barnesee7b9f92012-04-20 17:11:53 +01005764 I915_WRITE(intel_crtc->pch_pll->fp1_reg, fp);
Jesse Barnes652c3932009-08-17 13:31:43 -07005765 }
5766 }
5767
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005768 intel_set_pipe_timings(intel_crtc, mode, adjusted_mode);
Krzysztof Halasa734b4152010-05-25 18:41:46 +02005769
Daniel Vetterca3a0ff2013-02-14 16:54:22 +01005770 if (intel_crtc->config.has_pch_encoder) {
Daniel Vetterca3a0ff2013-02-14 16:54:22 +01005771 intel_cpu_transcoder_set_m_n(intel_crtc,
5772 &intel_crtc->config.fdi_m_n);
5773 }
Chris Wilson5eddb702010-09-11 13:48:45 +01005774
Daniel Vetterebfd86f2013-04-19 11:24:44 +02005775 if (IS_IVYBRIDGE(dev))
5776 ivybridge_update_fdi_bc_bifurcation(intel_crtc);
Zhenyu Wang2c072452009-06-05 15:38:42 +08005777
Daniel Vetter6ff93602013-04-19 11:24:36 +02005778 ironlake_set_pipeconf(crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08005779
Paulo Zanonia1f9e772012-09-12 10:06:32 -03005780 /* Set up the display plane register */
5781 I915_WRITE(DSPCNTR(plane), DISPPLANE_GAMMA_ENABLE);
Jesse Barnesb24e7172011-01-04 15:09:30 -08005782 POSTING_READ(DSPCNTR(plane));
Jesse Barnes79e53942008-11-07 14:24:08 -08005783
Daniel Vetter94352cf2012-07-05 22:51:56 +02005784 ret = intel_pipe_set_base(crtc, x, y, fb);
Shaohua Li7662c8b2009-06-26 11:23:55 +08005785
5786 intel_update_watermarks(dev);
5787
Daniel Vetter1857e1d2013-04-29 19:34:16 +02005788 return ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08005789}
5790
Daniel Vetter72419202013-04-04 13:28:53 +02005791static void ironlake_get_fdi_m_n_config(struct intel_crtc *crtc,
5792 struct intel_crtc_config *pipe_config)
5793{
5794 struct drm_device *dev = crtc->base.dev;
5795 struct drm_i915_private *dev_priv = dev->dev_private;
5796 enum transcoder transcoder = pipe_config->cpu_transcoder;
5797
5798 pipe_config->fdi_m_n.link_m = I915_READ(PIPE_LINK_M1(transcoder));
5799 pipe_config->fdi_m_n.link_n = I915_READ(PIPE_LINK_N1(transcoder));
5800 pipe_config->fdi_m_n.gmch_m = I915_READ(PIPE_DATA_M1(transcoder))
5801 & ~TU_SIZE_MASK;
5802 pipe_config->fdi_m_n.gmch_n = I915_READ(PIPE_DATA_N1(transcoder));
5803 pipe_config->fdi_m_n.tu = ((I915_READ(PIPE_DATA_M1(transcoder))
5804 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
5805}
5806
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02005807static void ironlake_get_pfit_config(struct intel_crtc *crtc,
5808 struct intel_crtc_config *pipe_config)
5809{
5810 struct drm_device *dev = crtc->base.dev;
5811 struct drm_i915_private *dev_priv = dev->dev_private;
5812 uint32_t tmp;
5813
5814 tmp = I915_READ(PF_CTL(crtc->pipe));
5815
5816 if (tmp & PF_ENABLE) {
5817 pipe_config->pch_pfit.pos = I915_READ(PF_WIN_POS(crtc->pipe));
5818 pipe_config->pch_pfit.size = I915_READ(PF_WIN_SZ(crtc->pipe));
5819 }
5820}
5821
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01005822static bool ironlake_get_pipe_config(struct intel_crtc *crtc,
5823 struct intel_crtc_config *pipe_config)
5824{
5825 struct drm_device *dev = crtc->base.dev;
5826 struct drm_i915_private *dev_priv = dev->dev_private;
5827 uint32_t tmp;
5828
Daniel Vettereccb1402013-05-22 00:50:22 +02005829 pipe_config->cpu_transcoder = crtc->pipe;
5830
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01005831 tmp = I915_READ(PIPECONF(crtc->pipe));
5832 if (!(tmp & PIPECONF_ENABLE))
5833 return false;
5834
Daniel Vetterab9412b2013-05-03 11:49:46 +02005835 if (I915_READ(PCH_TRANSCONF(crtc->pipe)) & TRANS_ENABLE) {
Daniel Vetter88adfff2013-03-28 10:42:01 +01005836 pipe_config->has_pch_encoder = true;
5837
Daniel Vetter627eb5a2013-04-29 19:33:42 +02005838 tmp = I915_READ(FDI_RX_CTL(crtc->pipe));
5839 pipe_config->fdi_lanes = ((FDI_DP_PORT_WIDTH_MASK & tmp) >>
5840 FDI_DP_PORT_WIDTH_SHIFT) + 1;
Daniel Vetter72419202013-04-04 13:28:53 +02005841
5842 ironlake_get_fdi_m_n_config(crtc, pipe_config);
Daniel Vetter627eb5a2013-04-29 19:33:42 +02005843 }
5844
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02005845 intel_get_pipe_timings(crtc, pipe_config);
5846
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02005847 ironlake_get_pfit_config(crtc, pipe_config);
5848
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01005849 return true;
5850}
5851
Daniel Vetterd6dd9eb2013-01-29 16:35:20 -02005852static void haswell_modeset_global_resources(struct drm_device *dev)
5853{
Daniel Vetterd6dd9eb2013-01-29 16:35:20 -02005854 bool enable = false;
5855 struct intel_crtc *crtc;
Daniel Vetterd6dd9eb2013-01-29 16:35:20 -02005856
5857 list_for_each_entry(crtc, &dev->mode_config.crtc_list, base.head) {
Daniel Vettere7a639c2013-05-31 17:49:17 +02005858 if (!crtc->base.enabled)
5859 continue;
Daniel Vetterd6dd9eb2013-01-29 16:35:20 -02005860
Daniel Vettere7a639c2013-05-31 17:49:17 +02005861 if (crtc->pipe != PIPE_A || crtc->config.pch_pfit.size ||
5862 crtc->config.cpu_transcoder != TRANSCODER_EDP)
Daniel Vetterd6dd9eb2013-01-29 16:35:20 -02005863 enable = true;
5864 }
5865
Daniel Vetterd6dd9eb2013-01-29 16:35:20 -02005866 intel_set_power_well(dev, enable);
5867}
5868
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03005869static int haswell_crtc_mode_set(struct drm_crtc *crtc,
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03005870 int x, int y,
5871 struct drm_framebuffer *fb)
5872{
5873 struct drm_device *dev = crtc->dev;
5874 struct drm_i915_private *dev_priv = dev->dev_private;
5875 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01005876 struct drm_display_mode *adjusted_mode =
5877 &intel_crtc->config.adjusted_mode;
5878 struct drm_display_mode *mode = &intel_crtc->config.requested_mode;
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03005879 int pipe = intel_crtc->pipe;
5880 int plane = intel_crtc->plane;
5881 int num_connectors = 0;
Daniel Vetter8b470472013-03-28 10:41:59 +01005882 bool is_cpu_edp = false;
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03005883 struct intel_encoder *encoder;
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03005884 int ret;
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03005885
5886 for_each_encoder_on_crtc(dev, crtc, encoder) {
5887 switch (encoder->type) {
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03005888 case INTEL_OUTPUT_EDP:
Imre Deakd8e8b582013-05-08 13:14:03 +03005889 if (enc_to_dig_port(&encoder->base)->port == PORT_A)
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03005890 is_cpu_edp = true;
5891 break;
5892 }
5893
5894 num_connectors++;
5895 }
5896
Paulo Zanoni5dc52982012-10-05 12:05:56 -03005897 WARN(num_connectors != 1, "%d connectors attached to pipe %c\n",
5898 num_connectors, pipe_name(pipe));
5899
Paulo Zanoni6441ab52012-10-05 12:05:58 -03005900 if (!intel_ddi_pll_mode_set(crtc, adjusted_mode->clock))
5901 return -EINVAL;
5902
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03005903 /* Ensure that the cursor is valid for the new mode before changing... */
5904 intel_crtc_update_cursor(crtc, true);
5905
Daniel Vetter03afc4a2013-04-02 23:42:31 +02005906 if (intel_crtc->config.has_dp_encoder)
5907 intel_dp_set_m_n(intel_crtc);
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03005908
5909 intel_crtc->lowfreq_avail = false;
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03005910
5911 intel_set_pipe_timings(intel_crtc, mode, adjusted_mode);
5912
Daniel Vetterca3a0ff2013-02-14 16:54:22 +01005913 if (intel_crtc->config.has_pch_encoder) {
Daniel Vetterca3a0ff2013-02-14 16:54:22 +01005914 intel_cpu_transcoder_set_m_n(intel_crtc,
5915 &intel_crtc->config.fdi_m_n);
5916 }
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03005917
Daniel Vetter6ff93602013-04-19 11:24:36 +02005918 haswell_set_pipeconf(crtc);
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03005919
Daniel Vetter50f3b012013-03-27 00:44:56 +01005920 intel_set_pipe_csc(crtc);
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02005921
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03005922 /* Set up the display plane register */
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02005923 I915_WRITE(DSPCNTR(plane), DISPPLANE_GAMMA_ENABLE | DISPPLANE_PIPE_CSC_ENABLE);
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03005924 POSTING_READ(DSPCNTR(plane));
5925
5926 ret = intel_pipe_set_base(crtc, x, y, fb);
5927
5928 intel_update_watermarks(dev);
5929
Jesse Barnes79e53942008-11-07 14:24:08 -08005930 return ret;
5931}
5932
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01005933static bool haswell_get_pipe_config(struct intel_crtc *crtc,
5934 struct intel_crtc_config *pipe_config)
5935{
5936 struct drm_device *dev = crtc->base.dev;
5937 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02005938 enum intel_display_power_domain pfit_domain;
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01005939 uint32_t tmp;
5940
Daniel Vettereccb1402013-05-22 00:50:22 +02005941 pipe_config->cpu_transcoder = crtc->pipe;
5942 tmp = I915_READ(TRANS_DDI_FUNC_CTL(TRANSCODER_EDP));
5943 if (tmp & TRANS_DDI_FUNC_ENABLE) {
5944 enum pipe trans_edp_pipe;
5945 switch (tmp & TRANS_DDI_EDP_INPUT_MASK) {
5946 default:
5947 WARN(1, "unknown pipe linked to edp transcoder\n");
5948 case TRANS_DDI_EDP_INPUT_A_ONOFF:
5949 case TRANS_DDI_EDP_INPUT_A_ON:
5950 trans_edp_pipe = PIPE_A;
5951 break;
5952 case TRANS_DDI_EDP_INPUT_B_ONOFF:
5953 trans_edp_pipe = PIPE_B;
5954 break;
5955 case TRANS_DDI_EDP_INPUT_C_ONOFF:
5956 trans_edp_pipe = PIPE_C;
5957 break;
5958 }
5959
5960 if (trans_edp_pipe == crtc->pipe)
5961 pipe_config->cpu_transcoder = TRANSCODER_EDP;
5962 }
5963
Paulo Zanonib97186f2013-05-03 12:15:36 -03005964 if (!intel_display_power_enabled(dev,
Daniel Vettereccb1402013-05-22 00:50:22 +02005965 POWER_DOMAIN_TRANSCODER(pipe_config->cpu_transcoder)))
Paulo Zanoni2bfce952013-04-18 16:35:40 -03005966 return false;
5967
Daniel Vettereccb1402013-05-22 00:50:22 +02005968 tmp = I915_READ(PIPECONF(pipe_config->cpu_transcoder));
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01005969 if (!(tmp & PIPECONF_ENABLE))
5970 return false;
5971
Daniel Vetter88adfff2013-03-28 10:42:01 +01005972 /*
Paulo Zanonif196e6b2013-04-18 16:35:41 -03005973 * Haswell has only FDI/PCH transcoder A. It is which is connected to
Daniel Vetter88adfff2013-03-28 10:42:01 +01005974 * DDI E. So just check whether this pipe is wired to DDI E and whether
5975 * the PCH transcoder is on.
5976 */
Daniel Vettereccb1402013-05-22 00:50:22 +02005977 tmp = I915_READ(TRANS_DDI_FUNC_CTL(pipe_config->cpu_transcoder));
Daniel Vetter88adfff2013-03-28 10:42:01 +01005978 if ((tmp & TRANS_DDI_PORT_MASK) == TRANS_DDI_SELECT_PORT(PORT_E) &&
Daniel Vetterab9412b2013-05-03 11:49:46 +02005979 I915_READ(LPT_TRANSCONF) & TRANS_ENABLE) {
Daniel Vetter88adfff2013-03-28 10:42:01 +01005980 pipe_config->has_pch_encoder = true;
5981
Daniel Vetter627eb5a2013-04-29 19:33:42 +02005982 tmp = I915_READ(FDI_RX_CTL(PIPE_A));
5983 pipe_config->fdi_lanes = ((FDI_DP_PORT_WIDTH_MASK & tmp) >>
5984 FDI_DP_PORT_WIDTH_SHIFT) + 1;
Daniel Vetter72419202013-04-04 13:28:53 +02005985
5986 ironlake_get_fdi_m_n_config(crtc, pipe_config);
Daniel Vetter627eb5a2013-04-29 19:33:42 +02005987 }
5988
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02005989 intel_get_pipe_timings(crtc, pipe_config);
5990
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02005991 pfit_domain = POWER_DOMAIN_PIPE_PANEL_FITTER(crtc->pipe);
5992 if (intel_display_power_enabled(dev, pfit_domain))
5993 ironlake_get_pfit_config(crtc, pipe_config);
5994
Paulo Zanoni42db64e2013-05-31 16:33:22 -03005995 pipe_config->ips_enabled = hsw_crtc_supports_ips(crtc) &&
5996 (I915_READ(IPS_CTL) & IPS_ENABLE);
5997
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01005998 return true;
5999}
6000
Eric Anholtf564048e2011-03-30 13:01:02 -07006001static int intel_crtc_mode_set(struct drm_crtc *crtc,
Eric Anholtf564048e2011-03-30 13:01:02 -07006002 int x, int y,
Daniel Vetter94352cf2012-07-05 22:51:56 +02006003 struct drm_framebuffer *fb)
Eric Anholtf564048e2011-03-30 13:01:02 -07006004{
6005 struct drm_device *dev = crtc->dev;
6006 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter9256aa12012-10-31 19:26:13 +01006007 struct drm_encoder_helper_funcs *encoder_funcs;
6008 struct intel_encoder *encoder;
Eric Anholt0b701d22011-03-30 13:01:03 -07006009 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01006010 struct drm_display_mode *adjusted_mode =
6011 &intel_crtc->config.adjusted_mode;
6012 struct drm_display_mode *mode = &intel_crtc->config.requested_mode;
Eric Anholt0b701d22011-03-30 13:01:03 -07006013 int pipe = intel_crtc->pipe;
Eric Anholtf564048e2011-03-30 13:01:02 -07006014 int ret;
6015
Eric Anholt0b701d22011-03-30 13:01:03 -07006016 drm_vblank_pre_modeset(dev, pipe);
6017
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01006018 ret = dev_priv->display.crtc_mode_set(crtc, x, y, fb);
6019
Jesse Barnes79e53942008-11-07 14:24:08 -08006020 drm_vblank_post_modeset(dev, pipe);
6021
Daniel Vetter9256aa12012-10-31 19:26:13 +01006022 if (ret != 0)
6023 return ret;
6024
6025 for_each_encoder_on_crtc(dev, crtc, encoder) {
6026 DRM_DEBUG_KMS("[ENCODER:%d:%s] set [MODE:%d:%s]\n",
6027 encoder->base.base.id,
6028 drm_get_encoder_name(&encoder->base),
6029 mode->base.id, mode->name);
Daniel Vetter6cc5f342013-03-27 00:44:53 +01006030 if (encoder->mode_set) {
6031 encoder->mode_set(encoder);
6032 } else {
6033 encoder_funcs = encoder->base.helper_private;
6034 encoder_funcs->mode_set(&encoder->base, mode, adjusted_mode);
6035 }
Daniel Vetter9256aa12012-10-31 19:26:13 +01006036 }
6037
6038 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08006039}
6040
Wu Fengguang3a9627f2011-12-09 20:42:19 +08006041static bool intel_eld_uptodate(struct drm_connector *connector,
6042 int reg_eldv, uint32_t bits_eldv,
6043 int reg_elda, uint32_t bits_elda,
6044 int reg_edid)
6045{
6046 struct drm_i915_private *dev_priv = connector->dev->dev_private;
6047 uint8_t *eld = connector->eld;
6048 uint32_t i;
6049
6050 i = I915_READ(reg_eldv);
6051 i &= bits_eldv;
6052
6053 if (!eld[0])
6054 return !i;
6055
6056 if (!i)
6057 return false;
6058
6059 i = I915_READ(reg_elda);
6060 i &= ~bits_elda;
6061 I915_WRITE(reg_elda, i);
6062
6063 for (i = 0; i < eld[2]; i++)
6064 if (I915_READ(reg_edid) != *((uint32_t *)eld + i))
6065 return false;
6066
6067 return true;
6068}
6069
Wu Fengguange0dac652011-09-05 14:25:34 +08006070static void g4x_write_eld(struct drm_connector *connector,
6071 struct drm_crtc *crtc)
6072{
6073 struct drm_i915_private *dev_priv = connector->dev->dev_private;
6074 uint8_t *eld = connector->eld;
6075 uint32_t eldv;
6076 uint32_t len;
6077 uint32_t i;
6078
6079 i = I915_READ(G4X_AUD_VID_DID);
6080
6081 if (i == INTEL_AUDIO_DEVBLC || i == INTEL_AUDIO_DEVCL)
6082 eldv = G4X_ELDV_DEVCL_DEVBLC;
6083 else
6084 eldv = G4X_ELDV_DEVCTG;
6085
Wu Fengguang3a9627f2011-12-09 20:42:19 +08006086 if (intel_eld_uptodate(connector,
6087 G4X_AUD_CNTL_ST, eldv,
6088 G4X_AUD_CNTL_ST, G4X_ELD_ADDR,
6089 G4X_HDMIW_HDMIEDID))
6090 return;
6091
Wu Fengguange0dac652011-09-05 14:25:34 +08006092 i = I915_READ(G4X_AUD_CNTL_ST);
6093 i &= ~(eldv | G4X_ELD_ADDR);
6094 len = (i >> 9) & 0x1f; /* ELD buffer size */
6095 I915_WRITE(G4X_AUD_CNTL_ST, i);
6096
6097 if (!eld[0])
6098 return;
6099
6100 len = min_t(uint8_t, eld[2], len);
6101 DRM_DEBUG_DRIVER("ELD size %d\n", len);
6102 for (i = 0; i < len; i++)
6103 I915_WRITE(G4X_HDMIW_HDMIEDID, *((uint32_t *)eld + i));
6104
6105 i = I915_READ(G4X_AUD_CNTL_ST);
6106 i |= eldv;
6107 I915_WRITE(G4X_AUD_CNTL_ST, i);
6108}
6109
Wang Xingchao83358c852012-08-16 22:43:37 +08006110static void haswell_write_eld(struct drm_connector *connector,
6111 struct drm_crtc *crtc)
6112{
6113 struct drm_i915_private *dev_priv = connector->dev->dev_private;
6114 uint8_t *eld = connector->eld;
6115 struct drm_device *dev = crtc->dev;
Wang Xingchao7b9f35a2013-01-22 23:25:25 +08006116 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Wang Xingchao83358c852012-08-16 22:43:37 +08006117 uint32_t eldv;
6118 uint32_t i;
6119 int len;
6120 int pipe = to_intel_crtc(crtc)->pipe;
6121 int tmp;
6122
6123 int hdmiw_hdmiedid = HSW_AUD_EDID_DATA(pipe);
6124 int aud_cntl_st = HSW_AUD_DIP_ELD_CTRL(pipe);
6125 int aud_config = HSW_AUD_CFG(pipe);
6126 int aud_cntrl_st2 = HSW_AUD_PIN_ELD_CP_VLD;
6127
6128
6129 DRM_DEBUG_DRIVER("HDMI: Haswell Audio initialize....\n");
6130
6131 /* Audio output enable */
6132 DRM_DEBUG_DRIVER("HDMI audio: enable codec\n");
6133 tmp = I915_READ(aud_cntrl_st2);
6134 tmp |= (AUDIO_OUTPUT_ENABLE_A << (pipe * 4));
6135 I915_WRITE(aud_cntrl_st2, tmp);
6136
6137 /* Wait for 1 vertical blank */
6138 intel_wait_for_vblank(dev, pipe);
6139
6140 /* Set ELD valid state */
6141 tmp = I915_READ(aud_cntrl_st2);
6142 DRM_DEBUG_DRIVER("HDMI audio: pin eld vld status=0x%8x\n", tmp);
6143 tmp |= (AUDIO_ELD_VALID_A << (pipe * 4));
6144 I915_WRITE(aud_cntrl_st2, tmp);
6145 tmp = I915_READ(aud_cntrl_st2);
6146 DRM_DEBUG_DRIVER("HDMI audio: eld vld status=0x%8x\n", tmp);
6147
6148 /* Enable HDMI mode */
6149 tmp = I915_READ(aud_config);
6150 DRM_DEBUG_DRIVER("HDMI audio: audio conf: 0x%8x\n", tmp);
6151 /* clear N_programing_enable and N_value_index */
6152 tmp &= ~(AUD_CONFIG_N_VALUE_INDEX | AUD_CONFIG_N_PROG_ENABLE);
6153 I915_WRITE(aud_config, tmp);
6154
6155 DRM_DEBUG_DRIVER("ELD on pipe %c\n", pipe_name(pipe));
6156
6157 eldv = AUDIO_ELD_VALID_A << (pipe * 4);
Wang Xingchao7b9f35a2013-01-22 23:25:25 +08006158 intel_crtc->eld_vld = true;
Wang Xingchao83358c852012-08-16 22:43:37 +08006159
6160 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT)) {
6161 DRM_DEBUG_DRIVER("ELD: DisplayPort detected\n");
6162 eld[5] |= (1 << 2); /* Conn_Type, 0x1 = DisplayPort */
6163 I915_WRITE(aud_config, AUD_CONFIG_N_VALUE_INDEX); /* 0x1 = DP */
6164 } else
6165 I915_WRITE(aud_config, 0);
6166
6167 if (intel_eld_uptodate(connector,
6168 aud_cntrl_st2, eldv,
6169 aud_cntl_st, IBX_ELD_ADDRESS,
6170 hdmiw_hdmiedid))
6171 return;
6172
6173 i = I915_READ(aud_cntrl_st2);
6174 i &= ~eldv;
6175 I915_WRITE(aud_cntrl_st2, i);
6176
6177 if (!eld[0])
6178 return;
6179
6180 i = I915_READ(aud_cntl_st);
6181 i &= ~IBX_ELD_ADDRESS;
6182 I915_WRITE(aud_cntl_st, i);
6183 i = (i >> 29) & DIP_PORT_SEL_MASK; /* DIP_Port_Select, 0x1 = PortB */
6184 DRM_DEBUG_DRIVER("port num:%d\n", i);
6185
6186 len = min_t(uint8_t, eld[2], 21); /* 84 bytes of hw ELD buffer */
6187 DRM_DEBUG_DRIVER("ELD size %d\n", len);
6188 for (i = 0; i < len; i++)
6189 I915_WRITE(hdmiw_hdmiedid, *((uint32_t *)eld + i));
6190
6191 i = I915_READ(aud_cntrl_st2);
6192 i |= eldv;
6193 I915_WRITE(aud_cntrl_st2, i);
6194
6195}
6196
Wu Fengguange0dac652011-09-05 14:25:34 +08006197static void ironlake_write_eld(struct drm_connector *connector,
6198 struct drm_crtc *crtc)
6199{
6200 struct drm_i915_private *dev_priv = connector->dev->dev_private;
6201 uint8_t *eld = connector->eld;
6202 uint32_t eldv;
6203 uint32_t i;
6204 int len;
6205 int hdmiw_hdmiedid;
Wu Fengguangb6daa022012-01-06 14:41:31 -06006206 int aud_config;
Wu Fengguange0dac652011-09-05 14:25:34 +08006207 int aud_cntl_st;
6208 int aud_cntrl_st2;
Wang Xingchao9b138a82012-08-09 16:52:18 +08006209 int pipe = to_intel_crtc(crtc)->pipe;
Wu Fengguange0dac652011-09-05 14:25:34 +08006210
Wu Fengguangb3f33cb2011-12-09 20:42:17 +08006211 if (HAS_PCH_IBX(connector->dev)) {
Wang Xingchao9b138a82012-08-09 16:52:18 +08006212 hdmiw_hdmiedid = IBX_HDMIW_HDMIEDID(pipe);
6213 aud_config = IBX_AUD_CFG(pipe);
6214 aud_cntl_st = IBX_AUD_CNTL_ST(pipe);
Wu Fengguang1202b4c62011-12-09 20:42:18 +08006215 aud_cntrl_st2 = IBX_AUD_CNTL_ST2;
Wu Fengguange0dac652011-09-05 14:25:34 +08006216 } else {
Wang Xingchao9b138a82012-08-09 16:52:18 +08006217 hdmiw_hdmiedid = CPT_HDMIW_HDMIEDID(pipe);
6218 aud_config = CPT_AUD_CFG(pipe);
6219 aud_cntl_st = CPT_AUD_CNTL_ST(pipe);
Wu Fengguang1202b4c62011-12-09 20:42:18 +08006220 aud_cntrl_st2 = CPT_AUD_CNTRL_ST2;
Wu Fengguange0dac652011-09-05 14:25:34 +08006221 }
6222
Wang Xingchao9b138a82012-08-09 16:52:18 +08006223 DRM_DEBUG_DRIVER("ELD on pipe %c\n", pipe_name(pipe));
Wu Fengguange0dac652011-09-05 14:25:34 +08006224
6225 i = I915_READ(aud_cntl_st);
Wang Xingchao9b138a82012-08-09 16:52:18 +08006226 i = (i >> 29) & DIP_PORT_SEL_MASK; /* DIP_Port_Select, 0x1 = PortB */
Wu Fengguange0dac652011-09-05 14:25:34 +08006227 if (!i) {
6228 DRM_DEBUG_DRIVER("Audio directed to unknown port\n");
6229 /* operate blindly on all ports */
Wu Fengguang1202b4c62011-12-09 20:42:18 +08006230 eldv = IBX_ELD_VALIDB;
6231 eldv |= IBX_ELD_VALIDB << 4;
6232 eldv |= IBX_ELD_VALIDB << 8;
Wu Fengguange0dac652011-09-05 14:25:34 +08006233 } else {
Ville Syrjälä2582a852013-04-17 17:48:47 +03006234 DRM_DEBUG_DRIVER("ELD on port %c\n", port_name(i));
Wu Fengguang1202b4c62011-12-09 20:42:18 +08006235 eldv = IBX_ELD_VALIDB << ((i - 1) * 4);
Wu Fengguange0dac652011-09-05 14:25:34 +08006236 }
6237
Wu Fengguang3a9627f2011-12-09 20:42:19 +08006238 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT)) {
6239 DRM_DEBUG_DRIVER("ELD: DisplayPort detected\n");
6240 eld[5] |= (1 << 2); /* Conn_Type, 0x1 = DisplayPort */
Wu Fengguangb6daa022012-01-06 14:41:31 -06006241 I915_WRITE(aud_config, AUD_CONFIG_N_VALUE_INDEX); /* 0x1 = DP */
6242 } else
6243 I915_WRITE(aud_config, 0);
Wu Fengguang3a9627f2011-12-09 20:42:19 +08006244
6245 if (intel_eld_uptodate(connector,
6246 aud_cntrl_st2, eldv,
6247 aud_cntl_st, IBX_ELD_ADDRESS,
6248 hdmiw_hdmiedid))
6249 return;
6250
Wu Fengguange0dac652011-09-05 14:25:34 +08006251 i = I915_READ(aud_cntrl_st2);
6252 i &= ~eldv;
6253 I915_WRITE(aud_cntrl_st2, i);
6254
6255 if (!eld[0])
6256 return;
6257
Wu Fengguange0dac652011-09-05 14:25:34 +08006258 i = I915_READ(aud_cntl_st);
Wu Fengguang1202b4c62011-12-09 20:42:18 +08006259 i &= ~IBX_ELD_ADDRESS;
Wu Fengguange0dac652011-09-05 14:25:34 +08006260 I915_WRITE(aud_cntl_st, i);
6261
6262 len = min_t(uint8_t, eld[2], 21); /* 84 bytes of hw ELD buffer */
6263 DRM_DEBUG_DRIVER("ELD size %d\n", len);
6264 for (i = 0; i < len; i++)
6265 I915_WRITE(hdmiw_hdmiedid, *((uint32_t *)eld + i));
6266
6267 i = I915_READ(aud_cntrl_st2);
6268 i |= eldv;
6269 I915_WRITE(aud_cntrl_st2, i);
6270}
6271
6272void intel_write_eld(struct drm_encoder *encoder,
6273 struct drm_display_mode *mode)
6274{
6275 struct drm_crtc *crtc = encoder->crtc;
6276 struct drm_connector *connector;
6277 struct drm_device *dev = encoder->dev;
6278 struct drm_i915_private *dev_priv = dev->dev_private;
6279
6280 connector = drm_select_eld(encoder, mode);
6281 if (!connector)
6282 return;
6283
6284 DRM_DEBUG_DRIVER("ELD on [CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
6285 connector->base.id,
6286 drm_get_connector_name(connector),
6287 connector->encoder->base.id,
6288 drm_get_encoder_name(connector->encoder));
6289
6290 connector->eld[6] = drm_av_sync_delay(connector, mode) / 2;
6291
6292 if (dev_priv->display.write_eld)
6293 dev_priv->display.write_eld(connector, crtc);
6294}
6295
Jesse Barnes79e53942008-11-07 14:24:08 -08006296/** Loads the palette/gamma unit for the CRTC with the prepared values */
6297void intel_crtc_load_lut(struct drm_crtc *crtc)
6298{
6299 struct drm_device *dev = crtc->dev;
6300 struct drm_i915_private *dev_priv = dev->dev_private;
6301 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Paulo Zanoni42db64e2013-05-31 16:33:22 -03006302 enum pipe pipe = intel_crtc->pipe;
6303 int palreg = PALETTE(pipe);
Jesse Barnes79e53942008-11-07 14:24:08 -08006304 int i;
Paulo Zanoni42db64e2013-05-31 16:33:22 -03006305 bool reenable_ips = false;
Jesse Barnes79e53942008-11-07 14:24:08 -08006306
6307 /* The clocks have to be on to load the palette. */
Alban Browaeysaed3f092012-02-24 17:12:45 +00006308 if (!crtc->enabled || !intel_crtc->active)
Jesse Barnes79e53942008-11-07 14:24:08 -08006309 return;
6310
Adam Jacksonf2b115e2009-12-03 17:14:42 -05006311 /* use legacy palette for Ironlake */
Eric Anholtbad720f2009-10-22 16:11:14 -07006312 if (HAS_PCH_SPLIT(dev))
Paulo Zanoni42db64e2013-05-31 16:33:22 -03006313 palreg = LGC_PALETTE(pipe);
6314
6315 /* Workaround : Do not read or write the pipe palette/gamma data while
6316 * GAMMA_MODE is configured for split gamma and IPS_CTL has IPS enabled.
6317 */
6318 if (intel_crtc->config.ips_enabled &&
6319 ((I915_READ(GAMMA_MODE(pipe)) & GAMMA_MODE_MODE_MASK) ==
6320 GAMMA_MODE_MODE_SPLIT)) {
6321 hsw_disable_ips(intel_crtc);
6322 reenable_ips = true;
6323 }
Zhenyu Wang2c072452009-06-05 15:38:42 +08006324
Jesse Barnes79e53942008-11-07 14:24:08 -08006325 for (i = 0; i < 256; i++) {
6326 I915_WRITE(palreg + 4 * i,
6327 (intel_crtc->lut_r[i] << 16) |
6328 (intel_crtc->lut_g[i] << 8) |
6329 intel_crtc->lut_b[i]);
6330 }
Paulo Zanoni42db64e2013-05-31 16:33:22 -03006331
6332 if (reenable_ips)
6333 hsw_enable_ips(intel_crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08006334}
6335
Chris Wilson560b85b2010-08-07 11:01:38 +01006336static void i845_update_cursor(struct drm_crtc *crtc, u32 base)
6337{
6338 struct drm_device *dev = crtc->dev;
6339 struct drm_i915_private *dev_priv = dev->dev_private;
6340 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6341 bool visible = base != 0;
6342 u32 cntl;
6343
6344 if (intel_crtc->cursor_visible == visible)
6345 return;
6346
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08006347 cntl = I915_READ(_CURACNTR);
Chris Wilson560b85b2010-08-07 11:01:38 +01006348 if (visible) {
6349 /* On these chipsets we can only modify the base whilst
6350 * the cursor is disabled.
6351 */
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08006352 I915_WRITE(_CURABASE, base);
Chris Wilson560b85b2010-08-07 11:01:38 +01006353
6354 cntl &= ~(CURSOR_FORMAT_MASK);
6355 /* XXX width must be 64, stride 256 => 0x00 << 28 */
6356 cntl |= CURSOR_ENABLE |
6357 CURSOR_GAMMA_ENABLE |
6358 CURSOR_FORMAT_ARGB;
6359 } else
6360 cntl &= ~(CURSOR_ENABLE | CURSOR_GAMMA_ENABLE);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08006361 I915_WRITE(_CURACNTR, cntl);
Chris Wilson560b85b2010-08-07 11:01:38 +01006362
6363 intel_crtc->cursor_visible = visible;
6364}
6365
6366static void i9xx_update_cursor(struct drm_crtc *crtc, u32 base)
6367{
6368 struct drm_device *dev = crtc->dev;
6369 struct drm_i915_private *dev_priv = dev->dev_private;
6370 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6371 int pipe = intel_crtc->pipe;
6372 bool visible = base != 0;
6373
6374 if (intel_crtc->cursor_visible != visible) {
Jesse Barnes548f2452011-02-17 10:40:53 -08006375 uint32_t cntl = I915_READ(CURCNTR(pipe));
Chris Wilson560b85b2010-08-07 11:01:38 +01006376 if (base) {
6377 cntl &= ~(CURSOR_MODE | MCURSOR_PIPE_SELECT);
6378 cntl |= CURSOR_MODE_64_ARGB_AX | MCURSOR_GAMMA_ENABLE;
6379 cntl |= pipe << 28; /* Connect to correct pipe */
6380 } else {
6381 cntl &= ~(CURSOR_MODE | MCURSOR_GAMMA_ENABLE);
6382 cntl |= CURSOR_MODE_DISABLE;
6383 }
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08006384 I915_WRITE(CURCNTR(pipe), cntl);
Chris Wilson560b85b2010-08-07 11:01:38 +01006385
6386 intel_crtc->cursor_visible = visible;
6387 }
6388 /* and commit changes on next vblank */
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08006389 I915_WRITE(CURBASE(pipe), base);
Chris Wilson560b85b2010-08-07 11:01:38 +01006390}
6391
Jesse Barnes65a21cd2011-10-12 11:10:21 -07006392static void ivb_update_cursor(struct drm_crtc *crtc, u32 base)
6393{
6394 struct drm_device *dev = crtc->dev;
6395 struct drm_i915_private *dev_priv = dev->dev_private;
6396 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6397 int pipe = intel_crtc->pipe;
6398 bool visible = base != 0;
6399
6400 if (intel_crtc->cursor_visible != visible) {
6401 uint32_t cntl = I915_READ(CURCNTR_IVB(pipe));
6402 if (base) {
6403 cntl &= ~CURSOR_MODE;
6404 cntl |= CURSOR_MODE_64_ARGB_AX | MCURSOR_GAMMA_ENABLE;
6405 } else {
6406 cntl &= ~(CURSOR_MODE | MCURSOR_GAMMA_ENABLE);
6407 cntl |= CURSOR_MODE_DISABLE;
6408 }
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02006409 if (IS_HASWELL(dev))
6410 cntl |= CURSOR_PIPE_CSC_ENABLE;
Jesse Barnes65a21cd2011-10-12 11:10:21 -07006411 I915_WRITE(CURCNTR_IVB(pipe), cntl);
6412
6413 intel_crtc->cursor_visible = visible;
6414 }
6415 /* and commit changes on next vblank */
6416 I915_WRITE(CURBASE_IVB(pipe), base);
6417}
6418
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01006419/* If no-part of the cursor is visible on the framebuffer, then the GPU may hang... */
Chris Wilson6b383a72010-09-13 13:54:26 +01006420static void intel_crtc_update_cursor(struct drm_crtc *crtc,
6421 bool on)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01006422{
6423 struct drm_device *dev = crtc->dev;
6424 struct drm_i915_private *dev_priv = dev->dev_private;
6425 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6426 int pipe = intel_crtc->pipe;
6427 int x = intel_crtc->cursor_x;
6428 int y = intel_crtc->cursor_y;
Chris Wilson560b85b2010-08-07 11:01:38 +01006429 u32 base, pos;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01006430 bool visible;
6431
6432 pos = 0;
6433
Chris Wilson6b383a72010-09-13 13:54:26 +01006434 if (on && crtc->enabled && crtc->fb) {
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01006435 base = intel_crtc->cursor_addr;
6436 if (x > (int) crtc->fb->width)
6437 base = 0;
6438
6439 if (y > (int) crtc->fb->height)
6440 base = 0;
6441 } else
6442 base = 0;
6443
6444 if (x < 0) {
6445 if (x + intel_crtc->cursor_width < 0)
6446 base = 0;
6447
6448 pos |= CURSOR_POS_SIGN << CURSOR_X_SHIFT;
6449 x = -x;
6450 }
6451 pos |= x << CURSOR_X_SHIFT;
6452
6453 if (y < 0) {
6454 if (y + intel_crtc->cursor_height < 0)
6455 base = 0;
6456
6457 pos |= CURSOR_POS_SIGN << CURSOR_Y_SHIFT;
6458 y = -y;
6459 }
6460 pos |= y << CURSOR_Y_SHIFT;
6461
6462 visible = base != 0;
Chris Wilson560b85b2010-08-07 11:01:38 +01006463 if (!visible && !intel_crtc->cursor_visible)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01006464 return;
6465
Eugeni Dodonov0cd83aa2012-04-13 17:08:48 -03006466 if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev)) {
Jesse Barnes65a21cd2011-10-12 11:10:21 -07006467 I915_WRITE(CURPOS_IVB(pipe), pos);
6468 ivb_update_cursor(crtc, base);
6469 } else {
6470 I915_WRITE(CURPOS(pipe), pos);
6471 if (IS_845G(dev) || IS_I865G(dev))
6472 i845_update_cursor(crtc, base);
6473 else
6474 i9xx_update_cursor(crtc, base);
6475 }
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01006476}
6477
Jesse Barnes79e53942008-11-07 14:24:08 -08006478static int intel_crtc_cursor_set(struct drm_crtc *crtc,
Chris Wilson05394f32010-11-08 19:18:58 +00006479 struct drm_file *file,
Jesse Barnes79e53942008-11-07 14:24:08 -08006480 uint32_t handle,
6481 uint32_t width, uint32_t height)
6482{
6483 struct drm_device *dev = crtc->dev;
6484 struct drm_i915_private *dev_priv = dev->dev_private;
6485 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Chris Wilson05394f32010-11-08 19:18:58 +00006486 struct drm_i915_gem_object *obj;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01006487 uint32_t addr;
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05006488 int ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08006489
Jesse Barnes79e53942008-11-07 14:24:08 -08006490 /* if we want to turn off the cursor ignore width and height */
6491 if (!handle) {
Zhao Yakui28c97732009-10-09 11:39:41 +08006492 DRM_DEBUG_KMS("cursor off\n");
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05006493 addr = 0;
Chris Wilson05394f32010-11-08 19:18:58 +00006494 obj = NULL;
Pierre Willenbrock50044172009-02-23 10:12:15 +10006495 mutex_lock(&dev->struct_mutex);
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05006496 goto finish;
Jesse Barnes79e53942008-11-07 14:24:08 -08006497 }
6498
6499 /* Currently we only support 64x64 cursors */
6500 if (width != 64 || height != 64) {
6501 DRM_ERROR("we currently only support 64x64 cursors\n");
6502 return -EINVAL;
6503 }
6504
Chris Wilson05394f32010-11-08 19:18:58 +00006505 obj = to_intel_bo(drm_gem_object_lookup(dev, file, handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00006506 if (&obj->base == NULL)
Jesse Barnes79e53942008-11-07 14:24:08 -08006507 return -ENOENT;
6508
Chris Wilson05394f32010-11-08 19:18:58 +00006509 if (obj->base.size < width * height * 4) {
Jesse Barnes79e53942008-11-07 14:24:08 -08006510 DRM_ERROR("buffer is to small\n");
Dave Airlie34b8686e2009-01-15 14:03:07 +10006511 ret = -ENOMEM;
6512 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -08006513 }
6514
Dave Airlie71acb5e2008-12-30 20:31:46 +10006515 /* we only need to pin inside GTT if cursor is non-phy */
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05006516 mutex_lock(&dev->struct_mutex);
Kristian Høgsbergb295d1b2009-12-16 15:16:17 -05006517 if (!dev_priv->info->cursor_needs_physical) {
Chris Wilson693db182013-03-05 14:52:39 +00006518 unsigned alignment;
6519
Chris Wilsond9e86c02010-11-10 16:40:20 +00006520 if (obj->tiling_mode) {
6521 DRM_ERROR("cursor cannot be tiled\n");
6522 ret = -EINVAL;
6523 goto fail_locked;
6524 }
6525
Chris Wilson693db182013-03-05 14:52:39 +00006526 /* Note that the w/a also requires 2 PTE of padding following
6527 * the bo. We currently fill all unused PTE with the shadow
6528 * page and so we should always have valid PTE following the
6529 * cursor preventing the VT-d warning.
6530 */
6531 alignment = 0;
6532 if (need_vtd_wa(dev))
6533 alignment = 64*1024;
6534
6535 ret = i915_gem_object_pin_to_display_plane(obj, alignment, NULL);
Chris Wilsone7b526b2010-06-02 08:30:48 +01006536 if (ret) {
6537 DRM_ERROR("failed to move cursor bo into the GTT\n");
Chris Wilson2da3b9b2011-04-14 09:41:17 +01006538 goto fail_locked;
Chris Wilsone7b526b2010-06-02 08:30:48 +01006539 }
6540
Chris Wilsond9e86c02010-11-10 16:40:20 +00006541 ret = i915_gem_object_put_fence(obj);
6542 if (ret) {
Chris Wilson2da3b9b2011-04-14 09:41:17 +01006543 DRM_ERROR("failed to release fence for cursor");
Chris Wilsond9e86c02010-11-10 16:40:20 +00006544 goto fail_unpin;
6545 }
6546
Chris Wilson05394f32010-11-08 19:18:58 +00006547 addr = obj->gtt_offset;
Dave Airlie71acb5e2008-12-30 20:31:46 +10006548 } else {
Chris Wilson6eeefaf2010-08-07 11:01:39 +01006549 int align = IS_I830(dev) ? 16 * 1024 : 256;
Chris Wilson05394f32010-11-08 19:18:58 +00006550 ret = i915_gem_attach_phys_object(dev, obj,
Chris Wilson6eeefaf2010-08-07 11:01:39 +01006551 (intel_crtc->pipe == 0) ? I915_GEM_PHYS_CURSOR_0 : I915_GEM_PHYS_CURSOR_1,
6552 align);
Dave Airlie71acb5e2008-12-30 20:31:46 +10006553 if (ret) {
6554 DRM_ERROR("failed to attach phys object\n");
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05006555 goto fail_locked;
Dave Airlie71acb5e2008-12-30 20:31:46 +10006556 }
Chris Wilson05394f32010-11-08 19:18:58 +00006557 addr = obj->phys_obj->handle->busaddr;
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05006558 }
6559
Chris Wilsona6c45cf2010-09-17 00:32:17 +01006560 if (IS_GEN2(dev))
Jesse Barnes14b60392009-05-20 16:47:08 -04006561 I915_WRITE(CURSIZE, (height << 12) | width);
6562
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05006563 finish:
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05006564 if (intel_crtc->cursor_bo) {
Kristian Høgsbergb295d1b2009-12-16 15:16:17 -05006565 if (dev_priv->info->cursor_needs_physical) {
Chris Wilson05394f32010-11-08 19:18:58 +00006566 if (intel_crtc->cursor_bo != obj)
Dave Airlie71acb5e2008-12-30 20:31:46 +10006567 i915_gem_detach_phys_object(dev, intel_crtc->cursor_bo);
6568 } else
6569 i915_gem_object_unpin(intel_crtc->cursor_bo);
Chris Wilson05394f32010-11-08 19:18:58 +00006570 drm_gem_object_unreference(&intel_crtc->cursor_bo->base);
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05006571 }
Jesse Barnes80824002009-09-10 15:28:06 -07006572
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05006573 mutex_unlock(&dev->struct_mutex);
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05006574
6575 intel_crtc->cursor_addr = addr;
Chris Wilson05394f32010-11-08 19:18:58 +00006576 intel_crtc->cursor_bo = obj;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01006577 intel_crtc->cursor_width = width;
6578 intel_crtc->cursor_height = height;
6579
Mika Kuoppala40ccc722013-04-23 17:27:08 +03006580 intel_crtc_update_cursor(crtc, intel_crtc->cursor_bo != NULL);
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05006581
Jesse Barnes79e53942008-11-07 14:24:08 -08006582 return 0;
Chris Wilsone7b526b2010-06-02 08:30:48 +01006583fail_unpin:
Chris Wilson05394f32010-11-08 19:18:58 +00006584 i915_gem_object_unpin(obj);
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05006585fail_locked:
Dave Airlie34b8686e2009-01-15 14:03:07 +10006586 mutex_unlock(&dev->struct_mutex);
Luca Barbieribc9025b2010-02-09 05:49:12 +00006587fail:
Chris Wilson05394f32010-11-08 19:18:58 +00006588 drm_gem_object_unreference_unlocked(&obj->base);
Dave Airlie34b8686e2009-01-15 14:03:07 +10006589 return ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08006590}
6591
6592static int intel_crtc_cursor_move(struct drm_crtc *crtc, int x, int y)
6593{
Jesse Barnes79e53942008-11-07 14:24:08 -08006594 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08006595
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01006596 intel_crtc->cursor_x = x;
6597 intel_crtc->cursor_y = y;
Jesse Barnes652c3932009-08-17 13:31:43 -07006598
Mika Kuoppala40ccc722013-04-23 17:27:08 +03006599 intel_crtc_update_cursor(crtc, intel_crtc->cursor_bo != NULL);
Jesse Barnes79e53942008-11-07 14:24:08 -08006600
6601 return 0;
6602}
6603
6604/** Sets the color ramps on behalf of RandR */
6605void intel_crtc_fb_gamma_set(struct drm_crtc *crtc, u16 red, u16 green,
6606 u16 blue, int regno)
6607{
6608 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6609
6610 intel_crtc->lut_r[regno] = red >> 8;
6611 intel_crtc->lut_g[regno] = green >> 8;
6612 intel_crtc->lut_b[regno] = blue >> 8;
6613}
6614
Dave Airlieb8c00ac2009-10-06 13:54:01 +10006615void intel_crtc_fb_gamma_get(struct drm_crtc *crtc, u16 *red, u16 *green,
6616 u16 *blue, int regno)
6617{
6618 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6619
6620 *red = intel_crtc->lut_r[regno] << 8;
6621 *green = intel_crtc->lut_g[regno] << 8;
6622 *blue = intel_crtc->lut_b[regno] << 8;
6623}
6624
Jesse Barnes79e53942008-11-07 14:24:08 -08006625static void intel_crtc_gamma_set(struct drm_crtc *crtc, u16 *red, u16 *green,
James Simmons72034252010-08-03 01:33:19 +01006626 u16 *blue, uint32_t start, uint32_t size)
Jesse Barnes79e53942008-11-07 14:24:08 -08006627{
James Simmons72034252010-08-03 01:33:19 +01006628 int end = (start + size > 256) ? 256 : start + size, i;
Jesse Barnes79e53942008-11-07 14:24:08 -08006629 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08006630
James Simmons72034252010-08-03 01:33:19 +01006631 for (i = start; i < end; i++) {
Jesse Barnes79e53942008-11-07 14:24:08 -08006632 intel_crtc->lut_r[i] = red[i] >> 8;
6633 intel_crtc->lut_g[i] = green[i] >> 8;
6634 intel_crtc->lut_b[i] = blue[i] >> 8;
6635 }
6636
6637 intel_crtc_load_lut(crtc);
6638}
6639
Jesse Barnes79e53942008-11-07 14:24:08 -08006640/* VESA 640x480x72Hz mode to set on the pipe */
6641static struct drm_display_mode load_detect_mode = {
6642 DRM_MODE("640x480", DRM_MODE_TYPE_DEFAULT, 31500, 640, 664,
6643 704, 832, 0, 480, 489, 491, 520, 0, DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
6644};
6645
Chris Wilsond2dff872011-04-19 08:36:26 +01006646static struct drm_framebuffer *
6647intel_framebuffer_create(struct drm_device *dev,
Jesse Barnes308e5bc2011-11-14 14:51:28 -08006648 struct drm_mode_fb_cmd2 *mode_cmd,
Chris Wilsond2dff872011-04-19 08:36:26 +01006649 struct drm_i915_gem_object *obj)
6650{
6651 struct intel_framebuffer *intel_fb;
6652 int ret;
6653
6654 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
6655 if (!intel_fb) {
6656 drm_gem_object_unreference_unlocked(&obj->base);
6657 return ERR_PTR(-ENOMEM);
6658 }
6659
6660 ret = intel_framebuffer_init(dev, intel_fb, mode_cmd, obj);
6661 if (ret) {
6662 drm_gem_object_unreference_unlocked(&obj->base);
6663 kfree(intel_fb);
6664 return ERR_PTR(ret);
6665 }
6666
6667 return &intel_fb->base;
6668}
6669
6670static u32
6671intel_framebuffer_pitch_for_width(int width, int bpp)
6672{
6673 u32 pitch = DIV_ROUND_UP(width * bpp, 8);
6674 return ALIGN(pitch, 64);
6675}
6676
6677static u32
6678intel_framebuffer_size_for_mode(struct drm_display_mode *mode, int bpp)
6679{
6680 u32 pitch = intel_framebuffer_pitch_for_width(mode->hdisplay, bpp);
6681 return ALIGN(pitch * mode->vdisplay, PAGE_SIZE);
6682}
6683
6684static struct drm_framebuffer *
6685intel_framebuffer_create_for_mode(struct drm_device *dev,
6686 struct drm_display_mode *mode,
6687 int depth, int bpp)
6688{
6689 struct drm_i915_gem_object *obj;
Chris Wilson0fed39b2012-11-05 22:25:07 +00006690 struct drm_mode_fb_cmd2 mode_cmd = { 0 };
Chris Wilsond2dff872011-04-19 08:36:26 +01006691
6692 obj = i915_gem_alloc_object(dev,
6693 intel_framebuffer_size_for_mode(mode, bpp));
6694 if (obj == NULL)
6695 return ERR_PTR(-ENOMEM);
6696
6697 mode_cmd.width = mode->hdisplay;
6698 mode_cmd.height = mode->vdisplay;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08006699 mode_cmd.pitches[0] = intel_framebuffer_pitch_for_width(mode_cmd.width,
6700 bpp);
Dave Airlie5ca0c342012-02-23 15:33:40 +00006701 mode_cmd.pixel_format = drm_mode_legacy_fb_format(bpp, depth);
Chris Wilsond2dff872011-04-19 08:36:26 +01006702
6703 return intel_framebuffer_create(dev, &mode_cmd, obj);
6704}
6705
6706static struct drm_framebuffer *
6707mode_fits_in_fbdev(struct drm_device *dev,
6708 struct drm_display_mode *mode)
6709{
6710 struct drm_i915_private *dev_priv = dev->dev_private;
6711 struct drm_i915_gem_object *obj;
6712 struct drm_framebuffer *fb;
6713
6714 if (dev_priv->fbdev == NULL)
6715 return NULL;
6716
6717 obj = dev_priv->fbdev->ifb.obj;
6718 if (obj == NULL)
6719 return NULL;
6720
6721 fb = &dev_priv->fbdev->ifb.base;
Ville Syrjälä01f2c772011-12-20 00:06:49 +02006722 if (fb->pitches[0] < intel_framebuffer_pitch_for_width(mode->hdisplay,
6723 fb->bits_per_pixel))
Chris Wilsond2dff872011-04-19 08:36:26 +01006724 return NULL;
6725
Ville Syrjälä01f2c772011-12-20 00:06:49 +02006726 if (obj->base.size < mode->vdisplay * fb->pitches[0])
Chris Wilsond2dff872011-04-19 08:36:26 +01006727 return NULL;
6728
6729 return fb;
6730}
6731
Daniel Vetterd2434ab2012-08-12 21:20:10 +02006732bool intel_get_load_detect_pipe(struct drm_connector *connector,
Chris Wilson71731882011-04-19 23:10:58 +01006733 struct drm_display_mode *mode,
Chris Wilson8261b192011-04-19 23:18:09 +01006734 struct intel_load_detect_pipe *old)
Jesse Barnes79e53942008-11-07 14:24:08 -08006735{
6736 struct intel_crtc *intel_crtc;
Daniel Vetterd2434ab2012-08-12 21:20:10 +02006737 struct intel_encoder *intel_encoder =
6738 intel_attached_encoder(connector);
Jesse Barnes79e53942008-11-07 14:24:08 -08006739 struct drm_crtc *possible_crtc;
Chris Wilson4ef69c72010-09-09 15:14:28 +01006740 struct drm_encoder *encoder = &intel_encoder->base;
Jesse Barnes79e53942008-11-07 14:24:08 -08006741 struct drm_crtc *crtc = NULL;
6742 struct drm_device *dev = encoder->dev;
Daniel Vetter94352cf2012-07-05 22:51:56 +02006743 struct drm_framebuffer *fb;
Jesse Barnes79e53942008-11-07 14:24:08 -08006744 int i = -1;
6745
Chris Wilsond2dff872011-04-19 08:36:26 +01006746 DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
6747 connector->base.id, drm_get_connector_name(connector),
6748 encoder->base.id, drm_get_encoder_name(encoder));
6749
Jesse Barnes79e53942008-11-07 14:24:08 -08006750 /*
6751 * Algorithm gets a little messy:
Chris Wilson7a5e4802011-04-19 23:21:12 +01006752 *
Jesse Barnes79e53942008-11-07 14:24:08 -08006753 * - if the connector already has an assigned crtc, use it (but make
6754 * sure it's on first)
Chris Wilson7a5e4802011-04-19 23:21:12 +01006755 *
Jesse Barnes79e53942008-11-07 14:24:08 -08006756 * - try to find the first unused crtc that can drive this connector,
6757 * and use that if we find one
Jesse Barnes79e53942008-11-07 14:24:08 -08006758 */
6759
6760 /* See if we already have a CRTC for this connector */
6761 if (encoder->crtc) {
6762 crtc = encoder->crtc;
Chris Wilson8261b192011-04-19 23:18:09 +01006763
Daniel Vetter7b240562012-12-12 00:35:33 +01006764 mutex_lock(&crtc->mutex);
6765
Daniel Vetter24218aa2012-08-12 19:27:11 +02006766 old->dpms_mode = connector->dpms;
Chris Wilson8261b192011-04-19 23:18:09 +01006767 old->load_detect_temp = false;
6768
6769 /* Make sure the crtc and connector are running */
Daniel Vetter24218aa2012-08-12 19:27:11 +02006770 if (connector->dpms != DRM_MODE_DPMS_ON)
6771 connector->funcs->dpms(connector, DRM_MODE_DPMS_ON);
Chris Wilson8261b192011-04-19 23:18:09 +01006772
Chris Wilson71731882011-04-19 23:10:58 +01006773 return true;
Jesse Barnes79e53942008-11-07 14:24:08 -08006774 }
6775
6776 /* Find an unused one (if possible) */
6777 list_for_each_entry(possible_crtc, &dev->mode_config.crtc_list, head) {
6778 i++;
6779 if (!(encoder->possible_crtcs & (1 << i)))
6780 continue;
6781 if (!possible_crtc->enabled) {
6782 crtc = possible_crtc;
6783 break;
6784 }
Jesse Barnes79e53942008-11-07 14:24:08 -08006785 }
6786
6787 /*
6788 * If we didn't find an unused CRTC, don't use any.
6789 */
6790 if (!crtc) {
Chris Wilson71731882011-04-19 23:10:58 +01006791 DRM_DEBUG_KMS("no pipe available for load-detect\n");
6792 return false;
Jesse Barnes79e53942008-11-07 14:24:08 -08006793 }
6794
Daniel Vetter7b240562012-12-12 00:35:33 +01006795 mutex_lock(&crtc->mutex);
Daniel Vetterfc303102012-07-09 10:40:58 +02006796 intel_encoder->new_crtc = to_intel_crtc(crtc);
6797 to_intel_connector(connector)->new_encoder = intel_encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08006798
6799 intel_crtc = to_intel_crtc(crtc);
Daniel Vetter24218aa2012-08-12 19:27:11 +02006800 old->dpms_mode = connector->dpms;
Chris Wilson8261b192011-04-19 23:18:09 +01006801 old->load_detect_temp = true;
Chris Wilsond2dff872011-04-19 08:36:26 +01006802 old->release_fb = NULL;
Jesse Barnes79e53942008-11-07 14:24:08 -08006803
Chris Wilson64927112011-04-20 07:25:26 +01006804 if (!mode)
6805 mode = &load_detect_mode;
Jesse Barnes79e53942008-11-07 14:24:08 -08006806
Chris Wilsond2dff872011-04-19 08:36:26 +01006807 /* We need a framebuffer large enough to accommodate all accesses
6808 * that the plane may generate whilst we perform load detection.
6809 * We can not rely on the fbcon either being present (we get called
6810 * during its initialisation to detect all boot displays, or it may
6811 * not even exist) or that it is large enough to satisfy the
6812 * requested mode.
6813 */
Daniel Vetter94352cf2012-07-05 22:51:56 +02006814 fb = mode_fits_in_fbdev(dev, mode);
6815 if (fb == NULL) {
Chris Wilsond2dff872011-04-19 08:36:26 +01006816 DRM_DEBUG_KMS("creating tmp fb for load-detection\n");
Daniel Vetter94352cf2012-07-05 22:51:56 +02006817 fb = intel_framebuffer_create_for_mode(dev, mode, 24, 32);
6818 old->release_fb = fb;
Chris Wilsond2dff872011-04-19 08:36:26 +01006819 } else
6820 DRM_DEBUG_KMS("reusing fbdev for load-detection framebuffer\n");
Daniel Vetter94352cf2012-07-05 22:51:56 +02006821 if (IS_ERR(fb)) {
Chris Wilsond2dff872011-04-19 08:36:26 +01006822 DRM_DEBUG_KMS("failed to allocate framebuffer for load-detection\n");
Daniel Vetter7b240562012-12-12 00:35:33 +01006823 mutex_unlock(&crtc->mutex);
Chris Wilson0e8b3d32012-11-05 22:25:08 +00006824 return false;
Jesse Barnes79e53942008-11-07 14:24:08 -08006825 }
Chris Wilsond2dff872011-04-19 08:36:26 +01006826
Chris Wilsonc0c36b942012-12-19 16:08:43 +00006827 if (intel_set_mode(crtc, mode, 0, 0, fb)) {
Chris Wilson64927112011-04-20 07:25:26 +01006828 DRM_DEBUG_KMS("failed to set mode on load-detect pipe\n");
Chris Wilsond2dff872011-04-19 08:36:26 +01006829 if (old->release_fb)
6830 old->release_fb->funcs->destroy(old->release_fb);
Daniel Vetter7b240562012-12-12 00:35:33 +01006831 mutex_unlock(&crtc->mutex);
Chris Wilson0e8b3d32012-11-05 22:25:08 +00006832 return false;
Jesse Barnes79e53942008-11-07 14:24:08 -08006833 }
Chris Wilson71731882011-04-19 23:10:58 +01006834
Jesse Barnes79e53942008-11-07 14:24:08 -08006835 /* let the connector get through one full cycle before testing */
Jesse Barnes9d0498a2010-08-18 13:20:54 -07006836 intel_wait_for_vblank(dev, intel_crtc->pipe);
Chris Wilson71731882011-04-19 23:10:58 +01006837 return true;
Jesse Barnes79e53942008-11-07 14:24:08 -08006838}
6839
Daniel Vetterd2434ab2012-08-12 21:20:10 +02006840void intel_release_load_detect_pipe(struct drm_connector *connector,
Chris Wilson8261b192011-04-19 23:18:09 +01006841 struct intel_load_detect_pipe *old)
Jesse Barnes79e53942008-11-07 14:24:08 -08006842{
Daniel Vetterd2434ab2012-08-12 21:20:10 +02006843 struct intel_encoder *intel_encoder =
6844 intel_attached_encoder(connector);
Chris Wilson4ef69c72010-09-09 15:14:28 +01006845 struct drm_encoder *encoder = &intel_encoder->base;
Daniel Vetter7b240562012-12-12 00:35:33 +01006846 struct drm_crtc *crtc = encoder->crtc;
Jesse Barnes79e53942008-11-07 14:24:08 -08006847
Chris Wilsond2dff872011-04-19 08:36:26 +01006848 DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
6849 connector->base.id, drm_get_connector_name(connector),
6850 encoder->base.id, drm_get_encoder_name(encoder));
6851
Chris Wilson8261b192011-04-19 23:18:09 +01006852 if (old->load_detect_temp) {
Daniel Vetterfc303102012-07-09 10:40:58 +02006853 to_intel_connector(connector)->new_encoder = NULL;
6854 intel_encoder->new_crtc = NULL;
6855 intel_set_mode(crtc, NULL, 0, 0, NULL);
Chris Wilsond2dff872011-04-19 08:36:26 +01006856
Daniel Vetter36206362012-12-10 20:42:17 +01006857 if (old->release_fb) {
6858 drm_framebuffer_unregister_private(old->release_fb);
6859 drm_framebuffer_unreference(old->release_fb);
6860 }
Chris Wilsond2dff872011-04-19 08:36:26 +01006861
Daniel Vetter67c96402013-01-23 16:25:09 +00006862 mutex_unlock(&crtc->mutex);
Chris Wilson0622a532011-04-21 09:32:11 +01006863 return;
Jesse Barnes79e53942008-11-07 14:24:08 -08006864 }
6865
Eric Anholtc751ce42010-03-25 11:48:48 -07006866 /* Switch crtc and encoder back off if necessary */
Daniel Vetter24218aa2012-08-12 19:27:11 +02006867 if (old->dpms_mode != DRM_MODE_DPMS_ON)
6868 connector->funcs->dpms(connector, old->dpms_mode);
Daniel Vetter7b240562012-12-12 00:35:33 +01006869
6870 mutex_unlock(&crtc->mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -08006871}
6872
6873/* Returns the clock of the currently programmed mode of the given pipe. */
6874static int intel_crtc_clock_get(struct drm_device *dev, struct drm_crtc *crtc)
6875{
6876 struct drm_i915_private *dev_priv = dev->dev_private;
6877 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6878 int pipe = intel_crtc->pipe;
Jesse Barnes548f2452011-02-17 10:40:53 -08006879 u32 dpll = I915_READ(DPLL(pipe));
Jesse Barnes79e53942008-11-07 14:24:08 -08006880 u32 fp;
6881 intel_clock_t clock;
6882
6883 if ((dpll & DISPLAY_RATE_SELECT_FPA1) == 0)
Chris Wilson39adb7a2011-04-22 22:17:21 +01006884 fp = I915_READ(FP0(pipe));
Jesse Barnes79e53942008-11-07 14:24:08 -08006885 else
Chris Wilson39adb7a2011-04-22 22:17:21 +01006886 fp = I915_READ(FP1(pipe));
Jesse Barnes79e53942008-11-07 14:24:08 -08006887
6888 clock.m1 = (fp & FP_M1_DIV_MASK) >> FP_M1_DIV_SHIFT;
Adam Jacksonf2b115e2009-12-03 17:14:42 -05006889 if (IS_PINEVIEW(dev)) {
6890 clock.n = ffs((fp & FP_N_PINEVIEW_DIV_MASK) >> FP_N_DIV_SHIFT) - 1;
6891 clock.m2 = (fp & FP_M2_PINEVIEW_DIV_MASK) >> FP_M2_DIV_SHIFT;
Shaohua Li21778322009-02-23 15:19:16 +08006892 } else {
6893 clock.n = (fp & FP_N_DIV_MASK) >> FP_N_DIV_SHIFT;
6894 clock.m2 = (fp & FP_M2_DIV_MASK) >> FP_M2_DIV_SHIFT;
6895 }
6896
Chris Wilsona6c45cf2010-09-17 00:32:17 +01006897 if (!IS_GEN2(dev)) {
Adam Jacksonf2b115e2009-12-03 17:14:42 -05006898 if (IS_PINEVIEW(dev))
6899 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_PINEVIEW) >>
6900 DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW);
Shaohua Li21778322009-02-23 15:19:16 +08006901 else
6902 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK) >>
Jesse Barnes79e53942008-11-07 14:24:08 -08006903 DPLL_FPA01_P1_POST_DIV_SHIFT);
6904
6905 switch (dpll & DPLL_MODE_MASK) {
6906 case DPLLB_MODE_DAC_SERIAL:
6907 clock.p2 = dpll & DPLL_DAC_SERIAL_P2_CLOCK_DIV_5 ?
6908 5 : 10;
6909 break;
6910 case DPLLB_MODE_LVDS:
6911 clock.p2 = dpll & DPLLB_LVDS_P2_CLOCK_DIV_7 ?
6912 7 : 14;
6913 break;
6914 default:
Zhao Yakui28c97732009-10-09 11:39:41 +08006915 DRM_DEBUG_KMS("Unknown DPLL mode %08x in programmed "
Jesse Barnes79e53942008-11-07 14:24:08 -08006916 "mode\n", (int)(dpll & DPLL_MODE_MASK));
6917 return 0;
6918 }
6919
Daniel Vetterac58c3f2013-06-01 17:16:17 +02006920 if (IS_PINEVIEW(dev))
6921 pineview_clock(96000, &clock);
6922 else
6923 i9xx_clock(96000, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08006924 } else {
6925 bool is_lvds = (pipe == 1) && (I915_READ(LVDS) & LVDS_PORT_EN);
6926
6927 if (is_lvds) {
6928 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830_LVDS) >>
6929 DPLL_FPA01_P1_POST_DIV_SHIFT);
6930 clock.p2 = 14;
6931
6932 if ((dpll & PLL_REF_INPUT_MASK) ==
6933 PLLB_REF_INPUT_SPREADSPECTRUMIN) {
6934 /* XXX: might not be 66MHz */
Daniel Vetterac58c3f2013-06-01 17:16:17 +02006935 i9xx_clock(66000, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08006936 } else
Daniel Vetterac58c3f2013-06-01 17:16:17 +02006937 i9xx_clock(48000, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08006938 } else {
6939 if (dpll & PLL_P1_DIVIDE_BY_TWO)
6940 clock.p1 = 2;
6941 else {
6942 clock.p1 = ((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830) >>
6943 DPLL_FPA01_P1_POST_DIV_SHIFT) + 2;
6944 }
6945 if (dpll & PLL_P2_DIVIDE_BY_4)
6946 clock.p2 = 4;
6947 else
6948 clock.p2 = 2;
6949
Daniel Vetterac58c3f2013-06-01 17:16:17 +02006950 i9xx_clock(48000, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08006951 }
6952 }
6953
6954 /* XXX: It would be nice to validate the clocks, but we can't reuse
6955 * i830PllIsValid() because it relies on the xf86_config connector
6956 * configuration being accurate, which it isn't necessarily.
6957 */
6958
6959 return clock.dot;
6960}
6961
6962/** Returns the currently programmed mode of the given pipe. */
6963struct drm_display_mode *intel_crtc_mode_get(struct drm_device *dev,
6964 struct drm_crtc *crtc)
6965{
Jesse Barnes548f2452011-02-17 10:40:53 -08006966 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -08006967 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter3b117c82013-04-17 20:15:07 +02006968 enum transcoder cpu_transcoder = intel_crtc->config.cpu_transcoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08006969 struct drm_display_mode *mode;
Paulo Zanonife2b8f92012-10-23 18:30:02 -02006970 int htot = I915_READ(HTOTAL(cpu_transcoder));
6971 int hsync = I915_READ(HSYNC(cpu_transcoder));
6972 int vtot = I915_READ(VTOTAL(cpu_transcoder));
6973 int vsync = I915_READ(VSYNC(cpu_transcoder));
Jesse Barnes79e53942008-11-07 14:24:08 -08006974
6975 mode = kzalloc(sizeof(*mode), GFP_KERNEL);
6976 if (!mode)
6977 return NULL;
6978
6979 mode->clock = intel_crtc_clock_get(dev, crtc);
6980 mode->hdisplay = (htot & 0xffff) + 1;
6981 mode->htotal = ((htot & 0xffff0000) >> 16) + 1;
6982 mode->hsync_start = (hsync & 0xffff) + 1;
6983 mode->hsync_end = ((hsync & 0xffff0000) >> 16) + 1;
6984 mode->vdisplay = (vtot & 0xffff) + 1;
6985 mode->vtotal = ((vtot & 0xffff0000) >> 16) + 1;
6986 mode->vsync_start = (vsync & 0xffff) + 1;
6987 mode->vsync_end = ((vsync & 0xffff0000) >> 16) + 1;
6988
6989 drm_mode_set_name(mode);
Jesse Barnes79e53942008-11-07 14:24:08 -08006990
6991 return mode;
6992}
6993
Daniel Vetter3dec0092010-08-20 21:40:52 +02006994static void intel_increase_pllclock(struct drm_crtc *crtc)
Jesse Barnes652c3932009-08-17 13:31:43 -07006995{
6996 struct drm_device *dev = crtc->dev;
6997 drm_i915_private_t *dev_priv = dev->dev_private;
6998 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6999 int pipe = intel_crtc->pipe;
Jesse Barnesdbdc6472010-12-30 09:36:39 -08007000 int dpll_reg = DPLL(pipe);
7001 int dpll;
Jesse Barnes652c3932009-08-17 13:31:43 -07007002
Eric Anholtbad720f2009-10-22 16:11:14 -07007003 if (HAS_PCH_SPLIT(dev))
Jesse Barnes652c3932009-08-17 13:31:43 -07007004 return;
7005
7006 if (!dev_priv->lvds_downclock_avail)
7007 return;
7008
Jesse Barnesdbdc6472010-12-30 09:36:39 -08007009 dpll = I915_READ(dpll_reg);
Jesse Barnes652c3932009-08-17 13:31:43 -07007010 if (!HAS_PIPE_CXSR(dev) && (dpll & DISPLAY_RATE_SELECT_FPA1)) {
Zhao Yakui44d98a62009-10-09 11:39:40 +08007011 DRM_DEBUG_DRIVER("upclocking LVDS\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07007012
Sean Paul8ac5a6d2012-02-13 13:14:51 -05007013 assert_panel_unlocked(dev_priv, pipe);
Jesse Barnes652c3932009-08-17 13:31:43 -07007014
7015 dpll &= ~DISPLAY_RATE_SELECT_FPA1;
7016 I915_WRITE(dpll_reg, dpll);
Jesse Barnes9d0498a2010-08-18 13:20:54 -07007017 intel_wait_for_vblank(dev, pipe);
Jesse Barnesdbdc6472010-12-30 09:36:39 -08007018
Jesse Barnes652c3932009-08-17 13:31:43 -07007019 dpll = I915_READ(dpll_reg);
7020 if (dpll & DISPLAY_RATE_SELECT_FPA1)
Zhao Yakui44d98a62009-10-09 11:39:40 +08007021 DRM_DEBUG_DRIVER("failed to upclock LVDS!\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07007022 }
Jesse Barnes652c3932009-08-17 13:31:43 -07007023}
7024
7025static void intel_decrease_pllclock(struct drm_crtc *crtc)
7026{
7027 struct drm_device *dev = crtc->dev;
7028 drm_i915_private_t *dev_priv = dev->dev_private;
7029 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes652c3932009-08-17 13:31:43 -07007030
Eric Anholtbad720f2009-10-22 16:11:14 -07007031 if (HAS_PCH_SPLIT(dev))
Jesse Barnes652c3932009-08-17 13:31:43 -07007032 return;
7033
7034 if (!dev_priv->lvds_downclock_avail)
7035 return;
7036
7037 /*
7038 * Since this is called by a timer, we should never get here in
7039 * the manual case.
7040 */
7041 if (!HAS_PIPE_CXSR(dev) && intel_crtc->lowfreq_avail) {
Chris Wilson074b5e12012-05-02 12:07:06 +01007042 int pipe = intel_crtc->pipe;
7043 int dpll_reg = DPLL(pipe);
Daniel Vetterdc257cf2012-05-07 11:30:46 +02007044 int dpll;
Chris Wilson074b5e12012-05-02 12:07:06 +01007045
Zhao Yakui44d98a62009-10-09 11:39:40 +08007046 DRM_DEBUG_DRIVER("downclocking LVDS\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07007047
Sean Paul8ac5a6d2012-02-13 13:14:51 -05007048 assert_panel_unlocked(dev_priv, pipe);
Jesse Barnes652c3932009-08-17 13:31:43 -07007049
Chris Wilson074b5e12012-05-02 12:07:06 +01007050 dpll = I915_READ(dpll_reg);
Jesse Barnes652c3932009-08-17 13:31:43 -07007051 dpll |= DISPLAY_RATE_SELECT_FPA1;
7052 I915_WRITE(dpll_reg, dpll);
Jesse Barnes9d0498a2010-08-18 13:20:54 -07007053 intel_wait_for_vblank(dev, pipe);
Jesse Barnes652c3932009-08-17 13:31:43 -07007054 dpll = I915_READ(dpll_reg);
7055 if (!(dpll & DISPLAY_RATE_SELECT_FPA1))
Zhao Yakui44d98a62009-10-09 11:39:40 +08007056 DRM_DEBUG_DRIVER("failed to downclock LVDS!\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07007057 }
7058
7059}
7060
Chris Wilsonf047e392012-07-21 12:31:41 +01007061void intel_mark_busy(struct drm_device *dev)
Jesse Barnes652c3932009-08-17 13:31:43 -07007062{
Chris Wilsonf047e392012-07-21 12:31:41 +01007063 i915_update_gfx_val(dev->dev_private);
7064}
7065
7066void intel_mark_idle(struct drm_device *dev)
7067{
Chris Wilson725a5b52013-01-08 11:02:57 +00007068 struct drm_crtc *crtc;
7069
7070 if (!i915_powersave)
7071 return;
7072
7073 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
7074 if (!crtc->fb)
7075 continue;
7076
7077 intel_decrease_pllclock(crtc);
7078 }
Chris Wilsonf047e392012-07-21 12:31:41 +01007079}
7080
7081void intel_mark_fb_busy(struct drm_i915_gem_object *obj)
7082{
7083 struct drm_device *dev = obj->base.dev;
Jesse Barnes652c3932009-08-17 13:31:43 -07007084 struct drm_crtc *crtc;
Jesse Barnes652c3932009-08-17 13:31:43 -07007085
7086 if (!i915_powersave)
7087 return;
7088
Jesse Barnes652c3932009-08-17 13:31:43 -07007089 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
Jesse Barnes652c3932009-08-17 13:31:43 -07007090 if (!crtc->fb)
7091 continue;
7092
Chris Wilsonf047e392012-07-21 12:31:41 +01007093 if (to_intel_framebuffer(crtc->fb)->obj == obj)
7094 intel_increase_pllclock(crtc);
Jesse Barnes652c3932009-08-17 13:31:43 -07007095 }
Jesse Barnes652c3932009-08-17 13:31:43 -07007096}
7097
Jesse Barnes79e53942008-11-07 14:24:08 -08007098static void intel_crtc_destroy(struct drm_crtc *crtc)
7099{
7100 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter67e77c52010-08-20 22:26:30 +02007101 struct drm_device *dev = crtc->dev;
7102 struct intel_unpin_work *work;
7103 unsigned long flags;
7104
7105 spin_lock_irqsave(&dev->event_lock, flags);
7106 work = intel_crtc->unpin_work;
7107 intel_crtc->unpin_work = NULL;
7108 spin_unlock_irqrestore(&dev->event_lock, flags);
7109
7110 if (work) {
7111 cancel_work_sync(&work->work);
7112 kfree(work);
7113 }
Jesse Barnes79e53942008-11-07 14:24:08 -08007114
Mika Kuoppala40ccc722013-04-23 17:27:08 +03007115 intel_crtc_cursor_set(crtc, NULL, 0, 0, 0);
7116
Jesse Barnes79e53942008-11-07 14:24:08 -08007117 drm_crtc_cleanup(crtc);
Daniel Vetter67e77c52010-08-20 22:26:30 +02007118
Jesse Barnes79e53942008-11-07 14:24:08 -08007119 kfree(intel_crtc);
7120}
7121
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007122static void intel_unpin_work_fn(struct work_struct *__work)
7123{
7124 struct intel_unpin_work *work =
7125 container_of(__work, struct intel_unpin_work, work);
Chris Wilsonb4a98e52012-11-01 09:26:26 +00007126 struct drm_device *dev = work->crtc->dev;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007127
Chris Wilsonb4a98e52012-11-01 09:26:26 +00007128 mutex_lock(&dev->struct_mutex);
Chris Wilson1690e1e2011-12-14 13:57:08 +01007129 intel_unpin_fb_obj(work->old_fb_obj);
Chris Wilson05394f32010-11-08 19:18:58 +00007130 drm_gem_object_unreference(&work->pending_flip_obj->base);
7131 drm_gem_object_unreference(&work->old_fb_obj->base);
Chris Wilsond9e86c02010-11-10 16:40:20 +00007132
Chris Wilsonb4a98e52012-11-01 09:26:26 +00007133 intel_update_fbc(dev);
7134 mutex_unlock(&dev->struct_mutex);
7135
7136 BUG_ON(atomic_read(&to_intel_crtc(work->crtc)->unpin_work_count) == 0);
7137 atomic_dec(&to_intel_crtc(work->crtc)->unpin_work_count);
7138
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007139 kfree(work);
7140}
7141
Jesse Barnes1afe3e92010-03-26 10:35:20 -07007142static void do_intel_finish_page_flip(struct drm_device *dev,
Mario Kleiner49b14a52010-12-09 07:00:07 +01007143 struct drm_crtc *crtc)
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007144{
7145 drm_i915_private_t *dev_priv = dev->dev_private;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007146 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
7147 struct intel_unpin_work *work;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007148 unsigned long flags;
7149
7150 /* Ignore early vblank irqs */
7151 if (intel_crtc == NULL)
7152 return;
7153
7154 spin_lock_irqsave(&dev->event_lock, flags);
7155 work = intel_crtc->unpin_work;
Chris Wilsone7d841c2012-12-03 11:36:30 +00007156
7157 /* Ensure we don't miss a work->pending update ... */
7158 smp_rmb();
7159
7160 if (work == NULL || atomic_read(&work->pending) < INTEL_FLIP_COMPLETE) {
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007161 spin_unlock_irqrestore(&dev->event_lock, flags);
7162 return;
7163 }
7164
Chris Wilsone7d841c2012-12-03 11:36:30 +00007165 /* and that the unpin work is consistent wrt ->pending. */
7166 smp_rmb();
7167
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007168 intel_crtc->unpin_work = NULL;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007169
Rob Clark45a066e2012-10-08 14:50:40 -05007170 if (work->event)
7171 drm_send_vblank_event(dev, intel_crtc->pipe, work->event);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007172
Mario Kleiner0af7e4d2010-12-08 04:07:19 +01007173 drm_vblank_put(dev, intel_crtc->pipe);
7174
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007175 spin_unlock_irqrestore(&dev->event_lock, flags);
7176
Daniel Vetter2c10d572012-12-20 21:24:07 +01007177 wake_up_all(&dev_priv->pending_flip_queue);
Chris Wilsonb4a98e52012-11-01 09:26:26 +00007178
7179 queue_work(dev_priv->wq, &work->work);
Jesse Barnese5510fa2010-07-01 16:48:37 -07007180
7181 trace_i915_flip_complete(intel_crtc->plane, work->pending_flip_obj);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007182}
7183
Jesse Barnes1afe3e92010-03-26 10:35:20 -07007184void intel_finish_page_flip(struct drm_device *dev, int pipe)
7185{
7186 drm_i915_private_t *dev_priv = dev->dev_private;
7187 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
7188
Mario Kleiner49b14a52010-12-09 07:00:07 +01007189 do_intel_finish_page_flip(dev, crtc);
Jesse Barnes1afe3e92010-03-26 10:35:20 -07007190}
7191
7192void intel_finish_page_flip_plane(struct drm_device *dev, int plane)
7193{
7194 drm_i915_private_t *dev_priv = dev->dev_private;
7195 struct drm_crtc *crtc = dev_priv->plane_to_crtc_mapping[plane];
7196
Mario Kleiner49b14a52010-12-09 07:00:07 +01007197 do_intel_finish_page_flip(dev, crtc);
Jesse Barnes1afe3e92010-03-26 10:35:20 -07007198}
7199
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007200void intel_prepare_page_flip(struct drm_device *dev, int plane)
7201{
7202 drm_i915_private_t *dev_priv = dev->dev_private;
7203 struct intel_crtc *intel_crtc =
7204 to_intel_crtc(dev_priv->plane_to_crtc_mapping[plane]);
7205 unsigned long flags;
7206
Chris Wilsone7d841c2012-12-03 11:36:30 +00007207 /* NB: An MMIO update of the plane base pointer will also
7208 * generate a page-flip completion irq, i.e. every modeset
7209 * is also accompanied by a spurious intel_prepare_page_flip().
7210 */
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007211 spin_lock_irqsave(&dev->event_lock, flags);
Chris Wilsone7d841c2012-12-03 11:36:30 +00007212 if (intel_crtc->unpin_work)
7213 atomic_inc_not_zero(&intel_crtc->unpin_work->pending);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007214 spin_unlock_irqrestore(&dev->event_lock, flags);
7215}
7216
Chris Wilsone7d841c2012-12-03 11:36:30 +00007217inline static void intel_mark_page_flip_active(struct intel_crtc *intel_crtc)
7218{
7219 /* Ensure that the work item is consistent when activating it ... */
7220 smp_wmb();
7221 atomic_set(&intel_crtc->unpin_work->pending, INTEL_FLIP_PENDING);
7222 /* and that it is marked active as soon as the irq could fire. */
7223 smp_wmb();
7224}
7225
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07007226static int intel_gen2_queue_flip(struct drm_device *dev,
7227 struct drm_crtc *crtc,
7228 struct drm_framebuffer *fb,
7229 struct drm_i915_gem_object *obj)
7230{
7231 struct drm_i915_private *dev_priv = dev->dev_private;
7232 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07007233 u32 flip_mask;
Daniel Vetter6d90c952012-04-26 23:28:05 +02007234 struct intel_ring_buffer *ring = &dev_priv->ring[RCS];
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07007235 int ret;
7236
Daniel Vetter6d90c952012-04-26 23:28:05 +02007237 ret = intel_pin_and_fence_fb_obj(dev, obj, ring);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07007238 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01007239 goto err;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07007240
Daniel Vetter6d90c952012-04-26 23:28:05 +02007241 ret = intel_ring_begin(ring, 6);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07007242 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01007243 goto err_unpin;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07007244
7245 /* Can't queue multiple flips, so wait for the previous
7246 * one to finish before executing the next.
7247 */
7248 if (intel_crtc->plane)
7249 flip_mask = MI_WAIT_FOR_PLANE_B_FLIP;
7250 else
7251 flip_mask = MI_WAIT_FOR_PLANE_A_FLIP;
Daniel Vetter6d90c952012-04-26 23:28:05 +02007252 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | flip_mask);
7253 intel_ring_emit(ring, MI_NOOP);
7254 intel_ring_emit(ring, MI_DISPLAY_FLIP |
7255 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
7256 intel_ring_emit(ring, fb->pitches[0]);
Daniel Vettere506a0c2012-07-05 12:17:29 +02007257 intel_ring_emit(ring, obj->gtt_offset + intel_crtc->dspaddr_offset);
Daniel Vetter6d90c952012-04-26 23:28:05 +02007258 intel_ring_emit(ring, 0); /* aux display base address, unused */
Chris Wilsone7d841c2012-12-03 11:36:30 +00007259
7260 intel_mark_page_flip_active(intel_crtc);
Daniel Vetter6d90c952012-04-26 23:28:05 +02007261 intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01007262 return 0;
7263
7264err_unpin:
7265 intel_unpin_fb_obj(obj);
7266err:
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07007267 return ret;
7268}
7269
7270static int intel_gen3_queue_flip(struct drm_device *dev,
7271 struct drm_crtc *crtc,
7272 struct drm_framebuffer *fb,
7273 struct drm_i915_gem_object *obj)
7274{
7275 struct drm_i915_private *dev_priv = dev->dev_private;
7276 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07007277 u32 flip_mask;
Daniel Vetter6d90c952012-04-26 23:28:05 +02007278 struct intel_ring_buffer *ring = &dev_priv->ring[RCS];
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07007279 int ret;
7280
Daniel Vetter6d90c952012-04-26 23:28:05 +02007281 ret = intel_pin_and_fence_fb_obj(dev, obj, ring);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07007282 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01007283 goto err;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07007284
Daniel Vetter6d90c952012-04-26 23:28:05 +02007285 ret = intel_ring_begin(ring, 6);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07007286 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01007287 goto err_unpin;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07007288
7289 if (intel_crtc->plane)
7290 flip_mask = MI_WAIT_FOR_PLANE_B_FLIP;
7291 else
7292 flip_mask = MI_WAIT_FOR_PLANE_A_FLIP;
Daniel Vetter6d90c952012-04-26 23:28:05 +02007293 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | flip_mask);
7294 intel_ring_emit(ring, MI_NOOP);
7295 intel_ring_emit(ring, MI_DISPLAY_FLIP_I915 |
7296 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
7297 intel_ring_emit(ring, fb->pitches[0]);
Daniel Vettere506a0c2012-07-05 12:17:29 +02007298 intel_ring_emit(ring, obj->gtt_offset + intel_crtc->dspaddr_offset);
Daniel Vetter6d90c952012-04-26 23:28:05 +02007299 intel_ring_emit(ring, MI_NOOP);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07007300
Chris Wilsone7d841c2012-12-03 11:36:30 +00007301 intel_mark_page_flip_active(intel_crtc);
Daniel Vetter6d90c952012-04-26 23:28:05 +02007302 intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01007303 return 0;
7304
7305err_unpin:
7306 intel_unpin_fb_obj(obj);
7307err:
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07007308 return ret;
7309}
7310
7311static int intel_gen4_queue_flip(struct drm_device *dev,
7312 struct drm_crtc *crtc,
7313 struct drm_framebuffer *fb,
7314 struct drm_i915_gem_object *obj)
7315{
7316 struct drm_i915_private *dev_priv = dev->dev_private;
7317 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
7318 uint32_t pf, pipesrc;
Daniel Vetter6d90c952012-04-26 23:28:05 +02007319 struct intel_ring_buffer *ring = &dev_priv->ring[RCS];
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07007320 int ret;
7321
Daniel Vetter6d90c952012-04-26 23:28:05 +02007322 ret = intel_pin_and_fence_fb_obj(dev, obj, ring);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07007323 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01007324 goto err;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07007325
Daniel Vetter6d90c952012-04-26 23:28:05 +02007326 ret = intel_ring_begin(ring, 4);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07007327 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01007328 goto err_unpin;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07007329
7330 /* i965+ uses the linear or tiled offsets from the
7331 * Display Registers (which do not change across a page-flip)
7332 * so we need only reprogram the base address.
7333 */
Daniel Vetter6d90c952012-04-26 23:28:05 +02007334 intel_ring_emit(ring, MI_DISPLAY_FLIP |
7335 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
7336 intel_ring_emit(ring, fb->pitches[0]);
Daniel Vetterc2c75132012-07-05 12:17:30 +02007337 intel_ring_emit(ring,
7338 (obj->gtt_offset + intel_crtc->dspaddr_offset) |
7339 obj->tiling_mode);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07007340
7341 /* XXX Enabling the panel-fitter across page-flip is so far
7342 * untested on non-native modes, so ignore it for now.
7343 * pf = I915_READ(pipe == 0 ? PFA_CTL_1 : PFB_CTL_1) & PF_ENABLE;
7344 */
7345 pf = 0;
7346 pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff;
Daniel Vetter6d90c952012-04-26 23:28:05 +02007347 intel_ring_emit(ring, pf | pipesrc);
Chris Wilsone7d841c2012-12-03 11:36:30 +00007348
7349 intel_mark_page_flip_active(intel_crtc);
Daniel Vetter6d90c952012-04-26 23:28:05 +02007350 intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01007351 return 0;
7352
7353err_unpin:
7354 intel_unpin_fb_obj(obj);
7355err:
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07007356 return ret;
7357}
7358
7359static int intel_gen6_queue_flip(struct drm_device *dev,
7360 struct drm_crtc *crtc,
7361 struct drm_framebuffer *fb,
7362 struct drm_i915_gem_object *obj)
7363{
7364 struct drm_i915_private *dev_priv = dev->dev_private;
7365 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter6d90c952012-04-26 23:28:05 +02007366 struct intel_ring_buffer *ring = &dev_priv->ring[RCS];
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07007367 uint32_t pf, pipesrc;
7368 int ret;
7369
Daniel Vetter6d90c952012-04-26 23:28:05 +02007370 ret = intel_pin_and_fence_fb_obj(dev, obj, ring);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07007371 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01007372 goto err;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07007373
Daniel Vetter6d90c952012-04-26 23:28:05 +02007374 ret = intel_ring_begin(ring, 4);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07007375 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01007376 goto err_unpin;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07007377
Daniel Vetter6d90c952012-04-26 23:28:05 +02007378 intel_ring_emit(ring, MI_DISPLAY_FLIP |
7379 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
7380 intel_ring_emit(ring, fb->pitches[0] | obj->tiling_mode);
Daniel Vetterc2c75132012-07-05 12:17:30 +02007381 intel_ring_emit(ring, obj->gtt_offset + intel_crtc->dspaddr_offset);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07007382
Chris Wilson99d9acd2012-04-17 20:37:00 +01007383 /* Contrary to the suggestions in the documentation,
7384 * "Enable Panel Fitter" does not seem to be required when page
7385 * flipping with a non-native mode, and worse causes a normal
7386 * modeset to fail.
7387 * pf = I915_READ(PF_CTL(intel_crtc->pipe)) & PF_ENABLE;
7388 */
7389 pf = 0;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07007390 pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff;
Daniel Vetter6d90c952012-04-26 23:28:05 +02007391 intel_ring_emit(ring, pf | pipesrc);
Chris Wilsone7d841c2012-12-03 11:36:30 +00007392
7393 intel_mark_page_flip_active(intel_crtc);
Daniel Vetter6d90c952012-04-26 23:28:05 +02007394 intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01007395 return 0;
7396
7397err_unpin:
7398 intel_unpin_fb_obj(obj);
7399err:
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07007400 return ret;
7401}
7402
Jesse Barnes7c9017e2011-06-16 12:18:54 -07007403/*
7404 * On gen7 we currently use the blit ring because (in early silicon at least)
7405 * the render ring doesn't give us interrpts for page flip completion, which
7406 * means clients will hang after the first flip is queued. Fortunately the
7407 * blit ring generates interrupts properly, so use it instead.
7408 */
7409static int intel_gen7_queue_flip(struct drm_device *dev,
7410 struct drm_crtc *crtc,
7411 struct drm_framebuffer *fb,
7412 struct drm_i915_gem_object *obj)
7413{
7414 struct drm_i915_private *dev_priv = dev->dev_private;
7415 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
7416 struct intel_ring_buffer *ring = &dev_priv->ring[BCS];
Daniel Vettercb05d8d2012-05-23 14:02:00 +02007417 uint32_t plane_bit = 0;
Jesse Barnes7c9017e2011-06-16 12:18:54 -07007418 int ret;
7419
7420 ret = intel_pin_and_fence_fb_obj(dev, obj, ring);
7421 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01007422 goto err;
Jesse Barnes7c9017e2011-06-16 12:18:54 -07007423
Daniel Vettercb05d8d2012-05-23 14:02:00 +02007424 switch(intel_crtc->plane) {
7425 case PLANE_A:
7426 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_A;
7427 break;
7428 case PLANE_B:
7429 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_B;
7430 break;
7431 case PLANE_C:
7432 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_C;
7433 break;
7434 default:
7435 WARN_ONCE(1, "unknown plane in flip command\n");
7436 ret = -ENODEV;
Eugeni Dodonovab3951e2012-06-18 19:03:38 -03007437 goto err_unpin;
Daniel Vettercb05d8d2012-05-23 14:02:00 +02007438 }
7439
Jesse Barnes7c9017e2011-06-16 12:18:54 -07007440 ret = intel_ring_begin(ring, 4);
7441 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01007442 goto err_unpin;
Jesse Barnes7c9017e2011-06-16 12:18:54 -07007443
Daniel Vettercb05d8d2012-05-23 14:02:00 +02007444 intel_ring_emit(ring, MI_DISPLAY_FLIP_I915 | plane_bit);
Ville Syrjälä01f2c772011-12-20 00:06:49 +02007445 intel_ring_emit(ring, (fb->pitches[0] | obj->tiling_mode));
Daniel Vetterc2c75132012-07-05 12:17:30 +02007446 intel_ring_emit(ring, obj->gtt_offset + intel_crtc->dspaddr_offset);
Jesse Barnes7c9017e2011-06-16 12:18:54 -07007447 intel_ring_emit(ring, (MI_NOOP));
Chris Wilsone7d841c2012-12-03 11:36:30 +00007448
7449 intel_mark_page_flip_active(intel_crtc);
Jesse Barnes7c9017e2011-06-16 12:18:54 -07007450 intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01007451 return 0;
7452
7453err_unpin:
7454 intel_unpin_fb_obj(obj);
7455err:
Jesse Barnes7c9017e2011-06-16 12:18:54 -07007456 return ret;
7457}
7458
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07007459static int intel_default_queue_flip(struct drm_device *dev,
7460 struct drm_crtc *crtc,
7461 struct drm_framebuffer *fb,
7462 struct drm_i915_gem_object *obj)
7463{
7464 return -ENODEV;
7465}
7466
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007467static int intel_crtc_page_flip(struct drm_crtc *crtc,
7468 struct drm_framebuffer *fb,
7469 struct drm_pending_vblank_event *event)
7470{
7471 struct drm_device *dev = crtc->dev;
7472 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä4a35f832013-02-22 16:53:38 +02007473 struct drm_framebuffer *old_fb = crtc->fb;
7474 struct drm_i915_gem_object *obj = to_intel_framebuffer(fb)->obj;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007475 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
7476 struct intel_unpin_work *work;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07007477 unsigned long flags;
Chris Wilson52e68632010-08-08 10:15:59 +01007478 int ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007479
Ville Syrjäläe6a595d2012-05-24 21:08:59 +03007480 /* Can't change pixel format via MI display flips. */
7481 if (fb->pixel_format != crtc->fb->pixel_format)
7482 return -EINVAL;
7483
7484 /*
7485 * TILEOFF/LINOFF registers can't be changed via MI display flips.
7486 * Note that pitch changes could also affect these register.
7487 */
7488 if (INTEL_INFO(dev)->gen > 3 &&
7489 (fb->offsets[0] != crtc->fb->offsets[0] ||
7490 fb->pitches[0] != crtc->fb->pitches[0]))
7491 return -EINVAL;
7492
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007493 work = kzalloc(sizeof *work, GFP_KERNEL);
7494 if (work == NULL)
7495 return -ENOMEM;
7496
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007497 work->event = event;
Chris Wilsonb4a98e52012-11-01 09:26:26 +00007498 work->crtc = crtc;
Ville Syrjälä4a35f832013-02-22 16:53:38 +02007499 work->old_fb_obj = to_intel_framebuffer(old_fb)->obj;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007500 INIT_WORK(&work->work, intel_unpin_work_fn);
7501
Jesse Barnes7317c75e62011-08-29 09:45:28 -07007502 ret = drm_vblank_get(dev, intel_crtc->pipe);
7503 if (ret)
7504 goto free_work;
7505
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007506 /* We borrow the event spin lock for protecting unpin_work */
7507 spin_lock_irqsave(&dev->event_lock, flags);
7508 if (intel_crtc->unpin_work) {
7509 spin_unlock_irqrestore(&dev->event_lock, flags);
7510 kfree(work);
Jesse Barnes7317c75e62011-08-29 09:45:28 -07007511 drm_vblank_put(dev, intel_crtc->pipe);
Chris Wilson468f0b42010-05-27 13:18:13 +01007512
7513 DRM_DEBUG_DRIVER("flip queue: crtc already busy\n");
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007514 return -EBUSY;
7515 }
7516 intel_crtc->unpin_work = work;
7517 spin_unlock_irqrestore(&dev->event_lock, flags);
7518
Chris Wilsonb4a98e52012-11-01 09:26:26 +00007519 if (atomic_read(&intel_crtc->unpin_work_count) >= 2)
7520 flush_workqueue(dev_priv->wq);
7521
Chris Wilson79158102012-05-23 11:13:58 +01007522 ret = i915_mutex_lock_interruptible(dev);
7523 if (ret)
7524 goto cleanup;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007525
Jesse Barnes75dfca82010-02-10 15:09:44 -08007526 /* Reference the objects for the scheduled work. */
Chris Wilson05394f32010-11-08 19:18:58 +00007527 drm_gem_object_reference(&work->old_fb_obj->base);
7528 drm_gem_object_reference(&obj->base);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007529
7530 crtc->fb = fb;
Chris Wilson96b099f2010-06-07 14:03:04 +01007531
Chris Wilsone1f99ce2010-10-27 12:45:26 +01007532 work->pending_flip_obj = obj;
Chris Wilsone1f99ce2010-10-27 12:45:26 +01007533
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01007534 work->enable_stall_check = true;
7535
Chris Wilsonb4a98e52012-11-01 09:26:26 +00007536 atomic_inc(&intel_crtc->unpin_work_count);
Ville Syrjälä10d83732013-01-29 18:13:34 +02007537 intel_crtc->reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
Chris Wilsone1f99ce2010-10-27 12:45:26 +01007538
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07007539 ret = dev_priv->display.queue_flip(dev, crtc, fb, obj);
7540 if (ret)
7541 goto cleanup_pending;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007542
Chris Wilson7782de32011-07-08 12:22:41 +01007543 intel_disable_fbc(dev);
Chris Wilsonf047e392012-07-21 12:31:41 +01007544 intel_mark_fb_busy(obj);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007545 mutex_unlock(&dev->struct_mutex);
7546
Jesse Barnese5510fa2010-07-01 16:48:37 -07007547 trace_i915_flip_request(intel_crtc->plane, obj);
7548
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007549 return 0;
Chris Wilson96b099f2010-06-07 14:03:04 +01007550
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07007551cleanup_pending:
Chris Wilsonb4a98e52012-11-01 09:26:26 +00007552 atomic_dec(&intel_crtc->unpin_work_count);
Ville Syrjälä4a35f832013-02-22 16:53:38 +02007553 crtc->fb = old_fb;
Chris Wilson05394f32010-11-08 19:18:58 +00007554 drm_gem_object_unreference(&work->old_fb_obj->base);
7555 drm_gem_object_unreference(&obj->base);
Chris Wilson96b099f2010-06-07 14:03:04 +01007556 mutex_unlock(&dev->struct_mutex);
7557
Chris Wilson79158102012-05-23 11:13:58 +01007558cleanup:
Chris Wilson96b099f2010-06-07 14:03:04 +01007559 spin_lock_irqsave(&dev->event_lock, flags);
7560 intel_crtc->unpin_work = NULL;
7561 spin_unlock_irqrestore(&dev->event_lock, flags);
7562
Jesse Barnes7317c75e62011-08-29 09:45:28 -07007563 drm_vblank_put(dev, intel_crtc->pipe);
7564free_work:
Chris Wilson96b099f2010-06-07 14:03:04 +01007565 kfree(work);
7566
7567 return ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007568}
7569
Chris Wilsonf6e5b162011-04-12 18:06:51 +01007570static struct drm_crtc_helper_funcs intel_helper_funcs = {
Chris Wilsonf6e5b162011-04-12 18:06:51 +01007571 .mode_set_base_atomic = intel_pipe_set_base_atomic,
7572 .load_lut = intel_crtc_load_lut,
Chris Wilsonf6e5b162011-04-12 18:06:51 +01007573};
7574
Daniel Vetter6ed0f792012-07-08 19:41:43 +02007575bool intel_encoder_check_is_cloned(struct intel_encoder *encoder)
7576{
7577 struct intel_encoder *other_encoder;
7578 struct drm_crtc *crtc = &encoder->new_crtc->base;
7579
7580 if (WARN_ON(!crtc))
7581 return false;
7582
7583 list_for_each_entry(other_encoder,
7584 &crtc->dev->mode_config.encoder_list,
7585 base.head) {
7586
7587 if (&other_encoder->new_crtc->base != crtc ||
7588 encoder == other_encoder)
7589 continue;
7590 else
7591 return true;
7592 }
7593
7594 return false;
7595}
7596
Daniel Vetter50f56112012-07-02 09:35:43 +02007597static bool intel_encoder_crtc_ok(struct drm_encoder *encoder,
7598 struct drm_crtc *crtc)
7599{
7600 struct drm_device *dev;
7601 struct drm_crtc *tmp;
7602 int crtc_mask = 1;
7603
7604 WARN(!crtc, "checking null crtc?\n");
7605
7606 dev = crtc->dev;
7607
7608 list_for_each_entry(tmp, &dev->mode_config.crtc_list, head) {
7609 if (tmp == crtc)
7610 break;
7611 crtc_mask <<= 1;
7612 }
7613
7614 if (encoder->possible_crtcs & crtc_mask)
7615 return true;
7616 return false;
7617}
7618
Daniel Vetter9a935852012-07-05 22:34:27 +02007619/**
7620 * intel_modeset_update_staged_output_state
7621 *
7622 * Updates the staged output configuration state, e.g. after we've read out the
7623 * current hw state.
7624 */
7625static void intel_modeset_update_staged_output_state(struct drm_device *dev)
7626{
7627 struct intel_encoder *encoder;
7628 struct intel_connector *connector;
7629
7630 list_for_each_entry(connector, &dev->mode_config.connector_list,
7631 base.head) {
7632 connector->new_encoder =
7633 to_intel_encoder(connector->base.encoder);
7634 }
7635
7636 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
7637 base.head) {
7638 encoder->new_crtc =
7639 to_intel_crtc(encoder->base.crtc);
7640 }
7641}
7642
7643/**
7644 * intel_modeset_commit_output_state
7645 *
7646 * This function copies the stage display pipe configuration to the real one.
7647 */
7648static void intel_modeset_commit_output_state(struct drm_device *dev)
7649{
7650 struct intel_encoder *encoder;
7651 struct intel_connector *connector;
7652
7653 list_for_each_entry(connector, &dev->mode_config.connector_list,
7654 base.head) {
7655 connector->base.encoder = &connector->new_encoder->base;
7656 }
7657
7658 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
7659 base.head) {
7660 encoder->base.crtc = &encoder->new_crtc->base;
7661 }
7662}
7663
Daniel Vetter050f7ae2013-06-02 13:26:23 +02007664static void
7665connected_sink_compute_bpp(struct intel_connector * connector,
7666 struct intel_crtc_config *pipe_config)
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01007667{
Daniel Vetter050f7ae2013-06-02 13:26:23 +02007668 int bpp = pipe_config->pipe_bpp;
7669
7670 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] checking for sink bpp constrains\n",
7671 connector->base.base.id,
7672 drm_get_connector_name(&connector->base));
7673
7674 /* Don't use an invalid EDID bpc value */
7675 if (connector->base.display_info.bpc &&
7676 connector->base.display_info.bpc * 3 < bpp) {
7677 DRM_DEBUG_KMS("clamping display bpp (was %d) to EDID reported max of %d\n",
7678 bpp, connector->base.display_info.bpc*3);
7679 pipe_config->pipe_bpp = connector->base.display_info.bpc*3;
7680 }
7681
7682 /* Clamp bpp to 8 on screens without EDID 1.4 */
7683 if (connector->base.display_info.bpc == 0 && bpp > 24) {
7684 DRM_DEBUG_KMS("clamping display bpp (was %d) to default limit of 24\n",
7685 bpp);
7686 pipe_config->pipe_bpp = 24;
7687 }
7688}
7689
7690static int
7691compute_baseline_pipe_bpp(struct intel_crtc *crtc,
7692 struct drm_framebuffer *fb,
7693 struct intel_crtc_config *pipe_config)
7694{
7695 struct drm_device *dev = crtc->base.dev;
7696 struct intel_connector *connector;
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01007697 int bpp;
7698
Daniel Vetterd42264b2013-03-28 16:38:08 +01007699 switch (fb->pixel_format) {
7700 case DRM_FORMAT_C8:
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01007701 bpp = 8*3; /* since we go through a colormap */
7702 break;
Daniel Vetterd42264b2013-03-28 16:38:08 +01007703 case DRM_FORMAT_XRGB1555:
7704 case DRM_FORMAT_ARGB1555:
7705 /* checked in intel_framebuffer_init already */
7706 if (WARN_ON(INTEL_INFO(dev)->gen > 3))
7707 return -EINVAL;
7708 case DRM_FORMAT_RGB565:
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01007709 bpp = 6*3; /* min is 18bpp */
7710 break;
Daniel Vetterd42264b2013-03-28 16:38:08 +01007711 case DRM_FORMAT_XBGR8888:
7712 case DRM_FORMAT_ABGR8888:
7713 /* checked in intel_framebuffer_init already */
7714 if (WARN_ON(INTEL_INFO(dev)->gen < 4))
7715 return -EINVAL;
7716 case DRM_FORMAT_XRGB8888:
7717 case DRM_FORMAT_ARGB8888:
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01007718 bpp = 8*3;
7719 break;
Daniel Vetterd42264b2013-03-28 16:38:08 +01007720 case DRM_FORMAT_XRGB2101010:
7721 case DRM_FORMAT_ARGB2101010:
7722 case DRM_FORMAT_XBGR2101010:
7723 case DRM_FORMAT_ABGR2101010:
7724 /* checked in intel_framebuffer_init already */
7725 if (WARN_ON(INTEL_INFO(dev)->gen < 4))
Daniel Vetterbaba1332013-03-27 00:45:00 +01007726 return -EINVAL;
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01007727 bpp = 10*3;
7728 break;
Daniel Vetterbaba1332013-03-27 00:45:00 +01007729 /* TODO: gen4+ supports 16 bpc floating point, too. */
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01007730 default:
7731 DRM_DEBUG_KMS("unsupported depth\n");
7732 return -EINVAL;
7733 }
7734
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01007735 pipe_config->pipe_bpp = bpp;
7736
7737 /* Clamp display bpp to EDID value */
7738 list_for_each_entry(connector, &dev->mode_config.connector_list,
Daniel Vetter050f7ae2013-06-02 13:26:23 +02007739 base.head) {
Daniel Vetter1b829e02013-06-02 13:26:24 +02007740 if (!connector->new_encoder ||
7741 connector->new_encoder->new_crtc != crtc)
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01007742 continue;
7743
Daniel Vetter050f7ae2013-06-02 13:26:23 +02007744 connected_sink_compute_bpp(connector, pipe_config);
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01007745 }
7746
7747 return bpp;
7748}
7749
Daniel Vetterc0b03412013-05-28 12:05:54 +02007750static void intel_dump_pipe_config(struct intel_crtc *crtc,
7751 struct intel_crtc_config *pipe_config,
7752 const char *context)
7753{
7754 DRM_DEBUG_KMS("[CRTC:%d]%s config for pipe %c\n", crtc->base.base.id,
7755 context, pipe_name(crtc->pipe));
7756
7757 DRM_DEBUG_KMS("cpu_transcoder: %c\n", transcoder_name(pipe_config->cpu_transcoder));
7758 DRM_DEBUG_KMS("pipe bpp: %i, dithering: %i\n",
7759 pipe_config->pipe_bpp, pipe_config->dither);
7760 DRM_DEBUG_KMS("fdi/pch: %i, lanes: %i, gmch_m: %u, gmch_n: %u, link_m: %u, link_n: %u, tu: %u\n",
7761 pipe_config->has_pch_encoder,
7762 pipe_config->fdi_lanes,
7763 pipe_config->fdi_m_n.gmch_m, pipe_config->fdi_m_n.gmch_n,
7764 pipe_config->fdi_m_n.link_m, pipe_config->fdi_m_n.link_n,
7765 pipe_config->fdi_m_n.tu);
7766 DRM_DEBUG_KMS("requested mode:\n");
7767 drm_mode_debug_printmodeline(&pipe_config->requested_mode);
7768 DRM_DEBUG_KMS("adjusted mode:\n");
7769 drm_mode_debug_printmodeline(&pipe_config->adjusted_mode);
7770 DRM_DEBUG_KMS("gmch pfit: control: 0x%08x, ratios: 0x%08x, lvds border: 0x%08x\n",
7771 pipe_config->gmch_pfit.control,
7772 pipe_config->gmch_pfit.pgm_ratios,
7773 pipe_config->gmch_pfit.lvds_border_bits);
7774 DRM_DEBUG_KMS("pch pfit: pos: 0x%08x, size: 0x%08x\n",
7775 pipe_config->pch_pfit.pos,
7776 pipe_config->pch_pfit.size);
Paulo Zanoni42db64e2013-05-31 16:33:22 -03007777 DRM_DEBUG_KMS("ips: %i\n", pipe_config->ips_enabled);
Daniel Vetterc0b03412013-05-28 12:05:54 +02007778}
7779
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01007780static struct intel_crtc_config *
7781intel_modeset_pipe_config(struct drm_crtc *crtc,
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01007782 struct drm_framebuffer *fb,
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01007783 struct drm_display_mode *mode)
Daniel Vetter7758a112012-07-08 19:40:39 +02007784{
7785 struct drm_device *dev = crtc->dev;
Daniel Vetter7758a112012-07-08 19:40:39 +02007786 struct drm_encoder_helper_funcs *encoder_funcs;
7787 struct intel_encoder *encoder;
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01007788 struct intel_crtc_config *pipe_config;
Daniel Vettere29c22c2013-02-21 00:00:16 +01007789 int plane_bpp, ret = -EINVAL;
7790 bool retry = true;
Daniel Vetter7758a112012-07-08 19:40:39 +02007791
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01007792 pipe_config = kzalloc(sizeof(*pipe_config), GFP_KERNEL);
7793 if (!pipe_config)
Daniel Vetter7758a112012-07-08 19:40:39 +02007794 return ERR_PTR(-ENOMEM);
7795
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01007796 drm_mode_copy(&pipe_config->adjusted_mode, mode);
7797 drm_mode_copy(&pipe_config->requested_mode, mode);
Daniel Vettereccb1402013-05-22 00:50:22 +02007798 pipe_config->cpu_transcoder = to_intel_crtc(crtc)->pipe;
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01007799
Daniel Vetter050f7ae2013-06-02 13:26:23 +02007800 /* Compute a starting value for pipe_config->pipe_bpp taking the source
7801 * plane pixel format and any sink constraints into account. Returns the
7802 * source plane bpp so that dithering can be selected on mismatches
7803 * after encoders and crtc also have had their say. */
7804 plane_bpp = compute_baseline_pipe_bpp(to_intel_crtc(crtc),
7805 fb, pipe_config);
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01007806 if (plane_bpp < 0)
7807 goto fail;
7808
Daniel Vettere29c22c2013-02-21 00:00:16 +01007809encoder_retry:
Daniel Vetter7758a112012-07-08 19:40:39 +02007810 /* Pass our mode to the connectors and the CRTC to give them a chance to
7811 * adjust it according to limitations or connector properties, and also
7812 * a chance to reject the mode entirely.
7813 */
7814 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
7815 base.head) {
7816
7817 if (&encoder->new_crtc->base != crtc)
7818 continue;
Daniel Vetter7ae89232013-03-27 00:44:52 +01007819
7820 if (encoder->compute_config) {
7821 if (!(encoder->compute_config(encoder, pipe_config))) {
7822 DRM_DEBUG_KMS("Encoder config failure\n");
7823 goto fail;
7824 }
7825
7826 continue;
7827 }
7828
Daniel Vetter7758a112012-07-08 19:40:39 +02007829 encoder_funcs = encoder->base.helper_private;
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01007830 if (!(encoder_funcs->mode_fixup(&encoder->base,
7831 &pipe_config->requested_mode,
7832 &pipe_config->adjusted_mode))) {
Daniel Vetter7758a112012-07-08 19:40:39 +02007833 DRM_DEBUG_KMS("Encoder fixup failed\n");
7834 goto fail;
7835 }
7836 }
7837
Daniel Vettere29c22c2013-02-21 00:00:16 +01007838 ret = intel_crtc_compute_config(crtc, pipe_config);
7839 if (ret < 0) {
Daniel Vetter7758a112012-07-08 19:40:39 +02007840 DRM_DEBUG_KMS("CRTC fixup failed\n");
7841 goto fail;
7842 }
Daniel Vettere29c22c2013-02-21 00:00:16 +01007843
7844 if (ret == RETRY) {
7845 if (WARN(!retry, "loop in pipe configuration computation\n")) {
7846 ret = -EINVAL;
7847 goto fail;
7848 }
7849
7850 DRM_DEBUG_KMS("CRTC bw constrained, retrying\n");
7851 retry = false;
7852 goto encoder_retry;
7853 }
7854
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01007855 pipe_config->dither = pipe_config->pipe_bpp != plane_bpp;
7856 DRM_DEBUG_KMS("plane bpp: %i, pipe bpp: %i, dithering: %i\n",
7857 plane_bpp, pipe_config->pipe_bpp, pipe_config->dither);
7858
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01007859 return pipe_config;
Daniel Vetter7758a112012-07-08 19:40:39 +02007860fail:
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01007861 kfree(pipe_config);
Daniel Vettere29c22c2013-02-21 00:00:16 +01007862 return ERR_PTR(ret);
Daniel Vetter7758a112012-07-08 19:40:39 +02007863}
7864
Daniel Vettere2e1ed42012-07-08 21:14:38 +02007865/* Computes which crtcs are affected and sets the relevant bits in the mask. For
7866 * simplicity we use the crtc's pipe number (because it's easier to obtain). */
7867static void
7868intel_modeset_affected_pipes(struct drm_crtc *crtc, unsigned *modeset_pipes,
7869 unsigned *prepare_pipes, unsigned *disable_pipes)
7870{
7871 struct intel_crtc *intel_crtc;
7872 struct drm_device *dev = crtc->dev;
7873 struct intel_encoder *encoder;
7874 struct intel_connector *connector;
7875 struct drm_crtc *tmp_crtc;
7876
7877 *disable_pipes = *modeset_pipes = *prepare_pipes = 0;
7878
7879 /* Check which crtcs have changed outputs connected to them, these need
7880 * to be part of the prepare_pipes mask. We don't (yet) support global
7881 * modeset across multiple crtcs, so modeset_pipes will only have one
7882 * bit set at most. */
7883 list_for_each_entry(connector, &dev->mode_config.connector_list,
7884 base.head) {
7885 if (connector->base.encoder == &connector->new_encoder->base)
7886 continue;
7887
7888 if (connector->base.encoder) {
7889 tmp_crtc = connector->base.encoder->crtc;
7890
7891 *prepare_pipes |= 1 << to_intel_crtc(tmp_crtc)->pipe;
7892 }
7893
7894 if (connector->new_encoder)
7895 *prepare_pipes |=
7896 1 << connector->new_encoder->new_crtc->pipe;
7897 }
7898
7899 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
7900 base.head) {
7901 if (encoder->base.crtc == &encoder->new_crtc->base)
7902 continue;
7903
7904 if (encoder->base.crtc) {
7905 tmp_crtc = encoder->base.crtc;
7906
7907 *prepare_pipes |= 1 << to_intel_crtc(tmp_crtc)->pipe;
7908 }
7909
7910 if (encoder->new_crtc)
7911 *prepare_pipes |= 1 << encoder->new_crtc->pipe;
7912 }
7913
7914 /* Check for any pipes that will be fully disabled ... */
7915 list_for_each_entry(intel_crtc, &dev->mode_config.crtc_list,
7916 base.head) {
7917 bool used = false;
7918
7919 /* Don't try to disable disabled crtcs. */
7920 if (!intel_crtc->base.enabled)
7921 continue;
7922
7923 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
7924 base.head) {
7925 if (encoder->new_crtc == intel_crtc)
7926 used = true;
7927 }
7928
7929 if (!used)
7930 *disable_pipes |= 1 << intel_crtc->pipe;
7931 }
7932
7933
7934 /* set_mode is also used to update properties on life display pipes. */
7935 intel_crtc = to_intel_crtc(crtc);
7936 if (crtc->enabled)
7937 *prepare_pipes |= 1 << intel_crtc->pipe;
7938
Daniel Vetterb6c51642013-04-12 18:48:43 +02007939 /*
7940 * For simplicity do a full modeset on any pipe where the output routing
7941 * changed. We could be more clever, but that would require us to be
7942 * more careful with calling the relevant encoder->mode_set functions.
7943 */
Daniel Vettere2e1ed42012-07-08 21:14:38 +02007944 if (*prepare_pipes)
7945 *modeset_pipes = *prepare_pipes;
7946
7947 /* ... and mask these out. */
7948 *modeset_pipes &= ~(*disable_pipes);
7949 *prepare_pipes &= ~(*disable_pipes);
Daniel Vetterb6c51642013-04-12 18:48:43 +02007950
7951 /*
7952 * HACK: We don't (yet) fully support global modesets. intel_set_config
7953 * obies this rule, but the modeset restore mode of
7954 * intel_modeset_setup_hw_state does not.
7955 */
7956 *modeset_pipes &= 1 << intel_crtc->pipe;
7957 *prepare_pipes &= 1 << intel_crtc->pipe;
Daniel Vettere3641d32013-04-11 19:49:07 +02007958
7959 DRM_DEBUG_KMS("set mode pipe masks: modeset: %x, prepare: %x, disable: %x\n",
7960 *modeset_pipes, *prepare_pipes, *disable_pipes);
Daniel Vettere2e1ed42012-07-08 21:14:38 +02007961}
7962
Daniel Vetterea9d7582012-07-10 10:42:52 +02007963static bool intel_crtc_in_use(struct drm_crtc *crtc)
7964{
7965 struct drm_encoder *encoder;
7966 struct drm_device *dev = crtc->dev;
7967
7968 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head)
7969 if (encoder->crtc == crtc)
7970 return true;
7971
7972 return false;
7973}
7974
7975static void
7976intel_modeset_update_state(struct drm_device *dev, unsigned prepare_pipes)
7977{
7978 struct intel_encoder *intel_encoder;
7979 struct intel_crtc *intel_crtc;
7980 struct drm_connector *connector;
7981
7982 list_for_each_entry(intel_encoder, &dev->mode_config.encoder_list,
7983 base.head) {
7984 if (!intel_encoder->base.crtc)
7985 continue;
7986
7987 intel_crtc = to_intel_crtc(intel_encoder->base.crtc);
7988
7989 if (prepare_pipes & (1 << intel_crtc->pipe))
7990 intel_encoder->connectors_active = false;
7991 }
7992
7993 intel_modeset_commit_output_state(dev);
7994
7995 /* Update computed state. */
7996 list_for_each_entry(intel_crtc, &dev->mode_config.crtc_list,
7997 base.head) {
7998 intel_crtc->base.enabled = intel_crtc_in_use(&intel_crtc->base);
7999 }
8000
8001 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
8002 if (!connector->encoder || !connector->encoder->crtc)
8003 continue;
8004
8005 intel_crtc = to_intel_crtc(connector->encoder->crtc);
8006
8007 if (prepare_pipes & (1 << intel_crtc->pipe)) {
Daniel Vetter68d34722012-09-06 22:08:35 +02008008 struct drm_property *dpms_property =
8009 dev->mode_config.dpms_property;
8010
Daniel Vetterea9d7582012-07-10 10:42:52 +02008011 connector->dpms = DRM_MODE_DPMS_ON;
Rob Clark662595d2012-10-11 20:36:04 -05008012 drm_object_property_set_value(&connector->base,
Daniel Vetter68d34722012-09-06 22:08:35 +02008013 dpms_property,
8014 DRM_MODE_DPMS_ON);
Daniel Vetterea9d7582012-07-10 10:42:52 +02008015
8016 intel_encoder = to_intel_encoder(connector->encoder);
8017 intel_encoder->connectors_active = true;
8018 }
8019 }
8020
8021}
8022
Daniel Vetter25c5b262012-07-08 22:08:04 +02008023#define for_each_intel_crtc_masked(dev, mask, intel_crtc) \
8024 list_for_each_entry((intel_crtc), \
8025 &(dev)->mode_config.crtc_list, \
8026 base.head) \
Daniel Vetter0973f182013-04-19 11:25:33 +02008027 if (mask & (1 <<(intel_crtc)->pipe))
Daniel Vetter25c5b262012-07-08 22:08:04 +02008028
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01008029static bool
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02008030intel_pipe_config_compare(struct drm_device *dev,
8031 struct intel_crtc_config *current_config,
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01008032 struct intel_crtc_config *pipe_config)
8033{
Daniel Vetter08a24032013-04-19 11:25:34 +02008034#define PIPE_CONF_CHECK_I(name) \
8035 if (current_config->name != pipe_config->name) { \
8036 DRM_ERROR("mismatch in " #name " " \
8037 "(expected %i, found %i)\n", \
8038 current_config->name, \
8039 pipe_config->name); \
8040 return false; \
Daniel Vetter88adfff2013-03-28 10:42:01 +01008041 }
8042
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02008043#define PIPE_CONF_CHECK_FLAGS(name, mask) \
8044 if ((current_config->name ^ pipe_config->name) & (mask)) { \
8045 DRM_ERROR("mismatch in " #name " " \
8046 "(expected %i, found %i)\n", \
8047 current_config->name & (mask), \
8048 pipe_config->name & (mask)); \
8049 return false; \
8050 }
8051
Daniel Vettereccb1402013-05-22 00:50:22 +02008052 PIPE_CONF_CHECK_I(cpu_transcoder);
8053
Daniel Vetter08a24032013-04-19 11:25:34 +02008054 PIPE_CONF_CHECK_I(has_pch_encoder);
8055 PIPE_CONF_CHECK_I(fdi_lanes);
Daniel Vetter72419202013-04-04 13:28:53 +02008056 PIPE_CONF_CHECK_I(fdi_m_n.gmch_m);
8057 PIPE_CONF_CHECK_I(fdi_m_n.gmch_n);
8058 PIPE_CONF_CHECK_I(fdi_m_n.link_m);
8059 PIPE_CONF_CHECK_I(fdi_m_n.link_n);
8060 PIPE_CONF_CHECK_I(fdi_m_n.tu);
Daniel Vetter08a24032013-04-19 11:25:34 +02008061
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02008062 PIPE_CONF_CHECK_I(adjusted_mode.crtc_hdisplay);
8063 PIPE_CONF_CHECK_I(adjusted_mode.crtc_htotal);
8064 PIPE_CONF_CHECK_I(adjusted_mode.crtc_hblank_start);
8065 PIPE_CONF_CHECK_I(adjusted_mode.crtc_hblank_end);
8066 PIPE_CONF_CHECK_I(adjusted_mode.crtc_hsync_start);
8067 PIPE_CONF_CHECK_I(adjusted_mode.crtc_hsync_end);
8068
8069 PIPE_CONF_CHECK_I(adjusted_mode.crtc_vdisplay);
8070 PIPE_CONF_CHECK_I(adjusted_mode.crtc_vtotal);
8071 PIPE_CONF_CHECK_I(adjusted_mode.crtc_vblank_start);
8072 PIPE_CONF_CHECK_I(adjusted_mode.crtc_vblank_end);
8073 PIPE_CONF_CHECK_I(adjusted_mode.crtc_vsync_start);
8074 PIPE_CONF_CHECK_I(adjusted_mode.crtc_vsync_end);
8075
8076 PIPE_CONF_CHECK_FLAGS(adjusted_mode.flags,
8077 DRM_MODE_FLAG_INTERLACE);
8078
Jesse Barnes045ac3b2013-05-14 17:08:26 -07008079 PIPE_CONF_CHECK_FLAGS(adjusted_mode.flags,
8080 DRM_MODE_FLAG_PHSYNC);
8081 PIPE_CONF_CHECK_FLAGS(adjusted_mode.flags,
8082 DRM_MODE_FLAG_NHSYNC);
8083 PIPE_CONF_CHECK_FLAGS(adjusted_mode.flags,
8084 DRM_MODE_FLAG_PVSYNC);
8085 PIPE_CONF_CHECK_FLAGS(adjusted_mode.flags,
8086 DRM_MODE_FLAG_NVSYNC);
8087
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02008088 PIPE_CONF_CHECK_I(requested_mode.hdisplay);
8089 PIPE_CONF_CHECK_I(requested_mode.vdisplay);
8090
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02008091 PIPE_CONF_CHECK_I(gmch_pfit.control);
8092 /* pfit ratios are autocomputed by the hw on gen4+ */
8093 if (INTEL_INFO(dev)->gen < 4)
8094 PIPE_CONF_CHECK_I(gmch_pfit.pgm_ratios);
8095 PIPE_CONF_CHECK_I(gmch_pfit.lvds_border_bits);
8096 PIPE_CONF_CHECK_I(pch_pfit.pos);
8097 PIPE_CONF_CHECK_I(pch_pfit.size);
8098
Paulo Zanoni42db64e2013-05-31 16:33:22 -03008099 PIPE_CONF_CHECK_I(ips_enabled);
8100
Daniel Vetter08a24032013-04-19 11:25:34 +02008101#undef PIPE_CONF_CHECK_I
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02008102#undef PIPE_CONF_CHECK_FLAGS
Daniel Vetter627eb5a2013-04-29 19:33:42 +02008103
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01008104 return true;
8105}
8106
Daniel Vetterb9805142012-08-31 17:37:33 +02008107void
Daniel Vetter8af6cf82012-07-10 09:50:11 +02008108intel_modeset_check_state(struct drm_device *dev)
8109{
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01008110 drm_i915_private_t *dev_priv = dev->dev_private;
Daniel Vetter8af6cf82012-07-10 09:50:11 +02008111 struct intel_crtc *crtc;
8112 struct intel_encoder *encoder;
8113 struct intel_connector *connector;
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01008114 struct intel_crtc_config pipe_config;
Daniel Vetter8af6cf82012-07-10 09:50:11 +02008115
8116 list_for_each_entry(connector, &dev->mode_config.connector_list,
8117 base.head) {
8118 /* This also checks the encoder/connector hw state with the
8119 * ->get_hw_state callbacks. */
8120 intel_connector_check_state(connector);
8121
8122 WARN(&connector->new_encoder->base != connector->base.encoder,
8123 "connector's staged encoder doesn't match current encoder\n");
8124 }
8125
8126 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
8127 base.head) {
8128 bool enabled = false;
8129 bool active = false;
8130 enum pipe pipe, tracked_pipe;
8131
8132 DRM_DEBUG_KMS("[ENCODER:%d:%s]\n",
8133 encoder->base.base.id,
8134 drm_get_encoder_name(&encoder->base));
8135
8136 WARN(&encoder->new_crtc->base != encoder->base.crtc,
8137 "encoder's stage crtc doesn't match current crtc\n");
8138 WARN(encoder->connectors_active && !encoder->base.crtc,
8139 "encoder's active_connectors set, but no crtc\n");
8140
8141 list_for_each_entry(connector, &dev->mode_config.connector_list,
8142 base.head) {
8143 if (connector->base.encoder != &encoder->base)
8144 continue;
8145 enabled = true;
8146 if (connector->base.dpms != DRM_MODE_DPMS_OFF)
8147 active = true;
8148 }
8149 WARN(!!encoder->base.crtc != enabled,
8150 "encoder's enabled state mismatch "
8151 "(expected %i, found %i)\n",
8152 !!encoder->base.crtc, enabled);
8153 WARN(active && !encoder->base.crtc,
8154 "active encoder with no crtc\n");
8155
8156 WARN(encoder->connectors_active != active,
8157 "encoder's computed active state doesn't match tracked active state "
8158 "(expected %i, found %i)\n", active, encoder->connectors_active);
8159
8160 active = encoder->get_hw_state(encoder, &pipe);
8161 WARN(active != encoder->connectors_active,
8162 "encoder's hw state doesn't match sw tracking "
8163 "(expected %i, found %i)\n",
8164 encoder->connectors_active, active);
8165
8166 if (!encoder->base.crtc)
8167 continue;
8168
8169 tracked_pipe = to_intel_crtc(encoder->base.crtc)->pipe;
8170 WARN(active && pipe != tracked_pipe,
8171 "active encoder's pipe doesn't match"
8172 "(expected %i, found %i)\n",
8173 tracked_pipe, pipe);
8174
8175 }
8176
8177 list_for_each_entry(crtc, &dev->mode_config.crtc_list,
8178 base.head) {
8179 bool enabled = false;
8180 bool active = false;
8181
Jesse Barnes045ac3b2013-05-14 17:08:26 -07008182 memset(&pipe_config, 0, sizeof(pipe_config));
8183
Daniel Vetter8af6cf82012-07-10 09:50:11 +02008184 DRM_DEBUG_KMS("[CRTC:%d]\n",
8185 crtc->base.base.id);
8186
8187 WARN(crtc->active && !crtc->base.enabled,
8188 "active crtc, but not enabled in sw tracking\n");
8189
8190 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
8191 base.head) {
8192 if (encoder->base.crtc != &crtc->base)
8193 continue;
8194 enabled = true;
8195 if (encoder->connectors_active)
8196 active = true;
Jesse Barnes045ac3b2013-05-14 17:08:26 -07008197 if (encoder->get_config)
8198 encoder->get_config(encoder, &pipe_config);
Daniel Vetter8af6cf82012-07-10 09:50:11 +02008199 }
8200 WARN(active != crtc->active,
8201 "crtc's computed active state doesn't match tracked active state "
8202 "(expected %i, found %i)\n", active, crtc->active);
8203 WARN(enabled != crtc->base.enabled,
8204 "crtc's computed enabled state doesn't match tracked enabled state "
8205 "(expected %i, found %i)\n", enabled, crtc->base.enabled);
8206
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01008207 active = dev_priv->display.get_pipe_config(crtc,
8208 &pipe_config);
8209 WARN(crtc->active != active,
8210 "crtc active state doesn't match with hw state "
8211 "(expected %i, found %i)\n", crtc->active, active);
8212
Daniel Vetterc0b03412013-05-28 12:05:54 +02008213 if (active &&
8214 !intel_pipe_config_compare(dev, &crtc->config, &pipe_config)) {
8215 WARN(1, "pipe state doesn't match!\n");
8216 intel_dump_pipe_config(crtc, &pipe_config,
8217 "[hw state]");
8218 intel_dump_pipe_config(crtc, &crtc->config,
8219 "[sw state]");
8220 }
Daniel Vetter8af6cf82012-07-10 09:50:11 +02008221 }
8222}
8223
Daniel Vetterf30da182013-04-11 20:22:50 +02008224static int __intel_set_mode(struct drm_crtc *crtc,
8225 struct drm_display_mode *mode,
8226 int x, int y, struct drm_framebuffer *fb)
Daniel Vettera6778b32012-07-02 09:56:42 +02008227{
8228 struct drm_device *dev = crtc->dev;
Daniel Vetterdbf2b54e2012-07-02 11:18:29 +02008229 drm_i915_private_t *dev_priv = dev->dev_private;
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01008230 struct drm_display_mode *saved_mode, *saved_hwmode;
8231 struct intel_crtc_config *pipe_config = NULL;
Daniel Vetter25c5b262012-07-08 22:08:04 +02008232 struct intel_crtc *intel_crtc;
8233 unsigned disable_pipes, prepare_pipes, modeset_pipes;
Chris Wilsonc0c36b942012-12-19 16:08:43 +00008234 int ret = 0;
Daniel Vettera6778b32012-07-02 09:56:42 +02008235
Tim Gardner3ac18232012-12-07 07:54:26 -07008236 saved_mode = kmalloc(2 * sizeof(*saved_mode), GFP_KERNEL);
Chris Wilsonc0c36b942012-12-19 16:08:43 +00008237 if (!saved_mode)
8238 return -ENOMEM;
Tim Gardner3ac18232012-12-07 07:54:26 -07008239 saved_hwmode = saved_mode + 1;
Daniel Vettera6778b32012-07-02 09:56:42 +02008240
Daniel Vettere2e1ed42012-07-08 21:14:38 +02008241 intel_modeset_affected_pipes(crtc, &modeset_pipes,
Daniel Vetter25c5b262012-07-08 22:08:04 +02008242 &prepare_pipes, &disable_pipes);
8243
Tim Gardner3ac18232012-12-07 07:54:26 -07008244 *saved_hwmode = crtc->hwmode;
8245 *saved_mode = crtc->mode;
Daniel Vettera6778b32012-07-02 09:56:42 +02008246
Daniel Vetter25c5b262012-07-08 22:08:04 +02008247 /* Hack: Because we don't (yet) support global modeset on multiple
8248 * crtcs, we don't keep track of the new mode for more than one crtc.
8249 * Hence simply check whether any bit is set in modeset_pipes in all the
8250 * pieces of code that are not yet converted to deal with mutliple crtcs
8251 * changing their mode at the same time. */
Daniel Vetter25c5b262012-07-08 22:08:04 +02008252 if (modeset_pipes) {
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01008253 pipe_config = intel_modeset_pipe_config(crtc, fb, mode);
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01008254 if (IS_ERR(pipe_config)) {
8255 ret = PTR_ERR(pipe_config);
8256 pipe_config = NULL;
8257
Tim Gardner3ac18232012-12-07 07:54:26 -07008258 goto out;
Daniel Vetter25c5b262012-07-08 22:08:04 +02008259 }
Daniel Vetterc0b03412013-05-28 12:05:54 +02008260 intel_dump_pipe_config(to_intel_crtc(crtc), pipe_config,
8261 "[modeset]");
Daniel Vettera6778b32012-07-02 09:56:42 +02008262 }
8263
Daniel Vetter460da9162013-03-27 00:44:51 +01008264 for_each_intel_crtc_masked(dev, disable_pipes, intel_crtc)
8265 intel_crtc_disable(&intel_crtc->base);
8266
Daniel Vetterea9d7582012-07-10 10:42:52 +02008267 for_each_intel_crtc_masked(dev, prepare_pipes, intel_crtc) {
8268 if (intel_crtc->base.enabled)
8269 dev_priv->display.crtc_disable(&intel_crtc->base);
8270 }
Daniel Vettera6778b32012-07-02 09:56:42 +02008271
Daniel Vetter6c4c86f2012-09-10 21:58:30 +02008272 /* crtc->mode is already used by the ->mode_set callbacks, hence we need
8273 * to set it here already despite that we pass it down the callchain.
8274 */
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01008275 if (modeset_pipes) {
Daniel Vetter25c5b262012-07-08 22:08:04 +02008276 crtc->mode = *mode;
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01008277 /* mode_set/enable/disable functions rely on a correct pipe
8278 * config. */
8279 to_intel_crtc(crtc)->config = *pipe_config;
8280 }
Daniel Vetter7758a112012-07-08 19:40:39 +02008281
Daniel Vetterea9d7582012-07-10 10:42:52 +02008282 /* Only after disabling all output pipelines that will be changed can we
8283 * update the the output configuration. */
8284 intel_modeset_update_state(dev, prepare_pipes);
8285
Daniel Vetter47fab732012-10-26 10:58:18 +02008286 if (dev_priv->display.modeset_global_resources)
8287 dev_priv->display.modeset_global_resources(dev);
8288
Daniel Vettera6778b32012-07-02 09:56:42 +02008289 /* Set up the DPLL and any encoders state that needs to adjust or depend
8290 * on the DPLL.
8291 */
Daniel Vetter25c5b262012-07-08 22:08:04 +02008292 for_each_intel_crtc_masked(dev, modeset_pipes, intel_crtc) {
Chris Wilsonc0c36b942012-12-19 16:08:43 +00008293 ret = intel_crtc_mode_set(&intel_crtc->base,
Chris Wilsonc0c36b942012-12-19 16:08:43 +00008294 x, y, fb);
8295 if (ret)
8296 goto done;
Daniel Vettera6778b32012-07-02 09:56:42 +02008297 }
8298
8299 /* Now enable the clocks, plane, pipe, and connectors that we set up. */
Daniel Vetter25c5b262012-07-08 22:08:04 +02008300 for_each_intel_crtc_masked(dev, prepare_pipes, intel_crtc)
8301 dev_priv->display.crtc_enable(&intel_crtc->base);
Daniel Vettera6778b32012-07-02 09:56:42 +02008302
Daniel Vetter25c5b262012-07-08 22:08:04 +02008303 if (modeset_pipes) {
8304 /* Store real post-adjustment hardware mode. */
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01008305 crtc->hwmode = pipe_config->adjusted_mode;
Daniel Vettera6778b32012-07-02 09:56:42 +02008306
Daniel Vetter25c5b262012-07-08 22:08:04 +02008307 /* Calculate and store various constants which
8308 * are later needed by vblank and swap-completion
8309 * timestamping. They are derived from true hwmode.
8310 */
8311 drm_calc_timestamping_constants(crtc);
8312 }
Daniel Vettera6778b32012-07-02 09:56:42 +02008313
8314 /* FIXME: add subpixel order */
8315done:
Chris Wilsonc0c36b942012-12-19 16:08:43 +00008316 if (ret && crtc->enabled) {
Tim Gardner3ac18232012-12-07 07:54:26 -07008317 crtc->hwmode = *saved_hwmode;
8318 crtc->mode = *saved_mode;
Daniel Vettera6778b32012-07-02 09:56:42 +02008319 }
8320
Tim Gardner3ac18232012-12-07 07:54:26 -07008321out:
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01008322 kfree(pipe_config);
Tim Gardner3ac18232012-12-07 07:54:26 -07008323 kfree(saved_mode);
Daniel Vettera6778b32012-07-02 09:56:42 +02008324 return ret;
8325}
8326
Daniel Vetterf30da182013-04-11 20:22:50 +02008327int intel_set_mode(struct drm_crtc *crtc,
8328 struct drm_display_mode *mode,
8329 int x, int y, struct drm_framebuffer *fb)
8330{
8331 int ret;
8332
8333 ret = __intel_set_mode(crtc, mode, x, y, fb);
8334
8335 if (ret == 0)
8336 intel_modeset_check_state(crtc->dev);
8337
8338 return ret;
8339}
8340
Chris Wilsonc0c36b942012-12-19 16:08:43 +00008341void intel_crtc_restore_mode(struct drm_crtc *crtc)
8342{
8343 intel_set_mode(crtc, &crtc->mode, crtc->x, crtc->y, crtc->fb);
8344}
8345
Daniel Vetter25c5b262012-07-08 22:08:04 +02008346#undef for_each_intel_crtc_masked
8347
Daniel Vetterd9e55602012-07-04 22:16:09 +02008348static void intel_set_config_free(struct intel_set_config *config)
8349{
8350 if (!config)
8351 return;
8352
Daniel Vetter1aa4b622012-07-05 16:20:48 +02008353 kfree(config->save_connector_encoders);
8354 kfree(config->save_encoder_crtcs);
Daniel Vetterd9e55602012-07-04 22:16:09 +02008355 kfree(config);
8356}
8357
Daniel Vetter85f9eb72012-07-04 22:24:08 +02008358static int intel_set_config_save_state(struct drm_device *dev,
8359 struct intel_set_config *config)
8360{
Daniel Vetter85f9eb72012-07-04 22:24:08 +02008361 struct drm_encoder *encoder;
8362 struct drm_connector *connector;
8363 int count;
8364
Daniel Vetter1aa4b622012-07-05 16:20:48 +02008365 config->save_encoder_crtcs =
8366 kcalloc(dev->mode_config.num_encoder,
8367 sizeof(struct drm_crtc *), GFP_KERNEL);
8368 if (!config->save_encoder_crtcs)
Daniel Vetter85f9eb72012-07-04 22:24:08 +02008369 return -ENOMEM;
8370
Daniel Vetter1aa4b622012-07-05 16:20:48 +02008371 config->save_connector_encoders =
8372 kcalloc(dev->mode_config.num_connector,
8373 sizeof(struct drm_encoder *), GFP_KERNEL);
8374 if (!config->save_connector_encoders)
Daniel Vetter85f9eb72012-07-04 22:24:08 +02008375 return -ENOMEM;
8376
8377 /* Copy data. Note that driver private data is not affected.
8378 * Should anything bad happen only the expected state is
8379 * restored, not the drivers personal bookkeeping.
8380 */
8381 count = 0;
Daniel Vetter85f9eb72012-07-04 22:24:08 +02008382 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
Daniel Vetter1aa4b622012-07-05 16:20:48 +02008383 config->save_encoder_crtcs[count++] = encoder->crtc;
Daniel Vetter85f9eb72012-07-04 22:24:08 +02008384 }
8385
8386 count = 0;
8387 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
Daniel Vetter1aa4b622012-07-05 16:20:48 +02008388 config->save_connector_encoders[count++] = connector->encoder;
Daniel Vetter85f9eb72012-07-04 22:24:08 +02008389 }
8390
8391 return 0;
8392}
8393
8394static void intel_set_config_restore_state(struct drm_device *dev,
8395 struct intel_set_config *config)
8396{
Daniel Vetter9a935852012-07-05 22:34:27 +02008397 struct intel_encoder *encoder;
8398 struct intel_connector *connector;
Daniel Vetter85f9eb72012-07-04 22:24:08 +02008399 int count;
8400
8401 count = 0;
Daniel Vetter9a935852012-07-05 22:34:27 +02008402 list_for_each_entry(encoder, &dev->mode_config.encoder_list, base.head) {
8403 encoder->new_crtc =
8404 to_intel_crtc(config->save_encoder_crtcs[count++]);
Daniel Vetter85f9eb72012-07-04 22:24:08 +02008405 }
8406
8407 count = 0;
Daniel Vetter9a935852012-07-05 22:34:27 +02008408 list_for_each_entry(connector, &dev->mode_config.connector_list, base.head) {
8409 connector->new_encoder =
8410 to_intel_encoder(config->save_connector_encoders[count++]);
Daniel Vetter85f9eb72012-07-04 22:24:08 +02008411 }
8412}
8413
Daniel Vetter5e2b5842012-07-04 22:41:29 +02008414static void
8415intel_set_config_compute_mode_changes(struct drm_mode_set *set,
8416 struct intel_set_config *config)
8417{
8418
8419 /* We should be able to check here if the fb has the same properties
8420 * and then just flip_or_move it */
8421 if (set->crtc->fb != set->fb) {
8422 /* If we have no fb then treat it as a full mode set */
8423 if (set->crtc->fb == NULL) {
8424 DRM_DEBUG_KMS("crtc has no fb, full mode set\n");
8425 config->mode_changed = true;
8426 } else if (set->fb == NULL) {
8427 config->mode_changed = true;
Daniel Vetter72f49012013-03-28 16:01:35 +01008428 } else if (set->fb->pixel_format !=
8429 set->crtc->fb->pixel_format) {
Daniel Vetter5e2b5842012-07-04 22:41:29 +02008430 config->mode_changed = true;
8431 } else
8432 config->fb_changed = true;
8433 }
8434
Daniel Vetter835c5872012-07-10 18:11:08 +02008435 if (set->fb && (set->x != set->crtc->x || set->y != set->crtc->y))
Daniel Vetter5e2b5842012-07-04 22:41:29 +02008436 config->fb_changed = true;
8437
8438 if (set->mode && !drm_mode_equal(set->mode, &set->crtc->mode)) {
8439 DRM_DEBUG_KMS("modes are different, full mode set\n");
8440 drm_mode_debug_printmodeline(&set->crtc->mode);
8441 drm_mode_debug_printmodeline(set->mode);
8442 config->mode_changed = true;
8443 }
8444}
8445
Daniel Vetter2e431052012-07-04 22:42:15 +02008446static int
Daniel Vetter9a935852012-07-05 22:34:27 +02008447intel_modeset_stage_output_state(struct drm_device *dev,
8448 struct drm_mode_set *set,
8449 struct intel_set_config *config)
Daniel Vetter50f56112012-07-02 09:35:43 +02008450{
Daniel Vetter85f9eb72012-07-04 22:24:08 +02008451 struct drm_crtc *new_crtc;
Daniel Vetter9a935852012-07-05 22:34:27 +02008452 struct intel_connector *connector;
8453 struct intel_encoder *encoder;
Daniel Vetter2e431052012-07-04 22:42:15 +02008454 int count, ro;
Daniel Vetter50f56112012-07-02 09:35:43 +02008455
Damien Lespiau9abdda72013-02-13 13:29:23 +00008456 /* The upper layers ensure that we either disable a crtc or have a list
Daniel Vetter9a935852012-07-05 22:34:27 +02008457 * of connectors. For paranoia, double-check this. */
8458 WARN_ON(!set->fb && (set->num_connectors != 0));
8459 WARN_ON(set->fb && (set->num_connectors == 0));
8460
Daniel Vetter50f56112012-07-02 09:35:43 +02008461 count = 0;
Daniel Vetter9a935852012-07-05 22:34:27 +02008462 list_for_each_entry(connector, &dev->mode_config.connector_list,
8463 base.head) {
8464 /* Otherwise traverse passed in connector list and get encoders
8465 * for them. */
Daniel Vetter50f56112012-07-02 09:35:43 +02008466 for (ro = 0; ro < set->num_connectors; ro++) {
Daniel Vetter9a935852012-07-05 22:34:27 +02008467 if (set->connectors[ro] == &connector->base) {
8468 connector->new_encoder = connector->encoder;
Daniel Vetter50f56112012-07-02 09:35:43 +02008469 break;
8470 }
8471 }
8472
Daniel Vetter9a935852012-07-05 22:34:27 +02008473 /* If we disable the crtc, disable all its connectors. Also, if
8474 * the connector is on the changing crtc but not on the new
8475 * connector list, disable it. */
8476 if ((!set->fb || ro == set->num_connectors) &&
8477 connector->base.encoder &&
8478 connector->base.encoder->crtc == set->crtc) {
8479 connector->new_encoder = NULL;
8480
8481 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] to [NOCRTC]\n",
8482 connector->base.base.id,
8483 drm_get_connector_name(&connector->base));
8484 }
8485
8486
8487 if (&connector->new_encoder->base != connector->base.encoder) {
Daniel Vetter50f56112012-07-02 09:35:43 +02008488 DRM_DEBUG_KMS("encoder changed, full mode switch\n");
Daniel Vetter5e2b5842012-07-04 22:41:29 +02008489 config->mode_changed = true;
Daniel Vetter50f56112012-07-02 09:35:43 +02008490 }
Daniel Vetter9a935852012-07-05 22:34:27 +02008491 }
8492 /* connector->new_encoder is now updated for all connectors. */
8493
8494 /* Update crtc of enabled connectors. */
Daniel Vetter50f56112012-07-02 09:35:43 +02008495 count = 0;
Daniel Vetter9a935852012-07-05 22:34:27 +02008496 list_for_each_entry(connector, &dev->mode_config.connector_list,
8497 base.head) {
8498 if (!connector->new_encoder)
Daniel Vetter50f56112012-07-02 09:35:43 +02008499 continue;
8500
Daniel Vetter9a935852012-07-05 22:34:27 +02008501 new_crtc = connector->new_encoder->base.crtc;
Daniel Vetter50f56112012-07-02 09:35:43 +02008502
8503 for (ro = 0; ro < set->num_connectors; ro++) {
Daniel Vetter9a935852012-07-05 22:34:27 +02008504 if (set->connectors[ro] == &connector->base)
Daniel Vetter50f56112012-07-02 09:35:43 +02008505 new_crtc = set->crtc;
8506 }
8507
8508 /* Make sure the new CRTC will work with the encoder */
Daniel Vetter9a935852012-07-05 22:34:27 +02008509 if (!intel_encoder_crtc_ok(&connector->new_encoder->base,
8510 new_crtc)) {
Daniel Vetter5e2b5842012-07-04 22:41:29 +02008511 return -EINVAL;
Daniel Vetter50f56112012-07-02 09:35:43 +02008512 }
Daniel Vetter9a935852012-07-05 22:34:27 +02008513 connector->encoder->new_crtc = to_intel_crtc(new_crtc);
8514
8515 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] to [CRTC:%d]\n",
8516 connector->base.base.id,
8517 drm_get_connector_name(&connector->base),
8518 new_crtc->base.id);
8519 }
8520
8521 /* Check for any encoders that needs to be disabled. */
8522 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
8523 base.head) {
8524 list_for_each_entry(connector,
8525 &dev->mode_config.connector_list,
8526 base.head) {
8527 if (connector->new_encoder == encoder) {
8528 WARN_ON(!connector->new_encoder->new_crtc);
8529
8530 goto next_encoder;
8531 }
8532 }
8533 encoder->new_crtc = NULL;
8534next_encoder:
8535 /* Only now check for crtc changes so we don't miss encoders
8536 * that will be disabled. */
8537 if (&encoder->new_crtc->base != encoder->base.crtc) {
Daniel Vetter50f56112012-07-02 09:35:43 +02008538 DRM_DEBUG_KMS("crtc changed, full mode switch\n");
Daniel Vetter5e2b5842012-07-04 22:41:29 +02008539 config->mode_changed = true;
Daniel Vetter50f56112012-07-02 09:35:43 +02008540 }
8541 }
Daniel Vetter9a935852012-07-05 22:34:27 +02008542 /* Now we've also updated encoder->new_crtc for all encoders. */
Daniel Vetter50f56112012-07-02 09:35:43 +02008543
Daniel Vetter2e431052012-07-04 22:42:15 +02008544 return 0;
8545}
8546
8547static int intel_crtc_set_config(struct drm_mode_set *set)
8548{
8549 struct drm_device *dev;
Daniel Vetter2e431052012-07-04 22:42:15 +02008550 struct drm_mode_set save_set;
8551 struct intel_set_config *config;
8552 int ret;
Daniel Vetter2e431052012-07-04 22:42:15 +02008553
Daniel Vetter8d3e3752012-07-05 16:09:09 +02008554 BUG_ON(!set);
8555 BUG_ON(!set->crtc);
8556 BUG_ON(!set->crtc->helper_private);
Daniel Vetter2e431052012-07-04 22:42:15 +02008557
Daniel Vetter7e53f3a2013-01-21 10:52:17 +01008558 /* Enforce sane interface api - has been abused by the fb helper. */
8559 BUG_ON(!set->mode && set->fb);
8560 BUG_ON(set->fb && set->num_connectors == 0);
Daniel Vetter431e50f2012-07-10 17:53:42 +02008561
Daniel Vetter2e431052012-07-04 22:42:15 +02008562 if (set->fb) {
8563 DRM_DEBUG_KMS("[CRTC:%d] [FB:%d] #connectors=%d (x y) (%i %i)\n",
8564 set->crtc->base.id, set->fb->base.id,
8565 (int)set->num_connectors, set->x, set->y);
8566 } else {
8567 DRM_DEBUG_KMS("[CRTC:%d] [NOFB]\n", set->crtc->base.id);
Daniel Vetter2e431052012-07-04 22:42:15 +02008568 }
8569
8570 dev = set->crtc->dev;
8571
8572 ret = -ENOMEM;
8573 config = kzalloc(sizeof(*config), GFP_KERNEL);
8574 if (!config)
8575 goto out_config;
8576
8577 ret = intel_set_config_save_state(dev, config);
8578 if (ret)
8579 goto out_config;
8580
8581 save_set.crtc = set->crtc;
8582 save_set.mode = &set->crtc->mode;
8583 save_set.x = set->crtc->x;
8584 save_set.y = set->crtc->y;
8585 save_set.fb = set->crtc->fb;
8586
8587 /* Compute whether we need a full modeset, only an fb base update or no
8588 * change at all. In the future we might also check whether only the
8589 * mode changed, e.g. for LVDS where we only change the panel fitter in
8590 * such cases. */
8591 intel_set_config_compute_mode_changes(set, config);
8592
Daniel Vetter9a935852012-07-05 22:34:27 +02008593 ret = intel_modeset_stage_output_state(dev, set, config);
Daniel Vetter2e431052012-07-04 22:42:15 +02008594 if (ret)
8595 goto fail;
8596
Daniel Vetter5e2b5842012-07-04 22:41:29 +02008597 if (config->mode_changed) {
Chris Wilsonc0c36b942012-12-19 16:08:43 +00008598 ret = intel_set_mode(set->crtc, set->mode,
8599 set->x, set->y, set->fb);
8600 if (ret) {
8601 DRM_ERROR("failed to set mode on [CRTC:%d], err = %d\n",
8602 set->crtc->base.id, ret);
Daniel Vetter87f1faa2012-07-05 23:36:17 +02008603 goto fail;
8604 }
Daniel Vetter5e2b5842012-07-04 22:41:29 +02008605 } else if (config->fb_changed) {
Ville Syrjälä4878cae2013-02-18 19:08:48 +02008606 intel_crtc_wait_for_pending_flips(set->crtc);
8607
Daniel Vetter4f660f42012-07-02 09:47:37 +02008608 ret = intel_pipe_set_base(set->crtc,
Daniel Vetter94352cf2012-07-05 22:51:56 +02008609 set->x, set->y, set->fb);
Daniel Vetter50f56112012-07-02 09:35:43 +02008610 }
8611
Daniel Vetterd9e55602012-07-04 22:16:09 +02008612 intel_set_config_free(config);
8613
Daniel Vetter50f56112012-07-02 09:35:43 +02008614 return 0;
8615
8616fail:
Daniel Vetter85f9eb72012-07-04 22:24:08 +02008617 intel_set_config_restore_state(dev, config);
Daniel Vetter50f56112012-07-02 09:35:43 +02008618
8619 /* Try to restore the config */
Daniel Vetter5e2b5842012-07-04 22:41:29 +02008620 if (config->mode_changed &&
Chris Wilsonc0c36b942012-12-19 16:08:43 +00008621 intel_set_mode(save_set.crtc, save_set.mode,
8622 save_set.x, save_set.y, save_set.fb))
Daniel Vetter50f56112012-07-02 09:35:43 +02008623 DRM_ERROR("failed to restore config after modeset failure\n");
8624
Daniel Vetterd9e55602012-07-04 22:16:09 +02008625out_config:
8626 intel_set_config_free(config);
Daniel Vetter50f56112012-07-02 09:35:43 +02008627 return ret;
8628}
8629
Chris Wilsonf6e5b162011-04-12 18:06:51 +01008630static const struct drm_crtc_funcs intel_crtc_funcs = {
Chris Wilsonf6e5b162011-04-12 18:06:51 +01008631 .cursor_set = intel_crtc_cursor_set,
8632 .cursor_move = intel_crtc_cursor_move,
8633 .gamma_set = intel_crtc_gamma_set,
Daniel Vetter50f56112012-07-02 09:35:43 +02008634 .set_config = intel_crtc_set_config,
Chris Wilsonf6e5b162011-04-12 18:06:51 +01008635 .destroy = intel_crtc_destroy,
8636 .page_flip = intel_crtc_page_flip,
8637};
8638
Paulo Zanoni79f689a2012-10-05 12:05:52 -03008639static void intel_cpu_pll_init(struct drm_device *dev)
8640{
Paulo Zanoniaffa9352012-11-23 15:30:39 -02008641 if (HAS_DDI(dev))
Paulo Zanoni79f689a2012-10-05 12:05:52 -03008642 intel_ddi_pll_init(dev);
8643}
8644
Jesse Barnesee7b9f92012-04-20 17:11:53 +01008645static void intel_pch_pll_init(struct drm_device *dev)
8646{
8647 drm_i915_private_t *dev_priv = dev->dev_private;
8648 int i;
8649
8650 if (dev_priv->num_pch_pll == 0) {
8651 DRM_DEBUG_KMS("No PCH PLLs on this hardware, skipping initialisation\n");
8652 return;
8653 }
8654
8655 for (i = 0; i < dev_priv->num_pch_pll; i++) {
8656 dev_priv->pch_plls[i].pll_reg = _PCH_DPLL(i);
8657 dev_priv->pch_plls[i].fp0_reg = _PCH_FP0(i);
8658 dev_priv->pch_plls[i].fp1_reg = _PCH_FP1(i);
8659 }
8660}
8661
Hannes Ederb358d0a2008-12-18 21:18:47 +01008662static void intel_crtc_init(struct drm_device *dev, int pipe)
Jesse Barnes79e53942008-11-07 14:24:08 -08008663{
Jesse Barnes22fd0fa2009-12-02 13:42:53 -08008664 drm_i915_private_t *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -08008665 struct intel_crtc *intel_crtc;
8666 int i;
8667
8668 intel_crtc = kzalloc(sizeof(struct intel_crtc) + (INTELFB_CONN_LIMIT * sizeof(struct drm_connector *)), GFP_KERNEL);
8669 if (intel_crtc == NULL)
8670 return;
8671
8672 drm_crtc_init(dev, &intel_crtc->base, &intel_crtc_funcs);
8673
8674 drm_mode_crtc_set_gamma_size(&intel_crtc->base, 256);
Jesse Barnes79e53942008-11-07 14:24:08 -08008675 for (i = 0; i < 256; i++) {
8676 intel_crtc->lut_r[i] = i;
8677 intel_crtc->lut_g[i] = i;
8678 intel_crtc->lut_b[i] = i;
8679 }
8680
Jesse Barnes80824002009-09-10 15:28:06 -07008681 /* Swap pipes & planes for FBC on pre-965 */
8682 intel_crtc->pipe = pipe;
8683 intel_crtc->plane = pipe;
Chris Wilsone2e767a2010-09-13 16:53:12 +01008684 if (IS_MOBILE(dev) && IS_GEN3(dev)) {
Zhao Yakui28c97732009-10-09 11:39:41 +08008685 DRM_DEBUG_KMS("swapping pipes & planes for FBC\n");
Chris Wilsone2e767a2010-09-13 16:53:12 +01008686 intel_crtc->plane = !pipe;
Jesse Barnes80824002009-09-10 15:28:06 -07008687 }
8688
Jesse Barnes22fd0fa2009-12-02 13:42:53 -08008689 BUG_ON(pipe >= ARRAY_SIZE(dev_priv->plane_to_crtc_mapping) ||
8690 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] != NULL);
8691 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] = &intel_crtc->base;
8692 dev_priv->pipe_to_crtc_mapping[intel_crtc->pipe] = &intel_crtc->base;
8693
Jesse Barnes79e53942008-11-07 14:24:08 -08008694 drm_crtc_helper_add(&intel_crtc->base, &intel_helper_funcs);
Jesse Barnes79e53942008-11-07 14:24:08 -08008695}
8696
Carl Worth08d7b3d2009-04-29 14:43:54 -07008697int intel_get_pipe_from_crtc_id(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00008698 struct drm_file *file)
Carl Worth08d7b3d2009-04-29 14:43:54 -07008699{
Carl Worth08d7b3d2009-04-29 14:43:54 -07008700 struct drm_i915_get_pipe_from_crtc_id *pipe_from_crtc_id = data;
Daniel Vetterc05422d2009-08-11 16:05:30 +02008701 struct drm_mode_object *drmmode_obj;
8702 struct intel_crtc *crtc;
Carl Worth08d7b3d2009-04-29 14:43:54 -07008703
Daniel Vetter1cff8f62012-04-24 09:55:08 +02008704 if (!drm_core_check_feature(dev, DRIVER_MODESET))
8705 return -ENODEV;
Carl Worth08d7b3d2009-04-29 14:43:54 -07008706
Daniel Vetterc05422d2009-08-11 16:05:30 +02008707 drmmode_obj = drm_mode_object_find(dev, pipe_from_crtc_id->crtc_id,
8708 DRM_MODE_OBJECT_CRTC);
Carl Worth08d7b3d2009-04-29 14:43:54 -07008709
Daniel Vetterc05422d2009-08-11 16:05:30 +02008710 if (!drmmode_obj) {
Carl Worth08d7b3d2009-04-29 14:43:54 -07008711 DRM_ERROR("no such CRTC id\n");
8712 return -EINVAL;
8713 }
8714
Daniel Vetterc05422d2009-08-11 16:05:30 +02008715 crtc = to_intel_crtc(obj_to_crtc(drmmode_obj));
8716 pipe_from_crtc_id->pipe = crtc->pipe;
Carl Worth08d7b3d2009-04-29 14:43:54 -07008717
Daniel Vetterc05422d2009-08-11 16:05:30 +02008718 return 0;
Carl Worth08d7b3d2009-04-29 14:43:54 -07008719}
8720
Daniel Vetter66a92782012-07-12 20:08:18 +02008721static int intel_encoder_clones(struct intel_encoder *encoder)
Jesse Barnes79e53942008-11-07 14:24:08 -08008722{
Daniel Vetter66a92782012-07-12 20:08:18 +02008723 struct drm_device *dev = encoder->base.dev;
8724 struct intel_encoder *source_encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08008725 int index_mask = 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08008726 int entry = 0;
8727
Daniel Vetter66a92782012-07-12 20:08:18 +02008728 list_for_each_entry(source_encoder,
8729 &dev->mode_config.encoder_list, base.head) {
8730
8731 if (encoder == source_encoder)
Jesse Barnes79e53942008-11-07 14:24:08 -08008732 index_mask |= (1 << entry);
Daniel Vetter66a92782012-07-12 20:08:18 +02008733
8734 /* Intel hw has only one MUX where enocoders could be cloned. */
8735 if (encoder->cloneable && source_encoder->cloneable)
8736 index_mask |= (1 << entry);
8737
Jesse Barnes79e53942008-11-07 14:24:08 -08008738 entry++;
8739 }
Chris Wilson4ef69c72010-09-09 15:14:28 +01008740
Jesse Barnes79e53942008-11-07 14:24:08 -08008741 return index_mask;
8742}
8743
Chris Wilson4d302442010-12-14 19:21:29 +00008744static bool has_edp_a(struct drm_device *dev)
8745{
8746 struct drm_i915_private *dev_priv = dev->dev_private;
8747
8748 if (!IS_MOBILE(dev))
8749 return false;
8750
8751 if ((I915_READ(DP_A) & DP_DETECTED) == 0)
8752 return false;
8753
8754 if (IS_GEN5(dev) &&
8755 (I915_READ(ILK_DISPLAY_CHICKEN_FUSES) & ILK_eDP_A_DISABLE))
8756 return false;
8757
8758 return true;
8759}
8760
Jesse Barnes79e53942008-11-07 14:24:08 -08008761static void intel_setup_outputs(struct drm_device *dev)
8762{
Eric Anholt725e30a2009-01-22 13:01:02 -08008763 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson4ef69c72010-09-09 15:14:28 +01008764 struct intel_encoder *encoder;
Adam Jacksoncb0953d2010-07-16 14:46:29 -04008765 bool dpd_is_edp = false;
Chris Wilsonf3cfcba2012-02-09 09:35:53 +00008766 bool has_lvds;
Jesse Barnes79e53942008-11-07 14:24:08 -08008767
Chris Wilsonf3cfcba2012-02-09 09:35:53 +00008768 has_lvds = intel_lvds_init(dev);
Chris Wilsonc5d1b512010-11-29 18:00:23 +00008769 if (!has_lvds && !HAS_PCH_SPLIT(dev)) {
8770 /* disable the panel fitter on everything but LVDS */
8771 I915_WRITE(PFIT_CONTROL, 0);
8772 }
Jesse Barnes79e53942008-11-07 14:24:08 -08008773
Paulo Zanonic40c0f52013-04-12 18:16:53 -03008774 if (!IS_ULT(dev))
Paulo Zanoni79935fc2012-11-20 13:27:40 -02008775 intel_crt_init(dev);
Adam Jacksoncb0953d2010-07-16 14:46:29 -04008776
Paulo Zanoniaffa9352012-11-23 15:30:39 -02008777 if (HAS_DDI(dev)) {
Eugeni Dodonov0e72a5b2012-05-09 15:37:27 -03008778 int found;
8779
8780 /* Haswell uses DDI functions to detect digital outputs */
8781 found = I915_READ(DDI_BUF_CTL_A) & DDI_INIT_DISPLAY_DETECTED;
8782 /* DDI A only supports eDP */
8783 if (found)
8784 intel_ddi_init(dev, PORT_A);
8785
8786 /* DDI B, C and D detection is indicated by the SFUSE_STRAP
8787 * register */
8788 found = I915_READ(SFUSE_STRAP);
8789
8790 if (found & SFUSE_STRAP_DDIB_DETECTED)
8791 intel_ddi_init(dev, PORT_B);
8792 if (found & SFUSE_STRAP_DDIC_DETECTED)
8793 intel_ddi_init(dev, PORT_C);
8794 if (found & SFUSE_STRAP_DDID_DETECTED)
8795 intel_ddi_init(dev, PORT_D);
8796 } else if (HAS_PCH_SPLIT(dev)) {
Adam Jacksoncb0953d2010-07-16 14:46:29 -04008797 int found;
Daniel Vetter270b3042012-10-27 15:52:05 +02008798 dpd_is_edp = intel_dpd_is_edp(dev);
8799
8800 if (has_edp_a(dev))
8801 intel_dp_init(dev, DP_A, PORT_A);
Adam Jacksoncb0953d2010-07-16 14:46:29 -04008802
Paulo Zanonidc0fa712013-02-19 16:21:46 -03008803 if (I915_READ(PCH_HDMIB) & SDVO_DETECTED) {
Zhao Yakui461ed3c2010-03-30 15:11:33 +08008804 /* PCH SDVOB multiplex with HDMIB */
Daniel Vettereef4eac2012-03-23 23:43:35 +01008805 found = intel_sdvo_init(dev, PCH_SDVOB, true);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +08008806 if (!found)
Paulo Zanonie2debe92013-02-18 19:00:27 -03008807 intel_hdmi_init(dev, PCH_HDMIB, PORT_B);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08008808 if (!found && (I915_READ(PCH_DP_B) & DP_DETECTED))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03008809 intel_dp_init(dev, PCH_DP_B, PORT_B);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +08008810 }
8811
Paulo Zanonidc0fa712013-02-19 16:21:46 -03008812 if (I915_READ(PCH_HDMIC) & SDVO_DETECTED)
Paulo Zanonie2debe92013-02-18 19:00:27 -03008813 intel_hdmi_init(dev, PCH_HDMIC, PORT_C);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +08008814
Paulo Zanonidc0fa712013-02-19 16:21:46 -03008815 if (!dpd_is_edp && I915_READ(PCH_HDMID) & SDVO_DETECTED)
Paulo Zanonie2debe92013-02-18 19:00:27 -03008816 intel_hdmi_init(dev, PCH_HDMID, PORT_D);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +08008817
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08008818 if (I915_READ(PCH_DP_C) & DP_DETECTED)
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03008819 intel_dp_init(dev, PCH_DP_C, PORT_C);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08008820
Daniel Vetter270b3042012-10-27 15:52:05 +02008821 if (I915_READ(PCH_DP_D) & DP_DETECTED)
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03008822 intel_dp_init(dev, PCH_DP_D, PORT_D);
Jesse Barnes4a87d652012-06-15 11:55:16 -07008823 } else if (IS_VALLEYVIEW(dev)) {
Gajanan Bhat19c03922012-09-27 19:13:07 +05308824 /* Check for built-in panel first. Shares lanes with HDMI on SDVOC */
Ville Syrjälä67cfc202013-01-25 21:44:44 +02008825 if (I915_READ(VLV_DISPLAY_BASE + DP_C) & DP_DETECTED)
8826 intel_dp_init(dev, VLV_DISPLAY_BASE + DP_C, PORT_C);
Gajanan Bhat19c03922012-09-27 19:13:07 +05308827
Paulo Zanonidc0fa712013-02-19 16:21:46 -03008828 if (I915_READ(VLV_DISPLAY_BASE + GEN4_HDMIB) & SDVO_DETECTED) {
Paulo Zanonie2debe92013-02-18 19:00:27 -03008829 intel_hdmi_init(dev, VLV_DISPLAY_BASE + GEN4_HDMIB,
8830 PORT_B);
Ville Syrjälä67cfc202013-01-25 21:44:44 +02008831 if (I915_READ(VLV_DISPLAY_BASE + DP_B) & DP_DETECTED)
8832 intel_dp_init(dev, VLV_DISPLAY_BASE + DP_B, PORT_B);
Jesse Barnes4a87d652012-06-15 11:55:16 -07008833 }
Zhenyu Wang103a1962009-11-27 11:44:36 +08008834 } else if (SUPPORTS_DIGITAL_OUTPUTS(dev)) {
Ma Ling27185ae2009-08-24 13:50:23 +08008835 bool found = false;
Eric Anholt7d573822009-01-02 13:33:00 -08008836
Paulo Zanonie2debe92013-02-18 19:00:27 -03008837 if (I915_READ(GEN3_SDVOB) & SDVO_DETECTED) {
Jesse Barnesb01f2c32009-12-11 11:07:17 -08008838 DRM_DEBUG_KMS("probing SDVOB\n");
Paulo Zanonie2debe92013-02-18 19:00:27 -03008839 found = intel_sdvo_init(dev, GEN3_SDVOB, true);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08008840 if (!found && SUPPORTS_INTEGRATED_HDMI(dev)) {
8841 DRM_DEBUG_KMS("probing HDMI on SDVOB\n");
Paulo Zanonie2debe92013-02-18 19:00:27 -03008842 intel_hdmi_init(dev, GEN4_HDMIB, PORT_B);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08008843 }
Ma Ling27185ae2009-08-24 13:50:23 +08008844
Imre Deake7281ea2013-05-08 13:14:08 +03008845 if (!found && SUPPORTS_INTEGRATED_DP(dev))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03008846 intel_dp_init(dev, DP_B, PORT_B);
Eric Anholt725e30a2009-01-22 13:01:02 -08008847 }
Kristian Høgsberg13520b02009-03-13 15:42:14 -04008848
8849 /* Before G4X SDVOC doesn't have its own detect register */
Kristian Høgsberg13520b02009-03-13 15:42:14 -04008850
Paulo Zanonie2debe92013-02-18 19:00:27 -03008851 if (I915_READ(GEN3_SDVOB) & SDVO_DETECTED) {
Jesse Barnesb01f2c32009-12-11 11:07:17 -08008852 DRM_DEBUG_KMS("probing SDVOC\n");
Paulo Zanonie2debe92013-02-18 19:00:27 -03008853 found = intel_sdvo_init(dev, GEN3_SDVOC, false);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08008854 }
Ma Ling27185ae2009-08-24 13:50:23 +08008855
Paulo Zanonie2debe92013-02-18 19:00:27 -03008856 if (!found && (I915_READ(GEN3_SDVOC) & SDVO_DETECTED)) {
Ma Ling27185ae2009-08-24 13:50:23 +08008857
Jesse Barnesb01f2c32009-12-11 11:07:17 -08008858 if (SUPPORTS_INTEGRATED_HDMI(dev)) {
8859 DRM_DEBUG_KMS("probing HDMI on SDVOC\n");
Paulo Zanonie2debe92013-02-18 19:00:27 -03008860 intel_hdmi_init(dev, GEN4_HDMIC, PORT_C);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08008861 }
Imre Deake7281ea2013-05-08 13:14:08 +03008862 if (SUPPORTS_INTEGRATED_DP(dev))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03008863 intel_dp_init(dev, DP_C, PORT_C);
Eric Anholt725e30a2009-01-22 13:01:02 -08008864 }
Ma Ling27185ae2009-08-24 13:50:23 +08008865
Jesse Barnesb01f2c32009-12-11 11:07:17 -08008866 if (SUPPORTS_INTEGRATED_DP(dev) &&
Imre Deake7281ea2013-05-08 13:14:08 +03008867 (I915_READ(DP_D) & DP_DETECTED))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03008868 intel_dp_init(dev, DP_D, PORT_D);
Eric Anholtbad720f2009-10-22 16:11:14 -07008869 } else if (IS_GEN2(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -08008870 intel_dvo_init(dev);
8871
Zhenyu Wang103a1962009-11-27 11:44:36 +08008872 if (SUPPORTS_TV(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -08008873 intel_tv_init(dev);
8874
Chris Wilson4ef69c72010-09-09 15:14:28 +01008875 list_for_each_entry(encoder, &dev->mode_config.encoder_list, base.head) {
8876 encoder->base.possible_crtcs = encoder->crtc_mask;
8877 encoder->base.possible_clones =
Daniel Vetter66a92782012-07-12 20:08:18 +02008878 intel_encoder_clones(encoder);
Jesse Barnes79e53942008-11-07 14:24:08 -08008879 }
Chris Wilson47356eb2011-01-11 17:06:04 +00008880
Paulo Zanonidde86e22012-12-01 12:04:25 -02008881 intel_init_pch_refclk(dev);
Daniel Vetter270b3042012-10-27 15:52:05 +02008882
8883 drm_helper_move_panel_connectors_to_head(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08008884}
8885
8886static void intel_user_framebuffer_destroy(struct drm_framebuffer *fb)
8887{
8888 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
Jesse Barnes79e53942008-11-07 14:24:08 -08008889
8890 drm_framebuffer_cleanup(fb);
Chris Wilson05394f32010-11-08 19:18:58 +00008891 drm_gem_object_unreference_unlocked(&intel_fb->obj->base);
Jesse Barnes79e53942008-11-07 14:24:08 -08008892
8893 kfree(intel_fb);
8894}
8895
8896static int intel_user_framebuffer_create_handle(struct drm_framebuffer *fb,
Chris Wilson05394f32010-11-08 19:18:58 +00008897 struct drm_file *file,
Jesse Barnes79e53942008-11-07 14:24:08 -08008898 unsigned int *handle)
8899{
8900 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
Chris Wilson05394f32010-11-08 19:18:58 +00008901 struct drm_i915_gem_object *obj = intel_fb->obj;
Jesse Barnes79e53942008-11-07 14:24:08 -08008902
Chris Wilson05394f32010-11-08 19:18:58 +00008903 return drm_gem_handle_create(file, &obj->base, handle);
Jesse Barnes79e53942008-11-07 14:24:08 -08008904}
8905
8906static const struct drm_framebuffer_funcs intel_fb_funcs = {
8907 .destroy = intel_user_framebuffer_destroy,
8908 .create_handle = intel_user_framebuffer_create_handle,
8909};
8910
Dave Airlie38651672010-03-30 05:34:13 +00008911int intel_framebuffer_init(struct drm_device *dev,
8912 struct intel_framebuffer *intel_fb,
Jesse Barnes308e5bc2011-11-14 14:51:28 -08008913 struct drm_mode_fb_cmd2 *mode_cmd,
Chris Wilson05394f32010-11-08 19:18:58 +00008914 struct drm_i915_gem_object *obj)
Jesse Barnes79e53942008-11-07 14:24:08 -08008915{
Jesse Barnes79e53942008-11-07 14:24:08 -08008916 int ret;
8917
Chris Wilsonc16ed4b2012-12-18 22:13:14 +00008918 if (obj->tiling_mode == I915_TILING_Y) {
8919 DRM_DEBUG("hardware does not support tiling Y\n");
Chris Wilson57cd6502010-08-08 12:34:44 +01008920 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +00008921 }
Chris Wilson57cd6502010-08-08 12:34:44 +01008922
Chris Wilsonc16ed4b2012-12-18 22:13:14 +00008923 if (mode_cmd->pitches[0] & 63) {
8924 DRM_DEBUG("pitch (%d) must be at least 64 byte aligned\n",
8925 mode_cmd->pitches[0]);
Chris Wilson57cd6502010-08-08 12:34:44 +01008926 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +00008927 }
Chris Wilson57cd6502010-08-08 12:34:44 +01008928
Ville Syrjälä5d7bd702012-10-31 17:50:18 +02008929 /* FIXME <= Gen4 stride limits are bit unclear */
Chris Wilsonc16ed4b2012-12-18 22:13:14 +00008930 if (mode_cmd->pitches[0] > 32768) {
8931 DRM_DEBUG("pitch (%d) must be at less than 32768\n",
8932 mode_cmd->pitches[0]);
Ville Syrjälä5d7bd702012-10-31 17:50:18 +02008933 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +00008934 }
Ville Syrjälä5d7bd702012-10-31 17:50:18 +02008935
8936 if (obj->tiling_mode != I915_TILING_NONE &&
Chris Wilsonc16ed4b2012-12-18 22:13:14 +00008937 mode_cmd->pitches[0] != obj->stride) {
8938 DRM_DEBUG("pitch (%d) must match tiling stride (%d)\n",
8939 mode_cmd->pitches[0], obj->stride);
Ville Syrjälä5d7bd702012-10-31 17:50:18 +02008940 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +00008941 }
Ville Syrjälä5d7bd702012-10-31 17:50:18 +02008942
Ville Syrjälä57779d02012-10-31 17:50:14 +02008943 /* Reject formats not supported by any plane early. */
Jesse Barnes308e5bc2011-11-14 14:51:28 -08008944 switch (mode_cmd->pixel_format) {
Ville Syrjälä57779d02012-10-31 17:50:14 +02008945 case DRM_FORMAT_C8:
Ville Syrjälä04b39242011-11-17 18:05:13 +02008946 case DRM_FORMAT_RGB565:
8947 case DRM_FORMAT_XRGB8888:
8948 case DRM_FORMAT_ARGB8888:
Ville Syrjälä57779d02012-10-31 17:50:14 +02008949 break;
8950 case DRM_FORMAT_XRGB1555:
8951 case DRM_FORMAT_ARGB1555:
Chris Wilsonc16ed4b2012-12-18 22:13:14 +00008952 if (INTEL_INFO(dev)->gen > 3) {
8953 DRM_DEBUG("invalid format: 0x%08x\n", mode_cmd->pixel_format);
Ville Syrjälä57779d02012-10-31 17:50:14 +02008954 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +00008955 }
Ville Syrjälä57779d02012-10-31 17:50:14 +02008956 break;
8957 case DRM_FORMAT_XBGR8888:
8958 case DRM_FORMAT_ABGR8888:
Ville Syrjälä04b39242011-11-17 18:05:13 +02008959 case DRM_FORMAT_XRGB2101010:
8960 case DRM_FORMAT_ARGB2101010:
Ville Syrjälä57779d02012-10-31 17:50:14 +02008961 case DRM_FORMAT_XBGR2101010:
8962 case DRM_FORMAT_ABGR2101010:
Chris Wilsonc16ed4b2012-12-18 22:13:14 +00008963 if (INTEL_INFO(dev)->gen < 4) {
8964 DRM_DEBUG("invalid format: 0x%08x\n", mode_cmd->pixel_format);
Ville Syrjälä57779d02012-10-31 17:50:14 +02008965 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +00008966 }
Jesse Barnesb5626742011-06-24 12:19:27 -07008967 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +02008968 case DRM_FORMAT_YUYV:
8969 case DRM_FORMAT_UYVY:
8970 case DRM_FORMAT_YVYU:
8971 case DRM_FORMAT_VYUY:
Chris Wilsonc16ed4b2012-12-18 22:13:14 +00008972 if (INTEL_INFO(dev)->gen < 5) {
8973 DRM_DEBUG("invalid format: 0x%08x\n", mode_cmd->pixel_format);
Ville Syrjälä57779d02012-10-31 17:50:14 +02008974 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +00008975 }
Chris Wilson57cd6502010-08-08 12:34:44 +01008976 break;
8977 default:
Chris Wilsonc16ed4b2012-12-18 22:13:14 +00008978 DRM_DEBUG("unsupported pixel format 0x%08x\n", mode_cmd->pixel_format);
Chris Wilson57cd6502010-08-08 12:34:44 +01008979 return -EINVAL;
8980 }
8981
Ville Syrjälä90f9a332012-10-31 17:50:19 +02008982 /* FIXME need to adjust LINOFF/TILEOFF accordingly. */
8983 if (mode_cmd->offsets[0] != 0)
8984 return -EINVAL;
8985
Daniel Vetterc7d73f62012-12-13 23:38:38 +01008986 drm_helper_mode_fill_fb_struct(&intel_fb->base, mode_cmd);
8987 intel_fb->obj = obj;
8988
Jesse Barnes79e53942008-11-07 14:24:08 -08008989 ret = drm_framebuffer_init(dev, &intel_fb->base, &intel_fb_funcs);
8990 if (ret) {
8991 DRM_ERROR("framebuffer init failed %d\n", ret);
8992 return ret;
8993 }
8994
Jesse Barnes79e53942008-11-07 14:24:08 -08008995 return 0;
8996}
8997
Jesse Barnes79e53942008-11-07 14:24:08 -08008998static struct drm_framebuffer *
8999intel_user_framebuffer_create(struct drm_device *dev,
9000 struct drm_file *filp,
Jesse Barnes308e5bc2011-11-14 14:51:28 -08009001 struct drm_mode_fb_cmd2 *mode_cmd)
Jesse Barnes79e53942008-11-07 14:24:08 -08009002{
Chris Wilson05394f32010-11-08 19:18:58 +00009003 struct drm_i915_gem_object *obj;
Jesse Barnes79e53942008-11-07 14:24:08 -08009004
Jesse Barnes308e5bc2011-11-14 14:51:28 -08009005 obj = to_intel_bo(drm_gem_object_lookup(dev, filp,
9006 mode_cmd->handles[0]));
Chris Wilsonc8725222011-02-19 11:31:06 +00009007 if (&obj->base == NULL)
Chris Wilsoncce13ff2010-08-08 13:36:38 +01009008 return ERR_PTR(-ENOENT);
Jesse Barnes79e53942008-11-07 14:24:08 -08009009
Chris Wilsond2dff872011-04-19 08:36:26 +01009010 return intel_framebuffer_create(dev, mode_cmd, obj);
Jesse Barnes79e53942008-11-07 14:24:08 -08009011}
9012
Jesse Barnes79e53942008-11-07 14:24:08 -08009013static const struct drm_mode_config_funcs intel_mode_funcs = {
Jesse Barnes79e53942008-11-07 14:24:08 -08009014 .fb_create = intel_user_framebuffer_create,
Dave Airlieeb1f8e42010-05-07 06:42:51 +00009015 .output_poll_changed = intel_fb_output_poll_changed,
Jesse Barnes79e53942008-11-07 14:24:08 -08009016};
9017
Jesse Barnese70236a2009-09-21 10:42:27 -07009018/* Set up chip specific display functions */
9019static void intel_init_display(struct drm_device *dev)
9020{
9021 struct drm_i915_private *dev_priv = dev->dev_private;
9022
Daniel Vetteree9300b2013-06-03 22:40:22 +02009023 if (HAS_PCH_SPLIT(dev) || IS_G4X(dev))
9024 dev_priv->display.find_dpll = g4x_find_best_dpll;
9025 else if (IS_VALLEYVIEW(dev))
9026 dev_priv->display.find_dpll = vlv_find_best_dpll;
9027 else if (IS_PINEVIEW(dev))
9028 dev_priv->display.find_dpll = pnv_find_best_dpll;
9029 else
9030 dev_priv->display.find_dpll = i9xx_find_best_dpll;
9031
Paulo Zanoniaffa9352012-11-23 15:30:39 -02009032 if (HAS_DDI(dev)) {
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01009033 dev_priv->display.get_pipe_config = haswell_get_pipe_config;
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03009034 dev_priv->display.crtc_mode_set = haswell_crtc_mode_set;
Paulo Zanoni4f771f12012-10-23 18:29:51 -02009035 dev_priv->display.crtc_enable = haswell_crtc_enable;
9036 dev_priv->display.crtc_disable = haswell_crtc_disable;
Paulo Zanoni6441ab52012-10-05 12:05:58 -03009037 dev_priv->display.off = haswell_crtc_off;
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03009038 dev_priv->display.update_plane = ironlake_update_plane;
9039 } else if (HAS_PCH_SPLIT(dev)) {
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01009040 dev_priv->display.get_pipe_config = ironlake_get_pipe_config;
Eric Anholtf564048e2011-03-30 13:01:02 -07009041 dev_priv->display.crtc_mode_set = ironlake_crtc_mode_set;
Daniel Vetter76e5a892012-06-29 22:39:33 +02009042 dev_priv->display.crtc_enable = ironlake_crtc_enable;
9043 dev_priv->display.crtc_disable = ironlake_crtc_disable;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01009044 dev_priv->display.off = ironlake_crtc_off;
Jesse Barnes17638cd2011-06-24 12:19:23 -07009045 dev_priv->display.update_plane = ironlake_update_plane;
Jesse Barnes89b667f2013-04-18 14:51:36 -07009046 } else if (IS_VALLEYVIEW(dev)) {
9047 dev_priv->display.get_pipe_config = i9xx_get_pipe_config;
9048 dev_priv->display.crtc_mode_set = i9xx_crtc_mode_set;
9049 dev_priv->display.crtc_enable = valleyview_crtc_enable;
9050 dev_priv->display.crtc_disable = i9xx_crtc_disable;
9051 dev_priv->display.off = i9xx_crtc_off;
9052 dev_priv->display.update_plane = i9xx_update_plane;
Eric Anholtf564048e2011-03-30 13:01:02 -07009053 } else {
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01009054 dev_priv->display.get_pipe_config = i9xx_get_pipe_config;
Eric Anholtf564048e2011-03-30 13:01:02 -07009055 dev_priv->display.crtc_mode_set = i9xx_crtc_mode_set;
Daniel Vetter76e5a892012-06-29 22:39:33 +02009056 dev_priv->display.crtc_enable = i9xx_crtc_enable;
9057 dev_priv->display.crtc_disable = i9xx_crtc_disable;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01009058 dev_priv->display.off = i9xx_crtc_off;
Jesse Barnes17638cd2011-06-24 12:19:23 -07009059 dev_priv->display.update_plane = i9xx_update_plane;
Eric Anholtf564048e2011-03-30 13:01:02 -07009060 }
Jesse Barnese70236a2009-09-21 10:42:27 -07009061
Jesse Barnese70236a2009-09-21 10:42:27 -07009062 /* Returns the core display clock speed */
Jesse Barnes25eb05fc2012-03-28 13:39:23 -07009063 if (IS_VALLEYVIEW(dev))
9064 dev_priv->display.get_display_clock_speed =
9065 valleyview_get_display_clock_speed;
9066 else if (IS_I945G(dev) || (IS_G33(dev) && !IS_PINEVIEW_M(dev)))
Jesse Barnese70236a2009-09-21 10:42:27 -07009067 dev_priv->display.get_display_clock_speed =
9068 i945_get_display_clock_speed;
9069 else if (IS_I915G(dev))
9070 dev_priv->display.get_display_clock_speed =
9071 i915_get_display_clock_speed;
Adam Jacksonf2b115e2009-12-03 17:14:42 -05009072 else if (IS_I945GM(dev) || IS_845G(dev) || IS_PINEVIEW_M(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -07009073 dev_priv->display.get_display_clock_speed =
9074 i9xx_misc_get_display_clock_speed;
9075 else if (IS_I915GM(dev))
9076 dev_priv->display.get_display_clock_speed =
9077 i915gm_get_display_clock_speed;
9078 else if (IS_I865G(dev))
9079 dev_priv->display.get_display_clock_speed =
9080 i865_get_display_clock_speed;
Daniel Vetterf0f8a9c2009-09-15 22:57:33 +02009081 else if (IS_I85X(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -07009082 dev_priv->display.get_display_clock_speed =
9083 i855_get_display_clock_speed;
9084 else /* 852, 830 */
9085 dev_priv->display.get_display_clock_speed =
9086 i830_get_display_clock_speed;
9087
Zhenyu Wang7f8a8562010-04-01 13:07:53 +08009088 if (HAS_PCH_SPLIT(dev)) {
Chris Wilsonf00a3dd2010-10-21 14:57:17 +01009089 if (IS_GEN5(dev)) {
Jesse Barnes674cf962011-04-28 14:27:04 -07009090 dev_priv->display.fdi_link_train = ironlake_fdi_link_train;
Wu Fengguange0dac652011-09-05 14:25:34 +08009091 dev_priv->display.write_eld = ironlake_write_eld;
Yuanhan Liu13982612010-12-15 15:42:31 +08009092 } else if (IS_GEN6(dev)) {
Jesse Barnes674cf962011-04-28 14:27:04 -07009093 dev_priv->display.fdi_link_train = gen6_fdi_link_train;
Wu Fengguange0dac652011-09-05 14:25:34 +08009094 dev_priv->display.write_eld = ironlake_write_eld;
Jesse Barnes357555c2011-04-28 15:09:55 -07009095 } else if (IS_IVYBRIDGE(dev)) {
9096 /* FIXME: detect B0+ stepping and use auto training */
9097 dev_priv->display.fdi_link_train = ivb_manual_fdi_link_train;
Wu Fengguange0dac652011-09-05 14:25:34 +08009098 dev_priv->display.write_eld = ironlake_write_eld;
Daniel Vetter01a415f2012-10-27 15:58:40 +02009099 dev_priv->display.modeset_global_resources =
9100 ivb_modeset_global_resources;
Eugeni Dodonovc82e4d22012-05-09 15:37:21 -03009101 } else if (IS_HASWELL(dev)) {
9102 dev_priv->display.fdi_link_train = hsw_fdi_link_train;
Wang Xingchao83358c852012-08-16 22:43:37 +08009103 dev_priv->display.write_eld = haswell_write_eld;
Daniel Vetterd6dd9eb2013-01-29 16:35:20 -02009104 dev_priv->display.modeset_global_resources =
9105 haswell_modeset_global_resources;
Paulo Zanonia0e63c22012-12-06 11:12:39 -02009106 }
Jesse Barnes6067aae2011-04-28 15:04:31 -07009107 } else if (IS_G4X(dev)) {
Wu Fengguange0dac652011-09-05 14:25:34 +08009108 dev_priv->display.write_eld = g4x_write_eld;
Jesse Barnese70236a2009-09-21 10:42:27 -07009109 }
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009110
9111 /* Default just returns -ENODEV to indicate unsupported */
9112 dev_priv->display.queue_flip = intel_default_queue_flip;
9113
9114 switch (INTEL_INFO(dev)->gen) {
9115 case 2:
9116 dev_priv->display.queue_flip = intel_gen2_queue_flip;
9117 break;
9118
9119 case 3:
9120 dev_priv->display.queue_flip = intel_gen3_queue_flip;
9121 break;
9122
9123 case 4:
9124 case 5:
9125 dev_priv->display.queue_flip = intel_gen4_queue_flip;
9126 break;
9127
9128 case 6:
9129 dev_priv->display.queue_flip = intel_gen6_queue_flip;
9130 break;
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009131 case 7:
9132 dev_priv->display.queue_flip = intel_gen7_queue_flip;
9133 break;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009134 }
Jesse Barnese70236a2009-09-21 10:42:27 -07009135}
9136
Jesse Barnesb690e962010-07-19 13:53:12 -07009137/*
9138 * Some BIOSes insist on assuming the GPU's pipe A is enabled at suspend,
9139 * resume, or other times. This quirk makes sure that's the case for
9140 * affected systems.
9141 */
Akshay Joshi0206e352011-08-16 15:34:10 -04009142static void quirk_pipea_force(struct drm_device *dev)
Jesse Barnesb690e962010-07-19 13:53:12 -07009143{
9144 struct drm_i915_private *dev_priv = dev->dev_private;
9145
9146 dev_priv->quirks |= QUIRK_PIPEA_FORCE;
Daniel Vetterbc0daf42012-04-01 13:16:49 +02009147 DRM_INFO("applying pipe a force quirk\n");
Jesse Barnesb690e962010-07-19 13:53:12 -07009148}
9149
Keith Packard435793d2011-07-12 14:56:22 -07009150/*
9151 * Some machines (Lenovo U160) do not work with SSC on LVDS for some reason
9152 */
9153static void quirk_ssc_force_disable(struct drm_device *dev)
9154{
9155 struct drm_i915_private *dev_priv = dev->dev_private;
9156 dev_priv->quirks |= QUIRK_LVDS_SSC_DISABLE;
Daniel Vetterbc0daf42012-04-01 13:16:49 +02009157 DRM_INFO("applying lvds SSC disable quirk\n");
Keith Packard435793d2011-07-12 14:56:22 -07009158}
9159
Carsten Emde4dca20e2012-03-15 15:56:26 +01009160/*
Carsten Emde5a15ab52012-03-15 15:56:27 +01009161 * A machine (e.g. Acer Aspire 5734Z) may need to invert the panel backlight
9162 * brightness value
Carsten Emde4dca20e2012-03-15 15:56:26 +01009163 */
9164static void quirk_invert_brightness(struct drm_device *dev)
9165{
9166 struct drm_i915_private *dev_priv = dev->dev_private;
9167 dev_priv->quirks |= QUIRK_INVERT_BRIGHTNESS;
Daniel Vetterbc0daf42012-04-01 13:16:49 +02009168 DRM_INFO("applying inverted panel brightness quirk\n");
Jesse Barnesb690e962010-07-19 13:53:12 -07009169}
9170
9171struct intel_quirk {
9172 int device;
9173 int subsystem_vendor;
9174 int subsystem_device;
9175 void (*hook)(struct drm_device *dev);
9176};
9177
Egbert Eich5f85f1762012-10-14 15:46:38 +02009178/* For systems that don't have a meaningful PCI subdevice/subvendor ID */
9179struct intel_dmi_quirk {
9180 void (*hook)(struct drm_device *dev);
9181 const struct dmi_system_id (*dmi_id_list)[];
9182};
9183
9184static int intel_dmi_reverse_brightness(const struct dmi_system_id *id)
9185{
9186 DRM_INFO("Backlight polarity reversed on %s\n", id->ident);
9187 return 1;
9188}
9189
9190static const struct intel_dmi_quirk intel_dmi_quirks[] = {
9191 {
9192 .dmi_id_list = &(const struct dmi_system_id[]) {
9193 {
9194 .callback = intel_dmi_reverse_brightness,
9195 .ident = "NCR Corporation",
9196 .matches = {DMI_MATCH(DMI_SYS_VENDOR, "NCR Corporation"),
9197 DMI_MATCH(DMI_PRODUCT_NAME, ""),
9198 },
9199 },
9200 { } /* terminating entry */
9201 },
9202 .hook = quirk_invert_brightness,
9203 },
9204};
9205
Ben Widawskyc43b5632012-04-16 14:07:40 -07009206static struct intel_quirk intel_quirks[] = {
Jesse Barnesb690e962010-07-19 13:53:12 -07009207 /* HP Mini needs pipe A force quirk (LP: #322104) */
Akshay Joshi0206e352011-08-16 15:34:10 -04009208 { 0x27ae, 0x103c, 0x361a, quirk_pipea_force },
Jesse Barnesb690e962010-07-19 13:53:12 -07009209
Jesse Barnesb690e962010-07-19 13:53:12 -07009210 /* Toshiba Protege R-205, S-209 needs pipe A force quirk */
9211 { 0x2592, 0x1179, 0x0001, quirk_pipea_force },
9212
Jesse Barnesb690e962010-07-19 13:53:12 -07009213 /* ThinkPad T60 needs pipe A force quirk (bug #16494) */
9214 { 0x2782, 0x17aa, 0x201a, quirk_pipea_force },
9215
Daniel Vetterccd0d362012-10-10 23:13:59 +02009216 /* 830/845 need to leave pipe A & dpll A up */
Jesse Barnesb690e962010-07-19 13:53:12 -07009217 { 0x2562, PCI_ANY_ID, PCI_ANY_ID, quirk_pipea_force },
Daniel Vetterdcdaed62012-08-12 21:19:34 +02009218 { 0x3577, PCI_ANY_ID, PCI_ANY_ID, quirk_pipea_force },
Keith Packard435793d2011-07-12 14:56:22 -07009219
9220 /* Lenovo U160 cannot use SSC on LVDS */
9221 { 0x0046, 0x17aa, 0x3920, quirk_ssc_force_disable },
Michel Alexandre Salim070d3292011-07-28 18:52:06 +02009222
9223 /* Sony Vaio Y cannot use SSC on LVDS */
9224 { 0x0046, 0x104d, 0x9076, quirk_ssc_force_disable },
Carsten Emde5a15ab52012-03-15 15:56:27 +01009225
9226 /* Acer Aspire 5734Z must invert backlight brightness */
9227 { 0x2a42, 0x1025, 0x0459, quirk_invert_brightness },
Jani Nikula1ffff602013-01-22 12:50:34 +02009228
9229 /* Acer/eMachines G725 */
9230 { 0x2a42, 0x1025, 0x0210, quirk_invert_brightness },
Jani Nikula01e3a8f2013-01-22 12:50:35 +02009231
9232 /* Acer/eMachines e725 */
9233 { 0x2a42, 0x1025, 0x0212, quirk_invert_brightness },
Jani Nikula5559eca2013-01-22 12:50:36 +02009234
9235 /* Acer/Packard Bell NCL20 */
9236 { 0x2a42, 0x1025, 0x034b, quirk_invert_brightness },
Daniel Vetterac4199e2013-02-15 18:35:30 +01009237
9238 /* Acer Aspire 4736Z */
9239 { 0x2a42, 0x1025, 0x0260, quirk_invert_brightness },
Jesse Barnesb690e962010-07-19 13:53:12 -07009240};
9241
9242static void intel_init_quirks(struct drm_device *dev)
9243{
9244 struct pci_dev *d = dev->pdev;
9245 int i;
9246
9247 for (i = 0; i < ARRAY_SIZE(intel_quirks); i++) {
9248 struct intel_quirk *q = &intel_quirks[i];
9249
9250 if (d->device == q->device &&
9251 (d->subsystem_vendor == q->subsystem_vendor ||
9252 q->subsystem_vendor == PCI_ANY_ID) &&
9253 (d->subsystem_device == q->subsystem_device ||
9254 q->subsystem_device == PCI_ANY_ID))
9255 q->hook(dev);
9256 }
Egbert Eich5f85f1762012-10-14 15:46:38 +02009257 for (i = 0; i < ARRAY_SIZE(intel_dmi_quirks); i++) {
9258 if (dmi_check_system(*intel_dmi_quirks[i].dmi_id_list) != 0)
9259 intel_dmi_quirks[i].hook(dev);
9260 }
Jesse Barnesb690e962010-07-19 13:53:12 -07009261}
9262
Jesse Barnes9cce37f2010-08-13 15:11:26 -07009263/* Disable the VGA plane that we never use */
9264static void i915_disable_vga(struct drm_device *dev)
9265{
9266 struct drm_i915_private *dev_priv = dev->dev_private;
9267 u8 sr1;
Ville Syrjälä766aa1c2013-01-25 21:44:46 +02009268 u32 vga_reg = i915_vgacntrl_reg(dev);
Jesse Barnes9cce37f2010-08-13 15:11:26 -07009269
9270 vga_get_uninterruptible(dev->pdev, VGA_RSRC_LEGACY_IO);
Jesse Barnes3fdcf432012-04-06 11:46:27 -07009271 outb(SR01, VGA_SR_INDEX);
Jesse Barnes9cce37f2010-08-13 15:11:26 -07009272 sr1 = inb(VGA_SR_DATA);
9273 outb(sr1 | 1<<5, VGA_SR_DATA);
9274 vga_put(dev->pdev, VGA_RSRC_LEGACY_IO);
9275 udelay(300);
9276
9277 I915_WRITE(vga_reg, VGA_DISP_DISABLE);
9278 POSTING_READ(vga_reg);
9279}
9280
Daniel Vetterf8175862012-04-10 15:50:11 +02009281void intel_modeset_init_hw(struct drm_device *dev)
9282{
Paulo Zanonifa42e232013-01-25 16:59:11 -02009283 intel_init_power_well(dev);
Eugeni Dodonov0232e922012-07-06 15:42:36 -03009284
Eugeni Dodonova8f78b52012-06-28 15:55:35 -03009285 intel_prepare_ddi(dev);
9286
Daniel Vetterf8175862012-04-10 15:50:11 +02009287 intel_init_clock_gating(dev);
9288
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02009289 mutex_lock(&dev->struct_mutex);
Daniel Vetter8090c6b2012-06-24 16:42:32 +02009290 intel_enable_gt_powersave(dev);
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02009291 mutex_unlock(&dev->struct_mutex);
Daniel Vetterf8175862012-04-10 15:50:11 +02009292}
9293
Imre Deak7d708ee2013-04-17 14:04:50 +03009294void intel_modeset_suspend_hw(struct drm_device *dev)
9295{
9296 intel_suspend_hw(dev);
9297}
9298
Jesse Barnes79e53942008-11-07 14:24:08 -08009299void intel_modeset_init(struct drm_device *dev)
9300{
Jesse Barnes652c3932009-08-17 13:31:43 -07009301 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes7f1f3852013-04-02 11:22:20 -07009302 int i, j, ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08009303
9304 drm_mode_config_init(dev);
9305
9306 dev->mode_config.min_width = 0;
9307 dev->mode_config.min_height = 0;
9308
Dave Airlie019d96c2011-09-29 16:20:42 +01009309 dev->mode_config.preferred_depth = 24;
9310 dev->mode_config.prefer_shadow = 1;
9311
Laurent Pincharte6ecefa2012-05-17 13:27:23 +02009312 dev->mode_config.funcs = &intel_mode_funcs;
Jesse Barnes79e53942008-11-07 14:24:08 -08009313
Jesse Barnesb690e962010-07-19 13:53:12 -07009314 intel_init_quirks(dev);
9315
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03009316 intel_init_pm(dev);
9317
Ben Widawskye3c74752013-04-05 13:12:39 -07009318 if (INTEL_INFO(dev)->num_pipes == 0)
9319 return;
9320
Jesse Barnese70236a2009-09-21 10:42:27 -07009321 intel_init_display(dev);
9322
Chris Wilsona6c45cf2010-09-17 00:32:17 +01009323 if (IS_GEN2(dev)) {
9324 dev->mode_config.max_width = 2048;
9325 dev->mode_config.max_height = 2048;
9326 } else if (IS_GEN3(dev)) {
Keith Packard5e4d6fa2009-07-12 23:53:17 -07009327 dev->mode_config.max_width = 4096;
9328 dev->mode_config.max_height = 4096;
Jesse Barnes79e53942008-11-07 14:24:08 -08009329 } else {
Chris Wilsona6c45cf2010-09-17 00:32:17 +01009330 dev->mode_config.max_width = 8192;
9331 dev->mode_config.max_height = 8192;
Jesse Barnes79e53942008-11-07 14:24:08 -08009332 }
Ben Widawsky5d4545a2013-01-17 12:45:15 -08009333 dev->mode_config.fb_base = dev_priv->gtt.mappable_base;
Jesse Barnes79e53942008-11-07 14:24:08 -08009334
Zhao Yakui28c97732009-10-09 11:39:41 +08009335 DRM_DEBUG_KMS("%d display pipe%s available.\n",
Ben Widawsky7eb552a2013-03-13 14:05:41 -07009336 INTEL_INFO(dev)->num_pipes,
9337 INTEL_INFO(dev)->num_pipes > 1 ? "s" : "");
Jesse Barnes79e53942008-11-07 14:24:08 -08009338
Ben Widawsky7eb552a2013-03-13 14:05:41 -07009339 for (i = 0; i < INTEL_INFO(dev)->num_pipes; i++) {
Jesse Barnes79e53942008-11-07 14:24:08 -08009340 intel_crtc_init(dev, i);
Jesse Barnes7f1f3852013-04-02 11:22:20 -07009341 for (j = 0; j < dev_priv->num_plane; j++) {
9342 ret = intel_plane_init(dev, i, j);
9343 if (ret)
Ville Syrjälä06da8da2013-04-17 17:48:51 +03009344 DRM_DEBUG_KMS("pipe %c sprite %c init failed: %d\n",
9345 pipe_name(i), sprite_name(i, j), ret);
Jesse Barnes7f1f3852013-04-02 11:22:20 -07009346 }
Jesse Barnes79e53942008-11-07 14:24:08 -08009347 }
9348
Paulo Zanoni79f689a2012-10-05 12:05:52 -03009349 intel_cpu_pll_init(dev);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01009350 intel_pch_pll_init(dev);
9351
Jesse Barnes9cce37f2010-08-13 15:11:26 -07009352 /* Just disable it once at startup */
9353 i915_disable_vga(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08009354 intel_setup_outputs(dev);
Chris Wilson11be49e2012-11-15 11:32:20 +00009355
9356 /* Just in case the BIOS is doing something questionable. */
9357 intel_disable_fbc(dev);
Chris Wilson2c7111d2011-03-29 10:40:27 +01009358}
Jesse Barnesd5bb0812011-01-05 12:01:26 -08009359
Daniel Vetter24929352012-07-02 20:28:59 +02009360static void
9361intel_connector_break_all_links(struct intel_connector *connector)
9362{
9363 connector->base.dpms = DRM_MODE_DPMS_OFF;
9364 connector->base.encoder = NULL;
9365 connector->encoder->connectors_active = false;
9366 connector->encoder->base.crtc = NULL;
9367}
9368
Daniel Vetter7fad7982012-07-04 17:51:47 +02009369static void intel_enable_pipe_a(struct drm_device *dev)
9370{
9371 struct intel_connector *connector;
9372 struct drm_connector *crt = NULL;
9373 struct intel_load_detect_pipe load_detect_temp;
9374
9375 /* We can't just switch on the pipe A, we need to set things up with a
9376 * proper mode and output configuration. As a gross hack, enable pipe A
9377 * by enabling the load detect pipe once. */
9378 list_for_each_entry(connector,
9379 &dev->mode_config.connector_list,
9380 base.head) {
9381 if (connector->encoder->type == INTEL_OUTPUT_ANALOG) {
9382 crt = &connector->base;
9383 break;
9384 }
9385 }
9386
9387 if (!crt)
9388 return;
9389
9390 if (intel_get_load_detect_pipe(crt, NULL, &load_detect_temp))
9391 intel_release_load_detect_pipe(crt, &load_detect_temp);
9392
9393
9394}
9395
Daniel Vetterfa555832012-10-10 23:14:00 +02009396static bool
9397intel_check_plane_mapping(struct intel_crtc *crtc)
9398{
Ben Widawsky7eb552a2013-03-13 14:05:41 -07009399 struct drm_device *dev = crtc->base.dev;
9400 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterfa555832012-10-10 23:14:00 +02009401 u32 reg, val;
9402
Ben Widawsky7eb552a2013-03-13 14:05:41 -07009403 if (INTEL_INFO(dev)->num_pipes == 1)
Daniel Vetterfa555832012-10-10 23:14:00 +02009404 return true;
9405
9406 reg = DSPCNTR(!crtc->plane);
9407 val = I915_READ(reg);
9408
9409 if ((val & DISPLAY_PLANE_ENABLE) &&
9410 (!!(val & DISPPLANE_SEL_PIPE_MASK) == crtc->pipe))
9411 return false;
9412
9413 return true;
9414}
9415
Daniel Vetter24929352012-07-02 20:28:59 +02009416static void intel_sanitize_crtc(struct intel_crtc *crtc)
9417{
9418 struct drm_device *dev = crtc->base.dev;
9419 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterfa555832012-10-10 23:14:00 +02009420 u32 reg;
Daniel Vetter24929352012-07-02 20:28:59 +02009421
Daniel Vetter24929352012-07-02 20:28:59 +02009422 /* Clear any frame start delays used for debugging left by the BIOS */
Daniel Vetter3b117c82013-04-17 20:15:07 +02009423 reg = PIPECONF(crtc->config.cpu_transcoder);
Daniel Vetter24929352012-07-02 20:28:59 +02009424 I915_WRITE(reg, I915_READ(reg) & ~PIPECONF_FRAME_START_DELAY_MASK);
9425
9426 /* We need to sanitize the plane -> pipe mapping first because this will
Daniel Vetterfa555832012-10-10 23:14:00 +02009427 * disable the crtc (and hence change the state) if it is wrong. Note
9428 * that gen4+ has a fixed plane -> pipe mapping. */
9429 if (INTEL_INFO(dev)->gen < 4 && !intel_check_plane_mapping(crtc)) {
Daniel Vetter24929352012-07-02 20:28:59 +02009430 struct intel_connector *connector;
9431 bool plane;
9432
Daniel Vetter24929352012-07-02 20:28:59 +02009433 DRM_DEBUG_KMS("[CRTC:%d] wrong plane connection detected!\n",
9434 crtc->base.base.id);
9435
9436 /* Pipe has the wrong plane attached and the plane is active.
9437 * Temporarily change the plane mapping and disable everything
9438 * ... */
9439 plane = crtc->plane;
9440 crtc->plane = !plane;
9441 dev_priv->display.crtc_disable(&crtc->base);
9442 crtc->plane = plane;
9443
9444 /* ... and break all links. */
9445 list_for_each_entry(connector, &dev->mode_config.connector_list,
9446 base.head) {
9447 if (connector->encoder->base.crtc != &crtc->base)
9448 continue;
9449
9450 intel_connector_break_all_links(connector);
9451 }
9452
9453 WARN_ON(crtc->active);
9454 crtc->base.enabled = false;
9455 }
Daniel Vetter24929352012-07-02 20:28:59 +02009456
Daniel Vetter7fad7982012-07-04 17:51:47 +02009457 if (dev_priv->quirks & QUIRK_PIPEA_FORCE &&
9458 crtc->pipe == PIPE_A && !crtc->active) {
9459 /* BIOS forgot to enable pipe A, this mostly happens after
9460 * resume. Force-enable the pipe to fix this, the update_dpms
9461 * call below we restore the pipe to the right state, but leave
9462 * the required bits on. */
9463 intel_enable_pipe_a(dev);
9464 }
9465
Daniel Vetter24929352012-07-02 20:28:59 +02009466 /* Adjust the state of the output pipe according to whether we
9467 * have active connectors/encoders. */
9468 intel_crtc_update_dpms(&crtc->base);
9469
9470 if (crtc->active != crtc->base.enabled) {
9471 struct intel_encoder *encoder;
9472
9473 /* This can happen either due to bugs in the get_hw_state
9474 * functions or because the pipe is force-enabled due to the
9475 * pipe A quirk. */
9476 DRM_DEBUG_KMS("[CRTC:%d] hw state adjusted, was %s, now %s\n",
9477 crtc->base.base.id,
9478 crtc->base.enabled ? "enabled" : "disabled",
9479 crtc->active ? "enabled" : "disabled");
9480
9481 crtc->base.enabled = crtc->active;
9482
9483 /* Because we only establish the connector -> encoder ->
9484 * crtc links if something is active, this means the
9485 * crtc is now deactivated. Break the links. connector
9486 * -> encoder links are only establish when things are
9487 * actually up, hence no need to break them. */
9488 WARN_ON(crtc->active);
9489
9490 for_each_encoder_on_crtc(dev, &crtc->base, encoder) {
9491 WARN_ON(encoder->connectors_active);
9492 encoder->base.crtc = NULL;
9493 }
9494 }
9495}
9496
9497static void intel_sanitize_encoder(struct intel_encoder *encoder)
9498{
9499 struct intel_connector *connector;
9500 struct drm_device *dev = encoder->base.dev;
9501
9502 /* We need to check both for a crtc link (meaning that the
9503 * encoder is active and trying to read from a pipe) and the
9504 * pipe itself being active. */
9505 bool has_active_crtc = encoder->base.crtc &&
9506 to_intel_crtc(encoder->base.crtc)->active;
9507
9508 if (encoder->connectors_active && !has_active_crtc) {
9509 DRM_DEBUG_KMS("[ENCODER:%d:%s] has active connectors but no active pipe!\n",
9510 encoder->base.base.id,
9511 drm_get_encoder_name(&encoder->base));
9512
9513 /* Connector is active, but has no active pipe. This is
9514 * fallout from our resume register restoring. Disable
9515 * the encoder manually again. */
9516 if (encoder->base.crtc) {
9517 DRM_DEBUG_KMS("[ENCODER:%d:%s] manually disabled\n",
9518 encoder->base.base.id,
9519 drm_get_encoder_name(&encoder->base));
9520 encoder->disable(encoder);
9521 }
9522
9523 /* Inconsistent output/port/pipe state happens presumably due to
9524 * a bug in one of the get_hw_state functions. Or someplace else
9525 * in our code, like the register restore mess on resume. Clamp
9526 * things to off as a safer default. */
9527 list_for_each_entry(connector,
9528 &dev->mode_config.connector_list,
9529 base.head) {
9530 if (connector->encoder != encoder)
9531 continue;
9532
9533 intel_connector_break_all_links(connector);
9534 }
9535 }
9536 /* Enabled encoders without active connectors will be fixed in
9537 * the crtc fixup. */
9538}
9539
Daniel Vetter44cec742013-01-25 17:53:21 +01009540void i915_redisable_vga(struct drm_device *dev)
Krzysztof Mazur0fde9012012-12-19 11:03:41 +01009541{
9542 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä766aa1c2013-01-25 21:44:46 +02009543 u32 vga_reg = i915_vgacntrl_reg(dev);
Krzysztof Mazur0fde9012012-12-19 11:03:41 +01009544
9545 if (I915_READ(vga_reg) != VGA_DISP_DISABLE) {
9546 DRM_DEBUG_KMS("Something enabled VGA plane, disabling it\n");
Ville Syrjälä209d5212013-01-25 21:44:48 +02009547 i915_disable_vga(dev);
Krzysztof Mazur0fde9012012-12-19 11:03:41 +01009548 }
9549}
9550
Daniel Vetter24929352012-07-02 20:28:59 +02009551/* Scan out the current hw modeset state, sanitizes it and maps it into the drm
9552 * and i915 state tracking structures. */
Daniel Vetter45e2b5f2012-11-23 18:16:34 +01009553void intel_modeset_setup_hw_state(struct drm_device *dev,
9554 bool force_restore)
Daniel Vetter24929352012-07-02 20:28:59 +02009555{
9556 struct drm_i915_private *dev_priv = dev->dev_private;
9557 enum pipe pipe;
Jesse Barnesb5644d02013-03-26 13:25:27 -07009558 struct drm_plane *plane;
Daniel Vetter24929352012-07-02 20:28:59 +02009559 struct intel_crtc *crtc;
9560 struct intel_encoder *encoder;
9561 struct intel_connector *connector;
9562
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01009563 list_for_each_entry(crtc, &dev->mode_config.crtc_list,
9564 base.head) {
Daniel Vetter88adfff2013-03-28 10:42:01 +01009565 memset(&crtc->config, 0, sizeof(crtc->config));
Daniel Vetter3b117c82013-04-17 20:15:07 +02009566
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01009567 crtc->active = dev_priv->display.get_pipe_config(crtc,
9568 &crtc->config);
Daniel Vetter24929352012-07-02 20:28:59 +02009569
9570 crtc->base.enabled = crtc->active;
9571
9572 DRM_DEBUG_KMS("[CRTC:%d] hw state readout: %s\n",
9573 crtc->base.base.id,
9574 crtc->active ? "enabled" : "disabled");
9575 }
9576
Paulo Zanoniaffa9352012-11-23 15:30:39 -02009577 if (HAS_DDI(dev))
Paulo Zanoni6441ab52012-10-05 12:05:58 -03009578 intel_ddi_setup_hw_pll_state(dev);
9579
Daniel Vetter24929352012-07-02 20:28:59 +02009580 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
9581 base.head) {
9582 pipe = 0;
9583
9584 if (encoder->get_hw_state(encoder, &pipe)) {
Jesse Barnes045ac3b2013-05-14 17:08:26 -07009585 crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
9586 encoder->base.crtc = &crtc->base;
9587 if (encoder->get_config)
9588 encoder->get_config(encoder, &crtc->config);
Daniel Vetter24929352012-07-02 20:28:59 +02009589 } else {
9590 encoder->base.crtc = NULL;
9591 }
9592
9593 encoder->connectors_active = false;
9594 DRM_DEBUG_KMS("[ENCODER:%d:%s] hw state readout: %s, pipe=%i\n",
9595 encoder->base.base.id,
9596 drm_get_encoder_name(&encoder->base),
9597 encoder->base.crtc ? "enabled" : "disabled",
9598 pipe);
9599 }
9600
9601 list_for_each_entry(connector, &dev->mode_config.connector_list,
9602 base.head) {
9603 if (connector->get_hw_state(connector)) {
9604 connector->base.dpms = DRM_MODE_DPMS_ON;
9605 connector->encoder->connectors_active = true;
9606 connector->base.encoder = &connector->encoder->base;
9607 } else {
9608 connector->base.dpms = DRM_MODE_DPMS_OFF;
9609 connector->base.encoder = NULL;
9610 }
9611 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] hw state readout: %s\n",
9612 connector->base.base.id,
9613 drm_get_connector_name(&connector->base),
9614 connector->base.encoder ? "enabled" : "disabled");
9615 }
9616
9617 /* HW state is read out, now we need to sanitize this mess. */
9618 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
9619 base.head) {
9620 intel_sanitize_encoder(encoder);
9621 }
9622
9623 for_each_pipe(pipe) {
9624 crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
9625 intel_sanitize_crtc(crtc);
Daniel Vetterc0b03412013-05-28 12:05:54 +02009626 intel_dump_pipe_config(crtc, &crtc->config, "[setup_hw_state]");
Daniel Vetter24929352012-07-02 20:28:59 +02009627 }
Daniel Vetter9a935852012-07-05 22:34:27 +02009628
Daniel Vetter45e2b5f2012-11-23 18:16:34 +01009629 if (force_restore) {
Daniel Vetterf30da182013-04-11 20:22:50 +02009630 /*
9631 * We need to use raw interfaces for restoring state to avoid
9632 * checking (bogus) intermediate states.
9633 */
Daniel Vetter45e2b5f2012-11-23 18:16:34 +01009634 for_each_pipe(pipe) {
Jesse Barnesb5644d02013-03-26 13:25:27 -07009635 struct drm_crtc *crtc =
9636 dev_priv->pipe_to_crtc_mapping[pipe];
Daniel Vetterf30da182013-04-11 20:22:50 +02009637
9638 __intel_set_mode(crtc, &crtc->mode, crtc->x, crtc->y,
9639 crtc->fb);
Daniel Vetter45e2b5f2012-11-23 18:16:34 +01009640 }
Jesse Barnesb5644d02013-03-26 13:25:27 -07009641 list_for_each_entry(plane, &dev->mode_config.plane_list, head)
9642 intel_plane_restore(plane);
Krzysztof Mazur0fde9012012-12-19 11:03:41 +01009643
9644 i915_redisable_vga(dev);
Daniel Vetter45e2b5f2012-11-23 18:16:34 +01009645 } else {
9646 intel_modeset_update_staged_output_state(dev);
9647 }
Daniel Vetter8af6cf82012-07-10 09:50:11 +02009648
9649 intel_modeset_check_state(dev);
Daniel Vetter2e938892012-10-11 20:08:24 +02009650
9651 drm_mode_config_reset(dev);
Chris Wilson2c7111d2011-03-29 10:40:27 +01009652}
9653
9654void intel_modeset_gem_init(struct drm_device *dev)
9655{
Chris Wilson1833b132012-05-09 11:56:28 +01009656 intel_modeset_init_hw(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +02009657
9658 intel_setup_overlay(dev);
Daniel Vetter24929352012-07-02 20:28:59 +02009659
Daniel Vetter45e2b5f2012-11-23 18:16:34 +01009660 intel_modeset_setup_hw_state(dev, false);
Jesse Barnes79e53942008-11-07 14:24:08 -08009661}
9662
9663void intel_modeset_cleanup(struct drm_device *dev)
9664{
Jesse Barnes652c3932009-08-17 13:31:43 -07009665 struct drm_i915_private *dev_priv = dev->dev_private;
9666 struct drm_crtc *crtc;
9667 struct intel_crtc *intel_crtc;
9668
Daniel Vetterfd0c0642013-04-24 11:13:35 +02009669 /*
9670 * Interrupts and polling as the first thing to avoid creating havoc.
9671 * Too much stuff here (turning of rps, connectors, ...) would
9672 * experience fancy races otherwise.
9673 */
9674 drm_irq_uninstall(dev);
9675 cancel_work_sync(&dev_priv->hotplug_work);
9676 /*
9677 * Due to the hpd irq storm handling the hotplug work can re-arm the
9678 * poll handlers. Hence disable polling after hpd handling is shut down.
9679 */
Keith Packardf87ea762010-10-03 19:36:26 -07009680 drm_kms_helper_poll_fini(dev);
Daniel Vetterfd0c0642013-04-24 11:13:35 +02009681
Jesse Barnes652c3932009-08-17 13:31:43 -07009682 mutex_lock(&dev->struct_mutex);
9683
Jesse Barnes723bfd72010-10-07 16:01:13 -07009684 intel_unregister_dsm_handler();
9685
Jesse Barnes652c3932009-08-17 13:31:43 -07009686 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
9687 /* Skip inactive CRTCs */
9688 if (!crtc->fb)
9689 continue;
9690
9691 intel_crtc = to_intel_crtc(crtc);
Daniel Vetter3dec0092010-08-20 21:40:52 +02009692 intel_increase_pllclock(crtc);
Jesse Barnes652c3932009-08-17 13:31:43 -07009693 }
9694
Chris Wilson973d04f2011-07-08 12:22:37 +01009695 intel_disable_fbc(dev);
Jesse Barnese70236a2009-09-21 10:42:27 -07009696
Daniel Vetter8090c6b2012-06-24 16:42:32 +02009697 intel_disable_gt_powersave(dev);
Chris Wilson0cdab212010-12-05 17:27:06 +00009698
Daniel Vetter930ebb42012-06-29 23:32:16 +02009699 ironlake_teardown_rc6(dev);
9700
Kristian Høgsberg69341a52009-11-11 12:19:17 -05009701 mutex_unlock(&dev->struct_mutex);
9702
Chris Wilson1630fe72011-07-08 12:22:42 +01009703 /* flush any delayed tasks or pending work */
9704 flush_scheduled_work();
9705
Jani Nikuladc652f92013-04-12 15:18:38 +03009706 /* destroy backlight, if any, before the connectors */
9707 intel_panel_destroy_backlight(dev);
9708
Jesse Barnes79e53942008-11-07 14:24:08 -08009709 drm_mode_config_cleanup(dev);
Daniel Vetter4d7bb012012-12-18 15:24:37 +01009710
9711 intel_cleanup_overlay(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08009712}
9713
Dave Airlie28d52042009-09-21 14:33:58 +10009714/*
Zhenyu Wangf1c79df2010-03-30 14:39:29 +08009715 * Return which encoder is currently attached for connector.
9716 */
Chris Wilsondf0e9242010-09-09 16:20:55 +01009717struct drm_encoder *intel_best_encoder(struct drm_connector *connector)
Jesse Barnes79e53942008-11-07 14:24:08 -08009718{
Chris Wilsondf0e9242010-09-09 16:20:55 +01009719 return &intel_attached_encoder(connector)->base;
9720}
Jesse Barnes79e53942008-11-07 14:24:08 -08009721
Chris Wilsondf0e9242010-09-09 16:20:55 +01009722void intel_connector_attach_encoder(struct intel_connector *connector,
9723 struct intel_encoder *encoder)
9724{
9725 connector->encoder = encoder;
9726 drm_mode_connector_attach_encoder(&connector->base,
9727 &encoder->base);
Jesse Barnes79e53942008-11-07 14:24:08 -08009728}
Dave Airlie28d52042009-09-21 14:33:58 +10009729
9730/*
9731 * set vga decode state - true == enable VGA decode
9732 */
9733int intel_modeset_vga_set_state(struct drm_device *dev, bool state)
9734{
9735 struct drm_i915_private *dev_priv = dev->dev_private;
9736 u16 gmch_ctrl;
9737
9738 pci_read_config_word(dev_priv->bridge_dev, INTEL_GMCH_CTRL, &gmch_ctrl);
9739 if (state)
9740 gmch_ctrl &= ~INTEL_GMCH_VGA_DISABLE;
9741 else
9742 gmch_ctrl |= INTEL_GMCH_VGA_DISABLE;
9743 pci_write_config_word(dev_priv->bridge_dev, INTEL_GMCH_CTRL, gmch_ctrl);
9744 return 0;
9745}
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00009746
9747#ifdef CONFIG_DEBUG_FS
9748#include <linux/seq_file.h>
9749
9750struct intel_display_error_state {
Paulo Zanoniff57f1b2013-05-03 12:15:37 -03009751
9752 u32 power_well_driver;
9753
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00009754 struct intel_cursor_error_state {
9755 u32 control;
9756 u32 position;
9757 u32 base;
9758 u32 size;
Damien Lespiau52331302012-08-15 19:23:25 +01009759 } cursor[I915_MAX_PIPES];
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00009760
9761 struct intel_pipe_error_state {
Paulo Zanoniff57f1b2013-05-03 12:15:37 -03009762 enum transcoder cpu_transcoder;
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00009763 u32 conf;
9764 u32 source;
9765
9766 u32 htotal;
9767 u32 hblank;
9768 u32 hsync;
9769 u32 vtotal;
9770 u32 vblank;
9771 u32 vsync;
Damien Lespiau52331302012-08-15 19:23:25 +01009772 } pipe[I915_MAX_PIPES];
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00009773
9774 struct intel_plane_error_state {
9775 u32 control;
9776 u32 stride;
9777 u32 size;
9778 u32 pos;
9779 u32 addr;
9780 u32 surface;
9781 u32 tile_offset;
Damien Lespiau52331302012-08-15 19:23:25 +01009782 } plane[I915_MAX_PIPES];
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00009783};
9784
9785struct intel_display_error_state *
9786intel_display_capture_error_state(struct drm_device *dev)
9787{
Akshay Joshi0206e352011-08-16 15:34:10 -04009788 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00009789 struct intel_display_error_state *error;
Paulo Zanoni702e7a52012-10-23 18:29:59 -02009790 enum transcoder cpu_transcoder;
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00009791 int i;
9792
9793 error = kmalloc(sizeof(*error), GFP_ATOMIC);
9794 if (error == NULL)
9795 return NULL;
9796
Paulo Zanoniff57f1b2013-05-03 12:15:37 -03009797 if (HAS_POWER_WELL(dev))
9798 error->power_well_driver = I915_READ(HSW_PWR_WELL_DRIVER);
9799
Damien Lespiau52331302012-08-15 19:23:25 +01009800 for_each_pipe(i) {
Paulo Zanoni702e7a52012-10-23 18:29:59 -02009801 cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv, i);
Paulo Zanoniff57f1b2013-05-03 12:15:37 -03009802 error->pipe[i].cpu_transcoder = cpu_transcoder;
Paulo Zanoni702e7a52012-10-23 18:29:59 -02009803
Paulo Zanonia18c4c32013-03-06 20:03:12 -03009804 if (INTEL_INFO(dev)->gen <= 6 || IS_VALLEYVIEW(dev)) {
9805 error->cursor[i].control = I915_READ(CURCNTR(i));
9806 error->cursor[i].position = I915_READ(CURPOS(i));
9807 error->cursor[i].base = I915_READ(CURBASE(i));
9808 } else {
9809 error->cursor[i].control = I915_READ(CURCNTR_IVB(i));
9810 error->cursor[i].position = I915_READ(CURPOS_IVB(i));
9811 error->cursor[i].base = I915_READ(CURBASE_IVB(i));
9812 }
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00009813
9814 error->plane[i].control = I915_READ(DSPCNTR(i));
9815 error->plane[i].stride = I915_READ(DSPSTRIDE(i));
Paulo Zanoni80ca3782013-03-22 14:20:57 -03009816 if (INTEL_INFO(dev)->gen <= 3) {
Paulo Zanoni51889b32013-03-06 20:03:13 -03009817 error->plane[i].size = I915_READ(DSPSIZE(i));
Paulo Zanoni80ca3782013-03-22 14:20:57 -03009818 error->plane[i].pos = I915_READ(DSPPOS(i));
9819 }
Paulo Zanonica291362013-03-06 20:03:14 -03009820 if (INTEL_INFO(dev)->gen <= 7 && !IS_HASWELL(dev))
9821 error->plane[i].addr = I915_READ(DSPADDR(i));
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00009822 if (INTEL_INFO(dev)->gen >= 4) {
9823 error->plane[i].surface = I915_READ(DSPSURF(i));
9824 error->plane[i].tile_offset = I915_READ(DSPTILEOFF(i));
9825 }
9826
Paulo Zanoni702e7a52012-10-23 18:29:59 -02009827 error->pipe[i].conf = I915_READ(PIPECONF(cpu_transcoder));
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00009828 error->pipe[i].source = I915_READ(PIPESRC(i));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02009829 error->pipe[i].htotal = I915_READ(HTOTAL(cpu_transcoder));
9830 error->pipe[i].hblank = I915_READ(HBLANK(cpu_transcoder));
9831 error->pipe[i].hsync = I915_READ(HSYNC(cpu_transcoder));
9832 error->pipe[i].vtotal = I915_READ(VTOTAL(cpu_transcoder));
9833 error->pipe[i].vblank = I915_READ(VBLANK(cpu_transcoder));
9834 error->pipe[i].vsync = I915_READ(VSYNC(cpu_transcoder));
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00009835 }
9836
Paulo Zanoni12d217c2013-05-03 12:15:38 -03009837 /* In the code above we read the registers without checking if the power
9838 * well was on, so here we have to clear the FPGA_DBG_RM_NOCLAIM bit to
9839 * prevent the next I915_WRITE from detecting it and printing an error
9840 * message. */
9841 if (HAS_POWER_WELL(dev))
9842 I915_WRITE_NOTRACE(FPGA_DBG, FPGA_DBG_RM_NOCLAIM);
9843
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00009844 return error;
9845}
9846
Mika Kuoppalaedc3d882013-05-23 13:55:35 +03009847#define err_printf(e, ...) i915_error_printf(e, __VA_ARGS__)
9848
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00009849void
Mika Kuoppalaedc3d882013-05-23 13:55:35 +03009850intel_display_print_error_state(struct drm_i915_error_state_buf *m,
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00009851 struct drm_device *dev,
9852 struct intel_display_error_state *error)
9853{
9854 int i;
9855
Mika Kuoppalaedc3d882013-05-23 13:55:35 +03009856 err_printf(m, "Num Pipes: %d\n", INTEL_INFO(dev)->num_pipes);
Paulo Zanoniff57f1b2013-05-03 12:15:37 -03009857 if (HAS_POWER_WELL(dev))
Mika Kuoppalaedc3d882013-05-23 13:55:35 +03009858 err_printf(m, "PWR_WELL_CTL2: %08x\n",
Paulo Zanoniff57f1b2013-05-03 12:15:37 -03009859 error->power_well_driver);
Damien Lespiau52331302012-08-15 19:23:25 +01009860 for_each_pipe(i) {
Mika Kuoppalaedc3d882013-05-23 13:55:35 +03009861 err_printf(m, "Pipe [%d]:\n", i);
9862 err_printf(m, " CPU transcoder: %c\n",
Paulo Zanoniff57f1b2013-05-03 12:15:37 -03009863 transcoder_name(error->pipe[i].cpu_transcoder));
Mika Kuoppalaedc3d882013-05-23 13:55:35 +03009864 err_printf(m, " CONF: %08x\n", error->pipe[i].conf);
9865 err_printf(m, " SRC: %08x\n", error->pipe[i].source);
9866 err_printf(m, " HTOTAL: %08x\n", error->pipe[i].htotal);
9867 err_printf(m, " HBLANK: %08x\n", error->pipe[i].hblank);
9868 err_printf(m, " HSYNC: %08x\n", error->pipe[i].hsync);
9869 err_printf(m, " VTOTAL: %08x\n", error->pipe[i].vtotal);
9870 err_printf(m, " VBLANK: %08x\n", error->pipe[i].vblank);
9871 err_printf(m, " VSYNC: %08x\n", error->pipe[i].vsync);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00009872
Mika Kuoppalaedc3d882013-05-23 13:55:35 +03009873 err_printf(m, "Plane [%d]:\n", i);
9874 err_printf(m, " CNTR: %08x\n", error->plane[i].control);
9875 err_printf(m, " STRIDE: %08x\n", error->plane[i].stride);
Paulo Zanoni80ca3782013-03-22 14:20:57 -03009876 if (INTEL_INFO(dev)->gen <= 3) {
Mika Kuoppalaedc3d882013-05-23 13:55:35 +03009877 err_printf(m, " SIZE: %08x\n", error->plane[i].size);
9878 err_printf(m, " POS: %08x\n", error->plane[i].pos);
Paulo Zanoni80ca3782013-03-22 14:20:57 -03009879 }
Paulo Zanoni4b71a572013-03-22 14:19:21 -03009880 if (INTEL_INFO(dev)->gen <= 7 && !IS_HASWELL(dev))
Mika Kuoppalaedc3d882013-05-23 13:55:35 +03009881 err_printf(m, " ADDR: %08x\n", error->plane[i].addr);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00009882 if (INTEL_INFO(dev)->gen >= 4) {
Mika Kuoppalaedc3d882013-05-23 13:55:35 +03009883 err_printf(m, " SURF: %08x\n", error->plane[i].surface);
9884 err_printf(m, " TILEOFF: %08x\n", error->plane[i].tile_offset);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00009885 }
9886
Mika Kuoppalaedc3d882013-05-23 13:55:35 +03009887 err_printf(m, "Cursor [%d]:\n", i);
9888 err_printf(m, " CNTR: %08x\n", error->cursor[i].control);
9889 err_printf(m, " POS: %08x\n", error->cursor[i].position);
9890 err_printf(m, " BASE: %08x\n", error->cursor[i].base);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00009891 }
9892}
9893#endif