blob: 83b785f400fe060c9b9f15425695000d871e8990 [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>
Jesse Barnes79e53942008-11-07 14:24:08 -080035#include "drmP.h"
36#include "intel_drv.h"
37#include "i915_drm.h"
38#include "i915_drv.h"
Jesse Barnese5510fa2010-07-01 16:48:37 -070039#include "i915_trace.h"
Dave Airlieab2c0672009-12-04 10:55:24 +100040#include "drm_dp_helper.h"
Jesse Barnes79e53942008-11-07 14:24:08 -080041#include "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
Zhenyu Wang32f9d652009-07-24 01:00:32 +080044#define HAS_eDP (intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP))
45
Akshay Joshi0206e352011-08-16 15:34:10 -040046bool intel_pipe_has_type(struct drm_crtc *crtc, int type);
Daniel Vetter3dec0092010-08-20 21:40:52 +020047static void intel_increase_pllclock(struct drm_crtc *crtc);
Chris Wilson6b383a72010-09-13 13:54:26 +010048static void intel_crtc_update_cursor(struct drm_crtc *crtc, bool on);
Jesse Barnes79e53942008-11-07 14:24:08 -080049
50typedef struct {
Akshay Joshi0206e352011-08-16 15:34:10 -040051 /* given values */
52 int n;
53 int m1, m2;
54 int p1, p2;
55 /* derived values */
56 int dot;
57 int vco;
58 int m;
59 int p;
Jesse Barnes79e53942008-11-07 14:24:08 -080060} intel_clock_t;
61
62typedef struct {
Akshay Joshi0206e352011-08-16 15:34:10 -040063 int min, max;
Jesse Barnes79e53942008-11-07 14:24:08 -080064} intel_range_t;
65
66typedef struct {
Akshay Joshi0206e352011-08-16 15:34:10 -040067 int dot_limit;
68 int p2_slow, p2_fast;
Jesse Barnes79e53942008-11-07 14:24:08 -080069} intel_p2_t;
70
71#define INTEL_P2_NUM 2
Ma Lingd4906092009-03-18 20:13:27 +080072typedef struct intel_limit intel_limit_t;
73struct intel_limit {
Akshay Joshi0206e352011-08-16 15:34:10 -040074 intel_range_t dot, vco, n, m, m1, m2, p, p1;
75 intel_p2_t p2;
76 bool (* find_pll)(const intel_limit_t *, struct drm_crtc *,
Sean Paulcec2f352012-01-10 15:09:36 -080077 int, int, intel_clock_t *, intel_clock_t *);
Ma Lingd4906092009-03-18 20:13:27 +080078};
Jesse Barnes79e53942008-11-07 14:24:08 -080079
Jesse Barnes2377b742010-07-07 14:06:43 -070080/* FDI */
81#define IRONLAKE_FDI_FREQ 2700000 /* in kHz for mode->clock */
82
Ma Lingd4906092009-03-18 20:13:27 +080083static bool
84intel_find_best_PLL(const intel_limit_t *limit, struct drm_crtc *crtc,
Sean Paulcec2f352012-01-10 15:09:36 -080085 int target, int refclk, intel_clock_t *match_clock,
86 intel_clock_t *best_clock);
Ma Lingd4906092009-03-18 20:13:27 +080087static bool
88intel_g4x_find_best_PLL(const intel_limit_t *limit, struct drm_crtc *crtc,
Sean Paulcec2f352012-01-10 15:09:36 -080089 int target, int refclk, intel_clock_t *match_clock,
90 intel_clock_t *best_clock);
Jesse Barnes79e53942008-11-07 14:24:08 -080091
Keith Packarda4fc5ed2009-04-07 16:16:42 -070092static bool
93intel_find_pll_g4x_dp(const intel_limit_t *, struct drm_crtc *crtc,
Sean Paulcec2f352012-01-10 15:09:36 -080094 int target, int refclk, intel_clock_t *match_clock,
95 intel_clock_t *best_clock);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +080096static bool
Adam Jacksonf2b115e2009-12-03 17:14:42 -050097intel_find_pll_ironlake_dp(const intel_limit_t *, struct drm_crtc *crtc,
Sean Paulcec2f352012-01-10 15:09:36 -080098 int target, int refclk, intel_clock_t *match_clock,
99 intel_clock_t *best_clock);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700100
Chris Wilson021357a2010-09-07 20:54:59 +0100101static inline u32 /* units of 100MHz */
102intel_fdi_link_freq(struct drm_device *dev)
103{
Chris Wilson8b99e682010-10-13 09:59:17 +0100104 if (IS_GEN5(dev)) {
105 struct drm_i915_private *dev_priv = dev->dev_private;
106 return (I915_READ(FDI_PLL_BIOS_0) & FDI_PLL_FB_CLOCK_MASK) + 2;
107 } else
108 return 27;
Chris Wilson021357a2010-09-07 20:54:59 +0100109}
110
Keith Packarde4b36692009-06-05 19:22:17 -0700111static const intel_limit_t intel_limits_i8xx_dvo = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400112 .dot = { .min = 25000, .max = 350000 },
113 .vco = { .min = 930000, .max = 1400000 },
114 .n = { .min = 3, .max = 16 },
115 .m = { .min = 96, .max = 140 },
116 .m1 = { .min = 18, .max = 26 },
117 .m2 = { .min = 6, .max = 16 },
118 .p = { .min = 4, .max = 128 },
119 .p1 = { .min = 2, .max = 33 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700120 .p2 = { .dot_limit = 165000,
121 .p2_slow = 4, .p2_fast = 2 },
Ma Lingd4906092009-03-18 20:13:27 +0800122 .find_pll = intel_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700123};
124
125static const intel_limit_t intel_limits_i8xx_lvds = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400126 .dot = { .min = 25000, .max = 350000 },
127 .vco = { .min = 930000, .max = 1400000 },
128 .n = { .min = 3, .max = 16 },
129 .m = { .min = 96, .max = 140 },
130 .m1 = { .min = 18, .max = 26 },
131 .m2 = { .min = 6, .max = 16 },
132 .p = { .min = 4, .max = 128 },
133 .p1 = { .min = 1, .max = 6 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700134 .p2 = { .dot_limit = 165000,
135 .p2_slow = 14, .p2_fast = 7 },
Ma Lingd4906092009-03-18 20:13:27 +0800136 .find_pll = intel_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700137};
Eric Anholt273e27c2011-03-30 13:01:10 -0700138
Keith Packarde4b36692009-06-05 19:22:17 -0700139static const intel_limit_t intel_limits_i9xx_sdvo = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400140 .dot = { .min = 20000, .max = 400000 },
141 .vco = { .min = 1400000, .max = 2800000 },
142 .n = { .min = 1, .max = 6 },
143 .m = { .min = 70, .max = 120 },
144 .m1 = { .min = 10, .max = 22 },
145 .m2 = { .min = 5, .max = 9 },
146 .p = { .min = 5, .max = 80 },
147 .p1 = { .min = 1, .max = 8 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700148 .p2 = { .dot_limit = 200000,
149 .p2_slow = 10, .p2_fast = 5 },
Ma Lingd4906092009-03-18 20:13:27 +0800150 .find_pll = intel_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700151};
152
153static const intel_limit_t intel_limits_i9xx_lvds = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400154 .dot = { .min = 20000, .max = 400000 },
155 .vco = { .min = 1400000, .max = 2800000 },
156 .n = { .min = 1, .max = 6 },
157 .m = { .min = 70, .max = 120 },
158 .m1 = { .min = 10, .max = 22 },
159 .m2 = { .min = 5, .max = 9 },
160 .p = { .min = 7, .max = 98 },
161 .p1 = { .min = 1, .max = 8 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700162 .p2 = { .dot_limit = 112000,
163 .p2_slow = 14, .p2_fast = 7 },
Ma Lingd4906092009-03-18 20:13:27 +0800164 .find_pll = intel_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700165};
166
Eric Anholt273e27c2011-03-30 13:01:10 -0700167
Keith Packarde4b36692009-06-05 19:22:17 -0700168static const intel_limit_t intel_limits_g4x_sdvo = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700169 .dot = { .min = 25000, .max = 270000 },
170 .vco = { .min = 1750000, .max = 3500000},
171 .n = { .min = 1, .max = 4 },
172 .m = { .min = 104, .max = 138 },
173 .m1 = { .min = 17, .max = 23 },
174 .m2 = { .min = 5, .max = 11 },
175 .p = { .min = 10, .max = 30 },
176 .p1 = { .min = 1, .max = 3},
177 .p2 = { .dot_limit = 270000,
178 .p2_slow = 10,
179 .p2_fast = 10
Ma Ling044c7c42009-03-18 20:13:23 +0800180 },
Ma Lingd4906092009-03-18 20:13:27 +0800181 .find_pll = intel_g4x_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700182};
183
184static const intel_limit_t intel_limits_g4x_hdmi = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700185 .dot = { .min = 22000, .max = 400000 },
186 .vco = { .min = 1750000, .max = 3500000},
187 .n = { .min = 1, .max = 4 },
188 .m = { .min = 104, .max = 138 },
189 .m1 = { .min = 16, .max = 23 },
190 .m2 = { .min = 5, .max = 11 },
191 .p = { .min = 5, .max = 80 },
192 .p1 = { .min = 1, .max = 8},
193 .p2 = { .dot_limit = 165000,
194 .p2_slow = 10, .p2_fast = 5 },
Ma Lingd4906092009-03-18 20:13:27 +0800195 .find_pll = intel_g4x_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700196};
197
198static const intel_limit_t intel_limits_g4x_single_channel_lvds = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700199 .dot = { .min = 20000, .max = 115000 },
200 .vco = { .min = 1750000, .max = 3500000 },
201 .n = { .min = 1, .max = 3 },
202 .m = { .min = 104, .max = 138 },
203 .m1 = { .min = 17, .max = 23 },
204 .m2 = { .min = 5, .max = 11 },
205 .p = { .min = 28, .max = 112 },
206 .p1 = { .min = 2, .max = 8 },
207 .p2 = { .dot_limit = 0,
208 .p2_slow = 14, .p2_fast = 14
Ma Ling044c7c42009-03-18 20:13:23 +0800209 },
Ma Lingd4906092009-03-18 20:13:27 +0800210 .find_pll = intel_g4x_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700211};
212
213static const intel_limit_t intel_limits_g4x_dual_channel_lvds = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700214 .dot = { .min = 80000, .max = 224000 },
215 .vco = { .min = 1750000, .max = 3500000 },
216 .n = { .min = 1, .max = 3 },
217 .m = { .min = 104, .max = 138 },
218 .m1 = { .min = 17, .max = 23 },
219 .m2 = { .min = 5, .max = 11 },
220 .p = { .min = 14, .max = 42 },
221 .p1 = { .min = 2, .max = 6 },
222 .p2 = { .dot_limit = 0,
223 .p2_slow = 7, .p2_fast = 7
Ma Ling044c7c42009-03-18 20:13:23 +0800224 },
Ma Lingd4906092009-03-18 20:13:27 +0800225 .find_pll = intel_g4x_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700226};
227
228static const intel_limit_t intel_limits_g4x_display_port = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400229 .dot = { .min = 161670, .max = 227000 },
230 .vco = { .min = 1750000, .max = 3500000},
231 .n = { .min = 1, .max = 2 },
232 .m = { .min = 97, .max = 108 },
233 .m1 = { .min = 0x10, .max = 0x12 },
234 .m2 = { .min = 0x05, .max = 0x06 },
235 .p = { .min = 10, .max = 20 },
236 .p1 = { .min = 1, .max = 2},
237 .p2 = { .dot_limit = 0,
Eric Anholt273e27c2011-03-30 13:01:10 -0700238 .p2_slow = 10, .p2_fast = 10 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400239 .find_pll = intel_find_pll_g4x_dp,
Keith Packarde4b36692009-06-05 19:22:17 -0700240};
241
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500242static const intel_limit_t intel_limits_pineview_sdvo = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400243 .dot = { .min = 20000, .max = 400000},
244 .vco = { .min = 1700000, .max = 3500000 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700245 /* Pineview's Ncounter is a ring counter */
Akshay Joshi0206e352011-08-16 15:34:10 -0400246 .n = { .min = 3, .max = 6 },
247 .m = { .min = 2, .max = 256 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700248 /* Pineview only has one combined m divider, which we treat as m2. */
Akshay Joshi0206e352011-08-16 15:34:10 -0400249 .m1 = { .min = 0, .max = 0 },
250 .m2 = { .min = 0, .max = 254 },
251 .p = { .min = 5, .max = 80 },
252 .p1 = { .min = 1, .max = 8 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700253 .p2 = { .dot_limit = 200000,
254 .p2_slow = 10, .p2_fast = 5 },
Shaohua Li61157072009-04-03 15:24:43 +0800255 .find_pll = intel_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700256};
257
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500258static const intel_limit_t intel_limits_pineview_lvds = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400259 .dot = { .min = 20000, .max = 400000 },
260 .vco = { .min = 1700000, .max = 3500000 },
261 .n = { .min = 3, .max = 6 },
262 .m = { .min = 2, .max = 256 },
263 .m1 = { .min = 0, .max = 0 },
264 .m2 = { .min = 0, .max = 254 },
265 .p = { .min = 7, .max = 112 },
266 .p1 = { .min = 1, .max = 8 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700267 .p2 = { .dot_limit = 112000,
268 .p2_slow = 14, .p2_fast = 14 },
Shaohua Li61157072009-04-03 15:24:43 +0800269 .find_pll = intel_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700270};
271
Eric Anholt273e27c2011-03-30 13:01:10 -0700272/* Ironlake / Sandybridge
273 *
274 * We calculate clock using (register_value + 2) for N/M1/M2, so here
275 * the range value for them is (actual_value - 2).
276 */
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800277static const intel_limit_t intel_limits_ironlake_dac = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700278 .dot = { .min = 25000, .max = 350000 },
279 .vco = { .min = 1760000, .max = 3510000 },
280 .n = { .min = 1, .max = 5 },
281 .m = { .min = 79, .max = 127 },
282 .m1 = { .min = 12, .max = 22 },
283 .m2 = { .min = 5, .max = 9 },
284 .p = { .min = 5, .max = 80 },
285 .p1 = { .min = 1, .max = 8 },
286 .p2 = { .dot_limit = 225000,
287 .p2_slow = 10, .p2_fast = 5 },
Zhao Yakui45476682009-12-31 16:06:04 +0800288 .find_pll = intel_g4x_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700289};
290
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800291static const intel_limit_t intel_limits_ironlake_single_lvds = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700292 .dot = { .min = 25000, .max = 350000 },
293 .vco = { .min = 1760000, .max = 3510000 },
294 .n = { .min = 1, .max = 3 },
295 .m = { .min = 79, .max = 118 },
296 .m1 = { .min = 12, .max = 22 },
297 .m2 = { .min = 5, .max = 9 },
298 .p = { .min = 28, .max = 112 },
299 .p1 = { .min = 2, .max = 8 },
300 .p2 = { .dot_limit = 225000,
301 .p2_slow = 14, .p2_fast = 14 },
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800302 .find_pll = intel_g4x_find_best_PLL,
303};
304
305static const intel_limit_t intel_limits_ironlake_dual_lvds = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700306 .dot = { .min = 25000, .max = 350000 },
307 .vco = { .min = 1760000, .max = 3510000 },
308 .n = { .min = 1, .max = 3 },
309 .m = { .min = 79, .max = 127 },
310 .m1 = { .min = 12, .max = 22 },
311 .m2 = { .min = 5, .max = 9 },
312 .p = { .min = 14, .max = 56 },
313 .p1 = { .min = 2, .max = 8 },
314 .p2 = { .dot_limit = 225000,
315 .p2_slow = 7, .p2_fast = 7 },
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800316 .find_pll = intel_g4x_find_best_PLL,
317};
318
Eric Anholt273e27c2011-03-30 13:01:10 -0700319/* LVDS 100mhz refclk limits. */
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800320static const intel_limit_t intel_limits_ironlake_single_lvds_100m = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700321 .dot = { .min = 25000, .max = 350000 },
322 .vco = { .min = 1760000, .max = 3510000 },
323 .n = { .min = 1, .max = 2 },
324 .m = { .min = 79, .max = 126 },
325 .m1 = { .min = 12, .max = 22 },
326 .m2 = { .min = 5, .max = 9 },
327 .p = { .min = 28, .max = 112 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400328 .p1 = { .min = 2, .max = 8 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700329 .p2 = { .dot_limit = 225000,
330 .p2_slow = 14, .p2_fast = 14 },
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800331 .find_pll = intel_g4x_find_best_PLL,
332};
333
334static const intel_limit_t intel_limits_ironlake_dual_lvds_100m = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700335 .dot = { .min = 25000, .max = 350000 },
336 .vco = { .min = 1760000, .max = 3510000 },
337 .n = { .min = 1, .max = 3 },
338 .m = { .min = 79, .max = 126 },
339 .m1 = { .min = 12, .max = 22 },
340 .m2 = { .min = 5, .max = 9 },
341 .p = { .min = 14, .max = 42 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400342 .p1 = { .min = 2, .max = 6 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700343 .p2 = { .dot_limit = 225000,
344 .p2_slow = 7, .p2_fast = 7 },
Zhao Yakui45476682009-12-31 16:06:04 +0800345 .find_pll = intel_g4x_find_best_PLL,
346};
347
348static const intel_limit_t intel_limits_ironlake_display_port = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400349 .dot = { .min = 25000, .max = 350000 },
350 .vco = { .min = 1760000, .max = 3510000},
351 .n = { .min = 1, .max = 2 },
352 .m = { .min = 81, .max = 90 },
353 .m1 = { .min = 12, .max = 22 },
354 .m2 = { .min = 5, .max = 9 },
355 .p = { .min = 10, .max = 20 },
356 .p1 = { .min = 1, .max = 2},
357 .p2 = { .dot_limit = 0,
Eric Anholt273e27c2011-03-30 13:01:10 -0700358 .p2_slow = 10, .p2_fast = 10 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400359 .find_pll = intel_find_pll_ironlake_dp,
Jesse Barnes79e53942008-11-07 14:24:08 -0800360};
361
Jesse Barnes57f350b2012-03-28 13:39:25 -0700362u32 intel_dpio_read(struct drm_i915_private *dev_priv, int reg)
363{
364 unsigned long flags;
365 u32 val = 0;
366
367 spin_lock_irqsave(&dev_priv->dpio_lock, flags);
368 if (wait_for_atomic_us((I915_READ(DPIO_PKT) & DPIO_BUSY) == 0, 100)) {
369 DRM_ERROR("DPIO idle wait timed out\n");
370 goto out_unlock;
371 }
372
373 I915_WRITE(DPIO_REG, reg);
374 I915_WRITE(DPIO_PKT, DPIO_RID | DPIO_OP_READ | DPIO_PORTID |
375 DPIO_BYTE);
376 if (wait_for_atomic_us((I915_READ(DPIO_PKT) & DPIO_BUSY) == 0, 100)) {
377 DRM_ERROR("DPIO read wait timed out\n");
378 goto out_unlock;
379 }
380 val = I915_READ(DPIO_DATA);
381
382out_unlock:
383 spin_unlock_irqrestore(&dev_priv->dpio_lock, flags);
384 return val;
385}
386
Jesse Barnes57f350b2012-03-28 13:39:25 -0700387static void vlv_init_dpio(struct drm_device *dev)
388{
389 struct drm_i915_private *dev_priv = dev->dev_private;
390
391 /* Reset the DPIO config */
392 I915_WRITE(DPIO_CTL, 0);
393 POSTING_READ(DPIO_CTL);
394 I915_WRITE(DPIO_CTL, 1);
395 POSTING_READ(DPIO_CTL);
396}
397
Daniel Vetter618563e2012-04-01 13:38:50 +0200398static int intel_dual_link_lvds_callback(const struct dmi_system_id *id)
399{
400 DRM_INFO("Forcing lvds to dual link mode on %s\n", id->ident);
401 return 1;
402}
403
404static const struct dmi_system_id intel_dual_link_lvds[] = {
405 {
406 .callback = intel_dual_link_lvds_callback,
407 .ident = "Apple MacBook Pro (Core i5/i7 Series)",
408 .matches = {
409 DMI_MATCH(DMI_SYS_VENDOR, "Apple Inc."),
410 DMI_MATCH(DMI_PRODUCT_NAME, "MacBookPro8,2"),
411 },
412 },
413 { } /* terminating entry */
414};
415
Takashi Iwaib0354382012-03-20 13:07:05 +0100416static bool is_dual_link_lvds(struct drm_i915_private *dev_priv,
417 unsigned int reg)
418{
419 unsigned int val;
420
Takashi Iwai121d5272012-03-20 13:07:06 +0100421 /* use the module option value if specified */
422 if (i915_lvds_channel_mode > 0)
423 return i915_lvds_channel_mode == 2;
424
Daniel Vetter618563e2012-04-01 13:38:50 +0200425 if (dmi_check_system(intel_dual_link_lvds))
426 return true;
427
Takashi Iwaib0354382012-03-20 13:07:05 +0100428 if (dev_priv->lvds_val)
429 val = dev_priv->lvds_val;
430 else {
431 /* BIOS should set the proper LVDS register value at boot, but
432 * in reality, it doesn't set the value when the lid is closed;
433 * we need to check "the value to be set" in VBT when LVDS
434 * register is uninitialized.
435 */
436 val = I915_READ(reg);
437 if (!(val & ~LVDS_DETECTED))
438 val = dev_priv->bios_lvds_val;
439 dev_priv->lvds_val = val;
440 }
441 return (val & LVDS_CLKB_POWER_MASK) == LVDS_CLKB_POWER_UP;
442}
443
Chris Wilson1b894b52010-12-14 20:04:54 +0000444static const intel_limit_t *intel_ironlake_limit(struct drm_crtc *crtc,
445 int refclk)
Zhenyu Wang2c072452009-06-05 15:38:42 +0800446{
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800447 struct drm_device *dev = crtc->dev;
448 struct drm_i915_private *dev_priv = dev->dev_private;
Zhenyu Wang2c072452009-06-05 15:38:42 +0800449 const intel_limit_t *limit;
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800450
451 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
Takashi Iwaib0354382012-03-20 13:07:05 +0100452 if (is_dual_link_lvds(dev_priv, PCH_LVDS)) {
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800453 /* LVDS dual channel */
Chris Wilson1b894b52010-12-14 20:04:54 +0000454 if (refclk == 100000)
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800455 limit = &intel_limits_ironlake_dual_lvds_100m;
456 else
457 limit = &intel_limits_ironlake_dual_lvds;
458 } else {
Chris Wilson1b894b52010-12-14 20:04:54 +0000459 if (refclk == 100000)
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800460 limit = &intel_limits_ironlake_single_lvds_100m;
461 else
462 limit = &intel_limits_ironlake_single_lvds;
463 }
464 } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT) ||
Zhao Yakui45476682009-12-31 16:06:04 +0800465 HAS_eDP)
466 limit = &intel_limits_ironlake_display_port;
Zhenyu Wang2c072452009-06-05 15:38:42 +0800467 else
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800468 limit = &intel_limits_ironlake_dac;
Zhenyu Wang2c072452009-06-05 15:38:42 +0800469
470 return limit;
471}
472
Ma Ling044c7c42009-03-18 20:13:23 +0800473static const intel_limit_t *intel_g4x_limit(struct drm_crtc *crtc)
474{
475 struct drm_device *dev = crtc->dev;
476 struct drm_i915_private *dev_priv = dev->dev_private;
477 const intel_limit_t *limit;
478
479 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
Takashi Iwaib0354382012-03-20 13:07:05 +0100480 if (is_dual_link_lvds(dev_priv, LVDS))
Ma Ling044c7c42009-03-18 20:13:23 +0800481 /* LVDS with dual channel */
Keith Packarde4b36692009-06-05 19:22:17 -0700482 limit = &intel_limits_g4x_dual_channel_lvds;
Ma Ling044c7c42009-03-18 20:13:23 +0800483 else
484 /* LVDS with dual channel */
Keith Packarde4b36692009-06-05 19:22:17 -0700485 limit = &intel_limits_g4x_single_channel_lvds;
Ma Ling044c7c42009-03-18 20:13:23 +0800486 } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI) ||
487 intel_pipe_has_type(crtc, INTEL_OUTPUT_ANALOG)) {
Keith Packarde4b36692009-06-05 19:22:17 -0700488 limit = &intel_limits_g4x_hdmi;
Ma Ling044c7c42009-03-18 20:13:23 +0800489 } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_SDVO)) {
Keith Packarde4b36692009-06-05 19:22:17 -0700490 limit = &intel_limits_g4x_sdvo;
Akshay Joshi0206e352011-08-16 15:34:10 -0400491 } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT)) {
Keith Packarde4b36692009-06-05 19:22:17 -0700492 limit = &intel_limits_g4x_display_port;
Ma Ling044c7c42009-03-18 20:13:23 +0800493 } else /* The option is for other outputs */
Keith Packarde4b36692009-06-05 19:22:17 -0700494 limit = &intel_limits_i9xx_sdvo;
Ma Ling044c7c42009-03-18 20:13:23 +0800495
496 return limit;
497}
498
Chris Wilson1b894b52010-12-14 20:04:54 +0000499static const intel_limit_t *intel_limit(struct drm_crtc *crtc, int refclk)
Jesse Barnes79e53942008-11-07 14:24:08 -0800500{
501 struct drm_device *dev = crtc->dev;
502 const intel_limit_t *limit;
503
Eric Anholtbad720f2009-10-22 16:11:14 -0700504 if (HAS_PCH_SPLIT(dev))
Chris Wilson1b894b52010-12-14 20:04:54 +0000505 limit = intel_ironlake_limit(crtc, refclk);
Zhenyu Wang2c072452009-06-05 15:38:42 +0800506 else if (IS_G4X(dev)) {
Ma Ling044c7c42009-03-18 20:13:23 +0800507 limit = intel_g4x_limit(crtc);
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500508 } else if (IS_PINEVIEW(dev)) {
Shaohua Li21778322009-02-23 15:19:16 +0800509 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS))
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500510 limit = &intel_limits_pineview_lvds;
Shaohua Li21778322009-02-23 15:19:16 +0800511 else
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500512 limit = &intel_limits_pineview_sdvo;
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100513 } else if (!IS_GEN2(dev)) {
514 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS))
515 limit = &intel_limits_i9xx_lvds;
516 else
517 limit = &intel_limits_i9xx_sdvo;
Jesse Barnes79e53942008-11-07 14:24:08 -0800518 } else {
519 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS))
Keith Packarde4b36692009-06-05 19:22:17 -0700520 limit = &intel_limits_i8xx_lvds;
Jesse Barnes79e53942008-11-07 14:24:08 -0800521 else
Keith Packarde4b36692009-06-05 19:22:17 -0700522 limit = &intel_limits_i8xx_dvo;
Jesse Barnes79e53942008-11-07 14:24:08 -0800523 }
524 return limit;
525}
526
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500527/* m1 is reserved as 0 in Pineview, n is a ring counter */
528static void pineview_clock(int refclk, intel_clock_t *clock)
Jesse Barnes79e53942008-11-07 14:24:08 -0800529{
Shaohua Li21778322009-02-23 15:19:16 +0800530 clock->m = clock->m2 + 2;
531 clock->p = clock->p1 * clock->p2;
532 clock->vco = refclk * clock->m / clock->n;
533 clock->dot = clock->vco / clock->p;
534}
535
536static void intel_clock(struct drm_device *dev, int refclk, intel_clock_t *clock)
537{
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500538 if (IS_PINEVIEW(dev)) {
539 pineview_clock(refclk, clock);
Shaohua Li21778322009-02-23 15:19:16 +0800540 return;
541 }
Jesse Barnes79e53942008-11-07 14:24:08 -0800542 clock->m = 5 * (clock->m1 + 2) + (clock->m2 + 2);
543 clock->p = clock->p1 * clock->p2;
544 clock->vco = refclk * clock->m / (clock->n + 2);
545 clock->dot = clock->vco / clock->p;
546}
547
Jesse Barnes79e53942008-11-07 14:24:08 -0800548/**
549 * Returns whether any output on the specified pipe is of the specified type
550 */
Chris Wilson4ef69c72010-09-09 15:14:28 +0100551bool intel_pipe_has_type(struct drm_crtc *crtc, int type)
Jesse Barnes79e53942008-11-07 14:24:08 -0800552{
Chris Wilson4ef69c72010-09-09 15:14:28 +0100553 struct drm_device *dev = crtc->dev;
554 struct drm_mode_config *mode_config = &dev->mode_config;
555 struct intel_encoder *encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -0800556
Chris Wilson4ef69c72010-09-09 15:14:28 +0100557 list_for_each_entry(encoder, &mode_config->encoder_list, base.head)
558 if (encoder->base.crtc == crtc && encoder->type == type)
559 return true;
560
561 return false;
Jesse Barnes79e53942008-11-07 14:24:08 -0800562}
563
Jesse Barnes7c04d1d2009-02-23 15:36:40 -0800564#define INTELPllInvalid(s) do { /* DRM_DEBUG(s); */ return false; } while (0)
Jesse Barnes79e53942008-11-07 14:24:08 -0800565/**
566 * Returns whether the given set of divisors are valid for a given refclk with
567 * the given connectors.
568 */
569
Chris Wilson1b894b52010-12-14 20:04:54 +0000570static bool intel_PLL_is_valid(struct drm_device *dev,
571 const intel_limit_t *limit,
572 const intel_clock_t *clock)
Jesse Barnes79e53942008-11-07 14:24:08 -0800573{
Jesse Barnes79e53942008-11-07 14:24:08 -0800574 if (clock->p1 < limit->p1.min || limit->p1.max < clock->p1)
Akshay Joshi0206e352011-08-16 15:34:10 -0400575 INTELPllInvalid("p1 out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800576 if (clock->p < limit->p.min || limit->p.max < clock->p)
Akshay Joshi0206e352011-08-16 15:34:10 -0400577 INTELPllInvalid("p out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800578 if (clock->m2 < limit->m2.min || limit->m2.max < clock->m2)
Akshay Joshi0206e352011-08-16 15:34:10 -0400579 INTELPllInvalid("m2 out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800580 if (clock->m1 < limit->m1.min || limit->m1.max < clock->m1)
Akshay Joshi0206e352011-08-16 15:34:10 -0400581 INTELPllInvalid("m1 out of range\n");
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500582 if (clock->m1 <= clock->m2 && !IS_PINEVIEW(dev))
Akshay Joshi0206e352011-08-16 15:34:10 -0400583 INTELPllInvalid("m1 <= m2\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800584 if (clock->m < limit->m.min || limit->m.max < clock->m)
Akshay Joshi0206e352011-08-16 15:34:10 -0400585 INTELPllInvalid("m out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800586 if (clock->n < limit->n.min || limit->n.max < clock->n)
Akshay Joshi0206e352011-08-16 15:34:10 -0400587 INTELPllInvalid("n out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800588 if (clock->vco < limit->vco.min || limit->vco.max < clock->vco)
Akshay Joshi0206e352011-08-16 15:34:10 -0400589 INTELPllInvalid("vco out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800590 /* XXX: We may need to be checking "Dot clock" depending on the multiplier,
591 * connector, etc., rather than just a single range.
592 */
593 if (clock->dot < limit->dot.min || limit->dot.max < clock->dot)
Akshay Joshi0206e352011-08-16 15:34:10 -0400594 INTELPllInvalid("dot out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800595
596 return true;
597}
598
Ma Lingd4906092009-03-18 20:13:27 +0800599static bool
600intel_find_best_PLL(const intel_limit_t *limit, struct drm_crtc *crtc,
Sean Paulcec2f352012-01-10 15:09:36 -0800601 int target, int refclk, intel_clock_t *match_clock,
602 intel_clock_t *best_clock)
Ma Lingd4906092009-03-18 20:13:27 +0800603
Jesse Barnes79e53942008-11-07 14:24:08 -0800604{
605 struct drm_device *dev = crtc->dev;
606 struct drm_i915_private *dev_priv = dev->dev_private;
607 intel_clock_t clock;
Jesse Barnes79e53942008-11-07 14:24:08 -0800608 int err = target;
609
Bruno Prémontbc5e5712009-08-08 13:01:17 +0200610 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) &&
Florian Mickler832cc282009-07-13 18:40:32 +0800611 (I915_READ(LVDS)) != 0) {
Jesse Barnes79e53942008-11-07 14:24:08 -0800612 /*
613 * For LVDS, if the panel is on, just rely on its current
614 * settings for dual-channel. We haven't figured out how to
615 * reliably set up different single/dual channel state, if we
616 * even can.
617 */
Takashi Iwaib0354382012-03-20 13:07:05 +0100618 if (is_dual_link_lvds(dev_priv, LVDS))
Jesse Barnes79e53942008-11-07 14:24:08 -0800619 clock.p2 = limit->p2.p2_fast;
620 else
621 clock.p2 = limit->p2.p2_slow;
622 } else {
623 if (target < limit->p2.dot_limit)
624 clock.p2 = limit->p2.p2_slow;
625 else
626 clock.p2 = limit->p2.p2_fast;
627 }
628
Akshay Joshi0206e352011-08-16 15:34:10 -0400629 memset(best_clock, 0, sizeof(*best_clock));
Jesse Barnes79e53942008-11-07 14:24:08 -0800630
Zhao Yakui42158662009-11-20 11:24:18 +0800631 for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max;
632 clock.m1++) {
633 for (clock.m2 = limit->m2.min;
634 clock.m2 <= limit->m2.max; clock.m2++) {
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500635 /* m1 is always 0 in Pineview */
636 if (clock.m2 >= clock.m1 && !IS_PINEVIEW(dev))
Zhao Yakui42158662009-11-20 11:24:18 +0800637 break;
638 for (clock.n = limit->n.min;
639 clock.n <= limit->n.max; clock.n++) {
640 for (clock.p1 = limit->p1.min;
641 clock.p1 <= limit->p1.max; clock.p1++) {
Jesse Barnes79e53942008-11-07 14:24:08 -0800642 int this_err;
643
Shaohua Li21778322009-02-23 15:19:16 +0800644 intel_clock(dev, refclk, &clock);
Chris Wilson1b894b52010-12-14 20:04:54 +0000645 if (!intel_PLL_is_valid(dev, limit,
646 &clock))
Jesse Barnes79e53942008-11-07 14:24:08 -0800647 continue;
Sean Paulcec2f352012-01-10 15:09:36 -0800648 if (match_clock &&
649 clock.p != match_clock->p)
650 continue;
Jesse Barnes79e53942008-11-07 14:24:08 -0800651
652 this_err = abs(clock.dot - target);
653 if (this_err < err) {
654 *best_clock = clock;
655 err = this_err;
656 }
657 }
658 }
659 }
660 }
661
662 return (err != target);
663}
664
Ma Lingd4906092009-03-18 20:13:27 +0800665static bool
666intel_g4x_find_best_PLL(const intel_limit_t *limit, struct drm_crtc *crtc,
Sean Paulcec2f352012-01-10 15:09:36 -0800667 int target, int refclk, intel_clock_t *match_clock,
668 intel_clock_t *best_clock)
Ma Lingd4906092009-03-18 20:13:27 +0800669{
670 struct drm_device *dev = crtc->dev;
671 struct drm_i915_private *dev_priv = dev->dev_private;
672 intel_clock_t clock;
673 int max_n;
674 bool found;
Adam Jackson6ba770d2010-07-02 16:43:30 -0400675 /* approximately equals target * 0.00585 */
676 int err_most = (target >> 8) + (target >> 9);
Ma Lingd4906092009-03-18 20:13:27 +0800677 found = false;
678
679 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
Zhao Yakui45476682009-12-31 16:06:04 +0800680 int lvds_reg;
681
Eric Anholtc619eed2010-01-28 16:45:52 -0800682 if (HAS_PCH_SPLIT(dev))
Zhao Yakui45476682009-12-31 16:06:04 +0800683 lvds_reg = PCH_LVDS;
684 else
685 lvds_reg = LVDS;
686 if ((I915_READ(lvds_reg) & LVDS_CLKB_POWER_MASK) ==
Ma Lingd4906092009-03-18 20:13:27 +0800687 LVDS_CLKB_POWER_UP)
688 clock.p2 = limit->p2.p2_fast;
689 else
690 clock.p2 = limit->p2.p2_slow;
691 } else {
692 if (target < limit->p2.dot_limit)
693 clock.p2 = limit->p2.p2_slow;
694 else
695 clock.p2 = limit->p2.p2_fast;
696 }
697
698 memset(best_clock, 0, sizeof(*best_clock));
699 max_n = limit->n.max;
Gilles Espinassef77f13e2010-03-29 15:41:47 +0200700 /* based on hardware requirement, prefer smaller n to precision */
Ma Lingd4906092009-03-18 20:13:27 +0800701 for (clock.n = limit->n.min; clock.n <= max_n; clock.n++) {
Gilles Espinassef77f13e2010-03-29 15:41:47 +0200702 /* based on hardware requirement, prefere larger m1,m2 */
Ma Lingd4906092009-03-18 20:13:27 +0800703 for (clock.m1 = limit->m1.max;
704 clock.m1 >= limit->m1.min; clock.m1--) {
705 for (clock.m2 = limit->m2.max;
706 clock.m2 >= limit->m2.min; clock.m2--) {
707 for (clock.p1 = limit->p1.max;
708 clock.p1 >= limit->p1.min; clock.p1--) {
709 int this_err;
710
Shaohua Li21778322009-02-23 15:19:16 +0800711 intel_clock(dev, refclk, &clock);
Chris Wilson1b894b52010-12-14 20:04:54 +0000712 if (!intel_PLL_is_valid(dev, limit,
713 &clock))
Ma Lingd4906092009-03-18 20:13:27 +0800714 continue;
Sean Paulcec2f352012-01-10 15:09:36 -0800715 if (match_clock &&
716 clock.p != match_clock->p)
717 continue;
Chris Wilson1b894b52010-12-14 20:04:54 +0000718
719 this_err = abs(clock.dot - target);
Ma Lingd4906092009-03-18 20:13:27 +0800720 if (this_err < err_most) {
721 *best_clock = clock;
722 err_most = this_err;
723 max_n = clock.n;
724 found = true;
725 }
726 }
727 }
728 }
729 }
Zhenyu Wang2c072452009-06-05 15:38:42 +0800730 return found;
731}
Ma Lingd4906092009-03-18 20:13:27 +0800732
Zhenyu Wang2c072452009-06-05 15:38:42 +0800733static bool
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500734intel_find_pll_ironlake_dp(const intel_limit_t *limit, struct drm_crtc *crtc,
Sean Paulcec2f352012-01-10 15:09:36 -0800735 int target, int refclk, intel_clock_t *match_clock,
736 intel_clock_t *best_clock)
Zhenyu Wang5eb08b62009-07-24 01:00:31 +0800737{
738 struct drm_device *dev = crtc->dev;
739 intel_clock_t clock;
Zhao Yakui45476682009-12-31 16:06:04 +0800740
Zhenyu Wang5eb08b62009-07-24 01:00:31 +0800741 if (target < 200000) {
742 clock.n = 1;
743 clock.p1 = 2;
744 clock.p2 = 10;
745 clock.m1 = 12;
746 clock.m2 = 9;
747 } else {
748 clock.n = 2;
749 clock.p1 = 1;
750 clock.p2 = 10;
751 clock.m1 = 14;
752 clock.m2 = 8;
753 }
754 intel_clock(dev, refclk, &clock);
755 memcpy(best_clock, &clock, sizeof(intel_clock_t));
756 return true;
757}
758
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700759/* DisplayPort has only two frequencies, 162MHz and 270MHz */
760static bool
761intel_find_pll_g4x_dp(const intel_limit_t *limit, struct drm_crtc *crtc,
Sean Paulcec2f352012-01-10 15:09:36 -0800762 int target, int refclk, intel_clock_t *match_clock,
763 intel_clock_t *best_clock)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700764{
Chris Wilson5eddb702010-09-11 13:48:45 +0100765 intel_clock_t clock;
766 if (target < 200000) {
767 clock.p1 = 2;
768 clock.p2 = 10;
769 clock.n = 2;
770 clock.m1 = 23;
771 clock.m2 = 8;
772 } else {
773 clock.p1 = 1;
774 clock.p2 = 10;
775 clock.n = 1;
776 clock.m1 = 14;
777 clock.m2 = 2;
778 }
779 clock.m = 5 * (clock.m1 + 2) + (clock.m2 + 2);
780 clock.p = (clock.p1 * clock.p2);
781 clock.dot = 96000 * clock.m / (clock.n + 2) / clock.p;
782 clock.vco = 0;
783 memcpy(best_clock, &clock, sizeof(intel_clock_t));
784 return true;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700785}
786
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700787/**
788 * intel_wait_for_vblank - wait for vblank on a given pipe
789 * @dev: drm device
790 * @pipe: pipe to wait for
791 *
792 * Wait for vblank to occur on a given pipe. Needed for various bits of
793 * mode setting code.
794 */
795void intel_wait_for_vblank(struct drm_device *dev, int pipe)
Jesse Barnes79e53942008-11-07 14:24:08 -0800796{
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700797 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800798 int pipestat_reg = PIPESTAT(pipe);
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700799
Chris Wilson300387c2010-09-05 20:25:43 +0100800 /* Clear existing vblank status. Note this will clear any other
801 * sticky status fields as well.
802 *
803 * This races with i915_driver_irq_handler() with the result
804 * that either function could miss a vblank event. Here it is not
805 * fatal, as we will either wait upon the next vblank interrupt or
806 * timeout. Generally speaking intel_wait_for_vblank() is only
807 * called during modeset at which time the GPU should be idle and
808 * should *not* be performing page flips and thus not waiting on
809 * vblanks...
810 * Currently, the result of us stealing a vblank from the irq
811 * handler is that a single frame will be skipped during swapbuffers.
812 */
813 I915_WRITE(pipestat_reg,
814 I915_READ(pipestat_reg) | PIPE_VBLANK_INTERRUPT_STATUS);
815
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700816 /* Wait for vblank interrupt bit to set */
Chris Wilson481b6af2010-08-23 17:43:35 +0100817 if (wait_for(I915_READ(pipestat_reg) &
818 PIPE_VBLANK_INTERRUPT_STATUS,
819 50))
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700820 DRM_DEBUG_KMS("vblank wait timed out\n");
821}
822
Keith Packardab7ad7f2010-10-03 00:33:06 -0700823/*
824 * intel_wait_for_pipe_off - wait for pipe to turn off
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700825 * @dev: drm device
826 * @pipe: pipe to wait for
827 *
828 * After disabling a pipe, we can't wait for vblank in the usual way,
829 * spinning on the vblank interrupt status bit, since we won't actually
830 * see an interrupt when the pipe is disabled.
831 *
Keith Packardab7ad7f2010-10-03 00:33:06 -0700832 * On Gen4 and above:
833 * wait for the pipe register state bit to turn off
834 *
835 * Otherwise:
836 * wait for the display line value to settle (it usually
837 * ends up stopping at the start of the next frame).
Chris Wilson58e10eb2010-10-03 10:56:11 +0100838 *
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700839 */
Chris Wilson58e10eb2010-10-03 10:56:11 +0100840void intel_wait_for_pipe_off(struct drm_device *dev, int pipe)
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700841{
842 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700843
Keith Packardab7ad7f2010-10-03 00:33:06 -0700844 if (INTEL_INFO(dev)->gen >= 4) {
Chris Wilson58e10eb2010-10-03 10:56:11 +0100845 int reg = PIPECONF(pipe);
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700846
Keith Packardab7ad7f2010-10-03 00:33:06 -0700847 /* Wait for the Pipe State to go off */
Chris Wilson58e10eb2010-10-03 10:56:11 +0100848 if (wait_for((I915_READ(reg) & I965_PIPECONF_ACTIVE) == 0,
849 100))
Keith Packardab7ad7f2010-10-03 00:33:06 -0700850 DRM_DEBUG_KMS("pipe_off wait timed out\n");
851 } else {
Paulo Zanoni837ba002012-05-04 17:18:14 -0300852 u32 last_line, line_mask;
Chris Wilson58e10eb2010-10-03 10:56:11 +0100853 int reg = PIPEDSL(pipe);
Keith Packardab7ad7f2010-10-03 00:33:06 -0700854 unsigned long timeout = jiffies + msecs_to_jiffies(100);
855
Paulo Zanoni837ba002012-05-04 17:18:14 -0300856 if (IS_GEN2(dev))
857 line_mask = DSL_LINEMASK_GEN2;
858 else
859 line_mask = DSL_LINEMASK_GEN3;
860
Keith Packardab7ad7f2010-10-03 00:33:06 -0700861 /* Wait for the display line to settle */
862 do {
Paulo Zanoni837ba002012-05-04 17:18:14 -0300863 last_line = I915_READ(reg) & line_mask;
Keith Packardab7ad7f2010-10-03 00:33:06 -0700864 mdelay(5);
Paulo Zanoni837ba002012-05-04 17:18:14 -0300865 } while (((I915_READ(reg) & line_mask) != last_line) &&
Keith Packardab7ad7f2010-10-03 00:33:06 -0700866 time_after(timeout, jiffies));
867 if (time_after(jiffies, timeout))
868 DRM_DEBUG_KMS("pipe_off wait timed out\n");
869 }
Jesse Barnes79e53942008-11-07 14:24:08 -0800870}
871
Jesse Barnesb24e7172011-01-04 15:09:30 -0800872static const char *state_string(bool enabled)
873{
874 return enabled ? "on" : "off";
875}
876
877/* Only for pre-ILK configs */
878static void assert_pll(struct drm_i915_private *dev_priv,
879 enum pipe pipe, bool state)
880{
881 int reg;
882 u32 val;
883 bool cur_state;
884
885 reg = DPLL(pipe);
886 val = I915_READ(reg);
887 cur_state = !!(val & DPLL_VCO_ENABLE);
888 WARN(cur_state != state,
889 "PLL state assertion failure (expected %s, current %s)\n",
890 state_string(state), state_string(cur_state));
891}
892#define assert_pll_enabled(d, p) assert_pll(d, p, true)
893#define assert_pll_disabled(d, p) assert_pll(d, p, false)
894
Jesse Barnes040484a2011-01-03 12:14:26 -0800895/* For ILK+ */
896static void assert_pch_pll(struct drm_i915_private *dev_priv,
Jesse Barnesee7b9f92012-04-20 17:11:53 +0100897 struct intel_crtc *intel_crtc, bool state)
Jesse Barnes040484a2011-01-03 12:14:26 -0800898{
899 int reg;
900 u32 val;
901 bool cur_state;
902
Jesse Barnesee7b9f92012-04-20 17:11:53 +0100903 if (!intel_crtc->pch_pll) {
904 WARN(1, "asserting PCH PLL enabled with no PLL\n");
905 return;
906 }
907
Jesse Barnesd3ccbe82011-10-12 09:27:42 -0700908 if (HAS_PCH_CPT(dev_priv->dev)) {
909 u32 pch_dpll;
910
911 pch_dpll = I915_READ(PCH_DPLL_SEL);
912
913 /* Make sure the selected PLL is enabled to the transcoder */
Jesse Barnesee7b9f92012-04-20 17:11:53 +0100914 WARN(!((pch_dpll >> (4 * intel_crtc->pipe)) & 8),
915 "transcoder %d PLL not enabled\n", intel_crtc->pipe);
Jesse Barnesd3ccbe82011-10-12 09:27:42 -0700916 }
917
Jesse Barnesee7b9f92012-04-20 17:11:53 +0100918 reg = intel_crtc->pch_pll->pll_reg;
Jesse Barnes040484a2011-01-03 12:14:26 -0800919 val = I915_READ(reg);
920 cur_state = !!(val & DPLL_VCO_ENABLE);
921 WARN(cur_state != state,
922 "PCH PLL state assertion failure (expected %s, current %s)\n",
923 state_string(state), state_string(cur_state));
924}
925#define assert_pch_pll_enabled(d, p) assert_pch_pll(d, p, true)
926#define assert_pch_pll_disabled(d, p) assert_pch_pll(d, p, false)
927
928static void assert_fdi_tx(struct drm_i915_private *dev_priv,
929 enum pipe pipe, bool state)
930{
931 int reg;
932 u32 val;
933 bool cur_state;
934
935 reg = FDI_TX_CTL(pipe);
936 val = I915_READ(reg);
937 cur_state = !!(val & FDI_TX_ENABLE);
938 WARN(cur_state != state,
939 "FDI TX state assertion failure (expected %s, current %s)\n",
940 state_string(state), state_string(cur_state));
941}
942#define assert_fdi_tx_enabled(d, p) assert_fdi_tx(d, p, true)
943#define assert_fdi_tx_disabled(d, p) assert_fdi_tx(d, p, false)
944
945static void assert_fdi_rx(struct drm_i915_private *dev_priv,
946 enum pipe pipe, bool state)
947{
948 int reg;
949 u32 val;
950 bool cur_state;
951
952 reg = FDI_RX_CTL(pipe);
953 val = I915_READ(reg);
954 cur_state = !!(val & FDI_RX_ENABLE);
955 WARN(cur_state != state,
956 "FDI RX state assertion failure (expected %s, current %s)\n",
957 state_string(state), state_string(cur_state));
958}
959#define assert_fdi_rx_enabled(d, p) assert_fdi_rx(d, p, true)
960#define assert_fdi_rx_disabled(d, p) assert_fdi_rx(d, p, false)
961
962static void assert_fdi_tx_pll_enabled(struct drm_i915_private *dev_priv,
963 enum pipe pipe)
964{
965 int reg;
966 u32 val;
967
968 /* ILK FDI PLL is always enabled */
969 if (dev_priv->info->gen == 5)
970 return;
971
972 reg = FDI_TX_CTL(pipe);
973 val = I915_READ(reg);
974 WARN(!(val & FDI_TX_PLL_ENABLE), "FDI TX PLL assertion failure, should be active but is disabled\n");
975}
976
977static void assert_fdi_rx_pll_enabled(struct drm_i915_private *dev_priv,
978 enum pipe pipe)
979{
980 int reg;
981 u32 val;
982
983 reg = FDI_RX_CTL(pipe);
984 val = I915_READ(reg);
985 WARN(!(val & FDI_RX_PLL_ENABLE), "FDI RX PLL assertion failure, should be active but is disabled\n");
986}
987
Jesse Barnesea0760c2011-01-04 15:09:32 -0800988static void assert_panel_unlocked(struct drm_i915_private *dev_priv,
989 enum pipe pipe)
990{
991 int pp_reg, lvds_reg;
992 u32 val;
993 enum pipe panel_pipe = PIPE_A;
Thomas Jarosch0de3b482011-08-25 15:37:45 +0200994 bool locked = true;
Jesse Barnesea0760c2011-01-04 15:09:32 -0800995
996 if (HAS_PCH_SPLIT(dev_priv->dev)) {
997 pp_reg = PCH_PP_CONTROL;
998 lvds_reg = PCH_LVDS;
999 } else {
1000 pp_reg = PP_CONTROL;
1001 lvds_reg = LVDS;
1002 }
1003
1004 val = I915_READ(pp_reg);
1005 if (!(val & PANEL_POWER_ON) ||
1006 ((val & PANEL_UNLOCK_REGS) == PANEL_UNLOCK_REGS))
1007 locked = false;
1008
1009 if (I915_READ(lvds_reg) & LVDS_PIPEB_SELECT)
1010 panel_pipe = PIPE_B;
1011
1012 WARN(panel_pipe == pipe && locked,
1013 "panel assertion failure, pipe %c regs locked\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001014 pipe_name(pipe));
Jesse Barnesea0760c2011-01-04 15:09:32 -08001015}
1016
Jesse Barnesb840d907f2011-12-13 13:19:38 -08001017void assert_pipe(struct drm_i915_private *dev_priv,
1018 enum pipe pipe, bool state)
Jesse Barnesb24e7172011-01-04 15:09:30 -08001019{
1020 int reg;
1021 u32 val;
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001022 bool cur_state;
Jesse Barnesb24e7172011-01-04 15:09:30 -08001023
Daniel Vetter8e636782012-01-22 01:36:48 +01001024 /* if we need the pipe A quirk it must be always on */
1025 if (pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE)
1026 state = true;
1027
Jesse Barnesb24e7172011-01-04 15:09:30 -08001028 reg = PIPECONF(pipe);
1029 val = I915_READ(reg);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001030 cur_state = !!(val & PIPECONF_ENABLE);
1031 WARN(cur_state != state,
1032 "pipe %c assertion failure (expected %s, current %s)\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001033 pipe_name(pipe), state_string(state), state_string(cur_state));
Jesse Barnesb24e7172011-01-04 15:09:30 -08001034}
1035
Chris Wilson931872f2012-01-16 23:01:13 +00001036static void assert_plane(struct drm_i915_private *dev_priv,
1037 enum plane plane, bool state)
Jesse Barnesb24e7172011-01-04 15:09:30 -08001038{
1039 int reg;
1040 u32 val;
Chris Wilson931872f2012-01-16 23:01:13 +00001041 bool cur_state;
Jesse Barnesb24e7172011-01-04 15:09:30 -08001042
1043 reg = DSPCNTR(plane);
1044 val = I915_READ(reg);
Chris Wilson931872f2012-01-16 23:01:13 +00001045 cur_state = !!(val & DISPLAY_PLANE_ENABLE);
1046 WARN(cur_state != state,
1047 "plane %c assertion failure (expected %s, current %s)\n",
1048 plane_name(plane), state_string(state), state_string(cur_state));
Jesse Barnesb24e7172011-01-04 15:09:30 -08001049}
1050
Chris Wilson931872f2012-01-16 23:01:13 +00001051#define assert_plane_enabled(d, p) assert_plane(d, p, true)
1052#define assert_plane_disabled(d, p) assert_plane(d, p, false)
1053
Jesse Barnesb24e7172011-01-04 15:09:30 -08001054static void assert_planes_disabled(struct drm_i915_private *dev_priv,
1055 enum pipe pipe)
1056{
1057 int reg, i;
1058 u32 val;
1059 int cur_pipe;
1060
Jesse Barnes19ec1352011-02-02 12:28:02 -08001061 /* Planes are fixed to pipes on ILK+ */
Adam Jackson28c057942011-10-07 14:38:42 -04001062 if (HAS_PCH_SPLIT(dev_priv->dev)) {
1063 reg = DSPCNTR(pipe);
1064 val = I915_READ(reg);
1065 WARN((val & DISPLAY_PLANE_ENABLE),
1066 "plane %c assertion failure, should be disabled but not\n",
1067 plane_name(pipe));
Jesse Barnes19ec1352011-02-02 12:28:02 -08001068 return;
Adam Jackson28c057942011-10-07 14:38:42 -04001069 }
Jesse Barnes19ec1352011-02-02 12:28:02 -08001070
Jesse Barnesb24e7172011-01-04 15:09:30 -08001071 /* Need to check both planes against the pipe */
1072 for (i = 0; i < 2; i++) {
1073 reg = DSPCNTR(i);
1074 val = I915_READ(reg);
1075 cur_pipe = (val & DISPPLANE_SEL_PIPE_MASK) >>
1076 DISPPLANE_SEL_PIPE_SHIFT;
1077 WARN((val & DISPLAY_PLANE_ENABLE) && pipe == cur_pipe,
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001078 "plane %c assertion failure, should be off on pipe %c but is still active\n",
1079 plane_name(i), pipe_name(pipe));
Jesse Barnesb24e7172011-01-04 15:09:30 -08001080 }
1081}
1082
Jesse Barnes92f25842011-01-04 15:09:34 -08001083static void assert_pch_refclk_enabled(struct drm_i915_private *dev_priv)
1084{
1085 u32 val;
1086 bool enabled;
1087
1088 val = I915_READ(PCH_DREF_CONTROL);
1089 enabled = !!(val & (DREF_SSC_SOURCE_MASK | DREF_NONSPREAD_SOURCE_MASK |
1090 DREF_SUPERSPREAD_SOURCE_MASK));
1091 WARN(!enabled, "PCH refclk assertion failure, should be active but is disabled\n");
1092}
1093
1094static void assert_transcoder_disabled(struct drm_i915_private *dev_priv,
1095 enum pipe pipe)
1096{
1097 int reg;
1098 u32 val;
1099 bool enabled;
1100
1101 reg = TRANSCONF(pipe);
1102 val = I915_READ(reg);
1103 enabled = !!(val & TRANS_ENABLE);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001104 WARN(enabled,
1105 "transcoder assertion failed, should be off on pipe %c but is still active\n",
1106 pipe_name(pipe));
Jesse Barnes92f25842011-01-04 15:09:34 -08001107}
1108
Keith Packard4e634382011-08-06 10:39:45 -07001109static bool dp_pipe_enabled(struct drm_i915_private *dev_priv,
1110 enum pipe pipe, u32 port_sel, u32 val)
Keith Packardf0575e92011-07-25 22:12:43 -07001111{
1112 if ((val & DP_PORT_EN) == 0)
1113 return false;
1114
1115 if (HAS_PCH_CPT(dev_priv->dev)) {
1116 u32 trans_dp_ctl_reg = TRANS_DP_CTL(pipe);
1117 u32 trans_dp_ctl = I915_READ(trans_dp_ctl_reg);
1118 if ((trans_dp_ctl & TRANS_DP_PORT_SEL_MASK) != port_sel)
1119 return false;
1120 } else {
1121 if ((val & DP_PIPE_MASK) != (pipe << 30))
1122 return false;
1123 }
1124 return true;
1125}
1126
Keith Packard1519b992011-08-06 10:35:34 -07001127static bool hdmi_pipe_enabled(struct drm_i915_private *dev_priv,
1128 enum pipe pipe, u32 val)
1129{
1130 if ((val & PORT_ENABLE) == 0)
1131 return false;
1132
1133 if (HAS_PCH_CPT(dev_priv->dev)) {
1134 if ((val & PORT_TRANS_SEL_MASK) != PORT_TRANS_SEL_CPT(pipe))
1135 return false;
1136 } else {
1137 if ((val & TRANSCODER_MASK) != TRANSCODER(pipe))
1138 return false;
1139 }
1140 return true;
1141}
1142
1143static bool lvds_pipe_enabled(struct drm_i915_private *dev_priv,
1144 enum pipe pipe, u32 val)
1145{
1146 if ((val & LVDS_PORT_EN) == 0)
1147 return false;
1148
1149 if (HAS_PCH_CPT(dev_priv->dev)) {
1150 if ((val & PORT_TRANS_SEL_MASK) != PORT_TRANS_SEL_CPT(pipe))
1151 return false;
1152 } else {
1153 if ((val & LVDS_PIPE_MASK) != LVDS_PIPE(pipe))
1154 return false;
1155 }
1156 return true;
1157}
1158
1159static bool adpa_pipe_enabled(struct drm_i915_private *dev_priv,
1160 enum pipe pipe, u32 val)
1161{
1162 if ((val & ADPA_DAC_ENABLE) == 0)
1163 return false;
1164 if (HAS_PCH_CPT(dev_priv->dev)) {
1165 if ((val & PORT_TRANS_SEL_MASK) != PORT_TRANS_SEL_CPT(pipe))
1166 return false;
1167 } else {
1168 if ((val & ADPA_PIPE_SELECT_MASK) != ADPA_PIPE_SELECT(pipe))
1169 return false;
1170 }
1171 return true;
1172}
1173
Jesse Barnes291906f2011-02-02 12:28:03 -08001174static void assert_pch_dp_disabled(struct drm_i915_private *dev_priv,
Keith Packardf0575e92011-07-25 22:12:43 -07001175 enum pipe pipe, int reg, u32 port_sel)
Jesse Barnes291906f2011-02-02 12:28:03 -08001176{
Jesse Barnes47a05ec2011-02-07 13:46:40 -08001177 u32 val = I915_READ(reg);
Keith Packard4e634382011-08-06 10:39:45 -07001178 WARN(dp_pipe_enabled(dev_priv, pipe, port_sel, val),
Jesse Barnes291906f2011-02-02 12:28:03 -08001179 "PCH DP (0x%08x) enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001180 reg, pipe_name(pipe));
Jesse Barnes291906f2011-02-02 12:28:03 -08001181}
1182
1183static void assert_pch_hdmi_disabled(struct drm_i915_private *dev_priv,
1184 enum pipe pipe, int reg)
1185{
Jesse Barnes47a05ec2011-02-07 13:46:40 -08001186 u32 val = I915_READ(reg);
Keith Packard1519b992011-08-06 10:35:34 -07001187 WARN(hdmi_pipe_enabled(dev_priv, val, pipe),
Adam Jackson23c99e72011-10-07 14:38:43 -04001188 "PCH HDMI (0x%08x) enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001189 reg, pipe_name(pipe));
Jesse Barnes291906f2011-02-02 12:28:03 -08001190}
1191
1192static void assert_pch_ports_disabled(struct drm_i915_private *dev_priv,
1193 enum pipe pipe)
1194{
1195 int reg;
1196 u32 val;
Jesse Barnes291906f2011-02-02 12:28:03 -08001197
Keith Packardf0575e92011-07-25 22:12:43 -07001198 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_B, TRANS_DP_PORT_SEL_B);
1199 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_C, TRANS_DP_PORT_SEL_C);
1200 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_D, TRANS_DP_PORT_SEL_D);
Jesse Barnes291906f2011-02-02 12:28:03 -08001201
1202 reg = PCH_ADPA;
1203 val = I915_READ(reg);
Keith Packard1519b992011-08-06 10:35:34 -07001204 WARN(adpa_pipe_enabled(dev_priv, val, pipe),
Jesse Barnes291906f2011-02-02 12:28:03 -08001205 "PCH VGA enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001206 pipe_name(pipe));
Jesse Barnes291906f2011-02-02 12:28:03 -08001207
1208 reg = PCH_LVDS;
1209 val = I915_READ(reg);
Keith Packard1519b992011-08-06 10:35:34 -07001210 WARN(lvds_pipe_enabled(dev_priv, val, pipe),
Jesse Barnes291906f2011-02-02 12:28:03 -08001211 "PCH LVDS enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001212 pipe_name(pipe));
Jesse Barnes291906f2011-02-02 12:28:03 -08001213
1214 assert_pch_hdmi_disabled(dev_priv, pipe, HDMIB);
1215 assert_pch_hdmi_disabled(dev_priv, pipe, HDMIC);
1216 assert_pch_hdmi_disabled(dev_priv, pipe, HDMID);
1217}
1218
Jesse Barnesb24e7172011-01-04 15:09:30 -08001219/**
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001220 * intel_enable_pll - enable a PLL
1221 * @dev_priv: i915 private structure
1222 * @pipe: pipe PLL to enable
1223 *
1224 * Enable @pipe's PLL so we can start pumping pixels from a plane. Check to
1225 * make sure the PLL reg is writable first though, since the panel write
1226 * protect mechanism may be enabled.
1227 *
1228 * Note! This is for pre-ILK only.
1229 */
1230static void intel_enable_pll(struct drm_i915_private *dev_priv, enum pipe pipe)
1231{
1232 int reg;
1233 u32 val;
1234
1235 /* No really, not for ILK+ */
1236 BUG_ON(dev_priv->info->gen >= 5);
1237
1238 /* PLL is protected by panel, make sure we can write it */
1239 if (IS_MOBILE(dev_priv->dev) && !IS_I830(dev_priv->dev))
1240 assert_panel_unlocked(dev_priv, pipe);
1241
1242 reg = DPLL(pipe);
1243 val = I915_READ(reg);
1244 val |= DPLL_VCO_ENABLE;
1245
1246 /* We do this three times for luck */
1247 I915_WRITE(reg, val);
1248 POSTING_READ(reg);
1249 udelay(150); /* wait for warmup */
1250 I915_WRITE(reg, val);
1251 POSTING_READ(reg);
1252 udelay(150); /* wait for warmup */
1253 I915_WRITE(reg, val);
1254 POSTING_READ(reg);
1255 udelay(150); /* wait for warmup */
1256}
1257
1258/**
1259 * intel_disable_pll - disable a PLL
1260 * @dev_priv: i915 private structure
1261 * @pipe: pipe PLL to disable
1262 *
1263 * Disable the PLL for @pipe, making sure the pipe is off first.
1264 *
1265 * Note! This is for pre-ILK only.
1266 */
1267static void intel_disable_pll(struct drm_i915_private *dev_priv, enum pipe pipe)
1268{
1269 int reg;
1270 u32 val;
1271
1272 /* Don't disable pipe A or pipe A PLLs if needed */
1273 if (pipe == PIPE_A && (dev_priv->quirks & QUIRK_PIPEA_FORCE))
1274 return;
1275
1276 /* Make sure the pipe isn't still relying on us */
1277 assert_pipe_disabled(dev_priv, pipe);
1278
1279 reg = DPLL(pipe);
1280 val = I915_READ(reg);
1281 val &= ~DPLL_VCO_ENABLE;
1282 I915_WRITE(reg, val);
1283 POSTING_READ(reg);
1284}
1285
1286/**
Jesse Barnes92f25842011-01-04 15:09:34 -08001287 * intel_enable_pch_pll - enable PCH PLL
1288 * @dev_priv: i915 private structure
1289 * @pipe: pipe PLL to enable
1290 *
1291 * The PCH PLL needs to be enabled before the PCH transcoder, since it
1292 * drives the transcoder clock.
1293 */
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001294static void intel_enable_pch_pll(struct intel_crtc *intel_crtc)
Jesse Barnes92f25842011-01-04 15:09:34 -08001295{
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001296 struct drm_i915_private *dev_priv = intel_crtc->base.dev->dev_private;
1297 struct intel_pch_pll *pll = intel_crtc->pch_pll;
Jesse Barnes92f25842011-01-04 15:09:34 -08001298 int reg;
1299 u32 val;
1300
1301 /* PCH only available on ILK+ */
1302 BUG_ON(dev_priv->info->gen < 5);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001303 BUG_ON(pll == NULL);
1304 BUG_ON(pll->refcount == 0);
1305
1306 DRM_DEBUG_KMS("enable PCH PLL %x (active %d, on? %d)for crtc %d\n",
1307 pll->pll_reg, pll->active, pll->on,
1308 intel_crtc->base.base.id);
Jesse Barnes92f25842011-01-04 15:09:34 -08001309
1310 /* PCH refclock must be enabled first */
1311 assert_pch_refclk_enabled(dev_priv);
1312
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001313 if (pll->active++ && pll->on) {
1314 assert_pch_pll_enabled(dev_priv, intel_crtc);
1315 return;
1316 }
1317
1318 DRM_DEBUG_KMS("enabling PCH PLL %x\n", pll->pll_reg);
1319
1320 reg = pll->pll_reg;
Jesse Barnes92f25842011-01-04 15:09:34 -08001321 val = I915_READ(reg);
1322 val |= DPLL_VCO_ENABLE;
1323 I915_WRITE(reg, val);
1324 POSTING_READ(reg);
1325 udelay(200);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001326
1327 pll->on = true;
Jesse Barnes92f25842011-01-04 15:09:34 -08001328}
1329
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001330static void intel_disable_pch_pll(struct intel_crtc *intel_crtc)
Jesse Barnes92f25842011-01-04 15:09:34 -08001331{
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001332 struct drm_i915_private *dev_priv = intel_crtc->base.dev->dev_private;
1333 struct intel_pch_pll *pll = intel_crtc->pch_pll;
Jesse Barnes92f25842011-01-04 15:09:34 -08001334 int reg;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001335 u32 val;
Jesse Barnes4c609cb2011-09-02 12:52:11 -07001336
Jesse Barnes92f25842011-01-04 15:09:34 -08001337 /* PCH only available on ILK+ */
1338 BUG_ON(dev_priv->info->gen < 5);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001339 if (pll == NULL)
1340 return;
1341
1342 BUG_ON(pll->refcount == 0);
1343
1344 DRM_DEBUG_KMS("disable PCH PLL %x (active %d, on? %d) for crtc %d\n",
1345 pll->pll_reg, pll->active, pll->on,
1346 intel_crtc->base.base.id);
1347
1348 BUG_ON(pll->active == 0);
1349 if (--pll->active) {
1350 assert_pch_pll_enabled(dev_priv, intel_crtc);
1351 return;
1352 }
1353
1354 DRM_DEBUG_KMS("disabling PCH PLL %x\n", pll->pll_reg);
Jesse Barnes92f25842011-01-04 15:09:34 -08001355
1356 /* Make sure transcoder isn't still depending on us */
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001357 assert_transcoder_disabled(dev_priv, intel_crtc->pipe);
Jesse Barnes92f25842011-01-04 15:09:34 -08001358
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001359 reg = pll->pll_reg;
Jesse Barnes92f25842011-01-04 15:09:34 -08001360 val = I915_READ(reg);
1361 val &= ~DPLL_VCO_ENABLE;
1362 I915_WRITE(reg, val);
1363 POSTING_READ(reg);
1364 udelay(200);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001365
1366 pll->on = false;
Jesse Barnes92f25842011-01-04 15:09:34 -08001367}
1368
Jesse Barnes040484a2011-01-03 12:14:26 -08001369static void intel_enable_transcoder(struct drm_i915_private *dev_priv,
1370 enum pipe pipe)
1371{
1372 int reg;
Paulo Zanoni5f7f7262012-02-03 17:47:15 -02001373 u32 val, pipeconf_val;
Paulo Zanoni7c26e5c2012-02-14 17:07:09 -02001374 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
Jesse Barnes040484a2011-01-03 12:14:26 -08001375
1376 /* PCH only available on ILK+ */
1377 BUG_ON(dev_priv->info->gen < 5);
1378
1379 /* Make sure PCH DPLL is enabled */
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001380 assert_pch_pll_enabled(dev_priv, to_intel_crtc(crtc));
Jesse Barnes040484a2011-01-03 12:14:26 -08001381
1382 /* FDI must be feeding us bits for PCH ports */
1383 assert_fdi_tx_enabled(dev_priv, pipe);
1384 assert_fdi_rx_enabled(dev_priv, pipe);
1385
1386 reg = TRANSCONF(pipe);
1387 val = I915_READ(reg);
Paulo Zanoni5f7f7262012-02-03 17:47:15 -02001388 pipeconf_val = I915_READ(PIPECONF(pipe));
Jesse Barnese9bcff52011-06-24 12:19:20 -07001389
1390 if (HAS_PCH_IBX(dev_priv->dev)) {
1391 /*
1392 * make the BPC in transcoder be consistent with
1393 * that in pipeconf reg.
1394 */
1395 val &= ~PIPE_BPC_MASK;
Paulo Zanoni5f7f7262012-02-03 17:47:15 -02001396 val |= pipeconf_val & PIPE_BPC_MASK;
Jesse Barnese9bcff52011-06-24 12:19:20 -07001397 }
Paulo Zanoni5f7f7262012-02-03 17:47:15 -02001398
1399 val &= ~TRANS_INTERLACE_MASK;
1400 if ((pipeconf_val & PIPECONF_INTERLACE_MASK) == PIPECONF_INTERLACED_ILK)
Paulo Zanoni7c26e5c2012-02-14 17:07:09 -02001401 if (HAS_PCH_IBX(dev_priv->dev) &&
1402 intel_pipe_has_type(crtc, INTEL_OUTPUT_SDVO))
1403 val |= TRANS_LEGACY_INTERLACED_ILK;
1404 else
1405 val |= TRANS_INTERLACED;
Paulo Zanoni5f7f7262012-02-03 17:47:15 -02001406 else
1407 val |= TRANS_PROGRESSIVE;
1408
Jesse Barnes040484a2011-01-03 12:14:26 -08001409 I915_WRITE(reg, val | TRANS_ENABLE);
1410 if (wait_for(I915_READ(reg) & TRANS_STATE_ENABLE, 100))
1411 DRM_ERROR("failed to enable transcoder %d\n", pipe);
1412}
1413
1414static void intel_disable_transcoder(struct drm_i915_private *dev_priv,
1415 enum pipe pipe)
1416{
1417 int reg;
1418 u32 val;
1419
1420 /* FDI relies on the transcoder */
1421 assert_fdi_tx_disabled(dev_priv, pipe);
1422 assert_fdi_rx_disabled(dev_priv, pipe);
1423
Jesse Barnes291906f2011-02-02 12:28:03 -08001424 /* Ports must be off as well */
1425 assert_pch_ports_disabled(dev_priv, pipe);
1426
Jesse Barnes040484a2011-01-03 12:14:26 -08001427 reg = TRANSCONF(pipe);
1428 val = I915_READ(reg);
1429 val &= ~TRANS_ENABLE;
1430 I915_WRITE(reg, val);
1431 /* wait for PCH transcoder off, transcoder state */
1432 if (wait_for((I915_READ(reg) & TRANS_STATE_ENABLE) == 0, 50))
Jesse Barnes4c9c18c2011-10-13 09:46:32 -07001433 DRM_ERROR("failed to disable transcoder %d\n", pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08001434}
1435
Jesse Barnes92f25842011-01-04 15:09:34 -08001436/**
Chris Wilson309cfea2011-01-28 13:54:53 +00001437 * intel_enable_pipe - enable a pipe, asserting requirements
Jesse Barnesb24e7172011-01-04 15:09:30 -08001438 * @dev_priv: i915 private structure
1439 * @pipe: pipe to enable
Jesse Barnes040484a2011-01-03 12:14:26 -08001440 * @pch_port: on ILK+, is this pipe driving a PCH port or not
Jesse Barnesb24e7172011-01-04 15:09:30 -08001441 *
1442 * Enable @pipe, making sure that various hardware specific requirements
1443 * are met, if applicable, e.g. PLL enabled, LVDS pairs enabled, etc.
1444 *
1445 * @pipe should be %PIPE_A or %PIPE_B.
1446 *
1447 * Will wait until the pipe is actually running (i.e. first vblank) before
1448 * returning.
1449 */
Jesse Barnes040484a2011-01-03 12:14:26 -08001450static void intel_enable_pipe(struct drm_i915_private *dev_priv, enum pipe pipe,
1451 bool pch_port)
Jesse Barnesb24e7172011-01-04 15:09:30 -08001452{
1453 int reg;
1454 u32 val;
1455
1456 /*
1457 * A pipe without a PLL won't actually be able to drive bits from
1458 * a plane. On ILK+ the pipe PLLs are integrated, so we don't
1459 * need the check.
1460 */
1461 if (!HAS_PCH_SPLIT(dev_priv->dev))
1462 assert_pll_enabled(dev_priv, pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08001463 else {
1464 if (pch_port) {
1465 /* if driving the PCH, we need FDI enabled */
1466 assert_fdi_rx_pll_enabled(dev_priv, pipe);
1467 assert_fdi_tx_pll_enabled(dev_priv, pipe);
1468 }
1469 /* FIXME: assert CPU port conditions for SNB+ */
1470 }
Jesse Barnesb24e7172011-01-04 15:09:30 -08001471
1472 reg = PIPECONF(pipe);
1473 val = I915_READ(reg);
Chris Wilson00d70b12011-03-17 07:18:29 +00001474 if (val & PIPECONF_ENABLE)
1475 return;
1476
1477 I915_WRITE(reg, val | PIPECONF_ENABLE);
Jesse Barnesb24e7172011-01-04 15:09:30 -08001478 intel_wait_for_vblank(dev_priv->dev, pipe);
1479}
1480
1481/**
Chris Wilson309cfea2011-01-28 13:54:53 +00001482 * intel_disable_pipe - disable a pipe, asserting requirements
Jesse Barnesb24e7172011-01-04 15:09:30 -08001483 * @dev_priv: i915 private structure
1484 * @pipe: pipe to disable
1485 *
1486 * Disable @pipe, making sure that various hardware specific requirements
1487 * are met, if applicable, e.g. plane disabled, panel fitter off, etc.
1488 *
1489 * @pipe should be %PIPE_A or %PIPE_B.
1490 *
1491 * Will wait until the pipe has shut down before returning.
1492 */
1493static void intel_disable_pipe(struct drm_i915_private *dev_priv,
1494 enum pipe pipe)
1495{
1496 int reg;
1497 u32 val;
1498
1499 /*
1500 * Make sure planes won't keep trying to pump pixels to us,
1501 * or we might hang the display.
1502 */
1503 assert_planes_disabled(dev_priv, pipe);
1504
1505 /* Don't disable pipe A or pipe A PLLs if needed */
1506 if (pipe == PIPE_A && (dev_priv->quirks & QUIRK_PIPEA_FORCE))
1507 return;
1508
1509 reg = PIPECONF(pipe);
1510 val = I915_READ(reg);
Chris Wilson00d70b12011-03-17 07:18:29 +00001511 if ((val & PIPECONF_ENABLE) == 0)
1512 return;
1513
1514 I915_WRITE(reg, val & ~PIPECONF_ENABLE);
Jesse Barnesb24e7172011-01-04 15:09:30 -08001515 intel_wait_for_pipe_off(dev_priv->dev, pipe);
1516}
1517
Keith Packardd74362c2011-07-28 14:47:14 -07001518/*
1519 * Plane regs are double buffered, going from enabled->disabled needs a
1520 * trigger in order to latch. The display address reg provides this.
1521 */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03001522void intel_flush_display_plane(struct drm_i915_private *dev_priv,
Keith Packardd74362c2011-07-28 14:47:14 -07001523 enum plane plane)
1524{
1525 I915_WRITE(DSPADDR(plane), I915_READ(DSPADDR(plane)));
1526 I915_WRITE(DSPSURF(plane), I915_READ(DSPSURF(plane)));
1527}
1528
Jesse Barnesb24e7172011-01-04 15:09:30 -08001529/**
1530 * intel_enable_plane - enable a display plane on a given pipe
1531 * @dev_priv: i915 private structure
1532 * @plane: plane to enable
1533 * @pipe: pipe being fed
1534 *
1535 * Enable @plane on @pipe, making sure that @pipe is running first.
1536 */
1537static void intel_enable_plane(struct drm_i915_private *dev_priv,
1538 enum plane plane, enum pipe pipe)
1539{
1540 int reg;
1541 u32 val;
1542
1543 /* If the pipe isn't enabled, we can't pump pixels and may hang */
1544 assert_pipe_enabled(dev_priv, pipe);
1545
1546 reg = DSPCNTR(plane);
1547 val = I915_READ(reg);
Chris Wilson00d70b12011-03-17 07:18:29 +00001548 if (val & DISPLAY_PLANE_ENABLE)
1549 return;
1550
1551 I915_WRITE(reg, val | DISPLAY_PLANE_ENABLE);
Keith Packardd74362c2011-07-28 14:47:14 -07001552 intel_flush_display_plane(dev_priv, plane);
Jesse Barnesb24e7172011-01-04 15:09:30 -08001553 intel_wait_for_vblank(dev_priv->dev, pipe);
1554}
1555
Jesse Barnesb24e7172011-01-04 15:09:30 -08001556/**
1557 * intel_disable_plane - disable a display plane
1558 * @dev_priv: i915 private structure
1559 * @plane: plane to disable
1560 * @pipe: pipe consuming the data
1561 *
1562 * Disable @plane; should be an independent operation.
1563 */
1564static void intel_disable_plane(struct drm_i915_private *dev_priv,
1565 enum plane plane, enum pipe pipe)
1566{
1567 int reg;
1568 u32 val;
1569
1570 reg = DSPCNTR(plane);
1571 val = I915_READ(reg);
Chris Wilson00d70b12011-03-17 07:18:29 +00001572 if ((val & DISPLAY_PLANE_ENABLE) == 0)
1573 return;
1574
1575 I915_WRITE(reg, val & ~DISPLAY_PLANE_ENABLE);
Jesse Barnesb24e7172011-01-04 15:09:30 -08001576 intel_flush_display_plane(dev_priv, plane);
1577 intel_wait_for_vblank(dev_priv->dev, pipe);
1578}
1579
Jesse Barnes47a05ec2011-02-07 13:46:40 -08001580static void disable_pch_dp(struct drm_i915_private *dev_priv,
Keith Packardf0575e92011-07-25 22:12:43 -07001581 enum pipe pipe, int reg, u32 port_sel)
Jesse Barnes47a05ec2011-02-07 13:46:40 -08001582{
1583 u32 val = I915_READ(reg);
Keith Packard4e634382011-08-06 10:39:45 -07001584 if (dp_pipe_enabled(dev_priv, pipe, port_sel, val)) {
Keith Packardf0575e92011-07-25 22:12:43 -07001585 DRM_DEBUG_KMS("Disabling pch dp %x on pipe %d\n", reg, pipe);
Jesse Barnes47a05ec2011-02-07 13:46:40 -08001586 I915_WRITE(reg, val & ~DP_PORT_EN);
Keith Packardf0575e92011-07-25 22:12:43 -07001587 }
Jesse Barnes47a05ec2011-02-07 13:46:40 -08001588}
1589
1590static void disable_pch_hdmi(struct drm_i915_private *dev_priv,
1591 enum pipe pipe, int reg)
1592{
1593 u32 val = I915_READ(reg);
Keith Packard1519b992011-08-06 10:35:34 -07001594 if (hdmi_pipe_enabled(dev_priv, val, pipe)) {
Keith Packardf0575e92011-07-25 22:12:43 -07001595 DRM_DEBUG_KMS("Disabling pch HDMI %x on pipe %d\n",
1596 reg, pipe);
Jesse Barnes47a05ec2011-02-07 13:46:40 -08001597 I915_WRITE(reg, val & ~PORT_ENABLE);
Keith Packardf0575e92011-07-25 22:12:43 -07001598 }
Jesse Barnes47a05ec2011-02-07 13:46:40 -08001599}
1600
1601/* Disable any ports connected to this transcoder */
1602static void intel_disable_pch_ports(struct drm_i915_private *dev_priv,
1603 enum pipe pipe)
1604{
1605 u32 reg, val;
1606
1607 val = I915_READ(PCH_PP_CONTROL);
1608 I915_WRITE(PCH_PP_CONTROL, val | PANEL_UNLOCK_REGS);
1609
Keith Packardf0575e92011-07-25 22:12:43 -07001610 disable_pch_dp(dev_priv, pipe, PCH_DP_B, TRANS_DP_PORT_SEL_B);
1611 disable_pch_dp(dev_priv, pipe, PCH_DP_C, TRANS_DP_PORT_SEL_C);
1612 disable_pch_dp(dev_priv, pipe, PCH_DP_D, TRANS_DP_PORT_SEL_D);
Jesse Barnes47a05ec2011-02-07 13:46:40 -08001613
1614 reg = PCH_ADPA;
1615 val = I915_READ(reg);
Keith Packard1519b992011-08-06 10:35:34 -07001616 if (adpa_pipe_enabled(dev_priv, val, pipe))
Jesse Barnes47a05ec2011-02-07 13:46:40 -08001617 I915_WRITE(reg, val & ~ADPA_DAC_ENABLE);
1618
1619 reg = PCH_LVDS;
1620 val = I915_READ(reg);
Keith Packard1519b992011-08-06 10:35:34 -07001621 if (lvds_pipe_enabled(dev_priv, val, pipe)) {
1622 DRM_DEBUG_KMS("disable lvds on pipe %d val 0x%08x\n", pipe, val);
Jesse Barnes47a05ec2011-02-07 13:46:40 -08001623 I915_WRITE(reg, val & ~LVDS_PORT_EN);
1624 POSTING_READ(reg);
1625 udelay(100);
1626 }
1627
1628 disable_pch_hdmi(dev_priv, pipe, HDMIB);
1629 disable_pch_hdmi(dev_priv, pipe, HDMIC);
1630 disable_pch_hdmi(dev_priv, pipe, HDMID);
1631}
1632
Chris Wilson127bd2a2010-07-23 23:32:05 +01001633int
Chris Wilson48b956c2010-09-14 12:50:34 +01001634intel_pin_and_fence_fb_obj(struct drm_device *dev,
Chris Wilson05394f32010-11-08 19:18:58 +00001635 struct drm_i915_gem_object *obj,
Chris Wilson919926a2010-11-12 13:42:53 +00001636 struct intel_ring_buffer *pipelined)
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001637{
Chris Wilsonce453d82011-02-21 14:43:56 +00001638 struct drm_i915_private *dev_priv = dev->dev_private;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001639 u32 alignment;
1640 int ret;
1641
Chris Wilson05394f32010-11-08 19:18:58 +00001642 switch (obj->tiling_mode) {
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001643 case I915_TILING_NONE:
Chris Wilson534843d2010-07-05 18:01:46 +01001644 if (IS_BROADWATER(dev) || IS_CRESTLINE(dev))
1645 alignment = 128 * 1024;
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001646 else if (INTEL_INFO(dev)->gen >= 4)
Chris Wilson534843d2010-07-05 18:01:46 +01001647 alignment = 4 * 1024;
1648 else
1649 alignment = 64 * 1024;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001650 break;
1651 case I915_TILING_X:
1652 /* pin() will align the object as required by fence */
1653 alignment = 0;
1654 break;
1655 case I915_TILING_Y:
1656 /* FIXME: Is this true? */
1657 DRM_ERROR("Y tiled not allowed for scan out buffers\n");
1658 return -EINVAL;
1659 default:
1660 BUG();
1661 }
1662
Chris Wilsonce453d82011-02-21 14:43:56 +00001663 dev_priv->mm.interruptible = false;
Chris Wilson2da3b9b2011-04-14 09:41:17 +01001664 ret = i915_gem_object_pin_to_display_plane(obj, alignment, pipelined);
Chris Wilson48b956c2010-09-14 12:50:34 +01001665 if (ret)
Chris Wilsonce453d82011-02-21 14:43:56 +00001666 goto err_interruptible;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001667
1668 /* Install a fence for tiled scan-out. Pre-i965 always needs a
1669 * fence, whereas 965+ only requires a fence if using
1670 * framebuffer compression. For simplicity, we always install
1671 * a fence as the cost is not that onerous.
1672 */
Chris Wilson06d98132012-04-17 15:31:24 +01001673 ret = i915_gem_object_get_fence(obj);
Chris Wilson9a5a53b2012-03-22 15:10:00 +00001674 if (ret)
1675 goto err_unpin;
Chris Wilson1690e1e2011-12-14 13:57:08 +01001676
Chris Wilson9a5a53b2012-03-22 15:10:00 +00001677 i915_gem_object_pin_fence(obj);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001678
Chris Wilsonce453d82011-02-21 14:43:56 +00001679 dev_priv->mm.interruptible = true;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001680 return 0;
Chris Wilson48b956c2010-09-14 12:50:34 +01001681
1682err_unpin:
1683 i915_gem_object_unpin(obj);
Chris Wilsonce453d82011-02-21 14:43:56 +00001684err_interruptible:
1685 dev_priv->mm.interruptible = true;
Chris Wilson48b956c2010-09-14 12:50:34 +01001686 return ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001687}
1688
Chris Wilson1690e1e2011-12-14 13:57:08 +01001689void intel_unpin_fb_obj(struct drm_i915_gem_object *obj)
1690{
1691 i915_gem_object_unpin_fence(obj);
1692 i915_gem_object_unpin(obj);
1693}
1694
Jesse Barnes17638cd2011-06-24 12:19:23 -07001695static int i9xx_update_plane(struct drm_crtc *crtc, struct drm_framebuffer *fb,
1696 int x, int y)
Jesse Barnes81255562010-08-02 12:07:50 -07001697{
1698 struct drm_device *dev = crtc->dev;
1699 struct drm_i915_private *dev_priv = dev->dev_private;
1700 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1701 struct intel_framebuffer *intel_fb;
Chris Wilson05394f32010-11-08 19:18:58 +00001702 struct drm_i915_gem_object *obj;
Jesse Barnes81255562010-08-02 12:07:50 -07001703 int plane = intel_crtc->plane;
1704 unsigned long Start, Offset;
Jesse Barnes81255562010-08-02 12:07:50 -07001705 u32 dspcntr;
Chris Wilson5eddb702010-09-11 13:48:45 +01001706 u32 reg;
Jesse Barnes81255562010-08-02 12:07:50 -07001707
1708 switch (plane) {
1709 case 0:
1710 case 1:
1711 break;
1712 default:
1713 DRM_ERROR("Can't update plane %d in SAREA\n", plane);
1714 return -EINVAL;
1715 }
1716
1717 intel_fb = to_intel_framebuffer(fb);
1718 obj = intel_fb->obj;
Jesse Barnes81255562010-08-02 12:07:50 -07001719
Chris Wilson5eddb702010-09-11 13:48:45 +01001720 reg = DSPCNTR(plane);
1721 dspcntr = I915_READ(reg);
Jesse Barnes81255562010-08-02 12:07:50 -07001722 /* Mask out pixel format bits in case we change it */
1723 dspcntr &= ~DISPPLANE_PIXFORMAT_MASK;
1724 switch (fb->bits_per_pixel) {
1725 case 8:
1726 dspcntr |= DISPPLANE_8BPP;
1727 break;
1728 case 16:
1729 if (fb->depth == 15)
1730 dspcntr |= DISPPLANE_15_16BPP;
1731 else
1732 dspcntr |= DISPPLANE_16BPP;
1733 break;
1734 case 24:
1735 case 32:
1736 dspcntr |= DISPPLANE_32BPP_NO_ALPHA;
1737 break;
1738 default:
Jesse Barnes17638cd2011-06-24 12:19:23 -07001739 DRM_ERROR("Unknown color depth %d\n", fb->bits_per_pixel);
Jesse Barnes81255562010-08-02 12:07:50 -07001740 return -EINVAL;
1741 }
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001742 if (INTEL_INFO(dev)->gen >= 4) {
Chris Wilson05394f32010-11-08 19:18:58 +00001743 if (obj->tiling_mode != I915_TILING_NONE)
Jesse Barnes81255562010-08-02 12:07:50 -07001744 dspcntr |= DISPPLANE_TILED;
1745 else
1746 dspcntr &= ~DISPPLANE_TILED;
1747 }
1748
Chris Wilson5eddb702010-09-11 13:48:45 +01001749 I915_WRITE(reg, dspcntr);
Jesse Barnes81255562010-08-02 12:07:50 -07001750
Chris Wilson05394f32010-11-08 19:18:58 +00001751 Start = obj->gtt_offset;
Ville Syrjälä01f2c772011-12-20 00:06:49 +02001752 Offset = y * fb->pitches[0] + x * (fb->bits_per_pixel / 8);
Jesse Barnes81255562010-08-02 12:07:50 -07001753
Chris Wilson4e6cfef2010-08-08 13:20:19 +01001754 DRM_DEBUG_KMS("Writing base %08lX %08lX %d %d %d\n",
Ville Syrjälä01f2c772011-12-20 00:06:49 +02001755 Start, Offset, x, y, fb->pitches[0]);
1756 I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]);
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001757 if (INTEL_INFO(dev)->gen >= 4) {
Armin Reese446f2542012-03-30 16:20:16 -07001758 I915_MODIFY_DISPBASE(DSPSURF(plane), Start);
Chris Wilson5eddb702010-09-11 13:48:45 +01001759 I915_WRITE(DSPTILEOFF(plane), (y << 16) | x);
1760 I915_WRITE(DSPADDR(plane), Offset);
1761 } else
1762 I915_WRITE(DSPADDR(plane), Start + Offset);
1763 POSTING_READ(reg);
Jesse Barnes81255562010-08-02 12:07:50 -07001764
Jesse Barnes17638cd2011-06-24 12:19:23 -07001765 return 0;
1766}
1767
1768static int ironlake_update_plane(struct drm_crtc *crtc,
1769 struct drm_framebuffer *fb, int x, int y)
1770{
1771 struct drm_device *dev = crtc->dev;
1772 struct drm_i915_private *dev_priv = dev->dev_private;
1773 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1774 struct intel_framebuffer *intel_fb;
1775 struct drm_i915_gem_object *obj;
1776 int plane = intel_crtc->plane;
1777 unsigned long Start, Offset;
1778 u32 dspcntr;
1779 u32 reg;
1780
1781 switch (plane) {
1782 case 0:
1783 case 1:
Jesse Barnes27f82272011-09-02 12:54:37 -07001784 case 2:
Jesse Barnes17638cd2011-06-24 12:19:23 -07001785 break;
1786 default:
1787 DRM_ERROR("Can't update plane %d in SAREA\n", plane);
1788 return -EINVAL;
1789 }
1790
1791 intel_fb = to_intel_framebuffer(fb);
1792 obj = intel_fb->obj;
1793
1794 reg = DSPCNTR(plane);
1795 dspcntr = I915_READ(reg);
1796 /* Mask out pixel format bits in case we change it */
1797 dspcntr &= ~DISPPLANE_PIXFORMAT_MASK;
1798 switch (fb->bits_per_pixel) {
1799 case 8:
1800 dspcntr |= DISPPLANE_8BPP;
1801 break;
1802 case 16:
1803 if (fb->depth != 16)
1804 return -EINVAL;
1805
1806 dspcntr |= DISPPLANE_16BPP;
1807 break;
1808 case 24:
1809 case 32:
1810 if (fb->depth == 24)
1811 dspcntr |= DISPPLANE_32BPP_NO_ALPHA;
1812 else if (fb->depth == 30)
1813 dspcntr |= DISPPLANE_32BPP_30BIT_NO_ALPHA;
1814 else
1815 return -EINVAL;
1816 break;
1817 default:
1818 DRM_ERROR("Unknown color depth %d\n", fb->bits_per_pixel);
1819 return -EINVAL;
1820 }
1821
1822 if (obj->tiling_mode != I915_TILING_NONE)
1823 dspcntr |= DISPPLANE_TILED;
1824 else
1825 dspcntr &= ~DISPPLANE_TILED;
1826
1827 /* must disable */
1828 dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE;
1829
1830 I915_WRITE(reg, dspcntr);
1831
1832 Start = obj->gtt_offset;
Ville Syrjälä01f2c772011-12-20 00:06:49 +02001833 Offset = y * fb->pitches[0] + x * (fb->bits_per_pixel / 8);
Jesse Barnes17638cd2011-06-24 12:19:23 -07001834
1835 DRM_DEBUG_KMS("Writing base %08lX %08lX %d %d %d\n",
Ville Syrjälä01f2c772011-12-20 00:06:49 +02001836 Start, Offset, x, y, fb->pitches[0]);
1837 I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]);
Armin Reese446f2542012-03-30 16:20:16 -07001838 I915_MODIFY_DISPBASE(DSPSURF(plane), Start);
Jesse Barnes17638cd2011-06-24 12:19:23 -07001839 I915_WRITE(DSPTILEOFF(plane), (y << 16) | x);
1840 I915_WRITE(DSPADDR(plane), Offset);
1841 POSTING_READ(reg);
1842
1843 return 0;
1844}
1845
1846/* Assume fb object is pinned & idle & fenced and just update base pointers */
1847static int
1848intel_pipe_set_base_atomic(struct drm_crtc *crtc, struct drm_framebuffer *fb,
1849 int x, int y, enum mode_set_atomic state)
1850{
1851 struct drm_device *dev = crtc->dev;
1852 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes17638cd2011-06-24 12:19:23 -07001853
Chris Wilson6b8e6ed2012-04-17 15:08:19 +01001854 if (dev_priv->display.disable_fbc)
1855 dev_priv->display.disable_fbc(dev);
Daniel Vetter3dec0092010-08-20 21:40:52 +02001856 intel_increase_pllclock(crtc);
Jesse Barnes81255562010-08-02 12:07:50 -07001857
Chris Wilson6b8e6ed2012-04-17 15:08:19 +01001858 return dev_priv->display.update_plane(crtc, fb, x, y);
Jesse Barnes81255562010-08-02 12:07:50 -07001859}
1860
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001861static int
Chris Wilson14667a42012-04-03 17:58:35 +01001862intel_finish_fb(struct drm_framebuffer *old_fb)
1863{
1864 struct drm_i915_gem_object *obj = to_intel_framebuffer(old_fb)->obj;
1865 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
1866 bool was_interruptible = dev_priv->mm.interruptible;
1867 int ret;
1868
1869 wait_event(dev_priv->pending_flip_queue,
1870 atomic_read(&dev_priv->mm.wedged) ||
1871 atomic_read(&obj->pending_flip) == 0);
1872
1873 /* Big Hammer, we also need to ensure that any pending
1874 * MI_WAIT_FOR_EVENT inside a user batch buffer on the
1875 * current scanout is retired before unpinning the old
1876 * framebuffer.
1877 *
1878 * This should only fail upon a hung GPU, in which case we
1879 * can safely continue.
1880 */
1881 dev_priv->mm.interruptible = false;
1882 ret = i915_gem_object_finish_gpu(obj);
1883 dev_priv->mm.interruptible = was_interruptible;
1884
1885 return ret;
1886}
1887
1888static int
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -05001889intel_pipe_set_base(struct drm_crtc *crtc, int x, int y,
1890 struct drm_framebuffer *old_fb)
Jesse Barnes79e53942008-11-07 14:24:08 -08001891{
1892 struct drm_device *dev = crtc->dev;
Chris Wilson6b8e6ed2012-04-17 15:08:19 +01001893 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -08001894 struct drm_i915_master_private *master_priv;
1895 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001896 int ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08001897
1898 /* no fb bound */
1899 if (!crtc->fb) {
Jesse Barnesa5071c22011-07-19 15:38:56 -07001900 DRM_ERROR("No FB bound\n");
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001901 return 0;
1902 }
1903
Chris Wilson265db952010-09-20 15:41:01 +01001904 switch (intel_crtc->plane) {
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001905 case 0:
1906 case 1:
1907 break;
Jesse Barnes27f82272011-09-02 12:54:37 -07001908 case 2:
1909 if (IS_IVYBRIDGE(dev))
1910 break;
1911 /* fall through otherwise */
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001912 default:
Jesse Barnesa5071c22011-07-19 15:38:56 -07001913 DRM_ERROR("no plane for crtc\n");
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001914 return -EINVAL;
Jesse Barnes79e53942008-11-07 14:24:08 -08001915 }
1916
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001917 mutex_lock(&dev->struct_mutex);
Chris Wilson265db952010-09-20 15:41:01 +01001918 ret = intel_pin_and_fence_fb_obj(dev,
1919 to_intel_framebuffer(crtc->fb)->obj,
Chris Wilson919926a2010-11-12 13:42:53 +00001920 NULL);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001921 if (ret != 0) {
1922 mutex_unlock(&dev->struct_mutex);
Jesse Barnesa5071c22011-07-19 15:38:56 -07001923 DRM_ERROR("pin & fence failed\n");
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001924 return ret;
1925 }
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -05001926
Chris Wilson14667a42012-04-03 17:58:35 +01001927 if (old_fb)
1928 intel_finish_fb(old_fb);
Chris Wilson265db952010-09-20 15:41:01 +01001929
Chris Wilson6b8e6ed2012-04-17 15:08:19 +01001930 ret = dev_priv->display.update_plane(crtc, crtc->fb, x, y);
Chris Wilson4e6cfef2010-08-08 13:20:19 +01001931 if (ret) {
Chris Wilson1690e1e2011-12-14 13:57:08 +01001932 intel_unpin_fb_obj(to_intel_framebuffer(crtc->fb)->obj);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001933 mutex_unlock(&dev->struct_mutex);
Jesse Barnesa5071c22011-07-19 15:38:56 -07001934 DRM_ERROR("failed to update base address\n");
Chris Wilson4e6cfef2010-08-08 13:20:19 +01001935 return ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08001936 }
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -05001937
Chris Wilsonb7f1de22010-12-14 16:09:31 +00001938 if (old_fb) {
1939 intel_wait_for_vblank(dev, intel_crtc->pipe);
Chris Wilson1690e1e2011-12-14 13:57:08 +01001940 intel_unpin_fb_obj(to_intel_framebuffer(old_fb)->obj);
Chris Wilsonb7f1de22010-12-14 16:09:31 +00001941 }
Jesse Barnes652c3932009-08-17 13:31:43 -07001942
Chris Wilson6b8e6ed2012-04-17 15:08:19 +01001943 intel_update_fbc(dev);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001944 mutex_unlock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -08001945
1946 if (!dev->primary->master)
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001947 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08001948
1949 master_priv = dev->primary->master->driver_priv;
1950 if (!master_priv->sarea_priv)
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001951 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08001952
Chris Wilson265db952010-09-20 15:41:01 +01001953 if (intel_crtc->pipe) {
Jesse Barnes79e53942008-11-07 14:24:08 -08001954 master_priv->sarea_priv->pipeB_x = x;
1955 master_priv->sarea_priv->pipeB_y = y;
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001956 } else {
1957 master_priv->sarea_priv->pipeA_x = x;
1958 master_priv->sarea_priv->pipeA_y = y;
Jesse Barnes79e53942008-11-07 14:24:08 -08001959 }
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001960
1961 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08001962}
1963
Chris Wilson5eddb702010-09-11 13:48:45 +01001964static void ironlake_set_pll_edp(struct drm_crtc *crtc, int clock)
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001965{
1966 struct drm_device *dev = crtc->dev;
1967 struct drm_i915_private *dev_priv = dev->dev_private;
1968 u32 dpa_ctl;
1969
Zhao Yakui28c97732009-10-09 11:39:41 +08001970 DRM_DEBUG_KMS("eDP PLL enable for clock %d\n", clock);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001971 dpa_ctl = I915_READ(DP_A);
1972 dpa_ctl &= ~DP_PLL_FREQ_MASK;
1973
1974 if (clock < 200000) {
1975 u32 temp;
1976 dpa_ctl |= DP_PLL_FREQ_160MHZ;
1977 /* workaround for 160Mhz:
1978 1) program 0x4600c bits 15:0 = 0x8124
1979 2) program 0x46010 bit 0 = 1
1980 3) program 0x46034 bit 24 = 1
1981 4) program 0x64000 bit 14 = 1
1982 */
1983 temp = I915_READ(0x4600c);
1984 temp &= 0xffff0000;
1985 I915_WRITE(0x4600c, temp | 0x8124);
1986
1987 temp = I915_READ(0x46010);
1988 I915_WRITE(0x46010, temp | 1);
1989
1990 temp = I915_READ(0x46034);
1991 I915_WRITE(0x46034, temp | (1 << 24));
1992 } else {
1993 dpa_ctl |= DP_PLL_FREQ_270MHZ;
1994 }
1995 I915_WRITE(DP_A, dpa_ctl);
1996
Chris Wilson5eddb702010-09-11 13:48:45 +01001997 POSTING_READ(DP_A);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001998 udelay(500);
1999}
2000
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08002001static void intel_fdi_normal_train(struct drm_crtc *crtc)
2002{
2003 struct drm_device *dev = crtc->dev;
2004 struct drm_i915_private *dev_priv = dev->dev_private;
2005 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2006 int pipe = intel_crtc->pipe;
2007 u32 reg, temp;
2008
2009 /* enable normal train */
2010 reg = FDI_TX_CTL(pipe);
2011 temp = I915_READ(reg);
Keith Packard61e499b2011-05-17 16:13:52 -07002012 if (IS_IVYBRIDGE(dev)) {
Jesse Barnes357555c2011-04-28 15:09:55 -07002013 temp &= ~FDI_LINK_TRAIN_NONE_IVB;
2014 temp |= FDI_LINK_TRAIN_NONE_IVB | FDI_TX_ENHANCE_FRAME_ENABLE;
Keith Packard61e499b2011-05-17 16:13:52 -07002015 } else {
2016 temp &= ~FDI_LINK_TRAIN_NONE;
2017 temp |= FDI_LINK_TRAIN_NONE | FDI_TX_ENHANCE_FRAME_ENABLE;
Jesse Barnes357555c2011-04-28 15:09:55 -07002018 }
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08002019 I915_WRITE(reg, temp);
2020
2021 reg = FDI_RX_CTL(pipe);
2022 temp = I915_READ(reg);
2023 if (HAS_PCH_CPT(dev)) {
2024 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2025 temp |= FDI_LINK_TRAIN_NORMAL_CPT;
2026 } else {
2027 temp &= ~FDI_LINK_TRAIN_NONE;
2028 temp |= FDI_LINK_TRAIN_NONE;
2029 }
2030 I915_WRITE(reg, temp | FDI_RX_ENHANCE_FRAME_ENABLE);
2031
2032 /* wait one idle pattern time */
2033 POSTING_READ(reg);
2034 udelay(1000);
Jesse Barnes357555c2011-04-28 15:09:55 -07002035
2036 /* IVB wants error correction enabled */
2037 if (IS_IVYBRIDGE(dev))
2038 I915_WRITE(reg, I915_READ(reg) | FDI_FS_ERRC_ENABLE |
2039 FDI_FE_ERRC_ENABLE);
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08002040}
2041
Jesse Barnes291427f2011-07-29 12:42:37 -07002042static void cpt_phase_pointer_enable(struct drm_device *dev, int pipe)
2043{
2044 struct drm_i915_private *dev_priv = dev->dev_private;
2045 u32 flags = I915_READ(SOUTH_CHICKEN1);
2046
2047 flags |= FDI_PHASE_SYNC_OVR(pipe);
2048 I915_WRITE(SOUTH_CHICKEN1, flags); /* once to unlock... */
2049 flags |= FDI_PHASE_SYNC_EN(pipe);
2050 I915_WRITE(SOUTH_CHICKEN1, flags); /* then again to enable */
2051 POSTING_READ(SOUTH_CHICKEN1);
2052}
2053
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002054/* The FDI link training functions for ILK/Ibexpeak. */
2055static void ironlake_fdi_link_train(struct drm_crtc *crtc)
2056{
2057 struct drm_device *dev = crtc->dev;
2058 struct drm_i915_private *dev_priv = dev->dev_private;
2059 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2060 int pipe = intel_crtc->pipe;
Jesse Barnes0fc932b2011-01-04 15:09:37 -08002061 int plane = intel_crtc->plane;
Chris Wilson5eddb702010-09-11 13:48:45 +01002062 u32 reg, temp, tries;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002063
Jesse Barnes0fc932b2011-01-04 15:09:37 -08002064 /* FDI needs bits from pipe & plane first */
2065 assert_pipe_enabled(dev_priv, pipe);
2066 assert_plane_enabled(dev_priv, plane);
2067
Adam Jacksone1a44742010-06-25 15:32:14 -04002068 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
2069 for train result */
Chris Wilson5eddb702010-09-11 13:48:45 +01002070 reg = FDI_RX_IMR(pipe);
2071 temp = I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04002072 temp &= ~FDI_RX_SYMBOL_LOCK;
2073 temp &= ~FDI_RX_BIT_LOCK;
Chris Wilson5eddb702010-09-11 13:48:45 +01002074 I915_WRITE(reg, temp);
2075 I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04002076 udelay(150);
2077
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002078 /* enable CPU FDI TX and PCH FDI RX */
Chris Wilson5eddb702010-09-11 13:48:45 +01002079 reg = FDI_TX_CTL(pipe);
2080 temp = I915_READ(reg);
Adam Jackson77ffb592010-04-12 11:38:44 -04002081 temp &= ~(7 << 19);
2082 temp |= (intel_crtc->fdi_lanes - 1) << 19;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002083 temp &= ~FDI_LINK_TRAIN_NONE;
2084 temp |= FDI_LINK_TRAIN_PATTERN_1;
Chris Wilson5eddb702010-09-11 13:48:45 +01002085 I915_WRITE(reg, temp | FDI_TX_ENABLE);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002086
Chris Wilson5eddb702010-09-11 13:48:45 +01002087 reg = FDI_RX_CTL(pipe);
2088 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002089 temp &= ~FDI_LINK_TRAIN_NONE;
2090 temp |= FDI_LINK_TRAIN_PATTERN_1;
Chris Wilson5eddb702010-09-11 13:48:45 +01002091 I915_WRITE(reg, temp | FDI_RX_ENABLE);
2092
2093 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002094 udelay(150);
2095
Jesse Barnes5b2adf82010-10-07 16:01:15 -07002096 /* Ironlake workaround, enable clock pointer after FDI enable*/
Jesse Barnes6f06ce12011-01-04 15:09:38 -08002097 if (HAS_PCH_IBX(dev)) {
2098 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR);
2099 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR |
2100 FDI_RX_PHASE_SYNC_POINTER_EN);
2101 }
Jesse Barnes5b2adf82010-10-07 16:01:15 -07002102
Chris Wilson5eddb702010-09-11 13:48:45 +01002103 reg = FDI_RX_IIR(pipe);
Adam Jacksone1a44742010-06-25 15:32:14 -04002104 for (tries = 0; tries < 5; tries++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002105 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002106 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2107
2108 if ((temp & FDI_RX_BIT_LOCK)) {
2109 DRM_DEBUG_KMS("FDI train 1 done.\n");
Chris Wilson5eddb702010-09-11 13:48:45 +01002110 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002111 break;
2112 }
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002113 }
Adam Jacksone1a44742010-06-25 15:32:14 -04002114 if (tries == 5)
Chris Wilson5eddb702010-09-11 13:48:45 +01002115 DRM_ERROR("FDI train 1 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002116
2117 /* Train 2 */
Chris Wilson5eddb702010-09-11 13:48:45 +01002118 reg = FDI_TX_CTL(pipe);
2119 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002120 temp &= ~FDI_LINK_TRAIN_NONE;
2121 temp |= FDI_LINK_TRAIN_PATTERN_2;
Chris Wilson5eddb702010-09-11 13:48:45 +01002122 I915_WRITE(reg, temp);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002123
Chris Wilson5eddb702010-09-11 13:48:45 +01002124 reg = FDI_RX_CTL(pipe);
2125 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002126 temp &= ~FDI_LINK_TRAIN_NONE;
2127 temp |= FDI_LINK_TRAIN_PATTERN_2;
Chris Wilson5eddb702010-09-11 13:48:45 +01002128 I915_WRITE(reg, temp);
2129
2130 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002131 udelay(150);
2132
Chris Wilson5eddb702010-09-11 13:48:45 +01002133 reg = FDI_RX_IIR(pipe);
Adam Jacksone1a44742010-06-25 15:32:14 -04002134 for (tries = 0; tries < 5; tries++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002135 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002136 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2137
2138 if (temp & FDI_RX_SYMBOL_LOCK) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002139 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002140 DRM_DEBUG_KMS("FDI train 2 done.\n");
2141 break;
2142 }
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002143 }
Adam Jacksone1a44742010-06-25 15:32:14 -04002144 if (tries == 5)
Chris Wilson5eddb702010-09-11 13:48:45 +01002145 DRM_ERROR("FDI train 2 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002146
2147 DRM_DEBUG_KMS("FDI train done\n");
Jesse Barnes5c5313c2010-10-07 16:01:11 -07002148
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002149}
2150
Akshay Joshi0206e352011-08-16 15:34:10 -04002151static const int snb_b_fdi_train_param[] = {
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002152 FDI_LINK_TRAIN_400MV_0DB_SNB_B,
2153 FDI_LINK_TRAIN_400MV_6DB_SNB_B,
2154 FDI_LINK_TRAIN_600MV_3_5DB_SNB_B,
2155 FDI_LINK_TRAIN_800MV_0DB_SNB_B,
2156};
2157
2158/* The FDI link training functions for SNB/Cougarpoint. */
2159static void gen6_fdi_link_train(struct drm_crtc *crtc)
2160{
2161 struct drm_device *dev = crtc->dev;
2162 struct drm_i915_private *dev_priv = dev->dev_private;
2163 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2164 int pipe = intel_crtc->pipe;
Sean Paulfa37d392012-03-02 12:53:39 -05002165 u32 reg, temp, i, retry;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002166
Adam Jacksone1a44742010-06-25 15:32:14 -04002167 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
2168 for train result */
Chris Wilson5eddb702010-09-11 13:48:45 +01002169 reg = FDI_RX_IMR(pipe);
2170 temp = I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04002171 temp &= ~FDI_RX_SYMBOL_LOCK;
2172 temp &= ~FDI_RX_BIT_LOCK;
Chris Wilson5eddb702010-09-11 13:48:45 +01002173 I915_WRITE(reg, temp);
2174
2175 POSTING_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04002176 udelay(150);
2177
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002178 /* enable CPU FDI TX and PCH FDI RX */
Chris Wilson5eddb702010-09-11 13:48:45 +01002179 reg = FDI_TX_CTL(pipe);
2180 temp = I915_READ(reg);
Adam Jackson77ffb592010-04-12 11:38:44 -04002181 temp &= ~(7 << 19);
2182 temp |= (intel_crtc->fdi_lanes - 1) << 19;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002183 temp &= ~FDI_LINK_TRAIN_NONE;
2184 temp |= FDI_LINK_TRAIN_PATTERN_1;
2185 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2186 /* SNB-B */
2187 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
Chris Wilson5eddb702010-09-11 13:48:45 +01002188 I915_WRITE(reg, temp | FDI_TX_ENABLE);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002189
Chris Wilson5eddb702010-09-11 13:48:45 +01002190 reg = FDI_RX_CTL(pipe);
2191 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002192 if (HAS_PCH_CPT(dev)) {
2193 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2194 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
2195 } else {
2196 temp &= ~FDI_LINK_TRAIN_NONE;
2197 temp |= FDI_LINK_TRAIN_PATTERN_1;
2198 }
Chris Wilson5eddb702010-09-11 13:48:45 +01002199 I915_WRITE(reg, temp | FDI_RX_ENABLE);
2200
2201 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002202 udelay(150);
2203
Jesse Barnes291427f2011-07-29 12:42:37 -07002204 if (HAS_PCH_CPT(dev))
2205 cpt_phase_pointer_enable(dev, pipe);
2206
Akshay Joshi0206e352011-08-16 15:34:10 -04002207 for (i = 0; i < 4; i++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002208 reg = FDI_TX_CTL(pipe);
2209 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002210 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2211 temp |= snb_b_fdi_train_param[i];
Chris Wilson5eddb702010-09-11 13:48:45 +01002212 I915_WRITE(reg, temp);
2213
2214 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002215 udelay(500);
2216
Sean Paulfa37d392012-03-02 12:53:39 -05002217 for (retry = 0; retry < 5; retry++) {
2218 reg = FDI_RX_IIR(pipe);
2219 temp = I915_READ(reg);
2220 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2221 if (temp & FDI_RX_BIT_LOCK) {
2222 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
2223 DRM_DEBUG_KMS("FDI train 1 done.\n");
2224 break;
2225 }
2226 udelay(50);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002227 }
Sean Paulfa37d392012-03-02 12:53:39 -05002228 if (retry < 5)
2229 break;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002230 }
2231 if (i == 4)
Chris Wilson5eddb702010-09-11 13:48:45 +01002232 DRM_ERROR("FDI train 1 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002233
2234 /* Train 2 */
Chris Wilson5eddb702010-09-11 13:48:45 +01002235 reg = FDI_TX_CTL(pipe);
2236 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002237 temp &= ~FDI_LINK_TRAIN_NONE;
2238 temp |= FDI_LINK_TRAIN_PATTERN_2;
2239 if (IS_GEN6(dev)) {
2240 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2241 /* SNB-B */
2242 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
2243 }
Chris Wilson5eddb702010-09-11 13:48:45 +01002244 I915_WRITE(reg, temp);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002245
Chris Wilson5eddb702010-09-11 13:48:45 +01002246 reg = FDI_RX_CTL(pipe);
2247 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002248 if (HAS_PCH_CPT(dev)) {
2249 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2250 temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
2251 } else {
2252 temp &= ~FDI_LINK_TRAIN_NONE;
2253 temp |= FDI_LINK_TRAIN_PATTERN_2;
2254 }
Chris Wilson5eddb702010-09-11 13:48:45 +01002255 I915_WRITE(reg, temp);
2256
2257 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002258 udelay(150);
2259
Akshay Joshi0206e352011-08-16 15:34:10 -04002260 for (i = 0; i < 4; i++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002261 reg = FDI_TX_CTL(pipe);
2262 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002263 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2264 temp |= snb_b_fdi_train_param[i];
Chris Wilson5eddb702010-09-11 13:48:45 +01002265 I915_WRITE(reg, temp);
2266
2267 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002268 udelay(500);
2269
Sean Paulfa37d392012-03-02 12:53:39 -05002270 for (retry = 0; retry < 5; retry++) {
2271 reg = FDI_RX_IIR(pipe);
2272 temp = I915_READ(reg);
2273 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2274 if (temp & FDI_RX_SYMBOL_LOCK) {
2275 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
2276 DRM_DEBUG_KMS("FDI train 2 done.\n");
2277 break;
2278 }
2279 udelay(50);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002280 }
Sean Paulfa37d392012-03-02 12:53:39 -05002281 if (retry < 5)
2282 break;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002283 }
2284 if (i == 4)
Chris Wilson5eddb702010-09-11 13:48:45 +01002285 DRM_ERROR("FDI train 2 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002286
2287 DRM_DEBUG_KMS("FDI train done.\n");
2288}
2289
Jesse Barnes357555c2011-04-28 15:09:55 -07002290/* Manual link training for Ivy Bridge A0 parts */
2291static void ivb_manual_fdi_link_train(struct drm_crtc *crtc)
2292{
2293 struct drm_device *dev = crtc->dev;
2294 struct drm_i915_private *dev_priv = dev->dev_private;
2295 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2296 int pipe = intel_crtc->pipe;
2297 u32 reg, temp, i;
2298
2299 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
2300 for train result */
2301 reg = FDI_RX_IMR(pipe);
2302 temp = I915_READ(reg);
2303 temp &= ~FDI_RX_SYMBOL_LOCK;
2304 temp &= ~FDI_RX_BIT_LOCK;
2305 I915_WRITE(reg, temp);
2306
2307 POSTING_READ(reg);
2308 udelay(150);
2309
2310 /* enable CPU FDI TX and PCH FDI RX */
2311 reg = FDI_TX_CTL(pipe);
2312 temp = I915_READ(reg);
2313 temp &= ~(7 << 19);
2314 temp |= (intel_crtc->fdi_lanes - 1) << 19;
2315 temp &= ~(FDI_LINK_TRAIN_AUTO | FDI_LINK_TRAIN_NONE_IVB);
2316 temp |= FDI_LINK_TRAIN_PATTERN_1_IVB;
2317 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2318 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
Jesse Barnesc4f9c4c2011-10-10 14:28:52 -07002319 temp |= FDI_COMPOSITE_SYNC;
Jesse Barnes357555c2011-04-28 15:09:55 -07002320 I915_WRITE(reg, temp | FDI_TX_ENABLE);
2321
2322 reg = FDI_RX_CTL(pipe);
2323 temp = I915_READ(reg);
2324 temp &= ~FDI_LINK_TRAIN_AUTO;
2325 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2326 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
Jesse Barnesc4f9c4c2011-10-10 14:28:52 -07002327 temp |= FDI_COMPOSITE_SYNC;
Jesse Barnes357555c2011-04-28 15:09:55 -07002328 I915_WRITE(reg, temp | FDI_RX_ENABLE);
2329
2330 POSTING_READ(reg);
2331 udelay(150);
2332
Jesse Barnes291427f2011-07-29 12:42:37 -07002333 if (HAS_PCH_CPT(dev))
2334 cpt_phase_pointer_enable(dev, pipe);
2335
Akshay Joshi0206e352011-08-16 15:34:10 -04002336 for (i = 0; i < 4; i++) {
Jesse Barnes357555c2011-04-28 15:09:55 -07002337 reg = FDI_TX_CTL(pipe);
2338 temp = I915_READ(reg);
2339 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2340 temp |= snb_b_fdi_train_param[i];
2341 I915_WRITE(reg, temp);
2342
2343 POSTING_READ(reg);
2344 udelay(500);
2345
2346 reg = FDI_RX_IIR(pipe);
2347 temp = I915_READ(reg);
2348 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2349
2350 if (temp & FDI_RX_BIT_LOCK ||
2351 (I915_READ(reg) & FDI_RX_BIT_LOCK)) {
2352 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
2353 DRM_DEBUG_KMS("FDI train 1 done.\n");
2354 break;
2355 }
2356 }
2357 if (i == 4)
2358 DRM_ERROR("FDI train 1 fail!\n");
2359
2360 /* Train 2 */
2361 reg = FDI_TX_CTL(pipe);
2362 temp = I915_READ(reg);
2363 temp &= ~FDI_LINK_TRAIN_NONE_IVB;
2364 temp |= FDI_LINK_TRAIN_PATTERN_2_IVB;
2365 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2366 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
2367 I915_WRITE(reg, temp);
2368
2369 reg = FDI_RX_CTL(pipe);
2370 temp = I915_READ(reg);
2371 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2372 temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
2373 I915_WRITE(reg, temp);
2374
2375 POSTING_READ(reg);
2376 udelay(150);
2377
Akshay Joshi0206e352011-08-16 15:34:10 -04002378 for (i = 0; i < 4; i++) {
Jesse Barnes357555c2011-04-28 15:09:55 -07002379 reg = FDI_TX_CTL(pipe);
2380 temp = I915_READ(reg);
2381 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2382 temp |= snb_b_fdi_train_param[i];
2383 I915_WRITE(reg, temp);
2384
2385 POSTING_READ(reg);
2386 udelay(500);
2387
2388 reg = FDI_RX_IIR(pipe);
2389 temp = I915_READ(reg);
2390 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2391
2392 if (temp & FDI_RX_SYMBOL_LOCK) {
2393 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
2394 DRM_DEBUG_KMS("FDI train 2 done.\n");
2395 break;
2396 }
2397 }
2398 if (i == 4)
2399 DRM_ERROR("FDI train 2 fail!\n");
2400
2401 DRM_DEBUG_KMS("FDI train done.\n");
2402}
2403
2404static void ironlake_fdi_pll_enable(struct drm_crtc *crtc)
Jesse Barnes0e23b992010-09-10 11:10:00 -07002405{
2406 struct drm_device *dev = crtc->dev;
2407 struct drm_i915_private *dev_priv = dev->dev_private;
2408 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2409 int pipe = intel_crtc->pipe;
Chris Wilson5eddb702010-09-11 13:48:45 +01002410 u32 reg, temp;
Jesse Barnes0e23b992010-09-10 11:10:00 -07002411
Jesse Barnesc64e3112010-09-10 11:27:03 -07002412 /* Write the TU size bits so error detection works */
Chris Wilson5eddb702010-09-11 13:48:45 +01002413 I915_WRITE(FDI_RX_TUSIZE1(pipe),
2414 I915_READ(PIPE_DATA_M1(pipe)) & TU_SIZE_MASK);
Jesse Barnesc64e3112010-09-10 11:27:03 -07002415
Jesse Barnes0e23b992010-09-10 11:10:00 -07002416 /* enable PCH FDI RX PLL, wait warmup plus DMI latency */
Chris Wilson5eddb702010-09-11 13:48:45 +01002417 reg = FDI_RX_CTL(pipe);
2418 temp = I915_READ(reg);
2419 temp &= ~((0x7 << 19) | (0x7 << 16));
Jesse Barnes0e23b992010-09-10 11:10:00 -07002420 temp |= (intel_crtc->fdi_lanes - 1) << 19;
Chris Wilson5eddb702010-09-11 13:48:45 +01002421 temp |= (I915_READ(PIPECONF(pipe)) & PIPE_BPC_MASK) << 11;
2422 I915_WRITE(reg, temp | FDI_RX_PLL_ENABLE);
2423
2424 POSTING_READ(reg);
Jesse Barnes0e23b992010-09-10 11:10:00 -07002425 udelay(200);
2426
2427 /* Switch from Rawclk to PCDclk */
Chris Wilson5eddb702010-09-11 13:48:45 +01002428 temp = I915_READ(reg);
2429 I915_WRITE(reg, temp | FDI_PCDCLK);
2430
2431 POSTING_READ(reg);
Jesse Barnes0e23b992010-09-10 11:10:00 -07002432 udelay(200);
2433
2434 /* Enable CPU FDI TX PLL, always on for Ironlake */
Chris Wilson5eddb702010-09-11 13:48:45 +01002435 reg = FDI_TX_CTL(pipe);
2436 temp = I915_READ(reg);
Jesse Barnes0e23b992010-09-10 11:10:00 -07002437 if ((temp & FDI_TX_PLL_ENABLE) == 0) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002438 I915_WRITE(reg, temp | FDI_TX_PLL_ENABLE);
2439
2440 POSTING_READ(reg);
Jesse Barnes0e23b992010-09-10 11:10:00 -07002441 udelay(100);
2442 }
2443}
2444
Jesse Barnes291427f2011-07-29 12:42:37 -07002445static void cpt_phase_pointer_disable(struct drm_device *dev, int pipe)
2446{
2447 struct drm_i915_private *dev_priv = dev->dev_private;
2448 u32 flags = I915_READ(SOUTH_CHICKEN1);
2449
2450 flags &= ~(FDI_PHASE_SYNC_EN(pipe));
2451 I915_WRITE(SOUTH_CHICKEN1, flags); /* once to disable... */
2452 flags &= ~(FDI_PHASE_SYNC_OVR(pipe));
2453 I915_WRITE(SOUTH_CHICKEN1, flags); /* then again to lock */
2454 POSTING_READ(SOUTH_CHICKEN1);
2455}
Jesse Barnes0fc932b2011-01-04 15:09:37 -08002456static void ironlake_fdi_disable(struct drm_crtc *crtc)
2457{
2458 struct drm_device *dev = crtc->dev;
2459 struct drm_i915_private *dev_priv = dev->dev_private;
2460 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2461 int pipe = intel_crtc->pipe;
2462 u32 reg, temp;
2463
2464 /* disable CPU FDI tx and PCH FDI rx */
2465 reg = FDI_TX_CTL(pipe);
2466 temp = I915_READ(reg);
2467 I915_WRITE(reg, temp & ~FDI_TX_ENABLE);
2468 POSTING_READ(reg);
2469
2470 reg = FDI_RX_CTL(pipe);
2471 temp = I915_READ(reg);
2472 temp &= ~(0x7 << 16);
2473 temp |= (I915_READ(PIPECONF(pipe)) & PIPE_BPC_MASK) << 11;
2474 I915_WRITE(reg, temp & ~FDI_RX_ENABLE);
2475
2476 POSTING_READ(reg);
2477 udelay(100);
2478
2479 /* Ironlake workaround, disable clock pointer after downing FDI */
Jesse Barnes6f06ce12011-01-04 15:09:38 -08002480 if (HAS_PCH_IBX(dev)) {
2481 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR);
Jesse Barnes0fc932b2011-01-04 15:09:37 -08002482 I915_WRITE(FDI_RX_CHICKEN(pipe),
2483 I915_READ(FDI_RX_CHICKEN(pipe) &
Jesse Barnes6f06ce12011-01-04 15:09:38 -08002484 ~FDI_RX_PHASE_SYNC_POINTER_EN));
Jesse Barnes291427f2011-07-29 12:42:37 -07002485 } else if (HAS_PCH_CPT(dev)) {
2486 cpt_phase_pointer_disable(dev, pipe);
Jesse Barnes6f06ce12011-01-04 15:09:38 -08002487 }
Jesse Barnes0fc932b2011-01-04 15:09:37 -08002488
2489 /* still set train pattern 1 */
2490 reg = FDI_TX_CTL(pipe);
2491 temp = I915_READ(reg);
2492 temp &= ~FDI_LINK_TRAIN_NONE;
2493 temp |= FDI_LINK_TRAIN_PATTERN_1;
2494 I915_WRITE(reg, temp);
2495
2496 reg = FDI_RX_CTL(pipe);
2497 temp = I915_READ(reg);
2498 if (HAS_PCH_CPT(dev)) {
2499 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2500 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
2501 } else {
2502 temp &= ~FDI_LINK_TRAIN_NONE;
2503 temp |= FDI_LINK_TRAIN_PATTERN_1;
2504 }
2505 /* BPC in FDI rx is consistent with that in PIPECONF */
2506 temp &= ~(0x07 << 16);
2507 temp |= (I915_READ(PIPECONF(pipe)) & PIPE_BPC_MASK) << 11;
2508 I915_WRITE(reg, temp);
2509
2510 POSTING_READ(reg);
2511 udelay(100);
2512}
2513
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01002514static void intel_crtc_wait_for_pending_flips(struct drm_crtc *crtc)
2515{
Chris Wilson0f911282012-04-17 10:05:38 +01002516 struct drm_device *dev = crtc->dev;
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01002517
2518 if (crtc->fb == NULL)
2519 return;
2520
Chris Wilson0f911282012-04-17 10:05:38 +01002521 mutex_lock(&dev->struct_mutex);
2522 intel_finish_fb(crtc->fb);
2523 mutex_unlock(&dev->struct_mutex);
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01002524}
2525
Jesse Barnes040484a2011-01-03 12:14:26 -08002526static bool intel_crtc_driving_pch(struct drm_crtc *crtc)
2527{
2528 struct drm_device *dev = crtc->dev;
2529 struct drm_mode_config *mode_config = &dev->mode_config;
2530 struct intel_encoder *encoder;
2531
2532 /*
2533 * If there's a non-PCH eDP on this crtc, it must be DP_A, and that
2534 * must be driven by its own crtc; no sharing is possible.
2535 */
2536 list_for_each_entry(encoder, &mode_config->encoder_list, base.head) {
2537 if (encoder->base.crtc != crtc)
2538 continue;
2539
2540 switch (encoder->type) {
2541 case INTEL_OUTPUT_EDP:
2542 if (!intel_encoder_is_pch_edp(&encoder->base))
2543 return false;
2544 continue;
2545 }
2546 }
2547
2548 return true;
2549}
2550
Jesse Barnesf67a5592011-01-05 10:31:48 -08002551/*
2552 * Enable PCH resources required for PCH ports:
2553 * - PCH PLLs
2554 * - FDI training & RX/TX
2555 * - update transcoder timings
2556 * - DP transcoding bits
2557 * - transcoder
2558 */
2559static void ironlake_pch_enable(struct drm_crtc *crtc)
Jesse Barnes79e53942008-11-07 14:24:08 -08002560{
2561 struct drm_device *dev = crtc->dev;
Zhenyu Wang2c072452009-06-05 15:38:42 +08002562 struct drm_i915_private *dev_priv = dev->dev_private;
2563 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2564 int pipe = intel_crtc->pipe;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01002565 u32 reg, temp;
Jesse Barnes6be4a602010-09-10 10:26:01 -07002566
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002567 /* For PCH output, training FDI link */
Jesse Barnes674cf962011-04-28 14:27:04 -07002568 dev_priv->display.fdi_link_train(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002569
Jesse Barnesee7b9f92012-04-20 17:11:53 +01002570 intel_enable_pch_pll(intel_crtc);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002571
2572 if (HAS_PCH_CPT(dev)) {
Jesse Barnesee7b9f92012-04-20 17:11:53 +01002573 u32 sel;
Jesse Barnes4b645f12011-10-12 09:51:31 -07002574
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002575 temp = I915_READ(PCH_DPLL_SEL);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01002576 switch (pipe) {
2577 default:
2578 case 0:
2579 temp |= TRANSA_DPLL_ENABLE;
2580 sel = TRANSA_DPLLB_SEL;
2581 break;
2582 case 1:
2583 temp |= TRANSB_DPLL_ENABLE;
2584 sel = TRANSB_DPLLB_SEL;
2585 break;
2586 case 2:
2587 temp |= TRANSC_DPLL_ENABLE;
2588 sel = TRANSC_DPLLB_SEL;
2589 break;
Jesse Barnesd64311a2011-10-12 15:01:33 -07002590 }
Jesse Barnesee7b9f92012-04-20 17:11:53 +01002591 if (intel_crtc->pch_pll->pll_reg == _PCH_DPLL_B)
2592 temp |= sel;
2593 else
2594 temp &= ~sel;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002595 I915_WRITE(PCH_DPLL_SEL, temp);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002596 }
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002597
Jesse Barnesd9b6cb52011-01-04 15:09:35 -08002598 /* set transcoder timing, panel must allow it */
2599 assert_panel_unlocked(dev_priv, pipe);
Chris Wilson5eddb702010-09-11 13:48:45 +01002600 I915_WRITE(TRANS_HTOTAL(pipe), I915_READ(HTOTAL(pipe)));
2601 I915_WRITE(TRANS_HBLANK(pipe), I915_READ(HBLANK(pipe)));
2602 I915_WRITE(TRANS_HSYNC(pipe), I915_READ(HSYNC(pipe)));
2603
2604 I915_WRITE(TRANS_VTOTAL(pipe), I915_READ(VTOTAL(pipe)));
2605 I915_WRITE(TRANS_VBLANK(pipe), I915_READ(VBLANK(pipe)));
2606 I915_WRITE(TRANS_VSYNC(pipe), I915_READ(VSYNC(pipe)));
Daniel Vetter0529a0d2012-01-28 14:49:24 +01002607 I915_WRITE(TRANS_VSYNCSHIFT(pipe), I915_READ(VSYNCSHIFT(pipe)));
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002608
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08002609 intel_fdi_normal_train(crtc);
2610
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002611 /* For PCH DP, enable TRANS_DP_CTL */
2612 if (HAS_PCH_CPT(dev) &&
Keith Packard417e8222011-11-01 19:54:11 -07002613 (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT) ||
2614 intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP))) {
Jesse Barnes9325c9f2011-06-24 12:19:21 -07002615 u32 bpc = (I915_READ(PIPECONF(pipe)) & PIPE_BPC_MASK) >> 5;
Chris Wilson5eddb702010-09-11 13:48:45 +01002616 reg = TRANS_DP_CTL(pipe);
2617 temp = I915_READ(reg);
2618 temp &= ~(TRANS_DP_PORT_SEL_MASK |
Eric Anholt220cad32010-11-18 09:32:58 +08002619 TRANS_DP_SYNC_MASK |
2620 TRANS_DP_BPC_MASK);
Chris Wilson5eddb702010-09-11 13:48:45 +01002621 temp |= (TRANS_DP_OUTPUT_ENABLE |
2622 TRANS_DP_ENH_FRAMING);
Jesse Barnes9325c9f2011-06-24 12:19:21 -07002623 temp |= bpc << 9; /* same format but at 11:9 */
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002624
2625 if (crtc->mode.flags & DRM_MODE_FLAG_PHSYNC)
Chris Wilson5eddb702010-09-11 13:48:45 +01002626 temp |= TRANS_DP_HSYNC_ACTIVE_HIGH;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002627 if (crtc->mode.flags & DRM_MODE_FLAG_PVSYNC)
Chris Wilson5eddb702010-09-11 13:48:45 +01002628 temp |= TRANS_DP_VSYNC_ACTIVE_HIGH;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002629
2630 switch (intel_trans_dp_port_sel(crtc)) {
2631 case PCH_DP_B:
Chris Wilson5eddb702010-09-11 13:48:45 +01002632 temp |= TRANS_DP_PORT_SEL_B;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002633 break;
2634 case PCH_DP_C:
Chris Wilson5eddb702010-09-11 13:48:45 +01002635 temp |= TRANS_DP_PORT_SEL_C;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002636 break;
2637 case PCH_DP_D:
Chris Wilson5eddb702010-09-11 13:48:45 +01002638 temp |= TRANS_DP_PORT_SEL_D;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002639 break;
2640 default:
2641 DRM_DEBUG_KMS("Wrong PCH DP port return. Guess port B\n");
Chris Wilson5eddb702010-09-11 13:48:45 +01002642 temp |= TRANS_DP_PORT_SEL_B;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002643 break;
2644 }
2645
Chris Wilson5eddb702010-09-11 13:48:45 +01002646 I915_WRITE(reg, temp);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002647 }
2648
Jesse Barnes040484a2011-01-03 12:14:26 -08002649 intel_enable_transcoder(dev_priv, pipe);
Jesse Barnesf67a5592011-01-05 10:31:48 -08002650}
2651
Jesse Barnesee7b9f92012-04-20 17:11:53 +01002652static void intel_put_pch_pll(struct intel_crtc *intel_crtc)
2653{
2654 struct intel_pch_pll *pll = intel_crtc->pch_pll;
2655
2656 if (pll == NULL)
2657 return;
2658
2659 if (pll->refcount == 0) {
2660 WARN(1, "bad PCH PLL refcount\n");
2661 return;
2662 }
2663
2664 --pll->refcount;
2665 intel_crtc->pch_pll = NULL;
2666}
2667
2668static struct intel_pch_pll *intel_get_pch_pll(struct intel_crtc *intel_crtc, u32 dpll, u32 fp)
2669{
2670 struct drm_i915_private *dev_priv = intel_crtc->base.dev->dev_private;
2671 struct intel_pch_pll *pll;
2672 int i;
2673
2674 pll = intel_crtc->pch_pll;
2675 if (pll) {
2676 DRM_DEBUG_KMS("CRTC:%d reusing existing PCH PLL %x\n",
2677 intel_crtc->base.base.id, pll->pll_reg);
2678 goto prepare;
2679 }
2680
2681 for (i = 0; i < dev_priv->num_pch_pll; i++) {
2682 pll = &dev_priv->pch_plls[i];
2683
2684 /* Only want to check enabled timings first */
2685 if (pll->refcount == 0)
2686 continue;
2687
2688 if (dpll == (I915_READ(pll->pll_reg) & 0x7fffffff) &&
2689 fp == I915_READ(pll->fp0_reg)) {
2690 DRM_DEBUG_KMS("CRTC:%d sharing existing PCH PLL %x (refcount %d, ative %d)\n",
2691 intel_crtc->base.base.id,
2692 pll->pll_reg, pll->refcount, pll->active);
2693
2694 goto found;
2695 }
2696 }
2697
2698 /* Ok no matching timings, maybe there's a free one? */
2699 for (i = 0; i < dev_priv->num_pch_pll; i++) {
2700 pll = &dev_priv->pch_plls[i];
2701 if (pll->refcount == 0) {
2702 DRM_DEBUG_KMS("CRTC:%d allocated PCH PLL %x\n",
2703 intel_crtc->base.base.id, pll->pll_reg);
2704 goto found;
2705 }
2706 }
2707
2708 return NULL;
2709
2710found:
2711 intel_crtc->pch_pll = pll;
2712 pll->refcount++;
2713 DRM_DEBUG_DRIVER("using pll %d for pipe %d\n", i, intel_crtc->pipe);
2714prepare: /* separate function? */
2715 DRM_DEBUG_DRIVER("switching PLL %x off\n", pll->pll_reg);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01002716
Chris Wilsone04c7352012-05-02 20:43:56 +01002717 /* Wait for the clocks to stabilize before rewriting the regs */
2718 I915_WRITE(pll->pll_reg, dpll & ~DPLL_VCO_ENABLE);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01002719 POSTING_READ(pll->pll_reg);
2720 udelay(150);
Chris Wilsone04c7352012-05-02 20:43:56 +01002721
2722 I915_WRITE(pll->fp0_reg, fp);
2723 I915_WRITE(pll->pll_reg, dpll & ~DPLL_VCO_ENABLE);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01002724 pll->on = false;
2725 return pll;
2726}
2727
Jesse Barnesd4270e52011-10-11 10:43:02 -07002728void intel_cpt_verify_modeset(struct drm_device *dev, int pipe)
2729{
2730 struct drm_i915_private *dev_priv = dev->dev_private;
2731 int dslreg = PIPEDSL(pipe), tc2reg = TRANS_CHICKEN2(pipe);
2732 u32 temp;
2733
2734 temp = I915_READ(dslreg);
2735 udelay(500);
2736 if (wait_for(I915_READ(dslreg) != temp, 5)) {
2737 /* Without this, mode sets may fail silently on FDI */
2738 I915_WRITE(tc2reg, TRANS_AUTOTRAIN_GEN_STALL_DIS);
2739 udelay(250);
2740 I915_WRITE(tc2reg, 0);
2741 if (wait_for(I915_READ(dslreg) != temp, 5))
2742 DRM_ERROR("mode set failed: pipe %d stuck\n", pipe);
2743 }
2744}
2745
Jesse Barnesf67a5592011-01-05 10:31:48 -08002746static void ironlake_crtc_enable(struct drm_crtc *crtc)
2747{
2748 struct drm_device *dev = crtc->dev;
2749 struct drm_i915_private *dev_priv = dev->dev_private;
2750 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2751 int pipe = intel_crtc->pipe;
2752 int plane = intel_crtc->plane;
2753 u32 temp;
2754 bool is_pch_port;
2755
2756 if (intel_crtc->active)
2757 return;
2758
2759 intel_crtc->active = true;
2760 intel_update_watermarks(dev);
2761
2762 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
2763 temp = I915_READ(PCH_LVDS);
2764 if ((temp & LVDS_PORT_EN) == 0)
2765 I915_WRITE(PCH_LVDS, temp | LVDS_PORT_EN);
2766 }
2767
2768 is_pch_port = intel_crtc_driving_pch(crtc);
2769
2770 if (is_pch_port)
Jesse Barnes357555c2011-04-28 15:09:55 -07002771 ironlake_fdi_pll_enable(crtc);
Jesse Barnesf67a5592011-01-05 10:31:48 -08002772 else
2773 ironlake_fdi_disable(crtc);
2774
2775 /* Enable panel fitting for LVDS */
2776 if (dev_priv->pch_pf_size &&
2777 (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) || HAS_eDP)) {
2778 /* Force use of hard-coded filter coefficients
2779 * as some pre-programmed values are broken,
2780 * e.g. x201.
2781 */
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08002782 I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3);
2783 I915_WRITE(PF_WIN_POS(pipe), dev_priv->pch_pf_pos);
2784 I915_WRITE(PF_WIN_SZ(pipe), dev_priv->pch_pf_size);
Jesse Barnesf67a5592011-01-05 10:31:48 -08002785 }
2786
Jesse Barnes9c54c0d2011-06-15 23:32:33 +02002787 /*
2788 * On ILK+ LUT must be loaded before the pipe is running but with
2789 * clocks enabled
2790 */
2791 intel_crtc_load_lut(crtc);
2792
Jesse Barnesf67a5592011-01-05 10:31:48 -08002793 intel_enable_pipe(dev_priv, pipe, is_pch_port);
2794 intel_enable_plane(dev_priv, plane, pipe);
2795
2796 if (is_pch_port)
2797 ironlake_pch_enable(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002798
Ben Widawskyd1ebd8162011-04-25 20:11:50 +01002799 mutex_lock(&dev->struct_mutex);
Chris Wilsonbed4a672010-09-11 10:47:47 +01002800 intel_update_fbc(dev);
Ben Widawskyd1ebd8162011-04-25 20:11:50 +01002801 mutex_unlock(&dev->struct_mutex);
2802
Chris Wilson6b383a72010-09-13 13:54:26 +01002803 intel_crtc_update_cursor(crtc, true);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002804}
2805
2806static void ironlake_crtc_disable(struct drm_crtc *crtc)
2807{
2808 struct drm_device *dev = crtc->dev;
2809 struct drm_i915_private *dev_priv = dev->dev_private;
2810 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2811 int pipe = intel_crtc->pipe;
2812 int plane = intel_crtc->plane;
Chris Wilson5eddb702010-09-11 13:48:45 +01002813 u32 reg, temp;
Jesse Barnes6be4a602010-09-10 10:26:01 -07002814
Chris Wilsonf7abfe82010-09-13 14:19:16 +01002815 if (!intel_crtc->active)
2816 return;
2817
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01002818 intel_crtc_wait_for_pending_flips(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002819 drm_vblank_off(dev, pipe);
Chris Wilson6b383a72010-09-13 13:54:26 +01002820 intel_crtc_update_cursor(crtc, false);
Chris Wilson5eddb702010-09-11 13:48:45 +01002821
Jesse Barnesb24e7172011-01-04 15:09:30 -08002822 intel_disable_plane(dev_priv, plane, pipe);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002823
Chris Wilson973d04f2011-07-08 12:22:37 +01002824 if (dev_priv->cfb_plane == plane)
2825 intel_disable_fbc(dev);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002826
Jesse Barnesb24e7172011-01-04 15:09:30 -08002827 intel_disable_pipe(dev_priv, pipe);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002828
Jesse Barnes6be4a602010-09-10 10:26:01 -07002829 /* Disable PF */
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08002830 I915_WRITE(PF_CTL(pipe), 0);
2831 I915_WRITE(PF_WIN_SZ(pipe), 0);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002832
Jesse Barnes0fc932b2011-01-04 15:09:37 -08002833 ironlake_fdi_disable(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002834
Jesse Barnes47a05ec2011-02-07 13:46:40 -08002835 /* This is a horrible layering violation; we should be doing this in
2836 * the connector/encoder ->prepare instead, but we don't always have
2837 * enough information there about the config to know whether it will
2838 * actually be necessary or just cause undesired flicker.
2839 */
2840 intel_disable_pch_ports(dev_priv, pipe);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002841
Jesse Barnes040484a2011-01-03 12:14:26 -08002842 intel_disable_transcoder(dev_priv, pipe);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002843
Jesse Barnes6be4a602010-09-10 10:26:01 -07002844 if (HAS_PCH_CPT(dev)) {
2845 /* disable TRANS_DP_CTL */
Chris Wilson5eddb702010-09-11 13:48:45 +01002846 reg = TRANS_DP_CTL(pipe);
2847 temp = I915_READ(reg);
2848 temp &= ~(TRANS_DP_OUTPUT_ENABLE | TRANS_DP_PORT_SEL_MASK);
Eric Anholtcb3543c2011-02-02 12:08:07 -08002849 temp |= TRANS_DP_PORT_SEL_NONE;
Chris Wilson5eddb702010-09-11 13:48:45 +01002850 I915_WRITE(reg, temp);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002851
2852 /* disable DPLL_SEL */
2853 temp = I915_READ(PCH_DPLL_SEL);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08002854 switch (pipe) {
2855 case 0:
Jesse Barnesd64311a2011-10-12 15:01:33 -07002856 temp &= ~(TRANSA_DPLL_ENABLE | TRANSA_DPLLB_SEL);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08002857 break;
2858 case 1:
Jesse Barnes6be4a602010-09-10 10:26:01 -07002859 temp &= ~(TRANSB_DPLL_ENABLE | TRANSB_DPLLB_SEL);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08002860 break;
2861 case 2:
Jesse Barnes4b645f12011-10-12 09:51:31 -07002862 /* C shares PLL A or B */
Jesse Barnesd64311a2011-10-12 15:01:33 -07002863 temp &= ~(TRANSC_DPLL_ENABLE | TRANSC_DPLLB_SEL);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08002864 break;
2865 default:
2866 BUG(); /* wtf */
2867 }
Jesse Barnes6be4a602010-09-10 10:26:01 -07002868 I915_WRITE(PCH_DPLL_SEL, temp);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002869 }
2870
2871 /* disable PCH DPLL */
Jesse Barnesee7b9f92012-04-20 17:11:53 +01002872 intel_disable_pch_pll(intel_crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002873
2874 /* Switch from PCDclk to Rawclk */
Chris Wilson5eddb702010-09-11 13:48:45 +01002875 reg = FDI_RX_CTL(pipe);
2876 temp = I915_READ(reg);
2877 I915_WRITE(reg, temp & ~FDI_PCDCLK);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002878
2879 /* Disable CPU FDI TX PLL */
Chris Wilson5eddb702010-09-11 13:48:45 +01002880 reg = FDI_TX_CTL(pipe);
2881 temp = I915_READ(reg);
2882 I915_WRITE(reg, temp & ~FDI_TX_PLL_ENABLE);
2883
2884 POSTING_READ(reg);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002885 udelay(100);
2886
Chris Wilson5eddb702010-09-11 13:48:45 +01002887 reg = FDI_RX_CTL(pipe);
2888 temp = I915_READ(reg);
2889 I915_WRITE(reg, temp & ~FDI_RX_PLL_ENABLE);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002890
2891 /* Wait for the clocks to turn off. */
Chris Wilson5eddb702010-09-11 13:48:45 +01002892 POSTING_READ(reg);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002893 udelay(100);
Chris Wilson6b383a72010-09-13 13:54:26 +01002894
Chris Wilsonf7abfe82010-09-13 14:19:16 +01002895 intel_crtc->active = false;
Chris Wilson6b383a72010-09-13 13:54:26 +01002896 intel_update_watermarks(dev);
Ben Widawskyd1ebd8162011-04-25 20:11:50 +01002897
2898 mutex_lock(&dev->struct_mutex);
Chris Wilson6b383a72010-09-13 13:54:26 +01002899 intel_update_fbc(dev);
Ben Widawskyd1ebd8162011-04-25 20:11:50 +01002900 mutex_unlock(&dev->struct_mutex);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002901}
2902
2903static void ironlake_crtc_dpms(struct drm_crtc *crtc, int mode)
2904{
2905 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2906 int pipe = intel_crtc->pipe;
2907 int plane = intel_crtc->plane;
2908
Zhenyu Wang2c072452009-06-05 15:38:42 +08002909 /* XXX: When our outputs are all unaware of DPMS modes other than off
2910 * and on, we should map those modes to DRM_MODE_DPMS_OFF in the CRTC.
2911 */
2912 switch (mode) {
2913 case DRM_MODE_DPMS_ON:
2914 case DRM_MODE_DPMS_STANDBY:
2915 case DRM_MODE_DPMS_SUSPEND:
Chris Wilson868dc582010-08-07 11:01:31 +01002916 DRM_DEBUG_KMS("crtc %d/%d dpms on\n", pipe, plane);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002917 ironlake_crtc_enable(crtc);
Chris Wilson868dc582010-08-07 11:01:31 +01002918 break;
Zhao Yakuib52eb4d2010-06-12 14:32:27 +08002919
Zhenyu Wang2c072452009-06-05 15:38:42 +08002920 case DRM_MODE_DPMS_OFF:
Chris Wilson868dc582010-08-07 11:01:31 +01002921 DRM_DEBUG_KMS("crtc %d/%d dpms off\n", pipe, plane);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002922 ironlake_crtc_disable(crtc);
Zhenyu Wang2c072452009-06-05 15:38:42 +08002923 break;
2924 }
2925}
2926
Jesse Barnesee7b9f92012-04-20 17:11:53 +01002927static void ironlake_crtc_off(struct drm_crtc *crtc)
2928{
2929 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2930 intel_put_pch_pll(intel_crtc);
2931}
2932
Daniel Vetter02e792f2009-09-15 22:57:34 +02002933static void intel_crtc_dpms_overlay(struct intel_crtc *intel_crtc, bool enable)
2934{
Daniel Vetter02e792f2009-09-15 22:57:34 +02002935 if (!enable && intel_crtc->overlay) {
Chris Wilson23f09ce2010-08-12 13:53:37 +01002936 struct drm_device *dev = intel_crtc->base.dev;
Chris Wilsonce453d82011-02-21 14:43:56 +00002937 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter03f77ea2009-09-15 22:57:37 +02002938
Chris Wilson23f09ce2010-08-12 13:53:37 +01002939 mutex_lock(&dev->struct_mutex);
Chris Wilsonce453d82011-02-21 14:43:56 +00002940 dev_priv->mm.interruptible = false;
2941 (void) intel_overlay_switch_off(intel_crtc->overlay);
2942 dev_priv->mm.interruptible = true;
Chris Wilson23f09ce2010-08-12 13:53:37 +01002943 mutex_unlock(&dev->struct_mutex);
Daniel Vetter02e792f2009-09-15 22:57:34 +02002944 }
Daniel Vetter02e792f2009-09-15 22:57:34 +02002945
Chris Wilson5dcdbcb2010-08-12 13:50:28 +01002946 /* Let userspace switch the overlay on again. In most cases userspace
2947 * has to recompute where to put it anyway.
2948 */
Daniel Vetter02e792f2009-09-15 22:57:34 +02002949}
2950
Jesse Barnes0b8765c62010-09-10 10:31:34 -07002951static void i9xx_crtc_enable(struct drm_crtc *crtc)
Zhenyu Wang2c072452009-06-05 15:38:42 +08002952{
2953 struct drm_device *dev = crtc->dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08002954 struct drm_i915_private *dev_priv = dev->dev_private;
2955 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2956 int pipe = intel_crtc->pipe;
Jesse Barnes80824002009-09-10 15:28:06 -07002957 int plane = intel_crtc->plane;
Jesse Barnes79e53942008-11-07 14:24:08 -08002958
Chris Wilsonf7abfe82010-09-13 14:19:16 +01002959 if (intel_crtc->active)
2960 return;
2961
2962 intel_crtc->active = true;
Chris Wilson6b383a72010-09-13 13:54:26 +01002963 intel_update_watermarks(dev);
2964
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08002965 intel_enable_pll(dev_priv, pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08002966 intel_enable_pipe(dev_priv, pipe, false);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002967 intel_enable_plane(dev_priv, plane, pipe);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07002968
2969 intel_crtc_load_lut(crtc);
Chris Wilsonbed4a672010-09-11 10:47:47 +01002970 intel_update_fbc(dev);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07002971
2972 /* Give the overlay scaler a chance to enable if it's on this pipe */
2973 intel_crtc_dpms_overlay(intel_crtc, true);
Chris Wilson6b383a72010-09-13 13:54:26 +01002974 intel_crtc_update_cursor(crtc, true);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07002975}
2976
2977static void i9xx_crtc_disable(struct drm_crtc *crtc)
2978{
2979 struct drm_device *dev = crtc->dev;
2980 struct drm_i915_private *dev_priv = dev->dev_private;
2981 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2982 int pipe = intel_crtc->pipe;
2983 int plane = intel_crtc->plane;
Jesse Barnes0b8765c62010-09-10 10:31:34 -07002984
Chris Wilsonf7abfe82010-09-13 14:19:16 +01002985 if (!intel_crtc->active)
2986 return;
2987
Jesse Barnes0b8765c62010-09-10 10:31:34 -07002988 /* Give the overlay scaler a chance to disable if it's on this pipe */
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01002989 intel_crtc_wait_for_pending_flips(crtc);
2990 drm_vblank_off(dev, pipe);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07002991 intel_crtc_dpms_overlay(intel_crtc, false);
Chris Wilson6b383a72010-09-13 13:54:26 +01002992 intel_crtc_update_cursor(crtc, false);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07002993
Chris Wilson973d04f2011-07-08 12:22:37 +01002994 if (dev_priv->cfb_plane == plane)
2995 intel_disable_fbc(dev);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07002996
Jesse Barnesb24e7172011-01-04 15:09:30 -08002997 intel_disable_plane(dev_priv, plane, pipe);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002998 intel_disable_pipe(dev_priv, pipe);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08002999 intel_disable_pll(dev_priv, pipe);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003000
Chris Wilsonf7abfe82010-09-13 14:19:16 +01003001 intel_crtc->active = false;
Chris Wilson6b383a72010-09-13 13:54:26 +01003002 intel_update_fbc(dev);
3003 intel_update_watermarks(dev);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003004}
3005
3006static void i9xx_crtc_dpms(struct drm_crtc *crtc, int mode)
3007{
Jesse Barnes79e53942008-11-07 14:24:08 -08003008 /* XXX: When our outputs are all unaware of DPMS modes other than off
3009 * and on, we should map those modes to DRM_MODE_DPMS_OFF in the CRTC.
3010 */
3011 switch (mode) {
3012 case DRM_MODE_DPMS_ON:
3013 case DRM_MODE_DPMS_STANDBY:
3014 case DRM_MODE_DPMS_SUSPEND:
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003015 i9xx_crtc_enable(crtc);
3016 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08003017 case DRM_MODE_DPMS_OFF:
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003018 i9xx_crtc_disable(crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08003019 break;
3020 }
Zhenyu Wang2c072452009-06-05 15:38:42 +08003021}
3022
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003023static void i9xx_crtc_off(struct drm_crtc *crtc)
3024{
3025}
3026
Zhenyu Wang2c072452009-06-05 15:38:42 +08003027/**
3028 * Sets the power management mode of the pipe and plane.
Zhenyu Wang2c072452009-06-05 15:38:42 +08003029 */
3030static void intel_crtc_dpms(struct drm_crtc *crtc, int mode)
3031{
3032 struct drm_device *dev = crtc->dev;
Jesse Barnese70236a2009-09-21 10:42:27 -07003033 struct drm_i915_private *dev_priv = dev->dev_private;
Zhenyu Wang2c072452009-06-05 15:38:42 +08003034 struct drm_i915_master_private *master_priv;
3035 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3036 int pipe = intel_crtc->pipe;
3037 bool enabled;
3038
Chris Wilson032d2a02010-09-06 16:17:22 +01003039 if (intel_crtc->dpms_mode == mode)
3040 return;
3041
Chris Wilsondebcadd2010-08-07 11:01:33 +01003042 intel_crtc->dpms_mode = mode;
Chris Wilsondebcadd2010-08-07 11:01:33 +01003043
Jesse Barnese70236a2009-09-21 10:42:27 -07003044 dev_priv->display.dpms(crtc, mode);
Jesse Barnes79e53942008-11-07 14:24:08 -08003045
3046 if (!dev->primary->master)
3047 return;
3048
3049 master_priv = dev->primary->master->driver_priv;
3050 if (!master_priv->sarea_priv)
3051 return;
3052
3053 enabled = crtc->enabled && mode != DRM_MODE_DPMS_OFF;
3054
3055 switch (pipe) {
3056 case 0:
3057 master_priv->sarea_priv->pipeA_w = enabled ? crtc->mode.hdisplay : 0;
3058 master_priv->sarea_priv->pipeA_h = enabled ? crtc->mode.vdisplay : 0;
3059 break;
3060 case 1:
3061 master_priv->sarea_priv->pipeB_w = enabled ? crtc->mode.hdisplay : 0;
3062 master_priv->sarea_priv->pipeB_h = enabled ? crtc->mode.vdisplay : 0;
3063 break;
3064 default:
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08003065 DRM_ERROR("Can't update pipe %c in SAREA\n", pipe_name(pipe));
Jesse Barnes79e53942008-11-07 14:24:08 -08003066 break;
3067 }
Jesse Barnes79e53942008-11-07 14:24:08 -08003068}
3069
Chris Wilsoncdd59982010-09-08 16:30:16 +01003070static void intel_crtc_disable(struct drm_crtc *crtc)
3071{
3072 struct drm_crtc_helper_funcs *crtc_funcs = crtc->helper_private;
3073 struct drm_device *dev = crtc->dev;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003074 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsoncdd59982010-09-08 16:30:16 +01003075
3076 crtc_funcs->dpms(crtc, DRM_MODE_DPMS_OFF);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003077 dev_priv->display.off(crtc);
3078
Chris Wilson931872f2012-01-16 23:01:13 +00003079 assert_plane_disabled(dev->dev_private, to_intel_crtc(crtc)->plane);
3080 assert_pipe_disabled(dev->dev_private, to_intel_crtc(crtc)->pipe);
Chris Wilsoncdd59982010-09-08 16:30:16 +01003081
3082 if (crtc->fb) {
3083 mutex_lock(&dev->struct_mutex);
Chris Wilson1690e1e2011-12-14 13:57:08 +01003084 intel_unpin_fb_obj(to_intel_framebuffer(crtc->fb)->obj);
Chris Wilsoncdd59982010-09-08 16:30:16 +01003085 mutex_unlock(&dev->struct_mutex);
3086 }
3087}
3088
Jesse Barnes7e7d76c2010-09-10 10:47:20 -07003089/* Prepare for a mode set.
3090 *
3091 * Note we could be a lot smarter here. We need to figure out which outputs
3092 * will be enabled, which disabled (in short, how the config will changes)
3093 * and perform the minimum necessary steps to accomplish that, e.g. updating
3094 * watermarks, FBC configuration, making sure PLLs are programmed correctly,
3095 * panel fitting is in the proper state, etc.
3096 */
3097static void i9xx_crtc_prepare(struct drm_crtc *crtc)
Jesse Barnes79e53942008-11-07 14:24:08 -08003098{
Jesse Barnes7e7d76c2010-09-10 10:47:20 -07003099 i9xx_crtc_disable(crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08003100}
3101
Jesse Barnes7e7d76c2010-09-10 10:47:20 -07003102static void i9xx_crtc_commit(struct drm_crtc *crtc)
Jesse Barnes79e53942008-11-07 14:24:08 -08003103{
Jesse Barnes7e7d76c2010-09-10 10:47:20 -07003104 i9xx_crtc_enable(crtc);
Jesse Barnes7e7d76c2010-09-10 10:47:20 -07003105}
3106
3107static void ironlake_crtc_prepare(struct drm_crtc *crtc)
3108{
Jesse Barnes7e7d76c2010-09-10 10:47:20 -07003109 ironlake_crtc_disable(crtc);
Jesse Barnes7e7d76c2010-09-10 10:47:20 -07003110}
3111
3112static void ironlake_crtc_commit(struct drm_crtc *crtc)
3113{
Jesse Barnes7e7d76c2010-09-10 10:47:20 -07003114 ironlake_crtc_enable(crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08003115}
3116
Akshay Joshi0206e352011-08-16 15:34:10 -04003117void intel_encoder_prepare(struct drm_encoder *encoder)
Jesse Barnes79e53942008-11-07 14:24:08 -08003118{
3119 struct drm_encoder_helper_funcs *encoder_funcs = encoder->helper_private;
3120 /* lvds has its own version of prepare see intel_lvds_prepare */
3121 encoder_funcs->dpms(encoder, DRM_MODE_DPMS_OFF);
3122}
3123
Akshay Joshi0206e352011-08-16 15:34:10 -04003124void intel_encoder_commit(struct drm_encoder *encoder)
Jesse Barnes79e53942008-11-07 14:24:08 -08003125{
3126 struct drm_encoder_helper_funcs *encoder_funcs = encoder->helper_private;
Jesse Barnesd4270e52011-10-11 10:43:02 -07003127 struct drm_device *dev = encoder->dev;
3128 struct intel_encoder *intel_encoder = to_intel_encoder(encoder);
3129 struct intel_crtc *intel_crtc = to_intel_crtc(intel_encoder->base.crtc);
3130
Jesse Barnes79e53942008-11-07 14:24:08 -08003131 /* lvds has its own version of commit see intel_lvds_commit */
3132 encoder_funcs->dpms(encoder, DRM_MODE_DPMS_ON);
Jesse Barnesd4270e52011-10-11 10:43:02 -07003133
3134 if (HAS_PCH_CPT(dev))
3135 intel_cpt_verify_modeset(dev, intel_crtc->pipe);
Jesse Barnes79e53942008-11-07 14:24:08 -08003136}
3137
Chris Wilsonea5b2132010-08-04 13:50:23 +01003138void intel_encoder_destroy(struct drm_encoder *encoder)
3139{
Chris Wilson4ef69c72010-09-09 15:14:28 +01003140 struct intel_encoder *intel_encoder = to_intel_encoder(encoder);
Chris Wilsonea5b2132010-08-04 13:50:23 +01003141
Chris Wilsonea5b2132010-08-04 13:50:23 +01003142 drm_encoder_cleanup(encoder);
3143 kfree(intel_encoder);
3144}
3145
Jesse Barnes79e53942008-11-07 14:24:08 -08003146static bool intel_crtc_mode_fixup(struct drm_crtc *crtc,
3147 struct drm_display_mode *mode,
3148 struct drm_display_mode *adjusted_mode)
3149{
Zhenyu Wang2c072452009-06-05 15:38:42 +08003150 struct drm_device *dev = crtc->dev;
Chris Wilson89749352010-09-12 18:25:19 +01003151
Eric Anholtbad720f2009-10-22 16:11:14 -07003152 if (HAS_PCH_SPLIT(dev)) {
Zhenyu Wang2c072452009-06-05 15:38:42 +08003153 /* FDI link clock is fixed at 2.7G */
Jesse Barnes2377b742010-07-07 14:06:43 -07003154 if (mode->clock * 3 > IRONLAKE_FDI_FREQ * 4)
3155 return false;
Zhenyu Wang2c072452009-06-05 15:38:42 +08003156 }
Chris Wilson89749352010-09-12 18:25:19 +01003157
Daniel Vetterf9bef082012-04-15 19:53:19 +02003158 /* All interlaced capable intel hw wants timings in frames. Note though
3159 * that intel_lvds_mode_fixup does some funny tricks with the crtc
3160 * timings, so we need to be careful not to clobber these.*/
3161 if (!(adjusted_mode->private_flags & INTEL_MODE_CRTC_TIMINGS_SET))
3162 drm_mode_set_crtcinfo(adjusted_mode, 0);
Chris Wilson89749352010-09-12 18:25:19 +01003163
Jesse Barnes79e53942008-11-07 14:24:08 -08003164 return true;
3165}
3166
Jesse Barnes25eb05fc2012-03-28 13:39:23 -07003167static int valleyview_get_display_clock_speed(struct drm_device *dev)
3168{
3169 return 400000; /* FIXME */
3170}
3171
Jesse Barnese70236a2009-09-21 10:42:27 -07003172static int i945_get_display_clock_speed(struct drm_device *dev)
Jesse Barnes79e53942008-11-07 14:24:08 -08003173{
Jesse Barnese70236a2009-09-21 10:42:27 -07003174 return 400000;
3175}
Jesse Barnes79e53942008-11-07 14:24:08 -08003176
Jesse Barnese70236a2009-09-21 10:42:27 -07003177static int i915_get_display_clock_speed(struct drm_device *dev)
3178{
3179 return 333000;
3180}
Jesse Barnes79e53942008-11-07 14:24:08 -08003181
Jesse Barnese70236a2009-09-21 10:42:27 -07003182static int i9xx_misc_get_display_clock_speed(struct drm_device *dev)
3183{
3184 return 200000;
3185}
Jesse Barnes79e53942008-11-07 14:24:08 -08003186
Jesse Barnese70236a2009-09-21 10:42:27 -07003187static int i915gm_get_display_clock_speed(struct drm_device *dev)
3188{
3189 u16 gcfgc = 0;
3190
3191 pci_read_config_word(dev->pdev, GCFGC, &gcfgc);
3192
3193 if (gcfgc & GC_LOW_FREQUENCY_ENABLE)
Jesse Barnes79e53942008-11-07 14:24:08 -08003194 return 133000;
Jesse Barnese70236a2009-09-21 10:42:27 -07003195 else {
3196 switch (gcfgc & GC_DISPLAY_CLOCK_MASK) {
3197 case GC_DISPLAY_CLOCK_333_MHZ:
3198 return 333000;
3199 default:
3200 case GC_DISPLAY_CLOCK_190_200_MHZ:
3201 return 190000;
3202 }
3203 }
3204}
Jesse Barnes79e53942008-11-07 14:24:08 -08003205
Jesse Barnese70236a2009-09-21 10:42:27 -07003206static int i865_get_display_clock_speed(struct drm_device *dev)
3207{
3208 return 266000;
3209}
3210
3211static int i855_get_display_clock_speed(struct drm_device *dev)
3212{
3213 u16 hpllcc = 0;
3214 /* Assume that the hardware is in the high speed state. This
3215 * should be the default.
3216 */
3217 switch (hpllcc & GC_CLOCK_CONTROL_MASK) {
3218 case GC_CLOCK_133_200:
3219 case GC_CLOCK_100_200:
3220 return 200000;
3221 case GC_CLOCK_166_250:
3222 return 250000;
3223 case GC_CLOCK_100_133:
3224 return 133000;
3225 }
3226
3227 /* Shouldn't happen */
3228 return 0;
3229}
3230
3231static int i830_get_display_clock_speed(struct drm_device *dev)
3232{
3233 return 133000;
Jesse Barnes79e53942008-11-07 14:24:08 -08003234}
3235
Zhenyu Wang2c072452009-06-05 15:38:42 +08003236struct fdi_m_n {
3237 u32 tu;
3238 u32 gmch_m;
3239 u32 gmch_n;
3240 u32 link_m;
3241 u32 link_n;
3242};
3243
3244static void
3245fdi_reduce_ratio(u32 *num, u32 *den)
3246{
3247 while (*num > 0xffffff || *den > 0xffffff) {
3248 *num >>= 1;
3249 *den >>= 1;
3250 }
3251}
3252
Zhenyu Wang2c072452009-06-05 15:38:42 +08003253static void
Adam Jacksonf2b115e2009-12-03 17:14:42 -05003254ironlake_compute_m_n(int bits_per_pixel, int nlanes, int pixel_clock,
3255 int link_clock, struct fdi_m_n *m_n)
Zhenyu Wang2c072452009-06-05 15:38:42 +08003256{
Zhenyu Wang2c072452009-06-05 15:38:42 +08003257 m_n->tu = 64; /* default size */
3258
Chris Wilson22ed1112010-12-04 01:01:29 +00003259 /* BUG_ON(pixel_clock > INT_MAX / 36); */
3260 m_n->gmch_m = bits_per_pixel * pixel_clock;
3261 m_n->gmch_n = link_clock * nlanes * 8;
Zhenyu Wang2c072452009-06-05 15:38:42 +08003262 fdi_reduce_ratio(&m_n->gmch_m, &m_n->gmch_n);
3263
Chris Wilson22ed1112010-12-04 01:01:29 +00003264 m_n->link_m = pixel_clock;
3265 m_n->link_n = link_clock;
Zhenyu Wang2c072452009-06-05 15:38:42 +08003266 fdi_reduce_ratio(&m_n->link_m, &m_n->link_n);
3267}
3268
Chris Wilsona7615032011-01-12 17:04:08 +00003269static inline bool intel_panel_use_ssc(struct drm_i915_private *dev_priv)
3270{
Keith Packard72bbe582011-09-26 16:09:45 -07003271 if (i915_panel_use_ssc >= 0)
3272 return i915_panel_use_ssc != 0;
3273 return dev_priv->lvds_use_ssc
Keith Packard435793d2011-07-12 14:56:22 -07003274 && !(dev_priv->quirks & QUIRK_LVDS_SSC_DISABLE);
Chris Wilsona7615032011-01-12 17:04:08 +00003275}
3276
Jesse Barnes5a354202011-06-24 12:19:22 -07003277/**
3278 * intel_choose_pipe_bpp_dither - figure out what color depth the pipe should send
3279 * @crtc: CRTC structure
Adam Jackson3b5c78a2011-12-13 15:41:00 -08003280 * @mode: requested mode
Jesse Barnes5a354202011-06-24 12:19:22 -07003281 *
3282 * A pipe may be connected to one or more outputs. Based on the depth of the
3283 * attached framebuffer, choose a good color depth to use on the pipe.
3284 *
3285 * If possible, match the pipe depth to the fb depth. In some cases, this
3286 * isn't ideal, because the connected output supports a lesser or restricted
3287 * set of depths. Resolve that here:
3288 * LVDS typically supports only 6bpc, so clamp down in that case
3289 * HDMI supports only 8bpc or 12bpc, so clamp to 8bpc with dither for 10bpc
3290 * Displays may support a restricted set as well, check EDID and clamp as
3291 * appropriate.
Adam Jackson3b5c78a2011-12-13 15:41:00 -08003292 * DP may want to dither down to 6bpc to fit larger modes
Jesse Barnes5a354202011-06-24 12:19:22 -07003293 *
3294 * RETURNS:
3295 * Dithering requirement (i.e. false if display bpc and pipe bpc match,
3296 * true if they don't match).
3297 */
3298static bool intel_choose_pipe_bpp_dither(struct drm_crtc *crtc,
Adam Jackson3b5c78a2011-12-13 15:41:00 -08003299 unsigned int *pipe_bpp,
3300 struct drm_display_mode *mode)
Jesse Barnes5a354202011-06-24 12:19:22 -07003301{
3302 struct drm_device *dev = crtc->dev;
3303 struct drm_i915_private *dev_priv = dev->dev_private;
3304 struct drm_encoder *encoder;
3305 struct drm_connector *connector;
3306 unsigned int display_bpc = UINT_MAX, bpc;
3307
3308 /* Walk the encoders & connectors on this crtc, get min bpc */
3309 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
3310 struct intel_encoder *intel_encoder = to_intel_encoder(encoder);
3311
3312 if (encoder->crtc != crtc)
3313 continue;
3314
3315 if (intel_encoder->type == INTEL_OUTPUT_LVDS) {
3316 unsigned int lvds_bpc;
3317
3318 if ((I915_READ(PCH_LVDS) & LVDS_A3_POWER_MASK) ==
3319 LVDS_A3_POWER_UP)
3320 lvds_bpc = 8;
3321 else
3322 lvds_bpc = 6;
3323
3324 if (lvds_bpc < display_bpc) {
Adam Jackson82820492011-10-10 16:33:34 -04003325 DRM_DEBUG_KMS("clamping display bpc (was %d) to LVDS (%d)\n", display_bpc, lvds_bpc);
Jesse Barnes5a354202011-06-24 12:19:22 -07003326 display_bpc = lvds_bpc;
3327 }
3328 continue;
3329 }
3330
3331 if (intel_encoder->type == INTEL_OUTPUT_EDP) {
3332 /* Use VBT settings if we have an eDP panel */
3333 unsigned int edp_bpc = dev_priv->edp.bpp / 3;
3334
3335 if (edp_bpc < display_bpc) {
Adam Jackson82820492011-10-10 16:33:34 -04003336 DRM_DEBUG_KMS("clamping display bpc (was %d) to eDP (%d)\n", display_bpc, edp_bpc);
Jesse Barnes5a354202011-06-24 12:19:22 -07003337 display_bpc = edp_bpc;
3338 }
3339 continue;
3340 }
3341
3342 /* Not one of the known troublemakers, check the EDID */
3343 list_for_each_entry(connector, &dev->mode_config.connector_list,
3344 head) {
3345 if (connector->encoder != encoder)
3346 continue;
3347
Jesse Barnes62ac41a2011-07-28 12:55:14 -07003348 /* Don't use an invalid EDID bpc value */
3349 if (connector->display_info.bpc &&
3350 connector->display_info.bpc < display_bpc) {
Adam Jackson82820492011-10-10 16:33:34 -04003351 DRM_DEBUG_KMS("clamping display bpc (was %d) to EDID reported max of %d\n", display_bpc, connector->display_info.bpc);
Jesse Barnes5a354202011-06-24 12:19:22 -07003352 display_bpc = connector->display_info.bpc;
3353 }
3354 }
3355
3356 /*
3357 * HDMI is either 12 or 8, so if the display lets 10bpc sneak
3358 * through, clamp it down. (Note: >12bpc will be caught below.)
3359 */
3360 if (intel_encoder->type == INTEL_OUTPUT_HDMI) {
3361 if (display_bpc > 8 && display_bpc < 12) {
Adam Jackson82820492011-10-10 16:33:34 -04003362 DRM_DEBUG_KMS("forcing bpc to 12 for HDMI\n");
Jesse Barnes5a354202011-06-24 12:19:22 -07003363 display_bpc = 12;
3364 } else {
Adam Jackson82820492011-10-10 16:33:34 -04003365 DRM_DEBUG_KMS("forcing bpc to 8 for HDMI\n");
Jesse Barnes5a354202011-06-24 12:19:22 -07003366 display_bpc = 8;
3367 }
3368 }
3369 }
3370
Adam Jackson3b5c78a2011-12-13 15:41:00 -08003371 if (mode->private_flags & INTEL_MODE_DP_FORCE_6BPC) {
3372 DRM_DEBUG_KMS("Dithering DP to 6bpc\n");
3373 display_bpc = 6;
3374 }
3375
Jesse Barnes5a354202011-06-24 12:19:22 -07003376 /*
3377 * We could just drive the pipe at the highest bpc all the time and
3378 * enable dithering as needed, but that costs bandwidth. So choose
3379 * the minimum value that expresses the full color range of the fb but
3380 * also stays within the max display bpc discovered above.
3381 */
3382
3383 switch (crtc->fb->depth) {
3384 case 8:
3385 bpc = 8; /* since we go through a colormap */
3386 break;
3387 case 15:
3388 case 16:
3389 bpc = 6; /* min is 18bpp */
3390 break;
3391 case 24:
Keith Packard578393c2011-09-05 11:53:21 -07003392 bpc = 8;
Jesse Barnes5a354202011-06-24 12:19:22 -07003393 break;
3394 case 30:
Keith Packard578393c2011-09-05 11:53:21 -07003395 bpc = 10;
Jesse Barnes5a354202011-06-24 12:19:22 -07003396 break;
3397 case 48:
Keith Packard578393c2011-09-05 11:53:21 -07003398 bpc = 12;
Jesse Barnes5a354202011-06-24 12:19:22 -07003399 break;
3400 default:
3401 DRM_DEBUG("unsupported depth, assuming 24 bits\n");
3402 bpc = min((unsigned int)8, display_bpc);
3403 break;
3404 }
3405
Keith Packard578393c2011-09-05 11:53:21 -07003406 display_bpc = min(display_bpc, bpc);
3407
Adam Jackson82820492011-10-10 16:33:34 -04003408 DRM_DEBUG_KMS("setting pipe bpc to %d (max display bpc %d)\n",
3409 bpc, display_bpc);
Jesse Barnes5a354202011-06-24 12:19:22 -07003410
Keith Packard578393c2011-09-05 11:53:21 -07003411 *pipe_bpp = display_bpc * 3;
Jesse Barnes5a354202011-06-24 12:19:22 -07003412
3413 return display_bpc != bpc;
3414}
3415
Jesse Barnesc65d77d2011-12-15 12:30:36 -08003416static int i9xx_get_refclk(struct drm_crtc *crtc, int num_connectors)
3417{
3418 struct drm_device *dev = crtc->dev;
3419 struct drm_i915_private *dev_priv = dev->dev_private;
3420 int refclk;
3421
3422 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) &&
3423 intel_panel_use_ssc(dev_priv) && num_connectors < 2) {
3424 refclk = dev_priv->lvds_ssc_freq * 1000;
3425 DRM_DEBUG_KMS("using SSC reference clock of %d MHz\n",
3426 refclk / 1000);
3427 } else if (!IS_GEN2(dev)) {
3428 refclk = 96000;
3429 } else {
3430 refclk = 48000;
3431 }
3432
3433 return refclk;
3434}
3435
3436static void i9xx_adjust_sdvo_tv_clock(struct drm_display_mode *adjusted_mode,
3437 intel_clock_t *clock)
3438{
3439 /* SDVO TV has fixed PLL values depend on its clock range,
3440 this mirrors vbios setting. */
3441 if (adjusted_mode->clock >= 100000
3442 && adjusted_mode->clock < 140500) {
3443 clock->p1 = 2;
3444 clock->p2 = 10;
3445 clock->n = 3;
3446 clock->m1 = 16;
3447 clock->m2 = 8;
3448 } else if (adjusted_mode->clock >= 140500
3449 && adjusted_mode->clock <= 200000) {
3450 clock->p1 = 1;
3451 clock->p2 = 10;
3452 clock->n = 6;
3453 clock->m1 = 12;
3454 clock->m2 = 8;
3455 }
3456}
3457
Jesse Barnesa7516a02011-12-15 12:30:37 -08003458static void i9xx_update_pll_dividers(struct drm_crtc *crtc,
3459 intel_clock_t *clock,
3460 intel_clock_t *reduced_clock)
3461{
3462 struct drm_device *dev = crtc->dev;
3463 struct drm_i915_private *dev_priv = dev->dev_private;
3464 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3465 int pipe = intel_crtc->pipe;
3466 u32 fp, fp2 = 0;
3467
3468 if (IS_PINEVIEW(dev)) {
3469 fp = (1 << clock->n) << 16 | clock->m1 << 8 | clock->m2;
3470 if (reduced_clock)
3471 fp2 = (1 << reduced_clock->n) << 16 |
3472 reduced_clock->m1 << 8 | reduced_clock->m2;
3473 } else {
3474 fp = clock->n << 16 | clock->m1 << 8 | clock->m2;
3475 if (reduced_clock)
3476 fp2 = reduced_clock->n << 16 | reduced_clock->m1 << 8 |
3477 reduced_clock->m2;
3478 }
3479
3480 I915_WRITE(FP0(pipe), fp);
3481
3482 intel_crtc->lowfreq_avail = false;
3483 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) &&
3484 reduced_clock && i915_powersave) {
3485 I915_WRITE(FP1(pipe), fp2);
3486 intel_crtc->lowfreq_avail = true;
3487 } else {
3488 I915_WRITE(FP1(pipe), fp);
3489 }
3490}
3491
Daniel Vetter93e537a2012-03-28 23:11:26 +02003492static void intel_update_lvds(struct drm_crtc *crtc, intel_clock_t *clock,
3493 struct drm_display_mode *adjusted_mode)
3494{
3495 struct drm_device *dev = crtc->dev;
3496 struct drm_i915_private *dev_priv = dev->dev_private;
3497 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3498 int pipe = intel_crtc->pipe;
Chris Wilson284d5df2012-04-14 17:41:59 +01003499 u32 temp;
Daniel Vetter93e537a2012-03-28 23:11:26 +02003500
3501 temp = I915_READ(LVDS);
3502 temp |= LVDS_PORT_EN | LVDS_A0A2_CLKA_POWER_UP;
3503 if (pipe == 1) {
3504 temp |= LVDS_PIPEB_SELECT;
3505 } else {
3506 temp &= ~LVDS_PIPEB_SELECT;
3507 }
3508 /* set the corresponsding LVDS_BORDER bit */
3509 temp |= dev_priv->lvds_border_bits;
3510 /* Set the B0-B3 data pairs corresponding to whether we're going to
3511 * set the DPLLs for dual-channel mode or not.
3512 */
3513 if (clock->p2 == 7)
3514 temp |= LVDS_B0B3_POWER_UP | LVDS_CLKB_POWER_UP;
3515 else
3516 temp &= ~(LVDS_B0B3_POWER_UP | LVDS_CLKB_POWER_UP);
3517
3518 /* It would be nice to set 24 vs 18-bit mode (LVDS_A3_POWER_UP)
3519 * appropriately here, but we need to look more thoroughly into how
3520 * panels behave in the two modes.
3521 */
3522 /* set the dithering flag on LVDS as needed */
3523 if (INTEL_INFO(dev)->gen >= 4) {
3524 if (dev_priv->lvds_dither)
3525 temp |= LVDS_ENABLE_DITHER;
3526 else
3527 temp &= ~LVDS_ENABLE_DITHER;
3528 }
Chris Wilson284d5df2012-04-14 17:41:59 +01003529 temp &= ~(LVDS_HSYNC_POLARITY | LVDS_VSYNC_POLARITY);
Daniel Vetter93e537a2012-03-28 23:11:26 +02003530 if (adjusted_mode->flags & DRM_MODE_FLAG_NHSYNC)
Chris Wilson284d5df2012-04-14 17:41:59 +01003531 temp |= LVDS_HSYNC_POLARITY;
Daniel Vetter93e537a2012-03-28 23:11:26 +02003532 if (adjusted_mode->flags & DRM_MODE_FLAG_NVSYNC)
Chris Wilson284d5df2012-04-14 17:41:59 +01003533 temp |= LVDS_VSYNC_POLARITY;
Daniel Vetter93e537a2012-03-28 23:11:26 +02003534 I915_WRITE(LVDS, temp);
3535}
3536
Daniel Vettereb1cbe42012-03-28 23:12:16 +02003537static void i9xx_update_pll(struct drm_crtc *crtc,
3538 struct drm_display_mode *mode,
3539 struct drm_display_mode *adjusted_mode,
3540 intel_clock_t *clock, intel_clock_t *reduced_clock,
3541 int num_connectors)
3542{
3543 struct drm_device *dev = crtc->dev;
3544 struct drm_i915_private *dev_priv = dev->dev_private;
3545 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3546 int pipe = intel_crtc->pipe;
3547 u32 dpll;
3548 bool is_sdvo;
3549
3550 is_sdvo = intel_pipe_has_type(crtc, INTEL_OUTPUT_SDVO) ||
3551 intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI);
3552
3553 dpll = DPLL_VGA_MODE_DIS;
3554
3555 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS))
3556 dpll |= DPLLB_MODE_LVDS;
3557 else
3558 dpll |= DPLLB_MODE_DAC_SERIAL;
3559 if (is_sdvo) {
3560 int pixel_multiplier = intel_mode_get_pixel_multiplier(adjusted_mode);
3561 if (pixel_multiplier > 1) {
3562 if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev))
3563 dpll |= (pixel_multiplier - 1) << SDVO_MULTIPLIER_SHIFT_HIRES;
3564 }
3565 dpll |= DPLL_DVO_HIGH_SPEED;
3566 }
3567 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT))
3568 dpll |= DPLL_DVO_HIGH_SPEED;
3569
3570 /* compute bitmask from p1 value */
3571 if (IS_PINEVIEW(dev))
3572 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW;
3573 else {
3574 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
3575 if (IS_G4X(dev) && reduced_clock)
3576 dpll |= (1 << (reduced_clock->p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
3577 }
3578 switch (clock->p2) {
3579 case 5:
3580 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
3581 break;
3582 case 7:
3583 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
3584 break;
3585 case 10:
3586 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
3587 break;
3588 case 14:
3589 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
3590 break;
3591 }
3592 if (INTEL_INFO(dev)->gen >= 4)
3593 dpll |= (6 << PLL_LOAD_PULSE_PHASE_SHIFT);
3594
3595 if (is_sdvo && intel_pipe_has_type(crtc, INTEL_OUTPUT_TVOUT))
3596 dpll |= PLL_REF_INPUT_TVCLKINBC;
3597 else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_TVOUT))
3598 /* XXX: just matching BIOS for now */
3599 /* dpll |= PLL_REF_INPUT_TVCLKINBC; */
3600 dpll |= 3;
3601 else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) &&
3602 intel_panel_use_ssc(dev_priv) && num_connectors < 2)
3603 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
3604 else
3605 dpll |= PLL_REF_INPUT_DREFCLK;
3606
3607 dpll |= DPLL_VCO_ENABLE;
3608 I915_WRITE(DPLL(pipe), dpll & ~DPLL_VCO_ENABLE);
3609 POSTING_READ(DPLL(pipe));
3610 udelay(150);
3611
3612 /* The LVDS pin pair needs to be on before the DPLLs are enabled.
3613 * This is an exception to the general rule that mode_set doesn't turn
3614 * things on.
3615 */
3616 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS))
3617 intel_update_lvds(crtc, clock, adjusted_mode);
3618
3619 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT))
3620 intel_dp_set_m_n(crtc, mode, adjusted_mode);
3621
3622 I915_WRITE(DPLL(pipe), dpll);
3623
3624 /* Wait for the clocks to stabilize. */
3625 POSTING_READ(DPLL(pipe));
3626 udelay(150);
3627
3628 if (INTEL_INFO(dev)->gen >= 4) {
3629 u32 temp = 0;
3630 if (is_sdvo) {
3631 temp = intel_mode_get_pixel_multiplier(adjusted_mode);
3632 if (temp > 1)
3633 temp = (temp - 1) << DPLL_MD_UDI_MULTIPLIER_SHIFT;
3634 else
3635 temp = 0;
3636 }
3637 I915_WRITE(DPLL_MD(pipe), temp);
3638 } else {
3639 /* The pixel multiplier can only be updated once the
3640 * DPLL is enabled and the clocks are stable.
3641 *
3642 * So write it again.
3643 */
3644 I915_WRITE(DPLL(pipe), dpll);
3645 }
3646}
3647
3648static void i8xx_update_pll(struct drm_crtc *crtc,
3649 struct drm_display_mode *adjusted_mode,
3650 intel_clock_t *clock,
3651 int num_connectors)
3652{
3653 struct drm_device *dev = crtc->dev;
3654 struct drm_i915_private *dev_priv = dev->dev_private;
3655 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3656 int pipe = intel_crtc->pipe;
3657 u32 dpll;
3658
3659 dpll = DPLL_VGA_MODE_DIS;
3660
3661 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
3662 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
3663 } else {
3664 if (clock->p1 == 2)
3665 dpll |= PLL_P1_DIVIDE_BY_TWO;
3666 else
3667 dpll |= (clock->p1 - 2) << DPLL_FPA01_P1_POST_DIV_SHIFT;
3668 if (clock->p2 == 4)
3669 dpll |= PLL_P2_DIVIDE_BY_4;
3670 }
3671
3672 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_TVOUT))
3673 /* XXX: just matching BIOS for now */
3674 /* dpll |= PLL_REF_INPUT_TVCLKINBC; */
3675 dpll |= 3;
3676 else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) &&
3677 intel_panel_use_ssc(dev_priv) && num_connectors < 2)
3678 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
3679 else
3680 dpll |= PLL_REF_INPUT_DREFCLK;
3681
3682 dpll |= DPLL_VCO_ENABLE;
3683 I915_WRITE(DPLL(pipe), dpll & ~DPLL_VCO_ENABLE);
3684 POSTING_READ(DPLL(pipe));
3685 udelay(150);
3686
3687 I915_WRITE(DPLL(pipe), dpll);
3688
3689 /* Wait for the clocks to stabilize. */
3690 POSTING_READ(DPLL(pipe));
3691 udelay(150);
3692
3693 /* The LVDS pin pair needs to be on before the DPLLs are enabled.
3694 * This is an exception to the general rule that mode_set doesn't turn
3695 * things on.
3696 */
3697 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS))
3698 intel_update_lvds(crtc, clock, adjusted_mode);
3699
3700 /* The pixel multiplier can only be updated once the
3701 * DPLL is enabled and the clocks are stable.
3702 *
3703 * So write it again.
3704 */
3705 I915_WRITE(DPLL(pipe), dpll);
3706}
3707
Eric Anholtf564048e2011-03-30 13:01:02 -07003708static int i9xx_crtc_mode_set(struct drm_crtc *crtc,
3709 struct drm_display_mode *mode,
3710 struct drm_display_mode *adjusted_mode,
3711 int x, int y,
3712 struct drm_framebuffer *old_fb)
Jesse Barnes79e53942008-11-07 14:24:08 -08003713{
3714 struct drm_device *dev = crtc->dev;
3715 struct drm_i915_private *dev_priv = dev->dev_private;
3716 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3717 int pipe = intel_crtc->pipe;
Jesse Barnes80824002009-09-10 15:28:06 -07003718 int plane = intel_crtc->plane;
Eric Anholtc751ce42010-03-25 11:48:48 -07003719 int refclk, num_connectors = 0;
Jesse Barnes652c3932009-08-17 13:31:43 -07003720 intel_clock_t clock, reduced_clock;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02003721 u32 dspcntr, pipeconf, vsyncshift;
3722 bool ok, has_reduced_clock = false, is_sdvo = false;
3723 bool is_lvds = false, is_tv = false, is_dp = false;
Jesse Barnes79e53942008-11-07 14:24:08 -08003724 struct drm_mode_config *mode_config = &dev->mode_config;
Chris Wilson5eddb702010-09-11 13:48:45 +01003725 struct intel_encoder *encoder;
Ma Lingd4906092009-03-18 20:13:27 +08003726 const intel_limit_t *limit;
Chris Wilson5c3b82e2009-02-11 13:25:09 +00003727 int ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08003728
Chris Wilson5eddb702010-09-11 13:48:45 +01003729 list_for_each_entry(encoder, &mode_config->encoder_list, base.head) {
3730 if (encoder->base.crtc != crtc)
Jesse Barnes79e53942008-11-07 14:24:08 -08003731 continue;
3732
Chris Wilson5eddb702010-09-11 13:48:45 +01003733 switch (encoder->type) {
Jesse Barnes79e53942008-11-07 14:24:08 -08003734 case INTEL_OUTPUT_LVDS:
3735 is_lvds = true;
3736 break;
3737 case INTEL_OUTPUT_SDVO:
Eric Anholt7d573822009-01-02 13:33:00 -08003738 case INTEL_OUTPUT_HDMI:
Jesse Barnes79e53942008-11-07 14:24:08 -08003739 is_sdvo = true;
Chris Wilson5eddb702010-09-11 13:48:45 +01003740 if (encoder->needs_tv_clock)
Jesse Barnese2f0ba92009-02-02 15:11:52 -08003741 is_tv = true;
Jesse Barnes79e53942008-11-07 14:24:08 -08003742 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08003743 case INTEL_OUTPUT_TVOUT:
3744 is_tv = true;
3745 break;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003746 case INTEL_OUTPUT_DISPLAYPORT:
3747 is_dp = true;
3748 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08003749 }
Kristian Høgsberg43565a02009-02-13 20:56:52 -05003750
Eric Anholtc751ce42010-03-25 11:48:48 -07003751 num_connectors++;
Jesse Barnes79e53942008-11-07 14:24:08 -08003752 }
3753
Jesse Barnesc65d77d2011-12-15 12:30:36 -08003754 refclk = i9xx_get_refclk(crtc, num_connectors);
Jesse Barnes79e53942008-11-07 14:24:08 -08003755
Ma Lingd4906092009-03-18 20:13:27 +08003756 /*
3757 * Returns a set of divisors for the desired target clock with the given
3758 * refclk, or FALSE. The returned values represent the clock equation:
3759 * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2.
3760 */
Chris Wilson1b894b52010-12-14 20:04:54 +00003761 limit = intel_limit(crtc, refclk);
Sean Paulcec2f352012-01-10 15:09:36 -08003762 ok = limit->find_pll(limit, crtc, adjusted_mode->clock, refclk, NULL,
3763 &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08003764 if (!ok) {
3765 DRM_ERROR("Couldn't find PLL settings for mode!\n");
Eric Anholtf564048e2011-03-30 13:01:02 -07003766 return -EINVAL;
3767 }
3768
3769 /* Ensure that the cursor is valid for the new mode before changing... */
3770 intel_crtc_update_cursor(crtc, true);
3771
3772 if (is_lvds && dev_priv->lvds_downclock_avail) {
Sean Paulcec2f352012-01-10 15:09:36 -08003773 /*
3774 * Ensure we match the reduced clock's P to the target clock.
3775 * If the clocks don't match, we can't switch the display clock
3776 * by using the FP0/FP1. In such case we will disable the LVDS
3777 * downclock feature.
3778 */
Eric Anholtf564048e2011-03-30 13:01:02 -07003779 has_reduced_clock = limit->find_pll(limit, crtc,
3780 dev_priv->lvds_downclock,
3781 refclk,
Sean Paulcec2f352012-01-10 15:09:36 -08003782 &clock,
Eric Anholtf564048e2011-03-30 13:01:02 -07003783 &reduced_clock);
Eric Anholtf564048e2011-03-30 13:01:02 -07003784 }
3785
Jesse Barnesc65d77d2011-12-15 12:30:36 -08003786 if (is_sdvo && is_tv)
3787 i9xx_adjust_sdvo_tv_clock(adjusted_mode, &clock);
Eric Anholtf564048e2011-03-30 13:01:02 -07003788
Jesse Barnesa7516a02011-12-15 12:30:37 -08003789 i9xx_update_pll_dividers(crtc, &clock, has_reduced_clock ?
3790 &reduced_clock : NULL);
Eric Anholtf564048e2011-03-30 13:01:02 -07003791
Daniel Vettereb1cbe42012-03-28 23:12:16 +02003792 if (IS_GEN2(dev))
3793 i8xx_update_pll(crtc, adjusted_mode, &clock, num_connectors);
Eric Anholtf564048e2011-03-30 13:01:02 -07003794 else
Daniel Vettereb1cbe42012-03-28 23:12:16 +02003795 i9xx_update_pll(crtc, mode, adjusted_mode, &clock,
3796 has_reduced_clock ? &reduced_clock : NULL,
3797 num_connectors);
Eric Anholtf564048e2011-03-30 13:01:02 -07003798
3799 /* setup pipeconf */
3800 pipeconf = I915_READ(PIPECONF(pipe));
3801
3802 /* Set up the display plane register */
3803 dspcntr = DISPPLANE_GAMMA_ENABLE;
3804
Eric Anholt929c77f2011-03-30 13:01:04 -07003805 if (pipe == 0)
3806 dspcntr &= ~DISPPLANE_SEL_PIPE_MASK;
3807 else
3808 dspcntr |= DISPPLANE_SEL_PIPE_B;
Eric Anholtf564048e2011-03-30 13:01:02 -07003809
3810 if (pipe == 0 && INTEL_INFO(dev)->gen < 4) {
3811 /* Enable pixel doubling when the dot clock is > 90% of the (display)
3812 * core speed.
3813 *
3814 * XXX: No double-wide on 915GM pipe B. Is that the only reason for the
3815 * pipe == 0 check?
3816 */
3817 if (mode->clock >
3818 dev_priv->display.get_display_clock_speed(dev) * 9 / 10)
3819 pipeconf |= PIPECONF_DOUBLE_WIDE;
3820 else
3821 pipeconf &= ~PIPECONF_DOUBLE_WIDE;
3822 }
3823
Adam Jackson3b5c78a2011-12-13 15:41:00 -08003824 /* default to 8bpc */
3825 pipeconf &= ~(PIPECONF_BPP_MASK | PIPECONF_DITHER_EN);
3826 if (is_dp) {
3827 if (mode->private_flags & INTEL_MODE_DP_FORCE_6BPC) {
3828 pipeconf |= PIPECONF_BPP_6 |
3829 PIPECONF_DITHER_EN |
3830 PIPECONF_DITHER_TYPE_SP;
3831 }
3832 }
3833
Eric Anholtf564048e2011-03-30 13:01:02 -07003834 DRM_DEBUG_KMS("Mode for pipe %c:\n", pipe == 0 ? 'A' : 'B');
3835 drm_mode_debug_printmodeline(mode);
3836
Jesse Barnesa7516a02011-12-15 12:30:37 -08003837 if (HAS_PIPE_CXSR(dev)) {
3838 if (intel_crtc->lowfreq_avail) {
Eric Anholtf564048e2011-03-30 13:01:02 -07003839 DRM_DEBUG_KMS("enabling CxSR downclocking\n");
3840 pipeconf |= PIPECONF_CXSR_DOWNCLOCK;
Jesse Barnesa7516a02011-12-15 12:30:37 -08003841 } else {
Eric Anholtf564048e2011-03-30 13:01:02 -07003842 DRM_DEBUG_KMS("disabling CxSR downclocking\n");
3843 pipeconf &= ~PIPECONF_CXSR_DOWNCLOCK;
3844 }
3845 }
3846
Keith Packard617cf882012-02-08 13:53:38 -08003847 pipeconf &= ~PIPECONF_INTERLACE_MASK;
Daniel Vetterdbb02572012-01-28 14:49:23 +01003848 if (!IS_GEN2(dev) &&
3849 adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE) {
Eric Anholtf564048e2011-03-30 13:01:02 -07003850 pipeconf |= PIPECONF_INTERLACE_W_FIELD_INDICATION;
3851 /* the chip adds 2 halflines automatically */
Eric Anholtf564048e2011-03-30 13:01:02 -07003852 adjusted_mode->crtc_vtotal -= 1;
Eric Anholtf564048e2011-03-30 13:01:02 -07003853 adjusted_mode->crtc_vblank_end -= 1;
Daniel Vetter0529a0d2012-01-28 14:49:24 +01003854 vsyncshift = adjusted_mode->crtc_hsync_start
3855 - adjusted_mode->crtc_htotal/2;
3856 } else {
Keith Packard617cf882012-02-08 13:53:38 -08003857 pipeconf |= PIPECONF_PROGRESSIVE;
Daniel Vetter0529a0d2012-01-28 14:49:24 +01003858 vsyncshift = 0;
3859 }
3860
3861 if (!IS_GEN3(dev))
3862 I915_WRITE(VSYNCSHIFT(pipe), vsyncshift);
Eric Anholtf564048e2011-03-30 13:01:02 -07003863
3864 I915_WRITE(HTOTAL(pipe),
3865 (adjusted_mode->crtc_hdisplay - 1) |
3866 ((adjusted_mode->crtc_htotal - 1) << 16));
3867 I915_WRITE(HBLANK(pipe),
3868 (adjusted_mode->crtc_hblank_start - 1) |
3869 ((adjusted_mode->crtc_hblank_end - 1) << 16));
3870 I915_WRITE(HSYNC(pipe),
3871 (adjusted_mode->crtc_hsync_start - 1) |
3872 ((adjusted_mode->crtc_hsync_end - 1) << 16));
3873
3874 I915_WRITE(VTOTAL(pipe),
3875 (adjusted_mode->crtc_vdisplay - 1) |
3876 ((adjusted_mode->crtc_vtotal - 1) << 16));
3877 I915_WRITE(VBLANK(pipe),
3878 (adjusted_mode->crtc_vblank_start - 1) |
3879 ((adjusted_mode->crtc_vblank_end - 1) << 16));
3880 I915_WRITE(VSYNC(pipe),
3881 (adjusted_mode->crtc_vsync_start - 1) |
3882 ((adjusted_mode->crtc_vsync_end - 1) << 16));
3883
3884 /* pipesrc and dspsize control the size that is scaled from,
3885 * which should always be the user's requested size.
3886 */
Eric Anholt929c77f2011-03-30 13:01:04 -07003887 I915_WRITE(DSPSIZE(plane),
3888 ((mode->vdisplay - 1) << 16) |
3889 (mode->hdisplay - 1));
3890 I915_WRITE(DSPPOS(plane), 0);
Eric Anholtf564048e2011-03-30 13:01:02 -07003891 I915_WRITE(PIPESRC(pipe),
3892 ((mode->hdisplay - 1) << 16) | (mode->vdisplay - 1));
3893
Eric Anholtf564048e2011-03-30 13:01:02 -07003894 I915_WRITE(PIPECONF(pipe), pipeconf);
3895 POSTING_READ(PIPECONF(pipe));
Eric Anholt929c77f2011-03-30 13:01:04 -07003896 intel_enable_pipe(dev_priv, pipe, false);
Eric Anholtf564048e2011-03-30 13:01:02 -07003897
3898 intel_wait_for_vblank(dev, pipe);
3899
Eric Anholtf564048e2011-03-30 13:01:02 -07003900 I915_WRITE(DSPCNTR(plane), dspcntr);
3901 POSTING_READ(DSPCNTR(plane));
3902
3903 ret = intel_pipe_set_base(crtc, x, y, old_fb);
3904
3905 intel_update_watermarks(dev);
3906
Eric Anholtf564048e2011-03-30 13:01:02 -07003907 return ret;
3908}
3909
Keith Packard9fb526d2011-09-26 22:24:57 -07003910/*
3911 * Initialize reference clocks when the driver loads
3912 */
3913void ironlake_init_pch_refclk(struct drm_device *dev)
Jesse Barnes13d83a62011-08-03 12:59:20 -07003914{
3915 struct drm_i915_private *dev_priv = dev->dev_private;
3916 struct drm_mode_config *mode_config = &dev->mode_config;
Jesse Barnes13d83a62011-08-03 12:59:20 -07003917 struct intel_encoder *encoder;
Jesse Barnes13d83a62011-08-03 12:59:20 -07003918 u32 temp;
3919 bool has_lvds = false;
Keith Packard199e5d72011-09-22 12:01:57 -07003920 bool has_cpu_edp = false;
3921 bool has_pch_edp = false;
3922 bool has_panel = false;
Keith Packard99eb6a02011-09-26 14:29:12 -07003923 bool has_ck505 = false;
3924 bool can_ssc = false;
Jesse Barnes13d83a62011-08-03 12:59:20 -07003925
3926 /* We need to take the global config into account */
Keith Packard199e5d72011-09-22 12:01:57 -07003927 list_for_each_entry(encoder, &mode_config->encoder_list,
3928 base.head) {
3929 switch (encoder->type) {
3930 case INTEL_OUTPUT_LVDS:
3931 has_panel = true;
3932 has_lvds = true;
3933 break;
3934 case INTEL_OUTPUT_EDP:
3935 has_panel = true;
3936 if (intel_encoder_is_pch_edp(&encoder->base))
3937 has_pch_edp = true;
3938 else
3939 has_cpu_edp = true;
3940 break;
Jesse Barnes13d83a62011-08-03 12:59:20 -07003941 }
3942 }
3943
Keith Packard99eb6a02011-09-26 14:29:12 -07003944 if (HAS_PCH_IBX(dev)) {
3945 has_ck505 = dev_priv->display_clock_mode;
3946 can_ssc = has_ck505;
3947 } else {
3948 has_ck505 = false;
3949 can_ssc = true;
3950 }
3951
3952 DRM_DEBUG_KMS("has_panel %d has_lvds %d has_pch_edp %d has_cpu_edp %d has_ck505 %d\n",
3953 has_panel, has_lvds, has_pch_edp, has_cpu_edp,
3954 has_ck505);
Jesse Barnes13d83a62011-08-03 12:59:20 -07003955
3956 /* Ironlake: try to setup display ref clock before DPLL
3957 * enabling. This is only under driver's control after
3958 * PCH B stepping, previous chipset stepping should be
3959 * ignoring this setting.
3960 */
3961 temp = I915_READ(PCH_DREF_CONTROL);
3962 /* Always enable nonspread source */
3963 temp &= ~DREF_NONSPREAD_SOURCE_MASK;
Jesse Barnes13d83a62011-08-03 12:59:20 -07003964
Keith Packard99eb6a02011-09-26 14:29:12 -07003965 if (has_ck505)
3966 temp |= DREF_NONSPREAD_CK505_ENABLE;
3967 else
3968 temp |= DREF_NONSPREAD_SOURCE_ENABLE;
Jesse Barnes13d83a62011-08-03 12:59:20 -07003969
Keith Packard199e5d72011-09-22 12:01:57 -07003970 if (has_panel) {
3971 temp &= ~DREF_SSC_SOURCE_MASK;
3972 temp |= DREF_SSC_SOURCE_ENABLE;
Jesse Barnes13d83a62011-08-03 12:59:20 -07003973
Keith Packard199e5d72011-09-22 12:01:57 -07003974 /* SSC must be turned on before enabling the CPU output */
Keith Packard99eb6a02011-09-26 14:29:12 -07003975 if (intel_panel_use_ssc(dev_priv) && can_ssc) {
Keith Packard199e5d72011-09-22 12:01:57 -07003976 DRM_DEBUG_KMS("Using SSC on panel\n");
Jesse Barnes13d83a62011-08-03 12:59:20 -07003977 temp |= DREF_SSC1_ENABLE;
Daniel Vettere77166b2012-03-30 22:14:05 +02003978 } else
3979 temp &= ~DREF_SSC1_ENABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07003980
3981 /* Get SSC going before enabling the outputs */
3982 I915_WRITE(PCH_DREF_CONTROL, temp);
3983 POSTING_READ(PCH_DREF_CONTROL);
3984 udelay(200);
3985
Jesse Barnes13d83a62011-08-03 12:59:20 -07003986 temp &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
3987
3988 /* Enable CPU source on CPU attached eDP */
Keith Packard199e5d72011-09-22 12:01:57 -07003989 if (has_cpu_edp) {
Keith Packard99eb6a02011-09-26 14:29:12 -07003990 if (intel_panel_use_ssc(dev_priv) && can_ssc) {
Keith Packard199e5d72011-09-22 12:01:57 -07003991 DRM_DEBUG_KMS("Using SSC on eDP\n");
Jesse Barnes13d83a62011-08-03 12:59:20 -07003992 temp |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD;
Keith Packard199e5d72011-09-22 12:01:57 -07003993 }
Jesse Barnes13d83a62011-08-03 12:59:20 -07003994 else
3995 temp |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD;
Keith Packard199e5d72011-09-22 12:01:57 -07003996 } else
3997 temp |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
3998
3999 I915_WRITE(PCH_DREF_CONTROL, temp);
4000 POSTING_READ(PCH_DREF_CONTROL);
4001 udelay(200);
4002 } else {
4003 DRM_DEBUG_KMS("Disabling SSC entirely\n");
4004
4005 temp &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
4006
4007 /* Turn off CPU output */
4008 temp |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
4009
4010 I915_WRITE(PCH_DREF_CONTROL, temp);
4011 POSTING_READ(PCH_DREF_CONTROL);
4012 udelay(200);
4013
4014 /* Turn off the SSC source */
4015 temp &= ~DREF_SSC_SOURCE_MASK;
4016 temp |= DREF_SSC_SOURCE_DISABLE;
4017
4018 /* Turn off SSC1 */
4019 temp &= ~ DREF_SSC1_ENABLE;
4020
Jesse Barnes13d83a62011-08-03 12:59:20 -07004021 I915_WRITE(PCH_DREF_CONTROL, temp);
4022 POSTING_READ(PCH_DREF_CONTROL);
4023 udelay(200);
4024 }
4025}
4026
Jesse Barnesd9d444c2011-09-02 13:03:05 -07004027static int ironlake_get_refclk(struct drm_crtc *crtc)
4028{
4029 struct drm_device *dev = crtc->dev;
4030 struct drm_i915_private *dev_priv = dev->dev_private;
4031 struct intel_encoder *encoder;
4032 struct drm_mode_config *mode_config = &dev->mode_config;
4033 struct intel_encoder *edp_encoder = NULL;
4034 int num_connectors = 0;
4035 bool is_lvds = false;
4036
4037 list_for_each_entry(encoder, &mode_config->encoder_list, base.head) {
4038 if (encoder->base.crtc != crtc)
4039 continue;
4040
4041 switch (encoder->type) {
4042 case INTEL_OUTPUT_LVDS:
4043 is_lvds = true;
4044 break;
4045 case INTEL_OUTPUT_EDP:
4046 edp_encoder = encoder;
4047 break;
4048 }
4049 num_connectors++;
4050 }
4051
4052 if (is_lvds && intel_panel_use_ssc(dev_priv) && num_connectors < 2) {
4053 DRM_DEBUG_KMS("using SSC reference clock of %d MHz\n",
4054 dev_priv->lvds_ssc_freq);
4055 return dev_priv->lvds_ssc_freq * 1000;
4056 }
4057
4058 return 120000;
4059}
4060
Eric Anholtf564048e2011-03-30 13:01:02 -07004061static int ironlake_crtc_mode_set(struct drm_crtc *crtc,
4062 struct drm_display_mode *mode,
4063 struct drm_display_mode *adjusted_mode,
4064 int x, int y,
4065 struct drm_framebuffer *old_fb)
Jesse Barnes79e53942008-11-07 14:24:08 -08004066{
4067 struct drm_device *dev = crtc->dev;
4068 struct drm_i915_private *dev_priv = dev->dev_private;
4069 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4070 int pipe = intel_crtc->pipe;
Chris Wilson5c3b82e2009-02-11 13:25:09 +00004071 int plane = intel_crtc->plane;
Jesse Barnes79e53942008-11-07 14:24:08 -08004072 int refclk, num_connectors = 0;
4073 intel_clock_t clock, reduced_clock;
4074 u32 dpll, fp = 0, fp2 = 0, dspcntr, pipeconf;
Eric Anholta07d6782011-03-30 13:01:08 -07004075 bool ok, has_reduced_clock = false, is_sdvo = false;
Jesse Barnes79e53942008-11-07 14:24:08 -08004076 bool is_crt = false, is_lvds = false, is_tv = false, is_dp = false;
Jesse Barnes79e53942008-11-07 14:24:08 -08004077 struct drm_mode_config *mode_config = &dev->mode_config;
Jesse Barnese3aef172012-04-10 11:58:03 -07004078 struct intel_encoder *encoder, *edp_encoder = NULL;
Jesse Barnes79e53942008-11-07 14:24:08 -08004079 const intel_limit_t *limit;
4080 int ret;
4081 struct fdi_m_n m_n = {0};
Eric Anholtfae14982011-03-30 13:01:09 -07004082 u32 temp;
Jesse Barnes5a354202011-06-24 12:19:22 -07004083 int target_clock, pixel_multiplier, lane, link_bw, factor;
4084 unsigned int pipe_bpp;
4085 bool dither;
Jesse Barnese3aef172012-04-10 11:58:03 -07004086 bool is_cpu_edp = false, is_pch_edp = false;
Jesse Barnes79e53942008-11-07 14:24:08 -08004087
Jesse Barnes79e53942008-11-07 14:24:08 -08004088 list_for_each_entry(encoder, &mode_config->encoder_list, base.head) {
4089 if (encoder->base.crtc != crtc)
4090 continue;
4091
4092 switch (encoder->type) {
4093 case INTEL_OUTPUT_LVDS:
4094 is_lvds = true;
4095 break;
4096 case INTEL_OUTPUT_SDVO:
4097 case INTEL_OUTPUT_HDMI:
4098 is_sdvo = true;
4099 if (encoder->needs_tv_clock)
4100 is_tv = true;
4101 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08004102 case INTEL_OUTPUT_TVOUT:
4103 is_tv = true;
4104 break;
4105 case INTEL_OUTPUT_ANALOG:
4106 is_crt = true;
4107 break;
4108 case INTEL_OUTPUT_DISPLAYPORT:
4109 is_dp = true;
4110 break;
4111 case INTEL_OUTPUT_EDP:
Jesse Barnese3aef172012-04-10 11:58:03 -07004112 is_dp = true;
4113 if (intel_encoder_is_pch_edp(&encoder->base))
4114 is_pch_edp = true;
4115 else
4116 is_cpu_edp = true;
4117 edp_encoder = encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08004118 break;
4119 }
4120
Kristian Høgsberg43565a02009-02-13 20:56:52 -05004121 num_connectors++;
4122 }
4123
Jesse Barnesd9d444c2011-09-02 13:03:05 -07004124 refclk = ironlake_get_refclk(crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08004125
4126 /*
4127 * Returns a set of divisors for the desired target clock with the given
4128 * refclk, or FALSE. The returned values represent the clock equation:
4129 * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2.
4130 */
4131 limit = intel_limit(crtc, refclk);
Sean Paulcec2f352012-01-10 15:09:36 -08004132 ok = limit->find_pll(limit, crtc, adjusted_mode->clock, refclk, NULL,
4133 &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08004134 if (!ok) {
4135 DRM_ERROR("Couldn't find PLL settings for mode!\n");
4136 return -EINVAL;
4137 }
4138
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01004139 /* Ensure that the cursor is valid for the new mode before changing... */
Chris Wilson6b383a72010-09-13 13:54:26 +01004140 intel_crtc_update_cursor(crtc, true);
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01004141
Zhao Yakuiddc90032010-01-06 22:05:56 +08004142 if (is_lvds && dev_priv->lvds_downclock_avail) {
Sean Paulcec2f352012-01-10 15:09:36 -08004143 /*
4144 * Ensure we match the reduced clock's P to the target clock.
4145 * If the clocks don't match, we can't switch the display clock
4146 * by using the FP0/FP1. In such case we will disable the LVDS
4147 * downclock feature.
4148 */
Zhao Yakuiddc90032010-01-06 22:05:56 +08004149 has_reduced_clock = limit->find_pll(limit, crtc,
Chris Wilson5eddb702010-09-11 13:48:45 +01004150 dev_priv->lvds_downclock,
4151 refclk,
Sean Paulcec2f352012-01-10 15:09:36 -08004152 &clock,
Chris Wilson5eddb702010-09-11 13:48:45 +01004153 &reduced_clock);
Jesse Barnes652c3932009-08-17 13:31:43 -07004154 }
Zhenyu Wang7026d4a2009-03-24 14:02:43 +08004155 /* SDVO TV has fixed PLL values depend on its clock range,
4156 this mirrors vbios setting. */
4157 if (is_sdvo && is_tv) {
4158 if (adjusted_mode->clock >= 100000
Chris Wilson5eddb702010-09-11 13:48:45 +01004159 && adjusted_mode->clock < 140500) {
Zhenyu Wang7026d4a2009-03-24 14:02:43 +08004160 clock.p1 = 2;
4161 clock.p2 = 10;
4162 clock.n = 3;
4163 clock.m1 = 16;
4164 clock.m2 = 8;
4165 } else if (adjusted_mode->clock >= 140500
Chris Wilson5eddb702010-09-11 13:48:45 +01004166 && adjusted_mode->clock <= 200000) {
Zhenyu Wang7026d4a2009-03-24 14:02:43 +08004167 clock.p1 = 1;
4168 clock.p2 = 10;
4169 clock.n = 6;
4170 clock.m1 = 12;
4171 clock.m2 = 8;
4172 }
4173 }
4174
Zhenyu Wang2c072452009-06-05 15:38:42 +08004175 /* FDI link */
Eric Anholt8febb292011-03-30 13:01:07 -07004176 pixel_multiplier = intel_mode_get_pixel_multiplier(adjusted_mode);
4177 lane = 0;
4178 /* CPU eDP doesn't require FDI link, so just set DP M/N
4179 according to current link config */
Jesse Barnese3aef172012-04-10 11:58:03 -07004180 if (is_cpu_edp) {
Eric Anholt8febb292011-03-30 13:01:07 -07004181 target_clock = mode->clock;
Jesse Barnese3aef172012-04-10 11:58:03 -07004182 intel_edp_link_config(edp_encoder, &lane, &link_bw);
Eric Anholt8febb292011-03-30 13:01:07 -07004183 } else {
4184 /* [e]DP over FDI requires target mode clock
4185 instead of link clock */
Jesse Barnese3aef172012-04-10 11:58:03 -07004186 if (is_dp)
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08004187 target_clock = mode->clock;
Eric Anholt8febb292011-03-30 13:01:07 -07004188 else
4189 target_clock = adjusted_mode->clock;
Chris Wilson021357a2010-09-07 20:54:59 +01004190
Eric Anholt8febb292011-03-30 13:01:07 -07004191 /* FDI is a binary signal running at ~2.7GHz, encoding
4192 * each output octet as 10 bits. The actual frequency
4193 * is stored as a divider into a 100MHz clock, and the
4194 * mode pixel clock is stored in units of 1KHz.
4195 * Hence the bw of each lane in terms of the mode signal
4196 * is:
4197 */
4198 link_bw = intel_fdi_link_freq(dev) * MHz(100)/KHz(1)/10;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08004199 }
Zhenyu Wang2c072452009-06-05 15:38:42 +08004200
Eric Anholt8febb292011-03-30 13:01:07 -07004201 /* determine panel color depth */
4202 temp = I915_READ(PIPECONF(pipe));
4203 temp &= ~PIPE_BPC_MASK;
Adam Jackson3b5c78a2011-12-13 15:41:00 -08004204 dither = intel_choose_pipe_bpp_dither(crtc, &pipe_bpp, mode);
Jesse Barnes5a354202011-06-24 12:19:22 -07004205 switch (pipe_bpp) {
4206 case 18:
4207 temp |= PIPE_6BPC;
4208 break;
4209 case 24:
Eric Anholt8febb292011-03-30 13:01:07 -07004210 temp |= PIPE_8BPC;
Eric Anholt8febb292011-03-30 13:01:07 -07004211 break;
Jesse Barnes5a354202011-06-24 12:19:22 -07004212 case 30:
4213 temp |= PIPE_10BPC;
Eric Anholt8febb292011-03-30 13:01:07 -07004214 break;
Jesse Barnes5a354202011-06-24 12:19:22 -07004215 case 36:
4216 temp |= PIPE_12BPC;
Eric Anholt8febb292011-03-30 13:01:07 -07004217 break;
4218 default:
Jesse Barnes62ac41a2011-07-28 12:55:14 -07004219 WARN(1, "intel_choose_pipe_bpp returned invalid value %d\n",
4220 pipe_bpp);
Jesse Barnes5a354202011-06-24 12:19:22 -07004221 temp |= PIPE_8BPC;
4222 pipe_bpp = 24;
4223 break;
Eric Anholt8febb292011-03-30 13:01:07 -07004224 }
4225
Jesse Barnes5a354202011-06-24 12:19:22 -07004226 intel_crtc->bpp = pipe_bpp;
4227 I915_WRITE(PIPECONF(pipe), temp);
4228
Eric Anholt8febb292011-03-30 13:01:07 -07004229 if (!lane) {
4230 /*
4231 * Account for spread spectrum to avoid
4232 * oversubscribing the link. Max center spread
4233 * is 2.5%; use 5% for safety's sake.
4234 */
Jesse Barnes5a354202011-06-24 12:19:22 -07004235 u32 bps = target_clock * intel_crtc->bpp * 21 / 20;
Eric Anholt8febb292011-03-30 13:01:07 -07004236 lane = bps / (link_bw * 8) + 1;
4237 }
4238
4239 intel_crtc->fdi_lanes = lane;
4240
4241 if (pixel_multiplier > 1)
4242 link_bw *= pixel_multiplier;
Jesse Barnes5a354202011-06-24 12:19:22 -07004243 ironlake_compute_m_n(intel_crtc->bpp, lane, target_clock, link_bw,
4244 &m_n);
Eric Anholt8febb292011-03-30 13:01:07 -07004245
Eric Anholta07d6782011-03-30 13:01:08 -07004246 fp = clock.n << 16 | clock.m1 << 8 | clock.m2;
4247 if (has_reduced_clock)
4248 fp2 = reduced_clock.n << 16 | reduced_clock.m1 << 8 |
4249 reduced_clock.m2;
Jesse Barnes79e53942008-11-07 14:24:08 -08004250
Chris Wilsonc1858122010-12-03 21:35:48 +00004251 /* Enable autotuning of the PLL clock (if permissible) */
Eric Anholt8febb292011-03-30 13:01:07 -07004252 factor = 21;
4253 if (is_lvds) {
4254 if ((intel_panel_use_ssc(dev_priv) &&
4255 dev_priv->lvds_ssc_freq == 100) ||
4256 (I915_READ(PCH_LVDS) & LVDS_CLKB_POWER_MASK) == LVDS_CLKB_POWER_UP)
4257 factor = 25;
4258 } else if (is_sdvo && is_tv)
4259 factor = 20;
Chris Wilsonc1858122010-12-03 21:35:48 +00004260
Jesse Barnescb0e0932011-07-28 14:50:30 -07004261 if (clock.m < factor * clock.n)
Eric Anholt8febb292011-03-30 13:01:07 -07004262 fp |= FP_CB_TUNE;
Chris Wilsonc1858122010-12-03 21:35:48 +00004263
Chris Wilson5eddb702010-09-11 13:48:45 +01004264 dpll = 0;
Zhenyu Wang2c072452009-06-05 15:38:42 +08004265
Eric Anholta07d6782011-03-30 13:01:08 -07004266 if (is_lvds)
4267 dpll |= DPLLB_MODE_LVDS;
4268 else
4269 dpll |= DPLLB_MODE_DAC_SERIAL;
4270 if (is_sdvo) {
4271 int pixel_multiplier = intel_mode_get_pixel_multiplier(adjusted_mode);
4272 if (pixel_multiplier > 1) {
4273 dpll |= (pixel_multiplier - 1) << PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT;
Jesse Barnes79e53942008-11-07 14:24:08 -08004274 }
Eric Anholta07d6782011-03-30 13:01:08 -07004275 dpll |= DPLL_DVO_HIGH_SPEED;
4276 }
Jesse Barnese3aef172012-04-10 11:58:03 -07004277 if (is_dp && !is_cpu_edp)
Eric Anholta07d6782011-03-30 13:01:08 -07004278 dpll |= DPLL_DVO_HIGH_SPEED;
Jesse Barnes79e53942008-11-07 14:24:08 -08004279
Eric Anholta07d6782011-03-30 13:01:08 -07004280 /* compute bitmask from p1 value */
4281 dpll |= (1 << (clock.p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
4282 /* also FPA1 */
4283 dpll |= (1 << (clock.p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
4284
4285 switch (clock.p2) {
4286 case 5:
4287 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
4288 break;
4289 case 7:
4290 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
4291 break;
4292 case 10:
4293 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
4294 break;
4295 case 14:
4296 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
4297 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08004298 }
4299
4300 if (is_sdvo && is_tv)
4301 dpll |= PLL_REF_INPUT_TVCLKINBC;
4302 else if (is_tv)
4303 /* XXX: just matching BIOS for now */
4304 /* dpll |= PLL_REF_INPUT_TVCLKINBC; */
4305 dpll |= 3;
Chris Wilsona7615032011-01-12 17:04:08 +00004306 else if (is_lvds && intel_panel_use_ssc(dev_priv) && num_connectors < 2)
Jesse Barnes79e53942008-11-07 14:24:08 -08004307 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
4308 else
4309 dpll |= PLL_REF_INPUT_DREFCLK;
4310
4311 /* setup pipeconf */
Chris Wilson5eddb702010-09-11 13:48:45 +01004312 pipeconf = I915_READ(PIPECONF(pipe));
Jesse Barnes79e53942008-11-07 14:24:08 -08004313
4314 /* Set up the display plane register */
4315 dspcntr = DISPPLANE_GAMMA_ENABLE;
4316
Jesse Barnesf7cb34d2011-10-12 10:49:14 -07004317 DRM_DEBUG_KMS("Mode for pipe %d:\n", pipe);
Jesse Barnes79e53942008-11-07 14:24:08 -08004318 drm_mode_debug_printmodeline(mode);
4319
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004320 /* CPU eDP is the only output that doesn't need a PCH PLL of its own */
4321 if (!is_cpu_edp) {
4322 struct intel_pch_pll *pll;
Chris Wilson5eddb702010-09-11 13:48:45 +01004323
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004324 pll = intel_get_pch_pll(intel_crtc, dpll, fp);
4325 if (pll == NULL) {
4326 DRM_DEBUG_DRIVER("failed to find PLL for pipe %d\n",
4327 pipe);
Jesse Barnes4b645f12011-10-12 09:51:31 -07004328 return -EINVAL;
4329 }
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004330 } else
4331 intel_put_pch_pll(intel_crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08004332
4333 /* The LVDS pin pair needs to be on before the DPLLs are enabled.
4334 * This is an exception to the general rule that mode_set doesn't turn
4335 * things on.
4336 */
4337 if (is_lvds) {
Eric Anholtfae14982011-03-30 13:01:09 -07004338 temp = I915_READ(PCH_LVDS);
Chris Wilson5eddb702010-09-11 13:48:45 +01004339 temp |= LVDS_PORT_EN | LVDS_A0A2_CLKA_POWER_UP;
Jesse Barnes7885d202012-01-12 14:51:17 -08004340 if (HAS_PCH_CPT(dev)) {
4341 temp &= ~PORT_TRANS_SEL_MASK;
Jesse Barnes4b645f12011-10-12 09:51:31 -07004342 temp |= PORT_TRANS_SEL_CPT(pipe);
Jesse Barnes7885d202012-01-12 14:51:17 -08004343 } else {
4344 if (pipe == 1)
4345 temp |= LVDS_PIPEB_SELECT;
4346 else
4347 temp &= ~LVDS_PIPEB_SELECT;
4348 }
Jesse Barnes4b645f12011-10-12 09:51:31 -07004349
Zhao Yakuia3e17eb2009-10-10 10:42:37 +08004350 /* set the corresponsding LVDS_BORDER bit */
Chris Wilson5eddb702010-09-11 13:48:45 +01004351 temp |= dev_priv->lvds_border_bits;
Jesse Barnes79e53942008-11-07 14:24:08 -08004352 /* Set the B0-B3 data pairs corresponding to whether we're going to
4353 * set the DPLLs for dual-channel mode or not.
4354 */
4355 if (clock.p2 == 7)
Chris Wilson5eddb702010-09-11 13:48:45 +01004356 temp |= LVDS_B0B3_POWER_UP | LVDS_CLKB_POWER_UP;
Jesse Barnes79e53942008-11-07 14:24:08 -08004357 else
Chris Wilson5eddb702010-09-11 13:48:45 +01004358 temp &= ~(LVDS_B0B3_POWER_UP | LVDS_CLKB_POWER_UP);
Jesse Barnes79e53942008-11-07 14:24:08 -08004359
4360 /* It would be nice to set 24 vs 18-bit mode (LVDS_A3_POWER_UP)
4361 * appropriately here, but we need to look more thoroughly into how
4362 * panels behave in the two modes.
4363 */
Chris Wilson284d5df2012-04-14 17:41:59 +01004364 temp &= ~(LVDS_HSYNC_POLARITY | LVDS_VSYNC_POLARITY);
Bryan Freedaa9b5002011-01-12 13:43:19 -08004365 if (adjusted_mode->flags & DRM_MODE_FLAG_NHSYNC)
Chris Wilson284d5df2012-04-14 17:41:59 +01004366 temp |= LVDS_HSYNC_POLARITY;
Bryan Freedaa9b5002011-01-12 13:43:19 -08004367 if (adjusted_mode->flags & DRM_MODE_FLAG_NVSYNC)
Chris Wilson284d5df2012-04-14 17:41:59 +01004368 temp |= LVDS_VSYNC_POLARITY;
Eric Anholtfae14982011-03-30 13:01:09 -07004369 I915_WRITE(PCH_LVDS, temp);
Jesse Barnes79e53942008-11-07 14:24:08 -08004370 }
Jesse Barnes434ed092010-09-07 14:48:06 -07004371
Eric Anholt8febb292011-03-30 13:01:07 -07004372 pipeconf &= ~PIPECONF_DITHER_EN;
4373 pipeconf &= ~PIPECONF_DITHER_TYPE_MASK;
Jesse Barnes5a354202011-06-24 12:19:22 -07004374 if ((is_lvds && dev_priv->lvds_dither) || dither) {
Eric Anholt8febb292011-03-30 13:01:07 -07004375 pipeconf |= PIPECONF_DITHER_EN;
Daniel Vetterf74974c2011-10-11 17:27:51 +02004376 pipeconf |= PIPECONF_DITHER_TYPE_SP;
Jesse Barnes434ed092010-09-07 14:48:06 -07004377 }
Jesse Barnese3aef172012-04-10 11:58:03 -07004378 if (is_dp && !is_cpu_edp) {
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004379 intel_dp_set_m_n(crtc, mode, adjusted_mode);
Eric Anholt8febb292011-03-30 13:01:07 -07004380 } else {
Zhenyu Wang8db9d772010-04-07 16:15:54 +08004381 /* For non-DP output, clear any trans DP clock recovery setting.*/
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08004382 I915_WRITE(TRANSDATA_M1(pipe), 0);
4383 I915_WRITE(TRANSDATA_N1(pipe), 0);
4384 I915_WRITE(TRANSDPLINK_M1(pipe), 0);
4385 I915_WRITE(TRANSDPLINK_N1(pipe), 0);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08004386 }
Jesse Barnes79e53942008-11-07 14:24:08 -08004387
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004388 if (intel_crtc->pch_pll) {
4389 I915_WRITE(intel_crtc->pch_pll->pll_reg, dpll);
Chris Wilson5eddb702010-09-11 13:48:45 +01004390
Zhenyu Wang32f9d652009-07-24 01:00:32 +08004391 /* Wait for the clocks to stabilize. */
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004392 POSTING_READ(intel_crtc->pch_pll->pll_reg);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08004393 udelay(150);
4394
Eric Anholt8febb292011-03-30 13:01:07 -07004395 /* The pixel multiplier can only be updated once the
4396 * DPLL is enabled and the clocks are stable.
4397 *
4398 * So write it again.
4399 */
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004400 I915_WRITE(intel_crtc->pch_pll->pll_reg, dpll);
Jesse Barnes79e53942008-11-07 14:24:08 -08004401 }
Jesse Barnes79e53942008-11-07 14:24:08 -08004402
Chris Wilson5eddb702010-09-11 13:48:45 +01004403 intel_crtc->lowfreq_avail = false;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004404 if (intel_crtc->pch_pll) {
Jesse Barnes4b645f12011-10-12 09:51:31 -07004405 if (is_lvds && has_reduced_clock && i915_powersave) {
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004406 I915_WRITE(intel_crtc->pch_pll->fp1_reg, fp2);
Jesse Barnes4b645f12011-10-12 09:51:31 -07004407 intel_crtc->lowfreq_avail = true;
4408 if (HAS_PIPE_CXSR(dev)) {
4409 DRM_DEBUG_KMS("enabling CxSR downclocking\n");
4410 pipeconf |= PIPECONF_CXSR_DOWNCLOCK;
4411 }
4412 } else {
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004413 I915_WRITE(intel_crtc->pch_pll->fp1_reg, fp);
Jesse Barnes4b645f12011-10-12 09:51:31 -07004414 if (HAS_PIPE_CXSR(dev)) {
4415 DRM_DEBUG_KMS("disabling CxSR downclocking\n");
4416 pipeconf &= ~PIPECONF_CXSR_DOWNCLOCK;
4417 }
Jesse Barnes652c3932009-08-17 13:31:43 -07004418 }
4419 }
4420
Keith Packard617cf882012-02-08 13:53:38 -08004421 pipeconf &= ~PIPECONF_INTERLACE_MASK;
Krzysztof Halasa734b4152010-05-25 18:41:46 +02004422 if (adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE) {
Daniel Vetter5def4742012-01-28 14:49:22 +01004423 pipeconf |= PIPECONF_INTERLACED_ILK;
Krzysztof Halasa734b4152010-05-25 18:41:46 +02004424 /* the chip adds 2 halflines automatically */
Krzysztof Halasa734b4152010-05-25 18:41:46 +02004425 adjusted_mode->crtc_vtotal -= 1;
Krzysztof Halasa734b4152010-05-25 18:41:46 +02004426 adjusted_mode->crtc_vblank_end -= 1;
Daniel Vetter0529a0d2012-01-28 14:49:24 +01004427 I915_WRITE(VSYNCSHIFT(pipe),
4428 adjusted_mode->crtc_hsync_start
4429 - adjusted_mode->crtc_htotal/2);
4430 } else {
Keith Packard617cf882012-02-08 13:53:38 -08004431 pipeconf |= PIPECONF_PROGRESSIVE;
Daniel Vetter0529a0d2012-01-28 14:49:24 +01004432 I915_WRITE(VSYNCSHIFT(pipe), 0);
4433 }
Krzysztof Halasa734b4152010-05-25 18:41:46 +02004434
Chris Wilson5eddb702010-09-11 13:48:45 +01004435 I915_WRITE(HTOTAL(pipe),
4436 (adjusted_mode->crtc_hdisplay - 1) |
Jesse Barnes79e53942008-11-07 14:24:08 -08004437 ((adjusted_mode->crtc_htotal - 1) << 16));
Chris Wilson5eddb702010-09-11 13:48:45 +01004438 I915_WRITE(HBLANK(pipe),
4439 (adjusted_mode->crtc_hblank_start - 1) |
Jesse Barnes79e53942008-11-07 14:24:08 -08004440 ((adjusted_mode->crtc_hblank_end - 1) << 16));
Chris Wilson5eddb702010-09-11 13:48:45 +01004441 I915_WRITE(HSYNC(pipe),
4442 (adjusted_mode->crtc_hsync_start - 1) |
Jesse Barnes79e53942008-11-07 14:24:08 -08004443 ((adjusted_mode->crtc_hsync_end - 1) << 16));
Chris Wilson5eddb702010-09-11 13:48:45 +01004444
4445 I915_WRITE(VTOTAL(pipe),
4446 (adjusted_mode->crtc_vdisplay - 1) |
Jesse Barnes79e53942008-11-07 14:24:08 -08004447 ((adjusted_mode->crtc_vtotal - 1) << 16));
Chris Wilson5eddb702010-09-11 13:48:45 +01004448 I915_WRITE(VBLANK(pipe),
4449 (adjusted_mode->crtc_vblank_start - 1) |
Jesse Barnes79e53942008-11-07 14:24:08 -08004450 ((adjusted_mode->crtc_vblank_end - 1) << 16));
Chris Wilson5eddb702010-09-11 13:48:45 +01004451 I915_WRITE(VSYNC(pipe),
4452 (adjusted_mode->crtc_vsync_start - 1) |
Jesse Barnes79e53942008-11-07 14:24:08 -08004453 ((adjusted_mode->crtc_vsync_end - 1) << 16));
Chris Wilson5eddb702010-09-11 13:48:45 +01004454
Eric Anholt8febb292011-03-30 13:01:07 -07004455 /* pipesrc controls the size that is scaled from, which should
4456 * always be the user's requested size.
Jesse Barnes79e53942008-11-07 14:24:08 -08004457 */
Chris Wilson5eddb702010-09-11 13:48:45 +01004458 I915_WRITE(PIPESRC(pipe),
4459 ((mode->hdisplay - 1) << 16) | (mode->vdisplay - 1));
Zhenyu Wang2c072452009-06-05 15:38:42 +08004460
Eric Anholt8febb292011-03-30 13:01:07 -07004461 I915_WRITE(PIPE_DATA_M1(pipe), TU_SIZE(m_n.tu) | m_n.gmch_m);
4462 I915_WRITE(PIPE_DATA_N1(pipe), m_n.gmch_n);
4463 I915_WRITE(PIPE_LINK_M1(pipe), m_n.link_m);
4464 I915_WRITE(PIPE_LINK_N1(pipe), m_n.link_n);
Zhenyu Wang2c072452009-06-05 15:38:42 +08004465
Jesse Barnese3aef172012-04-10 11:58:03 -07004466 if (is_cpu_edp)
Eric Anholt8febb292011-03-30 13:01:07 -07004467 ironlake_set_pll_edp(crtc, adjusted_mode->clock);
Zhenyu Wang2c072452009-06-05 15:38:42 +08004468
Chris Wilson5eddb702010-09-11 13:48:45 +01004469 I915_WRITE(PIPECONF(pipe), pipeconf);
4470 POSTING_READ(PIPECONF(pipe));
Jesse Barnes79e53942008-11-07 14:24:08 -08004471
Jesse Barnes9d0498a2010-08-18 13:20:54 -07004472 intel_wait_for_vblank(dev, pipe);
Jesse Barnes79e53942008-11-07 14:24:08 -08004473
Chris Wilson5eddb702010-09-11 13:48:45 +01004474 I915_WRITE(DSPCNTR(plane), dspcntr);
Jesse Barnesb24e7172011-01-04 15:09:30 -08004475 POSTING_READ(DSPCNTR(plane));
Jesse Barnes79e53942008-11-07 14:24:08 -08004476
Chris Wilson5c3b82e2009-02-11 13:25:09 +00004477 ret = intel_pipe_set_base(crtc, x, y, old_fb);
Shaohua Li7662c8b2009-06-26 11:23:55 +08004478
4479 intel_update_watermarks(dev);
4480
Chris Wilson1f803ee2009-06-06 09:45:59 +01004481 return ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08004482}
4483
Eric Anholtf564048e2011-03-30 13:01:02 -07004484static int intel_crtc_mode_set(struct drm_crtc *crtc,
4485 struct drm_display_mode *mode,
4486 struct drm_display_mode *adjusted_mode,
4487 int x, int y,
4488 struct drm_framebuffer *old_fb)
4489{
4490 struct drm_device *dev = crtc->dev;
4491 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholt0b701d22011-03-30 13:01:03 -07004492 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4493 int pipe = intel_crtc->pipe;
Eric Anholtf564048e2011-03-30 13:01:02 -07004494 int ret;
4495
Eric Anholt0b701d22011-03-30 13:01:03 -07004496 drm_vblank_pre_modeset(dev, pipe);
4497
Eric Anholtf564048e2011-03-30 13:01:02 -07004498 ret = dev_priv->display.crtc_mode_set(crtc, mode, adjusted_mode,
4499 x, y, old_fb);
Jesse Barnes79e53942008-11-07 14:24:08 -08004500 drm_vblank_post_modeset(dev, pipe);
4501
Jesse Barnesd8e70a22011-11-15 10:28:54 -08004502 if (ret)
4503 intel_crtc->dpms_mode = DRM_MODE_DPMS_OFF;
4504 else
4505 intel_crtc->dpms_mode = DRM_MODE_DPMS_ON;
Keith Packard120eced2011-07-27 01:21:40 -07004506
Jesse Barnes79e53942008-11-07 14:24:08 -08004507 return ret;
4508}
4509
Wu Fengguang3a9627f2011-12-09 20:42:19 +08004510static bool intel_eld_uptodate(struct drm_connector *connector,
4511 int reg_eldv, uint32_t bits_eldv,
4512 int reg_elda, uint32_t bits_elda,
4513 int reg_edid)
4514{
4515 struct drm_i915_private *dev_priv = connector->dev->dev_private;
4516 uint8_t *eld = connector->eld;
4517 uint32_t i;
4518
4519 i = I915_READ(reg_eldv);
4520 i &= bits_eldv;
4521
4522 if (!eld[0])
4523 return !i;
4524
4525 if (!i)
4526 return false;
4527
4528 i = I915_READ(reg_elda);
4529 i &= ~bits_elda;
4530 I915_WRITE(reg_elda, i);
4531
4532 for (i = 0; i < eld[2]; i++)
4533 if (I915_READ(reg_edid) != *((uint32_t *)eld + i))
4534 return false;
4535
4536 return true;
4537}
4538
Wu Fengguange0dac652011-09-05 14:25:34 +08004539static void g4x_write_eld(struct drm_connector *connector,
4540 struct drm_crtc *crtc)
4541{
4542 struct drm_i915_private *dev_priv = connector->dev->dev_private;
4543 uint8_t *eld = connector->eld;
4544 uint32_t eldv;
4545 uint32_t len;
4546 uint32_t i;
4547
4548 i = I915_READ(G4X_AUD_VID_DID);
4549
4550 if (i == INTEL_AUDIO_DEVBLC || i == INTEL_AUDIO_DEVCL)
4551 eldv = G4X_ELDV_DEVCL_DEVBLC;
4552 else
4553 eldv = G4X_ELDV_DEVCTG;
4554
Wu Fengguang3a9627f2011-12-09 20:42:19 +08004555 if (intel_eld_uptodate(connector,
4556 G4X_AUD_CNTL_ST, eldv,
4557 G4X_AUD_CNTL_ST, G4X_ELD_ADDR,
4558 G4X_HDMIW_HDMIEDID))
4559 return;
4560
Wu Fengguange0dac652011-09-05 14:25:34 +08004561 i = I915_READ(G4X_AUD_CNTL_ST);
4562 i &= ~(eldv | G4X_ELD_ADDR);
4563 len = (i >> 9) & 0x1f; /* ELD buffer size */
4564 I915_WRITE(G4X_AUD_CNTL_ST, i);
4565
4566 if (!eld[0])
4567 return;
4568
4569 len = min_t(uint8_t, eld[2], len);
4570 DRM_DEBUG_DRIVER("ELD size %d\n", len);
4571 for (i = 0; i < len; i++)
4572 I915_WRITE(G4X_HDMIW_HDMIEDID, *((uint32_t *)eld + i));
4573
4574 i = I915_READ(G4X_AUD_CNTL_ST);
4575 i |= eldv;
4576 I915_WRITE(G4X_AUD_CNTL_ST, i);
4577}
4578
4579static void ironlake_write_eld(struct drm_connector *connector,
4580 struct drm_crtc *crtc)
4581{
4582 struct drm_i915_private *dev_priv = connector->dev->dev_private;
4583 uint8_t *eld = connector->eld;
4584 uint32_t eldv;
4585 uint32_t i;
4586 int len;
4587 int hdmiw_hdmiedid;
Wu Fengguangb6daa022012-01-06 14:41:31 -06004588 int aud_config;
Wu Fengguange0dac652011-09-05 14:25:34 +08004589 int aud_cntl_st;
4590 int aud_cntrl_st2;
4591
Wu Fengguangb3f33cb2011-12-09 20:42:17 +08004592 if (HAS_PCH_IBX(connector->dev)) {
Wu Fengguang1202b4c62011-12-09 20:42:18 +08004593 hdmiw_hdmiedid = IBX_HDMIW_HDMIEDID_A;
Wu Fengguangb6daa022012-01-06 14:41:31 -06004594 aud_config = IBX_AUD_CONFIG_A;
Wu Fengguang1202b4c62011-12-09 20:42:18 +08004595 aud_cntl_st = IBX_AUD_CNTL_ST_A;
4596 aud_cntrl_st2 = IBX_AUD_CNTL_ST2;
Wu Fengguange0dac652011-09-05 14:25:34 +08004597 } else {
Wu Fengguang1202b4c62011-12-09 20:42:18 +08004598 hdmiw_hdmiedid = CPT_HDMIW_HDMIEDID_A;
Wu Fengguangb6daa022012-01-06 14:41:31 -06004599 aud_config = CPT_AUD_CONFIG_A;
Wu Fengguang1202b4c62011-12-09 20:42:18 +08004600 aud_cntl_st = CPT_AUD_CNTL_ST_A;
4601 aud_cntrl_st2 = CPT_AUD_CNTRL_ST2;
Wu Fengguange0dac652011-09-05 14:25:34 +08004602 }
4603
4604 i = to_intel_crtc(crtc)->pipe;
4605 hdmiw_hdmiedid += i * 0x100;
4606 aud_cntl_st += i * 0x100;
Wu Fengguangb6daa022012-01-06 14:41:31 -06004607 aud_config += i * 0x100;
Wu Fengguange0dac652011-09-05 14:25:34 +08004608
4609 DRM_DEBUG_DRIVER("ELD on pipe %c\n", pipe_name(i));
4610
4611 i = I915_READ(aud_cntl_st);
4612 i = (i >> 29) & 0x3; /* DIP_Port_Select, 0x1 = PortB */
4613 if (!i) {
4614 DRM_DEBUG_DRIVER("Audio directed to unknown port\n");
4615 /* operate blindly on all ports */
Wu Fengguang1202b4c62011-12-09 20:42:18 +08004616 eldv = IBX_ELD_VALIDB;
4617 eldv |= IBX_ELD_VALIDB << 4;
4618 eldv |= IBX_ELD_VALIDB << 8;
Wu Fengguange0dac652011-09-05 14:25:34 +08004619 } else {
4620 DRM_DEBUG_DRIVER("ELD on port %c\n", 'A' + i);
Wu Fengguang1202b4c62011-12-09 20:42:18 +08004621 eldv = IBX_ELD_VALIDB << ((i - 1) * 4);
Wu Fengguange0dac652011-09-05 14:25:34 +08004622 }
4623
Wu Fengguang3a9627f2011-12-09 20:42:19 +08004624 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT)) {
4625 DRM_DEBUG_DRIVER("ELD: DisplayPort detected\n");
4626 eld[5] |= (1 << 2); /* Conn_Type, 0x1 = DisplayPort */
Wu Fengguangb6daa022012-01-06 14:41:31 -06004627 I915_WRITE(aud_config, AUD_CONFIG_N_VALUE_INDEX); /* 0x1 = DP */
4628 } else
4629 I915_WRITE(aud_config, 0);
Wu Fengguang3a9627f2011-12-09 20:42:19 +08004630
4631 if (intel_eld_uptodate(connector,
4632 aud_cntrl_st2, eldv,
4633 aud_cntl_st, IBX_ELD_ADDRESS,
4634 hdmiw_hdmiedid))
4635 return;
4636
Wu Fengguange0dac652011-09-05 14:25:34 +08004637 i = I915_READ(aud_cntrl_st2);
4638 i &= ~eldv;
4639 I915_WRITE(aud_cntrl_st2, i);
4640
4641 if (!eld[0])
4642 return;
4643
Wu Fengguange0dac652011-09-05 14:25:34 +08004644 i = I915_READ(aud_cntl_st);
Wu Fengguang1202b4c62011-12-09 20:42:18 +08004645 i &= ~IBX_ELD_ADDRESS;
Wu Fengguange0dac652011-09-05 14:25:34 +08004646 I915_WRITE(aud_cntl_st, i);
4647
4648 len = min_t(uint8_t, eld[2], 21); /* 84 bytes of hw ELD buffer */
4649 DRM_DEBUG_DRIVER("ELD size %d\n", len);
4650 for (i = 0; i < len; i++)
4651 I915_WRITE(hdmiw_hdmiedid, *((uint32_t *)eld + i));
4652
4653 i = I915_READ(aud_cntrl_st2);
4654 i |= eldv;
4655 I915_WRITE(aud_cntrl_st2, i);
4656}
4657
4658void intel_write_eld(struct drm_encoder *encoder,
4659 struct drm_display_mode *mode)
4660{
4661 struct drm_crtc *crtc = encoder->crtc;
4662 struct drm_connector *connector;
4663 struct drm_device *dev = encoder->dev;
4664 struct drm_i915_private *dev_priv = dev->dev_private;
4665
4666 connector = drm_select_eld(encoder, mode);
4667 if (!connector)
4668 return;
4669
4670 DRM_DEBUG_DRIVER("ELD on [CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
4671 connector->base.id,
4672 drm_get_connector_name(connector),
4673 connector->encoder->base.id,
4674 drm_get_encoder_name(connector->encoder));
4675
4676 connector->eld[6] = drm_av_sync_delay(connector, mode) / 2;
4677
4678 if (dev_priv->display.write_eld)
4679 dev_priv->display.write_eld(connector, crtc);
4680}
4681
Jesse Barnes79e53942008-11-07 14:24:08 -08004682/** Loads the palette/gamma unit for the CRTC with the prepared values */
4683void intel_crtc_load_lut(struct drm_crtc *crtc)
4684{
4685 struct drm_device *dev = crtc->dev;
4686 struct drm_i915_private *dev_priv = dev->dev_private;
4687 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08004688 int palreg = PALETTE(intel_crtc->pipe);
Jesse Barnes79e53942008-11-07 14:24:08 -08004689 int i;
4690
4691 /* The clocks have to be on to load the palette. */
Alban Browaeysaed3f092012-02-24 17:12:45 +00004692 if (!crtc->enabled || !intel_crtc->active)
Jesse Barnes79e53942008-11-07 14:24:08 -08004693 return;
4694
Adam Jacksonf2b115e2009-12-03 17:14:42 -05004695 /* use legacy palette for Ironlake */
Eric Anholtbad720f2009-10-22 16:11:14 -07004696 if (HAS_PCH_SPLIT(dev))
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08004697 palreg = LGC_PALETTE(intel_crtc->pipe);
Zhenyu Wang2c072452009-06-05 15:38:42 +08004698
Jesse Barnes79e53942008-11-07 14:24:08 -08004699 for (i = 0; i < 256; i++) {
4700 I915_WRITE(palreg + 4 * i,
4701 (intel_crtc->lut_r[i] << 16) |
4702 (intel_crtc->lut_g[i] << 8) |
4703 intel_crtc->lut_b[i]);
4704 }
4705}
4706
Chris Wilson560b85b2010-08-07 11:01:38 +01004707static void i845_update_cursor(struct drm_crtc *crtc, u32 base)
4708{
4709 struct drm_device *dev = crtc->dev;
4710 struct drm_i915_private *dev_priv = dev->dev_private;
4711 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4712 bool visible = base != 0;
4713 u32 cntl;
4714
4715 if (intel_crtc->cursor_visible == visible)
4716 return;
4717
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08004718 cntl = I915_READ(_CURACNTR);
Chris Wilson560b85b2010-08-07 11:01:38 +01004719 if (visible) {
4720 /* On these chipsets we can only modify the base whilst
4721 * the cursor is disabled.
4722 */
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08004723 I915_WRITE(_CURABASE, base);
Chris Wilson560b85b2010-08-07 11:01:38 +01004724
4725 cntl &= ~(CURSOR_FORMAT_MASK);
4726 /* XXX width must be 64, stride 256 => 0x00 << 28 */
4727 cntl |= CURSOR_ENABLE |
4728 CURSOR_GAMMA_ENABLE |
4729 CURSOR_FORMAT_ARGB;
4730 } else
4731 cntl &= ~(CURSOR_ENABLE | CURSOR_GAMMA_ENABLE);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08004732 I915_WRITE(_CURACNTR, cntl);
Chris Wilson560b85b2010-08-07 11:01:38 +01004733
4734 intel_crtc->cursor_visible = visible;
4735}
4736
4737static void i9xx_update_cursor(struct drm_crtc *crtc, u32 base)
4738{
4739 struct drm_device *dev = crtc->dev;
4740 struct drm_i915_private *dev_priv = dev->dev_private;
4741 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4742 int pipe = intel_crtc->pipe;
4743 bool visible = base != 0;
4744
4745 if (intel_crtc->cursor_visible != visible) {
Jesse Barnes548f2452011-02-17 10:40:53 -08004746 uint32_t cntl = I915_READ(CURCNTR(pipe));
Chris Wilson560b85b2010-08-07 11:01:38 +01004747 if (base) {
4748 cntl &= ~(CURSOR_MODE | MCURSOR_PIPE_SELECT);
4749 cntl |= CURSOR_MODE_64_ARGB_AX | MCURSOR_GAMMA_ENABLE;
4750 cntl |= pipe << 28; /* Connect to correct pipe */
4751 } else {
4752 cntl &= ~(CURSOR_MODE | MCURSOR_GAMMA_ENABLE);
4753 cntl |= CURSOR_MODE_DISABLE;
4754 }
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08004755 I915_WRITE(CURCNTR(pipe), cntl);
Chris Wilson560b85b2010-08-07 11:01:38 +01004756
4757 intel_crtc->cursor_visible = visible;
4758 }
4759 /* and commit changes on next vblank */
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08004760 I915_WRITE(CURBASE(pipe), base);
Chris Wilson560b85b2010-08-07 11:01:38 +01004761}
4762
Jesse Barnes65a21cd2011-10-12 11:10:21 -07004763static void ivb_update_cursor(struct drm_crtc *crtc, u32 base)
4764{
4765 struct drm_device *dev = crtc->dev;
4766 struct drm_i915_private *dev_priv = dev->dev_private;
4767 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4768 int pipe = intel_crtc->pipe;
4769 bool visible = base != 0;
4770
4771 if (intel_crtc->cursor_visible != visible) {
4772 uint32_t cntl = I915_READ(CURCNTR_IVB(pipe));
4773 if (base) {
4774 cntl &= ~CURSOR_MODE;
4775 cntl |= CURSOR_MODE_64_ARGB_AX | MCURSOR_GAMMA_ENABLE;
4776 } else {
4777 cntl &= ~(CURSOR_MODE | MCURSOR_GAMMA_ENABLE);
4778 cntl |= CURSOR_MODE_DISABLE;
4779 }
4780 I915_WRITE(CURCNTR_IVB(pipe), cntl);
4781
4782 intel_crtc->cursor_visible = visible;
4783 }
4784 /* and commit changes on next vblank */
4785 I915_WRITE(CURBASE_IVB(pipe), base);
4786}
4787
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01004788/* If no-part of the cursor is visible on the framebuffer, then the GPU may hang... */
Chris Wilson6b383a72010-09-13 13:54:26 +01004789static void intel_crtc_update_cursor(struct drm_crtc *crtc,
4790 bool on)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01004791{
4792 struct drm_device *dev = crtc->dev;
4793 struct drm_i915_private *dev_priv = dev->dev_private;
4794 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4795 int pipe = intel_crtc->pipe;
4796 int x = intel_crtc->cursor_x;
4797 int y = intel_crtc->cursor_y;
Chris Wilson560b85b2010-08-07 11:01:38 +01004798 u32 base, pos;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01004799 bool visible;
4800
4801 pos = 0;
4802
Chris Wilson6b383a72010-09-13 13:54:26 +01004803 if (on && crtc->enabled && crtc->fb) {
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01004804 base = intel_crtc->cursor_addr;
4805 if (x > (int) crtc->fb->width)
4806 base = 0;
4807
4808 if (y > (int) crtc->fb->height)
4809 base = 0;
4810 } else
4811 base = 0;
4812
4813 if (x < 0) {
4814 if (x + intel_crtc->cursor_width < 0)
4815 base = 0;
4816
4817 pos |= CURSOR_POS_SIGN << CURSOR_X_SHIFT;
4818 x = -x;
4819 }
4820 pos |= x << CURSOR_X_SHIFT;
4821
4822 if (y < 0) {
4823 if (y + intel_crtc->cursor_height < 0)
4824 base = 0;
4825
4826 pos |= CURSOR_POS_SIGN << CURSOR_Y_SHIFT;
4827 y = -y;
4828 }
4829 pos |= y << CURSOR_Y_SHIFT;
4830
4831 visible = base != 0;
Chris Wilson560b85b2010-08-07 11:01:38 +01004832 if (!visible && !intel_crtc->cursor_visible)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01004833 return;
4834
Eugeni Dodonov0cd83aa2012-04-13 17:08:48 -03004835 if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev)) {
Jesse Barnes65a21cd2011-10-12 11:10:21 -07004836 I915_WRITE(CURPOS_IVB(pipe), pos);
4837 ivb_update_cursor(crtc, base);
4838 } else {
4839 I915_WRITE(CURPOS(pipe), pos);
4840 if (IS_845G(dev) || IS_I865G(dev))
4841 i845_update_cursor(crtc, base);
4842 else
4843 i9xx_update_cursor(crtc, base);
4844 }
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01004845}
4846
Jesse Barnes79e53942008-11-07 14:24:08 -08004847static int intel_crtc_cursor_set(struct drm_crtc *crtc,
Chris Wilson05394f32010-11-08 19:18:58 +00004848 struct drm_file *file,
Jesse Barnes79e53942008-11-07 14:24:08 -08004849 uint32_t handle,
4850 uint32_t width, uint32_t height)
4851{
4852 struct drm_device *dev = crtc->dev;
4853 struct drm_i915_private *dev_priv = dev->dev_private;
4854 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Chris Wilson05394f32010-11-08 19:18:58 +00004855 struct drm_i915_gem_object *obj;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01004856 uint32_t addr;
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05004857 int ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08004858
Zhao Yakui28c97732009-10-09 11:39:41 +08004859 DRM_DEBUG_KMS("\n");
Jesse Barnes79e53942008-11-07 14:24:08 -08004860
4861 /* if we want to turn off the cursor ignore width and height */
4862 if (!handle) {
Zhao Yakui28c97732009-10-09 11:39:41 +08004863 DRM_DEBUG_KMS("cursor off\n");
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05004864 addr = 0;
Chris Wilson05394f32010-11-08 19:18:58 +00004865 obj = NULL;
Pierre Willenbrock50044172009-02-23 10:12:15 +10004866 mutex_lock(&dev->struct_mutex);
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05004867 goto finish;
Jesse Barnes79e53942008-11-07 14:24:08 -08004868 }
4869
4870 /* Currently we only support 64x64 cursors */
4871 if (width != 64 || height != 64) {
4872 DRM_ERROR("we currently only support 64x64 cursors\n");
4873 return -EINVAL;
4874 }
4875
Chris Wilson05394f32010-11-08 19:18:58 +00004876 obj = to_intel_bo(drm_gem_object_lookup(dev, file, handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00004877 if (&obj->base == NULL)
Jesse Barnes79e53942008-11-07 14:24:08 -08004878 return -ENOENT;
4879
Chris Wilson05394f32010-11-08 19:18:58 +00004880 if (obj->base.size < width * height * 4) {
Jesse Barnes79e53942008-11-07 14:24:08 -08004881 DRM_ERROR("buffer is to small\n");
Dave Airlie34b8686e2009-01-15 14:03:07 +10004882 ret = -ENOMEM;
4883 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -08004884 }
4885
Dave Airlie71acb5e2008-12-30 20:31:46 +10004886 /* we only need to pin inside GTT if cursor is non-phy */
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05004887 mutex_lock(&dev->struct_mutex);
Kristian Høgsbergb295d1b2009-12-16 15:16:17 -05004888 if (!dev_priv->info->cursor_needs_physical) {
Chris Wilsond9e86c02010-11-10 16:40:20 +00004889 if (obj->tiling_mode) {
4890 DRM_ERROR("cursor cannot be tiled\n");
4891 ret = -EINVAL;
4892 goto fail_locked;
4893 }
4894
Chris Wilson2da3b9b2011-04-14 09:41:17 +01004895 ret = i915_gem_object_pin_to_display_plane(obj, 0, NULL);
Chris Wilsone7b526b2010-06-02 08:30:48 +01004896 if (ret) {
4897 DRM_ERROR("failed to move cursor bo into the GTT\n");
Chris Wilson2da3b9b2011-04-14 09:41:17 +01004898 goto fail_locked;
Chris Wilsone7b526b2010-06-02 08:30:48 +01004899 }
4900
Chris Wilsond9e86c02010-11-10 16:40:20 +00004901 ret = i915_gem_object_put_fence(obj);
4902 if (ret) {
Chris Wilson2da3b9b2011-04-14 09:41:17 +01004903 DRM_ERROR("failed to release fence for cursor");
Chris Wilsond9e86c02010-11-10 16:40:20 +00004904 goto fail_unpin;
4905 }
4906
Chris Wilson05394f32010-11-08 19:18:58 +00004907 addr = obj->gtt_offset;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004908 } else {
Chris Wilson6eeefaf2010-08-07 11:01:39 +01004909 int align = IS_I830(dev) ? 16 * 1024 : 256;
Chris Wilson05394f32010-11-08 19:18:58 +00004910 ret = i915_gem_attach_phys_object(dev, obj,
Chris Wilson6eeefaf2010-08-07 11:01:39 +01004911 (intel_crtc->pipe == 0) ? I915_GEM_PHYS_CURSOR_0 : I915_GEM_PHYS_CURSOR_1,
4912 align);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004913 if (ret) {
4914 DRM_ERROR("failed to attach phys object\n");
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05004915 goto fail_locked;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004916 }
Chris Wilson05394f32010-11-08 19:18:58 +00004917 addr = obj->phys_obj->handle->busaddr;
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05004918 }
4919
Chris Wilsona6c45cf2010-09-17 00:32:17 +01004920 if (IS_GEN2(dev))
Jesse Barnes14b60392009-05-20 16:47:08 -04004921 I915_WRITE(CURSIZE, (height << 12) | width);
4922
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05004923 finish:
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05004924 if (intel_crtc->cursor_bo) {
Kristian Høgsbergb295d1b2009-12-16 15:16:17 -05004925 if (dev_priv->info->cursor_needs_physical) {
Chris Wilson05394f32010-11-08 19:18:58 +00004926 if (intel_crtc->cursor_bo != obj)
Dave Airlie71acb5e2008-12-30 20:31:46 +10004927 i915_gem_detach_phys_object(dev, intel_crtc->cursor_bo);
4928 } else
4929 i915_gem_object_unpin(intel_crtc->cursor_bo);
Chris Wilson05394f32010-11-08 19:18:58 +00004930 drm_gem_object_unreference(&intel_crtc->cursor_bo->base);
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05004931 }
Jesse Barnes80824002009-09-10 15:28:06 -07004932
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05004933 mutex_unlock(&dev->struct_mutex);
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05004934
4935 intel_crtc->cursor_addr = addr;
Chris Wilson05394f32010-11-08 19:18:58 +00004936 intel_crtc->cursor_bo = obj;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01004937 intel_crtc->cursor_width = width;
4938 intel_crtc->cursor_height = height;
4939
Chris Wilson6b383a72010-09-13 13:54:26 +01004940 intel_crtc_update_cursor(crtc, true);
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05004941
Jesse Barnes79e53942008-11-07 14:24:08 -08004942 return 0;
Chris Wilsone7b526b2010-06-02 08:30:48 +01004943fail_unpin:
Chris Wilson05394f32010-11-08 19:18:58 +00004944 i915_gem_object_unpin(obj);
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05004945fail_locked:
Dave Airlie34b8686e2009-01-15 14:03:07 +10004946 mutex_unlock(&dev->struct_mutex);
Luca Barbieribc9025b2010-02-09 05:49:12 +00004947fail:
Chris Wilson05394f32010-11-08 19:18:58 +00004948 drm_gem_object_unreference_unlocked(&obj->base);
Dave Airlie34b8686e2009-01-15 14:03:07 +10004949 return ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08004950}
4951
4952static int intel_crtc_cursor_move(struct drm_crtc *crtc, int x, int y)
4953{
Jesse Barnes79e53942008-11-07 14:24:08 -08004954 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08004955
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01004956 intel_crtc->cursor_x = x;
4957 intel_crtc->cursor_y = y;
Jesse Barnes652c3932009-08-17 13:31:43 -07004958
Chris Wilson6b383a72010-09-13 13:54:26 +01004959 intel_crtc_update_cursor(crtc, true);
Jesse Barnes79e53942008-11-07 14:24:08 -08004960
4961 return 0;
4962}
4963
4964/** Sets the color ramps on behalf of RandR */
4965void intel_crtc_fb_gamma_set(struct drm_crtc *crtc, u16 red, u16 green,
4966 u16 blue, int regno)
4967{
4968 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4969
4970 intel_crtc->lut_r[regno] = red >> 8;
4971 intel_crtc->lut_g[regno] = green >> 8;
4972 intel_crtc->lut_b[regno] = blue >> 8;
4973}
4974
Dave Airlieb8c00ac2009-10-06 13:54:01 +10004975void intel_crtc_fb_gamma_get(struct drm_crtc *crtc, u16 *red, u16 *green,
4976 u16 *blue, int regno)
4977{
4978 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4979
4980 *red = intel_crtc->lut_r[regno] << 8;
4981 *green = intel_crtc->lut_g[regno] << 8;
4982 *blue = intel_crtc->lut_b[regno] << 8;
4983}
4984
Jesse Barnes79e53942008-11-07 14:24:08 -08004985static void intel_crtc_gamma_set(struct drm_crtc *crtc, u16 *red, u16 *green,
James Simmons72034252010-08-03 01:33:19 +01004986 u16 *blue, uint32_t start, uint32_t size)
Jesse Barnes79e53942008-11-07 14:24:08 -08004987{
James Simmons72034252010-08-03 01:33:19 +01004988 int end = (start + size > 256) ? 256 : start + size, i;
Jesse Barnes79e53942008-11-07 14:24:08 -08004989 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08004990
James Simmons72034252010-08-03 01:33:19 +01004991 for (i = start; i < end; i++) {
Jesse Barnes79e53942008-11-07 14:24:08 -08004992 intel_crtc->lut_r[i] = red[i] >> 8;
4993 intel_crtc->lut_g[i] = green[i] >> 8;
4994 intel_crtc->lut_b[i] = blue[i] >> 8;
4995 }
4996
4997 intel_crtc_load_lut(crtc);
4998}
4999
5000/**
5001 * Get a pipe with a simple mode set on it for doing load-based monitor
5002 * detection.
5003 *
5004 * It will be up to the load-detect code to adjust the pipe as appropriate for
Eric Anholtc751ce42010-03-25 11:48:48 -07005005 * its requirements. The pipe will be connected to no other encoders.
Jesse Barnes79e53942008-11-07 14:24:08 -08005006 *
Eric Anholtc751ce42010-03-25 11:48:48 -07005007 * Currently this code will only succeed if there is a pipe with no encoders
Jesse Barnes79e53942008-11-07 14:24:08 -08005008 * configured for it. In the future, it could choose to temporarily disable
5009 * some outputs to free up a pipe for its use.
5010 *
5011 * \return crtc, or NULL if no pipes are available.
5012 */
5013
5014/* VESA 640x480x72Hz mode to set on the pipe */
5015static struct drm_display_mode load_detect_mode = {
5016 DRM_MODE("640x480", DRM_MODE_TYPE_DEFAULT, 31500, 640, 664,
5017 704, 832, 0, 480, 489, 491, 520, 0, DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
5018};
5019
Chris Wilsond2dff872011-04-19 08:36:26 +01005020static struct drm_framebuffer *
5021intel_framebuffer_create(struct drm_device *dev,
Jesse Barnes308e5bc2011-11-14 14:51:28 -08005022 struct drm_mode_fb_cmd2 *mode_cmd,
Chris Wilsond2dff872011-04-19 08:36:26 +01005023 struct drm_i915_gem_object *obj)
5024{
5025 struct intel_framebuffer *intel_fb;
5026 int ret;
5027
5028 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
5029 if (!intel_fb) {
5030 drm_gem_object_unreference_unlocked(&obj->base);
5031 return ERR_PTR(-ENOMEM);
5032 }
5033
5034 ret = intel_framebuffer_init(dev, intel_fb, mode_cmd, obj);
5035 if (ret) {
5036 drm_gem_object_unreference_unlocked(&obj->base);
5037 kfree(intel_fb);
5038 return ERR_PTR(ret);
5039 }
5040
5041 return &intel_fb->base;
5042}
5043
5044static u32
5045intel_framebuffer_pitch_for_width(int width, int bpp)
5046{
5047 u32 pitch = DIV_ROUND_UP(width * bpp, 8);
5048 return ALIGN(pitch, 64);
5049}
5050
5051static u32
5052intel_framebuffer_size_for_mode(struct drm_display_mode *mode, int bpp)
5053{
5054 u32 pitch = intel_framebuffer_pitch_for_width(mode->hdisplay, bpp);
5055 return ALIGN(pitch * mode->vdisplay, PAGE_SIZE);
5056}
5057
5058static struct drm_framebuffer *
5059intel_framebuffer_create_for_mode(struct drm_device *dev,
5060 struct drm_display_mode *mode,
5061 int depth, int bpp)
5062{
5063 struct drm_i915_gem_object *obj;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08005064 struct drm_mode_fb_cmd2 mode_cmd;
Chris Wilsond2dff872011-04-19 08:36:26 +01005065
5066 obj = i915_gem_alloc_object(dev,
5067 intel_framebuffer_size_for_mode(mode, bpp));
5068 if (obj == NULL)
5069 return ERR_PTR(-ENOMEM);
5070
5071 mode_cmd.width = mode->hdisplay;
5072 mode_cmd.height = mode->vdisplay;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08005073 mode_cmd.pitches[0] = intel_framebuffer_pitch_for_width(mode_cmd.width,
5074 bpp);
Dave Airlie5ca0c342012-02-23 15:33:40 +00005075 mode_cmd.pixel_format = drm_mode_legacy_fb_format(bpp, depth);
Chris Wilsond2dff872011-04-19 08:36:26 +01005076
5077 return intel_framebuffer_create(dev, &mode_cmd, obj);
5078}
5079
5080static struct drm_framebuffer *
5081mode_fits_in_fbdev(struct drm_device *dev,
5082 struct drm_display_mode *mode)
5083{
5084 struct drm_i915_private *dev_priv = dev->dev_private;
5085 struct drm_i915_gem_object *obj;
5086 struct drm_framebuffer *fb;
5087
5088 if (dev_priv->fbdev == NULL)
5089 return NULL;
5090
5091 obj = dev_priv->fbdev->ifb.obj;
5092 if (obj == NULL)
5093 return NULL;
5094
5095 fb = &dev_priv->fbdev->ifb.base;
Ville Syrjälä01f2c772011-12-20 00:06:49 +02005096 if (fb->pitches[0] < intel_framebuffer_pitch_for_width(mode->hdisplay,
5097 fb->bits_per_pixel))
Chris Wilsond2dff872011-04-19 08:36:26 +01005098 return NULL;
5099
Ville Syrjälä01f2c772011-12-20 00:06:49 +02005100 if (obj->base.size < mode->vdisplay * fb->pitches[0])
Chris Wilsond2dff872011-04-19 08:36:26 +01005101 return NULL;
5102
5103 return fb;
5104}
5105
Chris Wilson71731882011-04-19 23:10:58 +01005106bool intel_get_load_detect_pipe(struct intel_encoder *intel_encoder,
5107 struct drm_connector *connector,
5108 struct drm_display_mode *mode,
Chris Wilson8261b192011-04-19 23:18:09 +01005109 struct intel_load_detect_pipe *old)
Jesse Barnes79e53942008-11-07 14:24:08 -08005110{
5111 struct intel_crtc *intel_crtc;
5112 struct drm_crtc *possible_crtc;
Chris Wilson4ef69c72010-09-09 15:14:28 +01005113 struct drm_encoder *encoder = &intel_encoder->base;
Jesse Barnes79e53942008-11-07 14:24:08 -08005114 struct drm_crtc *crtc = NULL;
5115 struct drm_device *dev = encoder->dev;
Chris Wilsond2dff872011-04-19 08:36:26 +01005116 struct drm_framebuffer *old_fb;
Jesse Barnes79e53942008-11-07 14:24:08 -08005117 int i = -1;
5118
Chris Wilsond2dff872011-04-19 08:36:26 +01005119 DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
5120 connector->base.id, drm_get_connector_name(connector),
5121 encoder->base.id, drm_get_encoder_name(encoder));
5122
Jesse Barnes79e53942008-11-07 14:24:08 -08005123 /*
5124 * Algorithm gets a little messy:
Chris Wilson7a5e4802011-04-19 23:21:12 +01005125 *
Jesse Barnes79e53942008-11-07 14:24:08 -08005126 * - if the connector already has an assigned crtc, use it (but make
5127 * sure it's on first)
Chris Wilson7a5e4802011-04-19 23:21:12 +01005128 *
Jesse Barnes79e53942008-11-07 14:24:08 -08005129 * - try to find the first unused crtc that can drive this connector,
5130 * and use that if we find one
Jesse Barnes79e53942008-11-07 14:24:08 -08005131 */
5132
5133 /* See if we already have a CRTC for this connector */
5134 if (encoder->crtc) {
5135 crtc = encoder->crtc;
Chris Wilson8261b192011-04-19 23:18:09 +01005136
Jesse Barnes79e53942008-11-07 14:24:08 -08005137 intel_crtc = to_intel_crtc(crtc);
Chris Wilson8261b192011-04-19 23:18:09 +01005138 old->dpms_mode = intel_crtc->dpms_mode;
5139 old->load_detect_temp = false;
5140
5141 /* Make sure the crtc and connector are running */
Jesse Barnes79e53942008-11-07 14:24:08 -08005142 if (intel_crtc->dpms_mode != DRM_MODE_DPMS_ON) {
Chris Wilson64927112011-04-20 07:25:26 +01005143 struct drm_encoder_helper_funcs *encoder_funcs;
5144 struct drm_crtc_helper_funcs *crtc_funcs;
5145
Jesse Barnes79e53942008-11-07 14:24:08 -08005146 crtc_funcs = crtc->helper_private;
5147 crtc_funcs->dpms(crtc, DRM_MODE_DPMS_ON);
Chris Wilson64927112011-04-20 07:25:26 +01005148
5149 encoder_funcs = encoder->helper_private;
Jesse Barnes79e53942008-11-07 14:24:08 -08005150 encoder_funcs->dpms(encoder, DRM_MODE_DPMS_ON);
5151 }
Chris Wilson8261b192011-04-19 23:18:09 +01005152
Chris Wilson71731882011-04-19 23:10:58 +01005153 return true;
Jesse Barnes79e53942008-11-07 14:24:08 -08005154 }
5155
5156 /* Find an unused one (if possible) */
5157 list_for_each_entry(possible_crtc, &dev->mode_config.crtc_list, head) {
5158 i++;
5159 if (!(encoder->possible_crtcs & (1 << i)))
5160 continue;
5161 if (!possible_crtc->enabled) {
5162 crtc = possible_crtc;
5163 break;
5164 }
Jesse Barnes79e53942008-11-07 14:24:08 -08005165 }
5166
5167 /*
5168 * If we didn't find an unused CRTC, don't use any.
5169 */
5170 if (!crtc) {
Chris Wilson71731882011-04-19 23:10:58 +01005171 DRM_DEBUG_KMS("no pipe available for load-detect\n");
5172 return false;
Jesse Barnes79e53942008-11-07 14:24:08 -08005173 }
5174
5175 encoder->crtc = crtc;
Zhenyu Wangc1c43972010-03-30 14:39:30 +08005176 connector->encoder = encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08005177
5178 intel_crtc = to_intel_crtc(crtc);
Chris Wilson8261b192011-04-19 23:18:09 +01005179 old->dpms_mode = intel_crtc->dpms_mode;
5180 old->load_detect_temp = true;
Chris Wilsond2dff872011-04-19 08:36:26 +01005181 old->release_fb = NULL;
Jesse Barnes79e53942008-11-07 14:24:08 -08005182
Chris Wilson64927112011-04-20 07:25:26 +01005183 if (!mode)
5184 mode = &load_detect_mode;
Jesse Barnes79e53942008-11-07 14:24:08 -08005185
Chris Wilsond2dff872011-04-19 08:36:26 +01005186 old_fb = crtc->fb;
5187
5188 /* We need a framebuffer large enough to accommodate all accesses
5189 * that the plane may generate whilst we perform load detection.
5190 * We can not rely on the fbcon either being present (we get called
5191 * during its initialisation to detect all boot displays, or it may
5192 * not even exist) or that it is large enough to satisfy the
5193 * requested mode.
5194 */
5195 crtc->fb = mode_fits_in_fbdev(dev, mode);
5196 if (crtc->fb == NULL) {
5197 DRM_DEBUG_KMS("creating tmp fb for load-detection\n");
5198 crtc->fb = intel_framebuffer_create_for_mode(dev, mode, 24, 32);
5199 old->release_fb = crtc->fb;
5200 } else
5201 DRM_DEBUG_KMS("reusing fbdev for load-detection framebuffer\n");
5202 if (IS_ERR(crtc->fb)) {
5203 DRM_DEBUG_KMS("failed to allocate framebuffer for load-detection\n");
5204 crtc->fb = old_fb;
5205 return false;
Jesse Barnes79e53942008-11-07 14:24:08 -08005206 }
Chris Wilsond2dff872011-04-19 08:36:26 +01005207
5208 if (!drm_crtc_helper_set_mode(crtc, mode, 0, 0, old_fb)) {
Chris Wilson64927112011-04-20 07:25:26 +01005209 DRM_DEBUG_KMS("failed to set mode on load-detect pipe\n");
Chris Wilsond2dff872011-04-19 08:36:26 +01005210 if (old->release_fb)
5211 old->release_fb->funcs->destroy(old->release_fb);
5212 crtc->fb = old_fb;
Chris Wilson64927112011-04-20 07:25:26 +01005213 return false;
Jesse Barnes79e53942008-11-07 14:24:08 -08005214 }
Chris Wilson71731882011-04-19 23:10:58 +01005215
Jesse Barnes79e53942008-11-07 14:24:08 -08005216 /* let the connector get through one full cycle before testing */
Jesse Barnes9d0498a2010-08-18 13:20:54 -07005217 intel_wait_for_vblank(dev, intel_crtc->pipe);
Jesse Barnes79e53942008-11-07 14:24:08 -08005218
Chris Wilson71731882011-04-19 23:10:58 +01005219 return true;
Jesse Barnes79e53942008-11-07 14:24:08 -08005220}
5221
Zhenyu Wangc1c43972010-03-30 14:39:30 +08005222void intel_release_load_detect_pipe(struct intel_encoder *intel_encoder,
Chris Wilson8261b192011-04-19 23:18:09 +01005223 struct drm_connector *connector,
5224 struct intel_load_detect_pipe *old)
Jesse Barnes79e53942008-11-07 14:24:08 -08005225{
Chris Wilson4ef69c72010-09-09 15:14:28 +01005226 struct drm_encoder *encoder = &intel_encoder->base;
Jesse Barnes79e53942008-11-07 14:24:08 -08005227 struct drm_device *dev = encoder->dev;
5228 struct drm_crtc *crtc = encoder->crtc;
5229 struct drm_encoder_helper_funcs *encoder_funcs = encoder->helper_private;
5230 struct drm_crtc_helper_funcs *crtc_funcs = crtc->helper_private;
5231
Chris Wilsond2dff872011-04-19 08:36:26 +01005232 DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
5233 connector->base.id, drm_get_connector_name(connector),
5234 encoder->base.id, drm_get_encoder_name(encoder));
5235
Chris Wilson8261b192011-04-19 23:18:09 +01005236 if (old->load_detect_temp) {
Zhenyu Wangc1c43972010-03-30 14:39:30 +08005237 connector->encoder = NULL;
Jesse Barnes79e53942008-11-07 14:24:08 -08005238 drm_helper_disable_unused_functions(dev);
Chris Wilsond2dff872011-04-19 08:36:26 +01005239
5240 if (old->release_fb)
5241 old->release_fb->funcs->destroy(old->release_fb);
5242
Chris Wilson0622a532011-04-21 09:32:11 +01005243 return;
Jesse Barnes79e53942008-11-07 14:24:08 -08005244 }
5245
Eric Anholtc751ce42010-03-25 11:48:48 -07005246 /* Switch crtc and encoder back off if necessary */
Chris Wilson0622a532011-04-21 09:32:11 +01005247 if (old->dpms_mode != DRM_MODE_DPMS_ON) {
5248 encoder_funcs->dpms(encoder, old->dpms_mode);
Chris Wilson8261b192011-04-19 23:18:09 +01005249 crtc_funcs->dpms(crtc, old->dpms_mode);
Jesse Barnes79e53942008-11-07 14:24:08 -08005250 }
5251}
5252
5253/* Returns the clock of the currently programmed mode of the given pipe. */
5254static int intel_crtc_clock_get(struct drm_device *dev, struct drm_crtc *crtc)
5255{
5256 struct drm_i915_private *dev_priv = dev->dev_private;
5257 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5258 int pipe = intel_crtc->pipe;
Jesse Barnes548f2452011-02-17 10:40:53 -08005259 u32 dpll = I915_READ(DPLL(pipe));
Jesse Barnes79e53942008-11-07 14:24:08 -08005260 u32 fp;
5261 intel_clock_t clock;
5262
5263 if ((dpll & DISPLAY_RATE_SELECT_FPA1) == 0)
Chris Wilson39adb7a2011-04-22 22:17:21 +01005264 fp = I915_READ(FP0(pipe));
Jesse Barnes79e53942008-11-07 14:24:08 -08005265 else
Chris Wilson39adb7a2011-04-22 22:17:21 +01005266 fp = I915_READ(FP1(pipe));
Jesse Barnes79e53942008-11-07 14:24:08 -08005267
5268 clock.m1 = (fp & FP_M1_DIV_MASK) >> FP_M1_DIV_SHIFT;
Adam Jacksonf2b115e2009-12-03 17:14:42 -05005269 if (IS_PINEVIEW(dev)) {
5270 clock.n = ffs((fp & FP_N_PINEVIEW_DIV_MASK) >> FP_N_DIV_SHIFT) - 1;
5271 clock.m2 = (fp & FP_M2_PINEVIEW_DIV_MASK) >> FP_M2_DIV_SHIFT;
Shaohua Li21778322009-02-23 15:19:16 +08005272 } else {
5273 clock.n = (fp & FP_N_DIV_MASK) >> FP_N_DIV_SHIFT;
5274 clock.m2 = (fp & FP_M2_DIV_MASK) >> FP_M2_DIV_SHIFT;
5275 }
5276
Chris Wilsona6c45cf2010-09-17 00:32:17 +01005277 if (!IS_GEN2(dev)) {
Adam Jacksonf2b115e2009-12-03 17:14:42 -05005278 if (IS_PINEVIEW(dev))
5279 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_PINEVIEW) >>
5280 DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW);
Shaohua Li21778322009-02-23 15:19:16 +08005281 else
5282 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK) >>
Jesse Barnes79e53942008-11-07 14:24:08 -08005283 DPLL_FPA01_P1_POST_DIV_SHIFT);
5284
5285 switch (dpll & DPLL_MODE_MASK) {
5286 case DPLLB_MODE_DAC_SERIAL:
5287 clock.p2 = dpll & DPLL_DAC_SERIAL_P2_CLOCK_DIV_5 ?
5288 5 : 10;
5289 break;
5290 case DPLLB_MODE_LVDS:
5291 clock.p2 = dpll & DPLLB_LVDS_P2_CLOCK_DIV_7 ?
5292 7 : 14;
5293 break;
5294 default:
Zhao Yakui28c97732009-10-09 11:39:41 +08005295 DRM_DEBUG_KMS("Unknown DPLL mode %08x in programmed "
Jesse Barnes79e53942008-11-07 14:24:08 -08005296 "mode\n", (int)(dpll & DPLL_MODE_MASK));
5297 return 0;
5298 }
5299
5300 /* XXX: Handle the 100Mhz refclk */
Shaohua Li21778322009-02-23 15:19:16 +08005301 intel_clock(dev, 96000, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08005302 } else {
5303 bool is_lvds = (pipe == 1) && (I915_READ(LVDS) & LVDS_PORT_EN);
5304
5305 if (is_lvds) {
5306 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830_LVDS) >>
5307 DPLL_FPA01_P1_POST_DIV_SHIFT);
5308 clock.p2 = 14;
5309
5310 if ((dpll & PLL_REF_INPUT_MASK) ==
5311 PLLB_REF_INPUT_SPREADSPECTRUMIN) {
5312 /* XXX: might not be 66MHz */
Shaohua Li21778322009-02-23 15:19:16 +08005313 intel_clock(dev, 66000, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08005314 } else
Shaohua Li21778322009-02-23 15:19:16 +08005315 intel_clock(dev, 48000, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08005316 } else {
5317 if (dpll & PLL_P1_DIVIDE_BY_TWO)
5318 clock.p1 = 2;
5319 else {
5320 clock.p1 = ((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830) >>
5321 DPLL_FPA01_P1_POST_DIV_SHIFT) + 2;
5322 }
5323 if (dpll & PLL_P2_DIVIDE_BY_4)
5324 clock.p2 = 4;
5325 else
5326 clock.p2 = 2;
5327
Shaohua Li21778322009-02-23 15:19:16 +08005328 intel_clock(dev, 48000, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08005329 }
5330 }
5331
5332 /* XXX: It would be nice to validate the clocks, but we can't reuse
5333 * i830PllIsValid() because it relies on the xf86_config connector
5334 * configuration being accurate, which it isn't necessarily.
5335 */
5336
5337 return clock.dot;
5338}
5339
5340/** Returns the currently programmed mode of the given pipe. */
5341struct drm_display_mode *intel_crtc_mode_get(struct drm_device *dev,
5342 struct drm_crtc *crtc)
5343{
Jesse Barnes548f2452011-02-17 10:40:53 -08005344 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -08005345 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5346 int pipe = intel_crtc->pipe;
5347 struct drm_display_mode *mode;
Jesse Barnes548f2452011-02-17 10:40:53 -08005348 int htot = I915_READ(HTOTAL(pipe));
5349 int hsync = I915_READ(HSYNC(pipe));
5350 int vtot = I915_READ(VTOTAL(pipe));
5351 int vsync = I915_READ(VSYNC(pipe));
Jesse Barnes79e53942008-11-07 14:24:08 -08005352
5353 mode = kzalloc(sizeof(*mode), GFP_KERNEL);
5354 if (!mode)
5355 return NULL;
5356
5357 mode->clock = intel_crtc_clock_get(dev, crtc);
5358 mode->hdisplay = (htot & 0xffff) + 1;
5359 mode->htotal = ((htot & 0xffff0000) >> 16) + 1;
5360 mode->hsync_start = (hsync & 0xffff) + 1;
5361 mode->hsync_end = ((hsync & 0xffff0000) >> 16) + 1;
5362 mode->vdisplay = (vtot & 0xffff) + 1;
5363 mode->vtotal = ((vtot & 0xffff0000) >> 16) + 1;
5364 mode->vsync_start = (vsync & 0xffff) + 1;
5365 mode->vsync_end = ((vsync & 0xffff0000) >> 16) + 1;
5366
5367 drm_mode_set_name(mode);
Jesse Barnes79e53942008-11-07 14:24:08 -08005368
5369 return mode;
5370}
5371
Jesse Barnes652c3932009-08-17 13:31:43 -07005372#define GPU_IDLE_TIMEOUT 500 /* ms */
5373
5374/* When this timer fires, we've been idle for awhile */
5375static void intel_gpu_idle_timer(unsigned long arg)
5376{
5377 struct drm_device *dev = (struct drm_device *)arg;
5378 drm_i915_private_t *dev_priv = dev->dev_private;
5379
Chris Wilsonff7ea4c2010-12-08 09:43:41 +00005380 if (!list_empty(&dev_priv->mm.active_list)) {
5381 /* Still processing requests, so just re-arm the timer. */
5382 mod_timer(&dev_priv->idle_timer, jiffies +
5383 msecs_to_jiffies(GPU_IDLE_TIMEOUT));
5384 return;
5385 }
Jesse Barnes652c3932009-08-17 13:31:43 -07005386
Chris Wilsonff7ea4c2010-12-08 09:43:41 +00005387 dev_priv->busy = false;
Eric Anholt01dfba92009-09-06 15:18:53 -07005388 queue_work(dev_priv->wq, &dev_priv->idle_work);
Jesse Barnes652c3932009-08-17 13:31:43 -07005389}
5390
Jesse Barnes652c3932009-08-17 13:31:43 -07005391#define CRTC_IDLE_TIMEOUT 1000 /* ms */
5392
5393static void intel_crtc_idle_timer(unsigned long arg)
5394{
5395 struct intel_crtc *intel_crtc = (struct intel_crtc *)arg;
5396 struct drm_crtc *crtc = &intel_crtc->base;
5397 drm_i915_private_t *dev_priv = crtc->dev->dev_private;
Chris Wilsonff7ea4c2010-12-08 09:43:41 +00005398 struct intel_framebuffer *intel_fb;
5399
5400 intel_fb = to_intel_framebuffer(crtc->fb);
5401 if (intel_fb && intel_fb->obj->active) {
5402 /* The framebuffer is still being accessed by the GPU. */
5403 mod_timer(&intel_crtc->idle_timer, jiffies +
5404 msecs_to_jiffies(CRTC_IDLE_TIMEOUT));
5405 return;
5406 }
Jesse Barnes652c3932009-08-17 13:31:43 -07005407
Jesse Barnes652c3932009-08-17 13:31:43 -07005408 intel_crtc->busy = false;
Eric Anholt01dfba92009-09-06 15:18:53 -07005409 queue_work(dev_priv->wq, &dev_priv->idle_work);
Jesse Barnes652c3932009-08-17 13:31:43 -07005410}
5411
Daniel Vetter3dec0092010-08-20 21:40:52 +02005412static void intel_increase_pllclock(struct drm_crtc *crtc)
Jesse Barnes652c3932009-08-17 13:31:43 -07005413{
5414 struct drm_device *dev = crtc->dev;
5415 drm_i915_private_t *dev_priv = dev->dev_private;
5416 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5417 int pipe = intel_crtc->pipe;
Jesse Barnesdbdc6472010-12-30 09:36:39 -08005418 int dpll_reg = DPLL(pipe);
5419 int dpll;
Jesse Barnes652c3932009-08-17 13:31:43 -07005420
Eric Anholtbad720f2009-10-22 16:11:14 -07005421 if (HAS_PCH_SPLIT(dev))
Jesse Barnes652c3932009-08-17 13:31:43 -07005422 return;
5423
5424 if (!dev_priv->lvds_downclock_avail)
5425 return;
5426
Jesse Barnesdbdc6472010-12-30 09:36:39 -08005427 dpll = I915_READ(dpll_reg);
Jesse Barnes652c3932009-08-17 13:31:43 -07005428 if (!HAS_PIPE_CXSR(dev) && (dpll & DISPLAY_RATE_SELECT_FPA1)) {
Zhao Yakui44d98a62009-10-09 11:39:40 +08005429 DRM_DEBUG_DRIVER("upclocking LVDS\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07005430
Sean Paul8ac5a6d2012-02-13 13:14:51 -05005431 assert_panel_unlocked(dev_priv, pipe);
Jesse Barnes652c3932009-08-17 13:31:43 -07005432
5433 dpll &= ~DISPLAY_RATE_SELECT_FPA1;
5434 I915_WRITE(dpll_reg, dpll);
Jesse Barnes9d0498a2010-08-18 13:20:54 -07005435 intel_wait_for_vblank(dev, pipe);
Jesse Barnesdbdc6472010-12-30 09:36:39 -08005436
Jesse Barnes652c3932009-08-17 13:31:43 -07005437 dpll = I915_READ(dpll_reg);
5438 if (dpll & DISPLAY_RATE_SELECT_FPA1)
Zhao Yakui44d98a62009-10-09 11:39:40 +08005439 DRM_DEBUG_DRIVER("failed to upclock LVDS!\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07005440 }
5441
5442 /* Schedule downclock */
Daniel Vetter3dec0092010-08-20 21:40:52 +02005443 mod_timer(&intel_crtc->idle_timer, jiffies +
5444 msecs_to_jiffies(CRTC_IDLE_TIMEOUT));
Jesse Barnes652c3932009-08-17 13:31:43 -07005445}
5446
5447static void intel_decrease_pllclock(struct drm_crtc *crtc)
5448{
5449 struct drm_device *dev = crtc->dev;
5450 drm_i915_private_t *dev_priv = dev->dev_private;
5451 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes652c3932009-08-17 13:31:43 -07005452
Eric Anholtbad720f2009-10-22 16:11:14 -07005453 if (HAS_PCH_SPLIT(dev))
Jesse Barnes652c3932009-08-17 13:31:43 -07005454 return;
5455
5456 if (!dev_priv->lvds_downclock_avail)
5457 return;
5458
5459 /*
5460 * Since this is called by a timer, we should never get here in
5461 * the manual case.
5462 */
5463 if (!HAS_PIPE_CXSR(dev) && intel_crtc->lowfreq_avail) {
Chris Wilson074b5e12012-05-02 12:07:06 +01005464 int pipe = intel_crtc->pipe;
5465 int dpll_reg = DPLL(pipe);
Daniel Vetterdc257cf2012-05-07 11:30:46 +02005466 int dpll;
Chris Wilson074b5e12012-05-02 12:07:06 +01005467
Zhao Yakui44d98a62009-10-09 11:39:40 +08005468 DRM_DEBUG_DRIVER("downclocking LVDS\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07005469
Sean Paul8ac5a6d2012-02-13 13:14:51 -05005470 assert_panel_unlocked(dev_priv, pipe);
Jesse Barnes652c3932009-08-17 13:31:43 -07005471
Chris Wilson074b5e12012-05-02 12:07:06 +01005472 dpll = I915_READ(dpll_reg);
Jesse Barnes652c3932009-08-17 13:31:43 -07005473 dpll |= DISPLAY_RATE_SELECT_FPA1;
5474 I915_WRITE(dpll_reg, dpll);
Jesse Barnes9d0498a2010-08-18 13:20:54 -07005475 intel_wait_for_vblank(dev, pipe);
Jesse Barnes652c3932009-08-17 13:31:43 -07005476 dpll = I915_READ(dpll_reg);
5477 if (!(dpll & DISPLAY_RATE_SELECT_FPA1))
Zhao Yakui44d98a62009-10-09 11:39:40 +08005478 DRM_DEBUG_DRIVER("failed to downclock LVDS!\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07005479 }
5480
5481}
5482
5483/**
5484 * intel_idle_update - adjust clocks for idleness
5485 * @work: work struct
5486 *
5487 * Either the GPU or display (or both) went idle. Check the busy status
5488 * here and adjust the CRTC and GPU clocks as necessary.
5489 */
5490static void intel_idle_update(struct work_struct *work)
5491{
5492 drm_i915_private_t *dev_priv = container_of(work, drm_i915_private_t,
5493 idle_work);
5494 struct drm_device *dev = dev_priv->dev;
5495 struct drm_crtc *crtc;
5496 struct intel_crtc *intel_crtc;
5497
5498 if (!i915_powersave)
5499 return;
5500
5501 mutex_lock(&dev->struct_mutex);
5502
Jesse Barnes7648fa92010-05-20 14:28:11 -07005503 i915_update_gfx_val(dev_priv);
5504
Jesse Barnes652c3932009-08-17 13:31:43 -07005505 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
5506 /* Skip inactive CRTCs */
5507 if (!crtc->fb)
5508 continue;
5509
5510 intel_crtc = to_intel_crtc(crtc);
5511 if (!intel_crtc->busy)
5512 intel_decrease_pllclock(crtc);
5513 }
5514
Li Peng45ac22c2010-06-12 23:38:35 +08005515
Jesse Barnes652c3932009-08-17 13:31:43 -07005516 mutex_unlock(&dev->struct_mutex);
5517}
5518
5519/**
5520 * intel_mark_busy - mark the GPU and possibly the display busy
5521 * @dev: drm device
5522 * @obj: object we're operating on
5523 *
5524 * Callers can use this function to indicate that the GPU is busy processing
5525 * commands. If @obj matches one of the CRTC objects (i.e. it's a scanout
5526 * buffer), we'll also mark the display as busy, so we know to increase its
5527 * clock frequency.
5528 */
Chris Wilson05394f32010-11-08 19:18:58 +00005529void intel_mark_busy(struct drm_device *dev, struct drm_i915_gem_object *obj)
Jesse Barnes652c3932009-08-17 13:31:43 -07005530{
5531 drm_i915_private_t *dev_priv = dev->dev_private;
5532 struct drm_crtc *crtc = NULL;
5533 struct intel_framebuffer *intel_fb;
5534 struct intel_crtc *intel_crtc;
5535
Zhenyu Wang5e17ee72009-09-03 09:30:06 +08005536 if (!drm_core_check_feature(dev, DRIVER_MODESET))
5537 return;
5538
Chris Wilson91041832012-04-26 11:28:42 +01005539 if (!dev_priv->busy) {
5540 intel_sanitize_pm(dev);
Chris Wilson28cf7982009-11-30 01:08:56 +00005541 dev_priv->busy = true;
Chris Wilson91041832012-04-26 11:28:42 +01005542 } else
Chris Wilson28cf7982009-11-30 01:08:56 +00005543 mod_timer(&dev_priv->idle_timer, jiffies +
5544 msecs_to_jiffies(GPU_IDLE_TIMEOUT));
Jesse Barnes652c3932009-08-17 13:31:43 -07005545
5546 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
5547 if (!crtc->fb)
5548 continue;
5549
5550 intel_crtc = to_intel_crtc(crtc);
5551 intel_fb = to_intel_framebuffer(crtc->fb);
5552 if (intel_fb->obj == obj) {
5553 if (!intel_crtc->busy) {
5554 /* Non-busy -> busy, upclock */
Daniel Vetter3dec0092010-08-20 21:40:52 +02005555 intel_increase_pllclock(crtc);
Jesse Barnes652c3932009-08-17 13:31:43 -07005556 intel_crtc->busy = true;
5557 } else {
5558 /* Busy -> busy, put off timer */
5559 mod_timer(&intel_crtc->idle_timer, jiffies +
5560 msecs_to_jiffies(CRTC_IDLE_TIMEOUT));
5561 }
5562 }
5563 }
5564}
5565
Jesse Barnes79e53942008-11-07 14:24:08 -08005566static void intel_crtc_destroy(struct drm_crtc *crtc)
5567{
5568 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter67e77c52010-08-20 22:26:30 +02005569 struct drm_device *dev = crtc->dev;
5570 struct intel_unpin_work *work;
5571 unsigned long flags;
5572
5573 spin_lock_irqsave(&dev->event_lock, flags);
5574 work = intel_crtc->unpin_work;
5575 intel_crtc->unpin_work = NULL;
5576 spin_unlock_irqrestore(&dev->event_lock, flags);
5577
5578 if (work) {
5579 cancel_work_sync(&work->work);
5580 kfree(work);
5581 }
Jesse Barnes79e53942008-11-07 14:24:08 -08005582
5583 drm_crtc_cleanup(crtc);
Daniel Vetter67e77c52010-08-20 22:26:30 +02005584
Jesse Barnes79e53942008-11-07 14:24:08 -08005585 kfree(intel_crtc);
5586}
5587
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005588static void intel_unpin_work_fn(struct work_struct *__work)
5589{
5590 struct intel_unpin_work *work =
5591 container_of(__work, struct intel_unpin_work, work);
5592
5593 mutex_lock(&work->dev->struct_mutex);
Chris Wilson1690e1e2011-12-14 13:57:08 +01005594 intel_unpin_fb_obj(work->old_fb_obj);
Chris Wilson05394f32010-11-08 19:18:58 +00005595 drm_gem_object_unreference(&work->pending_flip_obj->base);
5596 drm_gem_object_unreference(&work->old_fb_obj->base);
Chris Wilsond9e86c02010-11-10 16:40:20 +00005597
Chris Wilson7782de32011-07-08 12:22:41 +01005598 intel_update_fbc(work->dev);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005599 mutex_unlock(&work->dev->struct_mutex);
5600 kfree(work);
5601}
5602
Jesse Barnes1afe3e92010-03-26 10:35:20 -07005603static void do_intel_finish_page_flip(struct drm_device *dev,
Mario Kleiner49b14a52010-12-09 07:00:07 +01005604 struct drm_crtc *crtc)
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005605{
5606 drm_i915_private_t *dev_priv = dev->dev_private;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005607 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5608 struct intel_unpin_work *work;
Chris Wilson05394f32010-11-08 19:18:58 +00005609 struct drm_i915_gem_object *obj;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005610 struct drm_pending_vblank_event *e;
Mario Kleiner49b14a52010-12-09 07:00:07 +01005611 struct timeval tnow, tvbl;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005612 unsigned long flags;
5613
5614 /* Ignore early vblank irqs */
5615 if (intel_crtc == NULL)
5616 return;
5617
Mario Kleiner49b14a52010-12-09 07:00:07 +01005618 do_gettimeofday(&tnow);
5619
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005620 spin_lock_irqsave(&dev->event_lock, flags);
5621 work = intel_crtc->unpin_work;
5622 if (work == NULL || !work->pending) {
5623 spin_unlock_irqrestore(&dev->event_lock, flags);
5624 return;
5625 }
5626
5627 intel_crtc->unpin_work = NULL;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005628
5629 if (work->event) {
5630 e = work->event;
Mario Kleiner49b14a52010-12-09 07:00:07 +01005631 e->event.sequence = drm_vblank_count_and_time(dev, intel_crtc->pipe, &tvbl);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +01005632
5633 /* Called before vblank count and timestamps have
5634 * been updated for the vblank interval of flip
5635 * completion? Need to increment vblank count and
5636 * add one videorefresh duration to returned timestamp
Mario Kleiner49b14a52010-12-09 07:00:07 +01005637 * to account for this. We assume this happened if we
5638 * get called over 0.9 frame durations after the last
5639 * timestamped vblank.
5640 *
5641 * This calculation can not be used with vrefresh rates
5642 * below 5Hz (10Hz to be on the safe side) without
5643 * promoting to 64 integers.
Mario Kleiner0af7e4d2010-12-08 04:07:19 +01005644 */
Mario Kleiner49b14a52010-12-09 07:00:07 +01005645 if (10 * (timeval_to_ns(&tnow) - timeval_to_ns(&tvbl)) >
5646 9 * crtc->framedur_ns) {
Mario Kleiner0af7e4d2010-12-08 04:07:19 +01005647 e->event.sequence++;
Mario Kleiner49b14a52010-12-09 07:00:07 +01005648 tvbl = ns_to_timeval(timeval_to_ns(&tvbl) +
5649 crtc->framedur_ns);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +01005650 }
5651
Mario Kleiner49b14a52010-12-09 07:00:07 +01005652 e->event.tv_sec = tvbl.tv_sec;
5653 e->event.tv_usec = tvbl.tv_usec;
Mario Kleiner0af7e4d2010-12-08 04:07:19 +01005654
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005655 list_add_tail(&e->base.link,
5656 &e->base.file_priv->event_list);
5657 wake_up_interruptible(&e->base.file_priv->event_wait);
5658 }
5659
Mario Kleiner0af7e4d2010-12-08 04:07:19 +01005660 drm_vblank_put(dev, intel_crtc->pipe);
5661
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005662 spin_unlock_irqrestore(&dev->event_lock, flags);
5663
Chris Wilson05394f32010-11-08 19:18:58 +00005664 obj = work->old_fb_obj;
Chris Wilsond9e86c02010-11-10 16:40:20 +00005665
Chris Wilsone59f2ba2010-10-07 17:28:15 +01005666 atomic_clear_mask(1 << intel_crtc->plane,
Chris Wilson05394f32010-11-08 19:18:58 +00005667 &obj->pending_flip.counter);
5668 if (atomic_read(&obj->pending_flip) == 0)
Chris Wilsonf787a5f2010-09-24 16:02:42 +01005669 wake_up(&dev_priv->pending_flip_queue);
Chris Wilsond9e86c02010-11-10 16:40:20 +00005670
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005671 schedule_work(&work->work);
Jesse Barnese5510fa2010-07-01 16:48:37 -07005672
5673 trace_i915_flip_complete(intel_crtc->plane, work->pending_flip_obj);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005674}
5675
Jesse Barnes1afe3e92010-03-26 10:35:20 -07005676void intel_finish_page_flip(struct drm_device *dev, int pipe)
5677{
5678 drm_i915_private_t *dev_priv = dev->dev_private;
5679 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
5680
Mario Kleiner49b14a52010-12-09 07:00:07 +01005681 do_intel_finish_page_flip(dev, crtc);
Jesse Barnes1afe3e92010-03-26 10:35:20 -07005682}
5683
5684void intel_finish_page_flip_plane(struct drm_device *dev, int plane)
5685{
5686 drm_i915_private_t *dev_priv = dev->dev_private;
5687 struct drm_crtc *crtc = dev_priv->plane_to_crtc_mapping[plane];
5688
Mario Kleiner49b14a52010-12-09 07:00:07 +01005689 do_intel_finish_page_flip(dev, crtc);
Jesse Barnes1afe3e92010-03-26 10:35:20 -07005690}
5691
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005692void intel_prepare_page_flip(struct drm_device *dev, int plane)
5693{
5694 drm_i915_private_t *dev_priv = dev->dev_private;
5695 struct intel_crtc *intel_crtc =
5696 to_intel_crtc(dev_priv->plane_to_crtc_mapping[plane]);
5697 unsigned long flags;
5698
5699 spin_lock_irqsave(&dev->event_lock, flags);
Jesse Barnesde3f4402010-01-14 13:18:02 -08005700 if (intel_crtc->unpin_work) {
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01005701 if ((++intel_crtc->unpin_work->pending) > 1)
5702 DRM_ERROR("Prepared flip multiple times\n");
Jesse Barnesde3f4402010-01-14 13:18:02 -08005703 } else {
5704 DRM_DEBUG_DRIVER("preparing flip with no unpin work?\n");
5705 }
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005706 spin_unlock_irqrestore(&dev->event_lock, flags);
5707}
5708
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07005709static int intel_gen2_queue_flip(struct drm_device *dev,
5710 struct drm_crtc *crtc,
5711 struct drm_framebuffer *fb,
5712 struct drm_i915_gem_object *obj)
5713{
5714 struct drm_i915_private *dev_priv = dev->dev_private;
5715 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5716 unsigned long offset;
5717 u32 flip_mask;
Daniel Vetter6d90c952012-04-26 23:28:05 +02005718 struct intel_ring_buffer *ring = &dev_priv->ring[RCS];
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07005719 int ret;
5720
Daniel Vetter6d90c952012-04-26 23:28:05 +02005721 ret = intel_pin_and_fence_fb_obj(dev, obj, ring);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07005722 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01005723 goto err;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07005724
5725 /* Offset into the new buffer for cases of shared fbs between CRTCs */
Ville Syrjälä01f2c772011-12-20 00:06:49 +02005726 offset = crtc->y * fb->pitches[0] + crtc->x * fb->bits_per_pixel/8;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07005727
Daniel Vetter6d90c952012-04-26 23:28:05 +02005728 ret = intel_ring_begin(ring, 6);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07005729 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01005730 goto err_unpin;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07005731
5732 /* Can't queue multiple flips, so wait for the previous
5733 * one to finish before executing the next.
5734 */
5735 if (intel_crtc->plane)
5736 flip_mask = MI_WAIT_FOR_PLANE_B_FLIP;
5737 else
5738 flip_mask = MI_WAIT_FOR_PLANE_A_FLIP;
Daniel Vetter6d90c952012-04-26 23:28:05 +02005739 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | flip_mask);
5740 intel_ring_emit(ring, MI_NOOP);
5741 intel_ring_emit(ring, MI_DISPLAY_FLIP |
5742 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
5743 intel_ring_emit(ring, fb->pitches[0]);
5744 intel_ring_emit(ring, obj->gtt_offset + offset);
5745 intel_ring_emit(ring, 0); /* aux display base address, unused */
5746 intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01005747 return 0;
5748
5749err_unpin:
5750 intel_unpin_fb_obj(obj);
5751err:
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07005752 return ret;
5753}
5754
5755static int intel_gen3_queue_flip(struct drm_device *dev,
5756 struct drm_crtc *crtc,
5757 struct drm_framebuffer *fb,
5758 struct drm_i915_gem_object *obj)
5759{
5760 struct drm_i915_private *dev_priv = dev->dev_private;
5761 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5762 unsigned long offset;
5763 u32 flip_mask;
Daniel Vetter6d90c952012-04-26 23:28:05 +02005764 struct intel_ring_buffer *ring = &dev_priv->ring[RCS];
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07005765 int ret;
5766
Daniel Vetter6d90c952012-04-26 23:28:05 +02005767 ret = intel_pin_and_fence_fb_obj(dev, obj, ring);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07005768 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01005769 goto err;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07005770
5771 /* Offset into the new buffer for cases of shared fbs between CRTCs */
Ville Syrjälä01f2c772011-12-20 00:06:49 +02005772 offset = crtc->y * fb->pitches[0] + crtc->x * fb->bits_per_pixel/8;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07005773
Daniel Vetter6d90c952012-04-26 23:28:05 +02005774 ret = intel_ring_begin(ring, 6);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07005775 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01005776 goto err_unpin;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07005777
5778 if (intel_crtc->plane)
5779 flip_mask = MI_WAIT_FOR_PLANE_B_FLIP;
5780 else
5781 flip_mask = MI_WAIT_FOR_PLANE_A_FLIP;
Daniel Vetter6d90c952012-04-26 23:28:05 +02005782 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | flip_mask);
5783 intel_ring_emit(ring, MI_NOOP);
5784 intel_ring_emit(ring, MI_DISPLAY_FLIP_I915 |
5785 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
5786 intel_ring_emit(ring, fb->pitches[0]);
5787 intel_ring_emit(ring, obj->gtt_offset + offset);
5788 intel_ring_emit(ring, MI_NOOP);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07005789
Daniel Vetter6d90c952012-04-26 23:28:05 +02005790 intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01005791 return 0;
5792
5793err_unpin:
5794 intel_unpin_fb_obj(obj);
5795err:
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07005796 return ret;
5797}
5798
5799static int intel_gen4_queue_flip(struct drm_device *dev,
5800 struct drm_crtc *crtc,
5801 struct drm_framebuffer *fb,
5802 struct drm_i915_gem_object *obj)
5803{
5804 struct drm_i915_private *dev_priv = dev->dev_private;
5805 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5806 uint32_t pf, pipesrc;
Daniel Vetter6d90c952012-04-26 23:28:05 +02005807 struct intel_ring_buffer *ring = &dev_priv->ring[RCS];
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07005808 int ret;
5809
Daniel Vetter6d90c952012-04-26 23:28:05 +02005810 ret = intel_pin_and_fence_fb_obj(dev, obj, ring);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07005811 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01005812 goto err;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07005813
Daniel Vetter6d90c952012-04-26 23:28:05 +02005814 ret = intel_ring_begin(ring, 4);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07005815 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01005816 goto err_unpin;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07005817
5818 /* i965+ uses the linear or tiled offsets from the
5819 * Display Registers (which do not change across a page-flip)
5820 * so we need only reprogram the base address.
5821 */
Daniel Vetter6d90c952012-04-26 23:28:05 +02005822 intel_ring_emit(ring, MI_DISPLAY_FLIP |
5823 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
5824 intel_ring_emit(ring, fb->pitches[0]);
5825 intel_ring_emit(ring, obj->gtt_offset | obj->tiling_mode);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07005826
5827 /* XXX Enabling the panel-fitter across page-flip is so far
5828 * untested on non-native modes, so ignore it for now.
5829 * pf = I915_READ(pipe == 0 ? PFA_CTL_1 : PFB_CTL_1) & PF_ENABLE;
5830 */
5831 pf = 0;
5832 pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff;
Daniel Vetter6d90c952012-04-26 23:28:05 +02005833 intel_ring_emit(ring, pf | pipesrc);
5834 intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01005835 return 0;
5836
5837err_unpin:
5838 intel_unpin_fb_obj(obj);
5839err:
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07005840 return ret;
5841}
5842
5843static int intel_gen6_queue_flip(struct drm_device *dev,
5844 struct drm_crtc *crtc,
5845 struct drm_framebuffer *fb,
5846 struct drm_i915_gem_object *obj)
5847{
5848 struct drm_i915_private *dev_priv = dev->dev_private;
5849 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter6d90c952012-04-26 23:28:05 +02005850 struct intel_ring_buffer *ring = &dev_priv->ring[RCS];
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07005851 uint32_t pf, pipesrc;
5852 int ret;
5853
Daniel Vetter6d90c952012-04-26 23:28:05 +02005854 ret = intel_pin_and_fence_fb_obj(dev, obj, ring);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07005855 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01005856 goto err;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07005857
Daniel Vetter6d90c952012-04-26 23:28:05 +02005858 ret = intel_ring_begin(ring, 4);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07005859 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01005860 goto err_unpin;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07005861
Daniel Vetter6d90c952012-04-26 23:28:05 +02005862 intel_ring_emit(ring, MI_DISPLAY_FLIP |
5863 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
5864 intel_ring_emit(ring, fb->pitches[0] | obj->tiling_mode);
5865 intel_ring_emit(ring, obj->gtt_offset);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07005866
Chris Wilson99d9acd2012-04-17 20:37:00 +01005867 /* Contrary to the suggestions in the documentation,
5868 * "Enable Panel Fitter" does not seem to be required when page
5869 * flipping with a non-native mode, and worse causes a normal
5870 * modeset to fail.
5871 * pf = I915_READ(PF_CTL(intel_crtc->pipe)) & PF_ENABLE;
5872 */
5873 pf = 0;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07005874 pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff;
Daniel Vetter6d90c952012-04-26 23:28:05 +02005875 intel_ring_emit(ring, pf | pipesrc);
5876 intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01005877 return 0;
5878
5879err_unpin:
5880 intel_unpin_fb_obj(obj);
5881err:
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07005882 return ret;
5883}
5884
Jesse Barnes7c9017e2011-06-16 12:18:54 -07005885/*
5886 * On gen7 we currently use the blit ring because (in early silicon at least)
5887 * the render ring doesn't give us interrpts for page flip completion, which
5888 * means clients will hang after the first flip is queued. Fortunately the
5889 * blit ring generates interrupts properly, so use it instead.
5890 */
5891static int intel_gen7_queue_flip(struct drm_device *dev,
5892 struct drm_crtc *crtc,
5893 struct drm_framebuffer *fb,
5894 struct drm_i915_gem_object *obj)
5895{
5896 struct drm_i915_private *dev_priv = dev->dev_private;
5897 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5898 struct intel_ring_buffer *ring = &dev_priv->ring[BCS];
5899 int ret;
5900
5901 ret = intel_pin_and_fence_fb_obj(dev, obj, ring);
5902 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01005903 goto err;
Jesse Barnes7c9017e2011-06-16 12:18:54 -07005904
5905 ret = intel_ring_begin(ring, 4);
5906 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01005907 goto err_unpin;
Jesse Barnes7c9017e2011-06-16 12:18:54 -07005908
5909 intel_ring_emit(ring, MI_DISPLAY_FLIP_I915 | (intel_crtc->plane << 19));
Ville Syrjälä01f2c772011-12-20 00:06:49 +02005910 intel_ring_emit(ring, (fb->pitches[0] | obj->tiling_mode));
Jesse Barnes7c9017e2011-06-16 12:18:54 -07005911 intel_ring_emit(ring, (obj->gtt_offset));
5912 intel_ring_emit(ring, (MI_NOOP));
5913 intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01005914 return 0;
5915
5916err_unpin:
5917 intel_unpin_fb_obj(obj);
5918err:
Jesse Barnes7c9017e2011-06-16 12:18:54 -07005919 return ret;
5920}
5921
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07005922static int intel_default_queue_flip(struct drm_device *dev,
5923 struct drm_crtc *crtc,
5924 struct drm_framebuffer *fb,
5925 struct drm_i915_gem_object *obj)
5926{
5927 return -ENODEV;
5928}
5929
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005930static int intel_crtc_page_flip(struct drm_crtc *crtc,
5931 struct drm_framebuffer *fb,
5932 struct drm_pending_vblank_event *event)
5933{
5934 struct drm_device *dev = crtc->dev;
5935 struct drm_i915_private *dev_priv = dev->dev_private;
5936 struct intel_framebuffer *intel_fb;
Chris Wilson05394f32010-11-08 19:18:58 +00005937 struct drm_i915_gem_object *obj;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005938 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5939 struct intel_unpin_work *work;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07005940 unsigned long flags;
Chris Wilson52e68632010-08-08 10:15:59 +01005941 int ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005942
5943 work = kzalloc(sizeof *work, GFP_KERNEL);
5944 if (work == NULL)
5945 return -ENOMEM;
5946
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005947 work->event = event;
5948 work->dev = crtc->dev;
5949 intel_fb = to_intel_framebuffer(crtc->fb);
Jesse Barnesb1b87f62010-01-26 14:40:05 -08005950 work->old_fb_obj = intel_fb->obj;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005951 INIT_WORK(&work->work, intel_unpin_work_fn);
5952
Jesse Barnes7317c75e62011-08-29 09:45:28 -07005953 ret = drm_vblank_get(dev, intel_crtc->pipe);
5954 if (ret)
5955 goto free_work;
5956
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005957 /* We borrow the event spin lock for protecting unpin_work */
5958 spin_lock_irqsave(&dev->event_lock, flags);
5959 if (intel_crtc->unpin_work) {
5960 spin_unlock_irqrestore(&dev->event_lock, flags);
5961 kfree(work);
Jesse Barnes7317c75e62011-08-29 09:45:28 -07005962 drm_vblank_put(dev, intel_crtc->pipe);
Chris Wilson468f0b42010-05-27 13:18:13 +01005963
5964 DRM_DEBUG_DRIVER("flip queue: crtc already busy\n");
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005965 return -EBUSY;
5966 }
5967 intel_crtc->unpin_work = work;
5968 spin_unlock_irqrestore(&dev->event_lock, flags);
5969
5970 intel_fb = to_intel_framebuffer(fb);
5971 obj = intel_fb->obj;
5972
Chris Wilson468f0b42010-05-27 13:18:13 +01005973 mutex_lock(&dev->struct_mutex);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005974
Jesse Barnes75dfca82010-02-10 15:09:44 -08005975 /* Reference the objects for the scheduled work. */
Chris Wilson05394f32010-11-08 19:18:58 +00005976 drm_gem_object_reference(&work->old_fb_obj->base);
5977 drm_gem_object_reference(&obj->base);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005978
5979 crtc->fb = fb;
Chris Wilson96b099f2010-06-07 14:03:04 +01005980
Chris Wilsone1f99ce2010-10-27 12:45:26 +01005981 work->pending_flip_obj = obj;
Chris Wilsone1f99ce2010-10-27 12:45:26 +01005982
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01005983 work->enable_stall_check = true;
5984
Chris Wilsone1f99ce2010-10-27 12:45:26 +01005985 /* Block clients from rendering to the new back buffer until
5986 * the flip occurs and the object is no longer visible.
5987 */
Chris Wilson05394f32010-11-08 19:18:58 +00005988 atomic_add(1 << intel_crtc->plane, &work->old_fb_obj->pending_flip);
Chris Wilsone1f99ce2010-10-27 12:45:26 +01005989
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07005990 ret = dev_priv->display.queue_flip(dev, crtc, fb, obj);
5991 if (ret)
5992 goto cleanup_pending;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005993
Chris Wilson7782de32011-07-08 12:22:41 +01005994 intel_disable_fbc(dev);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005995 mutex_unlock(&dev->struct_mutex);
5996
Jesse Barnese5510fa2010-07-01 16:48:37 -07005997 trace_i915_flip_request(intel_crtc->plane, obj);
5998
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005999 return 0;
Chris Wilson96b099f2010-06-07 14:03:04 +01006000
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006001cleanup_pending:
6002 atomic_sub(1 << intel_crtc->plane, &work->old_fb_obj->pending_flip);
Chris Wilson05394f32010-11-08 19:18:58 +00006003 drm_gem_object_unreference(&work->old_fb_obj->base);
6004 drm_gem_object_unreference(&obj->base);
Chris Wilson96b099f2010-06-07 14:03:04 +01006005 mutex_unlock(&dev->struct_mutex);
6006
6007 spin_lock_irqsave(&dev->event_lock, flags);
6008 intel_crtc->unpin_work = NULL;
6009 spin_unlock_irqrestore(&dev->event_lock, flags);
6010
Jesse Barnes7317c75e62011-08-29 09:45:28 -07006011 drm_vblank_put(dev, intel_crtc->pipe);
6012free_work:
Chris Wilson96b099f2010-06-07 14:03:04 +01006013 kfree(work);
6014
6015 return ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006016}
6017
Chris Wilson47f1c6c2010-12-03 15:37:31 +00006018static void intel_sanitize_modesetting(struct drm_device *dev,
6019 int pipe, int plane)
6020{
6021 struct drm_i915_private *dev_priv = dev->dev_private;
6022 u32 reg, val;
6023
Chris Wilsonf47166d2012-03-22 15:00:50 +00006024 /* Clear any frame start delays used for debugging left by the BIOS */
6025 for_each_pipe(pipe) {
6026 reg = PIPECONF(pipe);
6027 I915_WRITE(reg, I915_READ(reg) & ~PIPECONF_FRAME_START_DELAY_MASK);
6028 }
6029
Chris Wilson47f1c6c2010-12-03 15:37:31 +00006030 if (HAS_PCH_SPLIT(dev))
6031 return;
6032
6033 /* Who knows what state these registers were left in by the BIOS or
6034 * grub?
6035 *
6036 * If we leave the registers in a conflicting state (e.g. with the
6037 * display plane reading from the other pipe than the one we intend
6038 * to use) then when we attempt to teardown the active mode, we will
6039 * not disable the pipes and planes in the correct order -- leaving
6040 * a plane reading from a disabled pipe and possibly leading to
6041 * undefined behaviour.
6042 */
6043
6044 reg = DSPCNTR(plane);
6045 val = I915_READ(reg);
6046
6047 if ((val & DISPLAY_PLANE_ENABLE) == 0)
6048 return;
6049 if (!!(val & DISPPLANE_SEL_PIPE_MASK) == pipe)
6050 return;
6051
6052 /* This display plane is active and attached to the other CPU pipe. */
6053 pipe = !pipe;
6054
6055 /* Disable the plane and wait for it to stop reading from the pipe. */
Jesse Barnesb24e7172011-01-04 15:09:30 -08006056 intel_disable_plane(dev_priv, plane, pipe);
6057 intel_disable_pipe(dev_priv, pipe);
Chris Wilson47f1c6c2010-12-03 15:37:31 +00006058}
Jesse Barnes79e53942008-11-07 14:24:08 -08006059
Chris Wilsonf6e5b162011-04-12 18:06:51 +01006060static void intel_crtc_reset(struct drm_crtc *crtc)
6061{
6062 struct drm_device *dev = crtc->dev;
6063 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6064
6065 /* Reset flags back to the 'unknown' status so that they
6066 * will be correctly set on the initial modeset.
6067 */
6068 intel_crtc->dpms_mode = -1;
6069
6070 /* We need to fix up any BIOS configuration that conflicts with
6071 * our expectations.
6072 */
6073 intel_sanitize_modesetting(dev, intel_crtc->pipe, intel_crtc->plane);
6074}
6075
6076static struct drm_crtc_helper_funcs intel_helper_funcs = {
6077 .dpms = intel_crtc_dpms,
6078 .mode_fixup = intel_crtc_mode_fixup,
6079 .mode_set = intel_crtc_mode_set,
6080 .mode_set_base = intel_pipe_set_base,
6081 .mode_set_base_atomic = intel_pipe_set_base_atomic,
6082 .load_lut = intel_crtc_load_lut,
6083 .disable = intel_crtc_disable,
6084};
6085
6086static const struct drm_crtc_funcs intel_crtc_funcs = {
6087 .reset = intel_crtc_reset,
6088 .cursor_set = intel_crtc_cursor_set,
6089 .cursor_move = intel_crtc_cursor_move,
6090 .gamma_set = intel_crtc_gamma_set,
6091 .set_config = drm_crtc_helper_set_config,
6092 .destroy = intel_crtc_destroy,
6093 .page_flip = intel_crtc_page_flip,
6094};
6095
Jesse Barnesee7b9f92012-04-20 17:11:53 +01006096static void intel_pch_pll_init(struct drm_device *dev)
6097{
6098 drm_i915_private_t *dev_priv = dev->dev_private;
6099 int i;
6100
6101 if (dev_priv->num_pch_pll == 0) {
6102 DRM_DEBUG_KMS("No PCH PLLs on this hardware, skipping initialisation\n");
6103 return;
6104 }
6105
6106 for (i = 0; i < dev_priv->num_pch_pll; i++) {
6107 dev_priv->pch_plls[i].pll_reg = _PCH_DPLL(i);
6108 dev_priv->pch_plls[i].fp0_reg = _PCH_FP0(i);
6109 dev_priv->pch_plls[i].fp1_reg = _PCH_FP1(i);
6110 }
6111}
6112
Hannes Ederb358d0a2008-12-18 21:18:47 +01006113static void intel_crtc_init(struct drm_device *dev, int pipe)
Jesse Barnes79e53942008-11-07 14:24:08 -08006114{
Jesse Barnes22fd0fa2009-12-02 13:42:53 -08006115 drm_i915_private_t *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -08006116 struct intel_crtc *intel_crtc;
6117 int i;
6118
6119 intel_crtc = kzalloc(sizeof(struct intel_crtc) + (INTELFB_CONN_LIMIT * sizeof(struct drm_connector *)), GFP_KERNEL);
6120 if (intel_crtc == NULL)
6121 return;
6122
6123 drm_crtc_init(dev, &intel_crtc->base, &intel_crtc_funcs);
6124
6125 drm_mode_crtc_set_gamma_size(&intel_crtc->base, 256);
Jesse Barnes79e53942008-11-07 14:24:08 -08006126 for (i = 0; i < 256; i++) {
6127 intel_crtc->lut_r[i] = i;
6128 intel_crtc->lut_g[i] = i;
6129 intel_crtc->lut_b[i] = i;
6130 }
6131
Jesse Barnes80824002009-09-10 15:28:06 -07006132 /* Swap pipes & planes for FBC on pre-965 */
6133 intel_crtc->pipe = pipe;
6134 intel_crtc->plane = pipe;
Chris Wilsone2e767a2010-09-13 16:53:12 +01006135 if (IS_MOBILE(dev) && IS_GEN3(dev)) {
Zhao Yakui28c97732009-10-09 11:39:41 +08006136 DRM_DEBUG_KMS("swapping pipes & planes for FBC\n");
Chris Wilsone2e767a2010-09-13 16:53:12 +01006137 intel_crtc->plane = !pipe;
Jesse Barnes80824002009-09-10 15:28:06 -07006138 }
6139
Jesse Barnes22fd0fa2009-12-02 13:42:53 -08006140 BUG_ON(pipe >= ARRAY_SIZE(dev_priv->plane_to_crtc_mapping) ||
6141 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] != NULL);
6142 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] = &intel_crtc->base;
6143 dev_priv->pipe_to_crtc_mapping[intel_crtc->pipe] = &intel_crtc->base;
6144
Chris Wilson5d1d0cc2011-01-24 15:02:15 +00006145 intel_crtc_reset(&intel_crtc->base);
Chris Wilson04dbff52011-02-10 17:38:35 +00006146 intel_crtc->active = true; /* force the pipe off on setup_init_config */
Jesse Barnes5a354202011-06-24 12:19:22 -07006147 intel_crtc->bpp = 24; /* default for pre-Ironlake */
Jesse Barnes7e7d76c2010-09-10 10:47:20 -07006148
6149 if (HAS_PCH_SPLIT(dev)) {
6150 intel_helper_funcs.prepare = ironlake_crtc_prepare;
6151 intel_helper_funcs.commit = ironlake_crtc_commit;
6152 } else {
6153 intel_helper_funcs.prepare = i9xx_crtc_prepare;
6154 intel_helper_funcs.commit = i9xx_crtc_commit;
6155 }
6156
Jesse Barnes79e53942008-11-07 14:24:08 -08006157 drm_crtc_helper_add(&intel_crtc->base, &intel_helper_funcs);
6158
Jesse Barnes652c3932009-08-17 13:31:43 -07006159 intel_crtc->busy = false;
6160
6161 setup_timer(&intel_crtc->idle_timer, intel_crtc_idle_timer,
6162 (unsigned long)intel_crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08006163}
6164
Carl Worth08d7b3d2009-04-29 14:43:54 -07006165int intel_get_pipe_from_crtc_id(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00006166 struct drm_file *file)
Carl Worth08d7b3d2009-04-29 14:43:54 -07006167{
Carl Worth08d7b3d2009-04-29 14:43:54 -07006168 struct drm_i915_get_pipe_from_crtc_id *pipe_from_crtc_id = data;
Daniel Vetterc05422d2009-08-11 16:05:30 +02006169 struct drm_mode_object *drmmode_obj;
6170 struct intel_crtc *crtc;
Carl Worth08d7b3d2009-04-29 14:43:54 -07006171
Daniel Vetter1cff8f62012-04-24 09:55:08 +02006172 if (!drm_core_check_feature(dev, DRIVER_MODESET))
6173 return -ENODEV;
Carl Worth08d7b3d2009-04-29 14:43:54 -07006174
Daniel Vetterc05422d2009-08-11 16:05:30 +02006175 drmmode_obj = drm_mode_object_find(dev, pipe_from_crtc_id->crtc_id,
6176 DRM_MODE_OBJECT_CRTC);
Carl Worth08d7b3d2009-04-29 14:43:54 -07006177
Daniel Vetterc05422d2009-08-11 16:05:30 +02006178 if (!drmmode_obj) {
Carl Worth08d7b3d2009-04-29 14:43:54 -07006179 DRM_ERROR("no such CRTC id\n");
6180 return -EINVAL;
6181 }
6182
Daniel Vetterc05422d2009-08-11 16:05:30 +02006183 crtc = to_intel_crtc(obj_to_crtc(drmmode_obj));
6184 pipe_from_crtc_id->pipe = crtc->pipe;
Carl Worth08d7b3d2009-04-29 14:43:54 -07006185
Daniel Vetterc05422d2009-08-11 16:05:30 +02006186 return 0;
Carl Worth08d7b3d2009-04-29 14:43:54 -07006187}
6188
Zhenyu Wangc5e4df32010-03-30 14:39:27 +08006189static int intel_encoder_clones(struct drm_device *dev, int type_mask)
Jesse Barnes79e53942008-11-07 14:24:08 -08006190{
Chris Wilson4ef69c72010-09-09 15:14:28 +01006191 struct intel_encoder *encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08006192 int index_mask = 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08006193 int entry = 0;
6194
Chris Wilson4ef69c72010-09-09 15:14:28 +01006195 list_for_each_entry(encoder, &dev->mode_config.encoder_list, base.head) {
6196 if (type_mask & encoder->clone_mask)
Jesse Barnes79e53942008-11-07 14:24:08 -08006197 index_mask |= (1 << entry);
6198 entry++;
6199 }
Chris Wilson4ef69c72010-09-09 15:14:28 +01006200
Jesse Barnes79e53942008-11-07 14:24:08 -08006201 return index_mask;
6202}
6203
Chris Wilson4d302442010-12-14 19:21:29 +00006204static bool has_edp_a(struct drm_device *dev)
6205{
6206 struct drm_i915_private *dev_priv = dev->dev_private;
6207
6208 if (!IS_MOBILE(dev))
6209 return false;
6210
6211 if ((I915_READ(DP_A) & DP_DETECTED) == 0)
6212 return false;
6213
6214 if (IS_GEN5(dev) &&
6215 (I915_READ(ILK_DISPLAY_CHICKEN_FUSES) & ILK_eDP_A_DISABLE))
6216 return false;
6217
6218 return true;
6219}
6220
Jesse Barnes79e53942008-11-07 14:24:08 -08006221static void intel_setup_outputs(struct drm_device *dev)
6222{
Eric Anholt725e30a2009-01-22 13:01:02 -08006223 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson4ef69c72010-09-09 15:14:28 +01006224 struct intel_encoder *encoder;
Adam Jacksoncb0953d2010-07-16 14:46:29 -04006225 bool dpd_is_edp = false;
Chris Wilsonf3cfcba2012-02-09 09:35:53 +00006226 bool has_lvds;
Jesse Barnes79e53942008-11-07 14:24:08 -08006227
Chris Wilsonf3cfcba2012-02-09 09:35:53 +00006228 has_lvds = intel_lvds_init(dev);
Chris Wilsonc5d1b512010-11-29 18:00:23 +00006229 if (!has_lvds && !HAS_PCH_SPLIT(dev)) {
6230 /* disable the panel fitter on everything but LVDS */
6231 I915_WRITE(PFIT_CONTROL, 0);
6232 }
Jesse Barnes79e53942008-11-07 14:24:08 -08006233
Eric Anholtbad720f2009-10-22 16:11:14 -07006234 if (HAS_PCH_SPLIT(dev)) {
Adam Jacksoncb0953d2010-07-16 14:46:29 -04006235 dpd_is_edp = intel_dpd_is_edp(dev);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +08006236
Chris Wilson4d302442010-12-14 19:21:29 +00006237 if (has_edp_a(dev))
Zhenyu Wang32f9d652009-07-24 01:00:32 +08006238 intel_dp_init(dev, DP_A);
6239
Adam Jacksoncb0953d2010-07-16 14:46:29 -04006240 if (dpd_is_edp && (I915_READ(PCH_DP_D) & DP_DETECTED))
6241 intel_dp_init(dev, PCH_DP_D);
6242 }
6243
6244 intel_crt_init(dev);
6245
6246 if (HAS_PCH_SPLIT(dev)) {
6247 int found;
6248
Zhenyu Wang30ad48b2009-06-05 15:38:43 +08006249 if (I915_READ(HDMIB) & PORT_DETECTED) {
Zhao Yakui461ed3c2010-03-30 15:11:33 +08006250 /* PCH SDVOB multiplex with HDMIB */
Daniel Vettereef4eac2012-03-23 23:43:35 +01006251 found = intel_sdvo_init(dev, PCH_SDVOB, true);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +08006252 if (!found)
6253 intel_hdmi_init(dev, HDMIB);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08006254 if (!found && (I915_READ(PCH_DP_B) & DP_DETECTED))
6255 intel_dp_init(dev, PCH_DP_B);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +08006256 }
6257
6258 if (I915_READ(HDMIC) & PORT_DETECTED)
6259 intel_hdmi_init(dev, HDMIC);
6260
6261 if (I915_READ(HDMID) & PORT_DETECTED)
6262 intel_hdmi_init(dev, HDMID);
6263
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08006264 if (I915_READ(PCH_DP_C) & DP_DETECTED)
6265 intel_dp_init(dev, PCH_DP_C);
6266
Adam Jacksoncb0953d2010-07-16 14:46:29 -04006267 if (!dpd_is_edp && (I915_READ(PCH_DP_D) & DP_DETECTED))
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08006268 intel_dp_init(dev, PCH_DP_D);
6269
Zhenyu Wang103a1962009-11-27 11:44:36 +08006270 } else if (SUPPORTS_DIGITAL_OUTPUTS(dev)) {
Ma Ling27185ae2009-08-24 13:50:23 +08006271 bool found = false;
Eric Anholt7d573822009-01-02 13:33:00 -08006272
Eric Anholt725e30a2009-01-22 13:01:02 -08006273 if (I915_READ(SDVOB) & SDVO_DETECTED) {
Jesse Barnesb01f2c32009-12-11 11:07:17 -08006274 DRM_DEBUG_KMS("probing SDVOB\n");
Daniel Vettereef4eac2012-03-23 23:43:35 +01006275 found = intel_sdvo_init(dev, SDVOB, true);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08006276 if (!found && SUPPORTS_INTEGRATED_HDMI(dev)) {
6277 DRM_DEBUG_KMS("probing HDMI on SDVOB\n");
Eric Anholt725e30a2009-01-22 13:01:02 -08006278 intel_hdmi_init(dev, SDVOB);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08006279 }
Ma Ling27185ae2009-08-24 13:50:23 +08006280
Jesse Barnesb01f2c32009-12-11 11:07:17 -08006281 if (!found && SUPPORTS_INTEGRATED_DP(dev)) {
6282 DRM_DEBUG_KMS("probing DP_B\n");
Keith Packarda4fc5ed2009-04-07 16:16:42 -07006283 intel_dp_init(dev, DP_B);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08006284 }
Eric Anholt725e30a2009-01-22 13:01:02 -08006285 }
Kristian Høgsberg13520b02009-03-13 15:42:14 -04006286
6287 /* Before G4X SDVOC doesn't have its own detect register */
Kristian Høgsberg13520b02009-03-13 15:42:14 -04006288
Jesse Barnesb01f2c32009-12-11 11:07:17 -08006289 if (I915_READ(SDVOB) & SDVO_DETECTED) {
6290 DRM_DEBUG_KMS("probing SDVOC\n");
Daniel Vettereef4eac2012-03-23 23:43:35 +01006291 found = intel_sdvo_init(dev, SDVOC, false);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08006292 }
Ma Ling27185ae2009-08-24 13:50:23 +08006293
6294 if (!found && (I915_READ(SDVOC) & SDVO_DETECTED)) {
6295
Jesse Barnesb01f2c32009-12-11 11:07:17 -08006296 if (SUPPORTS_INTEGRATED_HDMI(dev)) {
6297 DRM_DEBUG_KMS("probing HDMI on SDVOC\n");
Eric Anholt725e30a2009-01-22 13:01:02 -08006298 intel_hdmi_init(dev, SDVOC);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08006299 }
6300 if (SUPPORTS_INTEGRATED_DP(dev)) {
6301 DRM_DEBUG_KMS("probing DP_C\n");
Keith Packarda4fc5ed2009-04-07 16:16:42 -07006302 intel_dp_init(dev, DP_C);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08006303 }
Eric Anholt725e30a2009-01-22 13:01:02 -08006304 }
Ma Ling27185ae2009-08-24 13:50:23 +08006305
Jesse Barnesb01f2c32009-12-11 11:07:17 -08006306 if (SUPPORTS_INTEGRATED_DP(dev) &&
6307 (I915_READ(DP_D) & DP_DETECTED)) {
6308 DRM_DEBUG_KMS("probing DP_D\n");
Keith Packarda4fc5ed2009-04-07 16:16:42 -07006309 intel_dp_init(dev, DP_D);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08006310 }
Eric Anholtbad720f2009-10-22 16:11:14 -07006311 } else if (IS_GEN2(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -08006312 intel_dvo_init(dev);
6313
Zhenyu Wang103a1962009-11-27 11:44:36 +08006314 if (SUPPORTS_TV(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -08006315 intel_tv_init(dev);
6316
Chris Wilson4ef69c72010-09-09 15:14:28 +01006317 list_for_each_entry(encoder, &dev->mode_config.encoder_list, base.head) {
6318 encoder->base.possible_crtcs = encoder->crtc_mask;
6319 encoder->base.possible_clones =
6320 intel_encoder_clones(dev, encoder->clone_mask);
Jesse Barnes79e53942008-11-07 14:24:08 -08006321 }
Chris Wilson47356eb2011-01-11 17:06:04 +00006322
Chris Wilson2c7111d2011-03-29 10:40:27 +01006323 /* disable all the possible outputs/crtcs before entering KMS mode */
6324 drm_helper_disable_unused_functions(dev);
Keith Packard9fb526d2011-09-26 22:24:57 -07006325
6326 if (HAS_PCH_SPLIT(dev))
6327 ironlake_init_pch_refclk(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08006328}
6329
6330static void intel_user_framebuffer_destroy(struct drm_framebuffer *fb)
6331{
6332 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
Jesse Barnes79e53942008-11-07 14:24:08 -08006333
6334 drm_framebuffer_cleanup(fb);
Chris Wilson05394f32010-11-08 19:18:58 +00006335 drm_gem_object_unreference_unlocked(&intel_fb->obj->base);
Jesse Barnes79e53942008-11-07 14:24:08 -08006336
6337 kfree(intel_fb);
6338}
6339
6340static int intel_user_framebuffer_create_handle(struct drm_framebuffer *fb,
Chris Wilson05394f32010-11-08 19:18:58 +00006341 struct drm_file *file,
Jesse Barnes79e53942008-11-07 14:24:08 -08006342 unsigned int *handle)
6343{
6344 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
Chris Wilson05394f32010-11-08 19:18:58 +00006345 struct drm_i915_gem_object *obj = intel_fb->obj;
Jesse Barnes79e53942008-11-07 14:24:08 -08006346
Chris Wilson05394f32010-11-08 19:18:58 +00006347 return drm_gem_handle_create(file, &obj->base, handle);
Jesse Barnes79e53942008-11-07 14:24:08 -08006348}
6349
6350static const struct drm_framebuffer_funcs intel_fb_funcs = {
6351 .destroy = intel_user_framebuffer_destroy,
6352 .create_handle = intel_user_framebuffer_create_handle,
6353};
6354
Dave Airlie38651672010-03-30 05:34:13 +00006355int intel_framebuffer_init(struct drm_device *dev,
6356 struct intel_framebuffer *intel_fb,
Jesse Barnes308e5bc2011-11-14 14:51:28 -08006357 struct drm_mode_fb_cmd2 *mode_cmd,
Chris Wilson05394f32010-11-08 19:18:58 +00006358 struct drm_i915_gem_object *obj)
Jesse Barnes79e53942008-11-07 14:24:08 -08006359{
Jesse Barnes79e53942008-11-07 14:24:08 -08006360 int ret;
6361
Chris Wilson05394f32010-11-08 19:18:58 +00006362 if (obj->tiling_mode == I915_TILING_Y)
Chris Wilson57cd6502010-08-08 12:34:44 +01006363 return -EINVAL;
6364
Jesse Barnes308e5bc2011-11-14 14:51:28 -08006365 if (mode_cmd->pitches[0] & 63)
Chris Wilson57cd6502010-08-08 12:34:44 +01006366 return -EINVAL;
6367
Jesse Barnes308e5bc2011-11-14 14:51:28 -08006368 switch (mode_cmd->pixel_format) {
Ville Syrjälä04b39242011-11-17 18:05:13 +02006369 case DRM_FORMAT_RGB332:
6370 case DRM_FORMAT_RGB565:
6371 case DRM_FORMAT_XRGB8888:
Jesse Barnesb250da72012-03-07 08:49:29 -08006372 case DRM_FORMAT_XBGR8888:
Ville Syrjälä04b39242011-11-17 18:05:13 +02006373 case DRM_FORMAT_ARGB8888:
6374 case DRM_FORMAT_XRGB2101010:
6375 case DRM_FORMAT_ARGB2101010:
Jesse Barnes308e5bc2011-11-14 14:51:28 -08006376 /* RGB formats are common across chipsets */
Jesse Barnesb5626742011-06-24 12:19:27 -07006377 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +02006378 case DRM_FORMAT_YUYV:
6379 case DRM_FORMAT_UYVY:
6380 case DRM_FORMAT_YVYU:
6381 case DRM_FORMAT_VYUY:
Chris Wilson57cd6502010-08-08 12:34:44 +01006382 break;
6383 default:
Eugeni Dodonovaca25842012-01-17 15:25:45 -02006384 DRM_DEBUG_KMS("unsupported pixel format %u\n",
6385 mode_cmd->pixel_format);
Chris Wilson57cd6502010-08-08 12:34:44 +01006386 return -EINVAL;
6387 }
6388
Jesse Barnes79e53942008-11-07 14:24:08 -08006389 ret = drm_framebuffer_init(dev, &intel_fb->base, &intel_fb_funcs);
6390 if (ret) {
6391 DRM_ERROR("framebuffer init failed %d\n", ret);
6392 return ret;
6393 }
6394
6395 drm_helper_mode_fill_fb_struct(&intel_fb->base, mode_cmd);
Jesse Barnes79e53942008-11-07 14:24:08 -08006396 intel_fb->obj = obj;
Jesse Barnes79e53942008-11-07 14:24:08 -08006397 return 0;
6398}
6399
Jesse Barnes79e53942008-11-07 14:24:08 -08006400static struct drm_framebuffer *
6401intel_user_framebuffer_create(struct drm_device *dev,
6402 struct drm_file *filp,
Jesse Barnes308e5bc2011-11-14 14:51:28 -08006403 struct drm_mode_fb_cmd2 *mode_cmd)
Jesse Barnes79e53942008-11-07 14:24:08 -08006404{
Chris Wilson05394f32010-11-08 19:18:58 +00006405 struct drm_i915_gem_object *obj;
Jesse Barnes79e53942008-11-07 14:24:08 -08006406
Jesse Barnes308e5bc2011-11-14 14:51:28 -08006407 obj = to_intel_bo(drm_gem_object_lookup(dev, filp,
6408 mode_cmd->handles[0]));
Chris Wilsonc8725222011-02-19 11:31:06 +00006409 if (&obj->base == NULL)
Chris Wilsoncce13ff2010-08-08 13:36:38 +01006410 return ERR_PTR(-ENOENT);
Jesse Barnes79e53942008-11-07 14:24:08 -08006411
Chris Wilsond2dff872011-04-19 08:36:26 +01006412 return intel_framebuffer_create(dev, mode_cmd, obj);
Jesse Barnes79e53942008-11-07 14:24:08 -08006413}
6414
Jesse Barnes79e53942008-11-07 14:24:08 -08006415static const struct drm_mode_config_funcs intel_mode_funcs = {
Jesse Barnes79e53942008-11-07 14:24:08 -08006416 .fb_create = intel_user_framebuffer_create,
Dave Airlieeb1f8e42010-05-07 06:42:51 +00006417 .output_poll_changed = intel_fb_output_poll_changed,
Jesse Barnes79e53942008-11-07 14:24:08 -08006418};
6419
Jesse Barnese70236a2009-09-21 10:42:27 -07006420/* Set up chip specific display functions */
6421static void intel_init_display(struct drm_device *dev)
6422{
6423 struct drm_i915_private *dev_priv = dev->dev_private;
6424
6425 /* We always want a DPMS function */
Eric Anholtf564048e2011-03-30 13:01:02 -07006426 if (HAS_PCH_SPLIT(dev)) {
Adam Jacksonf2b115e2009-12-03 17:14:42 -05006427 dev_priv->display.dpms = ironlake_crtc_dpms;
Eric Anholtf564048e2011-03-30 13:01:02 -07006428 dev_priv->display.crtc_mode_set = ironlake_crtc_mode_set;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01006429 dev_priv->display.off = ironlake_crtc_off;
Jesse Barnes17638cd2011-06-24 12:19:23 -07006430 dev_priv->display.update_plane = ironlake_update_plane;
Eric Anholtf564048e2011-03-30 13:01:02 -07006431 } else {
Jesse Barnese70236a2009-09-21 10:42:27 -07006432 dev_priv->display.dpms = i9xx_crtc_dpms;
Eric Anholtf564048e2011-03-30 13:01:02 -07006433 dev_priv->display.crtc_mode_set = i9xx_crtc_mode_set;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01006434 dev_priv->display.off = i9xx_crtc_off;
Jesse Barnes17638cd2011-06-24 12:19:23 -07006435 dev_priv->display.update_plane = i9xx_update_plane;
Eric Anholtf564048e2011-03-30 13:01:02 -07006436 }
Jesse Barnese70236a2009-09-21 10:42:27 -07006437
Jesse Barnese70236a2009-09-21 10:42:27 -07006438 /* Returns the core display clock speed */
Jesse Barnes25eb05fc2012-03-28 13:39:23 -07006439 if (IS_VALLEYVIEW(dev))
6440 dev_priv->display.get_display_clock_speed =
6441 valleyview_get_display_clock_speed;
6442 else if (IS_I945G(dev) || (IS_G33(dev) && !IS_PINEVIEW_M(dev)))
Jesse Barnese70236a2009-09-21 10:42:27 -07006443 dev_priv->display.get_display_clock_speed =
6444 i945_get_display_clock_speed;
6445 else if (IS_I915G(dev))
6446 dev_priv->display.get_display_clock_speed =
6447 i915_get_display_clock_speed;
Adam Jacksonf2b115e2009-12-03 17:14:42 -05006448 else if (IS_I945GM(dev) || IS_845G(dev) || IS_PINEVIEW_M(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -07006449 dev_priv->display.get_display_clock_speed =
6450 i9xx_misc_get_display_clock_speed;
6451 else if (IS_I915GM(dev))
6452 dev_priv->display.get_display_clock_speed =
6453 i915gm_get_display_clock_speed;
6454 else if (IS_I865G(dev))
6455 dev_priv->display.get_display_clock_speed =
6456 i865_get_display_clock_speed;
Daniel Vetterf0f8a9c2009-09-15 22:57:33 +02006457 else if (IS_I85X(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -07006458 dev_priv->display.get_display_clock_speed =
6459 i855_get_display_clock_speed;
6460 else /* 852, 830 */
6461 dev_priv->display.get_display_clock_speed =
6462 i830_get_display_clock_speed;
6463
Zhenyu Wang7f8a8562010-04-01 13:07:53 +08006464 if (HAS_PCH_SPLIT(dev)) {
Chris Wilsonf00a3dd2010-10-21 14:57:17 +01006465 if (IS_GEN5(dev)) {
Jesse Barnes674cf962011-04-28 14:27:04 -07006466 dev_priv->display.fdi_link_train = ironlake_fdi_link_train;
Wu Fengguange0dac652011-09-05 14:25:34 +08006467 dev_priv->display.write_eld = ironlake_write_eld;
Yuanhan Liu13982612010-12-15 15:42:31 +08006468 } else if (IS_GEN6(dev)) {
Jesse Barnes674cf962011-04-28 14:27:04 -07006469 dev_priv->display.fdi_link_train = gen6_fdi_link_train;
Wu Fengguange0dac652011-09-05 14:25:34 +08006470 dev_priv->display.write_eld = ironlake_write_eld;
Jesse Barnes357555c2011-04-28 15:09:55 -07006471 } else if (IS_IVYBRIDGE(dev)) {
6472 /* FIXME: detect B0+ stepping and use auto training */
6473 dev_priv->display.fdi_link_train = ivb_manual_fdi_link_train;
Wu Fengguange0dac652011-09-05 14:25:34 +08006474 dev_priv->display.write_eld = ironlake_write_eld;
Zhenyu Wang7f8a8562010-04-01 13:07:53 +08006475 } else
6476 dev_priv->display.update_wm = NULL;
Jesse Barnesceb04242012-03-28 13:39:22 -07006477 } else if (IS_VALLEYVIEW(dev)) {
Jesse Barnes575155a2012-03-28 13:39:37 -07006478 dev_priv->display.force_wake_get = vlv_force_wake_get;
6479 dev_priv->display.force_wake_put = vlv_force_wake_put;
Jesse Barnes6067aae2011-04-28 15:04:31 -07006480 } else if (IS_G4X(dev)) {
Wu Fengguange0dac652011-09-05 14:25:34 +08006481 dev_priv->display.write_eld = g4x_write_eld;
Jesse Barnese70236a2009-09-21 10:42:27 -07006482 }
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006483
6484 /* Default just returns -ENODEV to indicate unsupported */
6485 dev_priv->display.queue_flip = intel_default_queue_flip;
6486
6487 switch (INTEL_INFO(dev)->gen) {
6488 case 2:
6489 dev_priv->display.queue_flip = intel_gen2_queue_flip;
6490 break;
6491
6492 case 3:
6493 dev_priv->display.queue_flip = intel_gen3_queue_flip;
6494 break;
6495
6496 case 4:
6497 case 5:
6498 dev_priv->display.queue_flip = intel_gen4_queue_flip;
6499 break;
6500
6501 case 6:
6502 dev_priv->display.queue_flip = intel_gen6_queue_flip;
6503 break;
Jesse Barnes7c9017e2011-06-16 12:18:54 -07006504 case 7:
6505 dev_priv->display.queue_flip = intel_gen7_queue_flip;
6506 break;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006507 }
Jesse Barnese70236a2009-09-21 10:42:27 -07006508}
6509
Jesse Barnesb690e962010-07-19 13:53:12 -07006510/*
6511 * Some BIOSes insist on assuming the GPU's pipe A is enabled at suspend,
6512 * resume, or other times. This quirk makes sure that's the case for
6513 * affected systems.
6514 */
Akshay Joshi0206e352011-08-16 15:34:10 -04006515static void quirk_pipea_force(struct drm_device *dev)
Jesse Barnesb690e962010-07-19 13:53:12 -07006516{
6517 struct drm_i915_private *dev_priv = dev->dev_private;
6518
6519 dev_priv->quirks |= QUIRK_PIPEA_FORCE;
Daniel Vetterbc0daf42012-04-01 13:16:49 +02006520 DRM_INFO("applying pipe a force quirk\n");
Jesse Barnesb690e962010-07-19 13:53:12 -07006521}
6522
Keith Packard435793d2011-07-12 14:56:22 -07006523/*
6524 * Some machines (Lenovo U160) do not work with SSC on LVDS for some reason
6525 */
6526static void quirk_ssc_force_disable(struct drm_device *dev)
6527{
6528 struct drm_i915_private *dev_priv = dev->dev_private;
6529 dev_priv->quirks |= QUIRK_LVDS_SSC_DISABLE;
Daniel Vetterbc0daf42012-04-01 13:16:49 +02006530 DRM_INFO("applying lvds SSC disable quirk\n");
Keith Packard435793d2011-07-12 14:56:22 -07006531}
6532
Carsten Emde4dca20e2012-03-15 15:56:26 +01006533/*
Carsten Emde5a15ab52012-03-15 15:56:27 +01006534 * A machine (e.g. Acer Aspire 5734Z) may need to invert the panel backlight
6535 * brightness value
Carsten Emde4dca20e2012-03-15 15:56:26 +01006536 */
6537static void quirk_invert_brightness(struct drm_device *dev)
6538{
6539 struct drm_i915_private *dev_priv = dev->dev_private;
6540 dev_priv->quirks |= QUIRK_INVERT_BRIGHTNESS;
Daniel Vetterbc0daf42012-04-01 13:16:49 +02006541 DRM_INFO("applying inverted panel brightness quirk\n");
Jesse Barnesb690e962010-07-19 13:53:12 -07006542}
6543
6544struct intel_quirk {
6545 int device;
6546 int subsystem_vendor;
6547 int subsystem_device;
6548 void (*hook)(struct drm_device *dev);
6549};
6550
Ben Widawskyc43b5632012-04-16 14:07:40 -07006551static struct intel_quirk intel_quirks[] = {
Jesse Barnesb690e962010-07-19 13:53:12 -07006552 /* HP Mini needs pipe A force quirk (LP: #322104) */
Akshay Joshi0206e352011-08-16 15:34:10 -04006553 { 0x27ae, 0x103c, 0x361a, quirk_pipea_force },
Jesse Barnesb690e962010-07-19 13:53:12 -07006554
6555 /* Thinkpad R31 needs pipe A force quirk */
6556 { 0x3577, 0x1014, 0x0505, quirk_pipea_force },
6557 /* Toshiba Protege R-205, S-209 needs pipe A force quirk */
6558 { 0x2592, 0x1179, 0x0001, quirk_pipea_force },
6559
6560 /* ThinkPad X30 needs pipe A force quirk (LP: #304614) */
6561 { 0x3577, 0x1014, 0x0513, quirk_pipea_force },
6562 /* ThinkPad X40 needs pipe A force quirk */
6563
6564 /* ThinkPad T60 needs pipe A force quirk (bug #16494) */
6565 { 0x2782, 0x17aa, 0x201a, quirk_pipea_force },
6566
6567 /* 855 & before need to leave pipe A & dpll A up */
6568 { 0x3582, PCI_ANY_ID, PCI_ANY_ID, quirk_pipea_force },
6569 { 0x2562, PCI_ANY_ID, PCI_ANY_ID, quirk_pipea_force },
Keith Packard435793d2011-07-12 14:56:22 -07006570
6571 /* Lenovo U160 cannot use SSC on LVDS */
6572 { 0x0046, 0x17aa, 0x3920, quirk_ssc_force_disable },
Michel Alexandre Salim070d3292011-07-28 18:52:06 +02006573
6574 /* Sony Vaio Y cannot use SSC on LVDS */
6575 { 0x0046, 0x104d, 0x9076, quirk_ssc_force_disable },
Carsten Emde5a15ab52012-03-15 15:56:27 +01006576
6577 /* Acer Aspire 5734Z must invert backlight brightness */
6578 { 0x2a42, 0x1025, 0x0459, quirk_invert_brightness },
Jesse Barnesb690e962010-07-19 13:53:12 -07006579};
6580
6581static void intel_init_quirks(struct drm_device *dev)
6582{
6583 struct pci_dev *d = dev->pdev;
6584 int i;
6585
6586 for (i = 0; i < ARRAY_SIZE(intel_quirks); i++) {
6587 struct intel_quirk *q = &intel_quirks[i];
6588
6589 if (d->device == q->device &&
6590 (d->subsystem_vendor == q->subsystem_vendor ||
6591 q->subsystem_vendor == PCI_ANY_ID) &&
6592 (d->subsystem_device == q->subsystem_device ||
6593 q->subsystem_device == PCI_ANY_ID))
6594 q->hook(dev);
6595 }
6596}
6597
Jesse Barnes9cce37f2010-08-13 15:11:26 -07006598/* Disable the VGA plane that we never use */
6599static void i915_disable_vga(struct drm_device *dev)
6600{
6601 struct drm_i915_private *dev_priv = dev->dev_private;
6602 u8 sr1;
6603 u32 vga_reg;
6604
6605 if (HAS_PCH_SPLIT(dev))
6606 vga_reg = CPU_VGACNTRL;
6607 else
6608 vga_reg = VGACNTRL;
6609
6610 vga_get_uninterruptible(dev->pdev, VGA_RSRC_LEGACY_IO);
Jesse Barnes3fdcf432012-04-06 11:46:27 -07006611 outb(SR01, VGA_SR_INDEX);
Jesse Barnes9cce37f2010-08-13 15:11:26 -07006612 sr1 = inb(VGA_SR_DATA);
6613 outb(sr1 | 1<<5, VGA_SR_DATA);
6614 vga_put(dev->pdev, VGA_RSRC_LEGACY_IO);
6615 udelay(300);
6616
6617 I915_WRITE(vga_reg, VGA_DISP_DISABLE);
6618 POSTING_READ(vga_reg);
6619}
6620
Jesse Barnesf82cfb62012-04-11 09:23:35 -07006621static void ivb_pch_pwm_override(struct drm_device *dev)
6622{
6623 struct drm_i915_private *dev_priv = dev->dev_private;
6624
6625 /*
6626 * IVB has CPU eDP backlight regs too, set things up to let the
6627 * PCH regs control the backlight
6628 */
6629 I915_WRITE(BLC_PWM_CPU_CTL2, PWM_ENABLE);
6630 I915_WRITE(BLC_PWM_CPU_CTL, 0);
6631 I915_WRITE(BLC_PWM_PCH_CTL1, PWM_ENABLE | (1<<30));
6632}
6633
Daniel Vetterf8175862012-04-10 15:50:11 +02006634void intel_modeset_init_hw(struct drm_device *dev)
6635{
6636 struct drm_i915_private *dev_priv = dev->dev_private;
6637
6638 intel_init_clock_gating(dev);
6639
6640 if (IS_IRONLAKE_M(dev)) {
6641 ironlake_enable_drps(dev);
6642 intel_init_emon(dev);
6643 }
6644
Jesse Barnesb6834bd2012-04-11 09:23:33 -07006645 if ((IS_GEN6(dev) || IS_GEN7(dev)) && !IS_VALLEYVIEW(dev)) {
Daniel Vetterf8175862012-04-10 15:50:11 +02006646 gen6_enable_rps(dev_priv);
6647 gen6_update_ring_freq(dev_priv);
6648 }
Jesse Barnesf82cfb62012-04-11 09:23:35 -07006649
6650 if (IS_IVYBRIDGE(dev))
6651 ivb_pch_pwm_override(dev);
Daniel Vetterf8175862012-04-10 15:50:11 +02006652}
6653
Jesse Barnes79e53942008-11-07 14:24:08 -08006654void intel_modeset_init(struct drm_device *dev)
6655{
Jesse Barnes652c3932009-08-17 13:31:43 -07006656 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesb840d907f2011-12-13 13:19:38 -08006657 int i, ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08006658
6659 drm_mode_config_init(dev);
6660
6661 dev->mode_config.min_width = 0;
6662 dev->mode_config.min_height = 0;
6663
Dave Airlie019d96c2011-09-29 16:20:42 +01006664 dev->mode_config.preferred_depth = 24;
6665 dev->mode_config.prefer_shadow = 1;
6666
Jesse Barnes79e53942008-11-07 14:24:08 -08006667 dev->mode_config.funcs = (void *)&intel_mode_funcs;
6668
Jesse Barnesb690e962010-07-19 13:53:12 -07006669 intel_init_quirks(dev);
6670
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006671 intel_init_pm(dev);
6672
Jesse Barnese70236a2009-09-21 10:42:27 -07006673 intel_init_display(dev);
6674
Chris Wilsona6c45cf2010-09-17 00:32:17 +01006675 if (IS_GEN2(dev)) {
6676 dev->mode_config.max_width = 2048;
6677 dev->mode_config.max_height = 2048;
6678 } else if (IS_GEN3(dev)) {
Keith Packard5e4d6fa2009-07-12 23:53:17 -07006679 dev->mode_config.max_width = 4096;
6680 dev->mode_config.max_height = 4096;
Jesse Barnes79e53942008-11-07 14:24:08 -08006681 } else {
Chris Wilsona6c45cf2010-09-17 00:32:17 +01006682 dev->mode_config.max_width = 8192;
6683 dev->mode_config.max_height = 8192;
Jesse Barnes79e53942008-11-07 14:24:08 -08006684 }
Chris Wilson35c30472010-12-22 14:07:12 +00006685 dev->mode_config.fb_base = dev->agp->base;
Jesse Barnes79e53942008-11-07 14:24:08 -08006686
Zhao Yakui28c97732009-10-09 11:39:41 +08006687 DRM_DEBUG_KMS("%d display pipe%s available.\n",
Dave Airliea3524f12010-06-06 18:59:41 +10006688 dev_priv->num_pipe, dev_priv->num_pipe > 1 ? "s" : "");
Jesse Barnes79e53942008-11-07 14:24:08 -08006689
Dave Airliea3524f12010-06-06 18:59:41 +10006690 for (i = 0; i < dev_priv->num_pipe; i++) {
Jesse Barnes79e53942008-11-07 14:24:08 -08006691 intel_crtc_init(dev, i);
Jesse Barnes00c2064b2012-01-13 15:48:39 -08006692 ret = intel_plane_init(dev, i);
6693 if (ret)
6694 DRM_DEBUG_KMS("plane %d init failed: %d\n", i, ret);
Jesse Barnes79e53942008-11-07 14:24:08 -08006695 }
6696
Jesse Barnesee7b9f92012-04-20 17:11:53 +01006697 intel_pch_pll_init(dev);
6698
Jesse Barnes9cce37f2010-08-13 15:11:26 -07006699 /* Just disable it once at startup */
6700 i915_disable_vga(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08006701 intel_setup_outputs(dev);
Jesse Barnes652c3932009-08-17 13:31:43 -07006702
Daniel Vetterf8175862012-04-10 15:50:11 +02006703 intel_modeset_init_hw(dev);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08006704
Jesse Barnes652c3932009-08-17 13:31:43 -07006705 INIT_WORK(&dev_priv->idle_work, intel_idle_update);
6706 setup_timer(&dev_priv->idle_timer, intel_gpu_idle_timer,
6707 (unsigned long)dev);
Chris Wilson2c7111d2011-03-29 10:40:27 +01006708}
6709
6710void intel_modeset_gem_init(struct drm_device *dev)
6711{
6712 if (IS_IRONLAKE_M(dev))
6713 ironlake_enable_rc6(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +02006714
6715 intel_setup_overlay(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08006716}
6717
6718void intel_modeset_cleanup(struct drm_device *dev)
6719{
Jesse Barnes652c3932009-08-17 13:31:43 -07006720 struct drm_i915_private *dev_priv = dev->dev_private;
6721 struct drm_crtc *crtc;
6722 struct intel_crtc *intel_crtc;
6723
Keith Packardf87ea762010-10-03 19:36:26 -07006724 drm_kms_helper_poll_fini(dev);
Jesse Barnes652c3932009-08-17 13:31:43 -07006725 mutex_lock(&dev->struct_mutex);
6726
Jesse Barnes723bfd72010-10-07 16:01:13 -07006727 intel_unregister_dsm_handler();
6728
6729
Jesse Barnes652c3932009-08-17 13:31:43 -07006730 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
6731 /* Skip inactive CRTCs */
6732 if (!crtc->fb)
6733 continue;
6734
6735 intel_crtc = to_intel_crtc(crtc);
Daniel Vetter3dec0092010-08-20 21:40:52 +02006736 intel_increase_pllclock(crtc);
Jesse Barnes652c3932009-08-17 13:31:43 -07006737 }
6738
Chris Wilson973d04f2011-07-08 12:22:37 +01006739 intel_disable_fbc(dev);
Jesse Barnese70236a2009-09-21 10:42:27 -07006740
Jesse Barnesf97108d2010-01-29 11:27:07 -08006741 if (IS_IRONLAKE_M(dev))
6742 ironlake_disable_drps(dev);
Jesse Barnesb6834bd2012-04-11 09:23:33 -07006743 if ((IS_GEN6(dev) || IS_GEN7(dev)) && !IS_VALLEYVIEW(dev))
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08006744 gen6_disable_rps(dev);
Jesse Barnesf97108d2010-01-29 11:27:07 -08006745
Jesse Barnesd5bb0812011-01-05 12:01:26 -08006746 if (IS_IRONLAKE_M(dev))
6747 ironlake_disable_rc6(dev);
Chris Wilson0cdab212010-12-05 17:27:06 +00006748
Jesse Barnes57f350b2012-03-28 13:39:25 -07006749 if (IS_VALLEYVIEW(dev))
6750 vlv_init_dpio(dev);
6751
Kristian Høgsberg69341a52009-11-11 12:19:17 -05006752 mutex_unlock(&dev->struct_mutex);
6753
Daniel Vetter6c0d93502010-08-20 18:26:46 +02006754 /* Disable the irq before mode object teardown, for the irq might
6755 * enqueue unpin/hotplug work. */
6756 drm_irq_uninstall(dev);
6757 cancel_work_sync(&dev_priv->hotplug_work);
Daniel Vetter6fdd4d92011-09-08 14:00:22 +02006758 cancel_work_sync(&dev_priv->rps_work);
Daniel Vetter6c0d93502010-08-20 18:26:46 +02006759
Chris Wilson1630fe72011-07-08 12:22:42 +01006760 /* flush any delayed tasks or pending work */
6761 flush_scheduled_work();
6762
Daniel Vetter3dec0092010-08-20 21:40:52 +02006763 /* Shut off idle work before the crtcs get freed. */
6764 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
6765 intel_crtc = to_intel_crtc(crtc);
6766 del_timer_sync(&intel_crtc->idle_timer);
6767 }
6768 del_timer_sync(&dev_priv->idle_timer);
6769 cancel_work_sync(&dev_priv->idle_work);
6770
Jesse Barnes79e53942008-11-07 14:24:08 -08006771 drm_mode_config_cleanup(dev);
6772}
6773
Dave Airlie28d52042009-09-21 14:33:58 +10006774/*
Zhenyu Wangf1c79df2010-03-30 14:39:29 +08006775 * Return which encoder is currently attached for connector.
6776 */
Chris Wilsondf0e9242010-09-09 16:20:55 +01006777struct drm_encoder *intel_best_encoder(struct drm_connector *connector)
Jesse Barnes79e53942008-11-07 14:24:08 -08006778{
Chris Wilsondf0e9242010-09-09 16:20:55 +01006779 return &intel_attached_encoder(connector)->base;
6780}
Jesse Barnes79e53942008-11-07 14:24:08 -08006781
Chris Wilsondf0e9242010-09-09 16:20:55 +01006782void intel_connector_attach_encoder(struct intel_connector *connector,
6783 struct intel_encoder *encoder)
6784{
6785 connector->encoder = encoder;
6786 drm_mode_connector_attach_encoder(&connector->base,
6787 &encoder->base);
Jesse Barnes79e53942008-11-07 14:24:08 -08006788}
Dave Airlie28d52042009-09-21 14:33:58 +10006789
6790/*
6791 * set vga decode state - true == enable VGA decode
6792 */
6793int intel_modeset_vga_set_state(struct drm_device *dev, bool state)
6794{
6795 struct drm_i915_private *dev_priv = dev->dev_private;
6796 u16 gmch_ctrl;
6797
6798 pci_read_config_word(dev_priv->bridge_dev, INTEL_GMCH_CTRL, &gmch_ctrl);
6799 if (state)
6800 gmch_ctrl &= ~INTEL_GMCH_VGA_DISABLE;
6801 else
6802 gmch_ctrl |= INTEL_GMCH_VGA_DISABLE;
6803 pci_write_config_word(dev_priv->bridge_dev, INTEL_GMCH_CTRL, gmch_ctrl);
6804 return 0;
6805}
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00006806
6807#ifdef CONFIG_DEBUG_FS
6808#include <linux/seq_file.h>
6809
6810struct intel_display_error_state {
6811 struct intel_cursor_error_state {
6812 u32 control;
6813 u32 position;
6814 u32 base;
6815 u32 size;
6816 } cursor[2];
6817
6818 struct intel_pipe_error_state {
6819 u32 conf;
6820 u32 source;
6821
6822 u32 htotal;
6823 u32 hblank;
6824 u32 hsync;
6825 u32 vtotal;
6826 u32 vblank;
6827 u32 vsync;
6828 } pipe[2];
6829
6830 struct intel_plane_error_state {
6831 u32 control;
6832 u32 stride;
6833 u32 size;
6834 u32 pos;
6835 u32 addr;
6836 u32 surface;
6837 u32 tile_offset;
6838 } plane[2];
6839};
6840
6841struct intel_display_error_state *
6842intel_display_capture_error_state(struct drm_device *dev)
6843{
Akshay Joshi0206e352011-08-16 15:34:10 -04006844 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00006845 struct intel_display_error_state *error;
6846 int i;
6847
6848 error = kmalloc(sizeof(*error), GFP_ATOMIC);
6849 if (error == NULL)
6850 return NULL;
6851
6852 for (i = 0; i < 2; i++) {
6853 error->cursor[i].control = I915_READ(CURCNTR(i));
6854 error->cursor[i].position = I915_READ(CURPOS(i));
6855 error->cursor[i].base = I915_READ(CURBASE(i));
6856
6857 error->plane[i].control = I915_READ(DSPCNTR(i));
6858 error->plane[i].stride = I915_READ(DSPSTRIDE(i));
6859 error->plane[i].size = I915_READ(DSPSIZE(i));
Akshay Joshi0206e352011-08-16 15:34:10 -04006860 error->plane[i].pos = I915_READ(DSPPOS(i));
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00006861 error->plane[i].addr = I915_READ(DSPADDR(i));
6862 if (INTEL_INFO(dev)->gen >= 4) {
6863 error->plane[i].surface = I915_READ(DSPSURF(i));
6864 error->plane[i].tile_offset = I915_READ(DSPTILEOFF(i));
6865 }
6866
6867 error->pipe[i].conf = I915_READ(PIPECONF(i));
6868 error->pipe[i].source = I915_READ(PIPESRC(i));
6869 error->pipe[i].htotal = I915_READ(HTOTAL(i));
6870 error->pipe[i].hblank = I915_READ(HBLANK(i));
6871 error->pipe[i].hsync = I915_READ(HSYNC(i));
6872 error->pipe[i].vtotal = I915_READ(VTOTAL(i));
6873 error->pipe[i].vblank = I915_READ(VBLANK(i));
6874 error->pipe[i].vsync = I915_READ(VSYNC(i));
6875 }
6876
6877 return error;
6878}
6879
6880void
6881intel_display_print_error_state(struct seq_file *m,
6882 struct drm_device *dev,
6883 struct intel_display_error_state *error)
6884{
6885 int i;
6886
6887 for (i = 0; i < 2; i++) {
6888 seq_printf(m, "Pipe [%d]:\n", i);
6889 seq_printf(m, " CONF: %08x\n", error->pipe[i].conf);
6890 seq_printf(m, " SRC: %08x\n", error->pipe[i].source);
6891 seq_printf(m, " HTOTAL: %08x\n", error->pipe[i].htotal);
6892 seq_printf(m, " HBLANK: %08x\n", error->pipe[i].hblank);
6893 seq_printf(m, " HSYNC: %08x\n", error->pipe[i].hsync);
6894 seq_printf(m, " VTOTAL: %08x\n", error->pipe[i].vtotal);
6895 seq_printf(m, " VBLANK: %08x\n", error->pipe[i].vblank);
6896 seq_printf(m, " VSYNC: %08x\n", error->pipe[i].vsync);
6897
6898 seq_printf(m, "Plane [%d]:\n", i);
6899 seq_printf(m, " CNTR: %08x\n", error->plane[i].control);
6900 seq_printf(m, " STRIDE: %08x\n", error->plane[i].stride);
6901 seq_printf(m, " SIZE: %08x\n", error->plane[i].size);
6902 seq_printf(m, " POS: %08x\n", error->plane[i].pos);
6903 seq_printf(m, " ADDR: %08x\n", error->plane[i].addr);
6904 if (INTEL_INFO(dev)->gen >= 4) {
6905 seq_printf(m, " SURF: %08x\n", error->plane[i].surface);
6906 seq_printf(m, " TILEOFF: %08x\n", error->plane[i].tile_offset);
6907 }
6908
6909 seq_printf(m, "Cursor [%d]:\n", i);
6910 seq_printf(m, " CNTR: %08x\n", error->cursor[i].control);
6911 seq_printf(m, " POS: %08x\n", error->cursor[i].position);
6912 seq_printf(m, " BASE: %08x\n", error->cursor[i].base);
6913 }
6914}
6915#endif