blob: 308e1a2967e76d5c4b6685b5f2417905012480b8 [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);
Seth Forshee14d94a32012-06-13 13:46:58 -0500437 if (!(val & ~(LVDS_PIPE_MASK | LVDS_DETECTED)))
Takashi Iwaib0354382012-03-20 13:07:05 +0100438 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
Paulo Zanonia928d532012-05-04 17:18:15 -0300787static void ironlake_wait_for_vblank(struct drm_device *dev, int pipe)
788{
789 struct drm_i915_private *dev_priv = dev->dev_private;
790 u32 frame, frame_reg = PIPEFRAME(pipe);
791
792 frame = I915_READ(frame_reg);
793
794 if (wait_for(I915_READ_NOTRACE(frame_reg) != frame, 50))
795 DRM_DEBUG_KMS("vblank wait timed out\n");
796}
797
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700798/**
799 * intel_wait_for_vblank - wait for vblank on a given pipe
800 * @dev: drm device
801 * @pipe: pipe to wait for
802 *
803 * Wait for vblank to occur on a given pipe. Needed for various bits of
804 * mode setting code.
805 */
806void intel_wait_for_vblank(struct drm_device *dev, int pipe)
Jesse Barnes79e53942008-11-07 14:24:08 -0800807{
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700808 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800809 int pipestat_reg = PIPESTAT(pipe);
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700810
Paulo Zanonia928d532012-05-04 17:18:15 -0300811 if (INTEL_INFO(dev)->gen >= 5) {
812 ironlake_wait_for_vblank(dev, pipe);
813 return;
814 }
815
Chris Wilson300387c2010-09-05 20:25:43 +0100816 /* Clear existing vblank status. Note this will clear any other
817 * sticky status fields as well.
818 *
819 * This races with i915_driver_irq_handler() with the result
820 * that either function could miss a vblank event. Here it is not
821 * fatal, as we will either wait upon the next vblank interrupt or
822 * timeout. Generally speaking intel_wait_for_vblank() is only
823 * called during modeset at which time the GPU should be idle and
824 * should *not* be performing page flips and thus not waiting on
825 * vblanks...
826 * Currently, the result of us stealing a vblank from the irq
827 * handler is that a single frame will be skipped during swapbuffers.
828 */
829 I915_WRITE(pipestat_reg,
830 I915_READ(pipestat_reg) | PIPE_VBLANK_INTERRUPT_STATUS);
831
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700832 /* Wait for vblank interrupt bit to set */
Chris Wilson481b6af2010-08-23 17:43:35 +0100833 if (wait_for(I915_READ(pipestat_reg) &
834 PIPE_VBLANK_INTERRUPT_STATUS,
835 50))
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700836 DRM_DEBUG_KMS("vblank wait timed out\n");
837}
838
Keith Packardab7ad7f2010-10-03 00:33:06 -0700839/*
840 * intel_wait_for_pipe_off - wait for pipe to turn off
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700841 * @dev: drm device
842 * @pipe: pipe to wait for
843 *
844 * After disabling a pipe, we can't wait for vblank in the usual way,
845 * spinning on the vblank interrupt status bit, since we won't actually
846 * see an interrupt when the pipe is disabled.
847 *
Keith Packardab7ad7f2010-10-03 00:33:06 -0700848 * On Gen4 and above:
849 * wait for the pipe register state bit to turn off
850 *
851 * Otherwise:
852 * wait for the display line value to settle (it usually
853 * ends up stopping at the start of the next frame).
Chris Wilson58e10eb2010-10-03 10:56:11 +0100854 *
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700855 */
Chris Wilson58e10eb2010-10-03 10:56:11 +0100856void intel_wait_for_pipe_off(struct drm_device *dev, int pipe)
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700857{
858 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700859
Keith Packardab7ad7f2010-10-03 00:33:06 -0700860 if (INTEL_INFO(dev)->gen >= 4) {
Chris Wilson58e10eb2010-10-03 10:56:11 +0100861 int reg = PIPECONF(pipe);
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700862
Keith Packardab7ad7f2010-10-03 00:33:06 -0700863 /* Wait for the Pipe State to go off */
Chris Wilson58e10eb2010-10-03 10:56:11 +0100864 if (wait_for((I915_READ(reg) & I965_PIPECONF_ACTIVE) == 0,
865 100))
Keith Packardab7ad7f2010-10-03 00:33:06 -0700866 DRM_DEBUG_KMS("pipe_off wait timed out\n");
867 } else {
Paulo Zanoni837ba002012-05-04 17:18:14 -0300868 u32 last_line, line_mask;
Chris Wilson58e10eb2010-10-03 10:56:11 +0100869 int reg = PIPEDSL(pipe);
Keith Packardab7ad7f2010-10-03 00:33:06 -0700870 unsigned long timeout = jiffies + msecs_to_jiffies(100);
871
Paulo Zanoni837ba002012-05-04 17:18:14 -0300872 if (IS_GEN2(dev))
873 line_mask = DSL_LINEMASK_GEN2;
874 else
875 line_mask = DSL_LINEMASK_GEN3;
876
Keith Packardab7ad7f2010-10-03 00:33:06 -0700877 /* Wait for the display line to settle */
878 do {
Paulo Zanoni837ba002012-05-04 17:18:14 -0300879 last_line = I915_READ(reg) & line_mask;
Keith Packardab7ad7f2010-10-03 00:33:06 -0700880 mdelay(5);
Paulo Zanoni837ba002012-05-04 17:18:14 -0300881 } while (((I915_READ(reg) & line_mask) != last_line) &&
Keith Packardab7ad7f2010-10-03 00:33:06 -0700882 time_after(timeout, jiffies));
883 if (time_after(jiffies, timeout))
884 DRM_DEBUG_KMS("pipe_off wait timed out\n");
885 }
Jesse Barnes79e53942008-11-07 14:24:08 -0800886}
887
Jesse Barnesb24e7172011-01-04 15:09:30 -0800888static const char *state_string(bool enabled)
889{
890 return enabled ? "on" : "off";
891}
892
893/* Only for pre-ILK configs */
894static void assert_pll(struct drm_i915_private *dev_priv,
895 enum pipe pipe, bool state)
896{
897 int reg;
898 u32 val;
899 bool cur_state;
900
901 reg = DPLL(pipe);
902 val = I915_READ(reg);
903 cur_state = !!(val & DPLL_VCO_ENABLE);
904 WARN(cur_state != state,
905 "PLL state assertion failure (expected %s, current %s)\n",
906 state_string(state), state_string(cur_state));
907}
908#define assert_pll_enabled(d, p) assert_pll(d, p, true)
909#define assert_pll_disabled(d, p) assert_pll(d, p, false)
910
Jesse Barnes040484a2011-01-03 12:14:26 -0800911/* For ILK+ */
912static void assert_pch_pll(struct drm_i915_private *dev_priv,
Chris Wilson92b27b02012-05-20 18:10:50 +0100913 struct intel_pch_pll *pll,
914 struct intel_crtc *crtc,
915 bool state)
Jesse Barnes040484a2011-01-03 12:14:26 -0800916{
Jesse Barnes040484a2011-01-03 12:14:26 -0800917 u32 val;
918 bool cur_state;
919
Eugeni Dodonov9d82aa12012-05-09 15:37:17 -0300920 if (HAS_PCH_LPT(dev_priv->dev)) {
921 DRM_DEBUG_DRIVER("LPT detected: skipping PCH PLL test\n");
922 return;
923 }
924
Chris Wilson92b27b02012-05-20 18:10:50 +0100925 if (WARN (!pll,
926 "asserting PCH PLL %s with no PLL\n", state_string(state)))
Jesse Barnesee7b9f92012-04-20 17:11:53 +0100927 return;
Jesse Barnesee7b9f92012-04-20 17:11:53 +0100928
Chris Wilson92b27b02012-05-20 18:10:50 +0100929 val = I915_READ(pll->pll_reg);
930 cur_state = !!(val & DPLL_VCO_ENABLE);
931 WARN(cur_state != state,
932 "PCH PLL state for reg %x assertion failure (expected %s, current %s), val=%08x\n",
933 pll->pll_reg, state_string(state), state_string(cur_state), val);
934
935 /* Make sure the selected PLL is correctly attached to the transcoder */
936 if (crtc && HAS_PCH_CPT(dev_priv->dev)) {
Jesse Barnesd3ccbe82011-10-12 09:27:42 -0700937 u32 pch_dpll;
938
939 pch_dpll = I915_READ(PCH_DPLL_SEL);
Chris Wilson92b27b02012-05-20 18:10:50 +0100940 cur_state = pll->pll_reg == _PCH_DPLL_B;
941 if (!WARN(((pch_dpll >> (4 * crtc->pipe)) & 1) != cur_state,
942 "PLL[%d] not attached to this transcoder %d: %08x\n",
943 cur_state, crtc->pipe, pch_dpll)) {
944 cur_state = !!(val >> (4*crtc->pipe + 3));
945 WARN(cur_state != state,
946 "PLL[%d] not %s on this transcoder %d: %08x\n",
947 pll->pll_reg == _PCH_DPLL_B,
948 state_string(state),
949 crtc->pipe,
950 val);
951 }
Jesse Barnesd3ccbe82011-10-12 09:27:42 -0700952 }
Jesse Barnes040484a2011-01-03 12:14:26 -0800953}
Chris Wilson92b27b02012-05-20 18:10:50 +0100954#define assert_pch_pll_enabled(d, p, c) assert_pch_pll(d, p, c, true)
955#define assert_pch_pll_disabled(d, p, c) assert_pch_pll(d, p, c, false)
Jesse Barnes040484a2011-01-03 12:14:26 -0800956
957static void assert_fdi_tx(struct drm_i915_private *dev_priv,
958 enum pipe pipe, bool state)
959{
960 int reg;
961 u32 val;
962 bool cur_state;
963
Eugeni Dodonovbf507ef2012-05-09 15:37:18 -0300964 if (IS_HASWELL(dev_priv->dev)) {
965 /* On Haswell, DDI is used instead of FDI_TX_CTL */
966 reg = DDI_FUNC_CTL(pipe);
967 val = I915_READ(reg);
968 cur_state = !!(val & PIPE_DDI_FUNC_ENABLE);
969 } else {
970 reg = FDI_TX_CTL(pipe);
971 val = I915_READ(reg);
972 cur_state = !!(val & FDI_TX_ENABLE);
973 }
Jesse Barnes040484a2011-01-03 12:14:26 -0800974 WARN(cur_state != state,
975 "FDI TX state assertion failure (expected %s, current %s)\n",
976 state_string(state), state_string(cur_state));
977}
978#define assert_fdi_tx_enabled(d, p) assert_fdi_tx(d, p, true)
979#define assert_fdi_tx_disabled(d, p) assert_fdi_tx(d, p, false)
980
981static void assert_fdi_rx(struct drm_i915_private *dev_priv,
982 enum pipe pipe, bool state)
983{
984 int reg;
985 u32 val;
986 bool cur_state;
987
Eugeni Dodonov59c859d2012-05-09 15:37:19 -0300988 if (IS_HASWELL(dev_priv->dev) && pipe > 0) {
989 DRM_ERROR("Attempting to enable FDI_RX on Haswell pipe > 0\n");
990 return;
991 } else {
992 reg = FDI_RX_CTL(pipe);
993 val = I915_READ(reg);
994 cur_state = !!(val & FDI_RX_ENABLE);
995 }
Jesse Barnes040484a2011-01-03 12:14:26 -0800996 WARN(cur_state != state,
997 "FDI RX state assertion failure (expected %s, current %s)\n",
998 state_string(state), state_string(cur_state));
999}
1000#define assert_fdi_rx_enabled(d, p) assert_fdi_rx(d, p, true)
1001#define assert_fdi_rx_disabled(d, p) assert_fdi_rx(d, p, false)
1002
1003static void assert_fdi_tx_pll_enabled(struct drm_i915_private *dev_priv,
1004 enum pipe pipe)
1005{
1006 int reg;
1007 u32 val;
1008
1009 /* ILK FDI PLL is always enabled */
1010 if (dev_priv->info->gen == 5)
1011 return;
1012
Eugeni Dodonovbf507ef2012-05-09 15:37:18 -03001013 /* On Haswell, DDI ports are responsible for the FDI PLL setup */
1014 if (IS_HASWELL(dev_priv->dev))
1015 return;
1016
Jesse Barnes040484a2011-01-03 12:14:26 -08001017 reg = FDI_TX_CTL(pipe);
1018 val = I915_READ(reg);
1019 WARN(!(val & FDI_TX_PLL_ENABLE), "FDI TX PLL assertion failure, should be active but is disabled\n");
1020}
1021
1022static void assert_fdi_rx_pll_enabled(struct drm_i915_private *dev_priv,
1023 enum pipe pipe)
1024{
1025 int reg;
1026 u32 val;
1027
Eugeni Dodonov59c859d2012-05-09 15:37:19 -03001028 if (IS_HASWELL(dev_priv->dev) && pipe > 0) {
1029 DRM_ERROR("Attempting to enable FDI on Haswell with pipe > 0\n");
1030 return;
1031 }
Jesse Barnes040484a2011-01-03 12:14:26 -08001032 reg = FDI_RX_CTL(pipe);
1033 val = I915_READ(reg);
1034 WARN(!(val & FDI_RX_PLL_ENABLE), "FDI RX PLL assertion failure, should be active but is disabled\n");
1035}
1036
Jesse Barnesea0760c2011-01-04 15:09:32 -08001037static void assert_panel_unlocked(struct drm_i915_private *dev_priv,
1038 enum pipe pipe)
1039{
1040 int pp_reg, lvds_reg;
1041 u32 val;
1042 enum pipe panel_pipe = PIPE_A;
Thomas Jarosch0de3b482011-08-25 15:37:45 +02001043 bool locked = true;
Jesse Barnesea0760c2011-01-04 15:09:32 -08001044
1045 if (HAS_PCH_SPLIT(dev_priv->dev)) {
1046 pp_reg = PCH_PP_CONTROL;
1047 lvds_reg = PCH_LVDS;
1048 } else {
1049 pp_reg = PP_CONTROL;
1050 lvds_reg = LVDS;
1051 }
1052
1053 val = I915_READ(pp_reg);
1054 if (!(val & PANEL_POWER_ON) ||
1055 ((val & PANEL_UNLOCK_REGS) == PANEL_UNLOCK_REGS))
1056 locked = false;
1057
1058 if (I915_READ(lvds_reg) & LVDS_PIPEB_SELECT)
1059 panel_pipe = PIPE_B;
1060
1061 WARN(panel_pipe == pipe && locked,
1062 "panel assertion failure, pipe %c regs locked\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001063 pipe_name(pipe));
Jesse Barnesea0760c2011-01-04 15:09:32 -08001064}
1065
Jesse Barnesb840d907f2011-12-13 13:19:38 -08001066void assert_pipe(struct drm_i915_private *dev_priv,
1067 enum pipe pipe, bool state)
Jesse Barnesb24e7172011-01-04 15:09:30 -08001068{
1069 int reg;
1070 u32 val;
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001071 bool cur_state;
Jesse Barnesb24e7172011-01-04 15:09:30 -08001072
Daniel Vetter8e636782012-01-22 01:36:48 +01001073 /* if we need the pipe A quirk it must be always on */
1074 if (pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE)
1075 state = true;
1076
Jesse Barnesb24e7172011-01-04 15:09:30 -08001077 reg = PIPECONF(pipe);
1078 val = I915_READ(reg);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001079 cur_state = !!(val & PIPECONF_ENABLE);
1080 WARN(cur_state != state,
1081 "pipe %c assertion failure (expected %s, current %s)\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001082 pipe_name(pipe), state_string(state), state_string(cur_state));
Jesse Barnesb24e7172011-01-04 15:09:30 -08001083}
1084
Chris Wilson931872f2012-01-16 23:01:13 +00001085static void assert_plane(struct drm_i915_private *dev_priv,
1086 enum plane plane, bool state)
Jesse Barnesb24e7172011-01-04 15:09:30 -08001087{
1088 int reg;
1089 u32 val;
Chris Wilson931872f2012-01-16 23:01:13 +00001090 bool cur_state;
Jesse Barnesb24e7172011-01-04 15:09:30 -08001091
1092 reg = DSPCNTR(plane);
1093 val = I915_READ(reg);
Chris Wilson931872f2012-01-16 23:01:13 +00001094 cur_state = !!(val & DISPLAY_PLANE_ENABLE);
1095 WARN(cur_state != state,
1096 "plane %c assertion failure (expected %s, current %s)\n",
1097 plane_name(plane), state_string(state), state_string(cur_state));
Jesse Barnesb24e7172011-01-04 15:09:30 -08001098}
1099
Chris Wilson931872f2012-01-16 23:01:13 +00001100#define assert_plane_enabled(d, p) assert_plane(d, p, true)
1101#define assert_plane_disabled(d, p) assert_plane(d, p, false)
1102
Jesse Barnesb24e7172011-01-04 15:09:30 -08001103static void assert_planes_disabled(struct drm_i915_private *dev_priv,
1104 enum pipe pipe)
1105{
1106 int reg, i;
1107 u32 val;
1108 int cur_pipe;
1109
Jesse Barnes19ec1352011-02-02 12:28:02 -08001110 /* Planes are fixed to pipes on ILK+ */
Adam Jackson28c057942011-10-07 14:38:42 -04001111 if (HAS_PCH_SPLIT(dev_priv->dev)) {
1112 reg = DSPCNTR(pipe);
1113 val = I915_READ(reg);
1114 WARN((val & DISPLAY_PLANE_ENABLE),
1115 "plane %c assertion failure, should be disabled but not\n",
1116 plane_name(pipe));
Jesse Barnes19ec1352011-02-02 12:28:02 -08001117 return;
Adam Jackson28c057942011-10-07 14:38:42 -04001118 }
Jesse Barnes19ec1352011-02-02 12:28:02 -08001119
Jesse Barnesb24e7172011-01-04 15:09:30 -08001120 /* Need to check both planes against the pipe */
1121 for (i = 0; i < 2; i++) {
1122 reg = DSPCNTR(i);
1123 val = I915_READ(reg);
1124 cur_pipe = (val & DISPPLANE_SEL_PIPE_MASK) >>
1125 DISPPLANE_SEL_PIPE_SHIFT;
1126 WARN((val & DISPLAY_PLANE_ENABLE) && pipe == cur_pipe,
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001127 "plane %c assertion failure, should be off on pipe %c but is still active\n",
1128 plane_name(i), pipe_name(pipe));
Jesse Barnesb24e7172011-01-04 15:09:30 -08001129 }
1130}
1131
Jesse Barnes92f25842011-01-04 15:09:34 -08001132static void assert_pch_refclk_enabled(struct drm_i915_private *dev_priv)
1133{
1134 u32 val;
1135 bool enabled;
1136
Eugeni Dodonov9d82aa12012-05-09 15:37:17 -03001137 if (HAS_PCH_LPT(dev_priv->dev)) {
1138 DRM_DEBUG_DRIVER("LPT does not has PCH refclk, skipping check\n");
1139 return;
1140 }
1141
Jesse Barnes92f25842011-01-04 15:09:34 -08001142 val = I915_READ(PCH_DREF_CONTROL);
1143 enabled = !!(val & (DREF_SSC_SOURCE_MASK | DREF_NONSPREAD_SOURCE_MASK |
1144 DREF_SUPERSPREAD_SOURCE_MASK));
1145 WARN(!enabled, "PCH refclk assertion failure, should be active but is disabled\n");
1146}
1147
1148static void assert_transcoder_disabled(struct drm_i915_private *dev_priv,
1149 enum pipe pipe)
1150{
1151 int reg;
1152 u32 val;
1153 bool enabled;
1154
1155 reg = TRANSCONF(pipe);
1156 val = I915_READ(reg);
1157 enabled = !!(val & TRANS_ENABLE);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001158 WARN(enabled,
1159 "transcoder assertion failed, should be off on pipe %c but is still active\n",
1160 pipe_name(pipe));
Jesse Barnes92f25842011-01-04 15:09:34 -08001161}
1162
Keith Packard4e634382011-08-06 10:39:45 -07001163static bool dp_pipe_enabled(struct drm_i915_private *dev_priv,
1164 enum pipe pipe, u32 port_sel, u32 val)
Keith Packardf0575e92011-07-25 22:12:43 -07001165{
1166 if ((val & DP_PORT_EN) == 0)
1167 return false;
1168
1169 if (HAS_PCH_CPT(dev_priv->dev)) {
1170 u32 trans_dp_ctl_reg = TRANS_DP_CTL(pipe);
1171 u32 trans_dp_ctl = I915_READ(trans_dp_ctl_reg);
1172 if ((trans_dp_ctl & TRANS_DP_PORT_SEL_MASK) != port_sel)
1173 return false;
1174 } else {
1175 if ((val & DP_PIPE_MASK) != (pipe << 30))
1176 return false;
1177 }
1178 return true;
1179}
1180
Keith Packard1519b992011-08-06 10:35:34 -07001181static bool hdmi_pipe_enabled(struct drm_i915_private *dev_priv,
1182 enum pipe pipe, u32 val)
1183{
1184 if ((val & PORT_ENABLE) == 0)
1185 return false;
1186
1187 if (HAS_PCH_CPT(dev_priv->dev)) {
1188 if ((val & PORT_TRANS_SEL_MASK) != PORT_TRANS_SEL_CPT(pipe))
1189 return false;
1190 } else {
1191 if ((val & TRANSCODER_MASK) != TRANSCODER(pipe))
1192 return false;
1193 }
1194 return true;
1195}
1196
1197static bool lvds_pipe_enabled(struct drm_i915_private *dev_priv,
1198 enum pipe pipe, u32 val)
1199{
1200 if ((val & LVDS_PORT_EN) == 0)
1201 return false;
1202
1203 if (HAS_PCH_CPT(dev_priv->dev)) {
1204 if ((val & PORT_TRANS_SEL_MASK) != PORT_TRANS_SEL_CPT(pipe))
1205 return false;
1206 } else {
1207 if ((val & LVDS_PIPE_MASK) != LVDS_PIPE(pipe))
1208 return false;
1209 }
1210 return true;
1211}
1212
1213static bool adpa_pipe_enabled(struct drm_i915_private *dev_priv,
1214 enum pipe pipe, u32 val)
1215{
1216 if ((val & ADPA_DAC_ENABLE) == 0)
1217 return false;
1218 if (HAS_PCH_CPT(dev_priv->dev)) {
1219 if ((val & PORT_TRANS_SEL_MASK) != PORT_TRANS_SEL_CPT(pipe))
1220 return false;
1221 } else {
1222 if ((val & ADPA_PIPE_SELECT_MASK) != ADPA_PIPE_SELECT(pipe))
1223 return false;
1224 }
1225 return true;
1226}
1227
Jesse Barnes291906f2011-02-02 12:28:03 -08001228static void assert_pch_dp_disabled(struct drm_i915_private *dev_priv,
Keith Packardf0575e92011-07-25 22:12:43 -07001229 enum pipe pipe, int reg, u32 port_sel)
Jesse Barnes291906f2011-02-02 12:28:03 -08001230{
Jesse Barnes47a05ec2011-02-07 13:46:40 -08001231 u32 val = I915_READ(reg);
Keith Packard4e634382011-08-06 10:39:45 -07001232 WARN(dp_pipe_enabled(dev_priv, pipe, port_sel, val),
Jesse Barnes291906f2011-02-02 12:28:03 -08001233 "PCH DP (0x%08x) enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001234 reg, pipe_name(pipe));
Daniel Vetterde9a35a2012-06-05 11:03:40 +02001235
1236 WARN(HAS_PCH_IBX(dev_priv->dev) && (val & SDVO_PIPE_B_SELECT),
1237 "IBX PCH dp port still using transcoder B\n");
Jesse Barnes291906f2011-02-02 12:28:03 -08001238}
1239
1240static void assert_pch_hdmi_disabled(struct drm_i915_private *dev_priv,
1241 enum pipe pipe, int reg)
1242{
Jesse Barnes47a05ec2011-02-07 13:46:40 -08001243 u32 val = I915_READ(reg);
Keith Packard1519b992011-08-06 10:35:34 -07001244 WARN(hdmi_pipe_enabled(dev_priv, val, pipe),
Adam Jackson23c99e72011-10-07 14:38:43 -04001245 "PCH HDMI (0x%08x) enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001246 reg, pipe_name(pipe));
Daniel Vetterde9a35a2012-06-05 11:03:40 +02001247
1248 WARN(HAS_PCH_IBX(dev_priv->dev) && (val & SDVO_PIPE_B_SELECT),
1249 "IBX PCH hdmi port still using transcoder B\n");
Jesse Barnes291906f2011-02-02 12:28:03 -08001250}
1251
1252static void assert_pch_ports_disabled(struct drm_i915_private *dev_priv,
1253 enum pipe pipe)
1254{
1255 int reg;
1256 u32 val;
Jesse Barnes291906f2011-02-02 12:28:03 -08001257
Keith Packardf0575e92011-07-25 22:12:43 -07001258 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_B, TRANS_DP_PORT_SEL_B);
1259 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_C, TRANS_DP_PORT_SEL_C);
1260 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_D, TRANS_DP_PORT_SEL_D);
Jesse Barnes291906f2011-02-02 12:28:03 -08001261
1262 reg = PCH_ADPA;
1263 val = I915_READ(reg);
Keith Packard1519b992011-08-06 10:35:34 -07001264 WARN(adpa_pipe_enabled(dev_priv, val, pipe),
Jesse Barnes291906f2011-02-02 12:28:03 -08001265 "PCH VGA enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001266 pipe_name(pipe));
Jesse Barnes291906f2011-02-02 12:28:03 -08001267
1268 reg = PCH_LVDS;
1269 val = I915_READ(reg);
Keith Packard1519b992011-08-06 10:35:34 -07001270 WARN(lvds_pipe_enabled(dev_priv, val, pipe),
Jesse Barnes291906f2011-02-02 12:28:03 -08001271 "PCH LVDS enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001272 pipe_name(pipe));
Jesse Barnes291906f2011-02-02 12:28:03 -08001273
1274 assert_pch_hdmi_disabled(dev_priv, pipe, HDMIB);
1275 assert_pch_hdmi_disabled(dev_priv, pipe, HDMIC);
1276 assert_pch_hdmi_disabled(dev_priv, pipe, HDMID);
1277}
1278
Jesse Barnesb24e7172011-01-04 15:09:30 -08001279/**
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001280 * intel_enable_pll - enable a PLL
1281 * @dev_priv: i915 private structure
1282 * @pipe: pipe PLL to enable
1283 *
1284 * Enable @pipe's PLL so we can start pumping pixels from a plane. Check to
1285 * make sure the PLL reg is writable first though, since the panel write
1286 * protect mechanism may be enabled.
1287 *
1288 * Note! This is for pre-ILK only.
1289 */
1290static void intel_enable_pll(struct drm_i915_private *dev_priv, enum pipe pipe)
1291{
1292 int reg;
1293 u32 val;
1294
1295 /* No really, not for ILK+ */
1296 BUG_ON(dev_priv->info->gen >= 5);
1297
1298 /* PLL is protected by panel, make sure we can write it */
1299 if (IS_MOBILE(dev_priv->dev) && !IS_I830(dev_priv->dev))
1300 assert_panel_unlocked(dev_priv, pipe);
1301
1302 reg = DPLL(pipe);
1303 val = I915_READ(reg);
1304 val |= DPLL_VCO_ENABLE;
1305
1306 /* We do this three times for luck */
1307 I915_WRITE(reg, val);
1308 POSTING_READ(reg);
1309 udelay(150); /* wait for warmup */
1310 I915_WRITE(reg, val);
1311 POSTING_READ(reg);
1312 udelay(150); /* wait for warmup */
1313 I915_WRITE(reg, val);
1314 POSTING_READ(reg);
1315 udelay(150); /* wait for warmup */
1316}
1317
1318/**
1319 * intel_disable_pll - disable a PLL
1320 * @dev_priv: i915 private structure
1321 * @pipe: pipe PLL to disable
1322 *
1323 * Disable the PLL for @pipe, making sure the pipe is off first.
1324 *
1325 * Note! This is for pre-ILK only.
1326 */
1327static void intel_disable_pll(struct drm_i915_private *dev_priv, enum pipe pipe)
1328{
1329 int reg;
1330 u32 val;
1331
1332 /* Don't disable pipe A or pipe A PLLs if needed */
1333 if (pipe == PIPE_A && (dev_priv->quirks & QUIRK_PIPEA_FORCE))
1334 return;
1335
1336 /* Make sure the pipe isn't still relying on us */
1337 assert_pipe_disabled(dev_priv, pipe);
1338
1339 reg = DPLL(pipe);
1340 val = I915_READ(reg);
1341 val &= ~DPLL_VCO_ENABLE;
1342 I915_WRITE(reg, val);
1343 POSTING_READ(reg);
1344}
1345
Eugeni Dodonova416ede2012-05-09 15:37:10 -03001346/* SBI access */
1347static void
1348intel_sbi_write(struct drm_i915_private *dev_priv, u16 reg, u32 value)
1349{
1350 unsigned long flags;
1351
1352 spin_lock_irqsave(&dev_priv->dpio_lock, flags);
1353 if (wait_for((I915_READ(SBI_CTL_STAT) & SBI_READY) == 0,
1354 100)) {
1355 DRM_ERROR("timeout waiting for SBI to become ready\n");
1356 goto out_unlock;
1357 }
1358
1359 I915_WRITE(SBI_ADDR,
1360 (reg << 16));
1361 I915_WRITE(SBI_DATA,
1362 value);
1363 I915_WRITE(SBI_CTL_STAT,
1364 SBI_BUSY |
1365 SBI_CTL_OP_CRWR);
1366
1367 if (wait_for((I915_READ(SBI_CTL_STAT) & (SBI_READY | SBI_RESPONSE_SUCCESS)) == 0,
1368 100)) {
1369 DRM_ERROR("timeout waiting for SBI to complete write transaction\n");
1370 goto out_unlock;
1371 }
1372
1373out_unlock:
1374 spin_unlock_irqrestore(&dev_priv->dpio_lock, flags);
1375}
1376
1377static u32
1378intel_sbi_read(struct drm_i915_private *dev_priv, u16 reg)
1379{
1380 unsigned long flags;
1381 u32 value;
1382
1383 spin_lock_irqsave(&dev_priv->dpio_lock, flags);
1384 if (wait_for((I915_READ(SBI_CTL_STAT) & SBI_READY) == 0,
1385 100)) {
1386 DRM_ERROR("timeout waiting for SBI to become ready\n");
1387 goto out_unlock;
1388 }
1389
1390 I915_WRITE(SBI_ADDR,
1391 (reg << 16));
1392 I915_WRITE(SBI_CTL_STAT,
1393 SBI_BUSY |
1394 SBI_CTL_OP_CRRD);
1395
1396 if (wait_for((I915_READ(SBI_CTL_STAT) & (SBI_READY | SBI_RESPONSE_SUCCESS)) == 0,
1397 100)) {
1398 DRM_ERROR("timeout waiting for SBI to complete read transaction\n");
1399 goto out_unlock;
1400 }
1401
1402 value = I915_READ(SBI_DATA);
1403
1404out_unlock:
1405 spin_unlock_irqrestore(&dev_priv->dpio_lock, flags);
1406 return value;
1407}
1408
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001409/**
Jesse Barnes92f25842011-01-04 15:09:34 -08001410 * intel_enable_pch_pll - enable PCH PLL
1411 * @dev_priv: i915 private structure
1412 * @pipe: pipe PLL to enable
1413 *
1414 * The PCH PLL needs to be enabled before the PCH transcoder, since it
1415 * drives the transcoder clock.
1416 */
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001417static void intel_enable_pch_pll(struct intel_crtc *intel_crtc)
Jesse Barnes92f25842011-01-04 15:09:34 -08001418{
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001419 struct drm_i915_private *dev_priv = intel_crtc->base.dev->dev_private;
Chris Wilson48da64a2012-05-13 20:16:12 +01001420 struct intel_pch_pll *pll;
Jesse Barnes92f25842011-01-04 15:09:34 -08001421 int reg;
1422 u32 val;
1423
Chris Wilson48da64a2012-05-13 20:16:12 +01001424 /* PCH PLLs only available on ILK, SNB and IVB */
Jesse Barnes92f25842011-01-04 15:09:34 -08001425 BUG_ON(dev_priv->info->gen < 5);
Chris Wilson48da64a2012-05-13 20:16:12 +01001426 pll = intel_crtc->pch_pll;
1427 if (pll == NULL)
1428 return;
1429
1430 if (WARN_ON(pll->refcount == 0))
1431 return;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001432
1433 DRM_DEBUG_KMS("enable PCH PLL %x (active %d, on? %d)for crtc %d\n",
1434 pll->pll_reg, pll->active, pll->on,
1435 intel_crtc->base.base.id);
Jesse Barnes92f25842011-01-04 15:09:34 -08001436
1437 /* PCH refclock must be enabled first */
1438 assert_pch_refclk_enabled(dev_priv);
1439
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001440 if (pll->active++ && pll->on) {
Chris Wilson92b27b02012-05-20 18:10:50 +01001441 assert_pch_pll_enabled(dev_priv, pll, NULL);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001442 return;
1443 }
1444
1445 DRM_DEBUG_KMS("enabling PCH PLL %x\n", pll->pll_reg);
1446
1447 reg = pll->pll_reg;
Jesse Barnes92f25842011-01-04 15:09:34 -08001448 val = I915_READ(reg);
1449 val |= DPLL_VCO_ENABLE;
1450 I915_WRITE(reg, val);
1451 POSTING_READ(reg);
1452 udelay(200);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001453
1454 pll->on = true;
Jesse Barnes92f25842011-01-04 15:09:34 -08001455}
1456
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001457static void intel_disable_pch_pll(struct intel_crtc *intel_crtc)
Jesse Barnes92f25842011-01-04 15:09:34 -08001458{
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001459 struct drm_i915_private *dev_priv = intel_crtc->base.dev->dev_private;
1460 struct intel_pch_pll *pll = intel_crtc->pch_pll;
Jesse Barnes92f25842011-01-04 15:09:34 -08001461 int reg;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001462 u32 val;
Jesse Barnes4c609cb2011-09-02 12:52:11 -07001463
Jesse Barnes92f25842011-01-04 15:09:34 -08001464 /* PCH only available on ILK+ */
1465 BUG_ON(dev_priv->info->gen < 5);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001466 if (pll == NULL)
1467 return;
1468
Chris Wilson48da64a2012-05-13 20:16:12 +01001469 if (WARN_ON(pll->refcount == 0))
1470 return;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001471
1472 DRM_DEBUG_KMS("disable PCH PLL %x (active %d, on? %d) for crtc %d\n",
1473 pll->pll_reg, pll->active, pll->on,
1474 intel_crtc->base.base.id);
1475
Chris Wilson48da64a2012-05-13 20:16:12 +01001476 if (WARN_ON(pll->active == 0)) {
Chris Wilson92b27b02012-05-20 18:10:50 +01001477 assert_pch_pll_disabled(dev_priv, pll, NULL);
Chris Wilson48da64a2012-05-13 20:16:12 +01001478 return;
1479 }
1480
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001481 if (--pll->active) {
Chris Wilson92b27b02012-05-20 18:10:50 +01001482 assert_pch_pll_enabled(dev_priv, pll, NULL);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001483 return;
1484 }
1485
1486 DRM_DEBUG_KMS("disabling PCH PLL %x\n", pll->pll_reg);
Jesse Barnes92f25842011-01-04 15:09:34 -08001487
1488 /* Make sure transcoder isn't still depending on us */
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001489 assert_transcoder_disabled(dev_priv, intel_crtc->pipe);
Jesse Barnes92f25842011-01-04 15:09:34 -08001490
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001491 reg = pll->pll_reg;
Jesse Barnes92f25842011-01-04 15:09:34 -08001492 val = I915_READ(reg);
1493 val &= ~DPLL_VCO_ENABLE;
1494 I915_WRITE(reg, val);
1495 POSTING_READ(reg);
1496 udelay(200);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001497
1498 pll->on = false;
Jesse Barnes92f25842011-01-04 15:09:34 -08001499}
1500
Jesse Barnes040484a2011-01-03 12:14:26 -08001501static void intel_enable_transcoder(struct drm_i915_private *dev_priv,
1502 enum pipe pipe)
1503{
1504 int reg;
Paulo Zanoni5f7f7262012-02-03 17:47:15 -02001505 u32 val, pipeconf_val;
Paulo Zanoni7c26e5c2012-02-14 17:07:09 -02001506 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
Jesse Barnes040484a2011-01-03 12:14:26 -08001507
1508 /* PCH only available on ILK+ */
1509 BUG_ON(dev_priv->info->gen < 5);
1510
1511 /* Make sure PCH DPLL is enabled */
Chris Wilson92b27b02012-05-20 18:10:50 +01001512 assert_pch_pll_enabled(dev_priv,
1513 to_intel_crtc(crtc)->pch_pll,
1514 to_intel_crtc(crtc));
Jesse Barnes040484a2011-01-03 12:14:26 -08001515
1516 /* FDI must be feeding us bits for PCH ports */
1517 assert_fdi_tx_enabled(dev_priv, pipe);
1518 assert_fdi_rx_enabled(dev_priv, pipe);
1519
Eugeni Dodonov59c859d2012-05-09 15:37:19 -03001520 if (IS_HASWELL(dev_priv->dev) && pipe > 0) {
1521 DRM_ERROR("Attempting to enable transcoder on Haswell with pipe > 0\n");
1522 return;
1523 }
Jesse Barnes040484a2011-01-03 12:14:26 -08001524 reg = TRANSCONF(pipe);
1525 val = I915_READ(reg);
Paulo Zanoni5f7f7262012-02-03 17:47:15 -02001526 pipeconf_val = I915_READ(PIPECONF(pipe));
Jesse Barnese9bcff52011-06-24 12:19:20 -07001527
1528 if (HAS_PCH_IBX(dev_priv->dev)) {
1529 /*
1530 * make the BPC in transcoder be consistent with
1531 * that in pipeconf reg.
1532 */
1533 val &= ~PIPE_BPC_MASK;
Paulo Zanoni5f7f7262012-02-03 17:47:15 -02001534 val |= pipeconf_val & PIPE_BPC_MASK;
Jesse Barnese9bcff52011-06-24 12:19:20 -07001535 }
Paulo Zanoni5f7f7262012-02-03 17:47:15 -02001536
1537 val &= ~TRANS_INTERLACE_MASK;
1538 if ((pipeconf_val & PIPECONF_INTERLACE_MASK) == PIPECONF_INTERLACED_ILK)
Paulo Zanoni7c26e5c2012-02-14 17:07:09 -02001539 if (HAS_PCH_IBX(dev_priv->dev) &&
1540 intel_pipe_has_type(crtc, INTEL_OUTPUT_SDVO))
1541 val |= TRANS_LEGACY_INTERLACED_ILK;
1542 else
1543 val |= TRANS_INTERLACED;
Paulo Zanoni5f7f7262012-02-03 17:47:15 -02001544 else
1545 val |= TRANS_PROGRESSIVE;
1546
Jesse Barnes040484a2011-01-03 12:14:26 -08001547 I915_WRITE(reg, val | TRANS_ENABLE);
1548 if (wait_for(I915_READ(reg) & TRANS_STATE_ENABLE, 100))
1549 DRM_ERROR("failed to enable transcoder %d\n", pipe);
1550}
1551
1552static void intel_disable_transcoder(struct drm_i915_private *dev_priv,
1553 enum pipe pipe)
1554{
1555 int reg;
1556 u32 val;
1557
1558 /* FDI relies on the transcoder */
1559 assert_fdi_tx_disabled(dev_priv, pipe);
1560 assert_fdi_rx_disabled(dev_priv, pipe);
1561
Jesse Barnes291906f2011-02-02 12:28:03 -08001562 /* Ports must be off as well */
1563 assert_pch_ports_disabled(dev_priv, pipe);
1564
Jesse Barnes040484a2011-01-03 12:14:26 -08001565 reg = TRANSCONF(pipe);
1566 val = I915_READ(reg);
1567 val &= ~TRANS_ENABLE;
1568 I915_WRITE(reg, val);
1569 /* wait for PCH transcoder off, transcoder state */
1570 if (wait_for((I915_READ(reg) & TRANS_STATE_ENABLE) == 0, 50))
Jesse Barnes4c9c18c2011-10-13 09:46:32 -07001571 DRM_ERROR("failed to disable transcoder %d\n", pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08001572}
1573
Jesse Barnes92f25842011-01-04 15:09:34 -08001574/**
Chris Wilson309cfea2011-01-28 13:54:53 +00001575 * intel_enable_pipe - enable a pipe, asserting requirements
Jesse Barnesb24e7172011-01-04 15:09:30 -08001576 * @dev_priv: i915 private structure
1577 * @pipe: pipe to enable
Jesse Barnes040484a2011-01-03 12:14:26 -08001578 * @pch_port: on ILK+, is this pipe driving a PCH port or not
Jesse Barnesb24e7172011-01-04 15:09:30 -08001579 *
1580 * Enable @pipe, making sure that various hardware specific requirements
1581 * are met, if applicable, e.g. PLL enabled, LVDS pairs enabled, etc.
1582 *
1583 * @pipe should be %PIPE_A or %PIPE_B.
1584 *
1585 * Will wait until the pipe is actually running (i.e. first vblank) before
1586 * returning.
1587 */
Jesse Barnes040484a2011-01-03 12:14:26 -08001588static void intel_enable_pipe(struct drm_i915_private *dev_priv, enum pipe pipe,
1589 bool pch_port)
Jesse Barnesb24e7172011-01-04 15:09:30 -08001590{
1591 int reg;
1592 u32 val;
1593
1594 /*
1595 * A pipe without a PLL won't actually be able to drive bits from
1596 * a plane. On ILK+ the pipe PLLs are integrated, so we don't
1597 * need the check.
1598 */
1599 if (!HAS_PCH_SPLIT(dev_priv->dev))
1600 assert_pll_enabled(dev_priv, pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08001601 else {
1602 if (pch_port) {
1603 /* if driving the PCH, we need FDI enabled */
1604 assert_fdi_rx_pll_enabled(dev_priv, pipe);
1605 assert_fdi_tx_pll_enabled(dev_priv, pipe);
1606 }
1607 /* FIXME: assert CPU port conditions for SNB+ */
1608 }
Jesse Barnesb24e7172011-01-04 15:09:30 -08001609
1610 reg = PIPECONF(pipe);
1611 val = I915_READ(reg);
Chris Wilson00d70b12011-03-17 07:18:29 +00001612 if (val & PIPECONF_ENABLE)
1613 return;
1614
1615 I915_WRITE(reg, val | PIPECONF_ENABLE);
Jesse Barnesb24e7172011-01-04 15:09:30 -08001616 intel_wait_for_vblank(dev_priv->dev, pipe);
1617}
1618
1619/**
Chris Wilson309cfea2011-01-28 13:54:53 +00001620 * intel_disable_pipe - disable a pipe, asserting requirements
Jesse Barnesb24e7172011-01-04 15:09:30 -08001621 * @dev_priv: i915 private structure
1622 * @pipe: pipe to disable
1623 *
1624 * Disable @pipe, making sure that various hardware specific requirements
1625 * are met, if applicable, e.g. plane disabled, panel fitter off, etc.
1626 *
1627 * @pipe should be %PIPE_A or %PIPE_B.
1628 *
1629 * Will wait until the pipe has shut down before returning.
1630 */
1631static void intel_disable_pipe(struct drm_i915_private *dev_priv,
1632 enum pipe pipe)
1633{
1634 int reg;
1635 u32 val;
1636
1637 /*
1638 * Make sure planes won't keep trying to pump pixels to us,
1639 * or we might hang the display.
1640 */
1641 assert_planes_disabled(dev_priv, pipe);
1642
1643 /* Don't disable pipe A or pipe A PLLs if needed */
1644 if (pipe == PIPE_A && (dev_priv->quirks & QUIRK_PIPEA_FORCE))
1645 return;
1646
1647 reg = PIPECONF(pipe);
1648 val = I915_READ(reg);
Chris Wilson00d70b12011-03-17 07:18:29 +00001649 if ((val & PIPECONF_ENABLE) == 0)
1650 return;
1651
1652 I915_WRITE(reg, val & ~PIPECONF_ENABLE);
Jesse Barnesb24e7172011-01-04 15:09:30 -08001653 intel_wait_for_pipe_off(dev_priv->dev, pipe);
1654}
1655
Keith Packardd74362c2011-07-28 14:47:14 -07001656/*
1657 * Plane regs are double buffered, going from enabled->disabled needs a
1658 * trigger in order to latch. The display address reg provides this.
1659 */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03001660void intel_flush_display_plane(struct drm_i915_private *dev_priv,
Keith Packardd74362c2011-07-28 14:47:14 -07001661 enum plane plane)
1662{
1663 I915_WRITE(DSPADDR(plane), I915_READ(DSPADDR(plane)));
1664 I915_WRITE(DSPSURF(plane), I915_READ(DSPSURF(plane)));
1665}
1666
Jesse Barnesb24e7172011-01-04 15:09:30 -08001667/**
1668 * intel_enable_plane - enable a display plane on a given pipe
1669 * @dev_priv: i915 private structure
1670 * @plane: plane to enable
1671 * @pipe: pipe being fed
1672 *
1673 * Enable @plane on @pipe, making sure that @pipe is running first.
1674 */
1675static void intel_enable_plane(struct drm_i915_private *dev_priv,
1676 enum plane plane, enum pipe pipe)
1677{
1678 int reg;
1679 u32 val;
1680
1681 /* If the pipe isn't enabled, we can't pump pixels and may hang */
1682 assert_pipe_enabled(dev_priv, pipe);
1683
1684 reg = DSPCNTR(plane);
1685 val = I915_READ(reg);
Chris Wilson00d70b12011-03-17 07:18:29 +00001686 if (val & DISPLAY_PLANE_ENABLE)
1687 return;
1688
1689 I915_WRITE(reg, val | DISPLAY_PLANE_ENABLE);
Keith Packardd74362c2011-07-28 14:47:14 -07001690 intel_flush_display_plane(dev_priv, plane);
Jesse Barnesb24e7172011-01-04 15:09:30 -08001691 intel_wait_for_vblank(dev_priv->dev, pipe);
1692}
1693
Jesse Barnesb24e7172011-01-04 15:09:30 -08001694/**
1695 * intel_disable_plane - disable a display plane
1696 * @dev_priv: i915 private structure
1697 * @plane: plane to disable
1698 * @pipe: pipe consuming the data
1699 *
1700 * Disable @plane; should be an independent operation.
1701 */
1702static void intel_disable_plane(struct drm_i915_private *dev_priv,
1703 enum plane plane, enum pipe pipe)
1704{
1705 int reg;
1706 u32 val;
1707
1708 reg = DSPCNTR(plane);
1709 val = I915_READ(reg);
Chris Wilson00d70b12011-03-17 07:18:29 +00001710 if ((val & DISPLAY_PLANE_ENABLE) == 0)
1711 return;
1712
1713 I915_WRITE(reg, val & ~DISPLAY_PLANE_ENABLE);
Jesse Barnesb24e7172011-01-04 15:09:30 -08001714 intel_flush_display_plane(dev_priv, plane);
1715 intel_wait_for_vblank(dev_priv->dev, pipe);
1716}
1717
Jesse Barnes47a05ec2011-02-07 13:46:40 -08001718static void disable_pch_dp(struct drm_i915_private *dev_priv,
Keith Packardf0575e92011-07-25 22:12:43 -07001719 enum pipe pipe, int reg, u32 port_sel)
Jesse Barnes47a05ec2011-02-07 13:46:40 -08001720{
1721 u32 val = I915_READ(reg);
Keith Packard4e634382011-08-06 10:39:45 -07001722 if (dp_pipe_enabled(dev_priv, pipe, port_sel, val)) {
Keith Packardf0575e92011-07-25 22:12:43 -07001723 DRM_DEBUG_KMS("Disabling pch dp %x on pipe %d\n", reg, pipe);
Jesse Barnes47a05ec2011-02-07 13:46:40 -08001724 I915_WRITE(reg, val & ~DP_PORT_EN);
Keith Packardf0575e92011-07-25 22:12:43 -07001725 }
Jesse Barnes47a05ec2011-02-07 13:46:40 -08001726}
1727
1728static void disable_pch_hdmi(struct drm_i915_private *dev_priv,
1729 enum pipe pipe, int reg)
1730{
1731 u32 val = I915_READ(reg);
Keith Packard1519b992011-08-06 10:35:34 -07001732 if (hdmi_pipe_enabled(dev_priv, val, pipe)) {
Keith Packardf0575e92011-07-25 22:12:43 -07001733 DRM_DEBUG_KMS("Disabling pch HDMI %x on pipe %d\n",
1734 reg, pipe);
Jesse Barnes47a05ec2011-02-07 13:46:40 -08001735 I915_WRITE(reg, val & ~PORT_ENABLE);
Keith Packardf0575e92011-07-25 22:12:43 -07001736 }
Jesse Barnes47a05ec2011-02-07 13:46:40 -08001737}
1738
1739/* Disable any ports connected to this transcoder */
1740static void intel_disable_pch_ports(struct drm_i915_private *dev_priv,
1741 enum pipe pipe)
1742{
1743 u32 reg, val;
1744
1745 val = I915_READ(PCH_PP_CONTROL);
1746 I915_WRITE(PCH_PP_CONTROL, val | PANEL_UNLOCK_REGS);
1747
Keith Packardf0575e92011-07-25 22:12:43 -07001748 disable_pch_dp(dev_priv, pipe, PCH_DP_B, TRANS_DP_PORT_SEL_B);
1749 disable_pch_dp(dev_priv, pipe, PCH_DP_C, TRANS_DP_PORT_SEL_C);
1750 disable_pch_dp(dev_priv, pipe, PCH_DP_D, TRANS_DP_PORT_SEL_D);
Jesse Barnes47a05ec2011-02-07 13:46:40 -08001751
1752 reg = PCH_ADPA;
1753 val = I915_READ(reg);
Keith Packard1519b992011-08-06 10:35:34 -07001754 if (adpa_pipe_enabled(dev_priv, val, pipe))
Jesse Barnes47a05ec2011-02-07 13:46:40 -08001755 I915_WRITE(reg, val & ~ADPA_DAC_ENABLE);
1756
1757 reg = PCH_LVDS;
1758 val = I915_READ(reg);
Keith Packard1519b992011-08-06 10:35:34 -07001759 if (lvds_pipe_enabled(dev_priv, val, pipe)) {
1760 DRM_DEBUG_KMS("disable lvds on pipe %d val 0x%08x\n", pipe, val);
Jesse Barnes47a05ec2011-02-07 13:46:40 -08001761 I915_WRITE(reg, val & ~LVDS_PORT_EN);
1762 POSTING_READ(reg);
1763 udelay(100);
1764 }
1765
1766 disable_pch_hdmi(dev_priv, pipe, HDMIB);
1767 disable_pch_hdmi(dev_priv, pipe, HDMIC);
1768 disable_pch_hdmi(dev_priv, pipe, HDMID);
1769}
1770
Chris Wilson127bd2a2010-07-23 23:32:05 +01001771int
Chris Wilson48b956c2010-09-14 12:50:34 +01001772intel_pin_and_fence_fb_obj(struct drm_device *dev,
Chris Wilson05394f32010-11-08 19:18:58 +00001773 struct drm_i915_gem_object *obj,
Chris Wilson919926a2010-11-12 13:42:53 +00001774 struct intel_ring_buffer *pipelined)
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001775{
Chris Wilsonce453d82011-02-21 14:43:56 +00001776 struct drm_i915_private *dev_priv = dev->dev_private;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001777 u32 alignment;
1778 int ret;
1779
Chris Wilson05394f32010-11-08 19:18:58 +00001780 switch (obj->tiling_mode) {
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001781 case I915_TILING_NONE:
Chris Wilson534843d2010-07-05 18:01:46 +01001782 if (IS_BROADWATER(dev) || IS_CRESTLINE(dev))
1783 alignment = 128 * 1024;
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001784 else if (INTEL_INFO(dev)->gen >= 4)
Chris Wilson534843d2010-07-05 18:01:46 +01001785 alignment = 4 * 1024;
1786 else
1787 alignment = 64 * 1024;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001788 break;
1789 case I915_TILING_X:
1790 /* pin() will align the object as required by fence */
1791 alignment = 0;
1792 break;
1793 case I915_TILING_Y:
1794 /* FIXME: Is this true? */
1795 DRM_ERROR("Y tiled not allowed for scan out buffers\n");
1796 return -EINVAL;
1797 default:
1798 BUG();
1799 }
1800
Chris Wilsonce453d82011-02-21 14:43:56 +00001801 dev_priv->mm.interruptible = false;
Chris Wilson2da3b9b2011-04-14 09:41:17 +01001802 ret = i915_gem_object_pin_to_display_plane(obj, alignment, pipelined);
Chris Wilson48b956c2010-09-14 12:50:34 +01001803 if (ret)
Chris Wilsonce453d82011-02-21 14:43:56 +00001804 goto err_interruptible;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001805
1806 /* Install a fence for tiled scan-out. Pre-i965 always needs a
1807 * fence, whereas 965+ only requires a fence if using
1808 * framebuffer compression. For simplicity, we always install
1809 * a fence as the cost is not that onerous.
1810 */
Chris Wilson06d98132012-04-17 15:31:24 +01001811 ret = i915_gem_object_get_fence(obj);
Chris Wilson9a5a53b2012-03-22 15:10:00 +00001812 if (ret)
1813 goto err_unpin;
Chris Wilson1690e1e2011-12-14 13:57:08 +01001814
Chris Wilson9a5a53b2012-03-22 15:10:00 +00001815 i915_gem_object_pin_fence(obj);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001816
Chris Wilsonce453d82011-02-21 14:43:56 +00001817 dev_priv->mm.interruptible = true;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001818 return 0;
Chris Wilson48b956c2010-09-14 12:50:34 +01001819
1820err_unpin:
1821 i915_gem_object_unpin(obj);
Chris Wilsonce453d82011-02-21 14:43:56 +00001822err_interruptible:
1823 dev_priv->mm.interruptible = true;
Chris Wilson48b956c2010-09-14 12:50:34 +01001824 return ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001825}
1826
Chris Wilson1690e1e2011-12-14 13:57:08 +01001827void intel_unpin_fb_obj(struct drm_i915_gem_object *obj)
1828{
1829 i915_gem_object_unpin_fence(obj);
1830 i915_gem_object_unpin(obj);
1831}
1832
Jesse Barnes17638cd2011-06-24 12:19:23 -07001833static int i9xx_update_plane(struct drm_crtc *crtc, struct drm_framebuffer *fb,
1834 int x, int y)
Jesse Barnes81255562010-08-02 12:07:50 -07001835{
1836 struct drm_device *dev = crtc->dev;
1837 struct drm_i915_private *dev_priv = dev->dev_private;
1838 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1839 struct intel_framebuffer *intel_fb;
Chris Wilson05394f32010-11-08 19:18:58 +00001840 struct drm_i915_gem_object *obj;
Jesse Barnes81255562010-08-02 12:07:50 -07001841 int plane = intel_crtc->plane;
1842 unsigned long Start, Offset;
Jesse Barnes81255562010-08-02 12:07:50 -07001843 u32 dspcntr;
Chris Wilson5eddb702010-09-11 13:48:45 +01001844 u32 reg;
Jesse Barnes81255562010-08-02 12:07:50 -07001845
1846 switch (plane) {
1847 case 0:
1848 case 1:
1849 break;
1850 default:
1851 DRM_ERROR("Can't update plane %d in SAREA\n", plane);
1852 return -EINVAL;
1853 }
1854
1855 intel_fb = to_intel_framebuffer(fb);
1856 obj = intel_fb->obj;
Jesse Barnes81255562010-08-02 12:07:50 -07001857
Chris Wilson5eddb702010-09-11 13:48:45 +01001858 reg = DSPCNTR(plane);
1859 dspcntr = I915_READ(reg);
Jesse Barnes81255562010-08-02 12:07:50 -07001860 /* Mask out pixel format bits in case we change it */
1861 dspcntr &= ~DISPPLANE_PIXFORMAT_MASK;
1862 switch (fb->bits_per_pixel) {
1863 case 8:
1864 dspcntr |= DISPPLANE_8BPP;
1865 break;
1866 case 16:
1867 if (fb->depth == 15)
1868 dspcntr |= DISPPLANE_15_16BPP;
1869 else
1870 dspcntr |= DISPPLANE_16BPP;
1871 break;
1872 case 24:
1873 case 32:
1874 dspcntr |= DISPPLANE_32BPP_NO_ALPHA;
1875 break;
1876 default:
Jesse Barnes17638cd2011-06-24 12:19:23 -07001877 DRM_ERROR("Unknown color depth %d\n", fb->bits_per_pixel);
Jesse Barnes81255562010-08-02 12:07:50 -07001878 return -EINVAL;
1879 }
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001880 if (INTEL_INFO(dev)->gen >= 4) {
Chris Wilson05394f32010-11-08 19:18:58 +00001881 if (obj->tiling_mode != I915_TILING_NONE)
Jesse Barnes81255562010-08-02 12:07:50 -07001882 dspcntr |= DISPPLANE_TILED;
1883 else
1884 dspcntr &= ~DISPPLANE_TILED;
1885 }
1886
Chris Wilson5eddb702010-09-11 13:48:45 +01001887 I915_WRITE(reg, dspcntr);
Jesse Barnes81255562010-08-02 12:07:50 -07001888
Chris Wilson05394f32010-11-08 19:18:58 +00001889 Start = obj->gtt_offset;
Ville Syrjälä01f2c772011-12-20 00:06:49 +02001890 Offset = y * fb->pitches[0] + x * (fb->bits_per_pixel / 8);
Jesse Barnes81255562010-08-02 12:07:50 -07001891
Chris Wilson4e6cfef2010-08-08 13:20:19 +01001892 DRM_DEBUG_KMS("Writing base %08lX %08lX %d %d %d\n",
Ville Syrjälä01f2c772011-12-20 00:06:49 +02001893 Start, Offset, x, y, fb->pitches[0]);
1894 I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]);
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001895 if (INTEL_INFO(dev)->gen >= 4) {
Armin Reese446f2542012-03-30 16:20:16 -07001896 I915_MODIFY_DISPBASE(DSPSURF(plane), Start);
Chris Wilson5eddb702010-09-11 13:48:45 +01001897 I915_WRITE(DSPTILEOFF(plane), (y << 16) | x);
1898 I915_WRITE(DSPADDR(plane), Offset);
1899 } else
1900 I915_WRITE(DSPADDR(plane), Start + Offset);
1901 POSTING_READ(reg);
Jesse Barnes81255562010-08-02 12:07:50 -07001902
Jesse Barnes17638cd2011-06-24 12:19:23 -07001903 return 0;
1904}
1905
1906static int ironlake_update_plane(struct drm_crtc *crtc,
1907 struct drm_framebuffer *fb, int x, int y)
1908{
1909 struct drm_device *dev = crtc->dev;
1910 struct drm_i915_private *dev_priv = dev->dev_private;
1911 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1912 struct intel_framebuffer *intel_fb;
1913 struct drm_i915_gem_object *obj;
1914 int plane = intel_crtc->plane;
1915 unsigned long Start, Offset;
1916 u32 dspcntr;
1917 u32 reg;
1918
1919 switch (plane) {
1920 case 0:
1921 case 1:
Jesse Barnes27f82272011-09-02 12:54:37 -07001922 case 2:
Jesse Barnes17638cd2011-06-24 12:19:23 -07001923 break;
1924 default:
1925 DRM_ERROR("Can't update plane %d in SAREA\n", plane);
1926 return -EINVAL;
1927 }
1928
1929 intel_fb = to_intel_framebuffer(fb);
1930 obj = intel_fb->obj;
1931
1932 reg = DSPCNTR(plane);
1933 dspcntr = I915_READ(reg);
1934 /* Mask out pixel format bits in case we change it */
1935 dspcntr &= ~DISPPLANE_PIXFORMAT_MASK;
1936 switch (fb->bits_per_pixel) {
1937 case 8:
1938 dspcntr |= DISPPLANE_8BPP;
1939 break;
1940 case 16:
1941 if (fb->depth != 16)
1942 return -EINVAL;
1943
1944 dspcntr |= DISPPLANE_16BPP;
1945 break;
1946 case 24:
1947 case 32:
1948 if (fb->depth == 24)
1949 dspcntr |= DISPPLANE_32BPP_NO_ALPHA;
1950 else if (fb->depth == 30)
1951 dspcntr |= DISPPLANE_32BPP_30BIT_NO_ALPHA;
1952 else
1953 return -EINVAL;
1954 break;
1955 default:
1956 DRM_ERROR("Unknown color depth %d\n", fb->bits_per_pixel);
1957 return -EINVAL;
1958 }
1959
1960 if (obj->tiling_mode != I915_TILING_NONE)
1961 dspcntr |= DISPPLANE_TILED;
1962 else
1963 dspcntr &= ~DISPPLANE_TILED;
1964
1965 /* must disable */
1966 dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE;
1967
1968 I915_WRITE(reg, dspcntr);
1969
1970 Start = obj->gtt_offset;
Ville Syrjälä01f2c772011-12-20 00:06:49 +02001971 Offset = y * fb->pitches[0] + x * (fb->bits_per_pixel / 8);
Jesse Barnes17638cd2011-06-24 12:19:23 -07001972
1973 DRM_DEBUG_KMS("Writing base %08lX %08lX %d %d %d\n",
Ville Syrjälä01f2c772011-12-20 00:06:49 +02001974 Start, Offset, x, y, fb->pitches[0]);
1975 I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]);
Armin Reese446f2542012-03-30 16:20:16 -07001976 I915_MODIFY_DISPBASE(DSPSURF(plane), Start);
Jesse Barnes17638cd2011-06-24 12:19:23 -07001977 I915_WRITE(DSPTILEOFF(plane), (y << 16) | x);
1978 I915_WRITE(DSPADDR(plane), Offset);
1979 POSTING_READ(reg);
1980
1981 return 0;
1982}
1983
1984/* Assume fb object is pinned & idle & fenced and just update base pointers */
1985static int
1986intel_pipe_set_base_atomic(struct drm_crtc *crtc, struct drm_framebuffer *fb,
1987 int x, int y, enum mode_set_atomic state)
1988{
1989 struct drm_device *dev = crtc->dev;
1990 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes17638cd2011-06-24 12:19:23 -07001991
Chris Wilson6b8e6ed2012-04-17 15:08:19 +01001992 if (dev_priv->display.disable_fbc)
1993 dev_priv->display.disable_fbc(dev);
Daniel Vetter3dec0092010-08-20 21:40:52 +02001994 intel_increase_pllclock(crtc);
Jesse Barnes81255562010-08-02 12:07:50 -07001995
Chris Wilson6b8e6ed2012-04-17 15:08:19 +01001996 return dev_priv->display.update_plane(crtc, fb, x, y);
Jesse Barnes81255562010-08-02 12:07:50 -07001997}
1998
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001999static int
Chris Wilson14667a42012-04-03 17:58:35 +01002000intel_finish_fb(struct drm_framebuffer *old_fb)
2001{
2002 struct drm_i915_gem_object *obj = to_intel_framebuffer(old_fb)->obj;
2003 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
2004 bool was_interruptible = dev_priv->mm.interruptible;
2005 int ret;
2006
2007 wait_event(dev_priv->pending_flip_queue,
2008 atomic_read(&dev_priv->mm.wedged) ||
2009 atomic_read(&obj->pending_flip) == 0);
2010
2011 /* Big Hammer, we also need to ensure that any pending
2012 * MI_WAIT_FOR_EVENT inside a user batch buffer on the
2013 * current scanout is retired before unpinning the old
2014 * framebuffer.
2015 *
2016 * This should only fail upon a hung GPU, in which case we
2017 * can safely continue.
2018 */
2019 dev_priv->mm.interruptible = false;
2020 ret = i915_gem_object_finish_gpu(obj);
2021 dev_priv->mm.interruptible = was_interruptible;
2022
2023 return ret;
2024}
2025
2026static int
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -05002027intel_pipe_set_base(struct drm_crtc *crtc, int x, int y,
2028 struct drm_framebuffer *old_fb)
Jesse Barnes79e53942008-11-07 14:24:08 -08002029{
2030 struct drm_device *dev = crtc->dev;
Chris Wilson6b8e6ed2012-04-17 15:08:19 +01002031 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -08002032 struct drm_i915_master_private *master_priv;
2033 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002034 int ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08002035
2036 /* no fb bound */
2037 if (!crtc->fb) {
Jesse Barnesa5071c22011-07-19 15:38:56 -07002038 DRM_ERROR("No FB bound\n");
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002039 return 0;
2040 }
2041
Eugeni Dodonov5826eca2012-05-09 15:37:12 -03002042 if(intel_crtc->plane > dev_priv->num_pipe) {
2043 DRM_ERROR("no plane for crtc: plane %d, num_pipes %d\n",
2044 intel_crtc->plane,
2045 dev_priv->num_pipe);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002046 return -EINVAL;
Jesse Barnes79e53942008-11-07 14:24:08 -08002047 }
2048
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002049 mutex_lock(&dev->struct_mutex);
Chris Wilson265db952010-09-20 15:41:01 +01002050 ret = intel_pin_and_fence_fb_obj(dev,
2051 to_intel_framebuffer(crtc->fb)->obj,
Chris Wilson919926a2010-11-12 13:42:53 +00002052 NULL);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002053 if (ret != 0) {
2054 mutex_unlock(&dev->struct_mutex);
Jesse Barnesa5071c22011-07-19 15:38:56 -07002055 DRM_ERROR("pin & fence failed\n");
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002056 return ret;
2057 }
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -05002058
Chris Wilson14667a42012-04-03 17:58:35 +01002059 if (old_fb)
2060 intel_finish_fb(old_fb);
Chris Wilson265db952010-09-20 15:41:01 +01002061
Chris Wilson6b8e6ed2012-04-17 15:08:19 +01002062 ret = dev_priv->display.update_plane(crtc, crtc->fb, x, y);
Chris Wilson4e6cfef2010-08-08 13:20:19 +01002063 if (ret) {
Chris Wilson1690e1e2011-12-14 13:57:08 +01002064 intel_unpin_fb_obj(to_intel_framebuffer(crtc->fb)->obj);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002065 mutex_unlock(&dev->struct_mutex);
Jesse Barnesa5071c22011-07-19 15:38:56 -07002066 DRM_ERROR("failed to update base address\n");
Chris Wilson4e6cfef2010-08-08 13:20:19 +01002067 return ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08002068 }
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -05002069
Chris Wilsonb7f1de22010-12-14 16:09:31 +00002070 if (old_fb) {
2071 intel_wait_for_vblank(dev, intel_crtc->pipe);
Chris Wilson1690e1e2011-12-14 13:57:08 +01002072 intel_unpin_fb_obj(to_intel_framebuffer(old_fb)->obj);
Chris Wilsonb7f1de22010-12-14 16:09:31 +00002073 }
Jesse Barnes652c3932009-08-17 13:31:43 -07002074
Chris Wilson6b8e6ed2012-04-17 15:08:19 +01002075 intel_update_fbc(dev);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002076 mutex_unlock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -08002077
2078 if (!dev->primary->master)
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002079 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08002080
2081 master_priv = dev->primary->master->driver_priv;
2082 if (!master_priv->sarea_priv)
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002083 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08002084
Chris Wilson265db952010-09-20 15:41:01 +01002085 if (intel_crtc->pipe) {
Jesse Barnes79e53942008-11-07 14:24:08 -08002086 master_priv->sarea_priv->pipeB_x = x;
2087 master_priv->sarea_priv->pipeB_y = y;
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002088 } else {
2089 master_priv->sarea_priv->pipeA_x = x;
2090 master_priv->sarea_priv->pipeA_y = y;
Jesse Barnes79e53942008-11-07 14:24:08 -08002091 }
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002092
2093 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08002094}
2095
Chris Wilson5eddb702010-09-11 13:48:45 +01002096static void ironlake_set_pll_edp(struct drm_crtc *crtc, int clock)
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002097{
2098 struct drm_device *dev = crtc->dev;
2099 struct drm_i915_private *dev_priv = dev->dev_private;
2100 u32 dpa_ctl;
2101
Zhao Yakui28c97732009-10-09 11:39:41 +08002102 DRM_DEBUG_KMS("eDP PLL enable for clock %d\n", clock);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002103 dpa_ctl = I915_READ(DP_A);
2104 dpa_ctl &= ~DP_PLL_FREQ_MASK;
2105
2106 if (clock < 200000) {
2107 u32 temp;
2108 dpa_ctl |= DP_PLL_FREQ_160MHZ;
2109 /* workaround for 160Mhz:
2110 1) program 0x4600c bits 15:0 = 0x8124
2111 2) program 0x46010 bit 0 = 1
2112 3) program 0x46034 bit 24 = 1
2113 4) program 0x64000 bit 14 = 1
2114 */
2115 temp = I915_READ(0x4600c);
2116 temp &= 0xffff0000;
2117 I915_WRITE(0x4600c, temp | 0x8124);
2118
2119 temp = I915_READ(0x46010);
2120 I915_WRITE(0x46010, temp | 1);
2121
2122 temp = I915_READ(0x46034);
2123 I915_WRITE(0x46034, temp | (1 << 24));
2124 } else {
2125 dpa_ctl |= DP_PLL_FREQ_270MHZ;
2126 }
2127 I915_WRITE(DP_A, dpa_ctl);
2128
Chris Wilson5eddb702010-09-11 13:48:45 +01002129 POSTING_READ(DP_A);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002130 udelay(500);
2131}
2132
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08002133static void intel_fdi_normal_train(struct drm_crtc *crtc)
2134{
2135 struct drm_device *dev = crtc->dev;
2136 struct drm_i915_private *dev_priv = dev->dev_private;
2137 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2138 int pipe = intel_crtc->pipe;
2139 u32 reg, temp;
2140
2141 /* enable normal train */
2142 reg = FDI_TX_CTL(pipe);
2143 temp = I915_READ(reg);
Keith Packard61e499b2011-05-17 16:13:52 -07002144 if (IS_IVYBRIDGE(dev)) {
Jesse Barnes357555c2011-04-28 15:09:55 -07002145 temp &= ~FDI_LINK_TRAIN_NONE_IVB;
2146 temp |= FDI_LINK_TRAIN_NONE_IVB | FDI_TX_ENHANCE_FRAME_ENABLE;
Keith Packard61e499b2011-05-17 16:13:52 -07002147 } else {
2148 temp &= ~FDI_LINK_TRAIN_NONE;
2149 temp |= FDI_LINK_TRAIN_NONE | FDI_TX_ENHANCE_FRAME_ENABLE;
Jesse Barnes357555c2011-04-28 15:09:55 -07002150 }
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08002151 I915_WRITE(reg, temp);
2152
2153 reg = FDI_RX_CTL(pipe);
2154 temp = I915_READ(reg);
2155 if (HAS_PCH_CPT(dev)) {
2156 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2157 temp |= FDI_LINK_TRAIN_NORMAL_CPT;
2158 } else {
2159 temp &= ~FDI_LINK_TRAIN_NONE;
2160 temp |= FDI_LINK_TRAIN_NONE;
2161 }
2162 I915_WRITE(reg, temp | FDI_RX_ENHANCE_FRAME_ENABLE);
2163
2164 /* wait one idle pattern time */
2165 POSTING_READ(reg);
2166 udelay(1000);
Jesse Barnes357555c2011-04-28 15:09:55 -07002167
2168 /* IVB wants error correction enabled */
2169 if (IS_IVYBRIDGE(dev))
2170 I915_WRITE(reg, I915_READ(reg) | FDI_FS_ERRC_ENABLE |
2171 FDI_FE_ERRC_ENABLE);
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08002172}
2173
Jesse Barnes291427f2011-07-29 12:42:37 -07002174static void cpt_phase_pointer_enable(struct drm_device *dev, int pipe)
2175{
2176 struct drm_i915_private *dev_priv = dev->dev_private;
2177 u32 flags = I915_READ(SOUTH_CHICKEN1);
2178
2179 flags |= FDI_PHASE_SYNC_OVR(pipe);
2180 I915_WRITE(SOUTH_CHICKEN1, flags); /* once to unlock... */
2181 flags |= FDI_PHASE_SYNC_EN(pipe);
2182 I915_WRITE(SOUTH_CHICKEN1, flags); /* then again to enable */
2183 POSTING_READ(SOUTH_CHICKEN1);
2184}
2185
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002186/* The FDI link training functions for ILK/Ibexpeak. */
2187static void ironlake_fdi_link_train(struct drm_crtc *crtc)
2188{
2189 struct drm_device *dev = crtc->dev;
2190 struct drm_i915_private *dev_priv = dev->dev_private;
2191 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2192 int pipe = intel_crtc->pipe;
Jesse Barnes0fc932b2011-01-04 15:09:37 -08002193 int plane = intel_crtc->plane;
Chris Wilson5eddb702010-09-11 13:48:45 +01002194 u32 reg, temp, tries;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002195
Jesse Barnes0fc932b2011-01-04 15:09:37 -08002196 /* FDI needs bits from pipe & plane first */
2197 assert_pipe_enabled(dev_priv, pipe);
2198 assert_plane_enabled(dev_priv, plane);
2199
Adam Jacksone1a44742010-06-25 15:32:14 -04002200 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
2201 for train result */
Chris Wilson5eddb702010-09-11 13:48:45 +01002202 reg = FDI_RX_IMR(pipe);
2203 temp = I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04002204 temp &= ~FDI_RX_SYMBOL_LOCK;
2205 temp &= ~FDI_RX_BIT_LOCK;
Chris Wilson5eddb702010-09-11 13:48:45 +01002206 I915_WRITE(reg, temp);
2207 I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04002208 udelay(150);
2209
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002210 /* enable CPU FDI TX and PCH FDI RX */
Chris Wilson5eddb702010-09-11 13:48:45 +01002211 reg = FDI_TX_CTL(pipe);
2212 temp = I915_READ(reg);
Adam Jackson77ffb592010-04-12 11:38:44 -04002213 temp &= ~(7 << 19);
2214 temp |= (intel_crtc->fdi_lanes - 1) << 19;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002215 temp &= ~FDI_LINK_TRAIN_NONE;
2216 temp |= FDI_LINK_TRAIN_PATTERN_1;
Chris Wilson5eddb702010-09-11 13:48:45 +01002217 I915_WRITE(reg, temp | FDI_TX_ENABLE);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002218
Chris Wilson5eddb702010-09-11 13:48:45 +01002219 reg = FDI_RX_CTL(pipe);
2220 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002221 temp &= ~FDI_LINK_TRAIN_NONE;
2222 temp |= FDI_LINK_TRAIN_PATTERN_1;
Chris Wilson5eddb702010-09-11 13:48:45 +01002223 I915_WRITE(reg, temp | FDI_RX_ENABLE);
2224
2225 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002226 udelay(150);
2227
Jesse Barnes5b2adf82010-10-07 16:01:15 -07002228 /* Ironlake workaround, enable clock pointer after FDI enable*/
Jesse Barnes6f06ce12011-01-04 15:09:38 -08002229 if (HAS_PCH_IBX(dev)) {
2230 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR);
2231 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR |
2232 FDI_RX_PHASE_SYNC_POINTER_EN);
2233 }
Jesse Barnes5b2adf82010-10-07 16:01:15 -07002234
Chris Wilson5eddb702010-09-11 13:48:45 +01002235 reg = FDI_RX_IIR(pipe);
Adam Jacksone1a44742010-06-25 15:32:14 -04002236 for (tries = 0; tries < 5; tries++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002237 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002238 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2239
2240 if ((temp & FDI_RX_BIT_LOCK)) {
2241 DRM_DEBUG_KMS("FDI train 1 done.\n");
Chris Wilson5eddb702010-09-11 13:48:45 +01002242 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002243 break;
2244 }
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002245 }
Adam Jacksone1a44742010-06-25 15:32:14 -04002246 if (tries == 5)
Chris Wilson5eddb702010-09-11 13:48:45 +01002247 DRM_ERROR("FDI train 1 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002248
2249 /* Train 2 */
Chris Wilson5eddb702010-09-11 13:48:45 +01002250 reg = FDI_TX_CTL(pipe);
2251 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002252 temp &= ~FDI_LINK_TRAIN_NONE;
2253 temp |= FDI_LINK_TRAIN_PATTERN_2;
Chris Wilson5eddb702010-09-11 13:48:45 +01002254 I915_WRITE(reg, temp);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002255
Chris Wilson5eddb702010-09-11 13:48:45 +01002256 reg = FDI_RX_CTL(pipe);
2257 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002258 temp &= ~FDI_LINK_TRAIN_NONE;
2259 temp |= FDI_LINK_TRAIN_PATTERN_2;
Chris Wilson5eddb702010-09-11 13:48:45 +01002260 I915_WRITE(reg, temp);
2261
2262 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002263 udelay(150);
2264
Chris Wilson5eddb702010-09-11 13:48:45 +01002265 reg = FDI_RX_IIR(pipe);
Adam Jacksone1a44742010-06-25 15:32:14 -04002266 for (tries = 0; tries < 5; tries++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002267 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002268 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2269
2270 if (temp & FDI_RX_SYMBOL_LOCK) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002271 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002272 DRM_DEBUG_KMS("FDI train 2 done.\n");
2273 break;
2274 }
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002275 }
Adam Jacksone1a44742010-06-25 15:32:14 -04002276 if (tries == 5)
Chris Wilson5eddb702010-09-11 13:48:45 +01002277 DRM_ERROR("FDI train 2 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002278
2279 DRM_DEBUG_KMS("FDI train done\n");
Jesse Barnes5c5313c2010-10-07 16:01:11 -07002280
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002281}
2282
Akshay Joshi0206e352011-08-16 15:34:10 -04002283static const int snb_b_fdi_train_param[] = {
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002284 FDI_LINK_TRAIN_400MV_0DB_SNB_B,
2285 FDI_LINK_TRAIN_400MV_6DB_SNB_B,
2286 FDI_LINK_TRAIN_600MV_3_5DB_SNB_B,
2287 FDI_LINK_TRAIN_800MV_0DB_SNB_B,
2288};
2289
2290/* The FDI link training functions for SNB/Cougarpoint. */
2291static void gen6_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;
Sean Paulfa37d392012-03-02 12:53:39 -05002297 u32 reg, temp, i, retry;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002298
Adam Jacksone1a44742010-06-25 15:32:14 -04002299 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
2300 for train result */
Chris Wilson5eddb702010-09-11 13:48:45 +01002301 reg = FDI_RX_IMR(pipe);
2302 temp = I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04002303 temp &= ~FDI_RX_SYMBOL_LOCK;
2304 temp &= ~FDI_RX_BIT_LOCK;
Chris Wilson5eddb702010-09-11 13:48:45 +01002305 I915_WRITE(reg, temp);
2306
2307 POSTING_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04002308 udelay(150);
2309
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002310 /* enable CPU FDI TX and PCH FDI RX */
Chris Wilson5eddb702010-09-11 13:48:45 +01002311 reg = FDI_TX_CTL(pipe);
2312 temp = I915_READ(reg);
Adam Jackson77ffb592010-04-12 11:38:44 -04002313 temp &= ~(7 << 19);
2314 temp |= (intel_crtc->fdi_lanes - 1) << 19;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002315 temp &= ~FDI_LINK_TRAIN_NONE;
2316 temp |= FDI_LINK_TRAIN_PATTERN_1;
2317 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2318 /* SNB-B */
2319 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
Chris Wilson5eddb702010-09-11 13:48:45 +01002320 I915_WRITE(reg, temp | FDI_TX_ENABLE);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002321
Chris Wilson5eddb702010-09-11 13:48:45 +01002322 reg = FDI_RX_CTL(pipe);
2323 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002324 if (HAS_PCH_CPT(dev)) {
2325 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2326 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
2327 } else {
2328 temp &= ~FDI_LINK_TRAIN_NONE;
2329 temp |= FDI_LINK_TRAIN_PATTERN_1;
2330 }
Chris Wilson5eddb702010-09-11 13:48:45 +01002331 I915_WRITE(reg, temp | FDI_RX_ENABLE);
2332
2333 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002334 udelay(150);
2335
Jesse Barnes291427f2011-07-29 12:42:37 -07002336 if (HAS_PCH_CPT(dev))
2337 cpt_phase_pointer_enable(dev, pipe);
2338
Akshay Joshi0206e352011-08-16 15:34:10 -04002339 for (i = 0; i < 4; i++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002340 reg = FDI_TX_CTL(pipe);
2341 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002342 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2343 temp |= snb_b_fdi_train_param[i];
Chris Wilson5eddb702010-09-11 13:48:45 +01002344 I915_WRITE(reg, temp);
2345
2346 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002347 udelay(500);
2348
Sean Paulfa37d392012-03-02 12:53:39 -05002349 for (retry = 0; retry < 5; retry++) {
2350 reg = FDI_RX_IIR(pipe);
2351 temp = I915_READ(reg);
2352 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2353 if (temp & FDI_RX_BIT_LOCK) {
2354 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
2355 DRM_DEBUG_KMS("FDI train 1 done.\n");
2356 break;
2357 }
2358 udelay(50);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002359 }
Sean Paulfa37d392012-03-02 12:53:39 -05002360 if (retry < 5)
2361 break;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002362 }
2363 if (i == 4)
Chris Wilson5eddb702010-09-11 13:48:45 +01002364 DRM_ERROR("FDI train 1 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002365
2366 /* Train 2 */
Chris Wilson5eddb702010-09-11 13:48:45 +01002367 reg = FDI_TX_CTL(pipe);
2368 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002369 temp &= ~FDI_LINK_TRAIN_NONE;
2370 temp |= FDI_LINK_TRAIN_PATTERN_2;
2371 if (IS_GEN6(dev)) {
2372 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2373 /* SNB-B */
2374 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
2375 }
Chris Wilson5eddb702010-09-11 13:48:45 +01002376 I915_WRITE(reg, temp);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002377
Chris Wilson5eddb702010-09-11 13:48:45 +01002378 reg = FDI_RX_CTL(pipe);
2379 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002380 if (HAS_PCH_CPT(dev)) {
2381 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2382 temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
2383 } else {
2384 temp &= ~FDI_LINK_TRAIN_NONE;
2385 temp |= FDI_LINK_TRAIN_PATTERN_2;
2386 }
Chris Wilson5eddb702010-09-11 13:48:45 +01002387 I915_WRITE(reg, temp);
2388
2389 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002390 udelay(150);
2391
Akshay Joshi0206e352011-08-16 15:34:10 -04002392 for (i = 0; i < 4; i++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002393 reg = FDI_TX_CTL(pipe);
2394 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002395 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2396 temp |= snb_b_fdi_train_param[i];
Chris Wilson5eddb702010-09-11 13:48:45 +01002397 I915_WRITE(reg, temp);
2398
2399 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002400 udelay(500);
2401
Sean Paulfa37d392012-03-02 12:53:39 -05002402 for (retry = 0; retry < 5; retry++) {
2403 reg = FDI_RX_IIR(pipe);
2404 temp = I915_READ(reg);
2405 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2406 if (temp & FDI_RX_SYMBOL_LOCK) {
2407 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
2408 DRM_DEBUG_KMS("FDI train 2 done.\n");
2409 break;
2410 }
2411 udelay(50);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002412 }
Sean Paulfa37d392012-03-02 12:53:39 -05002413 if (retry < 5)
2414 break;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002415 }
2416 if (i == 4)
Chris Wilson5eddb702010-09-11 13:48:45 +01002417 DRM_ERROR("FDI train 2 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002418
2419 DRM_DEBUG_KMS("FDI train done.\n");
2420}
2421
Jesse Barnes357555c2011-04-28 15:09:55 -07002422/* Manual link training for Ivy Bridge A0 parts */
2423static void ivb_manual_fdi_link_train(struct drm_crtc *crtc)
2424{
2425 struct drm_device *dev = crtc->dev;
2426 struct drm_i915_private *dev_priv = dev->dev_private;
2427 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2428 int pipe = intel_crtc->pipe;
2429 u32 reg, temp, i;
2430
2431 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
2432 for train result */
2433 reg = FDI_RX_IMR(pipe);
2434 temp = I915_READ(reg);
2435 temp &= ~FDI_RX_SYMBOL_LOCK;
2436 temp &= ~FDI_RX_BIT_LOCK;
2437 I915_WRITE(reg, temp);
2438
2439 POSTING_READ(reg);
2440 udelay(150);
2441
2442 /* enable CPU FDI TX and PCH FDI RX */
2443 reg = FDI_TX_CTL(pipe);
2444 temp = I915_READ(reg);
2445 temp &= ~(7 << 19);
2446 temp |= (intel_crtc->fdi_lanes - 1) << 19;
2447 temp &= ~(FDI_LINK_TRAIN_AUTO | FDI_LINK_TRAIN_NONE_IVB);
2448 temp |= FDI_LINK_TRAIN_PATTERN_1_IVB;
2449 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2450 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
Jesse Barnesc4f9c4c2011-10-10 14:28:52 -07002451 temp |= FDI_COMPOSITE_SYNC;
Jesse Barnes357555c2011-04-28 15:09:55 -07002452 I915_WRITE(reg, temp | FDI_TX_ENABLE);
2453
2454 reg = FDI_RX_CTL(pipe);
2455 temp = I915_READ(reg);
2456 temp &= ~FDI_LINK_TRAIN_AUTO;
2457 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2458 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
Jesse Barnesc4f9c4c2011-10-10 14:28:52 -07002459 temp |= FDI_COMPOSITE_SYNC;
Jesse Barnes357555c2011-04-28 15:09:55 -07002460 I915_WRITE(reg, temp | FDI_RX_ENABLE);
2461
2462 POSTING_READ(reg);
2463 udelay(150);
2464
Jesse Barnes291427f2011-07-29 12:42:37 -07002465 if (HAS_PCH_CPT(dev))
2466 cpt_phase_pointer_enable(dev, pipe);
2467
Akshay Joshi0206e352011-08-16 15:34:10 -04002468 for (i = 0; i < 4; i++) {
Jesse Barnes357555c2011-04-28 15:09:55 -07002469 reg = FDI_TX_CTL(pipe);
2470 temp = I915_READ(reg);
2471 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2472 temp |= snb_b_fdi_train_param[i];
2473 I915_WRITE(reg, temp);
2474
2475 POSTING_READ(reg);
2476 udelay(500);
2477
2478 reg = FDI_RX_IIR(pipe);
2479 temp = I915_READ(reg);
2480 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2481
2482 if (temp & FDI_RX_BIT_LOCK ||
2483 (I915_READ(reg) & FDI_RX_BIT_LOCK)) {
2484 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
2485 DRM_DEBUG_KMS("FDI train 1 done.\n");
2486 break;
2487 }
2488 }
2489 if (i == 4)
2490 DRM_ERROR("FDI train 1 fail!\n");
2491
2492 /* Train 2 */
2493 reg = FDI_TX_CTL(pipe);
2494 temp = I915_READ(reg);
2495 temp &= ~FDI_LINK_TRAIN_NONE_IVB;
2496 temp |= FDI_LINK_TRAIN_PATTERN_2_IVB;
2497 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2498 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
2499 I915_WRITE(reg, temp);
2500
2501 reg = FDI_RX_CTL(pipe);
2502 temp = I915_READ(reg);
2503 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2504 temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
2505 I915_WRITE(reg, temp);
2506
2507 POSTING_READ(reg);
2508 udelay(150);
2509
Akshay Joshi0206e352011-08-16 15:34:10 -04002510 for (i = 0; i < 4; i++) {
Jesse Barnes357555c2011-04-28 15:09:55 -07002511 reg = FDI_TX_CTL(pipe);
2512 temp = I915_READ(reg);
2513 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2514 temp |= snb_b_fdi_train_param[i];
2515 I915_WRITE(reg, temp);
2516
2517 POSTING_READ(reg);
2518 udelay(500);
2519
2520 reg = FDI_RX_IIR(pipe);
2521 temp = I915_READ(reg);
2522 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2523
2524 if (temp & FDI_RX_SYMBOL_LOCK) {
2525 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
2526 DRM_DEBUG_KMS("FDI train 2 done.\n");
2527 break;
2528 }
2529 }
2530 if (i == 4)
2531 DRM_ERROR("FDI train 2 fail!\n");
2532
2533 DRM_DEBUG_KMS("FDI train done.\n");
2534}
2535
2536static void ironlake_fdi_pll_enable(struct drm_crtc *crtc)
Jesse Barnes0e23b992010-09-10 11:10:00 -07002537{
2538 struct drm_device *dev = crtc->dev;
2539 struct drm_i915_private *dev_priv = dev->dev_private;
2540 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2541 int pipe = intel_crtc->pipe;
Chris Wilson5eddb702010-09-11 13:48:45 +01002542 u32 reg, temp;
Jesse Barnes0e23b992010-09-10 11:10:00 -07002543
Jesse Barnesc64e3112010-09-10 11:27:03 -07002544 /* Write the TU size bits so error detection works */
Chris Wilson5eddb702010-09-11 13:48:45 +01002545 I915_WRITE(FDI_RX_TUSIZE1(pipe),
2546 I915_READ(PIPE_DATA_M1(pipe)) & TU_SIZE_MASK);
Jesse Barnesc64e3112010-09-10 11:27:03 -07002547
Jesse Barnes0e23b992010-09-10 11:10:00 -07002548 /* enable PCH FDI RX PLL, wait warmup plus DMI latency */
Chris Wilson5eddb702010-09-11 13:48:45 +01002549 reg = FDI_RX_CTL(pipe);
2550 temp = I915_READ(reg);
2551 temp &= ~((0x7 << 19) | (0x7 << 16));
Jesse Barnes0e23b992010-09-10 11:10:00 -07002552 temp |= (intel_crtc->fdi_lanes - 1) << 19;
Chris Wilson5eddb702010-09-11 13:48:45 +01002553 temp |= (I915_READ(PIPECONF(pipe)) & PIPE_BPC_MASK) << 11;
2554 I915_WRITE(reg, temp | FDI_RX_PLL_ENABLE);
2555
2556 POSTING_READ(reg);
Jesse Barnes0e23b992010-09-10 11:10:00 -07002557 udelay(200);
2558
2559 /* Switch from Rawclk to PCDclk */
Chris Wilson5eddb702010-09-11 13:48:45 +01002560 temp = I915_READ(reg);
2561 I915_WRITE(reg, temp | FDI_PCDCLK);
2562
2563 POSTING_READ(reg);
Jesse Barnes0e23b992010-09-10 11:10:00 -07002564 udelay(200);
2565
Eugeni Dodonovbf507ef2012-05-09 15:37:18 -03002566 /* On Haswell, the PLL configuration for ports and pipes is handled
2567 * separately, as part of DDI setup */
2568 if (!IS_HASWELL(dev)) {
2569 /* Enable CPU FDI TX PLL, always on for Ironlake */
2570 reg = FDI_TX_CTL(pipe);
2571 temp = I915_READ(reg);
2572 if ((temp & FDI_TX_PLL_ENABLE) == 0) {
2573 I915_WRITE(reg, temp | FDI_TX_PLL_ENABLE);
Chris Wilson5eddb702010-09-11 13:48:45 +01002574
Eugeni Dodonovbf507ef2012-05-09 15:37:18 -03002575 POSTING_READ(reg);
2576 udelay(100);
2577 }
Jesse Barnes0e23b992010-09-10 11:10:00 -07002578 }
2579}
2580
Jesse Barnes291427f2011-07-29 12:42:37 -07002581static void cpt_phase_pointer_disable(struct drm_device *dev, int pipe)
2582{
2583 struct drm_i915_private *dev_priv = dev->dev_private;
2584 u32 flags = I915_READ(SOUTH_CHICKEN1);
2585
2586 flags &= ~(FDI_PHASE_SYNC_EN(pipe));
2587 I915_WRITE(SOUTH_CHICKEN1, flags); /* once to disable... */
2588 flags &= ~(FDI_PHASE_SYNC_OVR(pipe));
2589 I915_WRITE(SOUTH_CHICKEN1, flags); /* then again to lock */
2590 POSTING_READ(SOUTH_CHICKEN1);
2591}
Jesse Barnes0fc932b2011-01-04 15:09:37 -08002592static void ironlake_fdi_disable(struct drm_crtc *crtc)
2593{
2594 struct drm_device *dev = crtc->dev;
2595 struct drm_i915_private *dev_priv = dev->dev_private;
2596 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2597 int pipe = intel_crtc->pipe;
2598 u32 reg, temp;
2599
2600 /* disable CPU FDI tx and PCH FDI rx */
2601 reg = FDI_TX_CTL(pipe);
2602 temp = I915_READ(reg);
2603 I915_WRITE(reg, temp & ~FDI_TX_ENABLE);
2604 POSTING_READ(reg);
2605
2606 reg = FDI_RX_CTL(pipe);
2607 temp = I915_READ(reg);
2608 temp &= ~(0x7 << 16);
2609 temp |= (I915_READ(PIPECONF(pipe)) & PIPE_BPC_MASK) << 11;
2610 I915_WRITE(reg, temp & ~FDI_RX_ENABLE);
2611
2612 POSTING_READ(reg);
2613 udelay(100);
2614
2615 /* Ironlake workaround, disable clock pointer after downing FDI */
Jesse Barnes6f06ce12011-01-04 15:09:38 -08002616 if (HAS_PCH_IBX(dev)) {
2617 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR);
Jesse Barnes0fc932b2011-01-04 15:09:37 -08002618 I915_WRITE(FDI_RX_CHICKEN(pipe),
2619 I915_READ(FDI_RX_CHICKEN(pipe) &
Jesse Barnes6f06ce12011-01-04 15:09:38 -08002620 ~FDI_RX_PHASE_SYNC_POINTER_EN));
Jesse Barnes291427f2011-07-29 12:42:37 -07002621 } else if (HAS_PCH_CPT(dev)) {
2622 cpt_phase_pointer_disable(dev, pipe);
Jesse Barnes6f06ce12011-01-04 15:09:38 -08002623 }
Jesse Barnes0fc932b2011-01-04 15:09:37 -08002624
2625 /* still set train pattern 1 */
2626 reg = FDI_TX_CTL(pipe);
2627 temp = I915_READ(reg);
2628 temp &= ~FDI_LINK_TRAIN_NONE;
2629 temp |= FDI_LINK_TRAIN_PATTERN_1;
2630 I915_WRITE(reg, temp);
2631
2632 reg = FDI_RX_CTL(pipe);
2633 temp = I915_READ(reg);
2634 if (HAS_PCH_CPT(dev)) {
2635 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2636 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
2637 } else {
2638 temp &= ~FDI_LINK_TRAIN_NONE;
2639 temp |= FDI_LINK_TRAIN_PATTERN_1;
2640 }
2641 /* BPC in FDI rx is consistent with that in PIPECONF */
2642 temp &= ~(0x07 << 16);
2643 temp |= (I915_READ(PIPECONF(pipe)) & PIPE_BPC_MASK) << 11;
2644 I915_WRITE(reg, temp);
2645
2646 POSTING_READ(reg);
2647 udelay(100);
2648}
2649
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01002650static void intel_crtc_wait_for_pending_flips(struct drm_crtc *crtc)
2651{
Chris Wilson0f911282012-04-17 10:05:38 +01002652 struct drm_device *dev = crtc->dev;
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01002653
2654 if (crtc->fb == NULL)
2655 return;
2656
Chris Wilson0f911282012-04-17 10:05:38 +01002657 mutex_lock(&dev->struct_mutex);
2658 intel_finish_fb(crtc->fb);
2659 mutex_unlock(&dev->struct_mutex);
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01002660}
2661
Jesse Barnes040484a2011-01-03 12:14:26 -08002662static bool intel_crtc_driving_pch(struct drm_crtc *crtc)
2663{
2664 struct drm_device *dev = crtc->dev;
2665 struct drm_mode_config *mode_config = &dev->mode_config;
2666 struct intel_encoder *encoder;
2667
2668 /*
2669 * If there's a non-PCH eDP on this crtc, it must be DP_A, and that
2670 * must be driven by its own crtc; no sharing is possible.
2671 */
2672 list_for_each_entry(encoder, &mode_config->encoder_list, base.head) {
2673 if (encoder->base.crtc != crtc)
2674 continue;
2675
Eugeni Dodonov6ee8bab2012-05-09 20:30:31 -03002676 /* On Haswell, LPT PCH handles the VGA connection via FDI, and Haswell
2677 * CPU handles all others */
2678 if (IS_HASWELL(dev)) {
2679 /* It is still unclear how this will work on PPT, so throw up a warning */
2680 WARN_ON(!HAS_PCH_LPT(dev));
2681
2682 if (encoder->type == DRM_MODE_ENCODER_DAC) {
2683 DRM_DEBUG_KMS("Haswell detected DAC encoder, assuming is PCH\n");
2684 return true;
2685 } else {
2686 DRM_DEBUG_KMS("Haswell detected encoder %d, assuming is CPU\n",
2687 encoder->type);
2688 return false;
2689 }
2690 }
2691
Jesse Barnes040484a2011-01-03 12:14:26 -08002692 switch (encoder->type) {
2693 case INTEL_OUTPUT_EDP:
2694 if (!intel_encoder_is_pch_edp(&encoder->base))
2695 return false;
2696 continue;
2697 }
2698 }
2699
2700 return true;
2701}
2702
Eugeni Dodonove615efe2012-05-09 15:37:26 -03002703/* Program iCLKIP clock to the desired frequency */
2704static void lpt_program_iclkip(struct drm_crtc *crtc)
2705{
2706 struct drm_device *dev = crtc->dev;
2707 struct drm_i915_private *dev_priv = dev->dev_private;
2708 u32 divsel, phaseinc, auxdiv, phasedir = 0;
2709 u32 temp;
2710
2711 /* It is necessary to ungate the pixclk gate prior to programming
2712 * the divisors, and gate it back when it is done.
2713 */
2714 I915_WRITE(PIXCLK_GATE, PIXCLK_GATE_GATE);
2715
2716 /* Disable SSCCTL */
2717 intel_sbi_write(dev_priv, SBI_SSCCTL6,
2718 intel_sbi_read(dev_priv, SBI_SSCCTL6) |
2719 SBI_SSCCTL_DISABLE);
2720
2721 /* 20MHz is a corner case which is out of range for the 7-bit divisor */
2722 if (crtc->mode.clock == 20000) {
2723 auxdiv = 1;
2724 divsel = 0x41;
2725 phaseinc = 0x20;
2726 } else {
2727 /* The iCLK virtual clock root frequency is in MHz,
2728 * but the crtc->mode.clock in in KHz. To get the divisors,
2729 * it is necessary to divide one by another, so we
2730 * convert the virtual clock precision to KHz here for higher
2731 * precision.
2732 */
2733 u32 iclk_virtual_root_freq = 172800 * 1000;
2734 u32 iclk_pi_range = 64;
2735 u32 desired_divisor, msb_divisor_value, pi_value;
2736
2737 desired_divisor = (iclk_virtual_root_freq / crtc->mode.clock);
2738 msb_divisor_value = desired_divisor / iclk_pi_range;
2739 pi_value = desired_divisor % iclk_pi_range;
2740
2741 auxdiv = 0;
2742 divsel = msb_divisor_value - 2;
2743 phaseinc = pi_value;
2744 }
2745
2746 /* This should not happen with any sane values */
2747 WARN_ON(SBI_SSCDIVINTPHASE_DIVSEL(divsel) &
2748 ~SBI_SSCDIVINTPHASE_DIVSEL_MASK);
2749 WARN_ON(SBI_SSCDIVINTPHASE_DIR(phasedir) &
2750 ~SBI_SSCDIVINTPHASE_INCVAL_MASK);
2751
2752 DRM_DEBUG_KMS("iCLKIP clock: found settings for %dKHz refresh rate: auxdiv=%x, divsel=%x, phasedir=%x, phaseinc=%x\n",
2753 crtc->mode.clock,
2754 auxdiv,
2755 divsel,
2756 phasedir,
2757 phaseinc);
2758
2759 /* Program SSCDIVINTPHASE6 */
2760 temp = intel_sbi_read(dev_priv, SBI_SSCDIVINTPHASE6);
2761 temp &= ~SBI_SSCDIVINTPHASE_DIVSEL_MASK;
2762 temp |= SBI_SSCDIVINTPHASE_DIVSEL(divsel);
2763 temp &= ~SBI_SSCDIVINTPHASE_INCVAL_MASK;
2764 temp |= SBI_SSCDIVINTPHASE_INCVAL(phaseinc);
2765 temp |= SBI_SSCDIVINTPHASE_DIR(phasedir);
2766 temp |= SBI_SSCDIVINTPHASE_PROPAGATE;
2767
2768 intel_sbi_write(dev_priv,
2769 SBI_SSCDIVINTPHASE6,
2770 temp);
2771
2772 /* Program SSCAUXDIV */
2773 temp = intel_sbi_read(dev_priv, SBI_SSCAUXDIV6);
2774 temp &= ~SBI_SSCAUXDIV_FINALDIV2SEL(1);
2775 temp |= SBI_SSCAUXDIV_FINALDIV2SEL(auxdiv);
2776 intel_sbi_write(dev_priv,
2777 SBI_SSCAUXDIV6,
2778 temp);
2779
2780
2781 /* Enable modulator and associated divider */
2782 temp = intel_sbi_read(dev_priv, SBI_SSCCTL6);
2783 temp &= ~SBI_SSCCTL_DISABLE;
2784 intel_sbi_write(dev_priv,
2785 SBI_SSCCTL6,
2786 temp);
2787
2788 /* Wait for initialization time */
2789 udelay(24);
2790
2791 I915_WRITE(PIXCLK_GATE, PIXCLK_GATE_UNGATE);
2792}
2793
Jesse Barnesf67a5592011-01-05 10:31:48 -08002794/*
2795 * Enable PCH resources required for PCH ports:
2796 * - PCH PLLs
2797 * - FDI training & RX/TX
2798 * - update transcoder timings
2799 * - DP transcoding bits
2800 * - transcoder
2801 */
2802static void ironlake_pch_enable(struct drm_crtc *crtc)
Jesse Barnes79e53942008-11-07 14:24:08 -08002803{
2804 struct drm_device *dev = crtc->dev;
Zhenyu Wang2c072452009-06-05 15:38:42 +08002805 struct drm_i915_private *dev_priv = dev->dev_private;
2806 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2807 int pipe = intel_crtc->pipe;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01002808 u32 reg, temp;
Jesse Barnes6be4a602010-09-10 10:26:01 -07002809
Chris Wilsone7e164d2012-05-11 09:21:25 +01002810 assert_transcoder_disabled(dev_priv, pipe);
2811
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002812 /* For PCH output, training FDI link */
Jesse Barnes674cf962011-04-28 14:27:04 -07002813 dev_priv->display.fdi_link_train(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002814
Chris Wilson6f13b7b2012-05-13 09:54:09 +01002815 intel_enable_pch_pll(intel_crtc);
2816
Eugeni Dodonove615efe2012-05-09 15:37:26 -03002817 if (HAS_PCH_LPT(dev)) {
2818 DRM_DEBUG_KMS("LPT detected: programming iCLKIP\n");
2819 lpt_program_iclkip(crtc);
2820 } else if (HAS_PCH_CPT(dev)) {
Jesse Barnesee7b9f92012-04-20 17:11:53 +01002821 u32 sel;
Jesse Barnes4b645f12011-10-12 09:51:31 -07002822
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002823 temp = I915_READ(PCH_DPLL_SEL);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01002824 switch (pipe) {
2825 default:
2826 case 0:
2827 temp |= TRANSA_DPLL_ENABLE;
2828 sel = TRANSA_DPLLB_SEL;
2829 break;
2830 case 1:
2831 temp |= TRANSB_DPLL_ENABLE;
2832 sel = TRANSB_DPLLB_SEL;
2833 break;
2834 case 2:
2835 temp |= TRANSC_DPLL_ENABLE;
2836 sel = TRANSC_DPLLB_SEL;
2837 break;
Jesse Barnesd64311a2011-10-12 15:01:33 -07002838 }
Jesse Barnesee7b9f92012-04-20 17:11:53 +01002839 if (intel_crtc->pch_pll->pll_reg == _PCH_DPLL_B)
2840 temp |= sel;
2841 else
2842 temp &= ~sel;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002843 I915_WRITE(PCH_DPLL_SEL, temp);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002844 }
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002845
Jesse Barnesd9b6cb52011-01-04 15:09:35 -08002846 /* set transcoder timing, panel must allow it */
2847 assert_panel_unlocked(dev_priv, pipe);
Chris Wilson5eddb702010-09-11 13:48:45 +01002848 I915_WRITE(TRANS_HTOTAL(pipe), I915_READ(HTOTAL(pipe)));
2849 I915_WRITE(TRANS_HBLANK(pipe), I915_READ(HBLANK(pipe)));
2850 I915_WRITE(TRANS_HSYNC(pipe), I915_READ(HSYNC(pipe)));
2851
2852 I915_WRITE(TRANS_VTOTAL(pipe), I915_READ(VTOTAL(pipe)));
2853 I915_WRITE(TRANS_VBLANK(pipe), I915_READ(VBLANK(pipe)));
2854 I915_WRITE(TRANS_VSYNC(pipe), I915_READ(VSYNC(pipe)));
Daniel Vetter0529a0d2012-01-28 14:49:24 +01002855 I915_WRITE(TRANS_VSYNCSHIFT(pipe), I915_READ(VSYNCSHIFT(pipe)));
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002856
Eugeni Dodonovf57e1e32012-05-09 15:37:14 -03002857 if (!IS_HASWELL(dev))
2858 intel_fdi_normal_train(crtc);
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08002859
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002860 /* For PCH DP, enable TRANS_DP_CTL */
2861 if (HAS_PCH_CPT(dev) &&
Keith Packard417e8222011-11-01 19:54:11 -07002862 (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT) ||
2863 intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP))) {
Jesse Barnes9325c9f2011-06-24 12:19:21 -07002864 u32 bpc = (I915_READ(PIPECONF(pipe)) & PIPE_BPC_MASK) >> 5;
Chris Wilson5eddb702010-09-11 13:48:45 +01002865 reg = TRANS_DP_CTL(pipe);
2866 temp = I915_READ(reg);
2867 temp &= ~(TRANS_DP_PORT_SEL_MASK |
Eric Anholt220cad32010-11-18 09:32:58 +08002868 TRANS_DP_SYNC_MASK |
2869 TRANS_DP_BPC_MASK);
Chris Wilson5eddb702010-09-11 13:48:45 +01002870 temp |= (TRANS_DP_OUTPUT_ENABLE |
2871 TRANS_DP_ENH_FRAMING);
Jesse Barnes9325c9f2011-06-24 12:19:21 -07002872 temp |= bpc << 9; /* same format but at 11:9 */
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002873
2874 if (crtc->mode.flags & DRM_MODE_FLAG_PHSYNC)
Chris Wilson5eddb702010-09-11 13:48:45 +01002875 temp |= TRANS_DP_HSYNC_ACTIVE_HIGH;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002876 if (crtc->mode.flags & DRM_MODE_FLAG_PVSYNC)
Chris Wilson5eddb702010-09-11 13:48:45 +01002877 temp |= TRANS_DP_VSYNC_ACTIVE_HIGH;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002878
2879 switch (intel_trans_dp_port_sel(crtc)) {
2880 case PCH_DP_B:
Chris Wilson5eddb702010-09-11 13:48:45 +01002881 temp |= TRANS_DP_PORT_SEL_B;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002882 break;
2883 case PCH_DP_C:
Chris Wilson5eddb702010-09-11 13:48:45 +01002884 temp |= TRANS_DP_PORT_SEL_C;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002885 break;
2886 case PCH_DP_D:
Chris Wilson5eddb702010-09-11 13:48:45 +01002887 temp |= TRANS_DP_PORT_SEL_D;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002888 break;
2889 default:
2890 DRM_DEBUG_KMS("Wrong PCH DP port return. Guess port B\n");
Chris Wilson5eddb702010-09-11 13:48:45 +01002891 temp |= TRANS_DP_PORT_SEL_B;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002892 break;
2893 }
2894
Chris Wilson5eddb702010-09-11 13:48:45 +01002895 I915_WRITE(reg, temp);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002896 }
2897
Jesse Barnes040484a2011-01-03 12:14:26 -08002898 intel_enable_transcoder(dev_priv, pipe);
Jesse Barnesf67a5592011-01-05 10:31:48 -08002899}
2900
Jesse Barnesee7b9f92012-04-20 17:11:53 +01002901static void intel_put_pch_pll(struct intel_crtc *intel_crtc)
2902{
2903 struct intel_pch_pll *pll = intel_crtc->pch_pll;
2904
2905 if (pll == NULL)
2906 return;
2907
2908 if (pll->refcount == 0) {
2909 WARN(1, "bad PCH PLL refcount\n");
2910 return;
2911 }
2912
2913 --pll->refcount;
2914 intel_crtc->pch_pll = NULL;
2915}
2916
2917static struct intel_pch_pll *intel_get_pch_pll(struct intel_crtc *intel_crtc, u32 dpll, u32 fp)
2918{
2919 struct drm_i915_private *dev_priv = intel_crtc->base.dev->dev_private;
2920 struct intel_pch_pll *pll;
2921 int i;
2922
2923 pll = intel_crtc->pch_pll;
2924 if (pll) {
2925 DRM_DEBUG_KMS("CRTC:%d reusing existing PCH PLL %x\n",
2926 intel_crtc->base.base.id, pll->pll_reg);
2927 goto prepare;
2928 }
2929
Daniel Vetter98b6bd92012-05-20 20:00:25 +02002930 if (HAS_PCH_IBX(dev_priv->dev)) {
2931 /* Ironlake PCH has a fixed PLL->PCH pipe mapping. */
2932 i = intel_crtc->pipe;
2933 pll = &dev_priv->pch_plls[i];
2934
2935 DRM_DEBUG_KMS("CRTC:%d using pre-allocated PCH PLL %x\n",
2936 intel_crtc->base.base.id, pll->pll_reg);
2937
2938 goto found;
2939 }
2940
Jesse Barnesee7b9f92012-04-20 17:11:53 +01002941 for (i = 0; i < dev_priv->num_pch_pll; i++) {
2942 pll = &dev_priv->pch_plls[i];
2943
2944 /* Only want to check enabled timings first */
2945 if (pll->refcount == 0)
2946 continue;
2947
2948 if (dpll == (I915_READ(pll->pll_reg) & 0x7fffffff) &&
2949 fp == I915_READ(pll->fp0_reg)) {
2950 DRM_DEBUG_KMS("CRTC:%d sharing existing PCH PLL %x (refcount %d, ative %d)\n",
2951 intel_crtc->base.base.id,
2952 pll->pll_reg, pll->refcount, pll->active);
2953
2954 goto found;
2955 }
2956 }
2957
2958 /* Ok no matching timings, maybe there's a free one? */
2959 for (i = 0; i < dev_priv->num_pch_pll; i++) {
2960 pll = &dev_priv->pch_plls[i];
2961 if (pll->refcount == 0) {
2962 DRM_DEBUG_KMS("CRTC:%d allocated PCH PLL %x\n",
2963 intel_crtc->base.base.id, pll->pll_reg);
2964 goto found;
2965 }
2966 }
2967
2968 return NULL;
2969
2970found:
2971 intel_crtc->pch_pll = pll;
2972 pll->refcount++;
2973 DRM_DEBUG_DRIVER("using pll %d for pipe %d\n", i, intel_crtc->pipe);
2974prepare: /* separate function? */
2975 DRM_DEBUG_DRIVER("switching PLL %x off\n", pll->pll_reg);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01002976
Chris Wilsone04c7352012-05-02 20:43:56 +01002977 /* Wait for the clocks to stabilize before rewriting the regs */
2978 I915_WRITE(pll->pll_reg, dpll & ~DPLL_VCO_ENABLE);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01002979 POSTING_READ(pll->pll_reg);
2980 udelay(150);
Chris Wilsone04c7352012-05-02 20:43:56 +01002981
2982 I915_WRITE(pll->fp0_reg, fp);
2983 I915_WRITE(pll->pll_reg, dpll & ~DPLL_VCO_ENABLE);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01002984 pll->on = false;
2985 return pll;
2986}
2987
Jesse Barnesd4270e52011-10-11 10:43:02 -07002988void intel_cpt_verify_modeset(struct drm_device *dev, int pipe)
2989{
2990 struct drm_i915_private *dev_priv = dev->dev_private;
2991 int dslreg = PIPEDSL(pipe), tc2reg = TRANS_CHICKEN2(pipe);
2992 u32 temp;
2993
2994 temp = I915_READ(dslreg);
2995 udelay(500);
2996 if (wait_for(I915_READ(dslreg) != temp, 5)) {
2997 /* Without this, mode sets may fail silently on FDI */
2998 I915_WRITE(tc2reg, TRANS_AUTOTRAIN_GEN_STALL_DIS);
2999 udelay(250);
3000 I915_WRITE(tc2reg, 0);
3001 if (wait_for(I915_READ(dslreg) != temp, 5))
3002 DRM_ERROR("mode set failed: pipe %d stuck\n", pipe);
3003 }
3004}
3005
Jesse Barnesf67a5592011-01-05 10:31:48 -08003006static void ironlake_crtc_enable(struct drm_crtc *crtc)
3007{
3008 struct drm_device *dev = crtc->dev;
3009 struct drm_i915_private *dev_priv = dev->dev_private;
3010 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3011 int pipe = intel_crtc->pipe;
3012 int plane = intel_crtc->plane;
3013 u32 temp;
3014 bool is_pch_port;
3015
3016 if (intel_crtc->active)
3017 return;
3018
3019 intel_crtc->active = true;
3020 intel_update_watermarks(dev);
3021
3022 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
3023 temp = I915_READ(PCH_LVDS);
3024 if ((temp & LVDS_PORT_EN) == 0)
3025 I915_WRITE(PCH_LVDS, temp | LVDS_PORT_EN);
3026 }
3027
3028 is_pch_port = intel_crtc_driving_pch(crtc);
3029
3030 if (is_pch_port)
Jesse Barnes357555c2011-04-28 15:09:55 -07003031 ironlake_fdi_pll_enable(crtc);
Jesse Barnesf67a5592011-01-05 10:31:48 -08003032 else
3033 ironlake_fdi_disable(crtc);
3034
3035 /* Enable panel fitting for LVDS */
3036 if (dev_priv->pch_pf_size &&
3037 (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) || HAS_eDP)) {
3038 /* Force use of hard-coded filter coefficients
3039 * as some pre-programmed values are broken,
3040 * e.g. x201.
3041 */
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08003042 I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3);
3043 I915_WRITE(PF_WIN_POS(pipe), dev_priv->pch_pf_pos);
3044 I915_WRITE(PF_WIN_SZ(pipe), dev_priv->pch_pf_size);
Jesse Barnesf67a5592011-01-05 10:31:48 -08003045 }
3046
Jesse Barnes9c54c0d2011-06-15 23:32:33 +02003047 /*
3048 * On ILK+ LUT must be loaded before the pipe is running but with
3049 * clocks enabled
3050 */
3051 intel_crtc_load_lut(crtc);
3052
Jesse Barnesf67a5592011-01-05 10:31:48 -08003053 intel_enable_pipe(dev_priv, pipe, is_pch_port);
3054 intel_enable_plane(dev_priv, plane, pipe);
3055
3056 if (is_pch_port)
3057 ironlake_pch_enable(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003058
Ben Widawskyd1ebd8162011-04-25 20:11:50 +01003059 mutex_lock(&dev->struct_mutex);
Chris Wilsonbed4a672010-09-11 10:47:47 +01003060 intel_update_fbc(dev);
Ben Widawskyd1ebd8162011-04-25 20:11:50 +01003061 mutex_unlock(&dev->struct_mutex);
3062
Chris Wilson6b383a72010-09-13 13:54:26 +01003063 intel_crtc_update_cursor(crtc, true);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003064}
3065
3066static void ironlake_crtc_disable(struct drm_crtc *crtc)
3067{
3068 struct drm_device *dev = crtc->dev;
3069 struct drm_i915_private *dev_priv = dev->dev_private;
3070 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3071 int pipe = intel_crtc->pipe;
3072 int plane = intel_crtc->plane;
Chris Wilson5eddb702010-09-11 13:48:45 +01003073 u32 reg, temp;
Jesse Barnes6be4a602010-09-10 10:26:01 -07003074
Chris Wilsonf7abfe82010-09-13 14:19:16 +01003075 if (!intel_crtc->active)
3076 return;
3077
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01003078 intel_crtc_wait_for_pending_flips(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003079 drm_vblank_off(dev, pipe);
Chris Wilson6b383a72010-09-13 13:54:26 +01003080 intel_crtc_update_cursor(crtc, false);
Chris Wilson5eddb702010-09-11 13:48:45 +01003081
Jesse Barnesb24e7172011-01-04 15:09:30 -08003082 intel_disable_plane(dev_priv, plane, pipe);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003083
Chris Wilson973d04f2011-07-08 12:22:37 +01003084 if (dev_priv->cfb_plane == plane)
3085 intel_disable_fbc(dev);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003086
Jesse Barnesb24e7172011-01-04 15:09:30 -08003087 intel_disable_pipe(dev_priv, pipe);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003088
Jesse Barnes6be4a602010-09-10 10:26:01 -07003089 /* Disable PF */
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08003090 I915_WRITE(PF_CTL(pipe), 0);
3091 I915_WRITE(PF_WIN_SZ(pipe), 0);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003092
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003093 ironlake_fdi_disable(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003094
Jesse Barnes47a05ec2011-02-07 13:46:40 -08003095 /* This is a horrible layering violation; we should be doing this in
3096 * the connector/encoder ->prepare instead, but we don't always have
3097 * enough information there about the config to know whether it will
3098 * actually be necessary or just cause undesired flicker.
3099 */
3100 intel_disable_pch_ports(dev_priv, pipe);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003101
Jesse Barnes040484a2011-01-03 12:14:26 -08003102 intel_disable_transcoder(dev_priv, pipe);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003103
Jesse Barnes6be4a602010-09-10 10:26:01 -07003104 if (HAS_PCH_CPT(dev)) {
3105 /* disable TRANS_DP_CTL */
Chris Wilson5eddb702010-09-11 13:48:45 +01003106 reg = TRANS_DP_CTL(pipe);
3107 temp = I915_READ(reg);
3108 temp &= ~(TRANS_DP_OUTPUT_ENABLE | TRANS_DP_PORT_SEL_MASK);
Eric Anholtcb3543c2011-02-02 12:08:07 -08003109 temp |= TRANS_DP_PORT_SEL_NONE;
Chris Wilson5eddb702010-09-11 13:48:45 +01003110 I915_WRITE(reg, temp);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003111
3112 /* disable DPLL_SEL */
3113 temp = I915_READ(PCH_DPLL_SEL);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08003114 switch (pipe) {
3115 case 0:
Jesse Barnesd64311a2011-10-12 15:01:33 -07003116 temp &= ~(TRANSA_DPLL_ENABLE | TRANSA_DPLLB_SEL);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08003117 break;
3118 case 1:
Jesse Barnes6be4a602010-09-10 10:26:01 -07003119 temp &= ~(TRANSB_DPLL_ENABLE | TRANSB_DPLLB_SEL);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08003120 break;
3121 case 2:
Jesse Barnes4b645f12011-10-12 09:51:31 -07003122 /* C shares PLL A or B */
Jesse Barnesd64311a2011-10-12 15:01:33 -07003123 temp &= ~(TRANSC_DPLL_ENABLE | TRANSC_DPLLB_SEL);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08003124 break;
3125 default:
3126 BUG(); /* wtf */
3127 }
Jesse Barnes6be4a602010-09-10 10:26:01 -07003128 I915_WRITE(PCH_DPLL_SEL, temp);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003129 }
3130
3131 /* disable PCH DPLL */
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003132 intel_disable_pch_pll(intel_crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003133
3134 /* Switch from PCDclk to Rawclk */
Chris Wilson5eddb702010-09-11 13:48:45 +01003135 reg = FDI_RX_CTL(pipe);
3136 temp = I915_READ(reg);
3137 I915_WRITE(reg, temp & ~FDI_PCDCLK);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003138
3139 /* Disable CPU FDI TX PLL */
Chris Wilson5eddb702010-09-11 13:48:45 +01003140 reg = FDI_TX_CTL(pipe);
3141 temp = I915_READ(reg);
3142 I915_WRITE(reg, temp & ~FDI_TX_PLL_ENABLE);
3143
3144 POSTING_READ(reg);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003145 udelay(100);
3146
Chris Wilson5eddb702010-09-11 13:48:45 +01003147 reg = FDI_RX_CTL(pipe);
3148 temp = I915_READ(reg);
3149 I915_WRITE(reg, temp & ~FDI_RX_PLL_ENABLE);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003150
3151 /* Wait for the clocks to turn off. */
Chris Wilson5eddb702010-09-11 13:48:45 +01003152 POSTING_READ(reg);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003153 udelay(100);
Chris Wilson6b383a72010-09-13 13:54:26 +01003154
Chris Wilsonf7abfe82010-09-13 14:19:16 +01003155 intel_crtc->active = false;
Chris Wilson6b383a72010-09-13 13:54:26 +01003156 intel_update_watermarks(dev);
Ben Widawskyd1ebd8162011-04-25 20:11:50 +01003157
3158 mutex_lock(&dev->struct_mutex);
Chris Wilson6b383a72010-09-13 13:54:26 +01003159 intel_update_fbc(dev);
Ben Widawskyd1ebd8162011-04-25 20:11:50 +01003160 mutex_unlock(&dev->struct_mutex);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003161}
3162
3163static void ironlake_crtc_dpms(struct drm_crtc *crtc, int mode)
3164{
3165 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3166 int pipe = intel_crtc->pipe;
3167 int plane = intel_crtc->plane;
3168
Zhenyu Wang2c072452009-06-05 15:38:42 +08003169 /* XXX: When our outputs are all unaware of DPMS modes other than off
3170 * and on, we should map those modes to DRM_MODE_DPMS_OFF in the CRTC.
3171 */
3172 switch (mode) {
3173 case DRM_MODE_DPMS_ON:
3174 case DRM_MODE_DPMS_STANDBY:
3175 case DRM_MODE_DPMS_SUSPEND:
Chris Wilson868dc582010-08-07 11:01:31 +01003176 DRM_DEBUG_KMS("crtc %d/%d dpms on\n", pipe, plane);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003177 ironlake_crtc_enable(crtc);
Chris Wilson868dc582010-08-07 11:01:31 +01003178 break;
Zhao Yakuib52eb4d2010-06-12 14:32:27 +08003179
Zhenyu Wang2c072452009-06-05 15:38:42 +08003180 case DRM_MODE_DPMS_OFF:
Chris Wilson868dc582010-08-07 11:01:31 +01003181 DRM_DEBUG_KMS("crtc %d/%d dpms off\n", pipe, plane);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003182 ironlake_crtc_disable(crtc);
Zhenyu Wang2c072452009-06-05 15:38:42 +08003183 break;
3184 }
3185}
3186
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003187static void ironlake_crtc_off(struct drm_crtc *crtc)
3188{
3189 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3190 intel_put_pch_pll(intel_crtc);
3191}
3192
Daniel Vetter02e792f2009-09-15 22:57:34 +02003193static void intel_crtc_dpms_overlay(struct intel_crtc *intel_crtc, bool enable)
3194{
Daniel Vetter02e792f2009-09-15 22:57:34 +02003195 if (!enable && intel_crtc->overlay) {
Chris Wilson23f09ce2010-08-12 13:53:37 +01003196 struct drm_device *dev = intel_crtc->base.dev;
Chris Wilsonce453d82011-02-21 14:43:56 +00003197 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter03f77ea2009-09-15 22:57:37 +02003198
Chris Wilson23f09ce2010-08-12 13:53:37 +01003199 mutex_lock(&dev->struct_mutex);
Chris Wilsonce453d82011-02-21 14:43:56 +00003200 dev_priv->mm.interruptible = false;
3201 (void) intel_overlay_switch_off(intel_crtc->overlay);
3202 dev_priv->mm.interruptible = true;
Chris Wilson23f09ce2010-08-12 13:53:37 +01003203 mutex_unlock(&dev->struct_mutex);
Daniel Vetter02e792f2009-09-15 22:57:34 +02003204 }
Daniel Vetter02e792f2009-09-15 22:57:34 +02003205
Chris Wilson5dcdbcb2010-08-12 13:50:28 +01003206 /* Let userspace switch the overlay on again. In most cases userspace
3207 * has to recompute where to put it anyway.
3208 */
Daniel Vetter02e792f2009-09-15 22:57:34 +02003209}
3210
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003211static void i9xx_crtc_enable(struct drm_crtc *crtc)
Zhenyu Wang2c072452009-06-05 15:38:42 +08003212{
3213 struct drm_device *dev = crtc->dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08003214 struct drm_i915_private *dev_priv = dev->dev_private;
3215 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3216 int pipe = intel_crtc->pipe;
Jesse Barnes80824002009-09-10 15:28:06 -07003217 int plane = intel_crtc->plane;
Jesse Barnes79e53942008-11-07 14:24:08 -08003218
Chris Wilsonf7abfe82010-09-13 14:19:16 +01003219 if (intel_crtc->active)
3220 return;
3221
3222 intel_crtc->active = true;
Chris Wilson6b383a72010-09-13 13:54:26 +01003223 intel_update_watermarks(dev);
3224
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08003225 intel_enable_pll(dev_priv, pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08003226 intel_enable_pipe(dev_priv, pipe, false);
Jesse Barnesb24e7172011-01-04 15:09:30 -08003227 intel_enable_plane(dev_priv, plane, pipe);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003228
3229 intel_crtc_load_lut(crtc);
Chris Wilsonbed4a672010-09-11 10:47:47 +01003230 intel_update_fbc(dev);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003231
3232 /* Give the overlay scaler a chance to enable if it's on this pipe */
3233 intel_crtc_dpms_overlay(intel_crtc, true);
Chris Wilson6b383a72010-09-13 13:54:26 +01003234 intel_crtc_update_cursor(crtc, true);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003235}
3236
3237static void i9xx_crtc_disable(struct drm_crtc *crtc)
3238{
3239 struct drm_device *dev = crtc->dev;
3240 struct drm_i915_private *dev_priv = dev->dev_private;
3241 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3242 int pipe = intel_crtc->pipe;
3243 int plane = intel_crtc->plane;
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003244
Chris Wilsonf7abfe82010-09-13 14:19:16 +01003245 if (!intel_crtc->active)
3246 return;
3247
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003248 /* Give the overlay scaler a chance to disable if it's on this pipe */
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01003249 intel_crtc_wait_for_pending_flips(crtc);
3250 drm_vblank_off(dev, pipe);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003251 intel_crtc_dpms_overlay(intel_crtc, false);
Chris Wilson6b383a72010-09-13 13:54:26 +01003252 intel_crtc_update_cursor(crtc, false);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003253
Chris Wilson973d04f2011-07-08 12:22:37 +01003254 if (dev_priv->cfb_plane == plane)
3255 intel_disable_fbc(dev);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003256
Jesse Barnesb24e7172011-01-04 15:09:30 -08003257 intel_disable_plane(dev_priv, plane, pipe);
Jesse Barnesb24e7172011-01-04 15:09:30 -08003258 intel_disable_pipe(dev_priv, pipe);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08003259 intel_disable_pll(dev_priv, pipe);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003260
Chris Wilsonf7abfe82010-09-13 14:19:16 +01003261 intel_crtc->active = false;
Chris Wilson6b383a72010-09-13 13:54:26 +01003262 intel_update_fbc(dev);
3263 intel_update_watermarks(dev);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003264}
3265
3266static void i9xx_crtc_dpms(struct drm_crtc *crtc, int mode)
3267{
Jesse Barnes79e53942008-11-07 14:24:08 -08003268 /* XXX: When our outputs are all unaware of DPMS modes other than off
3269 * and on, we should map those modes to DRM_MODE_DPMS_OFF in the CRTC.
3270 */
3271 switch (mode) {
3272 case DRM_MODE_DPMS_ON:
3273 case DRM_MODE_DPMS_STANDBY:
3274 case DRM_MODE_DPMS_SUSPEND:
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003275 i9xx_crtc_enable(crtc);
3276 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08003277 case DRM_MODE_DPMS_OFF:
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003278 i9xx_crtc_disable(crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08003279 break;
3280 }
Zhenyu Wang2c072452009-06-05 15:38:42 +08003281}
3282
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003283static void i9xx_crtc_off(struct drm_crtc *crtc)
3284{
3285}
3286
Zhenyu Wang2c072452009-06-05 15:38:42 +08003287/**
3288 * Sets the power management mode of the pipe and plane.
Zhenyu Wang2c072452009-06-05 15:38:42 +08003289 */
3290static void intel_crtc_dpms(struct drm_crtc *crtc, int mode)
3291{
3292 struct drm_device *dev = crtc->dev;
Jesse Barnese70236a2009-09-21 10:42:27 -07003293 struct drm_i915_private *dev_priv = dev->dev_private;
Zhenyu Wang2c072452009-06-05 15:38:42 +08003294 struct drm_i915_master_private *master_priv;
3295 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3296 int pipe = intel_crtc->pipe;
3297 bool enabled;
3298
Chris Wilson032d2a02010-09-06 16:17:22 +01003299 if (intel_crtc->dpms_mode == mode)
3300 return;
3301
Chris Wilsondebcadd2010-08-07 11:01:33 +01003302 intel_crtc->dpms_mode = mode;
Chris Wilsondebcadd2010-08-07 11:01:33 +01003303
Jesse Barnese70236a2009-09-21 10:42:27 -07003304 dev_priv->display.dpms(crtc, mode);
Jesse Barnes79e53942008-11-07 14:24:08 -08003305
3306 if (!dev->primary->master)
3307 return;
3308
3309 master_priv = dev->primary->master->driver_priv;
3310 if (!master_priv->sarea_priv)
3311 return;
3312
3313 enabled = crtc->enabled && mode != DRM_MODE_DPMS_OFF;
3314
3315 switch (pipe) {
3316 case 0:
3317 master_priv->sarea_priv->pipeA_w = enabled ? crtc->mode.hdisplay : 0;
3318 master_priv->sarea_priv->pipeA_h = enabled ? crtc->mode.vdisplay : 0;
3319 break;
3320 case 1:
3321 master_priv->sarea_priv->pipeB_w = enabled ? crtc->mode.hdisplay : 0;
3322 master_priv->sarea_priv->pipeB_h = enabled ? crtc->mode.vdisplay : 0;
3323 break;
3324 default:
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08003325 DRM_ERROR("Can't update pipe %c in SAREA\n", pipe_name(pipe));
Jesse Barnes79e53942008-11-07 14:24:08 -08003326 break;
3327 }
Jesse Barnes79e53942008-11-07 14:24:08 -08003328}
3329
Chris Wilsoncdd59982010-09-08 16:30:16 +01003330static void intel_crtc_disable(struct drm_crtc *crtc)
3331{
3332 struct drm_crtc_helper_funcs *crtc_funcs = crtc->helper_private;
3333 struct drm_device *dev = crtc->dev;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003334 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsoncdd59982010-09-08 16:30:16 +01003335
3336 crtc_funcs->dpms(crtc, DRM_MODE_DPMS_OFF);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003337 dev_priv->display.off(crtc);
3338
Chris Wilson931872f2012-01-16 23:01:13 +00003339 assert_plane_disabled(dev->dev_private, to_intel_crtc(crtc)->plane);
3340 assert_pipe_disabled(dev->dev_private, to_intel_crtc(crtc)->pipe);
Chris Wilsoncdd59982010-09-08 16:30:16 +01003341
3342 if (crtc->fb) {
3343 mutex_lock(&dev->struct_mutex);
Chris Wilson1690e1e2011-12-14 13:57:08 +01003344 intel_unpin_fb_obj(to_intel_framebuffer(crtc->fb)->obj);
Chris Wilsoncdd59982010-09-08 16:30:16 +01003345 mutex_unlock(&dev->struct_mutex);
3346 }
3347}
3348
Jesse Barnes7e7d76c2010-09-10 10:47:20 -07003349/* Prepare for a mode set.
3350 *
3351 * Note we could be a lot smarter here. We need to figure out which outputs
3352 * will be enabled, which disabled (in short, how the config will changes)
3353 * and perform the minimum necessary steps to accomplish that, e.g. updating
3354 * watermarks, FBC configuration, making sure PLLs are programmed correctly,
3355 * panel fitting is in the proper state, etc.
3356 */
3357static void i9xx_crtc_prepare(struct drm_crtc *crtc)
Jesse Barnes79e53942008-11-07 14:24:08 -08003358{
Jesse Barnes7e7d76c2010-09-10 10:47:20 -07003359 i9xx_crtc_disable(crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08003360}
3361
Jesse Barnes7e7d76c2010-09-10 10:47:20 -07003362static void i9xx_crtc_commit(struct drm_crtc *crtc)
Jesse Barnes79e53942008-11-07 14:24:08 -08003363{
Jesse Barnes7e7d76c2010-09-10 10:47:20 -07003364 i9xx_crtc_enable(crtc);
Jesse Barnes7e7d76c2010-09-10 10:47:20 -07003365}
3366
3367static void ironlake_crtc_prepare(struct drm_crtc *crtc)
3368{
Jesse Barnes7e7d76c2010-09-10 10:47:20 -07003369 ironlake_crtc_disable(crtc);
Jesse Barnes7e7d76c2010-09-10 10:47:20 -07003370}
3371
3372static void ironlake_crtc_commit(struct drm_crtc *crtc)
3373{
Jesse Barnes7e7d76c2010-09-10 10:47:20 -07003374 ironlake_crtc_enable(crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08003375}
3376
Akshay Joshi0206e352011-08-16 15:34:10 -04003377void intel_encoder_prepare(struct drm_encoder *encoder)
Jesse Barnes79e53942008-11-07 14:24:08 -08003378{
3379 struct drm_encoder_helper_funcs *encoder_funcs = encoder->helper_private;
3380 /* lvds has its own version of prepare see intel_lvds_prepare */
3381 encoder_funcs->dpms(encoder, DRM_MODE_DPMS_OFF);
3382}
3383
Akshay Joshi0206e352011-08-16 15:34:10 -04003384void intel_encoder_commit(struct drm_encoder *encoder)
Jesse Barnes79e53942008-11-07 14:24:08 -08003385{
3386 struct drm_encoder_helper_funcs *encoder_funcs = encoder->helper_private;
Jesse Barnesd4270e52011-10-11 10:43:02 -07003387 struct drm_device *dev = encoder->dev;
Paulo Zanonid47d7cb2012-05-04 17:18:23 -03003388 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
Jesse Barnesd4270e52011-10-11 10:43:02 -07003389
Jesse Barnes79e53942008-11-07 14:24:08 -08003390 /* lvds has its own version of commit see intel_lvds_commit */
3391 encoder_funcs->dpms(encoder, DRM_MODE_DPMS_ON);
Jesse Barnesd4270e52011-10-11 10:43:02 -07003392
3393 if (HAS_PCH_CPT(dev))
3394 intel_cpt_verify_modeset(dev, intel_crtc->pipe);
Jesse Barnes79e53942008-11-07 14:24:08 -08003395}
3396
Chris Wilsonea5b2132010-08-04 13:50:23 +01003397void intel_encoder_destroy(struct drm_encoder *encoder)
3398{
Chris Wilson4ef69c72010-09-09 15:14:28 +01003399 struct intel_encoder *intel_encoder = to_intel_encoder(encoder);
Chris Wilsonea5b2132010-08-04 13:50:23 +01003400
Chris Wilsonea5b2132010-08-04 13:50:23 +01003401 drm_encoder_cleanup(encoder);
3402 kfree(intel_encoder);
3403}
3404
Jesse Barnes79e53942008-11-07 14:24:08 -08003405static bool intel_crtc_mode_fixup(struct drm_crtc *crtc,
3406 struct drm_display_mode *mode,
3407 struct drm_display_mode *adjusted_mode)
3408{
Zhenyu Wang2c072452009-06-05 15:38:42 +08003409 struct drm_device *dev = crtc->dev;
Chris Wilson89749352010-09-12 18:25:19 +01003410
Eric Anholtbad720f2009-10-22 16:11:14 -07003411 if (HAS_PCH_SPLIT(dev)) {
Zhenyu Wang2c072452009-06-05 15:38:42 +08003412 /* FDI link clock is fixed at 2.7G */
Jesse Barnes2377b742010-07-07 14:06:43 -07003413 if (mode->clock * 3 > IRONLAKE_FDI_FREQ * 4)
3414 return false;
Zhenyu Wang2c072452009-06-05 15:38:42 +08003415 }
Chris Wilson89749352010-09-12 18:25:19 +01003416
Daniel Vetterf9bef082012-04-15 19:53:19 +02003417 /* All interlaced capable intel hw wants timings in frames. Note though
3418 * that intel_lvds_mode_fixup does some funny tricks with the crtc
3419 * timings, so we need to be careful not to clobber these.*/
3420 if (!(adjusted_mode->private_flags & INTEL_MODE_CRTC_TIMINGS_SET))
3421 drm_mode_set_crtcinfo(adjusted_mode, 0);
Chris Wilson89749352010-09-12 18:25:19 +01003422
Jesse Barnes79e53942008-11-07 14:24:08 -08003423 return true;
3424}
3425
Jesse Barnes25eb05fc2012-03-28 13:39:23 -07003426static int valleyview_get_display_clock_speed(struct drm_device *dev)
3427{
3428 return 400000; /* FIXME */
3429}
3430
Jesse Barnese70236a2009-09-21 10:42:27 -07003431static int i945_get_display_clock_speed(struct drm_device *dev)
Jesse Barnes79e53942008-11-07 14:24:08 -08003432{
Jesse Barnese70236a2009-09-21 10:42:27 -07003433 return 400000;
3434}
Jesse Barnes79e53942008-11-07 14:24:08 -08003435
Jesse Barnese70236a2009-09-21 10:42:27 -07003436static int i915_get_display_clock_speed(struct drm_device *dev)
3437{
3438 return 333000;
3439}
Jesse Barnes79e53942008-11-07 14:24:08 -08003440
Jesse Barnese70236a2009-09-21 10:42:27 -07003441static int i9xx_misc_get_display_clock_speed(struct drm_device *dev)
3442{
3443 return 200000;
3444}
Jesse Barnes79e53942008-11-07 14:24:08 -08003445
Jesse Barnese70236a2009-09-21 10:42:27 -07003446static int i915gm_get_display_clock_speed(struct drm_device *dev)
3447{
3448 u16 gcfgc = 0;
3449
3450 pci_read_config_word(dev->pdev, GCFGC, &gcfgc);
3451
3452 if (gcfgc & GC_LOW_FREQUENCY_ENABLE)
Jesse Barnes79e53942008-11-07 14:24:08 -08003453 return 133000;
Jesse Barnese70236a2009-09-21 10:42:27 -07003454 else {
3455 switch (gcfgc & GC_DISPLAY_CLOCK_MASK) {
3456 case GC_DISPLAY_CLOCK_333_MHZ:
3457 return 333000;
3458 default:
3459 case GC_DISPLAY_CLOCK_190_200_MHZ:
3460 return 190000;
3461 }
3462 }
3463}
Jesse Barnes79e53942008-11-07 14:24:08 -08003464
Jesse Barnese70236a2009-09-21 10:42:27 -07003465static int i865_get_display_clock_speed(struct drm_device *dev)
3466{
3467 return 266000;
3468}
3469
3470static int i855_get_display_clock_speed(struct drm_device *dev)
3471{
3472 u16 hpllcc = 0;
3473 /* Assume that the hardware is in the high speed state. This
3474 * should be the default.
3475 */
3476 switch (hpllcc & GC_CLOCK_CONTROL_MASK) {
3477 case GC_CLOCK_133_200:
3478 case GC_CLOCK_100_200:
3479 return 200000;
3480 case GC_CLOCK_166_250:
3481 return 250000;
3482 case GC_CLOCK_100_133:
3483 return 133000;
3484 }
3485
3486 /* Shouldn't happen */
3487 return 0;
3488}
3489
3490static int i830_get_display_clock_speed(struct drm_device *dev)
3491{
3492 return 133000;
Jesse Barnes79e53942008-11-07 14:24:08 -08003493}
3494
Zhenyu Wang2c072452009-06-05 15:38:42 +08003495struct fdi_m_n {
3496 u32 tu;
3497 u32 gmch_m;
3498 u32 gmch_n;
3499 u32 link_m;
3500 u32 link_n;
3501};
3502
3503static void
3504fdi_reduce_ratio(u32 *num, u32 *den)
3505{
3506 while (*num > 0xffffff || *den > 0xffffff) {
3507 *num >>= 1;
3508 *den >>= 1;
3509 }
3510}
3511
Zhenyu Wang2c072452009-06-05 15:38:42 +08003512static void
Adam Jacksonf2b115e2009-12-03 17:14:42 -05003513ironlake_compute_m_n(int bits_per_pixel, int nlanes, int pixel_clock,
3514 int link_clock, struct fdi_m_n *m_n)
Zhenyu Wang2c072452009-06-05 15:38:42 +08003515{
Zhenyu Wang2c072452009-06-05 15:38:42 +08003516 m_n->tu = 64; /* default size */
3517
Chris Wilson22ed1112010-12-04 01:01:29 +00003518 /* BUG_ON(pixel_clock > INT_MAX / 36); */
3519 m_n->gmch_m = bits_per_pixel * pixel_clock;
3520 m_n->gmch_n = link_clock * nlanes * 8;
Zhenyu Wang2c072452009-06-05 15:38:42 +08003521 fdi_reduce_ratio(&m_n->gmch_m, &m_n->gmch_n);
3522
Chris Wilson22ed1112010-12-04 01:01:29 +00003523 m_n->link_m = pixel_clock;
3524 m_n->link_n = link_clock;
Zhenyu Wang2c072452009-06-05 15:38:42 +08003525 fdi_reduce_ratio(&m_n->link_m, &m_n->link_n);
3526}
3527
Chris Wilsona7615032011-01-12 17:04:08 +00003528static inline bool intel_panel_use_ssc(struct drm_i915_private *dev_priv)
3529{
Keith Packard72bbe582011-09-26 16:09:45 -07003530 if (i915_panel_use_ssc >= 0)
3531 return i915_panel_use_ssc != 0;
3532 return dev_priv->lvds_use_ssc
Keith Packard435793d2011-07-12 14:56:22 -07003533 && !(dev_priv->quirks & QUIRK_LVDS_SSC_DISABLE);
Chris Wilsona7615032011-01-12 17:04:08 +00003534}
3535
Jesse Barnes5a354202011-06-24 12:19:22 -07003536/**
3537 * intel_choose_pipe_bpp_dither - figure out what color depth the pipe should send
3538 * @crtc: CRTC structure
Adam Jackson3b5c78a2011-12-13 15:41:00 -08003539 * @mode: requested mode
Jesse Barnes5a354202011-06-24 12:19:22 -07003540 *
3541 * A pipe may be connected to one or more outputs. Based on the depth of the
3542 * attached framebuffer, choose a good color depth to use on the pipe.
3543 *
3544 * If possible, match the pipe depth to the fb depth. In some cases, this
3545 * isn't ideal, because the connected output supports a lesser or restricted
3546 * set of depths. Resolve that here:
3547 * LVDS typically supports only 6bpc, so clamp down in that case
3548 * HDMI supports only 8bpc or 12bpc, so clamp to 8bpc with dither for 10bpc
3549 * Displays may support a restricted set as well, check EDID and clamp as
3550 * appropriate.
Adam Jackson3b5c78a2011-12-13 15:41:00 -08003551 * DP may want to dither down to 6bpc to fit larger modes
Jesse Barnes5a354202011-06-24 12:19:22 -07003552 *
3553 * RETURNS:
3554 * Dithering requirement (i.e. false if display bpc and pipe bpc match,
3555 * true if they don't match).
3556 */
3557static bool intel_choose_pipe_bpp_dither(struct drm_crtc *crtc,
Adam Jackson3b5c78a2011-12-13 15:41:00 -08003558 unsigned int *pipe_bpp,
3559 struct drm_display_mode *mode)
Jesse Barnes5a354202011-06-24 12:19:22 -07003560{
3561 struct drm_device *dev = crtc->dev;
3562 struct drm_i915_private *dev_priv = dev->dev_private;
3563 struct drm_encoder *encoder;
3564 struct drm_connector *connector;
3565 unsigned int display_bpc = UINT_MAX, bpc;
3566
3567 /* Walk the encoders & connectors on this crtc, get min bpc */
3568 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
3569 struct intel_encoder *intel_encoder = to_intel_encoder(encoder);
3570
3571 if (encoder->crtc != crtc)
3572 continue;
3573
3574 if (intel_encoder->type == INTEL_OUTPUT_LVDS) {
3575 unsigned int lvds_bpc;
3576
3577 if ((I915_READ(PCH_LVDS) & LVDS_A3_POWER_MASK) ==
3578 LVDS_A3_POWER_UP)
3579 lvds_bpc = 8;
3580 else
3581 lvds_bpc = 6;
3582
3583 if (lvds_bpc < display_bpc) {
Adam Jackson82820492011-10-10 16:33:34 -04003584 DRM_DEBUG_KMS("clamping display bpc (was %d) to LVDS (%d)\n", display_bpc, lvds_bpc);
Jesse Barnes5a354202011-06-24 12:19:22 -07003585 display_bpc = lvds_bpc;
3586 }
3587 continue;
3588 }
3589
3590 if (intel_encoder->type == INTEL_OUTPUT_EDP) {
3591 /* Use VBT settings if we have an eDP panel */
3592 unsigned int edp_bpc = dev_priv->edp.bpp / 3;
3593
3594 if (edp_bpc < display_bpc) {
Adam Jackson82820492011-10-10 16:33:34 -04003595 DRM_DEBUG_KMS("clamping display bpc (was %d) to eDP (%d)\n", display_bpc, edp_bpc);
Jesse Barnes5a354202011-06-24 12:19:22 -07003596 display_bpc = edp_bpc;
3597 }
3598 continue;
3599 }
3600
3601 /* Not one of the known troublemakers, check the EDID */
3602 list_for_each_entry(connector, &dev->mode_config.connector_list,
3603 head) {
3604 if (connector->encoder != encoder)
3605 continue;
3606
Jesse Barnes62ac41a2011-07-28 12:55:14 -07003607 /* Don't use an invalid EDID bpc value */
3608 if (connector->display_info.bpc &&
3609 connector->display_info.bpc < display_bpc) {
Adam Jackson82820492011-10-10 16:33:34 -04003610 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 -07003611 display_bpc = connector->display_info.bpc;
3612 }
3613 }
3614
3615 /*
3616 * HDMI is either 12 or 8, so if the display lets 10bpc sneak
3617 * through, clamp it down. (Note: >12bpc will be caught below.)
3618 */
3619 if (intel_encoder->type == INTEL_OUTPUT_HDMI) {
3620 if (display_bpc > 8 && display_bpc < 12) {
Adam Jackson82820492011-10-10 16:33:34 -04003621 DRM_DEBUG_KMS("forcing bpc to 12 for HDMI\n");
Jesse Barnes5a354202011-06-24 12:19:22 -07003622 display_bpc = 12;
3623 } else {
Adam Jackson82820492011-10-10 16:33:34 -04003624 DRM_DEBUG_KMS("forcing bpc to 8 for HDMI\n");
Jesse Barnes5a354202011-06-24 12:19:22 -07003625 display_bpc = 8;
3626 }
3627 }
3628 }
3629
Adam Jackson3b5c78a2011-12-13 15:41:00 -08003630 if (mode->private_flags & INTEL_MODE_DP_FORCE_6BPC) {
3631 DRM_DEBUG_KMS("Dithering DP to 6bpc\n");
3632 display_bpc = 6;
3633 }
3634
Jesse Barnes5a354202011-06-24 12:19:22 -07003635 /*
3636 * We could just drive the pipe at the highest bpc all the time and
3637 * enable dithering as needed, but that costs bandwidth. So choose
3638 * the minimum value that expresses the full color range of the fb but
3639 * also stays within the max display bpc discovered above.
3640 */
3641
3642 switch (crtc->fb->depth) {
3643 case 8:
3644 bpc = 8; /* since we go through a colormap */
3645 break;
3646 case 15:
3647 case 16:
3648 bpc = 6; /* min is 18bpp */
3649 break;
3650 case 24:
Keith Packard578393c2011-09-05 11:53:21 -07003651 bpc = 8;
Jesse Barnes5a354202011-06-24 12:19:22 -07003652 break;
3653 case 30:
Keith Packard578393c2011-09-05 11:53:21 -07003654 bpc = 10;
Jesse Barnes5a354202011-06-24 12:19:22 -07003655 break;
3656 case 48:
Keith Packard578393c2011-09-05 11:53:21 -07003657 bpc = 12;
Jesse Barnes5a354202011-06-24 12:19:22 -07003658 break;
3659 default:
3660 DRM_DEBUG("unsupported depth, assuming 24 bits\n");
3661 bpc = min((unsigned int)8, display_bpc);
3662 break;
3663 }
3664
Keith Packard578393c2011-09-05 11:53:21 -07003665 display_bpc = min(display_bpc, bpc);
3666
Adam Jackson82820492011-10-10 16:33:34 -04003667 DRM_DEBUG_KMS("setting pipe bpc to %d (max display bpc %d)\n",
3668 bpc, display_bpc);
Jesse Barnes5a354202011-06-24 12:19:22 -07003669
Keith Packard578393c2011-09-05 11:53:21 -07003670 *pipe_bpp = display_bpc * 3;
Jesse Barnes5a354202011-06-24 12:19:22 -07003671
3672 return display_bpc != bpc;
3673}
3674
Jesse Barnesc65d77d2011-12-15 12:30:36 -08003675static int i9xx_get_refclk(struct drm_crtc *crtc, int num_connectors)
3676{
3677 struct drm_device *dev = crtc->dev;
3678 struct drm_i915_private *dev_priv = dev->dev_private;
3679 int refclk;
3680
3681 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) &&
3682 intel_panel_use_ssc(dev_priv) && num_connectors < 2) {
3683 refclk = dev_priv->lvds_ssc_freq * 1000;
3684 DRM_DEBUG_KMS("using SSC reference clock of %d MHz\n",
3685 refclk / 1000);
3686 } else if (!IS_GEN2(dev)) {
3687 refclk = 96000;
3688 } else {
3689 refclk = 48000;
3690 }
3691
3692 return refclk;
3693}
3694
3695static void i9xx_adjust_sdvo_tv_clock(struct drm_display_mode *adjusted_mode,
3696 intel_clock_t *clock)
3697{
3698 /* SDVO TV has fixed PLL values depend on its clock range,
3699 this mirrors vbios setting. */
3700 if (adjusted_mode->clock >= 100000
3701 && adjusted_mode->clock < 140500) {
3702 clock->p1 = 2;
3703 clock->p2 = 10;
3704 clock->n = 3;
3705 clock->m1 = 16;
3706 clock->m2 = 8;
3707 } else if (adjusted_mode->clock >= 140500
3708 && adjusted_mode->clock <= 200000) {
3709 clock->p1 = 1;
3710 clock->p2 = 10;
3711 clock->n = 6;
3712 clock->m1 = 12;
3713 clock->m2 = 8;
3714 }
3715}
3716
Jesse Barnesa7516a02011-12-15 12:30:37 -08003717static void i9xx_update_pll_dividers(struct drm_crtc *crtc,
3718 intel_clock_t *clock,
3719 intel_clock_t *reduced_clock)
3720{
3721 struct drm_device *dev = crtc->dev;
3722 struct drm_i915_private *dev_priv = dev->dev_private;
3723 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3724 int pipe = intel_crtc->pipe;
3725 u32 fp, fp2 = 0;
3726
3727 if (IS_PINEVIEW(dev)) {
3728 fp = (1 << clock->n) << 16 | clock->m1 << 8 | clock->m2;
3729 if (reduced_clock)
3730 fp2 = (1 << reduced_clock->n) << 16 |
3731 reduced_clock->m1 << 8 | reduced_clock->m2;
3732 } else {
3733 fp = clock->n << 16 | clock->m1 << 8 | clock->m2;
3734 if (reduced_clock)
3735 fp2 = reduced_clock->n << 16 | reduced_clock->m1 << 8 |
3736 reduced_clock->m2;
3737 }
3738
3739 I915_WRITE(FP0(pipe), fp);
3740
3741 intel_crtc->lowfreq_avail = false;
3742 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) &&
3743 reduced_clock && i915_powersave) {
3744 I915_WRITE(FP1(pipe), fp2);
3745 intel_crtc->lowfreq_avail = true;
3746 } else {
3747 I915_WRITE(FP1(pipe), fp);
3748 }
3749}
3750
Daniel Vetter93e537a2012-03-28 23:11:26 +02003751static void intel_update_lvds(struct drm_crtc *crtc, intel_clock_t *clock,
3752 struct drm_display_mode *adjusted_mode)
3753{
3754 struct drm_device *dev = crtc->dev;
3755 struct drm_i915_private *dev_priv = dev->dev_private;
3756 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3757 int pipe = intel_crtc->pipe;
Chris Wilson284d5df2012-04-14 17:41:59 +01003758 u32 temp;
Daniel Vetter93e537a2012-03-28 23:11:26 +02003759
3760 temp = I915_READ(LVDS);
3761 temp |= LVDS_PORT_EN | LVDS_A0A2_CLKA_POWER_UP;
3762 if (pipe == 1) {
3763 temp |= LVDS_PIPEB_SELECT;
3764 } else {
3765 temp &= ~LVDS_PIPEB_SELECT;
3766 }
3767 /* set the corresponsding LVDS_BORDER bit */
3768 temp |= dev_priv->lvds_border_bits;
3769 /* Set the B0-B3 data pairs corresponding to whether we're going to
3770 * set the DPLLs for dual-channel mode or not.
3771 */
3772 if (clock->p2 == 7)
3773 temp |= LVDS_B0B3_POWER_UP | LVDS_CLKB_POWER_UP;
3774 else
3775 temp &= ~(LVDS_B0B3_POWER_UP | LVDS_CLKB_POWER_UP);
3776
3777 /* It would be nice to set 24 vs 18-bit mode (LVDS_A3_POWER_UP)
3778 * appropriately here, but we need to look more thoroughly into how
3779 * panels behave in the two modes.
3780 */
3781 /* set the dithering flag on LVDS as needed */
3782 if (INTEL_INFO(dev)->gen >= 4) {
3783 if (dev_priv->lvds_dither)
3784 temp |= LVDS_ENABLE_DITHER;
3785 else
3786 temp &= ~LVDS_ENABLE_DITHER;
3787 }
Chris Wilson284d5df2012-04-14 17:41:59 +01003788 temp &= ~(LVDS_HSYNC_POLARITY | LVDS_VSYNC_POLARITY);
Daniel Vetter93e537a2012-03-28 23:11:26 +02003789 if (adjusted_mode->flags & DRM_MODE_FLAG_NHSYNC)
Chris Wilson284d5df2012-04-14 17:41:59 +01003790 temp |= LVDS_HSYNC_POLARITY;
Daniel Vetter93e537a2012-03-28 23:11:26 +02003791 if (adjusted_mode->flags & DRM_MODE_FLAG_NVSYNC)
Chris Wilson284d5df2012-04-14 17:41:59 +01003792 temp |= LVDS_VSYNC_POLARITY;
Daniel Vetter93e537a2012-03-28 23:11:26 +02003793 I915_WRITE(LVDS, temp);
3794}
3795
Daniel Vettereb1cbe42012-03-28 23:12:16 +02003796static void i9xx_update_pll(struct drm_crtc *crtc,
3797 struct drm_display_mode *mode,
3798 struct drm_display_mode *adjusted_mode,
3799 intel_clock_t *clock, intel_clock_t *reduced_clock,
3800 int num_connectors)
3801{
3802 struct drm_device *dev = crtc->dev;
3803 struct drm_i915_private *dev_priv = dev->dev_private;
3804 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3805 int pipe = intel_crtc->pipe;
3806 u32 dpll;
3807 bool is_sdvo;
3808
3809 is_sdvo = intel_pipe_has_type(crtc, INTEL_OUTPUT_SDVO) ||
3810 intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI);
3811
3812 dpll = DPLL_VGA_MODE_DIS;
3813
3814 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS))
3815 dpll |= DPLLB_MODE_LVDS;
3816 else
3817 dpll |= DPLLB_MODE_DAC_SERIAL;
3818 if (is_sdvo) {
3819 int pixel_multiplier = intel_mode_get_pixel_multiplier(adjusted_mode);
3820 if (pixel_multiplier > 1) {
3821 if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev))
3822 dpll |= (pixel_multiplier - 1) << SDVO_MULTIPLIER_SHIFT_HIRES;
3823 }
3824 dpll |= DPLL_DVO_HIGH_SPEED;
3825 }
3826 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT))
3827 dpll |= DPLL_DVO_HIGH_SPEED;
3828
3829 /* compute bitmask from p1 value */
3830 if (IS_PINEVIEW(dev))
3831 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW;
3832 else {
3833 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
3834 if (IS_G4X(dev) && reduced_clock)
3835 dpll |= (1 << (reduced_clock->p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
3836 }
3837 switch (clock->p2) {
3838 case 5:
3839 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
3840 break;
3841 case 7:
3842 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
3843 break;
3844 case 10:
3845 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
3846 break;
3847 case 14:
3848 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
3849 break;
3850 }
3851 if (INTEL_INFO(dev)->gen >= 4)
3852 dpll |= (6 << PLL_LOAD_PULSE_PHASE_SHIFT);
3853
3854 if (is_sdvo && intel_pipe_has_type(crtc, INTEL_OUTPUT_TVOUT))
3855 dpll |= PLL_REF_INPUT_TVCLKINBC;
3856 else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_TVOUT))
3857 /* XXX: just matching BIOS for now */
3858 /* dpll |= PLL_REF_INPUT_TVCLKINBC; */
3859 dpll |= 3;
3860 else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) &&
3861 intel_panel_use_ssc(dev_priv) && num_connectors < 2)
3862 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
3863 else
3864 dpll |= PLL_REF_INPUT_DREFCLK;
3865
3866 dpll |= DPLL_VCO_ENABLE;
3867 I915_WRITE(DPLL(pipe), dpll & ~DPLL_VCO_ENABLE);
3868 POSTING_READ(DPLL(pipe));
3869 udelay(150);
3870
3871 /* The LVDS pin pair needs to be on before the DPLLs are enabled.
3872 * This is an exception to the general rule that mode_set doesn't turn
3873 * things on.
3874 */
3875 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS))
3876 intel_update_lvds(crtc, clock, adjusted_mode);
3877
3878 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT))
3879 intel_dp_set_m_n(crtc, mode, adjusted_mode);
3880
3881 I915_WRITE(DPLL(pipe), dpll);
3882
3883 /* Wait for the clocks to stabilize. */
3884 POSTING_READ(DPLL(pipe));
3885 udelay(150);
3886
3887 if (INTEL_INFO(dev)->gen >= 4) {
3888 u32 temp = 0;
3889 if (is_sdvo) {
3890 temp = intel_mode_get_pixel_multiplier(adjusted_mode);
3891 if (temp > 1)
3892 temp = (temp - 1) << DPLL_MD_UDI_MULTIPLIER_SHIFT;
3893 else
3894 temp = 0;
3895 }
3896 I915_WRITE(DPLL_MD(pipe), temp);
3897 } else {
3898 /* The pixel multiplier can only be updated once the
3899 * DPLL is enabled and the clocks are stable.
3900 *
3901 * So write it again.
3902 */
3903 I915_WRITE(DPLL(pipe), dpll);
3904 }
3905}
3906
3907static void i8xx_update_pll(struct drm_crtc *crtc,
3908 struct drm_display_mode *adjusted_mode,
3909 intel_clock_t *clock,
3910 int num_connectors)
3911{
3912 struct drm_device *dev = crtc->dev;
3913 struct drm_i915_private *dev_priv = dev->dev_private;
3914 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3915 int pipe = intel_crtc->pipe;
3916 u32 dpll;
3917
3918 dpll = DPLL_VGA_MODE_DIS;
3919
3920 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
3921 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
3922 } else {
3923 if (clock->p1 == 2)
3924 dpll |= PLL_P1_DIVIDE_BY_TWO;
3925 else
3926 dpll |= (clock->p1 - 2) << DPLL_FPA01_P1_POST_DIV_SHIFT;
3927 if (clock->p2 == 4)
3928 dpll |= PLL_P2_DIVIDE_BY_4;
3929 }
3930
3931 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_TVOUT))
3932 /* XXX: just matching BIOS for now */
3933 /* dpll |= PLL_REF_INPUT_TVCLKINBC; */
3934 dpll |= 3;
3935 else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) &&
3936 intel_panel_use_ssc(dev_priv) && num_connectors < 2)
3937 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
3938 else
3939 dpll |= PLL_REF_INPUT_DREFCLK;
3940
3941 dpll |= DPLL_VCO_ENABLE;
3942 I915_WRITE(DPLL(pipe), dpll & ~DPLL_VCO_ENABLE);
3943 POSTING_READ(DPLL(pipe));
3944 udelay(150);
3945
3946 I915_WRITE(DPLL(pipe), dpll);
3947
3948 /* Wait for the clocks to stabilize. */
3949 POSTING_READ(DPLL(pipe));
3950 udelay(150);
3951
3952 /* The LVDS pin pair needs to be on before the DPLLs are enabled.
3953 * This is an exception to the general rule that mode_set doesn't turn
3954 * things on.
3955 */
3956 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS))
3957 intel_update_lvds(crtc, clock, adjusted_mode);
3958
3959 /* The pixel multiplier can only be updated once the
3960 * DPLL is enabled and the clocks are stable.
3961 *
3962 * So write it again.
3963 */
3964 I915_WRITE(DPLL(pipe), dpll);
3965}
3966
Eric Anholtf564048e2011-03-30 13:01:02 -07003967static int i9xx_crtc_mode_set(struct drm_crtc *crtc,
3968 struct drm_display_mode *mode,
3969 struct drm_display_mode *adjusted_mode,
3970 int x, int y,
3971 struct drm_framebuffer *old_fb)
Jesse Barnes79e53942008-11-07 14:24:08 -08003972{
3973 struct drm_device *dev = crtc->dev;
3974 struct drm_i915_private *dev_priv = dev->dev_private;
3975 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3976 int pipe = intel_crtc->pipe;
Jesse Barnes80824002009-09-10 15:28:06 -07003977 int plane = intel_crtc->plane;
Eric Anholtc751ce42010-03-25 11:48:48 -07003978 int refclk, num_connectors = 0;
Jesse Barnes652c3932009-08-17 13:31:43 -07003979 intel_clock_t clock, reduced_clock;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02003980 u32 dspcntr, pipeconf, vsyncshift;
3981 bool ok, has_reduced_clock = false, is_sdvo = false;
3982 bool is_lvds = false, is_tv = false, is_dp = false;
Jesse Barnes79e53942008-11-07 14:24:08 -08003983 struct drm_mode_config *mode_config = &dev->mode_config;
Chris Wilson5eddb702010-09-11 13:48:45 +01003984 struct intel_encoder *encoder;
Ma Lingd4906092009-03-18 20:13:27 +08003985 const intel_limit_t *limit;
Chris Wilson5c3b82e2009-02-11 13:25:09 +00003986 int ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08003987
Chris Wilson5eddb702010-09-11 13:48:45 +01003988 list_for_each_entry(encoder, &mode_config->encoder_list, base.head) {
3989 if (encoder->base.crtc != crtc)
Jesse Barnes79e53942008-11-07 14:24:08 -08003990 continue;
3991
Chris Wilson5eddb702010-09-11 13:48:45 +01003992 switch (encoder->type) {
Jesse Barnes79e53942008-11-07 14:24:08 -08003993 case INTEL_OUTPUT_LVDS:
3994 is_lvds = true;
3995 break;
3996 case INTEL_OUTPUT_SDVO:
Eric Anholt7d573822009-01-02 13:33:00 -08003997 case INTEL_OUTPUT_HDMI:
Jesse Barnes79e53942008-11-07 14:24:08 -08003998 is_sdvo = true;
Chris Wilson5eddb702010-09-11 13:48:45 +01003999 if (encoder->needs_tv_clock)
Jesse Barnese2f0ba92009-02-02 15:11:52 -08004000 is_tv = true;
Jesse Barnes79e53942008-11-07 14:24:08 -08004001 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08004002 case INTEL_OUTPUT_TVOUT:
4003 is_tv = true;
4004 break;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004005 case INTEL_OUTPUT_DISPLAYPORT:
4006 is_dp = true;
4007 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08004008 }
Kristian Høgsberg43565a02009-02-13 20:56:52 -05004009
Eric Anholtc751ce42010-03-25 11:48:48 -07004010 num_connectors++;
Jesse Barnes79e53942008-11-07 14:24:08 -08004011 }
4012
Jesse Barnesc65d77d2011-12-15 12:30:36 -08004013 refclk = i9xx_get_refclk(crtc, num_connectors);
Jesse Barnes79e53942008-11-07 14:24:08 -08004014
Ma Lingd4906092009-03-18 20:13:27 +08004015 /*
4016 * Returns a set of divisors for the desired target clock with the given
4017 * refclk, or FALSE. The returned values represent the clock equation:
4018 * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2.
4019 */
Chris Wilson1b894b52010-12-14 20:04:54 +00004020 limit = intel_limit(crtc, refclk);
Sean Paulcec2f352012-01-10 15:09:36 -08004021 ok = limit->find_pll(limit, crtc, adjusted_mode->clock, refclk, NULL,
4022 &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08004023 if (!ok) {
4024 DRM_ERROR("Couldn't find PLL settings for mode!\n");
Eric Anholtf564048e2011-03-30 13:01:02 -07004025 return -EINVAL;
4026 }
4027
4028 /* Ensure that the cursor is valid for the new mode before changing... */
4029 intel_crtc_update_cursor(crtc, true);
4030
4031 if (is_lvds && dev_priv->lvds_downclock_avail) {
Sean Paulcec2f352012-01-10 15:09:36 -08004032 /*
4033 * Ensure we match the reduced clock's P to the target clock.
4034 * If the clocks don't match, we can't switch the display clock
4035 * by using the FP0/FP1. In such case we will disable the LVDS
4036 * downclock feature.
4037 */
Eric Anholtf564048e2011-03-30 13:01:02 -07004038 has_reduced_clock = limit->find_pll(limit, crtc,
4039 dev_priv->lvds_downclock,
4040 refclk,
Sean Paulcec2f352012-01-10 15:09:36 -08004041 &clock,
Eric Anholtf564048e2011-03-30 13:01:02 -07004042 &reduced_clock);
Eric Anholtf564048e2011-03-30 13:01:02 -07004043 }
4044
Jesse Barnesc65d77d2011-12-15 12:30:36 -08004045 if (is_sdvo && is_tv)
4046 i9xx_adjust_sdvo_tv_clock(adjusted_mode, &clock);
Eric Anholtf564048e2011-03-30 13:01:02 -07004047
Jesse Barnesa7516a02011-12-15 12:30:37 -08004048 i9xx_update_pll_dividers(crtc, &clock, has_reduced_clock ?
4049 &reduced_clock : NULL);
Eric Anholtf564048e2011-03-30 13:01:02 -07004050
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004051 if (IS_GEN2(dev))
4052 i8xx_update_pll(crtc, adjusted_mode, &clock, num_connectors);
Eric Anholtf564048e2011-03-30 13:01:02 -07004053 else
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004054 i9xx_update_pll(crtc, mode, adjusted_mode, &clock,
4055 has_reduced_clock ? &reduced_clock : NULL,
4056 num_connectors);
Eric Anholtf564048e2011-03-30 13:01:02 -07004057
4058 /* setup pipeconf */
4059 pipeconf = I915_READ(PIPECONF(pipe));
4060
4061 /* Set up the display plane register */
4062 dspcntr = DISPPLANE_GAMMA_ENABLE;
4063
Eric Anholt929c77f2011-03-30 13:01:04 -07004064 if (pipe == 0)
4065 dspcntr &= ~DISPPLANE_SEL_PIPE_MASK;
4066 else
4067 dspcntr |= DISPPLANE_SEL_PIPE_B;
Eric Anholtf564048e2011-03-30 13:01:02 -07004068
4069 if (pipe == 0 && INTEL_INFO(dev)->gen < 4) {
4070 /* Enable pixel doubling when the dot clock is > 90% of the (display)
4071 * core speed.
4072 *
4073 * XXX: No double-wide on 915GM pipe B. Is that the only reason for the
4074 * pipe == 0 check?
4075 */
4076 if (mode->clock >
4077 dev_priv->display.get_display_clock_speed(dev) * 9 / 10)
4078 pipeconf |= PIPECONF_DOUBLE_WIDE;
4079 else
4080 pipeconf &= ~PIPECONF_DOUBLE_WIDE;
4081 }
4082
Adam Jackson3b5c78a2011-12-13 15:41:00 -08004083 /* default to 8bpc */
4084 pipeconf &= ~(PIPECONF_BPP_MASK | PIPECONF_DITHER_EN);
4085 if (is_dp) {
4086 if (mode->private_flags & INTEL_MODE_DP_FORCE_6BPC) {
4087 pipeconf |= PIPECONF_BPP_6 |
4088 PIPECONF_DITHER_EN |
4089 PIPECONF_DITHER_TYPE_SP;
4090 }
4091 }
4092
Eric Anholtf564048e2011-03-30 13:01:02 -07004093 DRM_DEBUG_KMS("Mode for pipe %c:\n", pipe == 0 ? 'A' : 'B');
4094 drm_mode_debug_printmodeline(mode);
4095
Jesse Barnesa7516a02011-12-15 12:30:37 -08004096 if (HAS_PIPE_CXSR(dev)) {
4097 if (intel_crtc->lowfreq_avail) {
Eric Anholtf564048e2011-03-30 13:01:02 -07004098 DRM_DEBUG_KMS("enabling CxSR downclocking\n");
4099 pipeconf |= PIPECONF_CXSR_DOWNCLOCK;
Jesse Barnesa7516a02011-12-15 12:30:37 -08004100 } else {
Eric Anholtf564048e2011-03-30 13:01:02 -07004101 DRM_DEBUG_KMS("disabling CxSR downclocking\n");
4102 pipeconf &= ~PIPECONF_CXSR_DOWNCLOCK;
4103 }
4104 }
4105
Keith Packard617cf882012-02-08 13:53:38 -08004106 pipeconf &= ~PIPECONF_INTERLACE_MASK;
Daniel Vetterdbb02572012-01-28 14:49:23 +01004107 if (!IS_GEN2(dev) &&
4108 adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE) {
Eric Anholtf564048e2011-03-30 13:01:02 -07004109 pipeconf |= PIPECONF_INTERLACE_W_FIELD_INDICATION;
4110 /* the chip adds 2 halflines automatically */
Eric Anholtf564048e2011-03-30 13:01:02 -07004111 adjusted_mode->crtc_vtotal -= 1;
Eric Anholtf564048e2011-03-30 13:01:02 -07004112 adjusted_mode->crtc_vblank_end -= 1;
Daniel Vetter0529a0d2012-01-28 14:49:24 +01004113 vsyncshift = adjusted_mode->crtc_hsync_start
4114 - adjusted_mode->crtc_htotal/2;
4115 } else {
Keith Packard617cf882012-02-08 13:53:38 -08004116 pipeconf |= PIPECONF_PROGRESSIVE;
Daniel Vetter0529a0d2012-01-28 14:49:24 +01004117 vsyncshift = 0;
4118 }
4119
4120 if (!IS_GEN3(dev))
4121 I915_WRITE(VSYNCSHIFT(pipe), vsyncshift);
Eric Anholtf564048e2011-03-30 13:01:02 -07004122
4123 I915_WRITE(HTOTAL(pipe),
4124 (adjusted_mode->crtc_hdisplay - 1) |
4125 ((adjusted_mode->crtc_htotal - 1) << 16));
4126 I915_WRITE(HBLANK(pipe),
4127 (adjusted_mode->crtc_hblank_start - 1) |
4128 ((adjusted_mode->crtc_hblank_end - 1) << 16));
4129 I915_WRITE(HSYNC(pipe),
4130 (adjusted_mode->crtc_hsync_start - 1) |
4131 ((adjusted_mode->crtc_hsync_end - 1) << 16));
4132
4133 I915_WRITE(VTOTAL(pipe),
4134 (adjusted_mode->crtc_vdisplay - 1) |
4135 ((adjusted_mode->crtc_vtotal - 1) << 16));
4136 I915_WRITE(VBLANK(pipe),
4137 (adjusted_mode->crtc_vblank_start - 1) |
4138 ((adjusted_mode->crtc_vblank_end - 1) << 16));
4139 I915_WRITE(VSYNC(pipe),
4140 (adjusted_mode->crtc_vsync_start - 1) |
4141 ((adjusted_mode->crtc_vsync_end - 1) << 16));
4142
4143 /* pipesrc and dspsize control the size that is scaled from,
4144 * which should always be the user's requested size.
4145 */
Eric Anholt929c77f2011-03-30 13:01:04 -07004146 I915_WRITE(DSPSIZE(plane),
4147 ((mode->vdisplay - 1) << 16) |
4148 (mode->hdisplay - 1));
4149 I915_WRITE(DSPPOS(plane), 0);
Eric Anholtf564048e2011-03-30 13:01:02 -07004150 I915_WRITE(PIPESRC(pipe),
4151 ((mode->hdisplay - 1) << 16) | (mode->vdisplay - 1));
4152
Eric Anholtf564048e2011-03-30 13:01:02 -07004153 I915_WRITE(PIPECONF(pipe), pipeconf);
4154 POSTING_READ(PIPECONF(pipe));
Eric Anholt929c77f2011-03-30 13:01:04 -07004155 intel_enable_pipe(dev_priv, pipe, false);
Eric Anholtf564048e2011-03-30 13:01:02 -07004156
4157 intel_wait_for_vblank(dev, pipe);
4158
Eric Anholtf564048e2011-03-30 13:01:02 -07004159 I915_WRITE(DSPCNTR(plane), dspcntr);
4160 POSTING_READ(DSPCNTR(plane));
4161
4162 ret = intel_pipe_set_base(crtc, x, y, old_fb);
4163
4164 intel_update_watermarks(dev);
4165
Eric Anholtf564048e2011-03-30 13:01:02 -07004166 return ret;
4167}
4168
Keith Packard9fb526d2011-09-26 22:24:57 -07004169/*
4170 * Initialize reference clocks when the driver loads
4171 */
4172void ironlake_init_pch_refclk(struct drm_device *dev)
Jesse Barnes13d83a62011-08-03 12:59:20 -07004173{
4174 struct drm_i915_private *dev_priv = dev->dev_private;
4175 struct drm_mode_config *mode_config = &dev->mode_config;
Jesse Barnes13d83a62011-08-03 12:59:20 -07004176 struct intel_encoder *encoder;
Jesse Barnes13d83a62011-08-03 12:59:20 -07004177 u32 temp;
4178 bool has_lvds = false;
Keith Packard199e5d72011-09-22 12:01:57 -07004179 bool has_cpu_edp = false;
4180 bool has_pch_edp = false;
4181 bool has_panel = false;
Keith Packard99eb6a02011-09-26 14:29:12 -07004182 bool has_ck505 = false;
4183 bool can_ssc = false;
Jesse Barnes13d83a62011-08-03 12:59:20 -07004184
4185 /* We need to take the global config into account */
Keith Packard199e5d72011-09-22 12:01:57 -07004186 list_for_each_entry(encoder, &mode_config->encoder_list,
4187 base.head) {
4188 switch (encoder->type) {
4189 case INTEL_OUTPUT_LVDS:
4190 has_panel = true;
4191 has_lvds = true;
4192 break;
4193 case INTEL_OUTPUT_EDP:
4194 has_panel = true;
4195 if (intel_encoder_is_pch_edp(&encoder->base))
4196 has_pch_edp = true;
4197 else
4198 has_cpu_edp = true;
4199 break;
Jesse Barnes13d83a62011-08-03 12:59:20 -07004200 }
4201 }
4202
Keith Packard99eb6a02011-09-26 14:29:12 -07004203 if (HAS_PCH_IBX(dev)) {
4204 has_ck505 = dev_priv->display_clock_mode;
4205 can_ssc = has_ck505;
4206 } else {
4207 has_ck505 = false;
4208 can_ssc = true;
4209 }
4210
4211 DRM_DEBUG_KMS("has_panel %d has_lvds %d has_pch_edp %d has_cpu_edp %d has_ck505 %d\n",
4212 has_panel, has_lvds, has_pch_edp, has_cpu_edp,
4213 has_ck505);
Jesse Barnes13d83a62011-08-03 12:59:20 -07004214
4215 /* Ironlake: try to setup display ref clock before DPLL
4216 * enabling. This is only under driver's control after
4217 * PCH B stepping, previous chipset stepping should be
4218 * ignoring this setting.
4219 */
4220 temp = I915_READ(PCH_DREF_CONTROL);
4221 /* Always enable nonspread source */
4222 temp &= ~DREF_NONSPREAD_SOURCE_MASK;
Jesse Barnes13d83a62011-08-03 12:59:20 -07004223
Keith Packard99eb6a02011-09-26 14:29:12 -07004224 if (has_ck505)
4225 temp |= DREF_NONSPREAD_CK505_ENABLE;
4226 else
4227 temp |= DREF_NONSPREAD_SOURCE_ENABLE;
Jesse Barnes13d83a62011-08-03 12:59:20 -07004228
Keith Packard199e5d72011-09-22 12:01:57 -07004229 if (has_panel) {
4230 temp &= ~DREF_SSC_SOURCE_MASK;
4231 temp |= DREF_SSC_SOURCE_ENABLE;
Jesse Barnes13d83a62011-08-03 12:59:20 -07004232
Keith Packard199e5d72011-09-22 12:01:57 -07004233 /* SSC must be turned on before enabling the CPU output */
Keith Packard99eb6a02011-09-26 14:29:12 -07004234 if (intel_panel_use_ssc(dev_priv) && can_ssc) {
Keith Packard199e5d72011-09-22 12:01:57 -07004235 DRM_DEBUG_KMS("Using SSC on panel\n");
Jesse Barnes13d83a62011-08-03 12:59:20 -07004236 temp |= DREF_SSC1_ENABLE;
Daniel Vettere77166b2012-03-30 22:14:05 +02004237 } else
4238 temp &= ~DREF_SSC1_ENABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07004239
4240 /* Get SSC going before enabling the outputs */
4241 I915_WRITE(PCH_DREF_CONTROL, temp);
4242 POSTING_READ(PCH_DREF_CONTROL);
4243 udelay(200);
4244
Jesse Barnes13d83a62011-08-03 12:59:20 -07004245 temp &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
4246
4247 /* Enable CPU source on CPU attached eDP */
Keith Packard199e5d72011-09-22 12:01:57 -07004248 if (has_cpu_edp) {
Keith Packard99eb6a02011-09-26 14:29:12 -07004249 if (intel_panel_use_ssc(dev_priv) && can_ssc) {
Keith Packard199e5d72011-09-22 12:01:57 -07004250 DRM_DEBUG_KMS("Using SSC on eDP\n");
Jesse Barnes13d83a62011-08-03 12:59:20 -07004251 temp |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD;
Keith Packard199e5d72011-09-22 12:01:57 -07004252 }
Jesse Barnes13d83a62011-08-03 12:59:20 -07004253 else
4254 temp |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD;
Keith Packard199e5d72011-09-22 12:01:57 -07004255 } else
4256 temp |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
4257
4258 I915_WRITE(PCH_DREF_CONTROL, temp);
4259 POSTING_READ(PCH_DREF_CONTROL);
4260 udelay(200);
4261 } else {
4262 DRM_DEBUG_KMS("Disabling SSC entirely\n");
4263
4264 temp &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
4265
4266 /* Turn off CPU output */
4267 temp |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
4268
4269 I915_WRITE(PCH_DREF_CONTROL, temp);
4270 POSTING_READ(PCH_DREF_CONTROL);
4271 udelay(200);
4272
4273 /* Turn off the SSC source */
4274 temp &= ~DREF_SSC_SOURCE_MASK;
4275 temp |= DREF_SSC_SOURCE_DISABLE;
4276
4277 /* Turn off SSC1 */
4278 temp &= ~ DREF_SSC1_ENABLE;
4279
Jesse Barnes13d83a62011-08-03 12:59:20 -07004280 I915_WRITE(PCH_DREF_CONTROL, temp);
4281 POSTING_READ(PCH_DREF_CONTROL);
4282 udelay(200);
4283 }
4284}
4285
Jesse Barnesd9d444c2011-09-02 13:03:05 -07004286static int ironlake_get_refclk(struct drm_crtc *crtc)
4287{
4288 struct drm_device *dev = crtc->dev;
4289 struct drm_i915_private *dev_priv = dev->dev_private;
4290 struct intel_encoder *encoder;
4291 struct drm_mode_config *mode_config = &dev->mode_config;
4292 struct intel_encoder *edp_encoder = NULL;
4293 int num_connectors = 0;
4294 bool is_lvds = false;
4295
4296 list_for_each_entry(encoder, &mode_config->encoder_list, base.head) {
4297 if (encoder->base.crtc != crtc)
4298 continue;
4299
4300 switch (encoder->type) {
4301 case INTEL_OUTPUT_LVDS:
4302 is_lvds = true;
4303 break;
4304 case INTEL_OUTPUT_EDP:
4305 edp_encoder = encoder;
4306 break;
4307 }
4308 num_connectors++;
4309 }
4310
4311 if (is_lvds && intel_panel_use_ssc(dev_priv) && num_connectors < 2) {
4312 DRM_DEBUG_KMS("using SSC reference clock of %d MHz\n",
4313 dev_priv->lvds_ssc_freq);
4314 return dev_priv->lvds_ssc_freq * 1000;
4315 }
4316
4317 return 120000;
4318}
4319
Eric Anholtf564048e2011-03-30 13:01:02 -07004320static int ironlake_crtc_mode_set(struct drm_crtc *crtc,
4321 struct drm_display_mode *mode,
4322 struct drm_display_mode *adjusted_mode,
4323 int x, int y,
4324 struct drm_framebuffer *old_fb)
Jesse Barnes79e53942008-11-07 14:24:08 -08004325{
4326 struct drm_device *dev = crtc->dev;
4327 struct drm_i915_private *dev_priv = dev->dev_private;
4328 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4329 int pipe = intel_crtc->pipe;
Chris Wilson5c3b82e2009-02-11 13:25:09 +00004330 int plane = intel_crtc->plane;
Jesse Barnes79e53942008-11-07 14:24:08 -08004331 int refclk, num_connectors = 0;
4332 intel_clock_t clock, reduced_clock;
4333 u32 dpll, fp = 0, fp2 = 0, dspcntr, pipeconf;
Eric Anholta07d6782011-03-30 13:01:08 -07004334 bool ok, has_reduced_clock = false, is_sdvo = false;
Jesse Barnes79e53942008-11-07 14:24:08 -08004335 bool is_crt = false, is_lvds = false, is_tv = false, is_dp = false;
Jesse Barnes79e53942008-11-07 14:24:08 -08004336 struct drm_mode_config *mode_config = &dev->mode_config;
Jesse Barnese3aef172012-04-10 11:58:03 -07004337 struct intel_encoder *encoder, *edp_encoder = NULL;
Jesse Barnes79e53942008-11-07 14:24:08 -08004338 const intel_limit_t *limit;
4339 int ret;
4340 struct fdi_m_n m_n = {0};
Eric Anholtfae14982011-03-30 13:01:09 -07004341 u32 temp;
Jesse Barnes5a354202011-06-24 12:19:22 -07004342 int target_clock, pixel_multiplier, lane, link_bw, factor;
4343 unsigned int pipe_bpp;
4344 bool dither;
Jesse Barnese3aef172012-04-10 11:58:03 -07004345 bool is_cpu_edp = false, is_pch_edp = false;
Jesse Barnes79e53942008-11-07 14:24:08 -08004346
Jesse Barnes79e53942008-11-07 14:24:08 -08004347 list_for_each_entry(encoder, &mode_config->encoder_list, base.head) {
4348 if (encoder->base.crtc != crtc)
4349 continue;
4350
4351 switch (encoder->type) {
4352 case INTEL_OUTPUT_LVDS:
4353 is_lvds = true;
4354 break;
4355 case INTEL_OUTPUT_SDVO:
4356 case INTEL_OUTPUT_HDMI:
4357 is_sdvo = true;
4358 if (encoder->needs_tv_clock)
4359 is_tv = true;
4360 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08004361 case INTEL_OUTPUT_TVOUT:
4362 is_tv = true;
4363 break;
4364 case INTEL_OUTPUT_ANALOG:
4365 is_crt = true;
4366 break;
4367 case INTEL_OUTPUT_DISPLAYPORT:
4368 is_dp = true;
4369 break;
4370 case INTEL_OUTPUT_EDP:
Jesse Barnese3aef172012-04-10 11:58:03 -07004371 is_dp = true;
4372 if (intel_encoder_is_pch_edp(&encoder->base))
4373 is_pch_edp = true;
4374 else
4375 is_cpu_edp = true;
4376 edp_encoder = encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08004377 break;
4378 }
4379
Kristian Høgsberg43565a02009-02-13 20:56:52 -05004380 num_connectors++;
4381 }
4382
Jesse Barnesd9d444c2011-09-02 13:03:05 -07004383 refclk = ironlake_get_refclk(crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08004384
4385 /*
4386 * Returns a set of divisors for the desired target clock with the given
4387 * refclk, or FALSE. The returned values represent the clock equation:
4388 * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2.
4389 */
4390 limit = intel_limit(crtc, refclk);
Sean Paulcec2f352012-01-10 15:09:36 -08004391 ok = limit->find_pll(limit, crtc, adjusted_mode->clock, refclk, NULL,
4392 &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08004393 if (!ok) {
4394 DRM_ERROR("Couldn't find PLL settings for mode!\n");
4395 return -EINVAL;
4396 }
4397
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01004398 /* Ensure that the cursor is valid for the new mode before changing... */
Chris Wilson6b383a72010-09-13 13:54:26 +01004399 intel_crtc_update_cursor(crtc, true);
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01004400
Zhao Yakuiddc90032010-01-06 22:05:56 +08004401 if (is_lvds && dev_priv->lvds_downclock_avail) {
Sean Paulcec2f352012-01-10 15:09:36 -08004402 /*
4403 * Ensure we match the reduced clock's P to the target clock.
4404 * If the clocks don't match, we can't switch the display clock
4405 * by using the FP0/FP1. In such case we will disable the LVDS
4406 * downclock feature.
4407 */
Zhao Yakuiddc90032010-01-06 22:05:56 +08004408 has_reduced_clock = limit->find_pll(limit, crtc,
Chris Wilson5eddb702010-09-11 13:48:45 +01004409 dev_priv->lvds_downclock,
4410 refclk,
Sean Paulcec2f352012-01-10 15:09:36 -08004411 &clock,
Chris Wilson5eddb702010-09-11 13:48:45 +01004412 &reduced_clock);
Jesse Barnes652c3932009-08-17 13:31:43 -07004413 }
Daniel Vetter61e96532012-05-30 14:52:26 +02004414
4415 if (is_sdvo && is_tv)
4416 i9xx_adjust_sdvo_tv_clock(adjusted_mode, &clock);
4417
Zhenyu Wang7026d4a2009-03-24 14:02:43 +08004418
Zhenyu Wang2c072452009-06-05 15:38:42 +08004419 /* FDI link */
Eric Anholt8febb292011-03-30 13:01:07 -07004420 pixel_multiplier = intel_mode_get_pixel_multiplier(adjusted_mode);
4421 lane = 0;
4422 /* CPU eDP doesn't require FDI link, so just set DP M/N
4423 according to current link config */
Jesse Barnese3aef172012-04-10 11:58:03 -07004424 if (is_cpu_edp) {
Jesse Barnese3aef172012-04-10 11:58:03 -07004425 intel_edp_link_config(edp_encoder, &lane, &link_bw);
Eric Anholt8febb292011-03-30 13:01:07 -07004426 } else {
Eric Anholt8febb292011-03-30 13:01:07 -07004427 /* FDI is a binary signal running at ~2.7GHz, encoding
4428 * each output octet as 10 bits. The actual frequency
4429 * is stored as a divider into a 100MHz clock, and the
4430 * mode pixel clock is stored in units of 1KHz.
4431 * Hence the bw of each lane in terms of the mode signal
4432 * is:
4433 */
4434 link_bw = intel_fdi_link_freq(dev) * MHz(100)/KHz(1)/10;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08004435 }
Zhenyu Wang2c072452009-06-05 15:38:42 +08004436
Daniel Vetter94bf2ce2012-06-04 18:39:19 +02004437 /* [e]DP over FDI requires target mode clock instead of link clock. */
4438 if (edp_encoder)
4439 target_clock = intel_edp_target_clock(edp_encoder, mode);
4440 else if (is_dp)
4441 target_clock = mode->clock;
4442 else
4443 target_clock = adjusted_mode->clock;
4444
Eric Anholt8febb292011-03-30 13:01:07 -07004445 /* determine panel color depth */
4446 temp = I915_READ(PIPECONF(pipe));
4447 temp &= ~PIPE_BPC_MASK;
Adam Jackson3b5c78a2011-12-13 15:41:00 -08004448 dither = intel_choose_pipe_bpp_dither(crtc, &pipe_bpp, mode);
Jesse Barnes5a354202011-06-24 12:19:22 -07004449 switch (pipe_bpp) {
4450 case 18:
4451 temp |= PIPE_6BPC;
4452 break;
4453 case 24:
Eric Anholt8febb292011-03-30 13:01:07 -07004454 temp |= PIPE_8BPC;
Eric Anholt8febb292011-03-30 13:01:07 -07004455 break;
Jesse Barnes5a354202011-06-24 12:19:22 -07004456 case 30:
4457 temp |= PIPE_10BPC;
Eric Anholt8febb292011-03-30 13:01:07 -07004458 break;
Jesse Barnes5a354202011-06-24 12:19:22 -07004459 case 36:
4460 temp |= PIPE_12BPC;
Eric Anholt8febb292011-03-30 13:01:07 -07004461 break;
4462 default:
Jesse Barnes62ac41a2011-07-28 12:55:14 -07004463 WARN(1, "intel_choose_pipe_bpp returned invalid value %d\n",
4464 pipe_bpp);
Jesse Barnes5a354202011-06-24 12:19:22 -07004465 temp |= PIPE_8BPC;
4466 pipe_bpp = 24;
4467 break;
Eric Anholt8febb292011-03-30 13:01:07 -07004468 }
4469
Jesse Barnes5a354202011-06-24 12:19:22 -07004470 intel_crtc->bpp = pipe_bpp;
4471 I915_WRITE(PIPECONF(pipe), temp);
4472
Eric Anholt8febb292011-03-30 13:01:07 -07004473 if (!lane) {
4474 /*
4475 * Account for spread spectrum to avoid
4476 * oversubscribing the link. Max center spread
4477 * is 2.5%; use 5% for safety's sake.
4478 */
Jesse Barnes5a354202011-06-24 12:19:22 -07004479 u32 bps = target_clock * intel_crtc->bpp * 21 / 20;
Eric Anholt8febb292011-03-30 13:01:07 -07004480 lane = bps / (link_bw * 8) + 1;
4481 }
4482
4483 intel_crtc->fdi_lanes = lane;
4484
4485 if (pixel_multiplier > 1)
4486 link_bw *= pixel_multiplier;
Jesse Barnes5a354202011-06-24 12:19:22 -07004487 ironlake_compute_m_n(intel_crtc->bpp, lane, target_clock, link_bw,
4488 &m_n);
Eric Anholt8febb292011-03-30 13:01:07 -07004489
Eric Anholta07d6782011-03-30 13:01:08 -07004490 fp = clock.n << 16 | clock.m1 << 8 | clock.m2;
4491 if (has_reduced_clock)
4492 fp2 = reduced_clock.n << 16 | reduced_clock.m1 << 8 |
4493 reduced_clock.m2;
Jesse Barnes79e53942008-11-07 14:24:08 -08004494
Chris Wilsonc1858122010-12-03 21:35:48 +00004495 /* Enable autotuning of the PLL clock (if permissible) */
Eric Anholt8febb292011-03-30 13:01:07 -07004496 factor = 21;
4497 if (is_lvds) {
4498 if ((intel_panel_use_ssc(dev_priv) &&
4499 dev_priv->lvds_ssc_freq == 100) ||
4500 (I915_READ(PCH_LVDS) & LVDS_CLKB_POWER_MASK) == LVDS_CLKB_POWER_UP)
4501 factor = 25;
4502 } else if (is_sdvo && is_tv)
4503 factor = 20;
Chris Wilsonc1858122010-12-03 21:35:48 +00004504
Jesse Barnescb0e0932011-07-28 14:50:30 -07004505 if (clock.m < factor * clock.n)
Eric Anholt8febb292011-03-30 13:01:07 -07004506 fp |= FP_CB_TUNE;
Chris Wilsonc1858122010-12-03 21:35:48 +00004507
Chris Wilson5eddb702010-09-11 13:48:45 +01004508 dpll = 0;
Zhenyu Wang2c072452009-06-05 15:38:42 +08004509
Eric Anholta07d6782011-03-30 13:01:08 -07004510 if (is_lvds)
4511 dpll |= DPLLB_MODE_LVDS;
4512 else
4513 dpll |= DPLLB_MODE_DAC_SERIAL;
4514 if (is_sdvo) {
4515 int pixel_multiplier = intel_mode_get_pixel_multiplier(adjusted_mode);
4516 if (pixel_multiplier > 1) {
4517 dpll |= (pixel_multiplier - 1) << PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT;
Jesse Barnes79e53942008-11-07 14:24:08 -08004518 }
Eric Anholta07d6782011-03-30 13:01:08 -07004519 dpll |= DPLL_DVO_HIGH_SPEED;
4520 }
Jesse Barnese3aef172012-04-10 11:58:03 -07004521 if (is_dp && !is_cpu_edp)
Eric Anholta07d6782011-03-30 13:01:08 -07004522 dpll |= DPLL_DVO_HIGH_SPEED;
Jesse Barnes79e53942008-11-07 14:24:08 -08004523
Eric Anholta07d6782011-03-30 13:01:08 -07004524 /* compute bitmask from p1 value */
4525 dpll |= (1 << (clock.p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
4526 /* also FPA1 */
4527 dpll |= (1 << (clock.p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
4528
4529 switch (clock.p2) {
4530 case 5:
4531 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
4532 break;
4533 case 7:
4534 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
4535 break;
4536 case 10:
4537 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
4538 break;
4539 case 14:
4540 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
4541 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08004542 }
4543
4544 if (is_sdvo && is_tv)
4545 dpll |= PLL_REF_INPUT_TVCLKINBC;
4546 else if (is_tv)
4547 /* XXX: just matching BIOS for now */
4548 /* dpll |= PLL_REF_INPUT_TVCLKINBC; */
4549 dpll |= 3;
Chris Wilsona7615032011-01-12 17:04:08 +00004550 else if (is_lvds && intel_panel_use_ssc(dev_priv) && num_connectors < 2)
Jesse Barnes79e53942008-11-07 14:24:08 -08004551 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
4552 else
4553 dpll |= PLL_REF_INPUT_DREFCLK;
4554
4555 /* setup pipeconf */
Chris Wilson5eddb702010-09-11 13:48:45 +01004556 pipeconf = I915_READ(PIPECONF(pipe));
Jesse Barnes79e53942008-11-07 14:24:08 -08004557
4558 /* Set up the display plane register */
4559 dspcntr = DISPPLANE_GAMMA_ENABLE;
4560
Jesse Barnesf7cb34d2011-10-12 10:49:14 -07004561 DRM_DEBUG_KMS("Mode for pipe %d:\n", pipe);
Jesse Barnes79e53942008-11-07 14:24:08 -08004562 drm_mode_debug_printmodeline(mode);
4563
Eugeni Dodonov9d82aa12012-05-09 15:37:17 -03004564 /* CPU eDP is the only output that doesn't need a PCH PLL of its own on
4565 * pre-Haswell/LPT generation */
4566 if (HAS_PCH_LPT(dev)) {
4567 DRM_DEBUG_KMS("LPT detected: no PLL for pipe %d necessary\n",
4568 pipe);
4569 } else if (!is_cpu_edp) {
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004570 struct intel_pch_pll *pll;
Chris Wilson5eddb702010-09-11 13:48:45 +01004571
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004572 pll = intel_get_pch_pll(intel_crtc, dpll, fp);
4573 if (pll == NULL) {
4574 DRM_DEBUG_DRIVER("failed to find PLL for pipe %d\n",
4575 pipe);
Jesse Barnes4b645f12011-10-12 09:51:31 -07004576 return -EINVAL;
4577 }
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004578 } else
4579 intel_put_pch_pll(intel_crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08004580
4581 /* The LVDS pin pair needs to be on before the DPLLs are enabled.
4582 * This is an exception to the general rule that mode_set doesn't turn
4583 * things on.
4584 */
4585 if (is_lvds) {
Eric Anholtfae14982011-03-30 13:01:09 -07004586 temp = I915_READ(PCH_LVDS);
Chris Wilson5eddb702010-09-11 13:48:45 +01004587 temp |= LVDS_PORT_EN | LVDS_A0A2_CLKA_POWER_UP;
Jesse Barnes7885d202012-01-12 14:51:17 -08004588 if (HAS_PCH_CPT(dev)) {
4589 temp &= ~PORT_TRANS_SEL_MASK;
Jesse Barnes4b645f12011-10-12 09:51:31 -07004590 temp |= PORT_TRANS_SEL_CPT(pipe);
Jesse Barnes7885d202012-01-12 14:51:17 -08004591 } else {
4592 if (pipe == 1)
4593 temp |= LVDS_PIPEB_SELECT;
4594 else
4595 temp &= ~LVDS_PIPEB_SELECT;
4596 }
Jesse Barnes4b645f12011-10-12 09:51:31 -07004597
Zhao Yakuia3e17eb2009-10-10 10:42:37 +08004598 /* set the corresponsding LVDS_BORDER bit */
Chris Wilson5eddb702010-09-11 13:48:45 +01004599 temp |= dev_priv->lvds_border_bits;
Jesse Barnes79e53942008-11-07 14:24:08 -08004600 /* Set the B0-B3 data pairs corresponding to whether we're going to
4601 * set the DPLLs for dual-channel mode or not.
4602 */
4603 if (clock.p2 == 7)
Chris Wilson5eddb702010-09-11 13:48:45 +01004604 temp |= LVDS_B0B3_POWER_UP | LVDS_CLKB_POWER_UP;
Jesse Barnes79e53942008-11-07 14:24:08 -08004605 else
Chris Wilson5eddb702010-09-11 13:48:45 +01004606 temp &= ~(LVDS_B0B3_POWER_UP | LVDS_CLKB_POWER_UP);
Jesse Barnes79e53942008-11-07 14:24:08 -08004607
4608 /* It would be nice to set 24 vs 18-bit mode (LVDS_A3_POWER_UP)
4609 * appropriately here, but we need to look more thoroughly into how
4610 * panels behave in the two modes.
4611 */
Chris Wilson284d5df2012-04-14 17:41:59 +01004612 temp &= ~(LVDS_HSYNC_POLARITY | LVDS_VSYNC_POLARITY);
Bryan Freedaa9b5002011-01-12 13:43:19 -08004613 if (adjusted_mode->flags & DRM_MODE_FLAG_NHSYNC)
Chris Wilson284d5df2012-04-14 17:41:59 +01004614 temp |= LVDS_HSYNC_POLARITY;
Bryan Freedaa9b5002011-01-12 13:43:19 -08004615 if (adjusted_mode->flags & DRM_MODE_FLAG_NVSYNC)
Chris Wilson284d5df2012-04-14 17:41:59 +01004616 temp |= LVDS_VSYNC_POLARITY;
Eric Anholtfae14982011-03-30 13:01:09 -07004617 I915_WRITE(PCH_LVDS, temp);
Jesse Barnes79e53942008-11-07 14:24:08 -08004618 }
Jesse Barnes434ed092010-09-07 14:48:06 -07004619
Eric Anholt8febb292011-03-30 13:01:07 -07004620 pipeconf &= ~PIPECONF_DITHER_EN;
4621 pipeconf &= ~PIPECONF_DITHER_TYPE_MASK;
Jesse Barnes5a354202011-06-24 12:19:22 -07004622 if ((is_lvds && dev_priv->lvds_dither) || dither) {
Eric Anholt8febb292011-03-30 13:01:07 -07004623 pipeconf |= PIPECONF_DITHER_EN;
Daniel Vetterf74974c2011-10-11 17:27:51 +02004624 pipeconf |= PIPECONF_DITHER_TYPE_SP;
Jesse Barnes434ed092010-09-07 14:48:06 -07004625 }
Jesse Barnese3aef172012-04-10 11:58:03 -07004626 if (is_dp && !is_cpu_edp) {
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004627 intel_dp_set_m_n(crtc, mode, adjusted_mode);
Eric Anholt8febb292011-03-30 13:01:07 -07004628 } else {
Zhenyu Wang8db9d772010-04-07 16:15:54 +08004629 /* For non-DP output, clear any trans DP clock recovery setting.*/
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08004630 I915_WRITE(TRANSDATA_M1(pipe), 0);
4631 I915_WRITE(TRANSDATA_N1(pipe), 0);
4632 I915_WRITE(TRANSDPLINK_M1(pipe), 0);
4633 I915_WRITE(TRANSDPLINK_N1(pipe), 0);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08004634 }
Jesse Barnes79e53942008-11-07 14:24:08 -08004635
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004636 if (intel_crtc->pch_pll) {
4637 I915_WRITE(intel_crtc->pch_pll->pll_reg, dpll);
Chris Wilson5eddb702010-09-11 13:48:45 +01004638
Zhenyu Wang32f9d652009-07-24 01:00:32 +08004639 /* Wait for the clocks to stabilize. */
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004640 POSTING_READ(intel_crtc->pch_pll->pll_reg);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08004641 udelay(150);
4642
Eric Anholt8febb292011-03-30 13:01:07 -07004643 /* The pixel multiplier can only be updated once the
4644 * DPLL is enabled and the clocks are stable.
4645 *
4646 * So write it again.
4647 */
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004648 I915_WRITE(intel_crtc->pch_pll->pll_reg, dpll);
Jesse Barnes79e53942008-11-07 14:24:08 -08004649 }
Jesse Barnes79e53942008-11-07 14:24:08 -08004650
Chris Wilson5eddb702010-09-11 13:48:45 +01004651 intel_crtc->lowfreq_avail = false;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004652 if (intel_crtc->pch_pll) {
Jesse Barnes4b645f12011-10-12 09:51:31 -07004653 if (is_lvds && has_reduced_clock && i915_powersave) {
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004654 I915_WRITE(intel_crtc->pch_pll->fp1_reg, fp2);
Jesse Barnes4b645f12011-10-12 09:51:31 -07004655 intel_crtc->lowfreq_avail = true;
Jesse Barnes4b645f12011-10-12 09:51:31 -07004656 } else {
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004657 I915_WRITE(intel_crtc->pch_pll->fp1_reg, fp);
Jesse Barnes652c3932009-08-17 13:31:43 -07004658 }
4659 }
4660
Keith Packard617cf882012-02-08 13:53:38 -08004661 pipeconf &= ~PIPECONF_INTERLACE_MASK;
Krzysztof Halasa734b4152010-05-25 18:41:46 +02004662 if (adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE) {
Daniel Vetter5def4742012-01-28 14:49:22 +01004663 pipeconf |= PIPECONF_INTERLACED_ILK;
Krzysztof Halasa734b4152010-05-25 18:41:46 +02004664 /* the chip adds 2 halflines automatically */
Krzysztof Halasa734b4152010-05-25 18:41:46 +02004665 adjusted_mode->crtc_vtotal -= 1;
Krzysztof Halasa734b4152010-05-25 18:41:46 +02004666 adjusted_mode->crtc_vblank_end -= 1;
Daniel Vetter0529a0d2012-01-28 14:49:24 +01004667 I915_WRITE(VSYNCSHIFT(pipe),
4668 adjusted_mode->crtc_hsync_start
4669 - adjusted_mode->crtc_htotal/2);
4670 } else {
Keith Packard617cf882012-02-08 13:53:38 -08004671 pipeconf |= PIPECONF_PROGRESSIVE;
Daniel Vetter0529a0d2012-01-28 14:49:24 +01004672 I915_WRITE(VSYNCSHIFT(pipe), 0);
4673 }
Krzysztof Halasa734b4152010-05-25 18:41:46 +02004674
Chris Wilson5eddb702010-09-11 13:48:45 +01004675 I915_WRITE(HTOTAL(pipe),
4676 (adjusted_mode->crtc_hdisplay - 1) |
Jesse Barnes79e53942008-11-07 14:24:08 -08004677 ((adjusted_mode->crtc_htotal - 1) << 16));
Chris Wilson5eddb702010-09-11 13:48:45 +01004678 I915_WRITE(HBLANK(pipe),
4679 (adjusted_mode->crtc_hblank_start - 1) |
Jesse Barnes79e53942008-11-07 14:24:08 -08004680 ((adjusted_mode->crtc_hblank_end - 1) << 16));
Chris Wilson5eddb702010-09-11 13:48:45 +01004681 I915_WRITE(HSYNC(pipe),
4682 (adjusted_mode->crtc_hsync_start - 1) |
Jesse Barnes79e53942008-11-07 14:24:08 -08004683 ((adjusted_mode->crtc_hsync_end - 1) << 16));
Chris Wilson5eddb702010-09-11 13:48:45 +01004684
4685 I915_WRITE(VTOTAL(pipe),
4686 (adjusted_mode->crtc_vdisplay - 1) |
Jesse Barnes79e53942008-11-07 14:24:08 -08004687 ((adjusted_mode->crtc_vtotal - 1) << 16));
Chris Wilson5eddb702010-09-11 13:48:45 +01004688 I915_WRITE(VBLANK(pipe),
4689 (adjusted_mode->crtc_vblank_start - 1) |
Jesse Barnes79e53942008-11-07 14:24:08 -08004690 ((adjusted_mode->crtc_vblank_end - 1) << 16));
Chris Wilson5eddb702010-09-11 13:48:45 +01004691 I915_WRITE(VSYNC(pipe),
4692 (adjusted_mode->crtc_vsync_start - 1) |
Jesse Barnes79e53942008-11-07 14:24:08 -08004693 ((adjusted_mode->crtc_vsync_end - 1) << 16));
Chris Wilson5eddb702010-09-11 13:48:45 +01004694
Eric Anholt8febb292011-03-30 13:01:07 -07004695 /* pipesrc controls the size that is scaled from, which should
4696 * always be the user's requested size.
Jesse Barnes79e53942008-11-07 14:24:08 -08004697 */
Chris Wilson5eddb702010-09-11 13:48:45 +01004698 I915_WRITE(PIPESRC(pipe),
4699 ((mode->hdisplay - 1) << 16) | (mode->vdisplay - 1));
Zhenyu Wang2c072452009-06-05 15:38:42 +08004700
Eric Anholt8febb292011-03-30 13:01:07 -07004701 I915_WRITE(PIPE_DATA_M1(pipe), TU_SIZE(m_n.tu) | m_n.gmch_m);
4702 I915_WRITE(PIPE_DATA_N1(pipe), m_n.gmch_n);
4703 I915_WRITE(PIPE_LINK_M1(pipe), m_n.link_m);
4704 I915_WRITE(PIPE_LINK_N1(pipe), m_n.link_n);
Zhenyu Wang2c072452009-06-05 15:38:42 +08004705
Jesse Barnese3aef172012-04-10 11:58:03 -07004706 if (is_cpu_edp)
Eric Anholt8febb292011-03-30 13:01:07 -07004707 ironlake_set_pll_edp(crtc, adjusted_mode->clock);
Zhenyu Wang2c072452009-06-05 15:38:42 +08004708
Chris Wilson5eddb702010-09-11 13:48:45 +01004709 I915_WRITE(PIPECONF(pipe), pipeconf);
4710 POSTING_READ(PIPECONF(pipe));
Jesse Barnes79e53942008-11-07 14:24:08 -08004711
Jesse Barnes9d0498a2010-08-18 13:20:54 -07004712 intel_wait_for_vblank(dev, pipe);
Jesse Barnes79e53942008-11-07 14:24:08 -08004713
Chris Wilson5eddb702010-09-11 13:48:45 +01004714 I915_WRITE(DSPCNTR(plane), dspcntr);
Jesse Barnesb24e7172011-01-04 15:09:30 -08004715 POSTING_READ(DSPCNTR(plane));
Jesse Barnes79e53942008-11-07 14:24:08 -08004716
Chris Wilson5c3b82e2009-02-11 13:25:09 +00004717 ret = intel_pipe_set_base(crtc, x, y, old_fb);
Shaohua Li7662c8b2009-06-26 11:23:55 +08004718
4719 intel_update_watermarks(dev);
4720
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03004721 intel_update_linetime_watermarks(dev, pipe, adjusted_mode);
4722
Chris Wilson1f803ee2009-06-06 09:45:59 +01004723 return ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08004724}
4725
Eric Anholtf564048e2011-03-30 13:01:02 -07004726static int intel_crtc_mode_set(struct drm_crtc *crtc,
4727 struct drm_display_mode *mode,
4728 struct drm_display_mode *adjusted_mode,
4729 int x, int y,
4730 struct drm_framebuffer *old_fb)
4731{
4732 struct drm_device *dev = crtc->dev;
4733 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholt0b701d22011-03-30 13:01:03 -07004734 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4735 int pipe = intel_crtc->pipe;
Eric Anholtf564048e2011-03-30 13:01:02 -07004736 int ret;
4737
Eric Anholt0b701d22011-03-30 13:01:03 -07004738 drm_vblank_pre_modeset(dev, pipe);
4739
Eric Anholtf564048e2011-03-30 13:01:02 -07004740 ret = dev_priv->display.crtc_mode_set(crtc, mode, adjusted_mode,
4741 x, y, old_fb);
Jesse Barnes79e53942008-11-07 14:24:08 -08004742 drm_vblank_post_modeset(dev, pipe);
4743
Jesse Barnesd8e70a22011-11-15 10:28:54 -08004744 if (ret)
4745 intel_crtc->dpms_mode = DRM_MODE_DPMS_OFF;
4746 else
4747 intel_crtc->dpms_mode = DRM_MODE_DPMS_ON;
Keith Packard120eced2011-07-27 01:21:40 -07004748
Jesse Barnes79e53942008-11-07 14:24:08 -08004749 return ret;
4750}
4751
Wu Fengguang3a9627f2011-12-09 20:42:19 +08004752static bool intel_eld_uptodate(struct drm_connector *connector,
4753 int reg_eldv, uint32_t bits_eldv,
4754 int reg_elda, uint32_t bits_elda,
4755 int reg_edid)
4756{
4757 struct drm_i915_private *dev_priv = connector->dev->dev_private;
4758 uint8_t *eld = connector->eld;
4759 uint32_t i;
4760
4761 i = I915_READ(reg_eldv);
4762 i &= bits_eldv;
4763
4764 if (!eld[0])
4765 return !i;
4766
4767 if (!i)
4768 return false;
4769
4770 i = I915_READ(reg_elda);
4771 i &= ~bits_elda;
4772 I915_WRITE(reg_elda, i);
4773
4774 for (i = 0; i < eld[2]; i++)
4775 if (I915_READ(reg_edid) != *((uint32_t *)eld + i))
4776 return false;
4777
4778 return true;
4779}
4780
Wu Fengguange0dac652011-09-05 14:25:34 +08004781static void g4x_write_eld(struct drm_connector *connector,
4782 struct drm_crtc *crtc)
4783{
4784 struct drm_i915_private *dev_priv = connector->dev->dev_private;
4785 uint8_t *eld = connector->eld;
4786 uint32_t eldv;
4787 uint32_t len;
4788 uint32_t i;
4789
4790 i = I915_READ(G4X_AUD_VID_DID);
4791
4792 if (i == INTEL_AUDIO_DEVBLC || i == INTEL_AUDIO_DEVCL)
4793 eldv = G4X_ELDV_DEVCL_DEVBLC;
4794 else
4795 eldv = G4X_ELDV_DEVCTG;
4796
Wu Fengguang3a9627f2011-12-09 20:42:19 +08004797 if (intel_eld_uptodate(connector,
4798 G4X_AUD_CNTL_ST, eldv,
4799 G4X_AUD_CNTL_ST, G4X_ELD_ADDR,
4800 G4X_HDMIW_HDMIEDID))
4801 return;
4802
Wu Fengguange0dac652011-09-05 14:25:34 +08004803 i = I915_READ(G4X_AUD_CNTL_ST);
4804 i &= ~(eldv | G4X_ELD_ADDR);
4805 len = (i >> 9) & 0x1f; /* ELD buffer size */
4806 I915_WRITE(G4X_AUD_CNTL_ST, i);
4807
4808 if (!eld[0])
4809 return;
4810
4811 len = min_t(uint8_t, eld[2], len);
4812 DRM_DEBUG_DRIVER("ELD size %d\n", len);
4813 for (i = 0; i < len; i++)
4814 I915_WRITE(G4X_HDMIW_HDMIEDID, *((uint32_t *)eld + i));
4815
4816 i = I915_READ(G4X_AUD_CNTL_ST);
4817 i |= eldv;
4818 I915_WRITE(G4X_AUD_CNTL_ST, i);
4819}
4820
4821static void ironlake_write_eld(struct drm_connector *connector,
4822 struct drm_crtc *crtc)
4823{
4824 struct drm_i915_private *dev_priv = connector->dev->dev_private;
4825 uint8_t *eld = connector->eld;
4826 uint32_t eldv;
4827 uint32_t i;
4828 int len;
4829 int hdmiw_hdmiedid;
Wu Fengguangb6daa022012-01-06 14:41:31 -06004830 int aud_config;
Wu Fengguange0dac652011-09-05 14:25:34 +08004831 int aud_cntl_st;
4832 int aud_cntrl_st2;
4833
Wu Fengguangb3f33cb2011-12-09 20:42:17 +08004834 if (HAS_PCH_IBX(connector->dev)) {
Wu Fengguang1202b4c62011-12-09 20:42:18 +08004835 hdmiw_hdmiedid = IBX_HDMIW_HDMIEDID_A;
Wu Fengguangb6daa022012-01-06 14:41:31 -06004836 aud_config = IBX_AUD_CONFIG_A;
Wu Fengguang1202b4c62011-12-09 20:42:18 +08004837 aud_cntl_st = IBX_AUD_CNTL_ST_A;
4838 aud_cntrl_st2 = IBX_AUD_CNTL_ST2;
Wu Fengguange0dac652011-09-05 14:25:34 +08004839 } else {
Wu Fengguang1202b4c62011-12-09 20:42:18 +08004840 hdmiw_hdmiedid = CPT_HDMIW_HDMIEDID_A;
Wu Fengguangb6daa022012-01-06 14:41:31 -06004841 aud_config = CPT_AUD_CONFIG_A;
Wu Fengguang1202b4c62011-12-09 20:42:18 +08004842 aud_cntl_st = CPT_AUD_CNTL_ST_A;
4843 aud_cntrl_st2 = CPT_AUD_CNTRL_ST2;
Wu Fengguange0dac652011-09-05 14:25:34 +08004844 }
4845
4846 i = to_intel_crtc(crtc)->pipe;
4847 hdmiw_hdmiedid += i * 0x100;
4848 aud_cntl_st += i * 0x100;
Wu Fengguangb6daa022012-01-06 14:41:31 -06004849 aud_config += i * 0x100;
Wu Fengguange0dac652011-09-05 14:25:34 +08004850
4851 DRM_DEBUG_DRIVER("ELD on pipe %c\n", pipe_name(i));
4852
4853 i = I915_READ(aud_cntl_st);
4854 i = (i >> 29) & 0x3; /* DIP_Port_Select, 0x1 = PortB */
4855 if (!i) {
4856 DRM_DEBUG_DRIVER("Audio directed to unknown port\n");
4857 /* operate blindly on all ports */
Wu Fengguang1202b4c62011-12-09 20:42:18 +08004858 eldv = IBX_ELD_VALIDB;
4859 eldv |= IBX_ELD_VALIDB << 4;
4860 eldv |= IBX_ELD_VALIDB << 8;
Wu Fengguange0dac652011-09-05 14:25:34 +08004861 } else {
4862 DRM_DEBUG_DRIVER("ELD on port %c\n", 'A' + i);
Wu Fengguang1202b4c62011-12-09 20:42:18 +08004863 eldv = IBX_ELD_VALIDB << ((i - 1) * 4);
Wu Fengguange0dac652011-09-05 14:25:34 +08004864 }
4865
Wu Fengguang3a9627f2011-12-09 20:42:19 +08004866 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT)) {
4867 DRM_DEBUG_DRIVER("ELD: DisplayPort detected\n");
4868 eld[5] |= (1 << 2); /* Conn_Type, 0x1 = DisplayPort */
Wu Fengguangb6daa022012-01-06 14:41:31 -06004869 I915_WRITE(aud_config, AUD_CONFIG_N_VALUE_INDEX); /* 0x1 = DP */
4870 } else
4871 I915_WRITE(aud_config, 0);
Wu Fengguang3a9627f2011-12-09 20:42:19 +08004872
4873 if (intel_eld_uptodate(connector,
4874 aud_cntrl_st2, eldv,
4875 aud_cntl_st, IBX_ELD_ADDRESS,
4876 hdmiw_hdmiedid))
4877 return;
4878
Wu Fengguange0dac652011-09-05 14:25:34 +08004879 i = I915_READ(aud_cntrl_st2);
4880 i &= ~eldv;
4881 I915_WRITE(aud_cntrl_st2, i);
4882
4883 if (!eld[0])
4884 return;
4885
Wu Fengguange0dac652011-09-05 14:25:34 +08004886 i = I915_READ(aud_cntl_st);
Wu Fengguang1202b4c62011-12-09 20:42:18 +08004887 i &= ~IBX_ELD_ADDRESS;
Wu Fengguange0dac652011-09-05 14:25:34 +08004888 I915_WRITE(aud_cntl_st, i);
4889
4890 len = min_t(uint8_t, eld[2], 21); /* 84 bytes of hw ELD buffer */
4891 DRM_DEBUG_DRIVER("ELD size %d\n", len);
4892 for (i = 0; i < len; i++)
4893 I915_WRITE(hdmiw_hdmiedid, *((uint32_t *)eld + i));
4894
4895 i = I915_READ(aud_cntrl_st2);
4896 i |= eldv;
4897 I915_WRITE(aud_cntrl_st2, i);
4898}
4899
4900void intel_write_eld(struct drm_encoder *encoder,
4901 struct drm_display_mode *mode)
4902{
4903 struct drm_crtc *crtc = encoder->crtc;
4904 struct drm_connector *connector;
4905 struct drm_device *dev = encoder->dev;
4906 struct drm_i915_private *dev_priv = dev->dev_private;
4907
4908 connector = drm_select_eld(encoder, mode);
4909 if (!connector)
4910 return;
4911
4912 DRM_DEBUG_DRIVER("ELD on [CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
4913 connector->base.id,
4914 drm_get_connector_name(connector),
4915 connector->encoder->base.id,
4916 drm_get_encoder_name(connector->encoder));
4917
4918 connector->eld[6] = drm_av_sync_delay(connector, mode) / 2;
4919
4920 if (dev_priv->display.write_eld)
4921 dev_priv->display.write_eld(connector, crtc);
4922}
4923
Jesse Barnes79e53942008-11-07 14:24:08 -08004924/** Loads the palette/gamma unit for the CRTC with the prepared values */
4925void intel_crtc_load_lut(struct drm_crtc *crtc)
4926{
4927 struct drm_device *dev = crtc->dev;
4928 struct drm_i915_private *dev_priv = dev->dev_private;
4929 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08004930 int palreg = PALETTE(intel_crtc->pipe);
Jesse Barnes79e53942008-11-07 14:24:08 -08004931 int i;
4932
4933 /* The clocks have to be on to load the palette. */
Alban Browaeysaed3f092012-02-24 17:12:45 +00004934 if (!crtc->enabled || !intel_crtc->active)
Jesse Barnes79e53942008-11-07 14:24:08 -08004935 return;
4936
Adam Jacksonf2b115e2009-12-03 17:14:42 -05004937 /* use legacy palette for Ironlake */
Eric Anholtbad720f2009-10-22 16:11:14 -07004938 if (HAS_PCH_SPLIT(dev))
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08004939 palreg = LGC_PALETTE(intel_crtc->pipe);
Zhenyu Wang2c072452009-06-05 15:38:42 +08004940
Jesse Barnes79e53942008-11-07 14:24:08 -08004941 for (i = 0; i < 256; i++) {
4942 I915_WRITE(palreg + 4 * i,
4943 (intel_crtc->lut_r[i] << 16) |
4944 (intel_crtc->lut_g[i] << 8) |
4945 intel_crtc->lut_b[i]);
4946 }
4947}
4948
Chris Wilson560b85b2010-08-07 11:01:38 +01004949static void i845_update_cursor(struct drm_crtc *crtc, u32 base)
4950{
4951 struct drm_device *dev = crtc->dev;
4952 struct drm_i915_private *dev_priv = dev->dev_private;
4953 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4954 bool visible = base != 0;
4955 u32 cntl;
4956
4957 if (intel_crtc->cursor_visible == visible)
4958 return;
4959
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08004960 cntl = I915_READ(_CURACNTR);
Chris Wilson560b85b2010-08-07 11:01:38 +01004961 if (visible) {
4962 /* On these chipsets we can only modify the base whilst
4963 * the cursor is disabled.
4964 */
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08004965 I915_WRITE(_CURABASE, base);
Chris Wilson560b85b2010-08-07 11:01:38 +01004966
4967 cntl &= ~(CURSOR_FORMAT_MASK);
4968 /* XXX width must be 64, stride 256 => 0x00 << 28 */
4969 cntl |= CURSOR_ENABLE |
4970 CURSOR_GAMMA_ENABLE |
4971 CURSOR_FORMAT_ARGB;
4972 } else
4973 cntl &= ~(CURSOR_ENABLE | CURSOR_GAMMA_ENABLE);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08004974 I915_WRITE(_CURACNTR, cntl);
Chris Wilson560b85b2010-08-07 11:01:38 +01004975
4976 intel_crtc->cursor_visible = visible;
4977}
4978
4979static void i9xx_update_cursor(struct drm_crtc *crtc, u32 base)
4980{
4981 struct drm_device *dev = crtc->dev;
4982 struct drm_i915_private *dev_priv = dev->dev_private;
4983 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4984 int pipe = intel_crtc->pipe;
4985 bool visible = base != 0;
4986
4987 if (intel_crtc->cursor_visible != visible) {
Jesse Barnes548f2452011-02-17 10:40:53 -08004988 uint32_t cntl = I915_READ(CURCNTR(pipe));
Chris Wilson560b85b2010-08-07 11:01:38 +01004989 if (base) {
4990 cntl &= ~(CURSOR_MODE | MCURSOR_PIPE_SELECT);
4991 cntl |= CURSOR_MODE_64_ARGB_AX | MCURSOR_GAMMA_ENABLE;
4992 cntl |= pipe << 28; /* Connect to correct pipe */
4993 } else {
4994 cntl &= ~(CURSOR_MODE | MCURSOR_GAMMA_ENABLE);
4995 cntl |= CURSOR_MODE_DISABLE;
4996 }
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08004997 I915_WRITE(CURCNTR(pipe), cntl);
Chris Wilson560b85b2010-08-07 11:01:38 +01004998
4999 intel_crtc->cursor_visible = visible;
5000 }
5001 /* and commit changes on next vblank */
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08005002 I915_WRITE(CURBASE(pipe), base);
Chris Wilson560b85b2010-08-07 11:01:38 +01005003}
5004
Jesse Barnes65a21cd2011-10-12 11:10:21 -07005005static void ivb_update_cursor(struct drm_crtc *crtc, u32 base)
5006{
5007 struct drm_device *dev = crtc->dev;
5008 struct drm_i915_private *dev_priv = dev->dev_private;
5009 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5010 int pipe = intel_crtc->pipe;
5011 bool visible = base != 0;
5012
5013 if (intel_crtc->cursor_visible != visible) {
5014 uint32_t cntl = I915_READ(CURCNTR_IVB(pipe));
5015 if (base) {
5016 cntl &= ~CURSOR_MODE;
5017 cntl |= CURSOR_MODE_64_ARGB_AX | MCURSOR_GAMMA_ENABLE;
5018 } else {
5019 cntl &= ~(CURSOR_MODE | MCURSOR_GAMMA_ENABLE);
5020 cntl |= CURSOR_MODE_DISABLE;
5021 }
5022 I915_WRITE(CURCNTR_IVB(pipe), cntl);
5023
5024 intel_crtc->cursor_visible = visible;
5025 }
5026 /* and commit changes on next vblank */
5027 I915_WRITE(CURBASE_IVB(pipe), base);
5028}
5029
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01005030/* If no-part of the cursor is visible on the framebuffer, then the GPU may hang... */
Chris Wilson6b383a72010-09-13 13:54:26 +01005031static void intel_crtc_update_cursor(struct drm_crtc *crtc,
5032 bool on)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01005033{
5034 struct drm_device *dev = crtc->dev;
5035 struct drm_i915_private *dev_priv = dev->dev_private;
5036 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5037 int pipe = intel_crtc->pipe;
5038 int x = intel_crtc->cursor_x;
5039 int y = intel_crtc->cursor_y;
Chris Wilson560b85b2010-08-07 11:01:38 +01005040 u32 base, pos;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01005041 bool visible;
5042
5043 pos = 0;
5044
Chris Wilson6b383a72010-09-13 13:54:26 +01005045 if (on && crtc->enabled && crtc->fb) {
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01005046 base = intel_crtc->cursor_addr;
5047 if (x > (int) crtc->fb->width)
5048 base = 0;
5049
5050 if (y > (int) crtc->fb->height)
5051 base = 0;
5052 } else
5053 base = 0;
5054
5055 if (x < 0) {
5056 if (x + intel_crtc->cursor_width < 0)
5057 base = 0;
5058
5059 pos |= CURSOR_POS_SIGN << CURSOR_X_SHIFT;
5060 x = -x;
5061 }
5062 pos |= x << CURSOR_X_SHIFT;
5063
5064 if (y < 0) {
5065 if (y + intel_crtc->cursor_height < 0)
5066 base = 0;
5067
5068 pos |= CURSOR_POS_SIGN << CURSOR_Y_SHIFT;
5069 y = -y;
5070 }
5071 pos |= y << CURSOR_Y_SHIFT;
5072
5073 visible = base != 0;
Chris Wilson560b85b2010-08-07 11:01:38 +01005074 if (!visible && !intel_crtc->cursor_visible)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01005075 return;
5076
Eugeni Dodonov0cd83aa2012-04-13 17:08:48 -03005077 if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev)) {
Jesse Barnes65a21cd2011-10-12 11:10:21 -07005078 I915_WRITE(CURPOS_IVB(pipe), pos);
5079 ivb_update_cursor(crtc, base);
5080 } else {
5081 I915_WRITE(CURPOS(pipe), pos);
5082 if (IS_845G(dev) || IS_I865G(dev))
5083 i845_update_cursor(crtc, base);
5084 else
5085 i9xx_update_cursor(crtc, base);
5086 }
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01005087}
5088
Jesse Barnes79e53942008-11-07 14:24:08 -08005089static int intel_crtc_cursor_set(struct drm_crtc *crtc,
Chris Wilson05394f32010-11-08 19:18:58 +00005090 struct drm_file *file,
Jesse Barnes79e53942008-11-07 14:24:08 -08005091 uint32_t handle,
5092 uint32_t width, uint32_t height)
5093{
5094 struct drm_device *dev = crtc->dev;
5095 struct drm_i915_private *dev_priv = dev->dev_private;
5096 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Chris Wilson05394f32010-11-08 19:18:58 +00005097 struct drm_i915_gem_object *obj;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01005098 uint32_t addr;
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05005099 int ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08005100
Zhao Yakui28c97732009-10-09 11:39:41 +08005101 DRM_DEBUG_KMS("\n");
Jesse Barnes79e53942008-11-07 14:24:08 -08005102
5103 /* if we want to turn off the cursor ignore width and height */
5104 if (!handle) {
Zhao Yakui28c97732009-10-09 11:39:41 +08005105 DRM_DEBUG_KMS("cursor off\n");
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05005106 addr = 0;
Chris Wilson05394f32010-11-08 19:18:58 +00005107 obj = NULL;
Pierre Willenbrock50044172009-02-23 10:12:15 +10005108 mutex_lock(&dev->struct_mutex);
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05005109 goto finish;
Jesse Barnes79e53942008-11-07 14:24:08 -08005110 }
5111
5112 /* Currently we only support 64x64 cursors */
5113 if (width != 64 || height != 64) {
5114 DRM_ERROR("we currently only support 64x64 cursors\n");
5115 return -EINVAL;
5116 }
5117
Chris Wilson05394f32010-11-08 19:18:58 +00005118 obj = to_intel_bo(drm_gem_object_lookup(dev, file, handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00005119 if (&obj->base == NULL)
Jesse Barnes79e53942008-11-07 14:24:08 -08005120 return -ENOENT;
5121
Chris Wilson05394f32010-11-08 19:18:58 +00005122 if (obj->base.size < width * height * 4) {
Jesse Barnes79e53942008-11-07 14:24:08 -08005123 DRM_ERROR("buffer is to small\n");
Dave Airlie34b8686e2009-01-15 14:03:07 +10005124 ret = -ENOMEM;
5125 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -08005126 }
5127
Dave Airlie71acb5e2008-12-30 20:31:46 +10005128 /* we only need to pin inside GTT if cursor is non-phy */
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05005129 mutex_lock(&dev->struct_mutex);
Kristian Høgsbergb295d1b2009-12-16 15:16:17 -05005130 if (!dev_priv->info->cursor_needs_physical) {
Chris Wilsond9e86c02010-11-10 16:40:20 +00005131 if (obj->tiling_mode) {
5132 DRM_ERROR("cursor cannot be tiled\n");
5133 ret = -EINVAL;
5134 goto fail_locked;
5135 }
5136
Chris Wilson2da3b9b2011-04-14 09:41:17 +01005137 ret = i915_gem_object_pin_to_display_plane(obj, 0, NULL);
Chris Wilsone7b526b2010-06-02 08:30:48 +01005138 if (ret) {
5139 DRM_ERROR("failed to move cursor bo into the GTT\n");
Chris Wilson2da3b9b2011-04-14 09:41:17 +01005140 goto fail_locked;
Chris Wilsone7b526b2010-06-02 08:30:48 +01005141 }
5142
Chris Wilsond9e86c02010-11-10 16:40:20 +00005143 ret = i915_gem_object_put_fence(obj);
5144 if (ret) {
Chris Wilson2da3b9b2011-04-14 09:41:17 +01005145 DRM_ERROR("failed to release fence for cursor");
Chris Wilsond9e86c02010-11-10 16:40:20 +00005146 goto fail_unpin;
5147 }
5148
Chris Wilson05394f32010-11-08 19:18:58 +00005149 addr = obj->gtt_offset;
Dave Airlie71acb5e2008-12-30 20:31:46 +10005150 } else {
Chris Wilson6eeefaf2010-08-07 11:01:39 +01005151 int align = IS_I830(dev) ? 16 * 1024 : 256;
Chris Wilson05394f32010-11-08 19:18:58 +00005152 ret = i915_gem_attach_phys_object(dev, obj,
Chris Wilson6eeefaf2010-08-07 11:01:39 +01005153 (intel_crtc->pipe == 0) ? I915_GEM_PHYS_CURSOR_0 : I915_GEM_PHYS_CURSOR_1,
5154 align);
Dave Airlie71acb5e2008-12-30 20:31:46 +10005155 if (ret) {
5156 DRM_ERROR("failed to attach phys object\n");
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05005157 goto fail_locked;
Dave Airlie71acb5e2008-12-30 20:31:46 +10005158 }
Chris Wilson05394f32010-11-08 19:18:58 +00005159 addr = obj->phys_obj->handle->busaddr;
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05005160 }
5161
Chris Wilsona6c45cf2010-09-17 00:32:17 +01005162 if (IS_GEN2(dev))
Jesse Barnes14b60392009-05-20 16:47:08 -04005163 I915_WRITE(CURSIZE, (height << 12) | width);
5164
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05005165 finish:
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05005166 if (intel_crtc->cursor_bo) {
Kristian Høgsbergb295d1b2009-12-16 15:16:17 -05005167 if (dev_priv->info->cursor_needs_physical) {
Chris Wilson05394f32010-11-08 19:18:58 +00005168 if (intel_crtc->cursor_bo != obj)
Dave Airlie71acb5e2008-12-30 20:31:46 +10005169 i915_gem_detach_phys_object(dev, intel_crtc->cursor_bo);
5170 } else
5171 i915_gem_object_unpin(intel_crtc->cursor_bo);
Chris Wilson05394f32010-11-08 19:18:58 +00005172 drm_gem_object_unreference(&intel_crtc->cursor_bo->base);
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05005173 }
Jesse Barnes80824002009-09-10 15:28:06 -07005174
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05005175 mutex_unlock(&dev->struct_mutex);
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05005176
5177 intel_crtc->cursor_addr = addr;
Chris Wilson05394f32010-11-08 19:18:58 +00005178 intel_crtc->cursor_bo = obj;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01005179 intel_crtc->cursor_width = width;
5180 intel_crtc->cursor_height = height;
5181
Chris Wilson6b383a72010-09-13 13:54:26 +01005182 intel_crtc_update_cursor(crtc, true);
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05005183
Jesse Barnes79e53942008-11-07 14:24:08 -08005184 return 0;
Chris Wilsone7b526b2010-06-02 08:30:48 +01005185fail_unpin:
Chris Wilson05394f32010-11-08 19:18:58 +00005186 i915_gem_object_unpin(obj);
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05005187fail_locked:
Dave Airlie34b8686e2009-01-15 14:03:07 +10005188 mutex_unlock(&dev->struct_mutex);
Luca Barbieribc9025b2010-02-09 05:49:12 +00005189fail:
Chris Wilson05394f32010-11-08 19:18:58 +00005190 drm_gem_object_unreference_unlocked(&obj->base);
Dave Airlie34b8686e2009-01-15 14:03:07 +10005191 return ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08005192}
5193
5194static int intel_crtc_cursor_move(struct drm_crtc *crtc, int x, int y)
5195{
Jesse Barnes79e53942008-11-07 14:24:08 -08005196 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08005197
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01005198 intel_crtc->cursor_x = x;
5199 intel_crtc->cursor_y = y;
Jesse Barnes652c3932009-08-17 13:31:43 -07005200
Chris Wilson6b383a72010-09-13 13:54:26 +01005201 intel_crtc_update_cursor(crtc, true);
Jesse Barnes79e53942008-11-07 14:24:08 -08005202
5203 return 0;
5204}
5205
5206/** Sets the color ramps on behalf of RandR */
5207void intel_crtc_fb_gamma_set(struct drm_crtc *crtc, u16 red, u16 green,
5208 u16 blue, int regno)
5209{
5210 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5211
5212 intel_crtc->lut_r[regno] = red >> 8;
5213 intel_crtc->lut_g[regno] = green >> 8;
5214 intel_crtc->lut_b[regno] = blue >> 8;
5215}
5216
Dave Airlieb8c00ac2009-10-06 13:54:01 +10005217void intel_crtc_fb_gamma_get(struct drm_crtc *crtc, u16 *red, u16 *green,
5218 u16 *blue, int regno)
5219{
5220 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5221
5222 *red = intel_crtc->lut_r[regno] << 8;
5223 *green = intel_crtc->lut_g[regno] << 8;
5224 *blue = intel_crtc->lut_b[regno] << 8;
5225}
5226
Jesse Barnes79e53942008-11-07 14:24:08 -08005227static void intel_crtc_gamma_set(struct drm_crtc *crtc, u16 *red, u16 *green,
James Simmons72034252010-08-03 01:33:19 +01005228 u16 *blue, uint32_t start, uint32_t size)
Jesse Barnes79e53942008-11-07 14:24:08 -08005229{
James Simmons72034252010-08-03 01:33:19 +01005230 int end = (start + size > 256) ? 256 : start + size, i;
Jesse Barnes79e53942008-11-07 14:24:08 -08005231 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08005232
James Simmons72034252010-08-03 01:33:19 +01005233 for (i = start; i < end; i++) {
Jesse Barnes79e53942008-11-07 14:24:08 -08005234 intel_crtc->lut_r[i] = red[i] >> 8;
5235 intel_crtc->lut_g[i] = green[i] >> 8;
5236 intel_crtc->lut_b[i] = blue[i] >> 8;
5237 }
5238
5239 intel_crtc_load_lut(crtc);
5240}
5241
5242/**
5243 * Get a pipe with a simple mode set on it for doing load-based monitor
5244 * detection.
5245 *
5246 * It will be up to the load-detect code to adjust the pipe as appropriate for
Eric Anholtc751ce42010-03-25 11:48:48 -07005247 * its requirements. The pipe will be connected to no other encoders.
Jesse Barnes79e53942008-11-07 14:24:08 -08005248 *
Eric Anholtc751ce42010-03-25 11:48:48 -07005249 * Currently this code will only succeed if there is a pipe with no encoders
Jesse Barnes79e53942008-11-07 14:24:08 -08005250 * configured for it. In the future, it could choose to temporarily disable
5251 * some outputs to free up a pipe for its use.
5252 *
5253 * \return crtc, or NULL if no pipes are available.
5254 */
5255
5256/* VESA 640x480x72Hz mode to set on the pipe */
5257static struct drm_display_mode load_detect_mode = {
5258 DRM_MODE("640x480", DRM_MODE_TYPE_DEFAULT, 31500, 640, 664,
5259 704, 832, 0, 480, 489, 491, 520, 0, DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
5260};
5261
Chris Wilsond2dff872011-04-19 08:36:26 +01005262static struct drm_framebuffer *
5263intel_framebuffer_create(struct drm_device *dev,
Jesse Barnes308e5bc2011-11-14 14:51:28 -08005264 struct drm_mode_fb_cmd2 *mode_cmd,
Chris Wilsond2dff872011-04-19 08:36:26 +01005265 struct drm_i915_gem_object *obj)
5266{
5267 struct intel_framebuffer *intel_fb;
5268 int ret;
5269
5270 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
5271 if (!intel_fb) {
5272 drm_gem_object_unreference_unlocked(&obj->base);
5273 return ERR_PTR(-ENOMEM);
5274 }
5275
5276 ret = intel_framebuffer_init(dev, intel_fb, mode_cmd, obj);
5277 if (ret) {
5278 drm_gem_object_unreference_unlocked(&obj->base);
5279 kfree(intel_fb);
5280 return ERR_PTR(ret);
5281 }
5282
5283 return &intel_fb->base;
5284}
5285
5286static u32
5287intel_framebuffer_pitch_for_width(int width, int bpp)
5288{
5289 u32 pitch = DIV_ROUND_UP(width * bpp, 8);
5290 return ALIGN(pitch, 64);
5291}
5292
5293static u32
5294intel_framebuffer_size_for_mode(struct drm_display_mode *mode, int bpp)
5295{
5296 u32 pitch = intel_framebuffer_pitch_for_width(mode->hdisplay, bpp);
5297 return ALIGN(pitch * mode->vdisplay, PAGE_SIZE);
5298}
5299
5300static struct drm_framebuffer *
5301intel_framebuffer_create_for_mode(struct drm_device *dev,
5302 struct drm_display_mode *mode,
5303 int depth, int bpp)
5304{
5305 struct drm_i915_gem_object *obj;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08005306 struct drm_mode_fb_cmd2 mode_cmd;
Chris Wilsond2dff872011-04-19 08:36:26 +01005307
5308 obj = i915_gem_alloc_object(dev,
5309 intel_framebuffer_size_for_mode(mode, bpp));
5310 if (obj == NULL)
5311 return ERR_PTR(-ENOMEM);
5312
5313 mode_cmd.width = mode->hdisplay;
5314 mode_cmd.height = mode->vdisplay;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08005315 mode_cmd.pitches[0] = intel_framebuffer_pitch_for_width(mode_cmd.width,
5316 bpp);
Dave Airlie5ca0c342012-02-23 15:33:40 +00005317 mode_cmd.pixel_format = drm_mode_legacy_fb_format(bpp, depth);
Chris Wilsond2dff872011-04-19 08:36:26 +01005318
5319 return intel_framebuffer_create(dev, &mode_cmd, obj);
5320}
5321
5322static struct drm_framebuffer *
5323mode_fits_in_fbdev(struct drm_device *dev,
5324 struct drm_display_mode *mode)
5325{
5326 struct drm_i915_private *dev_priv = dev->dev_private;
5327 struct drm_i915_gem_object *obj;
5328 struct drm_framebuffer *fb;
5329
5330 if (dev_priv->fbdev == NULL)
5331 return NULL;
5332
5333 obj = dev_priv->fbdev->ifb.obj;
5334 if (obj == NULL)
5335 return NULL;
5336
5337 fb = &dev_priv->fbdev->ifb.base;
Ville Syrjälä01f2c772011-12-20 00:06:49 +02005338 if (fb->pitches[0] < intel_framebuffer_pitch_for_width(mode->hdisplay,
5339 fb->bits_per_pixel))
Chris Wilsond2dff872011-04-19 08:36:26 +01005340 return NULL;
5341
Ville Syrjälä01f2c772011-12-20 00:06:49 +02005342 if (obj->base.size < mode->vdisplay * fb->pitches[0])
Chris Wilsond2dff872011-04-19 08:36:26 +01005343 return NULL;
5344
5345 return fb;
5346}
5347
Chris Wilson71731882011-04-19 23:10:58 +01005348bool intel_get_load_detect_pipe(struct intel_encoder *intel_encoder,
5349 struct drm_connector *connector,
5350 struct drm_display_mode *mode,
Chris Wilson8261b192011-04-19 23:18:09 +01005351 struct intel_load_detect_pipe *old)
Jesse Barnes79e53942008-11-07 14:24:08 -08005352{
5353 struct intel_crtc *intel_crtc;
5354 struct drm_crtc *possible_crtc;
Chris Wilson4ef69c72010-09-09 15:14:28 +01005355 struct drm_encoder *encoder = &intel_encoder->base;
Jesse Barnes79e53942008-11-07 14:24:08 -08005356 struct drm_crtc *crtc = NULL;
5357 struct drm_device *dev = encoder->dev;
Chris Wilsond2dff872011-04-19 08:36:26 +01005358 struct drm_framebuffer *old_fb;
Jesse Barnes79e53942008-11-07 14:24:08 -08005359 int i = -1;
5360
Chris Wilsond2dff872011-04-19 08:36:26 +01005361 DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
5362 connector->base.id, drm_get_connector_name(connector),
5363 encoder->base.id, drm_get_encoder_name(encoder));
5364
Jesse Barnes79e53942008-11-07 14:24:08 -08005365 /*
5366 * Algorithm gets a little messy:
Chris Wilson7a5e4802011-04-19 23:21:12 +01005367 *
Jesse Barnes79e53942008-11-07 14:24:08 -08005368 * - if the connector already has an assigned crtc, use it (but make
5369 * sure it's on first)
Chris Wilson7a5e4802011-04-19 23:21:12 +01005370 *
Jesse Barnes79e53942008-11-07 14:24:08 -08005371 * - try to find the first unused crtc that can drive this connector,
5372 * and use that if we find one
Jesse Barnes79e53942008-11-07 14:24:08 -08005373 */
5374
5375 /* See if we already have a CRTC for this connector */
5376 if (encoder->crtc) {
5377 crtc = encoder->crtc;
Chris Wilson8261b192011-04-19 23:18:09 +01005378
Jesse Barnes79e53942008-11-07 14:24:08 -08005379 intel_crtc = to_intel_crtc(crtc);
Chris Wilson8261b192011-04-19 23:18:09 +01005380 old->dpms_mode = intel_crtc->dpms_mode;
5381 old->load_detect_temp = false;
5382
5383 /* Make sure the crtc and connector are running */
Jesse Barnes79e53942008-11-07 14:24:08 -08005384 if (intel_crtc->dpms_mode != DRM_MODE_DPMS_ON) {
Chris Wilson64927112011-04-20 07:25:26 +01005385 struct drm_encoder_helper_funcs *encoder_funcs;
5386 struct drm_crtc_helper_funcs *crtc_funcs;
5387
Jesse Barnes79e53942008-11-07 14:24:08 -08005388 crtc_funcs = crtc->helper_private;
5389 crtc_funcs->dpms(crtc, DRM_MODE_DPMS_ON);
Chris Wilson64927112011-04-20 07:25:26 +01005390
5391 encoder_funcs = encoder->helper_private;
Jesse Barnes79e53942008-11-07 14:24:08 -08005392 encoder_funcs->dpms(encoder, DRM_MODE_DPMS_ON);
5393 }
Chris Wilson8261b192011-04-19 23:18:09 +01005394
Chris Wilson71731882011-04-19 23:10:58 +01005395 return true;
Jesse Barnes79e53942008-11-07 14:24:08 -08005396 }
5397
5398 /* Find an unused one (if possible) */
5399 list_for_each_entry(possible_crtc, &dev->mode_config.crtc_list, head) {
5400 i++;
5401 if (!(encoder->possible_crtcs & (1 << i)))
5402 continue;
5403 if (!possible_crtc->enabled) {
5404 crtc = possible_crtc;
5405 break;
5406 }
Jesse Barnes79e53942008-11-07 14:24:08 -08005407 }
5408
5409 /*
5410 * If we didn't find an unused CRTC, don't use any.
5411 */
5412 if (!crtc) {
Chris Wilson71731882011-04-19 23:10:58 +01005413 DRM_DEBUG_KMS("no pipe available for load-detect\n");
5414 return false;
Jesse Barnes79e53942008-11-07 14:24:08 -08005415 }
5416
5417 encoder->crtc = crtc;
Zhenyu Wangc1c43972010-03-30 14:39:30 +08005418 connector->encoder = encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08005419
5420 intel_crtc = to_intel_crtc(crtc);
Chris Wilson8261b192011-04-19 23:18:09 +01005421 old->dpms_mode = intel_crtc->dpms_mode;
5422 old->load_detect_temp = true;
Chris Wilsond2dff872011-04-19 08:36:26 +01005423 old->release_fb = NULL;
Jesse Barnes79e53942008-11-07 14:24:08 -08005424
Chris Wilson64927112011-04-20 07:25:26 +01005425 if (!mode)
5426 mode = &load_detect_mode;
Jesse Barnes79e53942008-11-07 14:24:08 -08005427
Chris Wilsond2dff872011-04-19 08:36:26 +01005428 old_fb = crtc->fb;
5429
5430 /* We need a framebuffer large enough to accommodate all accesses
5431 * that the plane may generate whilst we perform load detection.
5432 * We can not rely on the fbcon either being present (we get called
5433 * during its initialisation to detect all boot displays, or it may
5434 * not even exist) or that it is large enough to satisfy the
5435 * requested mode.
5436 */
5437 crtc->fb = mode_fits_in_fbdev(dev, mode);
5438 if (crtc->fb == NULL) {
5439 DRM_DEBUG_KMS("creating tmp fb for load-detection\n");
5440 crtc->fb = intel_framebuffer_create_for_mode(dev, mode, 24, 32);
5441 old->release_fb = crtc->fb;
5442 } else
5443 DRM_DEBUG_KMS("reusing fbdev for load-detection framebuffer\n");
5444 if (IS_ERR(crtc->fb)) {
5445 DRM_DEBUG_KMS("failed to allocate framebuffer for load-detection\n");
5446 crtc->fb = old_fb;
5447 return false;
Jesse Barnes79e53942008-11-07 14:24:08 -08005448 }
Chris Wilsond2dff872011-04-19 08:36:26 +01005449
5450 if (!drm_crtc_helper_set_mode(crtc, mode, 0, 0, old_fb)) {
Chris Wilson64927112011-04-20 07:25:26 +01005451 DRM_DEBUG_KMS("failed to set mode on load-detect pipe\n");
Chris Wilsond2dff872011-04-19 08:36:26 +01005452 if (old->release_fb)
5453 old->release_fb->funcs->destroy(old->release_fb);
5454 crtc->fb = old_fb;
Chris Wilson64927112011-04-20 07:25:26 +01005455 return false;
Jesse Barnes79e53942008-11-07 14:24:08 -08005456 }
Chris Wilson71731882011-04-19 23:10:58 +01005457
Jesse Barnes79e53942008-11-07 14:24:08 -08005458 /* let the connector get through one full cycle before testing */
Jesse Barnes9d0498a2010-08-18 13:20:54 -07005459 intel_wait_for_vblank(dev, intel_crtc->pipe);
Jesse Barnes79e53942008-11-07 14:24:08 -08005460
Chris Wilson71731882011-04-19 23:10:58 +01005461 return true;
Jesse Barnes79e53942008-11-07 14:24:08 -08005462}
5463
Zhenyu Wangc1c43972010-03-30 14:39:30 +08005464void intel_release_load_detect_pipe(struct intel_encoder *intel_encoder,
Chris Wilson8261b192011-04-19 23:18:09 +01005465 struct drm_connector *connector,
5466 struct intel_load_detect_pipe *old)
Jesse Barnes79e53942008-11-07 14:24:08 -08005467{
Chris Wilson4ef69c72010-09-09 15:14:28 +01005468 struct drm_encoder *encoder = &intel_encoder->base;
Jesse Barnes79e53942008-11-07 14:24:08 -08005469 struct drm_device *dev = encoder->dev;
5470 struct drm_crtc *crtc = encoder->crtc;
5471 struct drm_encoder_helper_funcs *encoder_funcs = encoder->helper_private;
5472 struct drm_crtc_helper_funcs *crtc_funcs = crtc->helper_private;
5473
Chris Wilsond2dff872011-04-19 08:36:26 +01005474 DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
5475 connector->base.id, drm_get_connector_name(connector),
5476 encoder->base.id, drm_get_encoder_name(encoder));
5477
Chris Wilson8261b192011-04-19 23:18:09 +01005478 if (old->load_detect_temp) {
Zhenyu Wangc1c43972010-03-30 14:39:30 +08005479 connector->encoder = NULL;
Jesse Barnes79e53942008-11-07 14:24:08 -08005480 drm_helper_disable_unused_functions(dev);
Chris Wilsond2dff872011-04-19 08:36:26 +01005481
5482 if (old->release_fb)
5483 old->release_fb->funcs->destroy(old->release_fb);
5484
Chris Wilson0622a532011-04-21 09:32:11 +01005485 return;
Jesse Barnes79e53942008-11-07 14:24:08 -08005486 }
5487
Eric Anholtc751ce42010-03-25 11:48:48 -07005488 /* Switch crtc and encoder back off if necessary */
Chris Wilson0622a532011-04-21 09:32:11 +01005489 if (old->dpms_mode != DRM_MODE_DPMS_ON) {
5490 encoder_funcs->dpms(encoder, old->dpms_mode);
Chris Wilson8261b192011-04-19 23:18:09 +01005491 crtc_funcs->dpms(crtc, old->dpms_mode);
Jesse Barnes79e53942008-11-07 14:24:08 -08005492 }
5493}
5494
5495/* Returns the clock of the currently programmed mode of the given pipe. */
5496static int intel_crtc_clock_get(struct drm_device *dev, struct drm_crtc *crtc)
5497{
5498 struct drm_i915_private *dev_priv = dev->dev_private;
5499 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5500 int pipe = intel_crtc->pipe;
Jesse Barnes548f2452011-02-17 10:40:53 -08005501 u32 dpll = I915_READ(DPLL(pipe));
Jesse Barnes79e53942008-11-07 14:24:08 -08005502 u32 fp;
5503 intel_clock_t clock;
5504
5505 if ((dpll & DISPLAY_RATE_SELECT_FPA1) == 0)
Chris Wilson39adb7a2011-04-22 22:17:21 +01005506 fp = I915_READ(FP0(pipe));
Jesse Barnes79e53942008-11-07 14:24:08 -08005507 else
Chris Wilson39adb7a2011-04-22 22:17:21 +01005508 fp = I915_READ(FP1(pipe));
Jesse Barnes79e53942008-11-07 14:24:08 -08005509
5510 clock.m1 = (fp & FP_M1_DIV_MASK) >> FP_M1_DIV_SHIFT;
Adam Jacksonf2b115e2009-12-03 17:14:42 -05005511 if (IS_PINEVIEW(dev)) {
5512 clock.n = ffs((fp & FP_N_PINEVIEW_DIV_MASK) >> FP_N_DIV_SHIFT) - 1;
5513 clock.m2 = (fp & FP_M2_PINEVIEW_DIV_MASK) >> FP_M2_DIV_SHIFT;
Shaohua Li21778322009-02-23 15:19:16 +08005514 } else {
5515 clock.n = (fp & FP_N_DIV_MASK) >> FP_N_DIV_SHIFT;
5516 clock.m2 = (fp & FP_M2_DIV_MASK) >> FP_M2_DIV_SHIFT;
5517 }
5518
Chris Wilsona6c45cf2010-09-17 00:32:17 +01005519 if (!IS_GEN2(dev)) {
Adam Jacksonf2b115e2009-12-03 17:14:42 -05005520 if (IS_PINEVIEW(dev))
5521 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_PINEVIEW) >>
5522 DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW);
Shaohua Li21778322009-02-23 15:19:16 +08005523 else
5524 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK) >>
Jesse Barnes79e53942008-11-07 14:24:08 -08005525 DPLL_FPA01_P1_POST_DIV_SHIFT);
5526
5527 switch (dpll & DPLL_MODE_MASK) {
5528 case DPLLB_MODE_DAC_SERIAL:
5529 clock.p2 = dpll & DPLL_DAC_SERIAL_P2_CLOCK_DIV_5 ?
5530 5 : 10;
5531 break;
5532 case DPLLB_MODE_LVDS:
5533 clock.p2 = dpll & DPLLB_LVDS_P2_CLOCK_DIV_7 ?
5534 7 : 14;
5535 break;
5536 default:
Zhao Yakui28c97732009-10-09 11:39:41 +08005537 DRM_DEBUG_KMS("Unknown DPLL mode %08x in programmed "
Jesse Barnes79e53942008-11-07 14:24:08 -08005538 "mode\n", (int)(dpll & DPLL_MODE_MASK));
5539 return 0;
5540 }
5541
5542 /* XXX: Handle the 100Mhz refclk */
Shaohua Li21778322009-02-23 15:19:16 +08005543 intel_clock(dev, 96000, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08005544 } else {
5545 bool is_lvds = (pipe == 1) && (I915_READ(LVDS) & LVDS_PORT_EN);
5546
5547 if (is_lvds) {
5548 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830_LVDS) >>
5549 DPLL_FPA01_P1_POST_DIV_SHIFT);
5550 clock.p2 = 14;
5551
5552 if ((dpll & PLL_REF_INPUT_MASK) ==
5553 PLLB_REF_INPUT_SPREADSPECTRUMIN) {
5554 /* XXX: might not be 66MHz */
Shaohua Li21778322009-02-23 15:19:16 +08005555 intel_clock(dev, 66000, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08005556 } else
Shaohua Li21778322009-02-23 15:19:16 +08005557 intel_clock(dev, 48000, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08005558 } else {
5559 if (dpll & PLL_P1_DIVIDE_BY_TWO)
5560 clock.p1 = 2;
5561 else {
5562 clock.p1 = ((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830) >>
5563 DPLL_FPA01_P1_POST_DIV_SHIFT) + 2;
5564 }
5565 if (dpll & PLL_P2_DIVIDE_BY_4)
5566 clock.p2 = 4;
5567 else
5568 clock.p2 = 2;
5569
Shaohua Li21778322009-02-23 15:19:16 +08005570 intel_clock(dev, 48000, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08005571 }
5572 }
5573
5574 /* XXX: It would be nice to validate the clocks, but we can't reuse
5575 * i830PllIsValid() because it relies on the xf86_config connector
5576 * configuration being accurate, which it isn't necessarily.
5577 */
5578
5579 return clock.dot;
5580}
5581
5582/** Returns the currently programmed mode of the given pipe. */
5583struct drm_display_mode *intel_crtc_mode_get(struct drm_device *dev,
5584 struct drm_crtc *crtc)
5585{
Jesse Barnes548f2452011-02-17 10:40:53 -08005586 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -08005587 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5588 int pipe = intel_crtc->pipe;
5589 struct drm_display_mode *mode;
Jesse Barnes548f2452011-02-17 10:40:53 -08005590 int htot = I915_READ(HTOTAL(pipe));
5591 int hsync = I915_READ(HSYNC(pipe));
5592 int vtot = I915_READ(VTOTAL(pipe));
5593 int vsync = I915_READ(VSYNC(pipe));
Jesse Barnes79e53942008-11-07 14:24:08 -08005594
5595 mode = kzalloc(sizeof(*mode), GFP_KERNEL);
5596 if (!mode)
5597 return NULL;
5598
5599 mode->clock = intel_crtc_clock_get(dev, crtc);
5600 mode->hdisplay = (htot & 0xffff) + 1;
5601 mode->htotal = ((htot & 0xffff0000) >> 16) + 1;
5602 mode->hsync_start = (hsync & 0xffff) + 1;
5603 mode->hsync_end = ((hsync & 0xffff0000) >> 16) + 1;
5604 mode->vdisplay = (vtot & 0xffff) + 1;
5605 mode->vtotal = ((vtot & 0xffff0000) >> 16) + 1;
5606 mode->vsync_start = (vsync & 0xffff) + 1;
5607 mode->vsync_end = ((vsync & 0xffff0000) >> 16) + 1;
5608
5609 drm_mode_set_name(mode);
Jesse Barnes79e53942008-11-07 14:24:08 -08005610
5611 return mode;
5612}
5613
Jesse Barnes652c3932009-08-17 13:31:43 -07005614#define GPU_IDLE_TIMEOUT 500 /* ms */
5615
5616/* When this timer fires, we've been idle for awhile */
5617static void intel_gpu_idle_timer(unsigned long arg)
5618{
5619 struct drm_device *dev = (struct drm_device *)arg;
5620 drm_i915_private_t *dev_priv = dev->dev_private;
5621
Chris Wilsonff7ea4c2010-12-08 09:43:41 +00005622 if (!list_empty(&dev_priv->mm.active_list)) {
5623 /* Still processing requests, so just re-arm the timer. */
5624 mod_timer(&dev_priv->idle_timer, jiffies +
5625 msecs_to_jiffies(GPU_IDLE_TIMEOUT));
5626 return;
5627 }
Jesse Barnes652c3932009-08-17 13:31:43 -07005628
Chris Wilsonff7ea4c2010-12-08 09:43:41 +00005629 dev_priv->busy = false;
Eric Anholt01dfba92009-09-06 15:18:53 -07005630 queue_work(dev_priv->wq, &dev_priv->idle_work);
Jesse Barnes652c3932009-08-17 13:31:43 -07005631}
5632
Jesse Barnes652c3932009-08-17 13:31:43 -07005633#define CRTC_IDLE_TIMEOUT 1000 /* ms */
5634
5635static void intel_crtc_idle_timer(unsigned long arg)
5636{
5637 struct intel_crtc *intel_crtc = (struct intel_crtc *)arg;
5638 struct drm_crtc *crtc = &intel_crtc->base;
5639 drm_i915_private_t *dev_priv = crtc->dev->dev_private;
Chris Wilsonff7ea4c2010-12-08 09:43:41 +00005640 struct intel_framebuffer *intel_fb;
5641
5642 intel_fb = to_intel_framebuffer(crtc->fb);
5643 if (intel_fb && intel_fb->obj->active) {
5644 /* The framebuffer is still being accessed by the GPU. */
5645 mod_timer(&intel_crtc->idle_timer, jiffies +
5646 msecs_to_jiffies(CRTC_IDLE_TIMEOUT));
5647 return;
5648 }
Jesse Barnes652c3932009-08-17 13:31:43 -07005649
Jesse Barnes652c3932009-08-17 13:31:43 -07005650 intel_crtc->busy = false;
Eric Anholt01dfba92009-09-06 15:18:53 -07005651 queue_work(dev_priv->wq, &dev_priv->idle_work);
Jesse Barnes652c3932009-08-17 13:31:43 -07005652}
5653
Daniel Vetter3dec0092010-08-20 21:40:52 +02005654static void intel_increase_pllclock(struct drm_crtc *crtc)
Jesse Barnes652c3932009-08-17 13:31:43 -07005655{
5656 struct drm_device *dev = crtc->dev;
5657 drm_i915_private_t *dev_priv = dev->dev_private;
5658 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5659 int pipe = intel_crtc->pipe;
Jesse Barnesdbdc6472010-12-30 09:36:39 -08005660 int dpll_reg = DPLL(pipe);
5661 int dpll;
Jesse Barnes652c3932009-08-17 13:31:43 -07005662
Eric Anholtbad720f2009-10-22 16:11:14 -07005663 if (HAS_PCH_SPLIT(dev))
Jesse Barnes652c3932009-08-17 13:31:43 -07005664 return;
5665
5666 if (!dev_priv->lvds_downclock_avail)
5667 return;
5668
Jesse Barnesdbdc6472010-12-30 09:36:39 -08005669 dpll = I915_READ(dpll_reg);
Jesse Barnes652c3932009-08-17 13:31:43 -07005670 if (!HAS_PIPE_CXSR(dev) && (dpll & DISPLAY_RATE_SELECT_FPA1)) {
Zhao Yakui44d98a62009-10-09 11:39:40 +08005671 DRM_DEBUG_DRIVER("upclocking LVDS\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07005672
Sean Paul8ac5a6d2012-02-13 13:14:51 -05005673 assert_panel_unlocked(dev_priv, pipe);
Jesse Barnes652c3932009-08-17 13:31:43 -07005674
5675 dpll &= ~DISPLAY_RATE_SELECT_FPA1;
5676 I915_WRITE(dpll_reg, dpll);
Jesse Barnes9d0498a2010-08-18 13:20:54 -07005677 intel_wait_for_vblank(dev, pipe);
Jesse Barnesdbdc6472010-12-30 09:36:39 -08005678
Jesse Barnes652c3932009-08-17 13:31:43 -07005679 dpll = I915_READ(dpll_reg);
5680 if (dpll & DISPLAY_RATE_SELECT_FPA1)
Zhao Yakui44d98a62009-10-09 11:39:40 +08005681 DRM_DEBUG_DRIVER("failed to upclock LVDS!\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07005682 }
5683
5684 /* Schedule downclock */
Daniel Vetter3dec0092010-08-20 21:40:52 +02005685 mod_timer(&intel_crtc->idle_timer, jiffies +
5686 msecs_to_jiffies(CRTC_IDLE_TIMEOUT));
Jesse Barnes652c3932009-08-17 13:31:43 -07005687}
5688
5689static void intel_decrease_pllclock(struct drm_crtc *crtc)
5690{
5691 struct drm_device *dev = crtc->dev;
5692 drm_i915_private_t *dev_priv = dev->dev_private;
5693 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes652c3932009-08-17 13:31:43 -07005694
Eric Anholtbad720f2009-10-22 16:11:14 -07005695 if (HAS_PCH_SPLIT(dev))
Jesse Barnes652c3932009-08-17 13:31:43 -07005696 return;
5697
5698 if (!dev_priv->lvds_downclock_avail)
5699 return;
5700
5701 /*
5702 * Since this is called by a timer, we should never get here in
5703 * the manual case.
5704 */
5705 if (!HAS_PIPE_CXSR(dev) && intel_crtc->lowfreq_avail) {
Chris Wilson074b5e12012-05-02 12:07:06 +01005706 int pipe = intel_crtc->pipe;
5707 int dpll_reg = DPLL(pipe);
Daniel Vetterdc257cf2012-05-07 11:30:46 +02005708 int dpll;
Chris Wilson074b5e12012-05-02 12:07:06 +01005709
Zhao Yakui44d98a62009-10-09 11:39:40 +08005710 DRM_DEBUG_DRIVER("downclocking LVDS\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07005711
Sean Paul8ac5a6d2012-02-13 13:14:51 -05005712 assert_panel_unlocked(dev_priv, pipe);
Jesse Barnes652c3932009-08-17 13:31:43 -07005713
Chris Wilson074b5e12012-05-02 12:07:06 +01005714 dpll = I915_READ(dpll_reg);
Jesse Barnes652c3932009-08-17 13:31:43 -07005715 dpll |= DISPLAY_RATE_SELECT_FPA1;
5716 I915_WRITE(dpll_reg, dpll);
Jesse Barnes9d0498a2010-08-18 13:20:54 -07005717 intel_wait_for_vblank(dev, pipe);
Jesse Barnes652c3932009-08-17 13:31:43 -07005718 dpll = I915_READ(dpll_reg);
5719 if (!(dpll & DISPLAY_RATE_SELECT_FPA1))
Zhao Yakui44d98a62009-10-09 11:39:40 +08005720 DRM_DEBUG_DRIVER("failed to downclock LVDS!\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07005721 }
5722
5723}
5724
5725/**
5726 * intel_idle_update - adjust clocks for idleness
5727 * @work: work struct
5728 *
5729 * Either the GPU or display (or both) went idle. Check the busy status
5730 * here and adjust the CRTC and GPU clocks as necessary.
5731 */
5732static void intel_idle_update(struct work_struct *work)
5733{
5734 drm_i915_private_t *dev_priv = container_of(work, drm_i915_private_t,
5735 idle_work);
5736 struct drm_device *dev = dev_priv->dev;
5737 struct drm_crtc *crtc;
5738 struct intel_crtc *intel_crtc;
5739
5740 if (!i915_powersave)
5741 return;
5742
5743 mutex_lock(&dev->struct_mutex);
5744
Jesse Barnes7648fa92010-05-20 14:28:11 -07005745 i915_update_gfx_val(dev_priv);
5746
Jesse Barnes652c3932009-08-17 13:31:43 -07005747 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
5748 /* Skip inactive CRTCs */
5749 if (!crtc->fb)
5750 continue;
5751
5752 intel_crtc = to_intel_crtc(crtc);
5753 if (!intel_crtc->busy)
5754 intel_decrease_pllclock(crtc);
5755 }
5756
Li Peng45ac22c2010-06-12 23:38:35 +08005757
Jesse Barnes652c3932009-08-17 13:31:43 -07005758 mutex_unlock(&dev->struct_mutex);
5759}
5760
5761/**
5762 * intel_mark_busy - mark the GPU and possibly the display busy
5763 * @dev: drm device
5764 * @obj: object we're operating on
5765 *
5766 * Callers can use this function to indicate that the GPU is busy processing
5767 * commands. If @obj matches one of the CRTC objects (i.e. it's a scanout
5768 * buffer), we'll also mark the display as busy, so we know to increase its
5769 * clock frequency.
5770 */
Chris Wilson05394f32010-11-08 19:18:58 +00005771void intel_mark_busy(struct drm_device *dev, struct drm_i915_gem_object *obj)
Jesse Barnes652c3932009-08-17 13:31:43 -07005772{
5773 drm_i915_private_t *dev_priv = dev->dev_private;
5774 struct drm_crtc *crtc = NULL;
5775 struct intel_framebuffer *intel_fb;
5776 struct intel_crtc *intel_crtc;
5777
Zhenyu Wang5e17ee72009-09-03 09:30:06 +08005778 if (!drm_core_check_feature(dev, DRIVER_MODESET))
5779 return;
5780
Chris Wilson91041832012-04-26 11:28:42 +01005781 if (!dev_priv->busy) {
5782 intel_sanitize_pm(dev);
Chris Wilson28cf7982009-11-30 01:08:56 +00005783 dev_priv->busy = true;
Chris Wilson91041832012-04-26 11:28:42 +01005784 } else
Chris Wilson28cf7982009-11-30 01:08:56 +00005785 mod_timer(&dev_priv->idle_timer, jiffies +
5786 msecs_to_jiffies(GPU_IDLE_TIMEOUT));
Jesse Barnes652c3932009-08-17 13:31:43 -07005787
Chris Wilsonacb87df2012-05-03 15:47:57 +01005788 if (obj == NULL)
5789 return;
5790
Jesse Barnes652c3932009-08-17 13:31:43 -07005791 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
5792 if (!crtc->fb)
5793 continue;
5794
5795 intel_crtc = to_intel_crtc(crtc);
5796 intel_fb = to_intel_framebuffer(crtc->fb);
5797 if (intel_fb->obj == obj) {
5798 if (!intel_crtc->busy) {
5799 /* Non-busy -> busy, upclock */
Daniel Vetter3dec0092010-08-20 21:40:52 +02005800 intel_increase_pllclock(crtc);
Jesse Barnes652c3932009-08-17 13:31:43 -07005801 intel_crtc->busy = true;
5802 } else {
5803 /* Busy -> busy, put off timer */
5804 mod_timer(&intel_crtc->idle_timer, jiffies +
5805 msecs_to_jiffies(CRTC_IDLE_TIMEOUT));
5806 }
5807 }
5808 }
5809}
5810
Jesse Barnes79e53942008-11-07 14:24:08 -08005811static void intel_crtc_destroy(struct drm_crtc *crtc)
5812{
5813 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter67e77c52010-08-20 22:26:30 +02005814 struct drm_device *dev = crtc->dev;
5815 struct intel_unpin_work *work;
5816 unsigned long flags;
5817
5818 spin_lock_irqsave(&dev->event_lock, flags);
5819 work = intel_crtc->unpin_work;
5820 intel_crtc->unpin_work = NULL;
5821 spin_unlock_irqrestore(&dev->event_lock, flags);
5822
5823 if (work) {
5824 cancel_work_sync(&work->work);
5825 kfree(work);
5826 }
Jesse Barnes79e53942008-11-07 14:24:08 -08005827
5828 drm_crtc_cleanup(crtc);
Daniel Vetter67e77c52010-08-20 22:26:30 +02005829
Jesse Barnes79e53942008-11-07 14:24:08 -08005830 kfree(intel_crtc);
5831}
5832
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005833static void intel_unpin_work_fn(struct work_struct *__work)
5834{
5835 struct intel_unpin_work *work =
5836 container_of(__work, struct intel_unpin_work, work);
5837
5838 mutex_lock(&work->dev->struct_mutex);
Chris Wilson1690e1e2011-12-14 13:57:08 +01005839 intel_unpin_fb_obj(work->old_fb_obj);
Chris Wilson05394f32010-11-08 19:18:58 +00005840 drm_gem_object_unreference(&work->pending_flip_obj->base);
5841 drm_gem_object_unreference(&work->old_fb_obj->base);
Chris Wilsond9e86c02010-11-10 16:40:20 +00005842
Chris Wilson7782de32011-07-08 12:22:41 +01005843 intel_update_fbc(work->dev);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005844 mutex_unlock(&work->dev->struct_mutex);
5845 kfree(work);
5846}
5847
Jesse Barnes1afe3e92010-03-26 10:35:20 -07005848static void do_intel_finish_page_flip(struct drm_device *dev,
Mario Kleiner49b14a52010-12-09 07:00:07 +01005849 struct drm_crtc *crtc)
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005850{
5851 drm_i915_private_t *dev_priv = dev->dev_private;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005852 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5853 struct intel_unpin_work *work;
Chris Wilson05394f32010-11-08 19:18:58 +00005854 struct drm_i915_gem_object *obj;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005855 struct drm_pending_vblank_event *e;
Mario Kleiner49b14a52010-12-09 07:00:07 +01005856 struct timeval tnow, tvbl;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005857 unsigned long flags;
5858
5859 /* Ignore early vblank irqs */
5860 if (intel_crtc == NULL)
5861 return;
5862
Mario Kleiner49b14a52010-12-09 07:00:07 +01005863 do_gettimeofday(&tnow);
5864
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005865 spin_lock_irqsave(&dev->event_lock, flags);
5866 work = intel_crtc->unpin_work;
5867 if (work == NULL || !work->pending) {
5868 spin_unlock_irqrestore(&dev->event_lock, flags);
5869 return;
5870 }
5871
5872 intel_crtc->unpin_work = NULL;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005873
5874 if (work->event) {
5875 e = work->event;
Mario Kleiner49b14a52010-12-09 07:00:07 +01005876 e->event.sequence = drm_vblank_count_and_time(dev, intel_crtc->pipe, &tvbl);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +01005877
5878 /* Called before vblank count and timestamps have
5879 * been updated for the vblank interval of flip
5880 * completion? Need to increment vblank count and
5881 * add one videorefresh duration to returned timestamp
Mario Kleiner49b14a52010-12-09 07:00:07 +01005882 * to account for this. We assume this happened if we
5883 * get called over 0.9 frame durations after the last
5884 * timestamped vblank.
5885 *
5886 * This calculation can not be used with vrefresh rates
5887 * below 5Hz (10Hz to be on the safe side) without
5888 * promoting to 64 integers.
Mario Kleiner0af7e4d2010-12-08 04:07:19 +01005889 */
Mario Kleiner49b14a52010-12-09 07:00:07 +01005890 if (10 * (timeval_to_ns(&tnow) - timeval_to_ns(&tvbl)) >
5891 9 * crtc->framedur_ns) {
Mario Kleiner0af7e4d2010-12-08 04:07:19 +01005892 e->event.sequence++;
Mario Kleiner49b14a52010-12-09 07:00:07 +01005893 tvbl = ns_to_timeval(timeval_to_ns(&tvbl) +
5894 crtc->framedur_ns);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +01005895 }
5896
Mario Kleiner49b14a52010-12-09 07:00:07 +01005897 e->event.tv_sec = tvbl.tv_sec;
5898 e->event.tv_usec = tvbl.tv_usec;
Mario Kleiner0af7e4d2010-12-08 04:07:19 +01005899
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005900 list_add_tail(&e->base.link,
5901 &e->base.file_priv->event_list);
5902 wake_up_interruptible(&e->base.file_priv->event_wait);
5903 }
5904
Mario Kleiner0af7e4d2010-12-08 04:07:19 +01005905 drm_vblank_put(dev, intel_crtc->pipe);
5906
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005907 spin_unlock_irqrestore(&dev->event_lock, flags);
5908
Chris Wilson05394f32010-11-08 19:18:58 +00005909 obj = work->old_fb_obj;
Chris Wilsond9e86c02010-11-10 16:40:20 +00005910
Chris Wilsone59f2ba2010-10-07 17:28:15 +01005911 atomic_clear_mask(1 << intel_crtc->plane,
Chris Wilson05394f32010-11-08 19:18:58 +00005912 &obj->pending_flip.counter);
5913 if (atomic_read(&obj->pending_flip) == 0)
Chris Wilsonf787a5f2010-09-24 16:02:42 +01005914 wake_up(&dev_priv->pending_flip_queue);
Chris Wilsond9e86c02010-11-10 16:40:20 +00005915
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005916 schedule_work(&work->work);
Jesse Barnese5510fa2010-07-01 16:48:37 -07005917
5918 trace_i915_flip_complete(intel_crtc->plane, work->pending_flip_obj);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005919}
5920
Jesse Barnes1afe3e92010-03-26 10:35:20 -07005921void intel_finish_page_flip(struct drm_device *dev, int pipe)
5922{
5923 drm_i915_private_t *dev_priv = dev->dev_private;
5924 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
5925
Mario Kleiner49b14a52010-12-09 07:00:07 +01005926 do_intel_finish_page_flip(dev, crtc);
Jesse Barnes1afe3e92010-03-26 10:35:20 -07005927}
5928
5929void intel_finish_page_flip_plane(struct drm_device *dev, int plane)
5930{
5931 drm_i915_private_t *dev_priv = dev->dev_private;
5932 struct drm_crtc *crtc = dev_priv->plane_to_crtc_mapping[plane];
5933
Mario Kleiner49b14a52010-12-09 07:00:07 +01005934 do_intel_finish_page_flip(dev, crtc);
Jesse Barnes1afe3e92010-03-26 10:35:20 -07005935}
5936
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005937void intel_prepare_page_flip(struct drm_device *dev, int plane)
5938{
5939 drm_i915_private_t *dev_priv = dev->dev_private;
5940 struct intel_crtc *intel_crtc =
5941 to_intel_crtc(dev_priv->plane_to_crtc_mapping[plane]);
5942 unsigned long flags;
5943
5944 spin_lock_irqsave(&dev->event_lock, flags);
Jesse Barnesde3f4402010-01-14 13:18:02 -08005945 if (intel_crtc->unpin_work) {
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01005946 if ((++intel_crtc->unpin_work->pending) > 1)
5947 DRM_ERROR("Prepared flip multiple times\n");
Jesse Barnesde3f4402010-01-14 13:18:02 -08005948 } else {
5949 DRM_DEBUG_DRIVER("preparing flip with no unpin work?\n");
5950 }
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005951 spin_unlock_irqrestore(&dev->event_lock, flags);
5952}
5953
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07005954static int intel_gen2_queue_flip(struct drm_device *dev,
5955 struct drm_crtc *crtc,
5956 struct drm_framebuffer *fb,
5957 struct drm_i915_gem_object *obj)
5958{
5959 struct drm_i915_private *dev_priv = dev->dev_private;
5960 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5961 unsigned long offset;
5962 u32 flip_mask;
Daniel Vetter6d90c952012-04-26 23:28:05 +02005963 struct intel_ring_buffer *ring = &dev_priv->ring[RCS];
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07005964 int ret;
5965
Daniel Vetter6d90c952012-04-26 23:28:05 +02005966 ret = intel_pin_and_fence_fb_obj(dev, obj, ring);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07005967 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01005968 goto err;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07005969
5970 /* Offset into the new buffer for cases of shared fbs between CRTCs */
Ville Syrjälä01f2c772011-12-20 00:06:49 +02005971 offset = crtc->y * fb->pitches[0] + crtc->x * fb->bits_per_pixel/8;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07005972
Daniel Vetter6d90c952012-04-26 23:28:05 +02005973 ret = intel_ring_begin(ring, 6);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07005974 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01005975 goto err_unpin;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07005976
5977 /* Can't queue multiple flips, so wait for the previous
5978 * one to finish before executing the next.
5979 */
5980 if (intel_crtc->plane)
5981 flip_mask = MI_WAIT_FOR_PLANE_B_FLIP;
5982 else
5983 flip_mask = MI_WAIT_FOR_PLANE_A_FLIP;
Daniel Vetter6d90c952012-04-26 23:28:05 +02005984 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | flip_mask);
5985 intel_ring_emit(ring, MI_NOOP);
5986 intel_ring_emit(ring, MI_DISPLAY_FLIP |
5987 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
5988 intel_ring_emit(ring, fb->pitches[0]);
5989 intel_ring_emit(ring, obj->gtt_offset + offset);
5990 intel_ring_emit(ring, 0); /* aux display base address, unused */
5991 intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01005992 return 0;
5993
5994err_unpin:
5995 intel_unpin_fb_obj(obj);
5996err:
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07005997 return ret;
5998}
5999
6000static int intel_gen3_queue_flip(struct drm_device *dev,
6001 struct drm_crtc *crtc,
6002 struct drm_framebuffer *fb,
6003 struct drm_i915_gem_object *obj)
6004{
6005 struct drm_i915_private *dev_priv = dev->dev_private;
6006 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6007 unsigned long offset;
6008 u32 flip_mask;
Daniel Vetter6d90c952012-04-26 23:28:05 +02006009 struct intel_ring_buffer *ring = &dev_priv->ring[RCS];
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006010 int ret;
6011
Daniel Vetter6d90c952012-04-26 23:28:05 +02006012 ret = intel_pin_and_fence_fb_obj(dev, obj, ring);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006013 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01006014 goto err;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006015
6016 /* Offset into the new buffer for cases of shared fbs between CRTCs */
Ville Syrjälä01f2c772011-12-20 00:06:49 +02006017 offset = crtc->y * fb->pitches[0] + crtc->x * fb->bits_per_pixel/8;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006018
Daniel Vetter6d90c952012-04-26 23:28:05 +02006019 ret = intel_ring_begin(ring, 6);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006020 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01006021 goto err_unpin;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006022
6023 if (intel_crtc->plane)
6024 flip_mask = MI_WAIT_FOR_PLANE_B_FLIP;
6025 else
6026 flip_mask = MI_WAIT_FOR_PLANE_A_FLIP;
Daniel Vetter6d90c952012-04-26 23:28:05 +02006027 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | flip_mask);
6028 intel_ring_emit(ring, MI_NOOP);
6029 intel_ring_emit(ring, MI_DISPLAY_FLIP_I915 |
6030 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
6031 intel_ring_emit(ring, fb->pitches[0]);
6032 intel_ring_emit(ring, obj->gtt_offset + offset);
6033 intel_ring_emit(ring, MI_NOOP);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006034
Daniel Vetter6d90c952012-04-26 23:28:05 +02006035 intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01006036 return 0;
6037
6038err_unpin:
6039 intel_unpin_fb_obj(obj);
6040err:
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006041 return ret;
6042}
6043
6044static int intel_gen4_queue_flip(struct drm_device *dev,
6045 struct drm_crtc *crtc,
6046 struct drm_framebuffer *fb,
6047 struct drm_i915_gem_object *obj)
6048{
6049 struct drm_i915_private *dev_priv = dev->dev_private;
6050 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6051 uint32_t pf, pipesrc;
Daniel Vetter6d90c952012-04-26 23:28:05 +02006052 struct intel_ring_buffer *ring = &dev_priv->ring[RCS];
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006053 int ret;
6054
Daniel Vetter6d90c952012-04-26 23:28:05 +02006055 ret = intel_pin_and_fence_fb_obj(dev, obj, ring);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006056 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01006057 goto err;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006058
Daniel Vetter6d90c952012-04-26 23:28:05 +02006059 ret = intel_ring_begin(ring, 4);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006060 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01006061 goto err_unpin;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006062
6063 /* i965+ uses the linear or tiled offsets from the
6064 * Display Registers (which do not change across a page-flip)
6065 * so we need only reprogram the base address.
6066 */
Daniel Vetter6d90c952012-04-26 23:28:05 +02006067 intel_ring_emit(ring, MI_DISPLAY_FLIP |
6068 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
6069 intel_ring_emit(ring, fb->pitches[0]);
6070 intel_ring_emit(ring, obj->gtt_offset | obj->tiling_mode);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006071
6072 /* XXX Enabling the panel-fitter across page-flip is so far
6073 * untested on non-native modes, so ignore it for now.
6074 * pf = I915_READ(pipe == 0 ? PFA_CTL_1 : PFB_CTL_1) & PF_ENABLE;
6075 */
6076 pf = 0;
6077 pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff;
Daniel Vetter6d90c952012-04-26 23:28:05 +02006078 intel_ring_emit(ring, pf | pipesrc);
6079 intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01006080 return 0;
6081
6082err_unpin:
6083 intel_unpin_fb_obj(obj);
6084err:
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006085 return ret;
6086}
6087
6088static int intel_gen6_queue_flip(struct drm_device *dev,
6089 struct drm_crtc *crtc,
6090 struct drm_framebuffer *fb,
6091 struct drm_i915_gem_object *obj)
6092{
6093 struct drm_i915_private *dev_priv = dev->dev_private;
6094 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter6d90c952012-04-26 23:28:05 +02006095 struct intel_ring_buffer *ring = &dev_priv->ring[RCS];
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006096 uint32_t pf, pipesrc;
6097 int ret;
6098
Daniel Vetter6d90c952012-04-26 23:28:05 +02006099 ret = intel_pin_and_fence_fb_obj(dev, obj, ring);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006100 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01006101 goto err;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006102
Daniel Vetter6d90c952012-04-26 23:28:05 +02006103 ret = intel_ring_begin(ring, 4);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006104 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01006105 goto err_unpin;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006106
Daniel Vetter6d90c952012-04-26 23:28:05 +02006107 intel_ring_emit(ring, MI_DISPLAY_FLIP |
6108 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
6109 intel_ring_emit(ring, fb->pitches[0] | obj->tiling_mode);
6110 intel_ring_emit(ring, obj->gtt_offset);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006111
Chris Wilson99d9acd2012-04-17 20:37:00 +01006112 /* Contrary to the suggestions in the documentation,
6113 * "Enable Panel Fitter" does not seem to be required when page
6114 * flipping with a non-native mode, and worse causes a normal
6115 * modeset to fail.
6116 * pf = I915_READ(PF_CTL(intel_crtc->pipe)) & PF_ENABLE;
6117 */
6118 pf = 0;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006119 pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff;
Daniel Vetter6d90c952012-04-26 23:28:05 +02006120 intel_ring_emit(ring, pf | pipesrc);
6121 intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01006122 return 0;
6123
6124err_unpin:
6125 intel_unpin_fb_obj(obj);
6126err:
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006127 return ret;
6128}
6129
Jesse Barnes7c9017e2011-06-16 12:18:54 -07006130/*
6131 * On gen7 we currently use the blit ring because (in early silicon at least)
6132 * the render ring doesn't give us interrpts for page flip completion, which
6133 * means clients will hang after the first flip is queued. Fortunately the
6134 * blit ring generates interrupts properly, so use it instead.
6135 */
6136static int intel_gen7_queue_flip(struct drm_device *dev,
6137 struct drm_crtc *crtc,
6138 struct drm_framebuffer *fb,
6139 struct drm_i915_gem_object *obj)
6140{
6141 struct drm_i915_private *dev_priv = dev->dev_private;
6142 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6143 struct intel_ring_buffer *ring = &dev_priv->ring[BCS];
6144 int ret;
6145
6146 ret = intel_pin_and_fence_fb_obj(dev, obj, ring);
6147 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01006148 goto err;
Jesse Barnes7c9017e2011-06-16 12:18:54 -07006149
6150 ret = intel_ring_begin(ring, 4);
6151 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01006152 goto err_unpin;
Jesse Barnes7c9017e2011-06-16 12:18:54 -07006153
6154 intel_ring_emit(ring, MI_DISPLAY_FLIP_I915 | (intel_crtc->plane << 19));
Ville Syrjälä01f2c772011-12-20 00:06:49 +02006155 intel_ring_emit(ring, (fb->pitches[0] | obj->tiling_mode));
Jesse Barnes7c9017e2011-06-16 12:18:54 -07006156 intel_ring_emit(ring, (obj->gtt_offset));
6157 intel_ring_emit(ring, (MI_NOOP));
6158 intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01006159 return 0;
6160
6161err_unpin:
6162 intel_unpin_fb_obj(obj);
6163err:
Jesse Barnes7c9017e2011-06-16 12:18:54 -07006164 return ret;
6165}
6166
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006167static int intel_default_queue_flip(struct drm_device *dev,
6168 struct drm_crtc *crtc,
6169 struct drm_framebuffer *fb,
6170 struct drm_i915_gem_object *obj)
6171{
6172 return -ENODEV;
6173}
6174
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006175static int intel_crtc_page_flip(struct drm_crtc *crtc,
6176 struct drm_framebuffer *fb,
6177 struct drm_pending_vblank_event *event)
6178{
6179 struct drm_device *dev = crtc->dev;
6180 struct drm_i915_private *dev_priv = dev->dev_private;
6181 struct intel_framebuffer *intel_fb;
Chris Wilson05394f32010-11-08 19:18:58 +00006182 struct drm_i915_gem_object *obj;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006183 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6184 struct intel_unpin_work *work;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006185 unsigned long flags;
Chris Wilson52e68632010-08-08 10:15:59 +01006186 int ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006187
6188 work = kzalloc(sizeof *work, GFP_KERNEL);
6189 if (work == NULL)
6190 return -ENOMEM;
6191
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006192 work->event = event;
6193 work->dev = crtc->dev;
6194 intel_fb = to_intel_framebuffer(crtc->fb);
Jesse Barnesb1b87f62010-01-26 14:40:05 -08006195 work->old_fb_obj = intel_fb->obj;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006196 INIT_WORK(&work->work, intel_unpin_work_fn);
6197
Jesse Barnes7317c75e62011-08-29 09:45:28 -07006198 ret = drm_vblank_get(dev, intel_crtc->pipe);
6199 if (ret)
6200 goto free_work;
6201
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006202 /* We borrow the event spin lock for protecting unpin_work */
6203 spin_lock_irqsave(&dev->event_lock, flags);
6204 if (intel_crtc->unpin_work) {
6205 spin_unlock_irqrestore(&dev->event_lock, flags);
6206 kfree(work);
Jesse Barnes7317c75e62011-08-29 09:45:28 -07006207 drm_vblank_put(dev, intel_crtc->pipe);
Chris Wilson468f0b42010-05-27 13:18:13 +01006208
6209 DRM_DEBUG_DRIVER("flip queue: crtc already busy\n");
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006210 return -EBUSY;
6211 }
6212 intel_crtc->unpin_work = work;
6213 spin_unlock_irqrestore(&dev->event_lock, flags);
6214
6215 intel_fb = to_intel_framebuffer(fb);
6216 obj = intel_fb->obj;
6217
Chris Wilson468f0b42010-05-27 13:18:13 +01006218 mutex_lock(&dev->struct_mutex);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006219
Jesse Barnes75dfca82010-02-10 15:09:44 -08006220 /* Reference the objects for the scheduled work. */
Chris Wilson05394f32010-11-08 19:18:58 +00006221 drm_gem_object_reference(&work->old_fb_obj->base);
6222 drm_gem_object_reference(&obj->base);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006223
6224 crtc->fb = fb;
Chris Wilson96b099f2010-06-07 14:03:04 +01006225
Chris Wilsone1f99ce2010-10-27 12:45:26 +01006226 work->pending_flip_obj = obj;
Chris Wilsone1f99ce2010-10-27 12:45:26 +01006227
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01006228 work->enable_stall_check = true;
6229
Chris Wilsone1f99ce2010-10-27 12:45:26 +01006230 /* Block clients from rendering to the new back buffer until
6231 * the flip occurs and the object is no longer visible.
6232 */
Chris Wilson05394f32010-11-08 19:18:58 +00006233 atomic_add(1 << intel_crtc->plane, &work->old_fb_obj->pending_flip);
Chris Wilsone1f99ce2010-10-27 12:45:26 +01006234
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006235 ret = dev_priv->display.queue_flip(dev, crtc, fb, obj);
6236 if (ret)
6237 goto cleanup_pending;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006238
Chris Wilson7782de32011-07-08 12:22:41 +01006239 intel_disable_fbc(dev);
Chris Wilsonacb87df2012-05-03 15:47:57 +01006240 intel_mark_busy(dev, obj);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006241 mutex_unlock(&dev->struct_mutex);
6242
Jesse Barnese5510fa2010-07-01 16:48:37 -07006243 trace_i915_flip_request(intel_crtc->plane, obj);
6244
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006245 return 0;
Chris Wilson96b099f2010-06-07 14:03:04 +01006246
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006247cleanup_pending:
6248 atomic_sub(1 << intel_crtc->plane, &work->old_fb_obj->pending_flip);
Chris Wilson05394f32010-11-08 19:18:58 +00006249 drm_gem_object_unreference(&work->old_fb_obj->base);
6250 drm_gem_object_unreference(&obj->base);
Chris Wilson96b099f2010-06-07 14:03:04 +01006251 mutex_unlock(&dev->struct_mutex);
6252
6253 spin_lock_irqsave(&dev->event_lock, flags);
6254 intel_crtc->unpin_work = NULL;
6255 spin_unlock_irqrestore(&dev->event_lock, flags);
6256
Jesse Barnes7317c75e62011-08-29 09:45:28 -07006257 drm_vblank_put(dev, intel_crtc->pipe);
6258free_work:
Chris Wilson96b099f2010-06-07 14:03:04 +01006259 kfree(work);
6260
6261 return ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006262}
6263
Chris Wilson47f1c6c2010-12-03 15:37:31 +00006264static void intel_sanitize_modesetting(struct drm_device *dev,
6265 int pipe, int plane)
6266{
6267 struct drm_i915_private *dev_priv = dev->dev_private;
6268 u32 reg, val;
Daniel Vettera9dcf842012-05-13 22:29:25 +02006269 int i;
Chris Wilson47f1c6c2010-12-03 15:37:31 +00006270
Chris Wilsonf47166d2012-03-22 15:00:50 +00006271 /* Clear any frame start delays used for debugging left by the BIOS */
Daniel Vettera9dcf842012-05-13 22:29:25 +02006272 for_each_pipe(i) {
6273 reg = PIPECONF(i);
Chris Wilsonf47166d2012-03-22 15:00:50 +00006274 I915_WRITE(reg, I915_READ(reg) & ~PIPECONF_FRAME_START_DELAY_MASK);
6275 }
6276
Chris Wilson47f1c6c2010-12-03 15:37:31 +00006277 if (HAS_PCH_SPLIT(dev))
6278 return;
6279
6280 /* Who knows what state these registers were left in by the BIOS or
6281 * grub?
6282 *
6283 * If we leave the registers in a conflicting state (e.g. with the
6284 * display plane reading from the other pipe than the one we intend
6285 * to use) then when we attempt to teardown the active mode, we will
6286 * not disable the pipes and planes in the correct order -- leaving
6287 * a plane reading from a disabled pipe and possibly leading to
6288 * undefined behaviour.
6289 */
6290
6291 reg = DSPCNTR(plane);
6292 val = I915_READ(reg);
6293
6294 if ((val & DISPLAY_PLANE_ENABLE) == 0)
6295 return;
6296 if (!!(val & DISPPLANE_SEL_PIPE_MASK) == pipe)
6297 return;
6298
6299 /* This display plane is active and attached to the other CPU pipe. */
6300 pipe = !pipe;
6301
6302 /* Disable the plane and wait for it to stop reading from the pipe. */
Jesse Barnesb24e7172011-01-04 15:09:30 -08006303 intel_disable_plane(dev_priv, plane, pipe);
6304 intel_disable_pipe(dev_priv, pipe);
Chris Wilson47f1c6c2010-12-03 15:37:31 +00006305}
Jesse Barnes79e53942008-11-07 14:24:08 -08006306
Chris Wilsonf6e5b162011-04-12 18:06:51 +01006307static void intel_crtc_reset(struct drm_crtc *crtc)
6308{
6309 struct drm_device *dev = crtc->dev;
6310 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6311
6312 /* Reset flags back to the 'unknown' status so that they
6313 * will be correctly set on the initial modeset.
6314 */
6315 intel_crtc->dpms_mode = -1;
6316
6317 /* We need to fix up any BIOS configuration that conflicts with
6318 * our expectations.
6319 */
6320 intel_sanitize_modesetting(dev, intel_crtc->pipe, intel_crtc->plane);
6321}
6322
6323static struct drm_crtc_helper_funcs intel_helper_funcs = {
6324 .dpms = intel_crtc_dpms,
6325 .mode_fixup = intel_crtc_mode_fixup,
6326 .mode_set = intel_crtc_mode_set,
6327 .mode_set_base = intel_pipe_set_base,
6328 .mode_set_base_atomic = intel_pipe_set_base_atomic,
6329 .load_lut = intel_crtc_load_lut,
6330 .disable = intel_crtc_disable,
6331};
6332
6333static const struct drm_crtc_funcs intel_crtc_funcs = {
6334 .reset = intel_crtc_reset,
6335 .cursor_set = intel_crtc_cursor_set,
6336 .cursor_move = intel_crtc_cursor_move,
6337 .gamma_set = intel_crtc_gamma_set,
6338 .set_config = drm_crtc_helper_set_config,
6339 .destroy = intel_crtc_destroy,
6340 .page_flip = intel_crtc_page_flip,
6341};
6342
Jesse Barnesee7b9f92012-04-20 17:11:53 +01006343static void intel_pch_pll_init(struct drm_device *dev)
6344{
6345 drm_i915_private_t *dev_priv = dev->dev_private;
6346 int i;
6347
6348 if (dev_priv->num_pch_pll == 0) {
6349 DRM_DEBUG_KMS("No PCH PLLs on this hardware, skipping initialisation\n");
6350 return;
6351 }
6352
6353 for (i = 0; i < dev_priv->num_pch_pll; i++) {
6354 dev_priv->pch_plls[i].pll_reg = _PCH_DPLL(i);
6355 dev_priv->pch_plls[i].fp0_reg = _PCH_FP0(i);
6356 dev_priv->pch_plls[i].fp1_reg = _PCH_FP1(i);
6357 }
6358}
6359
Hannes Ederb358d0a2008-12-18 21:18:47 +01006360static void intel_crtc_init(struct drm_device *dev, int pipe)
Jesse Barnes79e53942008-11-07 14:24:08 -08006361{
Jesse Barnes22fd0fa2009-12-02 13:42:53 -08006362 drm_i915_private_t *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -08006363 struct intel_crtc *intel_crtc;
6364 int i;
6365
6366 intel_crtc = kzalloc(sizeof(struct intel_crtc) + (INTELFB_CONN_LIMIT * sizeof(struct drm_connector *)), GFP_KERNEL);
6367 if (intel_crtc == NULL)
6368 return;
6369
6370 drm_crtc_init(dev, &intel_crtc->base, &intel_crtc_funcs);
6371
6372 drm_mode_crtc_set_gamma_size(&intel_crtc->base, 256);
Jesse Barnes79e53942008-11-07 14:24:08 -08006373 for (i = 0; i < 256; i++) {
6374 intel_crtc->lut_r[i] = i;
6375 intel_crtc->lut_g[i] = i;
6376 intel_crtc->lut_b[i] = i;
6377 }
6378
Jesse Barnes80824002009-09-10 15:28:06 -07006379 /* Swap pipes & planes for FBC on pre-965 */
6380 intel_crtc->pipe = pipe;
6381 intel_crtc->plane = pipe;
Chris Wilsone2e767a2010-09-13 16:53:12 +01006382 if (IS_MOBILE(dev) && IS_GEN3(dev)) {
Zhao Yakui28c97732009-10-09 11:39:41 +08006383 DRM_DEBUG_KMS("swapping pipes & planes for FBC\n");
Chris Wilsone2e767a2010-09-13 16:53:12 +01006384 intel_crtc->plane = !pipe;
Jesse Barnes80824002009-09-10 15:28:06 -07006385 }
6386
Jesse Barnes22fd0fa2009-12-02 13:42:53 -08006387 BUG_ON(pipe >= ARRAY_SIZE(dev_priv->plane_to_crtc_mapping) ||
6388 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] != NULL);
6389 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] = &intel_crtc->base;
6390 dev_priv->pipe_to_crtc_mapping[intel_crtc->pipe] = &intel_crtc->base;
6391
Chris Wilson5d1d0cc2011-01-24 15:02:15 +00006392 intel_crtc_reset(&intel_crtc->base);
Chris Wilson04dbff52011-02-10 17:38:35 +00006393 intel_crtc->active = true; /* force the pipe off on setup_init_config */
Jesse Barnes5a354202011-06-24 12:19:22 -07006394 intel_crtc->bpp = 24; /* default for pre-Ironlake */
Jesse Barnes7e7d76c2010-09-10 10:47:20 -07006395
6396 if (HAS_PCH_SPLIT(dev)) {
6397 intel_helper_funcs.prepare = ironlake_crtc_prepare;
6398 intel_helper_funcs.commit = ironlake_crtc_commit;
6399 } else {
6400 intel_helper_funcs.prepare = i9xx_crtc_prepare;
6401 intel_helper_funcs.commit = i9xx_crtc_commit;
6402 }
6403
Jesse Barnes79e53942008-11-07 14:24:08 -08006404 drm_crtc_helper_add(&intel_crtc->base, &intel_helper_funcs);
6405
Jesse Barnes652c3932009-08-17 13:31:43 -07006406 intel_crtc->busy = false;
6407
6408 setup_timer(&intel_crtc->idle_timer, intel_crtc_idle_timer,
6409 (unsigned long)intel_crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08006410}
6411
Carl Worth08d7b3d2009-04-29 14:43:54 -07006412int intel_get_pipe_from_crtc_id(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00006413 struct drm_file *file)
Carl Worth08d7b3d2009-04-29 14:43:54 -07006414{
Carl Worth08d7b3d2009-04-29 14:43:54 -07006415 struct drm_i915_get_pipe_from_crtc_id *pipe_from_crtc_id = data;
Daniel Vetterc05422d2009-08-11 16:05:30 +02006416 struct drm_mode_object *drmmode_obj;
6417 struct intel_crtc *crtc;
Carl Worth08d7b3d2009-04-29 14:43:54 -07006418
Daniel Vetter1cff8f62012-04-24 09:55:08 +02006419 if (!drm_core_check_feature(dev, DRIVER_MODESET))
6420 return -ENODEV;
Carl Worth08d7b3d2009-04-29 14:43:54 -07006421
Daniel Vetterc05422d2009-08-11 16:05:30 +02006422 drmmode_obj = drm_mode_object_find(dev, pipe_from_crtc_id->crtc_id,
6423 DRM_MODE_OBJECT_CRTC);
Carl Worth08d7b3d2009-04-29 14:43:54 -07006424
Daniel Vetterc05422d2009-08-11 16:05:30 +02006425 if (!drmmode_obj) {
Carl Worth08d7b3d2009-04-29 14:43:54 -07006426 DRM_ERROR("no such CRTC id\n");
6427 return -EINVAL;
6428 }
6429
Daniel Vetterc05422d2009-08-11 16:05:30 +02006430 crtc = to_intel_crtc(obj_to_crtc(drmmode_obj));
6431 pipe_from_crtc_id->pipe = crtc->pipe;
Carl Worth08d7b3d2009-04-29 14:43:54 -07006432
Daniel Vetterc05422d2009-08-11 16:05:30 +02006433 return 0;
Carl Worth08d7b3d2009-04-29 14:43:54 -07006434}
6435
Zhenyu Wangc5e4df32010-03-30 14:39:27 +08006436static int intel_encoder_clones(struct drm_device *dev, int type_mask)
Jesse Barnes79e53942008-11-07 14:24:08 -08006437{
Chris Wilson4ef69c72010-09-09 15:14:28 +01006438 struct intel_encoder *encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08006439 int index_mask = 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08006440 int entry = 0;
6441
Chris Wilson4ef69c72010-09-09 15:14:28 +01006442 list_for_each_entry(encoder, &dev->mode_config.encoder_list, base.head) {
6443 if (type_mask & encoder->clone_mask)
Jesse Barnes79e53942008-11-07 14:24:08 -08006444 index_mask |= (1 << entry);
6445 entry++;
6446 }
Chris Wilson4ef69c72010-09-09 15:14:28 +01006447
Jesse Barnes79e53942008-11-07 14:24:08 -08006448 return index_mask;
6449}
6450
Chris Wilson4d302442010-12-14 19:21:29 +00006451static bool has_edp_a(struct drm_device *dev)
6452{
6453 struct drm_i915_private *dev_priv = dev->dev_private;
6454
6455 if (!IS_MOBILE(dev))
6456 return false;
6457
6458 if ((I915_READ(DP_A) & DP_DETECTED) == 0)
6459 return false;
6460
6461 if (IS_GEN5(dev) &&
6462 (I915_READ(ILK_DISPLAY_CHICKEN_FUSES) & ILK_eDP_A_DISABLE))
6463 return false;
6464
6465 return true;
6466}
6467
Jesse Barnes79e53942008-11-07 14:24:08 -08006468static void intel_setup_outputs(struct drm_device *dev)
6469{
Eric Anholt725e30a2009-01-22 13:01:02 -08006470 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson4ef69c72010-09-09 15:14:28 +01006471 struct intel_encoder *encoder;
Adam Jacksoncb0953d2010-07-16 14:46:29 -04006472 bool dpd_is_edp = false;
Chris Wilsonf3cfcba2012-02-09 09:35:53 +00006473 bool has_lvds;
Jesse Barnes79e53942008-11-07 14:24:08 -08006474
Chris Wilsonf3cfcba2012-02-09 09:35:53 +00006475 has_lvds = intel_lvds_init(dev);
Chris Wilsonc5d1b512010-11-29 18:00:23 +00006476 if (!has_lvds && !HAS_PCH_SPLIT(dev)) {
6477 /* disable the panel fitter on everything but LVDS */
6478 I915_WRITE(PFIT_CONTROL, 0);
6479 }
Jesse Barnes79e53942008-11-07 14:24:08 -08006480
Eric Anholtbad720f2009-10-22 16:11:14 -07006481 if (HAS_PCH_SPLIT(dev)) {
Adam Jacksoncb0953d2010-07-16 14:46:29 -04006482 dpd_is_edp = intel_dpd_is_edp(dev);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +08006483
Chris Wilson4d302442010-12-14 19:21:29 +00006484 if (has_edp_a(dev))
Zhenyu Wang32f9d652009-07-24 01:00:32 +08006485 intel_dp_init(dev, DP_A);
6486
Adam Jacksoncb0953d2010-07-16 14:46:29 -04006487 if (dpd_is_edp && (I915_READ(PCH_DP_D) & DP_DETECTED))
6488 intel_dp_init(dev, PCH_DP_D);
6489 }
6490
6491 intel_crt_init(dev);
6492
Eugeni Dodonov0e72a5b2012-05-09 15:37:27 -03006493 if (IS_HASWELL(dev)) {
6494 int found;
6495
6496 /* Haswell uses DDI functions to detect digital outputs */
6497 found = I915_READ(DDI_BUF_CTL_A) & DDI_INIT_DISPLAY_DETECTED;
6498 /* DDI A only supports eDP */
6499 if (found)
6500 intel_ddi_init(dev, PORT_A);
6501
6502 /* DDI B, C and D detection is indicated by the SFUSE_STRAP
6503 * register */
6504 found = I915_READ(SFUSE_STRAP);
6505
6506 if (found & SFUSE_STRAP_DDIB_DETECTED)
6507 intel_ddi_init(dev, PORT_B);
6508 if (found & SFUSE_STRAP_DDIC_DETECTED)
6509 intel_ddi_init(dev, PORT_C);
6510 if (found & SFUSE_STRAP_DDID_DETECTED)
6511 intel_ddi_init(dev, PORT_D);
6512 } else if (HAS_PCH_SPLIT(dev)) {
Adam Jacksoncb0953d2010-07-16 14:46:29 -04006513 int found;
6514
Zhenyu Wang30ad48b2009-06-05 15:38:43 +08006515 if (I915_READ(HDMIB) & PORT_DETECTED) {
Zhao Yakui461ed3c2010-03-30 15:11:33 +08006516 /* PCH SDVOB multiplex with HDMIB */
Daniel Vettereef4eac2012-03-23 23:43:35 +01006517 found = intel_sdvo_init(dev, PCH_SDVOB, true);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +08006518 if (!found)
6519 intel_hdmi_init(dev, HDMIB);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08006520 if (!found && (I915_READ(PCH_DP_B) & DP_DETECTED))
6521 intel_dp_init(dev, PCH_DP_B);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +08006522 }
6523
6524 if (I915_READ(HDMIC) & PORT_DETECTED)
6525 intel_hdmi_init(dev, HDMIC);
6526
6527 if (I915_READ(HDMID) & PORT_DETECTED)
6528 intel_hdmi_init(dev, HDMID);
6529
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08006530 if (I915_READ(PCH_DP_C) & DP_DETECTED)
6531 intel_dp_init(dev, PCH_DP_C);
6532
Adam Jacksoncb0953d2010-07-16 14:46:29 -04006533 if (!dpd_is_edp && (I915_READ(PCH_DP_D) & DP_DETECTED))
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08006534 intel_dp_init(dev, PCH_DP_D);
6535
Zhenyu Wang103a1962009-11-27 11:44:36 +08006536 } else if (SUPPORTS_DIGITAL_OUTPUTS(dev)) {
Ma Ling27185ae2009-08-24 13:50:23 +08006537 bool found = false;
Eric Anholt7d573822009-01-02 13:33:00 -08006538
Eric Anholt725e30a2009-01-22 13:01:02 -08006539 if (I915_READ(SDVOB) & SDVO_DETECTED) {
Jesse Barnesb01f2c32009-12-11 11:07:17 -08006540 DRM_DEBUG_KMS("probing SDVOB\n");
Daniel Vettereef4eac2012-03-23 23:43:35 +01006541 found = intel_sdvo_init(dev, SDVOB, true);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08006542 if (!found && SUPPORTS_INTEGRATED_HDMI(dev)) {
6543 DRM_DEBUG_KMS("probing HDMI on SDVOB\n");
Eric Anholt725e30a2009-01-22 13:01:02 -08006544 intel_hdmi_init(dev, SDVOB);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08006545 }
Ma Ling27185ae2009-08-24 13:50:23 +08006546
Jesse Barnesb01f2c32009-12-11 11:07:17 -08006547 if (!found && SUPPORTS_INTEGRATED_DP(dev)) {
6548 DRM_DEBUG_KMS("probing DP_B\n");
Keith Packarda4fc5ed2009-04-07 16:16:42 -07006549 intel_dp_init(dev, DP_B);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08006550 }
Eric Anholt725e30a2009-01-22 13:01:02 -08006551 }
Kristian Høgsberg13520b02009-03-13 15:42:14 -04006552
6553 /* Before G4X SDVOC doesn't have its own detect register */
Kristian Høgsberg13520b02009-03-13 15:42:14 -04006554
Jesse Barnesb01f2c32009-12-11 11:07:17 -08006555 if (I915_READ(SDVOB) & SDVO_DETECTED) {
6556 DRM_DEBUG_KMS("probing SDVOC\n");
Daniel Vettereef4eac2012-03-23 23:43:35 +01006557 found = intel_sdvo_init(dev, SDVOC, false);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08006558 }
Ma Ling27185ae2009-08-24 13:50:23 +08006559
6560 if (!found && (I915_READ(SDVOC) & SDVO_DETECTED)) {
6561
Jesse Barnesb01f2c32009-12-11 11:07:17 -08006562 if (SUPPORTS_INTEGRATED_HDMI(dev)) {
6563 DRM_DEBUG_KMS("probing HDMI on SDVOC\n");
Eric Anholt725e30a2009-01-22 13:01:02 -08006564 intel_hdmi_init(dev, SDVOC);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08006565 }
6566 if (SUPPORTS_INTEGRATED_DP(dev)) {
6567 DRM_DEBUG_KMS("probing DP_C\n");
Keith Packarda4fc5ed2009-04-07 16:16:42 -07006568 intel_dp_init(dev, DP_C);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08006569 }
Eric Anholt725e30a2009-01-22 13:01:02 -08006570 }
Ma Ling27185ae2009-08-24 13:50:23 +08006571
Jesse Barnesb01f2c32009-12-11 11:07:17 -08006572 if (SUPPORTS_INTEGRATED_DP(dev) &&
6573 (I915_READ(DP_D) & DP_DETECTED)) {
6574 DRM_DEBUG_KMS("probing DP_D\n");
Keith Packarda4fc5ed2009-04-07 16:16:42 -07006575 intel_dp_init(dev, DP_D);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08006576 }
Eric Anholtbad720f2009-10-22 16:11:14 -07006577 } else if (IS_GEN2(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -08006578 intel_dvo_init(dev);
6579
Zhenyu Wang103a1962009-11-27 11:44:36 +08006580 if (SUPPORTS_TV(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -08006581 intel_tv_init(dev);
6582
Chris Wilson4ef69c72010-09-09 15:14:28 +01006583 list_for_each_entry(encoder, &dev->mode_config.encoder_list, base.head) {
6584 encoder->base.possible_crtcs = encoder->crtc_mask;
6585 encoder->base.possible_clones =
6586 intel_encoder_clones(dev, encoder->clone_mask);
Jesse Barnes79e53942008-11-07 14:24:08 -08006587 }
Chris Wilson47356eb2011-01-11 17:06:04 +00006588
Chris Wilson2c7111d2011-03-29 10:40:27 +01006589 /* disable all the possible outputs/crtcs before entering KMS mode */
6590 drm_helper_disable_unused_functions(dev);
Keith Packard9fb526d2011-09-26 22:24:57 -07006591
6592 if (HAS_PCH_SPLIT(dev))
6593 ironlake_init_pch_refclk(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08006594}
6595
6596static void intel_user_framebuffer_destroy(struct drm_framebuffer *fb)
6597{
6598 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
Jesse Barnes79e53942008-11-07 14:24:08 -08006599
6600 drm_framebuffer_cleanup(fb);
Chris Wilson05394f32010-11-08 19:18:58 +00006601 drm_gem_object_unreference_unlocked(&intel_fb->obj->base);
Jesse Barnes79e53942008-11-07 14:24:08 -08006602
6603 kfree(intel_fb);
6604}
6605
6606static int intel_user_framebuffer_create_handle(struct drm_framebuffer *fb,
Chris Wilson05394f32010-11-08 19:18:58 +00006607 struct drm_file *file,
Jesse Barnes79e53942008-11-07 14:24:08 -08006608 unsigned int *handle)
6609{
6610 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
Chris Wilson05394f32010-11-08 19:18:58 +00006611 struct drm_i915_gem_object *obj = intel_fb->obj;
Jesse Barnes79e53942008-11-07 14:24:08 -08006612
Chris Wilson05394f32010-11-08 19:18:58 +00006613 return drm_gem_handle_create(file, &obj->base, handle);
Jesse Barnes79e53942008-11-07 14:24:08 -08006614}
6615
6616static const struct drm_framebuffer_funcs intel_fb_funcs = {
6617 .destroy = intel_user_framebuffer_destroy,
6618 .create_handle = intel_user_framebuffer_create_handle,
6619};
6620
Dave Airlie38651672010-03-30 05:34:13 +00006621int intel_framebuffer_init(struct drm_device *dev,
6622 struct intel_framebuffer *intel_fb,
Jesse Barnes308e5bc2011-11-14 14:51:28 -08006623 struct drm_mode_fb_cmd2 *mode_cmd,
Chris Wilson05394f32010-11-08 19:18:58 +00006624 struct drm_i915_gem_object *obj)
Jesse Barnes79e53942008-11-07 14:24:08 -08006625{
Jesse Barnes79e53942008-11-07 14:24:08 -08006626 int ret;
6627
Chris Wilson05394f32010-11-08 19:18:58 +00006628 if (obj->tiling_mode == I915_TILING_Y)
Chris Wilson57cd6502010-08-08 12:34:44 +01006629 return -EINVAL;
6630
Jesse Barnes308e5bc2011-11-14 14:51:28 -08006631 if (mode_cmd->pitches[0] & 63)
Chris Wilson57cd6502010-08-08 12:34:44 +01006632 return -EINVAL;
6633
Jesse Barnes308e5bc2011-11-14 14:51:28 -08006634 switch (mode_cmd->pixel_format) {
Ville Syrjälä04b39242011-11-17 18:05:13 +02006635 case DRM_FORMAT_RGB332:
6636 case DRM_FORMAT_RGB565:
6637 case DRM_FORMAT_XRGB8888:
Jesse Barnesb250da72012-03-07 08:49:29 -08006638 case DRM_FORMAT_XBGR8888:
Ville Syrjälä04b39242011-11-17 18:05:13 +02006639 case DRM_FORMAT_ARGB8888:
6640 case DRM_FORMAT_XRGB2101010:
6641 case DRM_FORMAT_ARGB2101010:
Jesse Barnes308e5bc2011-11-14 14:51:28 -08006642 /* RGB formats are common across chipsets */
Jesse Barnesb5626742011-06-24 12:19:27 -07006643 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +02006644 case DRM_FORMAT_YUYV:
6645 case DRM_FORMAT_UYVY:
6646 case DRM_FORMAT_YVYU:
6647 case DRM_FORMAT_VYUY:
Chris Wilson57cd6502010-08-08 12:34:44 +01006648 break;
6649 default:
Eugeni Dodonovaca25842012-01-17 15:25:45 -02006650 DRM_DEBUG_KMS("unsupported pixel format %u\n",
6651 mode_cmd->pixel_format);
Chris Wilson57cd6502010-08-08 12:34:44 +01006652 return -EINVAL;
6653 }
6654
Jesse Barnes79e53942008-11-07 14:24:08 -08006655 ret = drm_framebuffer_init(dev, &intel_fb->base, &intel_fb_funcs);
6656 if (ret) {
6657 DRM_ERROR("framebuffer init failed %d\n", ret);
6658 return ret;
6659 }
6660
6661 drm_helper_mode_fill_fb_struct(&intel_fb->base, mode_cmd);
Jesse Barnes79e53942008-11-07 14:24:08 -08006662 intel_fb->obj = obj;
Jesse Barnes79e53942008-11-07 14:24:08 -08006663 return 0;
6664}
6665
Jesse Barnes79e53942008-11-07 14:24:08 -08006666static struct drm_framebuffer *
6667intel_user_framebuffer_create(struct drm_device *dev,
6668 struct drm_file *filp,
Jesse Barnes308e5bc2011-11-14 14:51:28 -08006669 struct drm_mode_fb_cmd2 *mode_cmd)
Jesse Barnes79e53942008-11-07 14:24:08 -08006670{
Chris Wilson05394f32010-11-08 19:18:58 +00006671 struct drm_i915_gem_object *obj;
Jesse Barnes79e53942008-11-07 14:24:08 -08006672
Jesse Barnes308e5bc2011-11-14 14:51:28 -08006673 obj = to_intel_bo(drm_gem_object_lookup(dev, filp,
6674 mode_cmd->handles[0]));
Chris Wilsonc8725222011-02-19 11:31:06 +00006675 if (&obj->base == NULL)
Chris Wilsoncce13ff2010-08-08 13:36:38 +01006676 return ERR_PTR(-ENOENT);
Jesse Barnes79e53942008-11-07 14:24:08 -08006677
Chris Wilsond2dff872011-04-19 08:36:26 +01006678 return intel_framebuffer_create(dev, mode_cmd, obj);
Jesse Barnes79e53942008-11-07 14:24:08 -08006679}
6680
Jesse Barnes79e53942008-11-07 14:24:08 -08006681static const struct drm_mode_config_funcs intel_mode_funcs = {
Jesse Barnes79e53942008-11-07 14:24:08 -08006682 .fb_create = intel_user_framebuffer_create,
Dave Airlieeb1f8e42010-05-07 06:42:51 +00006683 .output_poll_changed = intel_fb_output_poll_changed,
Jesse Barnes79e53942008-11-07 14:24:08 -08006684};
6685
Jesse Barnese70236a2009-09-21 10:42:27 -07006686/* Set up chip specific display functions */
6687static void intel_init_display(struct drm_device *dev)
6688{
6689 struct drm_i915_private *dev_priv = dev->dev_private;
6690
6691 /* We always want a DPMS function */
Eric Anholtf564048e2011-03-30 13:01:02 -07006692 if (HAS_PCH_SPLIT(dev)) {
Adam Jacksonf2b115e2009-12-03 17:14:42 -05006693 dev_priv->display.dpms = ironlake_crtc_dpms;
Eric Anholtf564048e2011-03-30 13:01:02 -07006694 dev_priv->display.crtc_mode_set = ironlake_crtc_mode_set;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01006695 dev_priv->display.off = ironlake_crtc_off;
Jesse Barnes17638cd2011-06-24 12:19:23 -07006696 dev_priv->display.update_plane = ironlake_update_plane;
Eric Anholtf564048e2011-03-30 13:01:02 -07006697 } else {
Jesse Barnese70236a2009-09-21 10:42:27 -07006698 dev_priv->display.dpms = i9xx_crtc_dpms;
Eric Anholtf564048e2011-03-30 13:01:02 -07006699 dev_priv->display.crtc_mode_set = i9xx_crtc_mode_set;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01006700 dev_priv->display.off = i9xx_crtc_off;
Jesse Barnes17638cd2011-06-24 12:19:23 -07006701 dev_priv->display.update_plane = i9xx_update_plane;
Eric Anholtf564048e2011-03-30 13:01:02 -07006702 }
Jesse Barnese70236a2009-09-21 10:42:27 -07006703
Jesse Barnese70236a2009-09-21 10:42:27 -07006704 /* Returns the core display clock speed */
Jesse Barnes25eb05fc2012-03-28 13:39:23 -07006705 if (IS_VALLEYVIEW(dev))
6706 dev_priv->display.get_display_clock_speed =
6707 valleyview_get_display_clock_speed;
6708 else if (IS_I945G(dev) || (IS_G33(dev) && !IS_PINEVIEW_M(dev)))
Jesse Barnese70236a2009-09-21 10:42:27 -07006709 dev_priv->display.get_display_clock_speed =
6710 i945_get_display_clock_speed;
6711 else if (IS_I915G(dev))
6712 dev_priv->display.get_display_clock_speed =
6713 i915_get_display_clock_speed;
Adam Jacksonf2b115e2009-12-03 17:14:42 -05006714 else if (IS_I945GM(dev) || IS_845G(dev) || IS_PINEVIEW_M(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -07006715 dev_priv->display.get_display_clock_speed =
6716 i9xx_misc_get_display_clock_speed;
6717 else if (IS_I915GM(dev))
6718 dev_priv->display.get_display_clock_speed =
6719 i915gm_get_display_clock_speed;
6720 else if (IS_I865G(dev))
6721 dev_priv->display.get_display_clock_speed =
6722 i865_get_display_clock_speed;
Daniel Vetterf0f8a9c2009-09-15 22:57:33 +02006723 else if (IS_I85X(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -07006724 dev_priv->display.get_display_clock_speed =
6725 i855_get_display_clock_speed;
6726 else /* 852, 830 */
6727 dev_priv->display.get_display_clock_speed =
6728 i830_get_display_clock_speed;
6729
Zhenyu Wang7f8a8562010-04-01 13:07:53 +08006730 if (HAS_PCH_SPLIT(dev)) {
Chris Wilsonf00a3dd2010-10-21 14:57:17 +01006731 if (IS_GEN5(dev)) {
Jesse Barnes674cf962011-04-28 14:27:04 -07006732 dev_priv->display.fdi_link_train = ironlake_fdi_link_train;
Wu Fengguange0dac652011-09-05 14:25:34 +08006733 dev_priv->display.write_eld = ironlake_write_eld;
Yuanhan Liu13982612010-12-15 15:42:31 +08006734 } else if (IS_GEN6(dev)) {
Jesse Barnes674cf962011-04-28 14:27:04 -07006735 dev_priv->display.fdi_link_train = gen6_fdi_link_train;
Wu Fengguange0dac652011-09-05 14:25:34 +08006736 dev_priv->display.write_eld = ironlake_write_eld;
Jesse Barnes357555c2011-04-28 15:09:55 -07006737 } else if (IS_IVYBRIDGE(dev)) {
6738 /* FIXME: detect B0+ stepping and use auto training */
6739 dev_priv->display.fdi_link_train = ivb_manual_fdi_link_train;
Wu Fengguange0dac652011-09-05 14:25:34 +08006740 dev_priv->display.write_eld = ironlake_write_eld;
Eugeni Dodonovc82e4d22012-05-09 15:37:21 -03006741 } else if (IS_HASWELL(dev)) {
6742 dev_priv->display.fdi_link_train = hsw_fdi_link_train;
Eugeni Dodonov4abb3c82012-05-09 15:37:22 -03006743 dev_priv->display.write_eld = ironlake_write_eld;
Zhenyu Wang7f8a8562010-04-01 13:07:53 +08006744 } else
6745 dev_priv->display.update_wm = NULL;
Jesse Barnesceb04242012-03-28 13:39:22 -07006746 } else if (IS_VALLEYVIEW(dev)) {
Jesse Barnes575155a2012-03-28 13:39:37 -07006747 dev_priv->display.force_wake_get = vlv_force_wake_get;
6748 dev_priv->display.force_wake_put = vlv_force_wake_put;
Jesse Barnes6067aae2011-04-28 15:04:31 -07006749 } else if (IS_G4X(dev)) {
Wu Fengguange0dac652011-09-05 14:25:34 +08006750 dev_priv->display.write_eld = g4x_write_eld;
Jesse Barnese70236a2009-09-21 10:42:27 -07006751 }
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006752
6753 /* Default just returns -ENODEV to indicate unsupported */
6754 dev_priv->display.queue_flip = intel_default_queue_flip;
6755
6756 switch (INTEL_INFO(dev)->gen) {
6757 case 2:
6758 dev_priv->display.queue_flip = intel_gen2_queue_flip;
6759 break;
6760
6761 case 3:
6762 dev_priv->display.queue_flip = intel_gen3_queue_flip;
6763 break;
6764
6765 case 4:
6766 case 5:
6767 dev_priv->display.queue_flip = intel_gen4_queue_flip;
6768 break;
6769
6770 case 6:
6771 dev_priv->display.queue_flip = intel_gen6_queue_flip;
6772 break;
Jesse Barnes7c9017e2011-06-16 12:18:54 -07006773 case 7:
6774 dev_priv->display.queue_flip = intel_gen7_queue_flip;
6775 break;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006776 }
Jesse Barnese70236a2009-09-21 10:42:27 -07006777}
6778
Jesse Barnesb690e962010-07-19 13:53:12 -07006779/*
6780 * Some BIOSes insist on assuming the GPU's pipe A is enabled at suspend,
6781 * resume, or other times. This quirk makes sure that's the case for
6782 * affected systems.
6783 */
Akshay Joshi0206e352011-08-16 15:34:10 -04006784static void quirk_pipea_force(struct drm_device *dev)
Jesse Barnesb690e962010-07-19 13:53:12 -07006785{
6786 struct drm_i915_private *dev_priv = dev->dev_private;
6787
6788 dev_priv->quirks |= QUIRK_PIPEA_FORCE;
Daniel Vetterbc0daf42012-04-01 13:16:49 +02006789 DRM_INFO("applying pipe a force quirk\n");
Jesse Barnesb690e962010-07-19 13:53:12 -07006790}
6791
Keith Packard435793d2011-07-12 14:56:22 -07006792/*
6793 * Some machines (Lenovo U160) do not work with SSC on LVDS for some reason
6794 */
6795static void quirk_ssc_force_disable(struct drm_device *dev)
6796{
6797 struct drm_i915_private *dev_priv = dev->dev_private;
6798 dev_priv->quirks |= QUIRK_LVDS_SSC_DISABLE;
Daniel Vetterbc0daf42012-04-01 13:16:49 +02006799 DRM_INFO("applying lvds SSC disable quirk\n");
Keith Packard435793d2011-07-12 14:56:22 -07006800}
6801
Carsten Emde4dca20e2012-03-15 15:56:26 +01006802/*
Carsten Emde5a15ab52012-03-15 15:56:27 +01006803 * A machine (e.g. Acer Aspire 5734Z) may need to invert the panel backlight
6804 * brightness value
Carsten Emde4dca20e2012-03-15 15:56:26 +01006805 */
6806static void quirk_invert_brightness(struct drm_device *dev)
6807{
6808 struct drm_i915_private *dev_priv = dev->dev_private;
6809 dev_priv->quirks |= QUIRK_INVERT_BRIGHTNESS;
Daniel Vetterbc0daf42012-04-01 13:16:49 +02006810 DRM_INFO("applying inverted panel brightness quirk\n");
Jesse Barnesb690e962010-07-19 13:53:12 -07006811}
6812
6813struct intel_quirk {
6814 int device;
6815 int subsystem_vendor;
6816 int subsystem_device;
6817 void (*hook)(struct drm_device *dev);
6818};
6819
Ben Widawskyc43b5632012-04-16 14:07:40 -07006820static struct intel_quirk intel_quirks[] = {
Jesse Barnesb690e962010-07-19 13:53:12 -07006821 /* HP Mini needs pipe A force quirk (LP: #322104) */
Akshay Joshi0206e352011-08-16 15:34:10 -04006822 { 0x27ae, 0x103c, 0x361a, quirk_pipea_force },
Jesse Barnesb690e962010-07-19 13:53:12 -07006823
6824 /* Thinkpad R31 needs pipe A force quirk */
6825 { 0x3577, 0x1014, 0x0505, quirk_pipea_force },
6826 /* Toshiba Protege R-205, S-209 needs pipe A force quirk */
6827 { 0x2592, 0x1179, 0x0001, quirk_pipea_force },
6828
6829 /* ThinkPad X30 needs pipe A force quirk (LP: #304614) */
6830 { 0x3577, 0x1014, 0x0513, quirk_pipea_force },
6831 /* ThinkPad X40 needs pipe A force quirk */
6832
6833 /* ThinkPad T60 needs pipe A force quirk (bug #16494) */
6834 { 0x2782, 0x17aa, 0x201a, quirk_pipea_force },
6835
6836 /* 855 & before need to leave pipe A & dpll A up */
6837 { 0x3582, PCI_ANY_ID, PCI_ANY_ID, quirk_pipea_force },
6838 { 0x2562, PCI_ANY_ID, PCI_ANY_ID, quirk_pipea_force },
Keith Packard435793d2011-07-12 14:56:22 -07006839
6840 /* Lenovo U160 cannot use SSC on LVDS */
6841 { 0x0046, 0x17aa, 0x3920, quirk_ssc_force_disable },
Michel Alexandre Salim070d3292011-07-28 18:52:06 +02006842
6843 /* Sony Vaio Y cannot use SSC on LVDS */
6844 { 0x0046, 0x104d, 0x9076, quirk_ssc_force_disable },
Carsten Emde5a15ab52012-03-15 15:56:27 +01006845
6846 /* Acer Aspire 5734Z must invert backlight brightness */
6847 { 0x2a42, 0x1025, 0x0459, quirk_invert_brightness },
Jesse Barnesb690e962010-07-19 13:53:12 -07006848};
6849
6850static void intel_init_quirks(struct drm_device *dev)
6851{
6852 struct pci_dev *d = dev->pdev;
6853 int i;
6854
6855 for (i = 0; i < ARRAY_SIZE(intel_quirks); i++) {
6856 struct intel_quirk *q = &intel_quirks[i];
6857
6858 if (d->device == q->device &&
6859 (d->subsystem_vendor == q->subsystem_vendor ||
6860 q->subsystem_vendor == PCI_ANY_ID) &&
6861 (d->subsystem_device == q->subsystem_device ||
6862 q->subsystem_device == PCI_ANY_ID))
6863 q->hook(dev);
6864 }
6865}
6866
Jesse Barnes9cce37f2010-08-13 15:11:26 -07006867/* Disable the VGA plane that we never use */
6868static void i915_disable_vga(struct drm_device *dev)
6869{
6870 struct drm_i915_private *dev_priv = dev->dev_private;
6871 u8 sr1;
6872 u32 vga_reg;
6873
6874 if (HAS_PCH_SPLIT(dev))
6875 vga_reg = CPU_VGACNTRL;
6876 else
6877 vga_reg = VGACNTRL;
6878
6879 vga_get_uninterruptible(dev->pdev, VGA_RSRC_LEGACY_IO);
Jesse Barnes3fdcf432012-04-06 11:46:27 -07006880 outb(SR01, VGA_SR_INDEX);
Jesse Barnes9cce37f2010-08-13 15:11:26 -07006881 sr1 = inb(VGA_SR_DATA);
6882 outb(sr1 | 1<<5, VGA_SR_DATA);
6883 vga_put(dev->pdev, VGA_RSRC_LEGACY_IO);
6884 udelay(300);
6885
6886 I915_WRITE(vga_reg, VGA_DISP_DISABLE);
6887 POSTING_READ(vga_reg);
6888}
6889
Jesse Barnesf82cfb62012-04-11 09:23:35 -07006890static void ivb_pch_pwm_override(struct drm_device *dev)
6891{
6892 struct drm_i915_private *dev_priv = dev->dev_private;
6893
6894 /*
6895 * IVB has CPU eDP backlight regs too, set things up to let the
6896 * PCH regs control the backlight
6897 */
Daniel Vetter7cf41602012-06-05 10:07:09 +02006898 I915_WRITE(BLC_PWM_CPU_CTL2, BLM_PWM_ENABLE);
Jesse Barnesf82cfb62012-04-11 09:23:35 -07006899 I915_WRITE(BLC_PWM_CPU_CTL, 0);
Daniel Vetter7cf41602012-06-05 10:07:09 +02006900 I915_WRITE(BLC_PWM_PCH_CTL1, BLM_PCH_PWM_ENABLE | BLM_PCH_OVERRIDE_ENABLE);
Jesse Barnesf82cfb62012-04-11 09:23:35 -07006901}
6902
Daniel Vetterf8175862012-04-10 15:50:11 +02006903void intel_modeset_init_hw(struct drm_device *dev)
6904{
6905 struct drm_i915_private *dev_priv = dev->dev_private;
6906
6907 intel_init_clock_gating(dev);
6908
6909 if (IS_IRONLAKE_M(dev)) {
6910 ironlake_enable_drps(dev);
Chris Wilson1833b132012-05-09 11:56:28 +01006911 ironlake_enable_rc6(dev);
Daniel Vetterf8175862012-04-10 15:50:11 +02006912 intel_init_emon(dev);
6913 }
6914
Jesse Barnesb6834bd2012-04-11 09:23:33 -07006915 if ((IS_GEN6(dev) || IS_GEN7(dev)) && !IS_VALLEYVIEW(dev)) {
Daniel Vetterf8175862012-04-10 15:50:11 +02006916 gen6_enable_rps(dev_priv);
6917 gen6_update_ring_freq(dev_priv);
6918 }
Jesse Barnesf82cfb62012-04-11 09:23:35 -07006919
6920 if (IS_IVYBRIDGE(dev))
6921 ivb_pch_pwm_override(dev);
Daniel Vetterf8175862012-04-10 15:50:11 +02006922}
6923
Jesse Barnes79e53942008-11-07 14:24:08 -08006924void intel_modeset_init(struct drm_device *dev)
6925{
Jesse Barnes652c3932009-08-17 13:31:43 -07006926 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesb840d907f2011-12-13 13:19:38 -08006927 int i, ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08006928
6929 drm_mode_config_init(dev);
6930
6931 dev->mode_config.min_width = 0;
6932 dev->mode_config.min_height = 0;
6933
Dave Airlie019d96c2011-09-29 16:20:42 +01006934 dev->mode_config.preferred_depth = 24;
6935 dev->mode_config.prefer_shadow = 1;
6936
Laurent Pincharte6ecefa2012-05-17 13:27:23 +02006937 dev->mode_config.funcs = &intel_mode_funcs;
Jesse Barnes79e53942008-11-07 14:24:08 -08006938
Jesse Barnesb690e962010-07-19 13:53:12 -07006939 intel_init_quirks(dev);
6940
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006941 intel_init_pm(dev);
6942
Eugeni Dodonov45244b82012-05-09 15:37:20 -03006943 intel_prepare_ddi(dev);
6944
Jesse Barnese70236a2009-09-21 10:42:27 -07006945 intel_init_display(dev);
6946
Chris Wilsona6c45cf2010-09-17 00:32:17 +01006947 if (IS_GEN2(dev)) {
6948 dev->mode_config.max_width = 2048;
6949 dev->mode_config.max_height = 2048;
6950 } else if (IS_GEN3(dev)) {
Keith Packard5e4d6fa2009-07-12 23:53:17 -07006951 dev->mode_config.max_width = 4096;
6952 dev->mode_config.max_height = 4096;
Jesse Barnes79e53942008-11-07 14:24:08 -08006953 } else {
Chris Wilsona6c45cf2010-09-17 00:32:17 +01006954 dev->mode_config.max_width = 8192;
6955 dev->mode_config.max_height = 8192;
Jesse Barnes79e53942008-11-07 14:24:08 -08006956 }
Daniel Vetterdd2757f2012-06-07 15:55:57 +02006957 dev->mode_config.fb_base = dev_priv->mm.gtt_base_addr;
Jesse Barnes79e53942008-11-07 14:24:08 -08006958
Zhao Yakui28c97732009-10-09 11:39:41 +08006959 DRM_DEBUG_KMS("%d display pipe%s available.\n",
Dave Airliea3524f12010-06-06 18:59:41 +10006960 dev_priv->num_pipe, dev_priv->num_pipe > 1 ? "s" : "");
Jesse Barnes79e53942008-11-07 14:24:08 -08006961
Dave Airliea3524f12010-06-06 18:59:41 +10006962 for (i = 0; i < dev_priv->num_pipe; i++) {
Jesse Barnes79e53942008-11-07 14:24:08 -08006963 intel_crtc_init(dev, i);
Jesse Barnes00c2064b2012-01-13 15:48:39 -08006964 ret = intel_plane_init(dev, i);
6965 if (ret)
6966 DRM_DEBUG_KMS("plane %d init failed: %d\n", i, ret);
Jesse Barnes79e53942008-11-07 14:24:08 -08006967 }
6968
Jesse Barnesee7b9f92012-04-20 17:11:53 +01006969 intel_pch_pll_init(dev);
6970
Jesse Barnes9cce37f2010-08-13 15:11:26 -07006971 /* Just disable it once at startup */
6972 i915_disable_vga(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08006973 intel_setup_outputs(dev);
Jesse Barnes652c3932009-08-17 13:31:43 -07006974
Jesse Barnes652c3932009-08-17 13:31:43 -07006975 INIT_WORK(&dev_priv->idle_work, intel_idle_update);
6976 setup_timer(&dev_priv->idle_timer, intel_gpu_idle_timer,
6977 (unsigned long)dev);
Chris Wilson2c7111d2011-03-29 10:40:27 +01006978}
6979
6980void intel_modeset_gem_init(struct drm_device *dev)
6981{
Chris Wilson1833b132012-05-09 11:56:28 +01006982 intel_modeset_init_hw(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +02006983
6984 intel_setup_overlay(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08006985}
6986
6987void intel_modeset_cleanup(struct drm_device *dev)
6988{
Jesse Barnes652c3932009-08-17 13:31:43 -07006989 struct drm_i915_private *dev_priv = dev->dev_private;
6990 struct drm_crtc *crtc;
6991 struct intel_crtc *intel_crtc;
6992
Keith Packardf87ea762010-10-03 19:36:26 -07006993 drm_kms_helper_poll_fini(dev);
Jesse Barnes652c3932009-08-17 13:31:43 -07006994 mutex_lock(&dev->struct_mutex);
6995
Jesse Barnes723bfd72010-10-07 16:01:13 -07006996 intel_unregister_dsm_handler();
6997
6998
Jesse Barnes652c3932009-08-17 13:31:43 -07006999 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
7000 /* Skip inactive CRTCs */
7001 if (!crtc->fb)
7002 continue;
7003
7004 intel_crtc = to_intel_crtc(crtc);
Daniel Vetter3dec0092010-08-20 21:40:52 +02007005 intel_increase_pllclock(crtc);
Jesse Barnes652c3932009-08-17 13:31:43 -07007006 }
7007
Chris Wilson973d04f2011-07-08 12:22:37 +01007008 intel_disable_fbc(dev);
Jesse Barnese70236a2009-09-21 10:42:27 -07007009
Jesse Barnesf97108d2010-01-29 11:27:07 -08007010 if (IS_IRONLAKE_M(dev))
7011 ironlake_disable_drps(dev);
Jesse Barnesb6834bd2012-04-11 09:23:33 -07007012 if ((IS_GEN6(dev) || IS_GEN7(dev)) && !IS_VALLEYVIEW(dev))
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08007013 gen6_disable_rps(dev);
Jesse Barnesf97108d2010-01-29 11:27:07 -08007014
Jesse Barnesd5bb0812011-01-05 12:01:26 -08007015 if (IS_IRONLAKE_M(dev))
7016 ironlake_disable_rc6(dev);
Chris Wilson0cdab212010-12-05 17:27:06 +00007017
Jesse Barnes57f350b2012-03-28 13:39:25 -07007018 if (IS_VALLEYVIEW(dev))
7019 vlv_init_dpio(dev);
7020
Kristian Høgsberg69341a52009-11-11 12:19:17 -05007021 mutex_unlock(&dev->struct_mutex);
7022
Daniel Vetter6c0d93502010-08-20 18:26:46 +02007023 /* Disable the irq before mode object teardown, for the irq might
7024 * enqueue unpin/hotplug work. */
7025 drm_irq_uninstall(dev);
7026 cancel_work_sync(&dev_priv->hotplug_work);
Daniel Vetter6fdd4d92011-09-08 14:00:22 +02007027 cancel_work_sync(&dev_priv->rps_work);
Daniel Vetter6c0d93502010-08-20 18:26:46 +02007028
Chris Wilson1630fe72011-07-08 12:22:42 +01007029 /* flush any delayed tasks or pending work */
7030 flush_scheduled_work();
7031
Daniel Vetter3dec0092010-08-20 21:40:52 +02007032 /* Shut off idle work before the crtcs get freed. */
7033 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
7034 intel_crtc = to_intel_crtc(crtc);
7035 del_timer_sync(&intel_crtc->idle_timer);
7036 }
7037 del_timer_sync(&dev_priv->idle_timer);
7038 cancel_work_sync(&dev_priv->idle_work);
7039
Jesse Barnes79e53942008-11-07 14:24:08 -08007040 drm_mode_config_cleanup(dev);
7041}
7042
Dave Airlie28d52042009-09-21 14:33:58 +10007043/*
Zhenyu Wangf1c79df2010-03-30 14:39:29 +08007044 * Return which encoder is currently attached for connector.
7045 */
Chris Wilsondf0e9242010-09-09 16:20:55 +01007046struct drm_encoder *intel_best_encoder(struct drm_connector *connector)
Jesse Barnes79e53942008-11-07 14:24:08 -08007047{
Chris Wilsondf0e9242010-09-09 16:20:55 +01007048 return &intel_attached_encoder(connector)->base;
7049}
Jesse Barnes79e53942008-11-07 14:24:08 -08007050
Chris Wilsondf0e9242010-09-09 16:20:55 +01007051void intel_connector_attach_encoder(struct intel_connector *connector,
7052 struct intel_encoder *encoder)
7053{
7054 connector->encoder = encoder;
7055 drm_mode_connector_attach_encoder(&connector->base,
7056 &encoder->base);
Jesse Barnes79e53942008-11-07 14:24:08 -08007057}
Dave Airlie28d52042009-09-21 14:33:58 +10007058
7059/*
7060 * set vga decode state - true == enable VGA decode
7061 */
7062int intel_modeset_vga_set_state(struct drm_device *dev, bool state)
7063{
7064 struct drm_i915_private *dev_priv = dev->dev_private;
7065 u16 gmch_ctrl;
7066
7067 pci_read_config_word(dev_priv->bridge_dev, INTEL_GMCH_CTRL, &gmch_ctrl);
7068 if (state)
7069 gmch_ctrl &= ~INTEL_GMCH_VGA_DISABLE;
7070 else
7071 gmch_ctrl |= INTEL_GMCH_VGA_DISABLE;
7072 pci_write_config_word(dev_priv->bridge_dev, INTEL_GMCH_CTRL, gmch_ctrl);
7073 return 0;
7074}
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00007075
7076#ifdef CONFIG_DEBUG_FS
7077#include <linux/seq_file.h>
7078
7079struct intel_display_error_state {
7080 struct intel_cursor_error_state {
7081 u32 control;
7082 u32 position;
7083 u32 base;
7084 u32 size;
7085 } cursor[2];
7086
7087 struct intel_pipe_error_state {
7088 u32 conf;
7089 u32 source;
7090
7091 u32 htotal;
7092 u32 hblank;
7093 u32 hsync;
7094 u32 vtotal;
7095 u32 vblank;
7096 u32 vsync;
7097 } pipe[2];
7098
7099 struct intel_plane_error_state {
7100 u32 control;
7101 u32 stride;
7102 u32 size;
7103 u32 pos;
7104 u32 addr;
7105 u32 surface;
7106 u32 tile_offset;
7107 } plane[2];
7108};
7109
7110struct intel_display_error_state *
7111intel_display_capture_error_state(struct drm_device *dev)
7112{
Akshay Joshi0206e352011-08-16 15:34:10 -04007113 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00007114 struct intel_display_error_state *error;
7115 int i;
7116
7117 error = kmalloc(sizeof(*error), GFP_ATOMIC);
7118 if (error == NULL)
7119 return NULL;
7120
7121 for (i = 0; i < 2; i++) {
7122 error->cursor[i].control = I915_READ(CURCNTR(i));
7123 error->cursor[i].position = I915_READ(CURPOS(i));
7124 error->cursor[i].base = I915_READ(CURBASE(i));
7125
7126 error->plane[i].control = I915_READ(DSPCNTR(i));
7127 error->plane[i].stride = I915_READ(DSPSTRIDE(i));
7128 error->plane[i].size = I915_READ(DSPSIZE(i));
Akshay Joshi0206e352011-08-16 15:34:10 -04007129 error->plane[i].pos = I915_READ(DSPPOS(i));
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00007130 error->plane[i].addr = I915_READ(DSPADDR(i));
7131 if (INTEL_INFO(dev)->gen >= 4) {
7132 error->plane[i].surface = I915_READ(DSPSURF(i));
7133 error->plane[i].tile_offset = I915_READ(DSPTILEOFF(i));
7134 }
7135
7136 error->pipe[i].conf = I915_READ(PIPECONF(i));
7137 error->pipe[i].source = I915_READ(PIPESRC(i));
7138 error->pipe[i].htotal = I915_READ(HTOTAL(i));
7139 error->pipe[i].hblank = I915_READ(HBLANK(i));
7140 error->pipe[i].hsync = I915_READ(HSYNC(i));
7141 error->pipe[i].vtotal = I915_READ(VTOTAL(i));
7142 error->pipe[i].vblank = I915_READ(VBLANK(i));
7143 error->pipe[i].vsync = I915_READ(VSYNC(i));
7144 }
7145
7146 return error;
7147}
7148
7149void
7150intel_display_print_error_state(struct seq_file *m,
7151 struct drm_device *dev,
7152 struct intel_display_error_state *error)
7153{
7154 int i;
7155
7156 for (i = 0; i < 2; i++) {
7157 seq_printf(m, "Pipe [%d]:\n", i);
7158 seq_printf(m, " CONF: %08x\n", error->pipe[i].conf);
7159 seq_printf(m, " SRC: %08x\n", error->pipe[i].source);
7160 seq_printf(m, " HTOTAL: %08x\n", error->pipe[i].htotal);
7161 seq_printf(m, " HBLANK: %08x\n", error->pipe[i].hblank);
7162 seq_printf(m, " HSYNC: %08x\n", error->pipe[i].hsync);
7163 seq_printf(m, " VTOTAL: %08x\n", error->pipe[i].vtotal);
7164 seq_printf(m, " VBLANK: %08x\n", error->pipe[i].vblank);
7165 seq_printf(m, " VSYNC: %08x\n", error->pipe[i].vsync);
7166
7167 seq_printf(m, "Plane [%d]:\n", i);
7168 seq_printf(m, " CNTR: %08x\n", error->plane[i].control);
7169 seq_printf(m, " STRIDE: %08x\n", error->plane[i].stride);
7170 seq_printf(m, " SIZE: %08x\n", error->plane[i].size);
7171 seq_printf(m, " POS: %08x\n", error->plane[i].pos);
7172 seq_printf(m, " ADDR: %08x\n", error->plane[i].addr);
7173 if (INTEL_INFO(dev)->gen >= 4) {
7174 seq_printf(m, " SURF: %08x\n", error->plane[i].surface);
7175 seq_printf(m, " TILEOFF: %08x\n", error->plane[i].tile_offset);
7176 }
7177
7178 seq_printf(m, "Cursor [%d]:\n", i);
7179 seq_printf(m, " CNTR: %08x\n", error->cursor[i].control);
7180 seq_printf(m, " POS: %08x\n", error->cursor[i].position);
7181 seq_printf(m, " BASE: %08x\n", error->cursor[i].base);
7182 }
7183}
7184#endif