blob: aa647c654f85006f8953117df88281415833bb08 [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
387static void intel_dpio_write(struct drm_i915_private *dev_priv, int reg,
388 u32 val)
389{
390 unsigned long flags;
391
392 spin_lock_irqsave(&dev_priv->dpio_lock, flags);
393 if (wait_for_atomic_us((I915_READ(DPIO_PKT) & DPIO_BUSY) == 0, 100)) {
394 DRM_ERROR("DPIO idle wait timed out\n");
395 goto out_unlock;
396 }
397
398 I915_WRITE(DPIO_DATA, val);
399 I915_WRITE(DPIO_REG, reg);
400 I915_WRITE(DPIO_PKT, DPIO_RID | DPIO_OP_WRITE | DPIO_PORTID |
401 DPIO_BYTE);
402 if (wait_for_atomic_us((I915_READ(DPIO_PKT) & DPIO_BUSY) == 0, 100))
403 DRM_ERROR("DPIO write wait timed out\n");
404
405out_unlock:
406 spin_unlock_irqrestore(&dev_priv->dpio_lock, flags);
407}
408
409static void vlv_init_dpio(struct drm_device *dev)
410{
411 struct drm_i915_private *dev_priv = dev->dev_private;
412
413 /* Reset the DPIO config */
414 I915_WRITE(DPIO_CTL, 0);
415 POSTING_READ(DPIO_CTL);
416 I915_WRITE(DPIO_CTL, 1);
417 POSTING_READ(DPIO_CTL);
418}
419
Daniel Vetter618563e2012-04-01 13:38:50 +0200420static int intel_dual_link_lvds_callback(const struct dmi_system_id *id)
421{
422 DRM_INFO("Forcing lvds to dual link mode on %s\n", id->ident);
423 return 1;
424}
425
426static const struct dmi_system_id intel_dual_link_lvds[] = {
427 {
428 .callback = intel_dual_link_lvds_callback,
429 .ident = "Apple MacBook Pro (Core i5/i7 Series)",
430 .matches = {
431 DMI_MATCH(DMI_SYS_VENDOR, "Apple Inc."),
432 DMI_MATCH(DMI_PRODUCT_NAME, "MacBookPro8,2"),
433 },
434 },
435 { } /* terminating entry */
436};
437
Takashi Iwaib0354382012-03-20 13:07:05 +0100438static bool is_dual_link_lvds(struct drm_i915_private *dev_priv,
439 unsigned int reg)
440{
441 unsigned int val;
442
Takashi Iwai121d5272012-03-20 13:07:06 +0100443 /* use the module option value if specified */
444 if (i915_lvds_channel_mode > 0)
445 return i915_lvds_channel_mode == 2;
446
Daniel Vetter618563e2012-04-01 13:38:50 +0200447 if (dmi_check_system(intel_dual_link_lvds))
448 return true;
449
Takashi Iwaib0354382012-03-20 13:07:05 +0100450 if (dev_priv->lvds_val)
451 val = dev_priv->lvds_val;
452 else {
453 /* BIOS should set the proper LVDS register value at boot, but
454 * in reality, it doesn't set the value when the lid is closed;
455 * we need to check "the value to be set" in VBT when LVDS
456 * register is uninitialized.
457 */
458 val = I915_READ(reg);
459 if (!(val & ~LVDS_DETECTED))
460 val = dev_priv->bios_lvds_val;
461 dev_priv->lvds_val = val;
462 }
463 return (val & LVDS_CLKB_POWER_MASK) == LVDS_CLKB_POWER_UP;
464}
465
Chris Wilson1b894b52010-12-14 20:04:54 +0000466static const intel_limit_t *intel_ironlake_limit(struct drm_crtc *crtc,
467 int refclk)
Zhenyu Wang2c072452009-06-05 15:38:42 +0800468{
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800469 struct drm_device *dev = crtc->dev;
470 struct drm_i915_private *dev_priv = dev->dev_private;
Zhenyu Wang2c072452009-06-05 15:38:42 +0800471 const intel_limit_t *limit;
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800472
473 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
Takashi Iwaib0354382012-03-20 13:07:05 +0100474 if (is_dual_link_lvds(dev_priv, PCH_LVDS)) {
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800475 /* LVDS dual channel */
Chris Wilson1b894b52010-12-14 20:04:54 +0000476 if (refclk == 100000)
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800477 limit = &intel_limits_ironlake_dual_lvds_100m;
478 else
479 limit = &intel_limits_ironlake_dual_lvds;
480 } else {
Chris Wilson1b894b52010-12-14 20:04:54 +0000481 if (refclk == 100000)
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800482 limit = &intel_limits_ironlake_single_lvds_100m;
483 else
484 limit = &intel_limits_ironlake_single_lvds;
485 }
486 } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT) ||
Zhao Yakui45476682009-12-31 16:06:04 +0800487 HAS_eDP)
488 limit = &intel_limits_ironlake_display_port;
Zhenyu Wang2c072452009-06-05 15:38:42 +0800489 else
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800490 limit = &intel_limits_ironlake_dac;
Zhenyu Wang2c072452009-06-05 15:38:42 +0800491
492 return limit;
493}
494
Ma Ling044c7c42009-03-18 20:13:23 +0800495static const intel_limit_t *intel_g4x_limit(struct drm_crtc *crtc)
496{
497 struct drm_device *dev = crtc->dev;
498 struct drm_i915_private *dev_priv = dev->dev_private;
499 const intel_limit_t *limit;
500
501 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
Takashi Iwaib0354382012-03-20 13:07:05 +0100502 if (is_dual_link_lvds(dev_priv, LVDS))
Ma Ling044c7c42009-03-18 20:13:23 +0800503 /* LVDS with dual channel */
Keith Packarde4b36692009-06-05 19:22:17 -0700504 limit = &intel_limits_g4x_dual_channel_lvds;
Ma Ling044c7c42009-03-18 20:13:23 +0800505 else
506 /* LVDS with dual channel */
Keith Packarde4b36692009-06-05 19:22:17 -0700507 limit = &intel_limits_g4x_single_channel_lvds;
Ma Ling044c7c42009-03-18 20:13:23 +0800508 } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI) ||
509 intel_pipe_has_type(crtc, INTEL_OUTPUT_ANALOG)) {
Keith Packarde4b36692009-06-05 19:22:17 -0700510 limit = &intel_limits_g4x_hdmi;
Ma Ling044c7c42009-03-18 20:13:23 +0800511 } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_SDVO)) {
Keith Packarde4b36692009-06-05 19:22:17 -0700512 limit = &intel_limits_g4x_sdvo;
Akshay Joshi0206e352011-08-16 15:34:10 -0400513 } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT)) {
Keith Packarde4b36692009-06-05 19:22:17 -0700514 limit = &intel_limits_g4x_display_port;
Ma Ling044c7c42009-03-18 20:13:23 +0800515 } else /* The option is for other outputs */
Keith Packarde4b36692009-06-05 19:22:17 -0700516 limit = &intel_limits_i9xx_sdvo;
Ma Ling044c7c42009-03-18 20:13:23 +0800517
518 return limit;
519}
520
Chris Wilson1b894b52010-12-14 20:04:54 +0000521static const intel_limit_t *intel_limit(struct drm_crtc *crtc, int refclk)
Jesse Barnes79e53942008-11-07 14:24:08 -0800522{
523 struct drm_device *dev = crtc->dev;
524 const intel_limit_t *limit;
525
Eric Anholtbad720f2009-10-22 16:11:14 -0700526 if (HAS_PCH_SPLIT(dev))
Chris Wilson1b894b52010-12-14 20:04:54 +0000527 limit = intel_ironlake_limit(crtc, refclk);
Zhenyu Wang2c072452009-06-05 15:38:42 +0800528 else if (IS_G4X(dev)) {
Ma Ling044c7c42009-03-18 20:13:23 +0800529 limit = intel_g4x_limit(crtc);
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500530 } else if (IS_PINEVIEW(dev)) {
Shaohua Li21778322009-02-23 15:19:16 +0800531 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS))
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500532 limit = &intel_limits_pineview_lvds;
Shaohua Li21778322009-02-23 15:19:16 +0800533 else
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500534 limit = &intel_limits_pineview_sdvo;
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100535 } else if (!IS_GEN2(dev)) {
536 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS))
537 limit = &intel_limits_i9xx_lvds;
538 else
539 limit = &intel_limits_i9xx_sdvo;
Jesse Barnes79e53942008-11-07 14:24:08 -0800540 } else {
541 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS))
Keith Packarde4b36692009-06-05 19:22:17 -0700542 limit = &intel_limits_i8xx_lvds;
Jesse Barnes79e53942008-11-07 14:24:08 -0800543 else
Keith Packarde4b36692009-06-05 19:22:17 -0700544 limit = &intel_limits_i8xx_dvo;
Jesse Barnes79e53942008-11-07 14:24:08 -0800545 }
546 return limit;
547}
548
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500549/* m1 is reserved as 0 in Pineview, n is a ring counter */
550static void pineview_clock(int refclk, intel_clock_t *clock)
Jesse Barnes79e53942008-11-07 14:24:08 -0800551{
Shaohua Li21778322009-02-23 15:19:16 +0800552 clock->m = clock->m2 + 2;
553 clock->p = clock->p1 * clock->p2;
554 clock->vco = refclk * clock->m / clock->n;
555 clock->dot = clock->vco / clock->p;
556}
557
558static void intel_clock(struct drm_device *dev, int refclk, intel_clock_t *clock)
559{
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500560 if (IS_PINEVIEW(dev)) {
561 pineview_clock(refclk, clock);
Shaohua Li21778322009-02-23 15:19:16 +0800562 return;
563 }
Jesse Barnes79e53942008-11-07 14:24:08 -0800564 clock->m = 5 * (clock->m1 + 2) + (clock->m2 + 2);
565 clock->p = clock->p1 * clock->p2;
566 clock->vco = refclk * clock->m / (clock->n + 2);
567 clock->dot = clock->vco / clock->p;
568}
569
Jesse Barnes79e53942008-11-07 14:24:08 -0800570/**
571 * Returns whether any output on the specified pipe is of the specified type
572 */
Chris Wilson4ef69c72010-09-09 15:14:28 +0100573bool intel_pipe_has_type(struct drm_crtc *crtc, int type)
Jesse Barnes79e53942008-11-07 14:24:08 -0800574{
Chris Wilson4ef69c72010-09-09 15:14:28 +0100575 struct drm_device *dev = crtc->dev;
576 struct drm_mode_config *mode_config = &dev->mode_config;
577 struct intel_encoder *encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -0800578
Chris Wilson4ef69c72010-09-09 15:14:28 +0100579 list_for_each_entry(encoder, &mode_config->encoder_list, base.head)
580 if (encoder->base.crtc == crtc && encoder->type == type)
581 return true;
582
583 return false;
Jesse Barnes79e53942008-11-07 14:24:08 -0800584}
585
Jesse Barnes7c04d1d2009-02-23 15:36:40 -0800586#define INTELPllInvalid(s) do { /* DRM_DEBUG(s); */ return false; } while (0)
Jesse Barnes79e53942008-11-07 14:24:08 -0800587/**
588 * Returns whether the given set of divisors are valid for a given refclk with
589 * the given connectors.
590 */
591
Chris Wilson1b894b52010-12-14 20:04:54 +0000592static bool intel_PLL_is_valid(struct drm_device *dev,
593 const intel_limit_t *limit,
594 const intel_clock_t *clock)
Jesse Barnes79e53942008-11-07 14:24:08 -0800595{
Jesse Barnes79e53942008-11-07 14:24:08 -0800596 if (clock->p1 < limit->p1.min || limit->p1.max < clock->p1)
Akshay Joshi0206e352011-08-16 15:34:10 -0400597 INTELPllInvalid("p1 out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800598 if (clock->p < limit->p.min || limit->p.max < clock->p)
Akshay Joshi0206e352011-08-16 15:34:10 -0400599 INTELPllInvalid("p out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800600 if (clock->m2 < limit->m2.min || limit->m2.max < clock->m2)
Akshay Joshi0206e352011-08-16 15:34:10 -0400601 INTELPllInvalid("m2 out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800602 if (clock->m1 < limit->m1.min || limit->m1.max < clock->m1)
Akshay Joshi0206e352011-08-16 15:34:10 -0400603 INTELPllInvalid("m1 out of range\n");
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500604 if (clock->m1 <= clock->m2 && !IS_PINEVIEW(dev))
Akshay Joshi0206e352011-08-16 15:34:10 -0400605 INTELPllInvalid("m1 <= m2\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800606 if (clock->m < limit->m.min || limit->m.max < clock->m)
Akshay Joshi0206e352011-08-16 15:34:10 -0400607 INTELPllInvalid("m out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800608 if (clock->n < limit->n.min || limit->n.max < clock->n)
Akshay Joshi0206e352011-08-16 15:34:10 -0400609 INTELPllInvalid("n out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800610 if (clock->vco < limit->vco.min || limit->vco.max < clock->vco)
Akshay Joshi0206e352011-08-16 15:34:10 -0400611 INTELPllInvalid("vco out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800612 /* XXX: We may need to be checking "Dot clock" depending on the multiplier,
613 * connector, etc., rather than just a single range.
614 */
615 if (clock->dot < limit->dot.min || limit->dot.max < clock->dot)
Akshay Joshi0206e352011-08-16 15:34:10 -0400616 INTELPllInvalid("dot out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800617
618 return true;
619}
620
Ma Lingd4906092009-03-18 20:13:27 +0800621static bool
622intel_find_best_PLL(const intel_limit_t *limit, struct drm_crtc *crtc,
Sean Paulcec2f352012-01-10 15:09:36 -0800623 int target, int refclk, intel_clock_t *match_clock,
624 intel_clock_t *best_clock)
Ma Lingd4906092009-03-18 20:13:27 +0800625
Jesse Barnes79e53942008-11-07 14:24:08 -0800626{
627 struct drm_device *dev = crtc->dev;
628 struct drm_i915_private *dev_priv = dev->dev_private;
629 intel_clock_t clock;
Jesse Barnes79e53942008-11-07 14:24:08 -0800630 int err = target;
631
Bruno Prémontbc5e5712009-08-08 13:01:17 +0200632 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) &&
Florian Mickler832cc282009-07-13 18:40:32 +0800633 (I915_READ(LVDS)) != 0) {
Jesse Barnes79e53942008-11-07 14:24:08 -0800634 /*
635 * For LVDS, if the panel is on, just rely on its current
636 * settings for dual-channel. We haven't figured out how to
637 * reliably set up different single/dual channel state, if we
638 * even can.
639 */
Takashi Iwaib0354382012-03-20 13:07:05 +0100640 if (is_dual_link_lvds(dev_priv, LVDS))
Jesse Barnes79e53942008-11-07 14:24:08 -0800641 clock.p2 = limit->p2.p2_fast;
642 else
643 clock.p2 = limit->p2.p2_slow;
644 } else {
645 if (target < limit->p2.dot_limit)
646 clock.p2 = limit->p2.p2_slow;
647 else
648 clock.p2 = limit->p2.p2_fast;
649 }
650
Akshay Joshi0206e352011-08-16 15:34:10 -0400651 memset(best_clock, 0, sizeof(*best_clock));
Jesse Barnes79e53942008-11-07 14:24:08 -0800652
Zhao Yakui42158662009-11-20 11:24:18 +0800653 for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max;
654 clock.m1++) {
655 for (clock.m2 = limit->m2.min;
656 clock.m2 <= limit->m2.max; clock.m2++) {
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500657 /* m1 is always 0 in Pineview */
658 if (clock.m2 >= clock.m1 && !IS_PINEVIEW(dev))
Zhao Yakui42158662009-11-20 11:24:18 +0800659 break;
660 for (clock.n = limit->n.min;
661 clock.n <= limit->n.max; clock.n++) {
662 for (clock.p1 = limit->p1.min;
663 clock.p1 <= limit->p1.max; clock.p1++) {
Jesse Barnes79e53942008-11-07 14:24:08 -0800664 int this_err;
665
Shaohua Li21778322009-02-23 15:19:16 +0800666 intel_clock(dev, refclk, &clock);
Chris Wilson1b894b52010-12-14 20:04:54 +0000667 if (!intel_PLL_is_valid(dev, limit,
668 &clock))
Jesse Barnes79e53942008-11-07 14:24:08 -0800669 continue;
Sean Paulcec2f352012-01-10 15:09:36 -0800670 if (match_clock &&
671 clock.p != match_clock->p)
672 continue;
Jesse Barnes79e53942008-11-07 14:24:08 -0800673
674 this_err = abs(clock.dot - target);
675 if (this_err < err) {
676 *best_clock = clock;
677 err = this_err;
678 }
679 }
680 }
681 }
682 }
683
684 return (err != target);
685}
686
Ma Lingd4906092009-03-18 20:13:27 +0800687static bool
688intel_g4x_find_best_PLL(const intel_limit_t *limit, struct drm_crtc *crtc,
Sean Paulcec2f352012-01-10 15:09:36 -0800689 int target, int refclk, intel_clock_t *match_clock,
690 intel_clock_t *best_clock)
Ma Lingd4906092009-03-18 20:13:27 +0800691{
692 struct drm_device *dev = crtc->dev;
693 struct drm_i915_private *dev_priv = dev->dev_private;
694 intel_clock_t clock;
695 int max_n;
696 bool found;
Adam Jackson6ba770d2010-07-02 16:43:30 -0400697 /* approximately equals target * 0.00585 */
698 int err_most = (target >> 8) + (target >> 9);
Ma Lingd4906092009-03-18 20:13:27 +0800699 found = false;
700
701 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
Zhao Yakui45476682009-12-31 16:06:04 +0800702 int lvds_reg;
703
Eric Anholtc619eed2010-01-28 16:45:52 -0800704 if (HAS_PCH_SPLIT(dev))
Zhao Yakui45476682009-12-31 16:06:04 +0800705 lvds_reg = PCH_LVDS;
706 else
707 lvds_reg = LVDS;
708 if ((I915_READ(lvds_reg) & LVDS_CLKB_POWER_MASK) ==
Ma Lingd4906092009-03-18 20:13:27 +0800709 LVDS_CLKB_POWER_UP)
710 clock.p2 = limit->p2.p2_fast;
711 else
712 clock.p2 = limit->p2.p2_slow;
713 } else {
714 if (target < limit->p2.dot_limit)
715 clock.p2 = limit->p2.p2_slow;
716 else
717 clock.p2 = limit->p2.p2_fast;
718 }
719
720 memset(best_clock, 0, sizeof(*best_clock));
721 max_n = limit->n.max;
Gilles Espinassef77f13e2010-03-29 15:41:47 +0200722 /* based on hardware requirement, prefer smaller n to precision */
Ma Lingd4906092009-03-18 20:13:27 +0800723 for (clock.n = limit->n.min; clock.n <= max_n; clock.n++) {
Gilles Espinassef77f13e2010-03-29 15:41:47 +0200724 /* based on hardware requirement, prefere larger m1,m2 */
Ma Lingd4906092009-03-18 20:13:27 +0800725 for (clock.m1 = limit->m1.max;
726 clock.m1 >= limit->m1.min; clock.m1--) {
727 for (clock.m2 = limit->m2.max;
728 clock.m2 >= limit->m2.min; clock.m2--) {
729 for (clock.p1 = limit->p1.max;
730 clock.p1 >= limit->p1.min; clock.p1--) {
731 int this_err;
732
Shaohua Li21778322009-02-23 15:19:16 +0800733 intel_clock(dev, refclk, &clock);
Chris Wilson1b894b52010-12-14 20:04:54 +0000734 if (!intel_PLL_is_valid(dev, limit,
735 &clock))
Ma Lingd4906092009-03-18 20:13:27 +0800736 continue;
Sean Paulcec2f352012-01-10 15:09:36 -0800737 if (match_clock &&
738 clock.p != match_clock->p)
739 continue;
Chris Wilson1b894b52010-12-14 20:04:54 +0000740
741 this_err = abs(clock.dot - target);
Ma Lingd4906092009-03-18 20:13:27 +0800742 if (this_err < err_most) {
743 *best_clock = clock;
744 err_most = this_err;
745 max_n = clock.n;
746 found = true;
747 }
748 }
749 }
750 }
751 }
Zhenyu Wang2c072452009-06-05 15:38:42 +0800752 return found;
753}
Ma Lingd4906092009-03-18 20:13:27 +0800754
Zhenyu Wang2c072452009-06-05 15:38:42 +0800755static bool
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500756intel_find_pll_ironlake_dp(const intel_limit_t *limit, struct drm_crtc *crtc,
Sean Paulcec2f352012-01-10 15:09:36 -0800757 int target, int refclk, intel_clock_t *match_clock,
758 intel_clock_t *best_clock)
Zhenyu Wang5eb08b62009-07-24 01:00:31 +0800759{
760 struct drm_device *dev = crtc->dev;
761 intel_clock_t clock;
Zhao Yakui45476682009-12-31 16:06:04 +0800762
Zhenyu Wang5eb08b62009-07-24 01:00:31 +0800763 if (target < 200000) {
764 clock.n = 1;
765 clock.p1 = 2;
766 clock.p2 = 10;
767 clock.m1 = 12;
768 clock.m2 = 9;
769 } else {
770 clock.n = 2;
771 clock.p1 = 1;
772 clock.p2 = 10;
773 clock.m1 = 14;
774 clock.m2 = 8;
775 }
776 intel_clock(dev, refclk, &clock);
777 memcpy(best_clock, &clock, sizeof(intel_clock_t));
778 return true;
779}
780
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700781/* DisplayPort has only two frequencies, 162MHz and 270MHz */
782static bool
783intel_find_pll_g4x_dp(const intel_limit_t *limit, struct drm_crtc *crtc,
Sean Paulcec2f352012-01-10 15:09:36 -0800784 int target, int refclk, intel_clock_t *match_clock,
785 intel_clock_t *best_clock)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700786{
Chris Wilson5eddb702010-09-11 13:48:45 +0100787 intel_clock_t clock;
788 if (target < 200000) {
789 clock.p1 = 2;
790 clock.p2 = 10;
791 clock.n = 2;
792 clock.m1 = 23;
793 clock.m2 = 8;
794 } else {
795 clock.p1 = 1;
796 clock.p2 = 10;
797 clock.n = 1;
798 clock.m1 = 14;
799 clock.m2 = 2;
800 }
801 clock.m = 5 * (clock.m1 + 2) + (clock.m2 + 2);
802 clock.p = (clock.p1 * clock.p2);
803 clock.dot = 96000 * clock.m / (clock.n + 2) / clock.p;
804 clock.vco = 0;
805 memcpy(best_clock, &clock, sizeof(intel_clock_t));
806 return true;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700807}
808
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700809/**
810 * intel_wait_for_vblank - wait for vblank on a given pipe
811 * @dev: drm device
812 * @pipe: pipe to wait for
813 *
814 * Wait for vblank to occur on a given pipe. Needed for various bits of
815 * mode setting code.
816 */
817void intel_wait_for_vblank(struct drm_device *dev, int pipe)
Jesse Barnes79e53942008-11-07 14:24:08 -0800818{
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700819 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800820 int pipestat_reg = PIPESTAT(pipe);
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700821
Chris Wilson300387c2010-09-05 20:25:43 +0100822 /* Clear existing vblank status. Note this will clear any other
823 * sticky status fields as well.
824 *
825 * This races with i915_driver_irq_handler() with the result
826 * that either function could miss a vblank event. Here it is not
827 * fatal, as we will either wait upon the next vblank interrupt or
828 * timeout. Generally speaking intel_wait_for_vblank() is only
829 * called during modeset at which time the GPU should be idle and
830 * should *not* be performing page flips and thus not waiting on
831 * vblanks...
832 * Currently, the result of us stealing a vblank from the irq
833 * handler is that a single frame will be skipped during swapbuffers.
834 */
835 I915_WRITE(pipestat_reg,
836 I915_READ(pipestat_reg) | PIPE_VBLANK_INTERRUPT_STATUS);
837
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700838 /* Wait for vblank interrupt bit to set */
Chris Wilson481b6af2010-08-23 17:43:35 +0100839 if (wait_for(I915_READ(pipestat_reg) &
840 PIPE_VBLANK_INTERRUPT_STATUS,
841 50))
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700842 DRM_DEBUG_KMS("vblank wait timed out\n");
843}
844
Keith Packardab7ad7f2010-10-03 00:33:06 -0700845/*
846 * intel_wait_for_pipe_off - wait for pipe to turn off
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700847 * @dev: drm device
848 * @pipe: pipe to wait for
849 *
850 * After disabling a pipe, we can't wait for vblank in the usual way,
851 * spinning on the vblank interrupt status bit, since we won't actually
852 * see an interrupt when the pipe is disabled.
853 *
Keith Packardab7ad7f2010-10-03 00:33:06 -0700854 * On Gen4 and above:
855 * wait for the pipe register state bit to turn off
856 *
857 * Otherwise:
858 * wait for the display line value to settle (it usually
859 * ends up stopping at the start of the next frame).
Chris Wilson58e10eb2010-10-03 10:56:11 +0100860 *
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700861 */
Chris Wilson58e10eb2010-10-03 10:56:11 +0100862void intel_wait_for_pipe_off(struct drm_device *dev, int pipe)
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700863{
864 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700865
Keith Packardab7ad7f2010-10-03 00:33:06 -0700866 if (INTEL_INFO(dev)->gen >= 4) {
Chris Wilson58e10eb2010-10-03 10:56:11 +0100867 int reg = PIPECONF(pipe);
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700868
Keith Packardab7ad7f2010-10-03 00:33:06 -0700869 /* Wait for the Pipe State to go off */
Chris Wilson58e10eb2010-10-03 10:56:11 +0100870 if (wait_for((I915_READ(reg) & I965_PIPECONF_ACTIVE) == 0,
871 100))
Keith Packardab7ad7f2010-10-03 00:33:06 -0700872 DRM_DEBUG_KMS("pipe_off wait timed out\n");
873 } else {
874 u32 last_line;
Chris Wilson58e10eb2010-10-03 10:56:11 +0100875 int reg = PIPEDSL(pipe);
Keith Packardab7ad7f2010-10-03 00:33:06 -0700876 unsigned long timeout = jiffies + msecs_to_jiffies(100);
877
878 /* Wait for the display line to settle */
879 do {
Chris Wilson58e10eb2010-10-03 10:56:11 +0100880 last_line = I915_READ(reg) & DSL_LINEMASK;
Keith Packardab7ad7f2010-10-03 00:33:06 -0700881 mdelay(5);
Chris Wilson58e10eb2010-10-03 10:56:11 +0100882 } while (((I915_READ(reg) & DSL_LINEMASK) != last_line) &&
Keith Packardab7ad7f2010-10-03 00:33:06 -0700883 time_after(timeout, jiffies));
884 if (time_after(jiffies, timeout))
885 DRM_DEBUG_KMS("pipe_off wait timed out\n");
886 }
Jesse Barnes79e53942008-11-07 14:24:08 -0800887}
888
Jesse Barnesb24e7172011-01-04 15:09:30 -0800889static const char *state_string(bool enabled)
890{
891 return enabled ? "on" : "off";
892}
893
894/* Only for pre-ILK configs */
895static void assert_pll(struct drm_i915_private *dev_priv,
896 enum pipe pipe, bool state)
897{
898 int reg;
899 u32 val;
900 bool cur_state;
901
902 reg = DPLL(pipe);
903 val = I915_READ(reg);
904 cur_state = !!(val & DPLL_VCO_ENABLE);
905 WARN(cur_state != state,
906 "PLL state assertion failure (expected %s, current %s)\n",
907 state_string(state), state_string(cur_state));
908}
909#define assert_pll_enabled(d, p) assert_pll(d, p, true)
910#define assert_pll_disabled(d, p) assert_pll(d, p, false)
911
Jesse Barnes040484a2011-01-03 12:14:26 -0800912/* For ILK+ */
913static void assert_pch_pll(struct drm_i915_private *dev_priv,
914 enum pipe pipe, bool state)
915{
916 int reg;
917 u32 val;
918 bool cur_state;
919
Jesse Barnesd3ccbe82011-10-12 09:27:42 -0700920 if (HAS_PCH_CPT(dev_priv->dev)) {
921 u32 pch_dpll;
922
923 pch_dpll = I915_READ(PCH_DPLL_SEL);
924
925 /* Make sure the selected PLL is enabled to the transcoder */
926 WARN(!((pch_dpll >> (4 * pipe)) & 8),
927 "transcoder %d PLL not enabled\n", pipe);
928
929 /* Convert the transcoder pipe number to a pll pipe number */
930 pipe = (pch_dpll >> (4 * pipe)) & 1;
931 }
932
Jesse Barnes040484a2011-01-03 12:14:26 -0800933 reg = PCH_DPLL(pipe);
934 val = I915_READ(reg);
935 cur_state = !!(val & DPLL_VCO_ENABLE);
936 WARN(cur_state != state,
937 "PCH PLL state assertion failure (expected %s, current %s)\n",
938 state_string(state), state_string(cur_state));
939}
940#define assert_pch_pll_enabled(d, p) assert_pch_pll(d, p, true)
941#define assert_pch_pll_disabled(d, p) assert_pch_pll(d, p, false)
942
943static void assert_fdi_tx(struct drm_i915_private *dev_priv,
944 enum pipe pipe, bool state)
945{
946 int reg;
947 u32 val;
948 bool cur_state;
949
950 reg = FDI_TX_CTL(pipe);
951 val = I915_READ(reg);
952 cur_state = !!(val & FDI_TX_ENABLE);
953 WARN(cur_state != state,
954 "FDI TX state assertion failure (expected %s, current %s)\n",
955 state_string(state), state_string(cur_state));
956}
957#define assert_fdi_tx_enabled(d, p) assert_fdi_tx(d, p, true)
958#define assert_fdi_tx_disabled(d, p) assert_fdi_tx(d, p, false)
959
960static void assert_fdi_rx(struct drm_i915_private *dev_priv,
961 enum pipe pipe, bool state)
962{
963 int reg;
964 u32 val;
965 bool cur_state;
966
967 reg = FDI_RX_CTL(pipe);
968 val = I915_READ(reg);
969 cur_state = !!(val & FDI_RX_ENABLE);
970 WARN(cur_state != state,
971 "FDI RX state assertion failure (expected %s, current %s)\n",
972 state_string(state), state_string(cur_state));
973}
974#define assert_fdi_rx_enabled(d, p) assert_fdi_rx(d, p, true)
975#define assert_fdi_rx_disabled(d, p) assert_fdi_rx(d, p, false)
976
977static void assert_fdi_tx_pll_enabled(struct drm_i915_private *dev_priv,
978 enum pipe pipe)
979{
980 int reg;
981 u32 val;
982
983 /* ILK FDI PLL is always enabled */
984 if (dev_priv->info->gen == 5)
985 return;
986
987 reg = FDI_TX_CTL(pipe);
988 val = I915_READ(reg);
989 WARN(!(val & FDI_TX_PLL_ENABLE), "FDI TX PLL assertion failure, should be active but is disabled\n");
990}
991
992static void assert_fdi_rx_pll_enabled(struct drm_i915_private *dev_priv,
993 enum pipe pipe)
994{
995 int reg;
996 u32 val;
997
998 reg = FDI_RX_CTL(pipe);
999 val = I915_READ(reg);
1000 WARN(!(val & FDI_RX_PLL_ENABLE), "FDI RX PLL assertion failure, should be active but is disabled\n");
1001}
1002
Jesse Barnesea0760c2011-01-04 15:09:32 -08001003static void assert_panel_unlocked(struct drm_i915_private *dev_priv,
1004 enum pipe pipe)
1005{
1006 int pp_reg, lvds_reg;
1007 u32 val;
1008 enum pipe panel_pipe = PIPE_A;
Thomas Jarosch0de3b482011-08-25 15:37:45 +02001009 bool locked = true;
Jesse Barnesea0760c2011-01-04 15:09:32 -08001010
1011 if (HAS_PCH_SPLIT(dev_priv->dev)) {
1012 pp_reg = PCH_PP_CONTROL;
1013 lvds_reg = PCH_LVDS;
1014 } else {
1015 pp_reg = PP_CONTROL;
1016 lvds_reg = LVDS;
1017 }
1018
1019 val = I915_READ(pp_reg);
1020 if (!(val & PANEL_POWER_ON) ||
1021 ((val & PANEL_UNLOCK_REGS) == PANEL_UNLOCK_REGS))
1022 locked = false;
1023
1024 if (I915_READ(lvds_reg) & LVDS_PIPEB_SELECT)
1025 panel_pipe = PIPE_B;
1026
1027 WARN(panel_pipe == pipe && locked,
1028 "panel assertion failure, pipe %c regs locked\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001029 pipe_name(pipe));
Jesse Barnesea0760c2011-01-04 15:09:32 -08001030}
1031
Jesse Barnesb840d907f2011-12-13 13:19:38 -08001032void assert_pipe(struct drm_i915_private *dev_priv,
1033 enum pipe pipe, bool state)
Jesse Barnesb24e7172011-01-04 15:09:30 -08001034{
1035 int reg;
1036 u32 val;
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001037 bool cur_state;
Jesse Barnesb24e7172011-01-04 15:09:30 -08001038
Daniel Vetter8e636782012-01-22 01:36:48 +01001039 /* if we need the pipe A quirk it must be always on */
1040 if (pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE)
1041 state = true;
1042
Jesse Barnesb24e7172011-01-04 15:09:30 -08001043 reg = PIPECONF(pipe);
1044 val = I915_READ(reg);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001045 cur_state = !!(val & PIPECONF_ENABLE);
1046 WARN(cur_state != state,
1047 "pipe %c assertion failure (expected %s, current %s)\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001048 pipe_name(pipe), state_string(state), state_string(cur_state));
Jesse Barnesb24e7172011-01-04 15:09:30 -08001049}
1050
Chris Wilson931872f2012-01-16 23:01:13 +00001051static void assert_plane(struct drm_i915_private *dev_priv,
1052 enum plane plane, bool state)
Jesse Barnesb24e7172011-01-04 15:09:30 -08001053{
1054 int reg;
1055 u32 val;
Chris Wilson931872f2012-01-16 23:01:13 +00001056 bool cur_state;
Jesse Barnesb24e7172011-01-04 15:09:30 -08001057
1058 reg = DSPCNTR(plane);
1059 val = I915_READ(reg);
Chris Wilson931872f2012-01-16 23:01:13 +00001060 cur_state = !!(val & DISPLAY_PLANE_ENABLE);
1061 WARN(cur_state != state,
1062 "plane %c assertion failure (expected %s, current %s)\n",
1063 plane_name(plane), state_string(state), state_string(cur_state));
Jesse Barnesb24e7172011-01-04 15:09:30 -08001064}
1065
Chris Wilson931872f2012-01-16 23:01:13 +00001066#define assert_plane_enabled(d, p) assert_plane(d, p, true)
1067#define assert_plane_disabled(d, p) assert_plane(d, p, false)
1068
Jesse Barnesb24e7172011-01-04 15:09:30 -08001069static void assert_planes_disabled(struct drm_i915_private *dev_priv,
1070 enum pipe pipe)
1071{
1072 int reg, i;
1073 u32 val;
1074 int cur_pipe;
1075
Jesse Barnes19ec1352011-02-02 12:28:02 -08001076 /* Planes are fixed to pipes on ILK+ */
Adam Jackson28c057942011-10-07 14:38:42 -04001077 if (HAS_PCH_SPLIT(dev_priv->dev)) {
1078 reg = DSPCNTR(pipe);
1079 val = I915_READ(reg);
1080 WARN((val & DISPLAY_PLANE_ENABLE),
1081 "plane %c assertion failure, should be disabled but not\n",
1082 plane_name(pipe));
Jesse Barnes19ec1352011-02-02 12:28:02 -08001083 return;
Adam Jackson28c057942011-10-07 14:38:42 -04001084 }
Jesse Barnes19ec1352011-02-02 12:28:02 -08001085
Jesse Barnesb24e7172011-01-04 15:09:30 -08001086 /* Need to check both planes against the pipe */
1087 for (i = 0; i < 2; i++) {
1088 reg = DSPCNTR(i);
1089 val = I915_READ(reg);
1090 cur_pipe = (val & DISPPLANE_SEL_PIPE_MASK) >>
1091 DISPPLANE_SEL_PIPE_SHIFT;
1092 WARN((val & DISPLAY_PLANE_ENABLE) && pipe == cur_pipe,
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001093 "plane %c assertion failure, should be off on pipe %c but is still active\n",
1094 plane_name(i), pipe_name(pipe));
Jesse Barnesb24e7172011-01-04 15:09:30 -08001095 }
1096}
1097
Jesse Barnes92f25842011-01-04 15:09:34 -08001098static void assert_pch_refclk_enabled(struct drm_i915_private *dev_priv)
1099{
1100 u32 val;
1101 bool enabled;
1102
1103 val = I915_READ(PCH_DREF_CONTROL);
1104 enabled = !!(val & (DREF_SSC_SOURCE_MASK | DREF_NONSPREAD_SOURCE_MASK |
1105 DREF_SUPERSPREAD_SOURCE_MASK));
1106 WARN(!enabled, "PCH refclk assertion failure, should be active but is disabled\n");
1107}
1108
1109static void assert_transcoder_disabled(struct drm_i915_private *dev_priv,
1110 enum pipe pipe)
1111{
1112 int reg;
1113 u32 val;
1114 bool enabled;
1115
1116 reg = TRANSCONF(pipe);
1117 val = I915_READ(reg);
1118 enabled = !!(val & TRANS_ENABLE);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001119 WARN(enabled,
1120 "transcoder assertion failed, should be off on pipe %c but is still active\n",
1121 pipe_name(pipe));
Jesse Barnes92f25842011-01-04 15:09:34 -08001122}
1123
Keith Packard4e634382011-08-06 10:39:45 -07001124static bool dp_pipe_enabled(struct drm_i915_private *dev_priv,
1125 enum pipe pipe, u32 port_sel, u32 val)
Keith Packardf0575e92011-07-25 22:12:43 -07001126{
1127 if ((val & DP_PORT_EN) == 0)
1128 return false;
1129
1130 if (HAS_PCH_CPT(dev_priv->dev)) {
1131 u32 trans_dp_ctl_reg = TRANS_DP_CTL(pipe);
1132 u32 trans_dp_ctl = I915_READ(trans_dp_ctl_reg);
1133 if ((trans_dp_ctl & TRANS_DP_PORT_SEL_MASK) != port_sel)
1134 return false;
1135 } else {
1136 if ((val & DP_PIPE_MASK) != (pipe << 30))
1137 return false;
1138 }
1139 return true;
1140}
1141
Keith Packard1519b992011-08-06 10:35:34 -07001142static bool hdmi_pipe_enabled(struct drm_i915_private *dev_priv,
1143 enum pipe pipe, u32 val)
1144{
1145 if ((val & PORT_ENABLE) == 0)
1146 return false;
1147
1148 if (HAS_PCH_CPT(dev_priv->dev)) {
1149 if ((val & PORT_TRANS_SEL_MASK) != PORT_TRANS_SEL_CPT(pipe))
1150 return false;
1151 } else {
1152 if ((val & TRANSCODER_MASK) != TRANSCODER(pipe))
1153 return false;
1154 }
1155 return true;
1156}
1157
1158static bool lvds_pipe_enabled(struct drm_i915_private *dev_priv,
1159 enum pipe pipe, u32 val)
1160{
1161 if ((val & LVDS_PORT_EN) == 0)
1162 return false;
1163
1164 if (HAS_PCH_CPT(dev_priv->dev)) {
1165 if ((val & PORT_TRANS_SEL_MASK) != PORT_TRANS_SEL_CPT(pipe))
1166 return false;
1167 } else {
1168 if ((val & LVDS_PIPE_MASK) != LVDS_PIPE(pipe))
1169 return false;
1170 }
1171 return true;
1172}
1173
1174static bool adpa_pipe_enabled(struct drm_i915_private *dev_priv,
1175 enum pipe pipe, u32 val)
1176{
1177 if ((val & ADPA_DAC_ENABLE) == 0)
1178 return false;
1179 if (HAS_PCH_CPT(dev_priv->dev)) {
1180 if ((val & PORT_TRANS_SEL_MASK) != PORT_TRANS_SEL_CPT(pipe))
1181 return false;
1182 } else {
1183 if ((val & ADPA_PIPE_SELECT_MASK) != ADPA_PIPE_SELECT(pipe))
1184 return false;
1185 }
1186 return true;
1187}
1188
Jesse Barnes291906f2011-02-02 12:28:03 -08001189static void assert_pch_dp_disabled(struct drm_i915_private *dev_priv,
Keith Packardf0575e92011-07-25 22:12:43 -07001190 enum pipe pipe, int reg, u32 port_sel)
Jesse Barnes291906f2011-02-02 12:28:03 -08001191{
Jesse Barnes47a05ec2011-02-07 13:46:40 -08001192 u32 val = I915_READ(reg);
Keith Packard4e634382011-08-06 10:39:45 -07001193 WARN(dp_pipe_enabled(dev_priv, pipe, port_sel, val),
Jesse Barnes291906f2011-02-02 12:28:03 -08001194 "PCH DP (0x%08x) enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001195 reg, pipe_name(pipe));
Jesse Barnes291906f2011-02-02 12:28:03 -08001196}
1197
1198static void assert_pch_hdmi_disabled(struct drm_i915_private *dev_priv,
1199 enum pipe pipe, int reg)
1200{
Jesse Barnes47a05ec2011-02-07 13:46:40 -08001201 u32 val = I915_READ(reg);
Keith Packard1519b992011-08-06 10:35:34 -07001202 WARN(hdmi_pipe_enabled(dev_priv, val, pipe),
Adam Jackson23c99e72011-10-07 14:38:43 -04001203 "PCH HDMI (0x%08x) enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001204 reg, pipe_name(pipe));
Jesse Barnes291906f2011-02-02 12:28:03 -08001205}
1206
1207static void assert_pch_ports_disabled(struct drm_i915_private *dev_priv,
1208 enum pipe pipe)
1209{
1210 int reg;
1211 u32 val;
Jesse Barnes291906f2011-02-02 12:28:03 -08001212
Keith Packardf0575e92011-07-25 22:12:43 -07001213 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_B, TRANS_DP_PORT_SEL_B);
1214 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_C, TRANS_DP_PORT_SEL_C);
1215 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_D, TRANS_DP_PORT_SEL_D);
Jesse Barnes291906f2011-02-02 12:28:03 -08001216
1217 reg = PCH_ADPA;
1218 val = I915_READ(reg);
Keith Packard1519b992011-08-06 10:35:34 -07001219 WARN(adpa_pipe_enabled(dev_priv, val, pipe),
Jesse Barnes291906f2011-02-02 12:28:03 -08001220 "PCH VGA enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001221 pipe_name(pipe));
Jesse Barnes291906f2011-02-02 12:28:03 -08001222
1223 reg = PCH_LVDS;
1224 val = I915_READ(reg);
Keith Packard1519b992011-08-06 10:35:34 -07001225 WARN(lvds_pipe_enabled(dev_priv, val, pipe),
Jesse Barnes291906f2011-02-02 12:28:03 -08001226 "PCH LVDS enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001227 pipe_name(pipe));
Jesse Barnes291906f2011-02-02 12:28:03 -08001228
1229 assert_pch_hdmi_disabled(dev_priv, pipe, HDMIB);
1230 assert_pch_hdmi_disabled(dev_priv, pipe, HDMIC);
1231 assert_pch_hdmi_disabled(dev_priv, pipe, HDMID);
1232}
1233
Jesse Barnesb24e7172011-01-04 15:09:30 -08001234/**
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001235 * intel_enable_pll - enable a PLL
1236 * @dev_priv: i915 private structure
1237 * @pipe: pipe PLL to enable
1238 *
1239 * Enable @pipe's PLL so we can start pumping pixels from a plane. Check to
1240 * make sure the PLL reg is writable first though, since the panel write
1241 * protect mechanism may be enabled.
1242 *
1243 * Note! This is for pre-ILK only.
1244 */
1245static void intel_enable_pll(struct drm_i915_private *dev_priv, enum pipe pipe)
1246{
1247 int reg;
1248 u32 val;
1249
1250 /* No really, not for ILK+ */
1251 BUG_ON(dev_priv->info->gen >= 5);
1252
1253 /* PLL is protected by panel, make sure we can write it */
1254 if (IS_MOBILE(dev_priv->dev) && !IS_I830(dev_priv->dev))
1255 assert_panel_unlocked(dev_priv, pipe);
1256
1257 reg = DPLL(pipe);
1258 val = I915_READ(reg);
1259 val |= DPLL_VCO_ENABLE;
1260
1261 /* We do this three times for luck */
1262 I915_WRITE(reg, val);
1263 POSTING_READ(reg);
1264 udelay(150); /* wait for warmup */
1265 I915_WRITE(reg, val);
1266 POSTING_READ(reg);
1267 udelay(150); /* wait for warmup */
1268 I915_WRITE(reg, val);
1269 POSTING_READ(reg);
1270 udelay(150); /* wait for warmup */
1271}
1272
1273/**
1274 * intel_disable_pll - disable a PLL
1275 * @dev_priv: i915 private structure
1276 * @pipe: pipe PLL to disable
1277 *
1278 * Disable the PLL for @pipe, making sure the pipe is off first.
1279 *
1280 * Note! This is for pre-ILK only.
1281 */
1282static void intel_disable_pll(struct drm_i915_private *dev_priv, enum pipe pipe)
1283{
1284 int reg;
1285 u32 val;
1286
1287 /* Don't disable pipe A or pipe A PLLs if needed */
1288 if (pipe == PIPE_A && (dev_priv->quirks & QUIRK_PIPEA_FORCE))
1289 return;
1290
1291 /* Make sure the pipe isn't still relying on us */
1292 assert_pipe_disabled(dev_priv, pipe);
1293
1294 reg = DPLL(pipe);
1295 val = I915_READ(reg);
1296 val &= ~DPLL_VCO_ENABLE;
1297 I915_WRITE(reg, val);
1298 POSTING_READ(reg);
1299}
1300
1301/**
Jesse Barnes92f25842011-01-04 15:09:34 -08001302 * intel_enable_pch_pll - enable PCH PLL
1303 * @dev_priv: i915 private structure
1304 * @pipe: pipe PLL to enable
1305 *
1306 * The PCH PLL needs to be enabled before the PCH transcoder, since it
1307 * drives the transcoder clock.
1308 */
1309static void intel_enable_pch_pll(struct drm_i915_private *dev_priv,
1310 enum pipe pipe)
1311{
1312 int reg;
1313 u32 val;
1314
Jesse Barnes4c609cb2011-09-02 12:52:11 -07001315 if (pipe > 1)
1316 return;
1317
Jesse Barnes92f25842011-01-04 15:09:34 -08001318 /* PCH only available on ILK+ */
1319 BUG_ON(dev_priv->info->gen < 5);
1320
1321 /* PCH refclock must be enabled first */
1322 assert_pch_refclk_enabled(dev_priv);
1323
1324 reg = PCH_DPLL(pipe);
1325 val = I915_READ(reg);
1326 val |= DPLL_VCO_ENABLE;
1327 I915_WRITE(reg, val);
1328 POSTING_READ(reg);
1329 udelay(200);
1330}
1331
1332static void intel_disable_pch_pll(struct drm_i915_private *dev_priv,
1333 enum pipe pipe)
1334{
1335 int reg;
Jesse Barnes7a419862011-11-15 10:28:53 -08001336 u32 val, pll_mask = TRANSC_DPLL_ENABLE | TRANSC_DPLLB_SEL,
1337 pll_sel = TRANSC_DPLL_ENABLE;
Jesse Barnes92f25842011-01-04 15:09:34 -08001338
Jesse Barnes4c609cb2011-09-02 12:52:11 -07001339 if (pipe > 1)
1340 return;
1341
Jesse Barnes92f25842011-01-04 15:09:34 -08001342 /* PCH only available on ILK+ */
1343 BUG_ON(dev_priv->info->gen < 5);
1344
1345 /* Make sure transcoder isn't still depending on us */
1346 assert_transcoder_disabled(dev_priv, pipe);
1347
Jesse Barnes7a419862011-11-15 10:28:53 -08001348 if (pipe == 0)
1349 pll_sel |= TRANSC_DPLLA_SEL;
1350 else if (pipe == 1)
1351 pll_sel |= TRANSC_DPLLB_SEL;
1352
1353
1354 if ((I915_READ(PCH_DPLL_SEL) & pll_mask) == pll_sel)
1355 return;
1356
Jesse Barnes92f25842011-01-04 15:09:34 -08001357 reg = PCH_DPLL(pipe);
1358 val = I915_READ(reg);
1359 val &= ~DPLL_VCO_ENABLE;
1360 I915_WRITE(reg, val);
1361 POSTING_READ(reg);
1362 udelay(200);
1363}
1364
Jesse Barnes040484a2011-01-03 12:14:26 -08001365static void intel_enable_transcoder(struct drm_i915_private *dev_priv,
1366 enum pipe pipe)
1367{
1368 int reg;
Paulo Zanoni5f7f7262012-02-03 17:47:15 -02001369 u32 val, pipeconf_val;
Paulo Zanoni7c26e5c2012-02-14 17:07:09 -02001370 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
Jesse Barnes040484a2011-01-03 12:14:26 -08001371
1372 /* PCH only available on ILK+ */
1373 BUG_ON(dev_priv->info->gen < 5);
1374
1375 /* Make sure PCH DPLL is enabled */
1376 assert_pch_pll_enabled(dev_priv, pipe);
1377
1378 /* FDI must be feeding us bits for PCH ports */
1379 assert_fdi_tx_enabled(dev_priv, pipe);
1380 assert_fdi_rx_enabled(dev_priv, pipe);
1381
1382 reg = TRANSCONF(pipe);
1383 val = I915_READ(reg);
Paulo Zanoni5f7f7262012-02-03 17:47:15 -02001384 pipeconf_val = I915_READ(PIPECONF(pipe));
Jesse Barnese9bcff52011-06-24 12:19:20 -07001385
1386 if (HAS_PCH_IBX(dev_priv->dev)) {
1387 /*
1388 * make the BPC in transcoder be consistent with
1389 * that in pipeconf reg.
1390 */
1391 val &= ~PIPE_BPC_MASK;
Paulo Zanoni5f7f7262012-02-03 17:47:15 -02001392 val |= pipeconf_val & PIPE_BPC_MASK;
Jesse Barnese9bcff52011-06-24 12:19:20 -07001393 }
Paulo Zanoni5f7f7262012-02-03 17:47:15 -02001394
1395 val &= ~TRANS_INTERLACE_MASK;
1396 if ((pipeconf_val & PIPECONF_INTERLACE_MASK) == PIPECONF_INTERLACED_ILK)
Paulo Zanoni7c26e5c2012-02-14 17:07:09 -02001397 if (HAS_PCH_IBX(dev_priv->dev) &&
1398 intel_pipe_has_type(crtc, INTEL_OUTPUT_SDVO))
1399 val |= TRANS_LEGACY_INTERLACED_ILK;
1400 else
1401 val |= TRANS_INTERLACED;
Paulo Zanoni5f7f7262012-02-03 17:47:15 -02001402 else
1403 val |= TRANS_PROGRESSIVE;
1404
Jesse Barnes040484a2011-01-03 12:14:26 -08001405 I915_WRITE(reg, val | TRANS_ENABLE);
1406 if (wait_for(I915_READ(reg) & TRANS_STATE_ENABLE, 100))
1407 DRM_ERROR("failed to enable transcoder %d\n", pipe);
1408}
1409
1410static void intel_disable_transcoder(struct drm_i915_private *dev_priv,
1411 enum pipe pipe)
1412{
1413 int reg;
1414 u32 val;
1415
1416 /* FDI relies on the transcoder */
1417 assert_fdi_tx_disabled(dev_priv, pipe);
1418 assert_fdi_rx_disabled(dev_priv, pipe);
1419
Jesse Barnes291906f2011-02-02 12:28:03 -08001420 /* Ports must be off as well */
1421 assert_pch_ports_disabled(dev_priv, pipe);
1422
Jesse Barnes040484a2011-01-03 12:14:26 -08001423 reg = TRANSCONF(pipe);
1424 val = I915_READ(reg);
1425 val &= ~TRANS_ENABLE;
1426 I915_WRITE(reg, val);
1427 /* wait for PCH transcoder off, transcoder state */
1428 if (wait_for((I915_READ(reg) & TRANS_STATE_ENABLE) == 0, 50))
Jesse Barnes4c9c18c2011-10-13 09:46:32 -07001429 DRM_ERROR("failed to disable transcoder %d\n", pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08001430}
1431
Jesse Barnes92f25842011-01-04 15:09:34 -08001432/**
Chris Wilson309cfea2011-01-28 13:54:53 +00001433 * intel_enable_pipe - enable a pipe, asserting requirements
Jesse Barnesb24e7172011-01-04 15:09:30 -08001434 * @dev_priv: i915 private structure
1435 * @pipe: pipe to enable
Jesse Barnes040484a2011-01-03 12:14:26 -08001436 * @pch_port: on ILK+, is this pipe driving a PCH port or not
Jesse Barnesb24e7172011-01-04 15:09:30 -08001437 *
1438 * Enable @pipe, making sure that various hardware specific requirements
1439 * are met, if applicable, e.g. PLL enabled, LVDS pairs enabled, etc.
1440 *
1441 * @pipe should be %PIPE_A or %PIPE_B.
1442 *
1443 * Will wait until the pipe is actually running (i.e. first vblank) before
1444 * returning.
1445 */
Jesse Barnes040484a2011-01-03 12:14:26 -08001446static void intel_enable_pipe(struct drm_i915_private *dev_priv, enum pipe pipe,
1447 bool pch_port)
Jesse Barnesb24e7172011-01-04 15:09:30 -08001448{
1449 int reg;
1450 u32 val;
1451
1452 /*
1453 * A pipe without a PLL won't actually be able to drive bits from
1454 * a plane. On ILK+ the pipe PLLs are integrated, so we don't
1455 * need the check.
1456 */
1457 if (!HAS_PCH_SPLIT(dev_priv->dev))
1458 assert_pll_enabled(dev_priv, pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08001459 else {
1460 if (pch_port) {
1461 /* if driving the PCH, we need FDI enabled */
1462 assert_fdi_rx_pll_enabled(dev_priv, pipe);
1463 assert_fdi_tx_pll_enabled(dev_priv, pipe);
1464 }
1465 /* FIXME: assert CPU port conditions for SNB+ */
1466 }
Jesse Barnesb24e7172011-01-04 15:09:30 -08001467
1468 reg = PIPECONF(pipe);
1469 val = I915_READ(reg);
Chris Wilson00d70b12011-03-17 07:18:29 +00001470 if (val & PIPECONF_ENABLE)
1471 return;
1472
1473 I915_WRITE(reg, val | PIPECONF_ENABLE);
Jesse Barnesb24e7172011-01-04 15:09:30 -08001474 intel_wait_for_vblank(dev_priv->dev, pipe);
1475}
1476
1477/**
Chris Wilson309cfea2011-01-28 13:54:53 +00001478 * intel_disable_pipe - disable a pipe, asserting requirements
Jesse Barnesb24e7172011-01-04 15:09:30 -08001479 * @dev_priv: i915 private structure
1480 * @pipe: pipe to disable
1481 *
1482 * Disable @pipe, making sure that various hardware specific requirements
1483 * are met, if applicable, e.g. plane disabled, panel fitter off, etc.
1484 *
1485 * @pipe should be %PIPE_A or %PIPE_B.
1486 *
1487 * Will wait until the pipe has shut down before returning.
1488 */
1489static void intel_disable_pipe(struct drm_i915_private *dev_priv,
1490 enum pipe pipe)
1491{
1492 int reg;
1493 u32 val;
1494
1495 /*
1496 * Make sure planes won't keep trying to pump pixels to us,
1497 * or we might hang the display.
1498 */
1499 assert_planes_disabled(dev_priv, pipe);
1500
1501 /* Don't disable pipe A or pipe A PLLs if needed */
1502 if (pipe == PIPE_A && (dev_priv->quirks & QUIRK_PIPEA_FORCE))
1503 return;
1504
1505 reg = PIPECONF(pipe);
1506 val = I915_READ(reg);
Chris Wilson00d70b12011-03-17 07:18:29 +00001507 if ((val & PIPECONF_ENABLE) == 0)
1508 return;
1509
1510 I915_WRITE(reg, val & ~PIPECONF_ENABLE);
Jesse Barnesb24e7172011-01-04 15:09:30 -08001511 intel_wait_for_pipe_off(dev_priv->dev, pipe);
1512}
1513
Keith Packardd74362c2011-07-28 14:47:14 -07001514/*
1515 * Plane regs are double buffered, going from enabled->disabled needs a
1516 * trigger in order to latch. The display address reg provides this.
1517 */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03001518void intel_flush_display_plane(struct drm_i915_private *dev_priv,
Keith Packardd74362c2011-07-28 14:47:14 -07001519 enum plane plane)
1520{
1521 I915_WRITE(DSPADDR(plane), I915_READ(DSPADDR(plane)));
1522 I915_WRITE(DSPSURF(plane), I915_READ(DSPSURF(plane)));
1523}
1524
Jesse Barnesb24e7172011-01-04 15:09:30 -08001525/**
1526 * intel_enable_plane - enable a display plane on a given pipe
1527 * @dev_priv: i915 private structure
1528 * @plane: plane to enable
1529 * @pipe: pipe being fed
1530 *
1531 * Enable @plane on @pipe, making sure that @pipe is running first.
1532 */
1533static void intel_enable_plane(struct drm_i915_private *dev_priv,
1534 enum plane plane, enum pipe pipe)
1535{
1536 int reg;
1537 u32 val;
1538
1539 /* If the pipe isn't enabled, we can't pump pixels and may hang */
1540 assert_pipe_enabled(dev_priv, pipe);
1541
1542 reg = DSPCNTR(plane);
1543 val = I915_READ(reg);
Chris Wilson00d70b12011-03-17 07:18:29 +00001544 if (val & DISPLAY_PLANE_ENABLE)
1545 return;
1546
1547 I915_WRITE(reg, val | DISPLAY_PLANE_ENABLE);
Keith Packardd74362c2011-07-28 14:47:14 -07001548 intel_flush_display_plane(dev_priv, plane);
Jesse Barnesb24e7172011-01-04 15:09:30 -08001549 intel_wait_for_vblank(dev_priv->dev, pipe);
1550}
1551
Jesse Barnesb24e7172011-01-04 15:09:30 -08001552/**
1553 * intel_disable_plane - disable a display plane
1554 * @dev_priv: i915 private structure
1555 * @plane: plane to disable
1556 * @pipe: pipe consuming the data
1557 *
1558 * Disable @plane; should be an independent operation.
1559 */
1560static void intel_disable_plane(struct drm_i915_private *dev_priv,
1561 enum plane plane, enum pipe pipe)
1562{
1563 int reg;
1564 u32 val;
1565
1566 reg = DSPCNTR(plane);
1567 val = I915_READ(reg);
Chris Wilson00d70b12011-03-17 07:18:29 +00001568 if ((val & DISPLAY_PLANE_ENABLE) == 0)
1569 return;
1570
1571 I915_WRITE(reg, val & ~DISPLAY_PLANE_ENABLE);
Jesse Barnesb24e7172011-01-04 15:09:30 -08001572 intel_flush_display_plane(dev_priv, plane);
1573 intel_wait_for_vblank(dev_priv->dev, pipe);
1574}
1575
Jesse Barnes47a05ec2011-02-07 13:46:40 -08001576static void disable_pch_dp(struct drm_i915_private *dev_priv,
Keith Packardf0575e92011-07-25 22:12:43 -07001577 enum pipe pipe, int reg, u32 port_sel)
Jesse Barnes47a05ec2011-02-07 13:46:40 -08001578{
1579 u32 val = I915_READ(reg);
Keith Packard4e634382011-08-06 10:39:45 -07001580 if (dp_pipe_enabled(dev_priv, pipe, port_sel, val)) {
Keith Packardf0575e92011-07-25 22:12:43 -07001581 DRM_DEBUG_KMS("Disabling pch dp %x on pipe %d\n", reg, pipe);
Jesse Barnes47a05ec2011-02-07 13:46:40 -08001582 I915_WRITE(reg, val & ~DP_PORT_EN);
Keith Packardf0575e92011-07-25 22:12:43 -07001583 }
Jesse Barnes47a05ec2011-02-07 13:46:40 -08001584}
1585
1586static void disable_pch_hdmi(struct drm_i915_private *dev_priv,
1587 enum pipe pipe, int reg)
1588{
1589 u32 val = I915_READ(reg);
Keith Packard1519b992011-08-06 10:35:34 -07001590 if (hdmi_pipe_enabled(dev_priv, val, pipe)) {
Keith Packardf0575e92011-07-25 22:12:43 -07001591 DRM_DEBUG_KMS("Disabling pch HDMI %x on pipe %d\n",
1592 reg, pipe);
Jesse Barnes47a05ec2011-02-07 13:46:40 -08001593 I915_WRITE(reg, val & ~PORT_ENABLE);
Keith Packardf0575e92011-07-25 22:12:43 -07001594 }
Jesse Barnes47a05ec2011-02-07 13:46:40 -08001595}
1596
1597/* Disable any ports connected to this transcoder */
1598static void intel_disable_pch_ports(struct drm_i915_private *dev_priv,
1599 enum pipe pipe)
1600{
1601 u32 reg, val;
1602
1603 val = I915_READ(PCH_PP_CONTROL);
1604 I915_WRITE(PCH_PP_CONTROL, val | PANEL_UNLOCK_REGS);
1605
Keith Packardf0575e92011-07-25 22:12:43 -07001606 disable_pch_dp(dev_priv, pipe, PCH_DP_B, TRANS_DP_PORT_SEL_B);
1607 disable_pch_dp(dev_priv, pipe, PCH_DP_C, TRANS_DP_PORT_SEL_C);
1608 disable_pch_dp(dev_priv, pipe, PCH_DP_D, TRANS_DP_PORT_SEL_D);
Jesse Barnes47a05ec2011-02-07 13:46:40 -08001609
1610 reg = PCH_ADPA;
1611 val = I915_READ(reg);
Keith Packard1519b992011-08-06 10:35:34 -07001612 if (adpa_pipe_enabled(dev_priv, val, pipe))
Jesse Barnes47a05ec2011-02-07 13:46:40 -08001613 I915_WRITE(reg, val & ~ADPA_DAC_ENABLE);
1614
1615 reg = PCH_LVDS;
1616 val = I915_READ(reg);
Keith Packard1519b992011-08-06 10:35:34 -07001617 if (lvds_pipe_enabled(dev_priv, val, pipe)) {
1618 DRM_DEBUG_KMS("disable lvds on pipe %d val 0x%08x\n", pipe, val);
Jesse Barnes47a05ec2011-02-07 13:46:40 -08001619 I915_WRITE(reg, val & ~LVDS_PORT_EN);
1620 POSTING_READ(reg);
1621 udelay(100);
1622 }
1623
1624 disable_pch_hdmi(dev_priv, pipe, HDMIB);
1625 disable_pch_hdmi(dev_priv, pipe, HDMIC);
1626 disable_pch_hdmi(dev_priv, pipe, HDMID);
1627}
1628
Chris Wilson127bd2a2010-07-23 23:32:05 +01001629int
Chris Wilson48b956c2010-09-14 12:50:34 +01001630intel_pin_and_fence_fb_obj(struct drm_device *dev,
Chris Wilson05394f32010-11-08 19:18:58 +00001631 struct drm_i915_gem_object *obj,
Chris Wilson919926a2010-11-12 13:42:53 +00001632 struct intel_ring_buffer *pipelined)
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001633{
Chris Wilsonce453d82011-02-21 14:43:56 +00001634 struct drm_i915_private *dev_priv = dev->dev_private;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001635 u32 alignment;
1636 int ret;
1637
Chris Wilson05394f32010-11-08 19:18:58 +00001638 switch (obj->tiling_mode) {
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001639 case I915_TILING_NONE:
Chris Wilson534843d2010-07-05 18:01:46 +01001640 if (IS_BROADWATER(dev) || IS_CRESTLINE(dev))
1641 alignment = 128 * 1024;
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001642 else if (INTEL_INFO(dev)->gen >= 4)
Chris Wilson534843d2010-07-05 18:01:46 +01001643 alignment = 4 * 1024;
1644 else
1645 alignment = 64 * 1024;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001646 break;
1647 case I915_TILING_X:
1648 /* pin() will align the object as required by fence */
1649 alignment = 0;
1650 break;
1651 case I915_TILING_Y:
1652 /* FIXME: Is this true? */
1653 DRM_ERROR("Y tiled not allowed for scan out buffers\n");
1654 return -EINVAL;
1655 default:
1656 BUG();
1657 }
1658
Chris Wilsonce453d82011-02-21 14:43:56 +00001659 dev_priv->mm.interruptible = false;
Chris Wilson2da3b9b2011-04-14 09:41:17 +01001660 ret = i915_gem_object_pin_to_display_plane(obj, alignment, pipelined);
Chris Wilson48b956c2010-09-14 12:50:34 +01001661 if (ret)
Chris Wilsonce453d82011-02-21 14:43:56 +00001662 goto err_interruptible;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001663
1664 /* Install a fence for tiled scan-out. Pre-i965 always needs a
1665 * fence, whereas 965+ only requires a fence if using
1666 * framebuffer compression. For simplicity, we always install
1667 * a fence as the cost is not that onerous.
1668 */
Chris Wilson06d98132012-04-17 15:31:24 +01001669 ret = i915_gem_object_get_fence(obj);
Chris Wilson9a5a53b2012-03-22 15:10:00 +00001670 if (ret)
1671 goto err_unpin;
Chris Wilson1690e1e2011-12-14 13:57:08 +01001672
Chris Wilson9a5a53b2012-03-22 15:10:00 +00001673 i915_gem_object_pin_fence(obj);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001674
Chris Wilsonce453d82011-02-21 14:43:56 +00001675 dev_priv->mm.interruptible = true;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001676 return 0;
Chris Wilson48b956c2010-09-14 12:50:34 +01001677
1678err_unpin:
1679 i915_gem_object_unpin(obj);
Chris Wilsonce453d82011-02-21 14:43:56 +00001680err_interruptible:
1681 dev_priv->mm.interruptible = true;
Chris Wilson48b956c2010-09-14 12:50:34 +01001682 return ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001683}
1684
Chris Wilson1690e1e2011-12-14 13:57:08 +01001685void intel_unpin_fb_obj(struct drm_i915_gem_object *obj)
1686{
1687 i915_gem_object_unpin_fence(obj);
1688 i915_gem_object_unpin(obj);
1689}
1690
Jesse Barnes17638cd2011-06-24 12:19:23 -07001691static int i9xx_update_plane(struct drm_crtc *crtc, struct drm_framebuffer *fb,
1692 int x, int y)
Jesse Barnes81255562010-08-02 12:07:50 -07001693{
1694 struct drm_device *dev = crtc->dev;
1695 struct drm_i915_private *dev_priv = dev->dev_private;
1696 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1697 struct intel_framebuffer *intel_fb;
Chris Wilson05394f32010-11-08 19:18:58 +00001698 struct drm_i915_gem_object *obj;
Jesse Barnes81255562010-08-02 12:07:50 -07001699 int plane = intel_crtc->plane;
1700 unsigned long Start, Offset;
Jesse Barnes81255562010-08-02 12:07:50 -07001701 u32 dspcntr;
Chris Wilson5eddb702010-09-11 13:48:45 +01001702 u32 reg;
Jesse Barnes81255562010-08-02 12:07:50 -07001703
1704 switch (plane) {
1705 case 0:
1706 case 1:
1707 break;
1708 default:
1709 DRM_ERROR("Can't update plane %d in SAREA\n", plane);
1710 return -EINVAL;
1711 }
1712
1713 intel_fb = to_intel_framebuffer(fb);
1714 obj = intel_fb->obj;
Jesse Barnes81255562010-08-02 12:07:50 -07001715
Chris Wilson5eddb702010-09-11 13:48:45 +01001716 reg = DSPCNTR(plane);
1717 dspcntr = I915_READ(reg);
Jesse Barnes81255562010-08-02 12:07:50 -07001718 /* Mask out pixel format bits in case we change it */
1719 dspcntr &= ~DISPPLANE_PIXFORMAT_MASK;
1720 switch (fb->bits_per_pixel) {
1721 case 8:
1722 dspcntr |= DISPPLANE_8BPP;
1723 break;
1724 case 16:
1725 if (fb->depth == 15)
1726 dspcntr |= DISPPLANE_15_16BPP;
1727 else
1728 dspcntr |= DISPPLANE_16BPP;
1729 break;
1730 case 24:
1731 case 32:
1732 dspcntr |= DISPPLANE_32BPP_NO_ALPHA;
1733 break;
1734 default:
Jesse Barnes17638cd2011-06-24 12:19:23 -07001735 DRM_ERROR("Unknown color depth %d\n", fb->bits_per_pixel);
Jesse Barnes81255562010-08-02 12:07:50 -07001736 return -EINVAL;
1737 }
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001738 if (INTEL_INFO(dev)->gen >= 4) {
Chris Wilson05394f32010-11-08 19:18:58 +00001739 if (obj->tiling_mode != I915_TILING_NONE)
Jesse Barnes81255562010-08-02 12:07:50 -07001740 dspcntr |= DISPPLANE_TILED;
1741 else
1742 dspcntr &= ~DISPPLANE_TILED;
1743 }
1744
Chris Wilson5eddb702010-09-11 13:48:45 +01001745 I915_WRITE(reg, dspcntr);
Jesse Barnes81255562010-08-02 12:07:50 -07001746
Chris Wilson05394f32010-11-08 19:18:58 +00001747 Start = obj->gtt_offset;
Ville Syrjälä01f2c772011-12-20 00:06:49 +02001748 Offset = y * fb->pitches[0] + x * (fb->bits_per_pixel / 8);
Jesse Barnes81255562010-08-02 12:07:50 -07001749
Chris Wilson4e6cfef2010-08-08 13:20:19 +01001750 DRM_DEBUG_KMS("Writing base %08lX %08lX %d %d %d\n",
Ville Syrjälä01f2c772011-12-20 00:06:49 +02001751 Start, Offset, x, y, fb->pitches[0]);
1752 I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]);
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001753 if (INTEL_INFO(dev)->gen >= 4) {
Armin Reese446f2542012-03-30 16:20:16 -07001754 I915_MODIFY_DISPBASE(DSPSURF(plane), Start);
Chris Wilson5eddb702010-09-11 13:48:45 +01001755 I915_WRITE(DSPTILEOFF(plane), (y << 16) | x);
1756 I915_WRITE(DSPADDR(plane), Offset);
1757 } else
1758 I915_WRITE(DSPADDR(plane), Start + Offset);
1759 POSTING_READ(reg);
Jesse Barnes81255562010-08-02 12:07:50 -07001760
Jesse Barnes17638cd2011-06-24 12:19:23 -07001761 return 0;
1762}
1763
1764static int ironlake_update_plane(struct drm_crtc *crtc,
1765 struct drm_framebuffer *fb, int x, int y)
1766{
1767 struct drm_device *dev = crtc->dev;
1768 struct drm_i915_private *dev_priv = dev->dev_private;
1769 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1770 struct intel_framebuffer *intel_fb;
1771 struct drm_i915_gem_object *obj;
1772 int plane = intel_crtc->plane;
1773 unsigned long Start, Offset;
1774 u32 dspcntr;
1775 u32 reg;
1776
1777 switch (plane) {
1778 case 0:
1779 case 1:
Jesse Barnes27f82272011-09-02 12:54:37 -07001780 case 2:
Jesse Barnes17638cd2011-06-24 12:19:23 -07001781 break;
1782 default:
1783 DRM_ERROR("Can't update plane %d in SAREA\n", plane);
1784 return -EINVAL;
1785 }
1786
1787 intel_fb = to_intel_framebuffer(fb);
1788 obj = intel_fb->obj;
1789
1790 reg = DSPCNTR(plane);
1791 dspcntr = I915_READ(reg);
1792 /* Mask out pixel format bits in case we change it */
1793 dspcntr &= ~DISPPLANE_PIXFORMAT_MASK;
1794 switch (fb->bits_per_pixel) {
1795 case 8:
1796 dspcntr |= DISPPLANE_8BPP;
1797 break;
1798 case 16:
1799 if (fb->depth != 16)
1800 return -EINVAL;
1801
1802 dspcntr |= DISPPLANE_16BPP;
1803 break;
1804 case 24:
1805 case 32:
1806 if (fb->depth == 24)
1807 dspcntr |= DISPPLANE_32BPP_NO_ALPHA;
1808 else if (fb->depth == 30)
1809 dspcntr |= DISPPLANE_32BPP_30BIT_NO_ALPHA;
1810 else
1811 return -EINVAL;
1812 break;
1813 default:
1814 DRM_ERROR("Unknown color depth %d\n", fb->bits_per_pixel);
1815 return -EINVAL;
1816 }
1817
1818 if (obj->tiling_mode != I915_TILING_NONE)
1819 dspcntr |= DISPPLANE_TILED;
1820 else
1821 dspcntr &= ~DISPPLANE_TILED;
1822
1823 /* must disable */
1824 dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE;
1825
1826 I915_WRITE(reg, dspcntr);
1827
1828 Start = obj->gtt_offset;
Ville Syrjälä01f2c772011-12-20 00:06:49 +02001829 Offset = y * fb->pitches[0] + x * (fb->bits_per_pixel / 8);
Jesse Barnes17638cd2011-06-24 12:19:23 -07001830
1831 DRM_DEBUG_KMS("Writing base %08lX %08lX %d %d %d\n",
Ville Syrjälä01f2c772011-12-20 00:06:49 +02001832 Start, Offset, x, y, fb->pitches[0]);
1833 I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]);
Armin Reese446f2542012-03-30 16:20:16 -07001834 I915_MODIFY_DISPBASE(DSPSURF(plane), Start);
Jesse Barnes17638cd2011-06-24 12:19:23 -07001835 I915_WRITE(DSPTILEOFF(plane), (y << 16) | x);
1836 I915_WRITE(DSPADDR(plane), Offset);
1837 POSTING_READ(reg);
1838
1839 return 0;
1840}
1841
1842/* Assume fb object is pinned & idle & fenced and just update base pointers */
1843static int
1844intel_pipe_set_base_atomic(struct drm_crtc *crtc, struct drm_framebuffer *fb,
1845 int x, int y, enum mode_set_atomic state)
1846{
1847 struct drm_device *dev = crtc->dev;
1848 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes17638cd2011-06-24 12:19:23 -07001849
Chris Wilson6b8e6ed2012-04-17 15:08:19 +01001850 if (dev_priv->display.disable_fbc)
1851 dev_priv->display.disable_fbc(dev);
Daniel Vetter3dec0092010-08-20 21:40:52 +02001852 intel_increase_pllclock(crtc);
Jesse Barnes81255562010-08-02 12:07:50 -07001853
Chris Wilson6b8e6ed2012-04-17 15:08:19 +01001854 return dev_priv->display.update_plane(crtc, fb, x, y);
Jesse Barnes81255562010-08-02 12:07:50 -07001855}
1856
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001857static int
Chris Wilson14667a42012-04-03 17:58:35 +01001858intel_finish_fb(struct drm_framebuffer *old_fb)
1859{
1860 struct drm_i915_gem_object *obj = to_intel_framebuffer(old_fb)->obj;
1861 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
1862 bool was_interruptible = dev_priv->mm.interruptible;
1863 int ret;
1864
1865 wait_event(dev_priv->pending_flip_queue,
1866 atomic_read(&dev_priv->mm.wedged) ||
1867 atomic_read(&obj->pending_flip) == 0);
1868
1869 /* Big Hammer, we also need to ensure that any pending
1870 * MI_WAIT_FOR_EVENT inside a user batch buffer on the
1871 * current scanout is retired before unpinning the old
1872 * framebuffer.
1873 *
1874 * This should only fail upon a hung GPU, in which case we
1875 * can safely continue.
1876 */
1877 dev_priv->mm.interruptible = false;
1878 ret = i915_gem_object_finish_gpu(obj);
1879 dev_priv->mm.interruptible = was_interruptible;
1880
1881 return ret;
1882}
1883
1884static int
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -05001885intel_pipe_set_base(struct drm_crtc *crtc, int x, int y,
1886 struct drm_framebuffer *old_fb)
Jesse Barnes79e53942008-11-07 14:24:08 -08001887{
1888 struct drm_device *dev = crtc->dev;
Chris Wilson6b8e6ed2012-04-17 15:08:19 +01001889 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -08001890 struct drm_i915_master_private *master_priv;
1891 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001892 int ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08001893
1894 /* no fb bound */
1895 if (!crtc->fb) {
Jesse Barnesa5071c22011-07-19 15:38:56 -07001896 DRM_ERROR("No FB bound\n");
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001897 return 0;
1898 }
1899
Chris Wilson265db952010-09-20 15:41:01 +01001900 switch (intel_crtc->plane) {
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001901 case 0:
1902 case 1:
1903 break;
Jesse Barnes27f82272011-09-02 12:54:37 -07001904 case 2:
1905 if (IS_IVYBRIDGE(dev))
1906 break;
1907 /* fall through otherwise */
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001908 default:
Jesse Barnesa5071c22011-07-19 15:38:56 -07001909 DRM_ERROR("no plane for crtc\n");
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001910 return -EINVAL;
Jesse Barnes79e53942008-11-07 14:24:08 -08001911 }
1912
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001913 mutex_lock(&dev->struct_mutex);
Chris Wilson265db952010-09-20 15:41:01 +01001914 ret = intel_pin_and_fence_fb_obj(dev,
1915 to_intel_framebuffer(crtc->fb)->obj,
Chris Wilson919926a2010-11-12 13:42:53 +00001916 NULL);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001917 if (ret != 0) {
1918 mutex_unlock(&dev->struct_mutex);
Jesse Barnesa5071c22011-07-19 15:38:56 -07001919 DRM_ERROR("pin & fence failed\n");
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001920 return ret;
1921 }
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -05001922
Chris Wilson14667a42012-04-03 17:58:35 +01001923 if (old_fb)
1924 intel_finish_fb(old_fb);
Chris Wilson265db952010-09-20 15:41:01 +01001925
Chris Wilson6b8e6ed2012-04-17 15:08:19 +01001926 ret = dev_priv->display.update_plane(crtc, crtc->fb, x, y);
Chris Wilson4e6cfef2010-08-08 13:20:19 +01001927 if (ret) {
Chris Wilson1690e1e2011-12-14 13:57:08 +01001928 intel_unpin_fb_obj(to_intel_framebuffer(crtc->fb)->obj);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001929 mutex_unlock(&dev->struct_mutex);
Jesse Barnesa5071c22011-07-19 15:38:56 -07001930 DRM_ERROR("failed to update base address\n");
Chris Wilson4e6cfef2010-08-08 13:20:19 +01001931 return ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08001932 }
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -05001933
Chris Wilsonb7f1de22010-12-14 16:09:31 +00001934 if (old_fb) {
1935 intel_wait_for_vblank(dev, intel_crtc->pipe);
Chris Wilson1690e1e2011-12-14 13:57:08 +01001936 intel_unpin_fb_obj(to_intel_framebuffer(old_fb)->obj);
Chris Wilsonb7f1de22010-12-14 16:09:31 +00001937 }
Jesse Barnes652c3932009-08-17 13:31:43 -07001938
Chris Wilson6b8e6ed2012-04-17 15:08:19 +01001939 intel_update_fbc(dev);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001940 mutex_unlock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -08001941
1942 if (!dev->primary->master)
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001943 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08001944
1945 master_priv = dev->primary->master->driver_priv;
1946 if (!master_priv->sarea_priv)
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001947 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08001948
Chris Wilson265db952010-09-20 15:41:01 +01001949 if (intel_crtc->pipe) {
Jesse Barnes79e53942008-11-07 14:24:08 -08001950 master_priv->sarea_priv->pipeB_x = x;
1951 master_priv->sarea_priv->pipeB_y = y;
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001952 } else {
1953 master_priv->sarea_priv->pipeA_x = x;
1954 master_priv->sarea_priv->pipeA_y = y;
Jesse Barnes79e53942008-11-07 14:24:08 -08001955 }
Chris Wilson5c3b82e2009-02-11 13:25:09 +00001956
1957 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08001958}
1959
Chris Wilson5eddb702010-09-11 13:48:45 +01001960static void ironlake_set_pll_edp(struct drm_crtc *crtc, int clock)
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001961{
1962 struct drm_device *dev = crtc->dev;
1963 struct drm_i915_private *dev_priv = dev->dev_private;
1964 u32 dpa_ctl;
1965
Zhao Yakui28c97732009-10-09 11:39:41 +08001966 DRM_DEBUG_KMS("eDP PLL enable for clock %d\n", clock);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001967 dpa_ctl = I915_READ(DP_A);
1968 dpa_ctl &= ~DP_PLL_FREQ_MASK;
1969
1970 if (clock < 200000) {
1971 u32 temp;
1972 dpa_ctl |= DP_PLL_FREQ_160MHZ;
1973 /* workaround for 160Mhz:
1974 1) program 0x4600c bits 15:0 = 0x8124
1975 2) program 0x46010 bit 0 = 1
1976 3) program 0x46034 bit 24 = 1
1977 4) program 0x64000 bit 14 = 1
1978 */
1979 temp = I915_READ(0x4600c);
1980 temp &= 0xffff0000;
1981 I915_WRITE(0x4600c, temp | 0x8124);
1982
1983 temp = I915_READ(0x46010);
1984 I915_WRITE(0x46010, temp | 1);
1985
1986 temp = I915_READ(0x46034);
1987 I915_WRITE(0x46034, temp | (1 << 24));
1988 } else {
1989 dpa_ctl |= DP_PLL_FREQ_270MHZ;
1990 }
1991 I915_WRITE(DP_A, dpa_ctl);
1992
Chris Wilson5eddb702010-09-11 13:48:45 +01001993 POSTING_READ(DP_A);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001994 udelay(500);
1995}
1996
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08001997static void intel_fdi_normal_train(struct drm_crtc *crtc)
1998{
1999 struct drm_device *dev = crtc->dev;
2000 struct drm_i915_private *dev_priv = dev->dev_private;
2001 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2002 int pipe = intel_crtc->pipe;
2003 u32 reg, temp;
2004
2005 /* enable normal train */
2006 reg = FDI_TX_CTL(pipe);
2007 temp = I915_READ(reg);
Keith Packard61e499b2011-05-17 16:13:52 -07002008 if (IS_IVYBRIDGE(dev)) {
Jesse Barnes357555c2011-04-28 15:09:55 -07002009 temp &= ~FDI_LINK_TRAIN_NONE_IVB;
2010 temp |= FDI_LINK_TRAIN_NONE_IVB | FDI_TX_ENHANCE_FRAME_ENABLE;
Keith Packard61e499b2011-05-17 16:13:52 -07002011 } else {
2012 temp &= ~FDI_LINK_TRAIN_NONE;
2013 temp |= FDI_LINK_TRAIN_NONE | FDI_TX_ENHANCE_FRAME_ENABLE;
Jesse Barnes357555c2011-04-28 15:09:55 -07002014 }
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08002015 I915_WRITE(reg, temp);
2016
2017 reg = FDI_RX_CTL(pipe);
2018 temp = I915_READ(reg);
2019 if (HAS_PCH_CPT(dev)) {
2020 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2021 temp |= FDI_LINK_TRAIN_NORMAL_CPT;
2022 } else {
2023 temp &= ~FDI_LINK_TRAIN_NONE;
2024 temp |= FDI_LINK_TRAIN_NONE;
2025 }
2026 I915_WRITE(reg, temp | FDI_RX_ENHANCE_FRAME_ENABLE);
2027
2028 /* wait one idle pattern time */
2029 POSTING_READ(reg);
2030 udelay(1000);
Jesse Barnes357555c2011-04-28 15:09:55 -07002031
2032 /* IVB wants error correction enabled */
2033 if (IS_IVYBRIDGE(dev))
2034 I915_WRITE(reg, I915_READ(reg) | FDI_FS_ERRC_ENABLE |
2035 FDI_FE_ERRC_ENABLE);
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08002036}
2037
Jesse Barnes291427f2011-07-29 12:42:37 -07002038static void cpt_phase_pointer_enable(struct drm_device *dev, int pipe)
2039{
2040 struct drm_i915_private *dev_priv = dev->dev_private;
2041 u32 flags = I915_READ(SOUTH_CHICKEN1);
2042
2043 flags |= FDI_PHASE_SYNC_OVR(pipe);
2044 I915_WRITE(SOUTH_CHICKEN1, flags); /* once to unlock... */
2045 flags |= FDI_PHASE_SYNC_EN(pipe);
2046 I915_WRITE(SOUTH_CHICKEN1, flags); /* then again to enable */
2047 POSTING_READ(SOUTH_CHICKEN1);
2048}
2049
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002050/* The FDI link training functions for ILK/Ibexpeak. */
2051static void ironlake_fdi_link_train(struct drm_crtc *crtc)
2052{
2053 struct drm_device *dev = crtc->dev;
2054 struct drm_i915_private *dev_priv = dev->dev_private;
2055 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2056 int pipe = intel_crtc->pipe;
Jesse Barnes0fc932b2011-01-04 15:09:37 -08002057 int plane = intel_crtc->plane;
Chris Wilson5eddb702010-09-11 13:48:45 +01002058 u32 reg, temp, tries;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002059
Jesse Barnes0fc932b2011-01-04 15:09:37 -08002060 /* FDI needs bits from pipe & plane first */
2061 assert_pipe_enabled(dev_priv, pipe);
2062 assert_plane_enabled(dev_priv, plane);
2063
Adam Jacksone1a44742010-06-25 15:32:14 -04002064 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
2065 for train result */
Chris Wilson5eddb702010-09-11 13:48:45 +01002066 reg = FDI_RX_IMR(pipe);
2067 temp = I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04002068 temp &= ~FDI_RX_SYMBOL_LOCK;
2069 temp &= ~FDI_RX_BIT_LOCK;
Chris Wilson5eddb702010-09-11 13:48:45 +01002070 I915_WRITE(reg, temp);
2071 I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04002072 udelay(150);
2073
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002074 /* enable CPU FDI TX and PCH FDI RX */
Chris Wilson5eddb702010-09-11 13:48:45 +01002075 reg = FDI_TX_CTL(pipe);
2076 temp = I915_READ(reg);
Adam Jackson77ffb592010-04-12 11:38:44 -04002077 temp &= ~(7 << 19);
2078 temp |= (intel_crtc->fdi_lanes - 1) << 19;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002079 temp &= ~FDI_LINK_TRAIN_NONE;
2080 temp |= FDI_LINK_TRAIN_PATTERN_1;
Chris Wilson5eddb702010-09-11 13:48:45 +01002081 I915_WRITE(reg, temp | FDI_TX_ENABLE);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002082
Chris Wilson5eddb702010-09-11 13:48:45 +01002083 reg = FDI_RX_CTL(pipe);
2084 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002085 temp &= ~FDI_LINK_TRAIN_NONE;
2086 temp |= FDI_LINK_TRAIN_PATTERN_1;
Chris Wilson5eddb702010-09-11 13:48:45 +01002087 I915_WRITE(reg, temp | FDI_RX_ENABLE);
2088
2089 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002090 udelay(150);
2091
Jesse Barnes5b2adf82010-10-07 16:01:15 -07002092 /* Ironlake workaround, enable clock pointer after FDI enable*/
Jesse Barnes6f06ce12011-01-04 15:09:38 -08002093 if (HAS_PCH_IBX(dev)) {
2094 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR);
2095 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR |
2096 FDI_RX_PHASE_SYNC_POINTER_EN);
2097 }
Jesse Barnes5b2adf82010-10-07 16:01:15 -07002098
Chris Wilson5eddb702010-09-11 13:48:45 +01002099 reg = FDI_RX_IIR(pipe);
Adam Jacksone1a44742010-06-25 15:32:14 -04002100 for (tries = 0; tries < 5; tries++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002101 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002102 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2103
2104 if ((temp & FDI_RX_BIT_LOCK)) {
2105 DRM_DEBUG_KMS("FDI train 1 done.\n");
Chris Wilson5eddb702010-09-11 13:48:45 +01002106 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002107 break;
2108 }
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002109 }
Adam Jacksone1a44742010-06-25 15:32:14 -04002110 if (tries == 5)
Chris Wilson5eddb702010-09-11 13:48:45 +01002111 DRM_ERROR("FDI train 1 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002112
2113 /* Train 2 */
Chris Wilson5eddb702010-09-11 13:48:45 +01002114 reg = FDI_TX_CTL(pipe);
2115 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002116 temp &= ~FDI_LINK_TRAIN_NONE;
2117 temp |= FDI_LINK_TRAIN_PATTERN_2;
Chris Wilson5eddb702010-09-11 13:48:45 +01002118 I915_WRITE(reg, temp);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002119
Chris Wilson5eddb702010-09-11 13:48:45 +01002120 reg = FDI_RX_CTL(pipe);
2121 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002122 temp &= ~FDI_LINK_TRAIN_NONE;
2123 temp |= FDI_LINK_TRAIN_PATTERN_2;
Chris Wilson5eddb702010-09-11 13:48:45 +01002124 I915_WRITE(reg, temp);
2125
2126 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002127 udelay(150);
2128
Chris Wilson5eddb702010-09-11 13:48:45 +01002129 reg = FDI_RX_IIR(pipe);
Adam Jacksone1a44742010-06-25 15:32:14 -04002130 for (tries = 0; tries < 5; tries++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002131 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002132 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2133
2134 if (temp & FDI_RX_SYMBOL_LOCK) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002135 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002136 DRM_DEBUG_KMS("FDI train 2 done.\n");
2137 break;
2138 }
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002139 }
Adam Jacksone1a44742010-06-25 15:32:14 -04002140 if (tries == 5)
Chris Wilson5eddb702010-09-11 13:48:45 +01002141 DRM_ERROR("FDI train 2 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002142
2143 DRM_DEBUG_KMS("FDI train done\n");
Jesse Barnes5c5313c2010-10-07 16:01:11 -07002144
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002145}
2146
Akshay Joshi0206e352011-08-16 15:34:10 -04002147static const int snb_b_fdi_train_param[] = {
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002148 FDI_LINK_TRAIN_400MV_0DB_SNB_B,
2149 FDI_LINK_TRAIN_400MV_6DB_SNB_B,
2150 FDI_LINK_TRAIN_600MV_3_5DB_SNB_B,
2151 FDI_LINK_TRAIN_800MV_0DB_SNB_B,
2152};
2153
2154/* The FDI link training functions for SNB/Cougarpoint. */
2155static void gen6_fdi_link_train(struct drm_crtc *crtc)
2156{
2157 struct drm_device *dev = crtc->dev;
2158 struct drm_i915_private *dev_priv = dev->dev_private;
2159 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2160 int pipe = intel_crtc->pipe;
Sean Paulfa37d392012-03-02 12:53:39 -05002161 u32 reg, temp, i, retry;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002162
Adam Jacksone1a44742010-06-25 15:32:14 -04002163 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
2164 for train result */
Chris Wilson5eddb702010-09-11 13:48:45 +01002165 reg = FDI_RX_IMR(pipe);
2166 temp = I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04002167 temp &= ~FDI_RX_SYMBOL_LOCK;
2168 temp &= ~FDI_RX_BIT_LOCK;
Chris Wilson5eddb702010-09-11 13:48:45 +01002169 I915_WRITE(reg, temp);
2170
2171 POSTING_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04002172 udelay(150);
2173
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002174 /* enable CPU FDI TX and PCH FDI RX */
Chris Wilson5eddb702010-09-11 13:48:45 +01002175 reg = FDI_TX_CTL(pipe);
2176 temp = I915_READ(reg);
Adam Jackson77ffb592010-04-12 11:38:44 -04002177 temp &= ~(7 << 19);
2178 temp |= (intel_crtc->fdi_lanes - 1) << 19;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002179 temp &= ~FDI_LINK_TRAIN_NONE;
2180 temp |= FDI_LINK_TRAIN_PATTERN_1;
2181 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2182 /* SNB-B */
2183 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
Chris Wilson5eddb702010-09-11 13:48:45 +01002184 I915_WRITE(reg, temp | FDI_TX_ENABLE);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002185
Chris Wilson5eddb702010-09-11 13:48:45 +01002186 reg = FDI_RX_CTL(pipe);
2187 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002188 if (HAS_PCH_CPT(dev)) {
2189 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2190 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
2191 } else {
2192 temp &= ~FDI_LINK_TRAIN_NONE;
2193 temp |= FDI_LINK_TRAIN_PATTERN_1;
2194 }
Chris Wilson5eddb702010-09-11 13:48:45 +01002195 I915_WRITE(reg, temp | FDI_RX_ENABLE);
2196
2197 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002198 udelay(150);
2199
Jesse Barnes291427f2011-07-29 12:42:37 -07002200 if (HAS_PCH_CPT(dev))
2201 cpt_phase_pointer_enable(dev, pipe);
2202
Akshay Joshi0206e352011-08-16 15:34:10 -04002203 for (i = 0; i < 4; i++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002204 reg = FDI_TX_CTL(pipe);
2205 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002206 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2207 temp |= snb_b_fdi_train_param[i];
Chris Wilson5eddb702010-09-11 13:48:45 +01002208 I915_WRITE(reg, temp);
2209
2210 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002211 udelay(500);
2212
Sean Paulfa37d392012-03-02 12:53:39 -05002213 for (retry = 0; retry < 5; retry++) {
2214 reg = FDI_RX_IIR(pipe);
2215 temp = I915_READ(reg);
2216 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2217 if (temp & FDI_RX_BIT_LOCK) {
2218 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
2219 DRM_DEBUG_KMS("FDI train 1 done.\n");
2220 break;
2221 }
2222 udelay(50);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002223 }
Sean Paulfa37d392012-03-02 12:53:39 -05002224 if (retry < 5)
2225 break;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002226 }
2227 if (i == 4)
Chris Wilson5eddb702010-09-11 13:48:45 +01002228 DRM_ERROR("FDI train 1 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002229
2230 /* Train 2 */
Chris Wilson5eddb702010-09-11 13:48:45 +01002231 reg = FDI_TX_CTL(pipe);
2232 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002233 temp &= ~FDI_LINK_TRAIN_NONE;
2234 temp |= FDI_LINK_TRAIN_PATTERN_2;
2235 if (IS_GEN6(dev)) {
2236 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2237 /* SNB-B */
2238 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
2239 }
Chris Wilson5eddb702010-09-11 13:48:45 +01002240 I915_WRITE(reg, temp);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002241
Chris Wilson5eddb702010-09-11 13:48:45 +01002242 reg = FDI_RX_CTL(pipe);
2243 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002244 if (HAS_PCH_CPT(dev)) {
2245 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2246 temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
2247 } else {
2248 temp &= ~FDI_LINK_TRAIN_NONE;
2249 temp |= FDI_LINK_TRAIN_PATTERN_2;
2250 }
Chris Wilson5eddb702010-09-11 13:48:45 +01002251 I915_WRITE(reg, temp);
2252
2253 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002254 udelay(150);
2255
Akshay Joshi0206e352011-08-16 15:34:10 -04002256 for (i = 0; i < 4; i++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002257 reg = FDI_TX_CTL(pipe);
2258 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002259 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2260 temp |= snb_b_fdi_train_param[i];
Chris Wilson5eddb702010-09-11 13:48:45 +01002261 I915_WRITE(reg, temp);
2262
2263 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002264 udelay(500);
2265
Sean Paulfa37d392012-03-02 12:53:39 -05002266 for (retry = 0; retry < 5; retry++) {
2267 reg = FDI_RX_IIR(pipe);
2268 temp = I915_READ(reg);
2269 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2270 if (temp & FDI_RX_SYMBOL_LOCK) {
2271 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
2272 DRM_DEBUG_KMS("FDI train 2 done.\n");
2273 break;
2274 }
2275 udelay(50);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002276 }
Sean Paulfa37d392012-03-02 12:53:39 -05002277 if (retry < 5)
2278 break;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002279 }
2280 if (i == 4)
Chris Wilson5eddb702010-09-11 13:48:45 +01002281 DRM_ERROR("FDI train 2 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002282
2283 DRM_DEBUG_KMS("FDI train done.\n");
2284}
2285
Jesse Barnes357555c2011-04-28 15:09:55 -07002286/* Manual link training for Ivy Bridge A0 parts */
2287static void ivb_manual_fdi_link_train(struct drm_crtc *crtc)
2288{
2289 struct drm_device *dev = crtc->dev;
2290 struct drm_i915_private *dev_priv = dev->dev_private;
2291 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2292 int pipe = intel_crtc->pipe;
2293 u32 reg, temp, i;
2294
2295 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
2296 for train result */
2297 reg = FDI_RX_IMR(pipe);
2298 temp = I915_READ(reg);
2299 temp &= ~FDI_RX_SYMBOL_LOCK;
2300 temp &= ~FDI_RX_BIT_LOCK;
2301 I915_WRITE(reg, temp);
2302
2303 POSTING_READ(reg);
2304 udelay(150);
2305
2306 /* enable CPU FDI TX and PCH FDI RX */
2307 reg = FDI_TX_CTL(pipe);
2308 temp = I915_READ(reg);
2309 temp &= ~(7 << 19);
2310 temp |= (intel_crtc->fdi_lanes - 1) << 19;
2311 temp &= ~(FDI_LINK_TRAIN_AUTO | FDI_LINK_TRAIN_NONE_IVB);
2312 temp |= FDI_LINK_TRAIN_PATTERN_1_IVB;
2313 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2314 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
Jesse Barnesc4f9c4c2011-10-10 14:28:52 -07002315 temp |= FDI_COMPOSITE_SYNC;
Jesse Barnes357555c2011-04-28 15:09:55 -07002316 I915_WRITE(reg, temp | FDI_TX_ENABLE);
2317
2318 reg = FDI_RX_CTL(pipe);
2319 temp = I915_READ(reg);
2320 temp &= ~FDI_LINK_TRAIN_AUTO;
2321 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2322 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
Jesse Barnesc4f9c4c2011-10-10 14:28:52 -07002323 temp |= FDI_COMPOSITE_SYNC;
Jesse Barnes357555c2011-04-28 15:09:55 -07002324 I915_WRITE(reg, temp | FDI_RX_ENABLE);
2325
2326 POSTING_READ(reg);
2327 udelay(150);
2328
Jesse Barnes291427f2011-07-29 12:42:37 -07002329 if (HAS_PCH_CPT(dev))
2330 cpt_phase_pointer_enable(dev, pipe);
2331
Akshay Joshi0206e352011-08-16 15:34:10 -04002332 for (i = 0; i < 4; i++) {
Jesse Barnes357555c2011-04-28 15:09:55 -07002333 reg = FDI_TX_CTL(pipe);
2334 temp = I915_READ(reg);
2335 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2336 temp |= snb_b_fdi_train_param[i];
2337 I915_WRITE(reg, temp);
2338
2339 POSTING_READ(reg);
2340 udelay(500);
2341
2342 reg = FDI_RX_IIR(pipe);
2343 temp = I915_READ(reg);
2344 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2345
2346 if (temp & FDI_RX_BIT_LOCK ||
2347 (I915_READ(reg) & FDI_RX_BIT_LOCK)) {
2348 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
2349 DRM_DEBUG_KMS("FDI train 1 done.\n");
2350 break;
2351 }
2352 }
2353 if (i == 4)
2354 DRM_ERROR("FDI train 1 fail!\n");
2355
2356 /* Train 2 */
2357 reg = FDI_TX_CTL(pipe);
2358 temp = I915_READ(reg);
2359 temp &= ~FDI_LINK_TRAIN_NONE_IVB;
2360 temp |= FDI_LINK_TRAIN_PATTERN_2_IVB;
2361 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2362 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
2363 I915_WRITE(reg, temp);
2364
2365 reg = FDI_RX_CTL(pipe);
2366 temp = I915_READ(reg);
2367 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2368 temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
2369 I915_WRITE(reg, temp);
2370
2371 POSTING_READ(reg);
2372 udelay(150);
2373
Akshay Joshi0206e352011-08-16 15:34:10 -04002374 for (i = 0; i < 4; i++) {
Jesse Barnes357555c2011-04-28 15:09:55 -07002375 reg = FDI_TX_CTL(pipe);
2376 temp = I915_READ(reg);
2377 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2378 temp |= snb_b_fdi_train_param[i];
2379 I915_WRITE(reg, temp);
2380
2381 POSTING_READ(reg);
2382 udelay(500);
2383
2384 reg = FDI_RX_IIR(pipe);
2385 temp = I915_READ(reg);
2386 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2387
2388 if (temp & FDI_RX_SYMBOL_LOCK) {
2389 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
2390 DRM_DEBUG_KMS("FDI train 2 done.\n");
2391 break;
2392 }
2393 }
2394 if (i == 4)
2395 DRM_ERROR("FDI train 2 fail!\n");
2396
2397 DRM_DEBUG_KMS("FDI train done.\n");
2398}
2399
2400static void ironlake_fdi_pll_enable(struct drm_crtc *crtc)
Jesse Barnes0e23b992010-09-10 11:10:00 -07002401{
2402 struct drm_device *dev = crtc->dev;
2403 struct drm_i915_private *dev_priv = dev->dev_private;
2404 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2405 int pipe = intel_crtc->pipe;
Chris Wilson5eddb702010-09-11 13:48:45 +01002406 u32 reg, temp;
Jesse Barnes0e23b992010-09-10 11:10:00 -07002407
Jesse Barnesc64e3112010-09-10 11:27:03 -07002408 /* Write the TU size bits so error detection works */
Chris Wilson5eddb702010-09-11 13:48:45 +01002409 I915_WRITE(FDI_RX_TUSIZE1(pipe),
2410 I915_READ(PIPE_DATA_M1(pipe)) & TU_SIZE_MASK);
Jesse Barnesc64e3112010-09-10 11:27:03 -07002411
Jesse Barnes0e23b992010-09-10 11:10:00 -07002412 /* enable PCH FDI RX PLL, wait warmup plus DMI latency */
Chris Wilson5eddb702010-09-11 13:48:45 +01002413 reg = FDI_RX_CTL(pipe);
2414 temp = I915_READ(reg);
2415 temp &= ~((0x7 << 19) | (0x7 << 16));
Jesse Barnes0e23b992010-09-10 11:10:00 -07002416 temp |= (intel_crtc->fdi_lanes - 1) << 19;
Chris Wilson5eddb702010-09-11 13:48:45 +01002417 temp |= (I915_READ(PIPECONF(pipe)) & PIPE_BPC_MASK) << 11;
2418 I915_WRITE(reg, temp | FDI_RX_PLL_ENABLE);
2419
2420 POSTING_READ(reg);
Jesse Barnes0e23b992010-09-10 11:10:00 -07002421 udelay(200);
2422
2423 /* Switch from Rawclk to PCDclk */
Chris Wilson5eddb702010-09-11 13:48:45 +01002424 temp = I915_READ(reg);
2425 I915_WRITE(reg, temp | FDI_PCDCLK);
2426
2427 POSTING_READ(reg);
Jesse Barnes0e23b992010-09-10 11:10:00 -07002428 udelay(200);
2429
2430 /* Enable CPU FDI TX PLL, always on for Ironlake */
Chris Wilson5eddb702010-09-11 13:48:45 +01002431 reg = FDI_TX_CTL(pipe);
2432 temp = I915_READ(reg);
Jesse Barnes0e23b992010-09-10 11:10:00 -07002433 if ((temp & FDI_TX_PLL_ENABLE) == 0) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002434 I915_WRITE(reg, temp | FDI_TX_PLL_ENABLE);
2435
2436 POSTING_READ(reg);
Jesse Barnes0e23b992010-09-10 11:10:00 -07002437 udelay(100);
2438 }
2439}
2440
Jesse Barnes291427f2011-07-29 12:42:37 -07002441static void cpt_phase_pointer_disable(struct drm_device *dev, int pipe)
2442{
2443 struct drm_i915_private *dev_priv = dev->dev_private;
2444 u32 flags = I915_READ(SOUTH_CHICKEN1);
2445
2446 flags &= ~(FDI_PHASE_SYNC_EN(pipe));
2447 I915_WRITE(SOUTH_CHICKEN1, flags); /* once to disable... */
2448 flags &= ~(FDI_PHASE_SYNC_OVR(pipe));
2449 I915_WRITE(SOUTH_CHICKEN1, flags); /* then again to lock */
2450 POSTING_READ(SOUTH_CHICKEN1);
2451}
Jesse Barnes0fc932b2011-01-04 15:09:37 -08002452static void ironlake_fdi_disable(struct drm_crtc *crtc)
2453{
2454 struct drm_device *dev = crtc->dev;
2455 struct drm_i915_private *dev_priv = dev->dev_private;
2456 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2457 int pipe = intel_crtc->pipe;
2458 u32 reg, temp;
2459
2460 /* disable CPU FDI tx and PCH FDI rx */
2461 reg = FDI_TX_CTL(pipe);
2462 temp = I915_READ(reg);
2463 I915_WRITE(reg, temp & ~FDI_TX_ENABLE);
2464 POSTING_READ(reg);
2465
2466 reg = FDI_RX_CTL(pipe);
2467 temp = I915_READ(reg);
2468 temp &= ~(0x7 << 16);
2469 temp |= (I915_READ(PIPECONF(pipe)) & PIPE_BPC_MASK) << 11;
2470 I915_WRITE(reg, temp & ~FDI_RX_ENABLE);
2471
2472 POSTING_READ(reg);
2473 udelay(100);
2474
2475 /* Ironlake workaround, disable clock pointer after downing FDI */
Jesse Barnes6f06ce12011-01-04 15:09:38 -08002476 if (HAS_PCH_IBX(dev)) {
2477 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR);
Jesse Barnes0fc932b2011-01-04 15:09:37 -08002478 I915_WRITE(FDI_RX_CHICKEN(pipe),
2479 I915_READ(FDI_RX_CHICKEN(pipe) &
Jesse Barnes6f06ce12011-01-04 15:09:38 -08002480 ~FDI_RX_PHASE_SYNC_POINTER_EN));
Jesse Barnes291427f2011-07-29 12:42:37 -07002481 } else if (HAS_PCH_CPT(dev)) {
2482 cpt_phase_pointer_disable(dev, pipe);
Jesse Barnes6f06ce12011-01-04 15:09:38 -08002483 }
Jesse Barnes0fc932b2011-01-04 15:09:37 -08002484
2485 /* still set train pattern 1 */
2486 reg = FDI_TX_CTL(pipe);
2487 temp = I915_READ(reg);
2488 temp &= ~FDI_LINK_TRAIN_NONE;
2489 temp |= FDI_LINK_TRAIN_PATTERN_1;
2490 I915_WRITE(reg, temp);
2491
2492 reg = FDI_RX_CTL(pipe);
2493 temp = I915_READ(reg);
2494 if (HAS_PCH_CPT(dev)) {
2495 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2496 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
2497 } else {
2498 temp &= ~FDI_LINK_TRAIN_NONE;
2499 temp |= FDI_LINK_TRAIN_PATTERN_1;
2500 }
2501 /* BPC in FDI rx is consistent with that in PIPECONF */
2502 temp &= ~(0x07 << 16);
2503 temp |= (I915_READ(PIPECONF(pipe)) & PIPE_BPC_MASK) << 11;
2504 I915_WRITE(reg, temp);
2505
2506 POSTING_READ(reg);
2507 udelay(100);
2508}
2509
Chris Wilson6b383a72010-09-13 13:54:26 +01002510/*
2511 * When we disable a pipe, we need to clear any pending scanline wait events
2512 * to avoid hanging the ring, which we assume we are waiting on.
2513 */
2514static void intel_clear_scanline_wait(struct drm_device *dev)
2515{
2516 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson8168bd42010-11-11 17:54:52 +00002517 struct intel_ring_buffer *ring;
Chris Wilson6b383a72010-09-13 13:54:26 +01002518 u32 tmp;
2519
2520 if (IS_GEN2(dev))
2521 /* Can't break the hang on i8xx */
2522 return;
2523
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002524 ring = LP_RING(dev_priv);
Chris Wilson8168bd42010-11-11 17:54:52 +00002525 tmp = I915_READ_CTL(ring);
2526 if (tmp & RING_WAIT)
2527 I915_WRITE_CTL(ring, tmp);
Chris Wilson6b383a72010-09-13 13:54:26 +01002528}
2529
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01002530static void intel_crtc_wait_for_pending_flips(struct drm_crtc *crtc)
2531{
Chris Wilson0f911282012-04-17 10:05:38 +01002532 struct drm_device *dev = crtc->dev;
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01002533
2534 if (crtc->fb == NULL)
2535 return;
2536
Chris Wilson0f911282012-04-17 10:05:38 +01002537 mutex_lock(&dev->struct_mutex);
2538 intel_finish_fb(crtc->fb);
2539 mutex_unlock(&dev->struct_mutex);
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01002540}
2541
Jesse Barnes040484a2011-01-03 12:14:26 -08002542static bool intel_crtc_driving_pch(struct drm_crtc *crtc)
2543{
2544 struct drm_device *dev = crtc->dev;
2545 struct drm_mode_config *mode_config = &dev->mode_config;
2546 struct intel_encoder *encoder;
2547
2548 /*
2549 * If there's a non-PCH eDP on this crtc, it must be DP_A, and that
2550 * must be driven by its own crtc; no sharing is possible.
2551 */
2552 list_for_each_entry(encoder, &mode_config->encoder_list, base.head) {
2553 if (encoder->base.crtc != crtc)
2554 continue;
2555
2556 switch (encoder->type) {
2557 case INTEL_OUTPUT_EDP:
2558 if (!intel_encoder_is_pch_edp(&encoder->base))
2559 return false;
2560 continue;
2561 }
2562 }
2563
2564 return true;
2565}
2566
Jesse Barnesf67a5592011-01-05 10:31:48 -08002567/*
2568 * Enable PCH resources required for PCH ports:
2569 * - PCH PLLs
2570 * - FDI training & RX/TX
2571 * - update transcoder timings
2572 * - DP transcoding bits
2573 * - transcoder
2574 */
2575static void ironlake_pch_enable(struct drm_crtc *crtc)
Jesse Barnes79e53942008-11-07 14:24:08 -08002576{
2577 struct drm_device *dev = crtc->dev;
Zhenyu Wang2c072452009-06-05 15:38:42 +08002578 struct drm_i915_private *dev_priv = dev->dev_private;
2579 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2580 int pipe = intel_crtc->pipe;
Jesse Barnes4b645f12011-10-12 09:51:31 -07002581 u32 reg, temp, transc_sel;
Jesse Barnes6be4a602010-09-10 10:26:01 -07002582
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002583 /* For PCH output, training FDI link */
Jesse Barnes674cf962011-04-28 14:27:04 -07002584 dev_priv->display.fdi_link_train(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002585
Jesse Barnes92f25842011-01-04 15:09:34 -08002586 intel_enable_pch_pll(dev_priv, pipe);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002587
2588 if (HAS_PCH_CPT(dev)) {
Jesse Barnes4b645f12011-10-12 09:51:31 -07002589 transc_sel = intel_crtc->use_pll_a ? TRANSC_DPLLA_SEL :
2590 TRANSC_DPLLB_SEL;
2591
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002592 /* Be sure PCH DPLL SEL is set */
2593 temp = I915_READ(PCH_DPLL_SEL);
Jesse Barnesd64311a2011-10-12 15:01:33 -07002594 if (pipe == 0) {
2595 temp &= ~(TRANSA_DPLLB_SEL);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002596 temp |= (TRANSA_DPLL_ENABLE | TRANSA_DPLLA_SEL);
Jesse Barnesd64311a2011-10-12 15:01:33 -07002597 } else if (pipe == 1) {
2598 temp &= ~(TRANSB_DPLLB_SEL);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002599 temp |= (TRANSB_DPLL_ENABLE | TRANSB_DPLLB_SEL);
Jesse Barnesd64311a2011-10-12 15:01:33 -07002600 } else if (pipe == 2) {
2601 temp &= ~(TRANSC_DPLLB_SEL);
Jesse Barnes4b645f12011-10-12 09:51:31 -07002602 temp |= (TRANSC_DPLL_ENABLE | transc_sel);
Jesse Barnesd64311a2011-10-12 15:01:33 -07002603 }
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002604 I915_WRITE(PCH_DPLL_SEL, temp);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002605 }
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002606
Jesse Barnesd9b6cb52011-01-04 15:09:35 -08002607 /* set transcoder timing, panel must allow it */
2608 assert_panel_unlocked(dev_priv, pipe);
Chris Wilson5eddb702010-09-11 13:48:45 +01002609 I915_WRITE(TRANS_HTOTAL(pipe), I915_READ(HTOTAL(pipe)));
2610 I915_WRITE(TRANS_HBLANK(pipe), I915_READ(HBLANK(pipe)));
2611 I915_WRITE(TRANS_HSYNC(pipe), I915_READ(HSYNC(pipe)));
2612
2613 I915_WRITE(TRANS_VTOTAL(pipe), I915_READ(VTOTAL(pipe)));
2614 I915_WRITE(TRANS_VBLANK(pipe), I915_READ(VBLANK(pipe)));
2615 I915_WRITE(TRANS_VSYNC(pipe), I915_READ(VSYNC(pipe)));
Daniel Vetter0529a0d2012-01-28 14:49:24 +01002616 I915_WRITE(TRANS_VSYNCSHIFT(pipe), I915_READ(VSYNCSHIFT(pipe)));
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002617
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08002618 intel_fdi_normal_train(crtc);
2619
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002620 /* For PCH DP, enable TRANS_DP_CTL */
2621 if (HAS_PCH_CPT(dev) &&
Keith Packard417e8222011-11-01 19:54:11 -07002622 (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT) ||
2623 intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP))) {
Jesse Barnes9325c9f2011-06-24 12:19:21 -07002624 u32 bpc = (I915_READ(PIPECONF(pipe)) & PIPE_BPC_MASK) >> 5;
Chris Wilson5eddb702010-09-11 13:48:45 +01002625 reg = TRANS_DP_CTL(pipe);
2626 temp = I915_READ(reg);
2627 temp &= ~(TRANS_DP_PORT_SEL_MASK |
Eric Anholt220cad32010-11-18 09:32:58 +08002628 TRANS_DP_SYNC_MASK |
2629 TRANS_DP_BPC_MASK);
Chris Wilson5eddb702010-09-11 13:48:45 +01002630 temp |= (TRANS_DP_OUTPUT_ENABLE |
2631 TRANS_DP_ENH_FRAMING);
Jesse Barnes9325c9f2011-06-24 12:19:21 -07002632 temp |= bpc << 9; /* same format but at 11:9 */
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002633
2634 if (crtc->mode.flags & DRM_MODE_FLAG_PHSYNC)
Chris Wilson5eddb702010-09-11 13:48:45 +01002635 temp |= TRANS_DP_HSYNC_ACTIVE_HIGH;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002636 if (crtc->mode.flags & DRM_MODE_FLAG_PVSYNC)
Chris Wilson5eddb702010-09-11 13:48:45 +01002637 temp |= TRANS_DP_VSYNC_ACTIVE_HIGH;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002638
2639 switch (intel_trans_dp_port_sel(crtc)) {
2640 case PCH_DP_B:
Chris Wilson5eddb702010-09-11 13:48:45 +01002641 temp |= TRANS_DP_PORT_SEL_B;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002642 break;
2643 case PCH_DP_C:
Chris Wilson5eddb702010-09-11 13:48:45 +01002644 temp |= TRANS_DP_PORT_SEL_C;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002645 break;
2646 case PCH_DP_D:
Chris Wilson5eddb702010-09-11 13:48:45 +01002647 temp |= TRANS_DP_PORT_SEL_D;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002648 break;
2649 default:
2650 DRM_DEBUG_KMS("Wrong PCH DP port return. Guess port B\n");
Chris Wilson5eddb702010-09-11 13:48:45 +01002651 temp |= TRANS_DP_PORT_SEL_B;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002652 break;
2653 }
2654
Chris Wilson5eddb702010-09-11 13:48:45 +01002655 I915_WRITE(reg, temp);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002656 }
2657
Jesse Barnes040484a2011-01-03 12:14:26 -08002658 intel_enable_transcoder(dev_priv, pipe);
Jesse Barnesf67a5592011-01-05 10:31:48 -08002659}
2660
Jesse Barnesd4270e52011-10-11 10:43:02 -07002661void intel_cpt_verify_modeset(struct drm_device *dev, int pipe)
2662{
2663 struct drm_i915_private *dev_priv = dev->dev_private;
2664 int dslreg = PIPEDSL(pipe), tc2reg = TRANS_CHICKEN2(pipe);
2665 u32 temp;
2666
2667 temp = I915_READ(dslreg);
2668 udelay(500);
2669 if (wait_for(I915_READ(dslreg) != temp, 5)) {
2670 /* Without this, mode sets may fail silently on FDI */
2671 I915_WRITE(tc2reg, TRANS_AUTOTRAIN_GEN_STALL_DIS);
2672 udelay(250);
2673 I915_WRITE(tc2reg, 0);
2674 if (wait_for(I915_READ(dslreg) != temp, 5))
2675 DRM_ERROR("mode set failed: pipe %d stuck\n", pipe);
2676 }
2677}
2678
Jesse Barnesf67a5592011-01-05 10:31:48 -08002679static void ironlake_crtc_enable(struct drm_crtc *crtc)
2680{
2681 struct drm_device *dev = crtc->dev;
2682 struct drm_i915_private *dev_priv = dev->dev_private;
2683 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2684 int pipe = intel_crtc->pipe;
2685 int plane = intel_crtc->plane;
2686 u32 temp;
2687 bool is_pch_port;
2688
2689 if (intel_crtc->active)
2690 return;
2691
2692 intel_crtc->active = true;
2693 intel_update_watermarks(dev);
2694
2695 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
2696 temp = I915_READ(PCH_LVDS);
2697 if ((temp & LVDS_PORT_EN) == 0)
2698 I915_WRITE(PCH_LVDS, temp | LVDS_PORT_EN);
2699 }
2700
2701 is_pch_port = intel_crtc_driving_pch(crtc);
2702
2703 if (is_pch_port)
Jesse Barnes357555c2011-04-28 15:09:55 -07002704 ironlake_fdi_pll_enable(crtc);
Jesse Barnesf67a5592011-01-05 10:31:48 -08002705 else
2706 ironlake_fdi_disable(crtc);
2707
2708 /* Enable panel fitting for LVDS */
2709 if (dev_priv->pch_pf_size &&
2710 (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) || HAS_eDP)) {
2711 /* Force use of hard-coded filter coefficients
2712 * as some pre-programmed values are broken,
2713 * e.g. x201.
2714 */
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08002715 I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3);
2716 I915_WRITE(PF_WIN_POS(pipe), dev_priv->pch_pf_pos);
2717 I915_WRITE(PF_WIN_SZ(pipe), dev_priv->pch_pf_size);
Jesse Barnesf67a5592011-01-05 10:31:48 -08002718 }
2719
Jesse Barnes9c54c0d2011-06-15 23:32:33 +02002720 /*
2721 * On ILK+ LUT must be loaded before the pipe is running but with
2722 * clocks enabled
2723 */
2724 intel_crtc_load_lut(crtc);
2725
Jesse Barnesf67a5592011-01-05 10:31:48 -08002726 intel_enable_pipe(dev_priv, pipe, is_pch_port);
2727 intel_enable_plane(dev_priv, plane, pipe);
2728
2729 if (is_pch_port)
2730 ironlake_pch_enable(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002731
Ben Widawskyd1ebd8162011-04-25 20:11:50 +01002732 mutex_lock(&dev->struct_mutex);
Chris Wilsonbed4a672010-09-11 10:47:47 +01002733 intel_update_fbc(dev);
Ben Widawskyd1ebd8162011-04-25 20:11:50 +01002734 mutex_unlock(&dev->struct_mutex);
2735
Chris Wilson6b383a72010-09-13 13:54:26 +01002736 intel_crtc_update_cursor(crtc, true);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002737}
2738
2739static void ironlake_crtc_disable(struct drm_crtc *crtc)
2740{
2741 struct drm_device *dev = crtc->dev;
2742 struct drm_i915_private *dev_priv = dev->dev_private;
2743 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2744 int pipe = intel_crtc->pipe;
2745 int plane = intel_crtc->plane;
Chris Wilson5eddb702010-09-11 13:48:45 +01002746 u32 reg, temp;
Jesse Barnes6be4a602010-09-10 10:26:01 -07002747
Chris Wilsonf7abfe82010-09-13 14:19:16 +01002748 if (!intel_crtc->active)
2749 return;
2750
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01002751 intel_crtc_wait_for_pending_flips(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002752 drm_vblank_off(dev, pipe);
Chris Wilson6b383a72010-09-13 13:54:26 +01002753 intel_crtc_update_cursor(crtc, false);
Chris Wilson5eddb702010-09-11 13:48:45 +01002754
Jesse Barnesb24e7172011-01-04 15:09:30 -08002755 intel_disable_plane(dev_priv, plane, pipe);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002756
Chris Wilson973d04f2011-07-08 12:22:37 +01002757 if (dev_priv->cfb_plane == plane)
2758 intel_disable_fbc(dev);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002759
Jesse Barnesb24e7172011-01-04 15:09:30 -08002760 intel_disable_pipe(dev_priv, pipe);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002761
Jesse Barnes6be4a602010-09-10 10:26:01 -07002762 /* Disable PF */
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08002763 I915_WRITE(PF_CTL(pipe), 0);
2764 I915_WRITE(PF_WIN_SZ(pipe), 0);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002765
Jesse Barnes0fc932b2011-01-04 15:09:37 -08002766 ironlake_fdi_disable(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002767
Jesse Barnes47a05ec2011-02-07 13:46:40 -08002768 /* This is a horrible layering violation; we should be doing this in
2769 * the connector/encoder ->prepare instead, but we don't always have
2770 * enough information there about the config to know whether it will
2771 * actually be necessary or just cause undesired flicker.
2772 */
2773 intel_disable_pch_ports(dev_priv, pipe);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002774
Jesse Barnes040484a2011-01-03 12:14:26 -08002775 intel_disable_transcoder(dev_priv, pipe);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002776
Jesse Barnes6be4a602010-09-10 10:26:01 -07002777 if (HAS_PCH_CPT(dev)) {
2778 /* disable TRANS_DP_CTL */
Chris Wilson5eddb702010-09-11 13:48:45 +01002779 reg = TRANS_DP_CTL(pipe);
2780 temp = I915_READ(reg);
2781 temp &= ~(TRANS_DP_OUTPUT_ENABLE | TRANS_DP_PORT_SEL_MASK);
Eric Anholtcb3543c2011-02-02 12:08:07 -08002782 temp |= TRANS_DP_PORT_SEL_NONE;
Chris Wilson5eddb702010-09-11 13:48:45 +01002783 I915_WRITE(reg, temp);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002784
2785 /* disable DPLL_SEL */
2786 temp = I915_READ(PCH_DPLL_SEL);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08002787 switch (pipe) {
2788 case 0:
Jesse Barnesd64311a2011-10-12 15:01:33 -07002789 temp &= ~(TRANSA_DPLL_ENABLE | TRANSA_DPLLB_SEL);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08002790 break;
2791 case 1:
Jesse Barnes6be4a602010-09-10 10:26:01 -07002792 temp &= ~(TRANSB_DPLL_ENABLE | TRANSB_DPLLB_SEL);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08002793 break;
2794 case 2:
Jesse Barnes4b645f12011-10-12 09:51:31 -07002795 /* C shares PLL A or B */
Jesse Barnesd64311a2011-10-12 15:01:33 -07002796 temp &= ~(TRANSC_DPLL_ENABLE | TRANSC_DPLLB_SEL);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08002797 break;
2798 default:
2799 BUG(); /* wtf */
2800 }
Jesse Barnes6be4a602010-09-10 10:26:01 -07002801 I915_WRITE(PCH_DPLL_SEL, temp);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002802 }
2803
2804 /* disable PCH DPLL */
Jesse Barnes4b645f12011-10-12 09:51:31 -07002805 if (!intel_crtc->no_pll)
2806 intel_disable_pch_pll(dev_priv, pipe);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002807
2808 /* Switch from PCDclk to Rawclk */
Chris Wilson5eddb702010-09-11 13:48:45 +01002809 reg = FDI_RX_CTL(pipe);
2810 temp = I915_READ(reg);
2811 I915_WRITE(reg, temp & ~FDI_PCDCLK);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002812
2813 /* Disable CPU FDI TX PLL */
Chris Wilson5eddb702010-09-11 13:48:45 +01002814 reg = FDI_TX_CTL(pipe);
2815 temp = I915_READ(reg);
2816 I915_WRITE(reg, temp & ~FDI_TX_PLL_ENABLE);
2817
2818 POSTING_READ(reg);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002819 udelay(100);
2820
Chris Wilson5eddb702010-09-11 13:48:45 +01002821 reg = FDI_RX_CTL(pipe);
2822 temp = I915_READ(reg);
2823 I915_WRITE(reg, temp & ~FDI_RX_PLL_ENABLE);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002824
2825 /* Wait for the clocks to turn off. */
Chris Wilson5eddb702010-09-11 13:48:45 +01002826 POSTING_READ(reg);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002827 udelay(100);
Chris Wilson6b383a72010-09-13 13:54:26 +01002828
Chris Wilsonf7abfe82010-09-13 14:19:16 +01002829 intel_crtc->active = false;
Chris Wilson6b383a72010-09-13 13:54:26 +01002830 intel_update_watermarks(dev);
Ben Widawskyd1ebd8162011-04-25 20:11:50 +01002831
2832 mutex_lock(&dev->struct_mutex);
Chris Wilson6b383a72010-09-13 13:54:26 +01002833 intel_update_fbc(dev);
2834 intel_clear_scanline_wait(dev);
Ben Widawskyd1ebd8162011-04-25 20:11:50 +01002835 mutex_unlock(&dev->struct_mutex);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002836}
2837
2838static void ironlake_crtc_dpms(struct drm_crtc *crtc, int mode)
2839{
2840 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2841 int pipe = intel_crtc->pipe;
2842 int plane = intel_crtc->plane;
2843
Zhenyu Wang2c072452009-06-05 15:38:42 +08002844 /* XXX: When our outputs are all unaware of DPMS modes other than off
2845 * and on, we should map those modes to DRM_MODE_DPMS_OFF in the CRTC.
2846 */
2847 switch (mode) {
2848 case DRM_MODE_DPMS_ON:
2849 case DRM_MODE_DPMS_STANDBY:
2850 case DRM_MODE_DPMS_SUSPEND:
Chris Wilson868dc582010-08-07 11:01:31 +01002851 DRM_DEBUG_KMS("crtc %d/%d dpms on\n", pipe, plane);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002852 ironlake_crtc_enable(crtc);
Chris Wilson868dc582010-08-07 11:01:31 +01002853 break;
Zhao Yakuib52eb4d2010-06-12 14:32:27 +08002854
Zhenyu Wang2c072452009-06-05 15:38:42 +08002855 case DRM_MODE_DPMS_OFF:
Chris Wilson868dc582010-08-07 11:01:31 +01002856 DRM_DEBUG_KMS("crtc %d/%d dpms off\n", pipe, plane);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002857 ironlake_crtc_disable(crtc);
Zhenyu Wang2c072452009-06-05 15:38:42 +08002858 break;
2859 }
2860}
2861
Daniel Vetter02e792f2009-09-15 22:57:34 +02002862static void intel_crtc_dpms_overlay(struct intel_crtc *intel_crtc, bool enable)
2863{
Daniel Vetter02e792f2009-09-15 22:57:34 +02002864 if (!enable && intel_crtc->overlay) {
Chris Wilson23f09ce2010-08-12 13:53:37 +01002865 struct drm_device *dev = intel_crtc->base.dev;
Chris Wilsonce453d82011-02-21 14:43:56 +00002866 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter03f77ea2009-09-15 22:57:37 +02002867
Chris Wilson23f09ce2010-08-12 13:53:37 +01002868 mutex_lock(&dev->struct_mutex);
Chris Wilsonce453d82011-02-21 14:43:56 +00002869 dev_priv->mm.interruptible = false;
2870 (void) intel_overlay_switch_off(intel_crtc->overlay);
2871 dev_priv->mm.interruptible = true;
Chris Wilson23f09ce2010-08-12 13:53:37 +01002872 mutex_unlock(&dev->struct_mutex);
Daniel Vetter02e792f2009-09-15 22:57:34 +02002873 }
Daniel Vetter02e792f2009-09-15 22:57:34 +02002874
Chris Wilson5dcdbcb2010-08-12 13:50:28 +01002875 /* Let userspace switch the overlay on again. In most cases userspace
2876 * has to recompute where to put it anyway.
2877 */
Daniel Vetter02e792f2009-09-15 22:57:34 +02002878}
2879
Jesse Barnes0b8765c62010-09-10 10:31:34 -07002880static void i9xx_crtc_enable(struct drm_crtc *crtc)
Zhenyu Wang2c072452009-06-05 15:38:42 +08002881{
2882 struct drm_device *dev = crtc->dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08002883 struct drm_i915_private *dev_priv = dev->dev_private;
2884 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2885 int pipe = intel_crtc->pipe;
Jesse Barnes80824002009-09-10 15:28:06 -07002886 int plane = intel_crtc->plane;
Jesse Barnes79e53942008-11-07 14:24:08 -08002887
Chris Wilsonf7abfe82010-09-13 14:19:16 +01002888 if (intel_crtc->active)
2889 return;
2890
2891 intel_crtc->active = true;
Chris Wilson6b383a72010-09-13 13:54:26 +01002892 intel_update_watermarks(dev);
2893
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08002894 intel_enable_pll(dev_priv, pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08002895 intel_enable_pipe(dev_priv, pipe, false);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002896 intel_enable_plane(dev_priv, plane, pipe);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07002897
2898 intel_crtc_load_lut(crtc);
Chris Wilsonbed4a672010-09-11 10:47:47 +01002899 intel_update_fbc(dev);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07002900
2901 /* Give the overlay scaler a chance to enable if it's on this pipe */
2902 intel_crtc_dpms_overlay(intel_crtc, true);
Chris Wilson6b383a72010-09-13 13:54:26 +01002903 intel_crtc_update_cursor(crtc, true);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07002904}
2905
2906static void i9xx_crtc_disable(struct drm_crtc *crtc)
2907{
2908 struct drm_device *dev = crtc->dev;
2909 struct drm_i915_private *dev_priv = dev->dev_private;
2910 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2911 int pipe = intel_crtc->pipe;
2912 int plane = intel_crtc->plane;
Jesse Barnes0b8765c62010-09-10 10:31:34 -07002913
Chris Wilsonf7abfe82010-09-13 14:19:16 +01002914 if (!intel_crtc->active)
2915 return;
2916
Jesse Barnes0b8765c62010-09-10 10:31:34 -07002917 /* Give the overlay scaler a chance to disable if it's on this pipe */
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01002918 intel_crtc_wait_for_pending_flips(crtc);
2919 drm_vblank_off(dev, pipe);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07002920 intel_crtc_dpms_overlay(intel_crtc, false);
Chris Wilson6b383a72010-09-13 13:54:26 +01002921 intel_crtc_update_cursor(crtc, false);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07002922
Chris Wilson973d04f2011-07-08 12:22:37 +01002923 if (dev_priv->cfb_plane == plane)
2924 intel_disable_fbc(dev);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07002925
Jesse Barnesb24e7172011-01-04 15:09:30 -08002926 intel_disable_plane(dev_priv, plane, pipe);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002927 intel_disable_pipe(dev_priv, pipe);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08002928 intel_disable_pll(dev_priv, pipe);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07002929
Chris Wilsonf7abfe82010-09-13 14:19:16 +01002930 intel_crtc->active = false;
Chris Wilson6b383a72010-09-13 13:54:26 +01002931 intel_update_fbc(dev);
2932 intel_update_watermarks(dev);
2933 intel_clear_scanline_wait(dev);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07002934}
2935
2936static void i9xx_crtc_dpms(struct drm_crtc *crtc, int mode)
2937{
Jesse Barnes79e53942008-11-07 14:24:08 -08002938 /* XXX: When our outputs are all unaware of DPMS modes other than off
2939 * and on, we should map those modes to DRM_MODE_DPMS_OFF in the CRTC.
2940 */
2941 switch (mode) {
2942 case DRM_MODE_DPMS_ON:
2943 case DRM_MODE_DPMS_STANDBY:
2944 case DRM_MODE_DPMS_SUSPEND:
Jesse Barnes0b8765c62010-09-10 10:31:34 -07002945 i9xx_crtc_enable(crtc);
2946 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08002947 case DRM_MODE_DPMS_OFF:
Jesse Barnes0b8765c62010-09-10 10:31:34 -07002948 i9xx_crtc_disable(crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08002949 break;
2950 }
Zhenyu Wang2c072452009-06-05 15:38:42 +08002951}
2952
2953/**
2954 * Sets the power management mode of the pipe and plane.
Zhenyu Wang2c072452009-06-05 15:38:42 +08002955 */
2956static void intel_crtc_dpms(struct drm_crtc *crtc, int mode)
2957{
2958 struct drm_device *dev = crtc->dev;
Jesse Barnese70236a2009-09-21 10:42:27 -07002959 struct drm_i915_private *dev_priv = dev->dev_private;
Zhenyu Wang2c072452009-06-05 15:38:42 +08002960 struct drm_i915_master_private *master_priv;
2961 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2962 int pipe = intel_crtc->pipe;
2963 bool enabled;
2964
Chris Wilson032d2a02010-09-06 16:17:22 +01002965 if (intel_crtc->dpms_mode == mode)
2966 return;
2967
Chris Wilsondebcadd2010-08-07 11:01:33 +01002968 intel_crtc->dpms_mode = mode;
Chris Wilsondebcadd2010-08-07 11:01:33 +01002969
Jesse Barnese70236a2009-09-21 10:42:27 -07002970 dev_priv->display.dpms(crtc, mode);
Jesse Barnes79e53942008-11-07 14:24:08 -08002971
2972 if (!dev->primary->master)
2973 return;
2974
2975 master_priv = dev->primary->master->driver_priv;
2976 if (!master_priv->sarea_priv)
2977 return;
2978
2979 enabled = crtc->enabled && mode != DRM_MODE_DPMS_OFF;
2980
2981 switch (pipe) {
2982 case 0:
2983 master_priv->sarea_priv->pipeA_w = enabled ? crtc->mode.hdisplay : 0;
2984 master_priv->sarea_priv->pipeA_h = enabled ? crtc->mode.vdisplay : 0;
2985 break;
2986 case 1:
2987 master_priv->sarea_priv->pipeB_w = enabled ? crtc->mode.hdisplay : 0;
2988 master_priv->sarea_priv->pipeB_h = enabled ? crtc->mode.vdisplay : 0;
2989 break;
2990 default:
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08002991 DRM_ERROR("Can't update pipe %c in SAREA\n", pipe_name(pipe));
Jesse Barnes79e53942008-11-07 14:24:08 -08002992 break;
2993 }
Jesse Barnes79e53942008-11-07 14:24:08 -08002994}
2995
Chris Wilsoncdd59982010-09-08 16:30:16 +01002996static void intel_crtc_disable(struct drm_crtc *crtc)
2997{
2998 struct drm_crtc_helper_funcs *crtc_funcs = crtc->helper_private;
2999 struct drm_device *dev = crtc->dev;
3000
3001 crtc_funcs->dpms(crtc, DRM_MODE_DPMS_OFF);
Chris Wilson931872f2012-01-16 23:01:13 +00003002 assert_plane_disabled(dev->dev_private, to_intel_crtc(crtc)->plane);
3003 assert_pipe_disabled(dev->dev_private, to_intel_crtc(crtc)->pipe);
Chris Wilsoncdd59982010-09-08 16:30:16 +01003004
3005 if (crtc->fb) {
3006 mutex_lock(&dev->struct_mutex);
Chris Wilson1690e1e2011-12-14 13:57:08 +01003007 intel_unpin_fb_obj(to_intel_framebuffer(crtc->fb)->obj);
Chris Wilsoncdd59982010-09-08 16:30:16 +01003008 mutex_unlock(&dev->struct_mutex);
3009 }
3010}
3011
Jesse Barnes7e7d76c2010-09-10 10:47:20 -07003012/* Prepare for a mode set.
3013 *
3014 * Note we could be a lot smarter here. We need to figure out which outputs
3015 * will be enabled, which disabled (in short, how the config will changes)
3016 * and perform the minimum necessary steps to accomplish that, e.g. updating
3017 * watermarks, FBC configuration, making sure PLLs are programmed correctly,
3018 * panel fitting is in the proper state, etc.
3019 */
3020static void i9xx_crtc_prepare(struct drm_crtc *crtc)
Jesse Barnes79e53942008-11-07 14:24:08 -08003021{
Jesse Barnes7e7d76c2010-09-10 10:47:20 -07003022 i9xx_crtc_disable(crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08003023}
3024
Jesse Barnes7e7d76c2010-09-10 10:47:20 -07003025static void i9xx_crtc_commit(struct drm_crtc *crtc)
Jesse Barnes79e53942008-11-07 14:24:08 -08003026{
Jesse Barnes7e7d76c2010-09-10 10:47:20 -07003027 i9xx_crtc_enable(crtc);
Jesse Barnes7e7d76c2010-09-10 10:47:20 -07003028}
3029
3030static void ironlake_crtc_prepare(struct drm_crtc *crtc)
3031{
Jesse Barnes7e7d76c2010-09-10 10:47:20 -07003032 ironlake_crtc_disable(crtc);
Jesse Barnes7e7d76c2010-09-10 10:47:20 -07003033}
3034
3035static void ironlake_crtc_commit(struct drm_crtc *crtc)
3036{
Jesse Barnes7e7d76c2010-09-10 10:47:20 -07003037 ironlake_crtc_enable(crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08003038}
3039
Akshay Joshi0206e352011-08-16 15:34:10 -04003040void intel_encoder_prepare(struct drm_encoder *encoder)
Jesse Barnes79e53942008-11-07 14:24:08 -08003041{
3042 struct drm_encoder_helper_funcs *encoder_funcs = encoder->helper_private;
3043 /* lvds has its own version of prepare see intel_lvds_prepare */
3044 encoder_funcs->dpms(encoder, DRM_MODE_DPMS_OFF);
3045}
3046
Akshay Joshi0206e352011-08-16 15:34:10 -04003047void intel_encoder_commit(struct drm_encoder *encoder)
Jesse Barnes79e53942008-11-07 14:24:08 -08003048{
3049 struct drm_encoder_helper_funcs *encoder_funcs = encoder->helper_private;
Jesse Barnesd4270e52011-10-11 10:43:02 -07003050 struct drm_device *dev = encoder->dev;
3051 struct intel_encoder *intel_encoder = to_intel_encoder(encoder);
3052 struct intel_crtc *intel_crtc = to_intel_crtc(intel_encoder->base.crtc);
3053
Jesse Barnes79e53942008-11-07 14:24:08 -08003054 /* lvds has its own version of commit see intel_lvds_commit */
3055 encoder_funcs->dpms(encoder, DRM_MODE_DPMS_ON);
Jesse Barnesd4270e52011-10-11 10:43:02 -07003056
3057 if (HAS_PCH_CPT(dev))
3058 intel_cpt_verify_modeset(dev, intel_crtc->pipe);
Jesse Barnes79e53942008-11-07 14:24:08 -08003059}
3060
Chris Wilsonea5b2132010-08-04 13:50:23 +01003061void intel_encoder_destroy(struct drm_encoder *encoder)
3062{
Chris Wilson4ef69c72010-09-09 15:14:28 +01003063 struct intel_encoder *intel_encoder = to_intel_encoder(encoder);
Chris Wilsonea5b2132010-08-04 13:50:23 +01003064
Chris Wilsonea5b2132010-08-04 13:50:23 +01003065 drm_encoder_cleanup(encoder);
3066 kfree(intel_encoder);
3067}
3068
Jesse Barnes79e53942008-11-07 14:24:08 -08003069static bool intel_crtc_mode_fixup(struct drm_crtc *crtc,
3070 struct drm_display_mode *mode,
3071 struct drm_display_mode *adjusted_mode)
3072{
Zhenyu Wang2c072452009-06-05 15:38:42 +08003073 struct drm_device *dev = crtc->dev;
Chris Wilson89749352010-09-12 18:25:19 +01003074
Eric Anholtbad720f2009-10-22 16:11:14 -07003075 if (HAS_PCH_SPLIT(dev)) {
Zhenyu Wang2c072452009-06-05 15:38:42 +08003076 /* FDI link clock is fixed at 2.7G */
Jesse Barnes2377b742010-07-07 14:06:43 -07003077 if (mode->clock * 3 > IRONLAKE_FDI_FREQ * 4)
3078 return false;
Zhenyu Wang2c072452009-06-05 15:38:42 +08003079 }
Chris Wilson89749352010-09-12 18:25:19 +01003080
Daniel Vetterca9bfa72012-01-28 14:49:20 +01003081 /* All interlaced capable intel hw wants timings in frames. */
3082 drm_mode_set_crtcinfo(adjusted_mode, 0);
Chris Wilson89749352010-09-12 18:25:19 +01003083
Jesse Barnes79e53942008-11-07 14:24:08 -08003084 return true;
3085}
3086
Jesse Barnes25eb05fc2012-03-28 13:39:23 -07003087static int valleyview_get_display_clock_speed(struct drm_device *dev)
3088{
3089 return 400000; /* FIXME */
3090}
3091
Jesse Barnese70236a2009-09-21 10:42:27 -07003092static int i945_get_display_clock_speed(struct drm_device *dev)
Jesse Barnes79e53942008-11-07 14:24:08 -08003093{
Jesse Barnese70236a2009-09-21 10:42:27 -07003094 return 400000;
3095}
Jesse Barnes79e53942008-11-07 14:24:08 -08003096
Jesse Barnese70236a2009-09-21 10:42:27 -07003097static int i915_get_display_clock_speed(struct drm_device *dev)
3098{
3099 return 333000;
3100}
Jesse Barnes79e53942008-11-07 14:24:08 -08003101
Jesse Barnese70236a2009-09-21 10:42:27 -07003102static int i9xx_misc_get_display_clock_speed(struct drm_device *dev)
3103{
3104 return 200000;
3105}
Jesse Barnes79e53942008-11-07 14:24:08 -08003106
Jesse Barnese70236a2009-09-21 10:42:27 -07003107static int i915gm_get_display_clock_speed(struct drm_device *dev)
3108{
3109 u16 gcfgc = 0;
3110
3111 pci_read_config_word(dev->pdev, GCFGC, &gcfgc);
3112
3113 if (gcfgc & GC_LOW_FREQUENCY_ENABLE)
Jesse Barnes79e53942008-11-07 14:24:08 -08003114 return 133000;
Jesse Barnese70236a2009-09-21 10:42:27 -07003115 else {
3116 switch (gcfgc & GC_DISPLAY_CLOCK_MASK) {
3117 case GC_DISPLAY_CLOCK_333_MHZ:
3118 return 333000;
3119 default:
3120 case GC_DISPLAY_CLOCK_190_200_MHZ:
3121 return 190000;
3122 }
3123 }
3124}
Jesse Barnes79e53942008-11-07 14:24:08 -08003125
Jesse Barnese70236a2009-09-21 10:42:27 -07003126static int i865_get_display_clock_speed(struct drm_device *dev)
3127{
3128 return 266000;
3129}
3130
3131static int i855_get_display_clock_speed(struct drm_device *dev)
3132{
3133 u16 hpllcc = 0;
3134 /* Assume that the hardware is in the high speed state. This
3135 * should be the default.
3136 */
3137 switch (hpllcc & GC_CLOCK_CONTROL_MASK) {
3138 case GC_CLOCK_133_200:
3139 case GC_CLOCK_100_200:
3140 return 200000;
3141 case GC_CLOCK_166_250:
3142 return 250000;
3143 case GC_CLOCK_100_133:
3144 return 133000;
3145 }
3146
3147 /* Shouldn't happen */
3148 return 0;
3149}
3150
3151static int i830_get_display_clock_speed(struct drm_device *dev)
3152{
3153 return 133000;
Jesse Barnes79e53942008-11-07 14:24:08 -08003154}
3155
Zhenyu Wang2c072452009-06-05 15:38:42 +08003156struct fdi_m_n {
3157 u32 tu;
3158 u32 gmch_m;
3159 u32 gmch_n;
3160 u32 link_m;
3161 u32 link_n;
3162};
3163
3164static void
3165fdi_reduce_ratio(u32 *num, u32 *den)
3166{
3167 while (*num > 0xffffff || *den > 0xffffff) {
3168 *num >>= 1;
3169 *den >>= 1;
3170 }
3171}
3172
Zhenyu Wang2c072452009-06-05 15:38:42 +08003173static void
Adam Jacksonf2b115e2009-12-03 17:14:42 -05003174ironlake_compute_m_n(int bits_per_pixel, int nlanes, int pixel_clock,
3175 int link_clock, struct fdi_m_n *m_n)
Zhenyu Wang2c072452009-06-05 15:38:42 +08003176{
Zhenyu Wang2c072452009-06-05 15:38:42 +08003177 m_n->tu = 64; /* default size */
3178
Chris Wilson22ed1112010-12-04 01:01:29 +00003179 /* BUG_ON(pixel_clock > INT_MAX / 36); */
3180 m_n->gmch_m = bits_per_pixel * pixel_clock;
3181 m_n->gmch_n = link_clock * nlanes * 8;
Zhenyu Wang2c072452009-06-05 15:38:42 +08003182 fdi_reduce_ratio(&m_n->gmch_m, &m_n->gmch_n);
3183
Chris Wilson22ed1112010-12-04 01:01:29 +00003184 m_n->link_m = pixel_clock;
3185 m_n->link_n = link_clock;
Zhenyu Wang2c072452009-06-05 15:38:42 +08003186 fdi_reduce_ratio(&m_n->link_m, &m_n->link_n);
3187}
3188
Chris Wilsona7615032011-01-12 17:04:08 +00003189static inline bool intel_panel_use_ssc(struct drm_i915_private *dev_priv)
3190{
Keith Packard72bbe582011-09-26 16:09:45 -07003191 if (i915_panel_use_ssc >= 0)
3192 return i915_panel_use_ssc != 0;
3193 return dev_priv->lvds_use_ssc
Keith Packard435793d2011-07-12 14:56:22 -07003194 && !(dev_priv->quirks & QUIRK_LVDS_SSC_DISABLE);
Chris Wilsona7615032011-01-12 17:04:08 +00003195}
3196
Jesse Barnes5a354202011-06-24 12:19:22 -07003197/**
3198 * intel_choose_pipe_bpp_dither - figure out what color depth the pipe should send
3199 * @crtc: CRTC structure
Adam Jackson3b5c78a2011-12-13 15:41:00 -08003200 * @mode: requested mode
Jesse Barnes5a354202011-06-24 12:19:22 -07003201 *
3202 * A pipe may be connected to one or more outputs. Based on the depth of the
3203 * attached framebuffer, choose a good color depth to use on the pipe.
3204 *
3205 * If possible, match the pipe depth to the fb depth. In some cases, this
3206 * isn't ideal, because the connected output supports a lesser or restricted
3207 * set of depths. Resolve that here:
3208 * LVDS typically supports only 6bpc, so clamp down in that case
3209 * HDMI supports only 8bpc or 12bpc, so clamp to 8bpc with dither for 10bpc
3210 * Displays may support a restricted set as well, check EDID and clamp as
3211 * appropriate.
Adam Jackson3b5c78a2011-12-13 15:41:00 -08003212 * DP may want to dither down to 6bpc to fit larger modes
Jesse Barnes5a354202011-06-24 12:19:22 -07003213 *
3214 * RETURNS:
3215 * Dithering requirement (i.e. false if display bpc and pipe bpc match,
3216 * true if they don't match).
3217 */
3218static bool intel_choose_pipe_bpp_dither(struct drm_crtc *crtc,
Adam Jackson3b5c78a2011-12-13 15:41:00 -08003219 unsigned int *pipe_bpp,
3220 struct drm_display_mode *mode)
Jesse Barnes5a354202011-06-24 12:19:22 -07003221{
3222 struct drm_device *dev = crtc->dev;
3223 struct drm_i915_private *dev_priv = dev->dev_private;
3224 struct drm_encoder *encoder;
3225 struct drm_connector *connector;
3226 unsigned int display_bpc = UINT_MAX, bpc;
3227
3228 /* Walk the encoders & connectors on this crtc, get min bpc */
3229 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
3230 struct intel_encoder *intel_encoder = to_intel_encoder(encoder);
3231
3232 if (encoder->crtc != crtc)
3233 continue;
3234
3235 if (intel_encoder->type == INTEL_OUTPUT_LVDS) {
3236 unsigned int lvds_bpc;
3237
3238 if ((I915_READ(PCH_LVDS) & LVDS_A3_POWER_MASK) ==
3239 LVDS_A3_POWER_UP)
3240 lvds_bpc = 8;
3241 else
3242 lvds_bpc = 6;
3243
3244 if (lvds_bpc < display_bpc) {
Adam Jackson82820492011-10-10 16:33:34 -04003245 DRM_DEBUG_KMS("clamping display bpc (was %d) to LVDS (%d)\n", display_bpc, lvds_bpc);
Jesse Barnes5a354202011-06-24 12:19:22 -07003246 display_bpc = lvds_bpc;
3247 }
3248 continue;
3249 }
3250
3251 if (intel_encoder->type == INTEL_OUTPUT_EDP) {
3252 /* Use VBT settings if we have an eDP panel */
3253 unsigned int edp_bpc = dev_priv->edp.bpp / 3;
3254
3255 if (edp_bpc < display_bpc) {
Adam Jackson82820492011-10-10 16:33:34 -04003256 DRM_DEBUG_KMS("clamping display bpc (was %d) to eDP (%d)\n", display_bpc, edp_bpc);
Jesse Barnes5a354202011-06-24 12:19:22 -07003257 display_bpc = edp_bpc;
3258 }
3259 continue;
3260 }
3261
3262 /* Not one of the known troublemakers, check the EDID */
3263 list_for_each_entry(connector, &dev->mode_config.connector_list,
3264 head) {
3265 if (connector->encoder != encoder)
3266 continue;
3267
Jesse Barnes62ac41a2011-07-28 12:55:14 -07003268 /* Don't use an invalid EDID bpc value */
3269 if (connector->display_info.bpc &&
3270 connector->display_info.bpc < display_bpc) {
Adam Jackson82820492011-10-10 16:33:34 -04003271 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 -07003272 display_bpc = connector->display_info.bpc;
3273 }
3274 }
3275
3276 /*
3277 * HDMI is either 12 or 8, so if the display lets 10bpc sneak
3278 * through, clamp it down. (Note: >12bpc will be caught below.)
3279 */
3280 if (intel_encoder->type == INTEL_OUTPUT_HDMI) {
3281 if (display_bpc > 8 && display_bpc < 12) {
Adam Jackson82820492011-10-10 16:33:34 -04003282 DRM_DEBUG_KMS("forcing bpc to 12 for HDMI\n");
Jesse Barnes5a354202011-06-24 12:19:22 -07003283 display_bpc = 12;
3284 } else {
Adam Jackson82820492011-10-10 16:33:34 -04003285 DRM_DEBUG_KMS("forcing bpc to 8 for HDMI\n");
Jesse Barnes5a354202011-06-24 12:19:22 -07003286 display_bpc = 8;
3287 }
3288 }
3289 }
3290
Adam Jackson3b5c78a2011-12-13 15:41:00 -08003291 if (mode->private_flags & INTEL_MODE_DP_FORCE_6BPC) {
3292 DRM_DEBUG_KMS("Dithering DP to 6bpc\n");
3293 display_bpc = 6;
3294 }
3295
Jesse Barnes5a354202011-06-24 12:19:22 -07003296 /*
3297 * We could just drive the pipe at the highest bpc all the time and
3298 * enable dithering as needed, but that costs bandwidth. So choose
3299 * the minimum value that expresses the full color range of the fb but
3300 * also stays within the max display bpc discovered above.
3301 */
3302
3303 switch (crtc->fb->depth) {
3304 case 8:
3305 bpc = 8; /* since we go through a colormap */
3306 break;
3307 case 15:
3308 case 16:
3309 bpc = 6; /* min is 18bpp */
3310 break;
3311 case 24:
Keith Packard578393c2011-09-05 11:53:21 -07003312 bpc = 8;
Jesse Barnes5a354202011-06-24 12:19:22 -07003313 break;
3314 case 30:
Keith Packard578393c2011-09-05 11:53:21 -07003315 bpc = 10;
Jesse Barnes5a354202011-06-24 12:19:22 -07003316 break;
3317 case 48:
Keith Packard578393c2011-09-05 11:53:21 -07003318 bpc = 12;
Jesse Barnes5a354202011-06-24 12:19:22 -07003319 break;
3320 default:
3321 DRM_DEBUG("unsupported depth, assuming 24 bits\n");
3322 bpc = min((unsigned int)8, display_bpc);
3323 break;
3324 }
3325
Keith Packard578393c2011-09-05 11:53:21 -07003326 display_bpc = min(display_bpc, bpc);
3327
Adam Jackson82820492011-10-10 16:33:34 -04003328 DRM_DEBUG_KMS("setting pipe bpc to %d (max display bpc %d)\n",
3329 bpc, display_bpc);
Jesse Barnes5a354202011-06-24 12:19:22 -07003330
Keith Packard578393c2011-09-05 11:53:21 -07003331 *pipe_bpp = display_bpc * 3;
Jesse Barnes5a354202011-06-24 12:19:22 -07003332
3333 return display_bpc != bpc;
3334}
3335
Jesse Barnesc65d77d2011-12-15 12:30:36 -08003336static int i9xx_get_refclk(struct drm_crtc *crtc, int num_connectors)
3337{
3338 struct drm_device *dev = crtc->dev;
3339 struct drm_i915_private *dev_priv = dev->dev_private;
3340 int refclk;
3341
3342 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) &&
3343 intel_panel_use_ssc(dev_priv) && num_connectors < 2) {
3344 refclk = dev_priv->lvds_ssc_freq * 1000;
3345 DRM_DEBUG_KMS("using SSC reference clock of %d MHz\n",
3346 refclk / 1000);
3347 } else if (!IS_GEN2(dev)) {
3348 refclk = 96000;
3349 } else {
3350 refclk = 48000;
3351 }
3352
3353 return refclk;
3354}
3355
3356static void i9xx_adjust_sdvo_tv_clock(struct drm_display_mode *adjusted_mode,
3357 intel_clock_t *clock)
3358{
3359 /* SDVO TV has fixed PLL values depend on its clock range,
3360 this mirrors vbios setting. */
3361 if (adjusted_mode->clock >= 100000
3362 && adjusted_mode->clock < 140500) {
3363 clock->p1 = 2;
3364 clock->p2 = 10;
3365 clock->n = 3;
3366 clock->m1 = 16;
3367 clock->m2 = 8;
3368 } else if (adjusted_mode->clock >= 140500
3369 && adjusted_mode->clock <= 200000) {
3370 clock->p1 = 1;
3371 clock->p2 = 10;
3372 clock->n = 6;
3373 clock->m1 = 12;
3374 clock->m2 = 8;
3375 }
3376}
3377
Jesse Barnesa7516a02011-12-15 12:30:37 -08003378static void i9xx_update_pll_dividers(struct drm_crtc *crtc,
3379 intel_clock_t *clock,
3380 intel_clock_t *reduced_clock)
3381{
3382 struct drm_device *dev = crtc->dev;
3383 struct drm_i915_private *dev_priv = dev->dev_private;
3384 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3385 int pipe = intel_crtc->pipe;
3386 u32 fp, fp2 = 0;
3387
3388 if (IS_PINEVIEW(dev)) {
3389 fp = (1 << clock->n) << 16 | clock->m1 << 8 | clock->m2;
3390 if (reduced_clock)
3391 fp2 = (1 << reduced_clock->n) << 16 |
3392 reduced_clock->m1 << 8 | reduced_clock->m2;
3393 } else {
3394 fp = clock->n << 16 | clock->m1 << 8 | clock->m2;
3395 if (reduced_clock)
3396 fp2 = reduced_clock->n << 16 | reduced_clock->m1 << 8 |
3397 reduced_clock->m2;
3398 }
3399
3400 I915_WRITE(FP0(pipe), fp);
3401
3402 intel_crtc->lowfreq_avail = false;
3403 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) &&
3404 reduced_clock && i915_powersave) {
3405 I915_WRITE(FP1(pipe), fp2);
3406 intel_crtc->lowfreq_avail = true;
3407 } else {
3408 I915_WRITE(FP1(pipe), fp);
3409 }
3410}
3411
Daniel Vetter93e537a2012-03-28 23:11:26 +02003412static void intel_update_lvds(struct drm_crtc *crtc, intel_clock_t *clock,
3413 struct drm_display_mode *adjusted_mode)
3414{
3415 struct drm_device *dev = crtc->dev;
3416 struct drm_i915_private *dev_priv = dev->dev_private;
3417 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3418 int pipe = intel_crtc->pipe;
3419 u32 temp, lvds_sync = 0;
3420
3421 temp = I915_READ(LVDS);
3422 temp |= LVDS_PORT_EN | LVDS_A0A2_CLKA_POWER_UP;
3423 if (pipe == 1) {
3424 temp |= LVDS_PIPEB_SELECT;
3425 } else {
3426 temp &= ~LVDS_PIPEB_SELECT;
3427 }
3428 /* set the corresponsding LVDS_BORDER bit */
3429 temp |= dev_priv->lvds_border_bits;
3430 /* Set the B0-B3 data pairs corresponding to whether we're going to
3431 * set the DPLLs for dual-channel mode or not.
3432 */
3433 if (clock->p2 == 7)
3434 temp |= LVDS_B0B3_POWER_UP | LVDS_CLKB_POWER_UP;
3435 else
3436 temp &= ~(LVDS_B0B3_POWER_UP | LVDS_CLKB_POWER_UP);
3437
3438 /* It would be nice to set 24 vs 18-bit mode (LVDS_A3_POWER_UP)
3439 * appropriately here, but we need to look more thoroughly into how
3440 * panels behave in the two modes.
3441 */
3442 /* set the dithering flag on LVDS as needed */
3443 if (INTEL_INFO(dev)->gen >= 4) {
3444 if (dev_priv->lvds_dither)
3445 temp |= LVDS_ENABLE_DITHER;
3446 else
3447 temp &= ~LVDS_ENABLE_DITHER;
3448 }
3449 if (adjusted_mode->flags & DRM_MODE_FLAG_NHSYNC)
3450 lvds_sync |= LVDS_HSYNC_POLARITY;
3451 if (adjusted_mode->flags & DRM_MODE_FLAG_NVSYNC)
3452 lvds_sync |= LVDS_VSYNC_POLARITY;
3453 if ((temp & (LVDS_HSYNC_POLARITY | LVDS_VSYNC_POLARITY))
3454 != lvds_sync) {
3455 char flags[2] = "-+";
3456 DRM_INFO("Changing LVDS panel from "
3457 "(%chsync, %cvsync) to (%chsync, %cvsync)\n",
3458 flags[!(temp & LVDS_HSYNC_POLARITY)],
3459 flags[!(temp & LVDS_VSYNC_POLARITY)],
3460 flags[!(lvds_sync & LVDS_HSYNC_POLARITY)],
3461 flags[!(lvds_sync & LVDS_VSYNC_POLARITY)]);
3462 temp &= ~(LVDS_HSYNC_POLARITY | LVDS_VSYNC_POLARITY);
3463 temp |= lvds_sync;
3464 }
3465 I915_WRITE(LVDS, temp);
3466}
3467
Daniel Vettereb1cbe42012-03-28 23:12:16 +02003468static void i9xx_update_pll(struct drm_crtc *crtc,
3469 struct drm_display_mode *mode,
3470 struct drm_display_mode *adjusted_mode,
3471 intel_clock_t *clock, intel_clock_t *reduced_clock,
3472 int num_connectors)
3473{
3474 struct drm_device *dev = crtc->dev;
3475 struct drm_i915_private *dev_priv = dev->dev_private;
3476 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3477 int pipe = intel_crtc->pipe;
3478 u32 dpll;
3479 bool is_sdvo;
3480
3481 is_sdvo = intel_pipe_has_type(crtc, INTEL_OUTPUT_SDVO) ||
3482 intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI);
3483
3484 dpll = DPLL_VGA_MODE_DIS;
3485
3486 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS))
3487 dpll |= DPLLB_MODE_LVDS;
3488 else
3489 dpll |= DPLLB_MODE_DAC_SERIAL;
3490 if (is_sdvo) {
3491 int pixel_multiplier = intel_mode_get_pixel_multiplier(adjusted_mode);
3492 if (pixel_multiplier > 1) {
3493 if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev))
3494 dpll |= (pixel_multiplier - 1) << SDVO_MULTIPLIER_SHIFT_HIRES;
3495 }
3496 dpll |= DPLL_DVO_HIGH_SPEED;
3497 }
3498 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT))
3499 dpll |= DPLL_DVO_HIGH_SPEED;
3500
3501 /* compute bitmask from p1 value */
3502 if (IS_PINEVIEW(dev))
3503 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW;
3504 else {
3505 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
3506 if (IS_G4X(dev) && reduced_clock)
3507 dpll |= (1 << (reduced_clock->p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
3508 }
3509 switch (clock->p2) {
3510 case 5:
3511 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
3512 break;
3513 case 7:
3514 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
3515 break;
3516 case 10:
3517 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
3518 break;
3519 case 14:
3520 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
3521 break;
3522 }
3523 if (INTEL_INFO(dev)->gen >= 4)
3524 dpll |= (6 << PLL_LOAD_PULSE_PHASE_SHIFT);
3525
3526 if (is_sdvo && intel_pipe_has_type(crtc, INTEL_OUTPUT_TVOUT))
3527 dpll |= PLL_REF_INPUT_TVCLKINBC;
3528 else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_TVOUT))
3529 /* XXX: just matching BIOS for now */
3530 /* dpll |= PLL_REF_INPUT_TVCLKINBC; */
3531 dpll |= 3;
3532 else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) &&
3533 intel_panel_use_ssc(dev_priv) && num_connectors < 2)
3534 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
3535 else
3536 dpll |= PLL_REF_INPUT_DREFCLK;
3537
3538 dpll |= DPLL_VCO_ENABLE;
3539 I915_WRITE(DPLL(pipe), dpll & ~DPLL_VCO_ENABLE);
3540 POSTING_READ(DPLL(pipe));
3541 udelay(150);
3542
3543 /* The LVDS pin pair needs to be on before the DPLLs are enabled.
3544 * This is an exception to the general rule that mode_set doesn't turn
3545 * things on.
3546 */
3547 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS))
3548 intel_update_lvds(crtc, clock, adjusted_mode);
3549
3550 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT))
3551 intel_dp_set_m_n(crtc, mode, adjusted_mode);
3552
3553 I915_WRITE(DPLL(pipe), dpll);
3554
3555 /* Wait for the clocks to stabilize. */
3556 POSTING_READ(DPLL(pipe));
3557 udelay(150);
3558
3559 if (INTEL_INFO(dev)->gen >= 4) {
3560 u32 temp = 0;
3561 if (is_sdvo) {
3562 temp = intel_mode_get_pixel_multiplier(adjusted_mode);
3563 if (temp > 1)
3564 temp = (temp - 1) << DPLL_MD_UDI_MULTIPLIER_SHIFT;
3565 else
3566 temp = 0;
3567 }
3568 I915_WRITE(DPLL_MD(pipe), temp);
3569 } else {
3570 /* The pixel multiplier can only be updated once the
3571 * DPLL is enabled and the clocks are stable.
3572 *
3573 * So write it again.
3574 */
3575 I915_WRITE(DPLL(pipe), dpll);
3576 }
3577}
3578
3579static void i8xx_update_pll(struct drm_crtc *crtc,
3580 struct drm_display_mode *adjusted_mode,
3581 intel_clock_t *clock,
3582 int num_connectors)
3583{
3584 struct drm_device *dev = crtc->dev;
3585 struct drm_i915_private *dev_priv = dev->dev_private;
3586 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3587 int pipe = intel_crtc->pipe;
3588 u32 dpll;
3589
3590 dpll = DPLL_VGA_MODE_DIS;
3591
3592 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
3593 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
3594 } else {
3595 if (clock->p1 == 2)
3596 dpll |= PLL_P1_DIVIDE_BY_TWO;
3597 else
3598 dpll |= (clock->p1 - 2) << DPLL_FPA01_P1_POST_DIV_SHIFT;
3599 if (clock->p2 == 4)
3600 dpll |= PLL_P2_DIVIDE_BY_4;
3601 }
3602
3603 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_TVOUT))
3604 /* XXX: just matching BIOS for now */
3605 /* dpll |= PLL_REF_INPUT_TVCLKINBC; */
3606 dpll |= 3;
3607 else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) &&
3608 intel_panel_use_ssc(dev_priv) && num_connectors < 2)
3609 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
3610 else
3611 dpll |= PLL_REF_INPUT_DREFCLK;
3612
3613 dpll |= DPLL_VCO_ENABLE;
3614 I915_WRITE(DPLL(pipe), dpll & ~DPLL_VCO_ENABLE);
3615 POSTING_READ(DPLL(pipe));
3616 udelay(150);
3617
3618 I915_WRITE(DPLL(pipe), dpll);
3619
3620 /* Wait for the clocks to stabilize. */
3621 POSTING_READ(DPLL(pipe));
3622 udelay(150);
3623
3624 /* The LVDS pin pair needs to be on before the DPLLs are enabled.
3625 * This is an exception to the general rule that mode_set doesn't turn
3626 * things on.
3627 */
3628 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS))
3629 intel_update_lvds(crtc, clock, adjusted_mode);
3630
3631 /* The pixel multiplier can only be updated once the
3632 * DPLL is enabled and the clocks are stable.
3633 *
3634 * So write it again.
3635 */
3636 I915_WRITE(DPLL(pipe), dpll);
3637}
3638
Eric Anholtf564048e2011-03-30 13:01:02 -07003639static int i9xx_crtc_mode_set(struct drm_crtc *crtc,
3640 struct drm_display_mode *mode,
3641 struct drm_display_mode *adjusted_mode,
3642 int x, int y,
3643 struct drm_framebuffer *old_fb)
Jesse Barnes79e53942008-11-07 14:24:08 -08003644{
3645 struct drm_device *dev = crtc->dev;
3646 struct drm_i915_private *dev_priv = dev->dev_private;
3647 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3648 int pipe = intel_crtc->pipe;
Jesse Barnes80824002009-09-10 15:28:06 -07003649 int plane = intel_crtc->plane;
Eric Anholtc751ce42010-03-25 11:48:48 -07003650 int refclk, num_connectors = 0;
Jesse Barnes652c3932009-08-17 13:31:43 -07003651 intel_clock_t clock, reduced_clock;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02003652 u32 dspcntr, pipeconf, vsyncshift;
3653 bool ok, has_reduced_clock = false, is_sdvo = false;
3654 bool is_lvds = false, is_tv = false, is_dp = false;
Jesse Barnes79e53942008-11-07 14:24:08 -08003655 struct drm_mode_config *mode_config = &dev->mode_config;
Chris Wilson5eddb702010-09-11 13:48:45 +01003656 struct intel_encoder *encoder;
Ma Lingd4906092009-03-18 20:13:27 +08003657 const intel_limit_t *limit;
Chris Wilson5c3b82e2009-02-11 13:25:09 +00003658 int ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08003659
Chris Wilson5eddb702010-09-11 13:48:45 +01003660 list_for_each_entry(encoder, &mode_config->encoder_list, base.head) {
3661 if (encoder->base.crtc != crtc)
Jesse Barnes79e53942008-11-07 14:24:08 -08003662 continue;
3663
Chris Wilson5eddb702010-09-11 13:48:45 +01003664 switch (encoder->type) {
Jesse Barnes79e53942008-11-07 14:24:08 -08003665 case INTEL_OUTPUT_LVDS:
3666 is_lvds = true;
3667 break;
3668 case INTEL_OUTPUT_SDVO:
Eric Anholt7d573822009-01-02 13:33:00 -08003669 case INTEL_OUTPUT_HDMI:
Jesse Barnes79e53942008-11-07 14:24:08 -08003670 is_sdvo = true;
Chris Wilson5eddb702010-09-11 13:48:45 +01003671 if (encoder->needs_tv_clock)
Jesse Barnese2f0ba92009-02-02 15:11:52 -08003672 is_tv = true;
Jesse Barnes79e53942008-11-07 14:24:08 -08003673 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08003674 case INTEL_OUTPUT_TVOUT:
3675 is_tv = true;
3676 break;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003677 case INTEL_OUTPUT_DISPLAYPORT:
3678 is_dp = true;
3679 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08003680 }
Kristian Høgsberg43565a02009-02-13 20:56:52 -05003681
Eric Anholtc751ce42010-03-25 11:48:48 -07003682 num_connectors++;
Jesse Barnes79e53942008-11-07 14:24:08 -08003683 }
3684
Jesse Barnesc65d77d2011-12-15 12:30:36 -08003685 refclk = i9xx_get_refclk(crtc, num_connectors);
Jesse Barnes79e53942008-11-07 14:24:08 -08003686
Ma Lingd4906092009-03-18 20:13:27 +08003687 /*
3688 * Returns a set of divisors for the desired target clock with the given
3689 * refclk, or FALSE. The returned values represent the clock equation:
3690 * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2.
3691 */
Chris Wilson1b894b52010-12-14 20:04:54 +00003692 limit = intel_limit(crtc, refclk);
Sean Paulcec2f352012-01-10 15:09:36 -08003693 ok = limit->find_pll(limit, crtc, adjusted_mode->clock, refclk, NULL,
3694 &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08003695 if (!ok) {
3696 DRM_ERROR("Couldn't find PLL settings for mode!\n");
Eric Anholtf564048e2011-03-30 13:01:02 -07003697 return -EINVAL;
3698 }
3699
3700 /* Ensure that the cursor is valid for the new mode before changing... */
3701 intel_crtc_update_cursor(crtc, true);
3702
3703 if (is_lvds && dev_priv->lvds_downclock_avail) {
Sean Paulcec2f352012-01-10 15:09:36 -08003704 /*
3705 * Ensure we match the reduced clock's P to the target clock.
3706 * If the clocks don't match, we can't switch the display clock
3707 * by using the FP0/FP1. In such case we will disable the LVDS
3708 * downclock feature.
3709 */
Eric Anholtf564048e2011-03-30 13:01:02 -07003710 has_reduced_clock = limit->find_pll(limit, crtc,
3711 dev_priv->lvds_downclock,
3712 refclk,
Sean Paulcec2f352012-01-10 15:09:36 -08003713 &clock,
Eric Anholtf564048e2011-03-30 13:01:02 -07003714 &reduced_clock);
Eric Anholtf564048e2011-03-30 13:01:02 -07003715 }
3716
Jesse Barnesc65d77d2011-12-15 12:30:36 -08003717 if (is_sdvo && is_tv)
3718 i9xx_adjust_sdvo_tv_clock(adjusted_mode, &clock);
Eric Anholtf564048e2011-03-30 13:01:02 -07003719
Jesse Barnesa7516a02011-12-15 12:30:37 -08003720 i9xx_update_pll_dividers(crtc, &clock, has_reduced_clock ?
3721 &reduced_clock : NULL);
Eric Anholtf564048e2011-03-30 13:01:02 -07003722
Daniel Vettereb1cbe42012-03-28 23:12:16 +02003723 if (IS_GEN2(dev))
3724 i8xx_update_pll(crtc, adjusted_mode, &clock, num_connectors);
Eric Anholtf564048e2011-03-30 13:01:02 -07003725 else
Daniel Vettereb1cbe42012-03-28 23:12:16 +02003726 i9xx_update_pll(crtc, mode, adjusted_mode, &clock,
3727 has_reduced_clock ? &reduced_clock : NULL,
3728 num_connectors);
Eric Anholtf564048e2011-03-30 13:01:02 -07003729
3730 /* setup pipeconf */
3731 pipeconf = I915_READ(PIPECONF(pipe));
3732
3733 /* Set up the display plane register */
3734 dspcntr = DISPPLANE_GAMMA_ENABLE;
3735
Eric Anholt929c77f2011-03-30 13:01:04 -07003736 if (pipe == 0)
3737 dspcntr &= ~DISPPLANE_SEL_PIPE_MASK;
3738 else
3739 dspcntr |= DISPPLANE_SEL_PIPE_B;
Eric Anholtf564048e2011-03-30 13:01:02 -07003740
3741 if (pipe == 0 && INTEL_INFO(dev)->gen < 4) {
3742 /* Enable pixel doubling when the dot clock is > 90% of the (display)
3743 * core speed.
3744 *
3745 * XXX: No double-wide on 915GM pipe B. Is that the only reason for the
3746 * pipe == 0 check?
3747 */
3748 if (mode->clock >
3749 dev_priv->display.get_display_clock_speed(dev) * 9 / 10)
3750 pipeconf |= PIPECONF_DOUBLE_WIDE;
3751 else
3752 pipeconf &= ~PIPECONF_DOUBLE_WIDE;
3753 }
3754
Adam Jackson3b5c78a2011-12-13 15:41:00 -08003755 /* default to 8bpc */
3756 pipeconf &= ~(PIPECONF_BPP_MASK | PIPECONF_DITHER_EN);
3757 if (is_dp) {
3758 if (mode->private_flags & INTEL_MODE_DP_FORCE_6BPC) {
3759 pipeconf |= PIPECONF_BPP_6 |
3760 PIPECONF_DITHER_EN |
3761 PIPECONF_DITHER_TYPE_SP;
3762 }
3763 }
3764
Eric Anholtf564048e2011-03-30 13:01:02 -07003765 DRM_DEBUG_KMS("Mode for pipe %c:\n", pipe == 0 ? 'A' : 'B');
3766 drm_mode_debug_printmodeline(mode);
3767
Jesse Barnesa7516a02011-12-15 12:30:37 -08003768 if (HAS_PIPE_CXSR(dev)) {
3769 if (intel_crtc->lowfreq_avail) {
Eric Anholtf564048e2011-03-30 13:01:02 -07003770 DRM_DEBUG_KMS("enabling CxSR downclocking\n");
3771 pipeconf |= PIPECONF_CXSR_DOWNCLOCK;
Jesse Barnesa7516a02011-12-15 12:30:37 -08003772 } else {
Eric Anholtf564048e2011-03-30 13:01:02 -07003773 DRM_DEBUG_KMS("disabling CxSR downclocking\n");
3774 pipeconf &= ~PIPECONF_CXSR_DOWNCLOCK;
3775 }
3776 }
3777
Keith Packard617cf882012-02-08 13:53:38 -08003778 pipeconf &= ~PIPECONF_INTERLACE_MASK;
Daniel Vetterdbb02572012-01-28 14:49:23 +01003779 if (!IS_GEN2(dev) &&
3780 adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE) {
Eric Anholtf564048e2011-03-30 13:01:02 -07003781 pipeconf |= PIPECONF_INTERLACE_W_FIELD_INDICATION;
3782 /* the chip adds 2 halflines automatically */
Eric Anholtf564048e2011-03-30 13:01:02 -07003783 adjusted_mode->crtc_vtotal -= 1;
Eric Anholtf564048e2011-03-30 13:01:02 -07003784 adjusted_mode->crtc_vblank_end -= 1;
Daniel Vetter0529a0d2012-01-28 14:49:24 +01003785 vsyncshift = adjusted_mode->crtc_hsync_start
3786 - adjusted_mode->crtc_htotal/2;
3787 } else {
Keith Packard617cf882012-02-08 13:53:38 -08003788 pipeconf |= PIPECONF_PROGRESSIVE;
Daniel Vetter0529a0d2012-01-28 14:49:24 +01003789 vsyncshift = 0;
3790 }
3791
3792 if (!IS_GEN3(dev))
3793 I915_WRITE(VSYNCSHIFT(pipe), vsyncshift);
Eric Anholtf564048e2011-03-30 13:01:02 -07003794
3795 I915_WRITE(HTOTAL(pipe),
3796 (adjusted_mode->crtc_hdisplay - 1) |
3797 ((adjusted_mode->crtc_htotal - 1) << 16));
3798 I915_WRITE(HBLANK(pipe),
3799 (adjusted_mode->crtc_hblank_start - 1) |
3800 ((adjusted_mode->crtc_hblank_end - 1) << 16));
3801 I915_WRITE(HSYNC(pipe),
3802 (adjusted_mode->crtc_hsync_start - 1) |
3803 ((adjusted_mode->crtc_hsync_end - 1) << 16));
3804
3805 I915_WRITE(VTOTAL(pipe),
3806 (adjusted_mode->crtc_vdisplay - 1) |
3807 ((adjusted_mode->crtc_vtotal - 1) << 16));
3808 I915_WRITE(VBLANK(pipe),
3809 (adjusted_mode->crtc_vblank_start - 1) |
3810 ((adjusted_mode->crtc_vblank_end - 1) << 16));
3811 I915_WRITE(VSYNC(pipe),
3812 (adjusted_mode->crtc_vsync_start - 1) |
3813 ((adjusted_mode->crtc_vsync_end - 1) << 16));
3814
3815 /* pipesrc and dspsize control the size that is scaled from,
3816 * which should always be the user's requested size.
3817 */
Eric Anholt929c77f2011-03-30 13:01:04 -07003818 I915_WRITE(DSPSIZE(plane),
3819 ((mode->vdisplay - 1) << 16) |
3820 (mode->hdisplay - 1));
3821 I915_WRITE(DSPPOS(plane), 0);
Eric Anholtf564048e2011-03-30 13:01:02 -07003822 I915_WRITE(PIPESRC(pipe),
3823 ((mode->hdisplay - 1) << 16) | (mode->vdisplay - 1));
3824
Eric Anholtf564048e2011-03-30 13:01:02 -07003825 I915_WRITE(PIPECONF(pipe), pipeconf);
3826 POSTING_READ(PIPECONF(pipe));
Eric Anholt929c77f2011-03-30 13:01:04 -07003827 intel_enable_pipe(dev_priv, pipe, false);
Eric Anholtf564048e2011-03-30 13:01:02 -07003828
3829 intel_wait_for_vblank(dev, pipe);
3830
Eric Anholtf564048e2011-03-30 13:01:02 -07003831 I915_WRITE(DSPCNTR(plane), dspcntr);
3832 POSTING_READ(DSPCNTR(plane));
Keith Packard284d9522011-06-06 17:12:49 -07003833 intel_enable_plane(dev_priv, plane, pipe);
Eric Anholtf564048e2011-03-30 13:01:02 -07003834
3835 ret = intel_pipe_set_base(crtc, x, y, old_fb);
3836
3837 intel_update_watermarks(dev);
3838
Eric Anholtf564048e2011-03-30 13:01:02 -07003839 return ret;
3840}
3841
Keith Packard9fb526d2011-09-26 22:24:57 -07003842/*
3843 * Initialize reference clocks when the driver loads
3844 */
3845void ironlake_init_pch_refclk(struct drm_device *dev)
Jesse Barnes13d83a62011-08-03 12:59:20 -07003846{
3847 struct drm_i915_private *dev_priv = dev->dev_private;
3848 struct drm_mode_config *mode_config = &dev->mode_config;
Jesse Barnes13d83a62011-08-03 12:59:20 -07003849 struct intel_encoder *encoder;
Jesse Barnes13d83a62011-08-03 12:59:20 -07003850 u32 temp;
3851 bool has_lvds = false;
Keith Packard199e5d72011-09-22 12:01:57 -07003852 bool has_cpu_edp = false;
3853 bool has_pch_edp = false;
3854 bool has_panel = false;
Keith Packard99eb6a02011-09-26 14:29:12 -07003855 bool has_ck505 = false;
3856 bool can_ssc = false;
Jesse Barnes13d83a62011-08-03 12:59:20 -07003857
3858 /* We need to take the global config into account */
Keith Packard199e5d72011-09-22 12:01:57 -07003859 list_for_each_entry(encoder, &mode_config->encoder_list,
3860 base.head) {
3861 switch (encoder->type) {
3862 case INTEL_OUTPUT_LVDS:
3863 has_panel = true;
3864 has_lvds = true;
3865 break;
3866 case INTEL_OUTPUT_EDP:
3867 has_panel = true;
3868 if (intel_encoder_is_pch_edp(&encoder->base))
3869 has_pch_edp = true;
3870 else
3871 has_cpu_edp = true;
3872 break;
Jesse Barnes13d83a62011-08-03 12:59:20 -07003873 }
3874 }
3875
Keith Packard99eb6a02011-09-26 14:29:12 -07003876 if (HAS_PCH_IBX(dev)) {
3877 has_ck505 = dev_priv->display_clock_mode;
3878 can_ssc = has_ck505;
3879 } else {
3880 has_ck505 = false;
3881 can_ssc = true;
3882 }
3883
3884 DRM_DEBUG_KMS("has_panel %d has_lvds %d has_pch_edp %d has_cpu_edp %d has_ck505 %d\n",
3885 has_panel, has_lvds, has_pch_edp, has_cpu_edp,
3886 has_ck505);
Jesse Barnes13d83a62011-08-03 12:59:20 -07003887
3888 /* Ironlake: try to setup display ref clock before DPLL
3889 * enabling. This is only under driver's control after
3890 * PCH B stepping, previous chipset stepping should be
3891 * ignoring this setting.
3892 */
3893 temp = I915_READ(PCH_DREF_CONTROL);
3894 /* Always enable nonspread source */
3895 temp &= ~DREF_NONSPREAD_SOURCE_MASK;
Jesse Barnes13d83a62011-08-03 12:59:20 -07003896
Keith Packard99eb6a02011-09-26 14:29:12 -07003897 if (has_ck505)
3898 temp |= DREF_NONSPREAD_CK505_ENABLE;
3899 else
3900 temp |= DREF_NONSPREAD_SOURCE_ENABLE;
Jesse Barnes13d83a62011-08-03 12:59:20 -07003901
Keith Packard199e5d72011-09-22 12:01:57 -07003902 if (has_panel) {
3903 temp &= ~DREF_SSC_SOURCE_MASK;
3904 temp |= DREF_SSC_SOURCE_ENABLE;
Jesse Barnes13d83a62011-08-03 12:59:20 -07003905
Keith Packard199e5d72011-09-22 12:01:57 -07003906 /* SSC must be turned on before enabling the CPU output */
Keith Packard99eb6a02011-09-26 14:29:12 -07003907 if (intel_panel_use_ssc(dev_priv) && can_ssc) {
Keith Packard199e5d72011-09-22 12:01:57 -07003908 DRM_DEBUG_KMS("Using SSC on panel\n");
Jesse Barnes13d83a62011-08-03 12:59:20 -07003909 temp |= DREF_SSC1_ENABLE;
Daniel Vettere77166b2012-03-30 22:14:05 +02003910 } else
3911 temp &= ~DREF_SSC1_ENABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07003912
3913 /* Get SSC going before enabling the outputs */
3914 I915_WRITE(PCH_DREF_CONTROL, temp);
3915 POSTING_READ(PCH_DREF_CONTROL);
3916 udelay(200);
3917
Jesse Barnes13d83a62011-08-03 12:59:20 -07003918 temp &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
3919
3920 /* Enable CPU source on CPU attached eDP */
Keith Packard199e5d72011-09-22 12:01:57 -07003921 if (has_cpu_edp) {
Keith Packard99eb6a02011-09-26 14:29:12 -07003922 if (intel_panel_use_ssc(dev_priv) && can_ssc) {
Keith Packard199e5d72011-09-22 12:01:57 -07003923 DRM_DEBUG_KMS("Using SSC on eDP\n");
Jesse Barnes13d83a62011-08-03 12:59:20 -07003924 temp |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD;
Keith Packard199e5d72011-09-22 12:01:57 -07003925 }
Jesse Barnes13d83a62011-08-03 12:59:20 -07003926 else
3927 temp |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD;
Keith Packard199e5d72011-09-22 12:01:57 -07003928 } else
3929 temp |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
3930
3931 I915_WRITE(PCH_DREF_CONTROL, temp);
3932 POSTING_READ(PCH_DREF_CONTROL);
3933 udelay(200);
3934 } else {
3935 DRM_DEBUG_KMS("Disabling SSC entirely\n");
3936
3937 temp &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
3938
3939 /* Turn off CPU output */
3940 temp |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
3941
3942 I915_WRITE(PCH_DREF_CONTROL, temp);
3943 POSTING_READ(PCH_DREF_CONTROL);
3944 udelay(200);
3945
3946 /* Turn off the SSC source */
3947 temp &= ~DREF_SSC_SOURCE_MASK;
3948 temp |= DREF_SSC_SOURCE_DISABLE;
3949
3950 /* Turn off SSC1 */
3951 temp &= ~ DREF_SSC1_ENABLE;
3952
Jesse Barnes13d83a62011-08-03 12:59:20 -07003953 I915_WRITE(PCH_DREF_CONTROL, temp);
3954 POSTING_READ(PCH_DREF_CONTROL);
3955 udelay(200);
3956 }
3957}
3958
Jesse Barnesd9d444c2011-09-02 13:03:05 -07003959static int ironlake_get_refclk(struct drm_crtc *crtc)
3960{
3961 struct drm_device *dev = crtc->dev;
3962 struct drm_i915_private *dev_priv = dev->dev_private;
3963 struct intel_encoder *encoder;
3964 struct drm_mode_config *mode_config = &dev->mode_config;
3965 struct intel_encoder *edp_encoder = NULL;
3966 int num_connectors = 0;
3967 bool is_lvds = false;
3968
3969 list_for_each_entry(encoder, &mode_config->encoder_list, base.head) {
3970 if (encoder->base.crtc != crtc)
3971 continue;
3972
3973 switch (encoder->type) {
3974 case INTEL_OUTPUT_LVDS:
3975 is_lvds = true;
3976 break;
3977 case INTEL_OUTPUT_EDP:
3978 edp_encoder = encoder;
3979 break;
3980 }
3981 num_connectors++;
3982 }
3983
3984 if (is_lvds && intel_panel_use_ssc(dev_priv) && num_connectors < 2) {
3985 DRM_DEBUG_KMS("using SSC reference clock of %d MHz\n",
3986 dev_priv->lvds_ssc_freq);
3987 return dev_priv->lvds_ssc_freq * 1000;
3988 }
3989
3990 return 120000;
3991}
3992
Eric Anholtf564048e2011-03-30 13:01:02 -07003993static int ironlake_crtc_mode_set(struct drm_crtc *crtc,
3994 struct drm_display_mode *mode,
3995 struct drm_display_mode *adjusted_mode,
3996 int x, int y,
3997 struct drm_framebuffer *old_fb)
Jesse Barnes79e53942008-11-07 14:24:08 -08003998{
3999 struct drm_device *dev = crtc->dev;
4000 struct drm_i915_private *dev_priv = dev->dev_private;
4001 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4002 int pipe = intel_crtc->pipe;
Chris Wilson5c3b82e2009-02-11 13:25:09 +00004003 int plane = intel_crtc->plane;
Jesse Barnes79e53942008-11-07 14:24:08 -08004004 int refclk, num_connectors = 0;
4005 intel_clock_t clock, reduced_clock;
4006 u32 dpll, fp = 0, fp2 = 0, dspcntr, pipeconf;
Eric Anholta07d6782011-03-30 13:01:08 -07004007 bool ok, has_reduced_clock = false, is_sdvo = false;
Jesse Barnes79e53942008-11-07 14:24:08 -08004008 bool is_crt = false, is_lvds = false, is_tv = false, is_dp = false;
Jesse Barnes79e53942008-11-07 14:24:08 -08004009 struct drm_mode_config *mode_config = &dev->mode_config;
Jesse Barnese3aef172012-04-10 11:58:03 -07004010 struct intel_encoder *encoder, *edp_encoder = NULL;
Jesse Barnes79e53942008-11-07 14:24:08 -08004011 const intel_limit_t *limit;
4012 int ret;
4013 struct fdi_m_n m_n = {0};
Eric Anholtfae14982011-03-30 13:01:09 -07004014 u32 temp;
Jesse Barnes79e53942008-11-07 14:24:08 -08004015 u32 lvds_sync = 0;
Jesse Barnes5a354202011-06-24 12:19:22 -07004016 int target_clock, pixel_multiplier, lane, link_bw, factor;
4017 unsigned int pipe_bpp;
4018 bool dither;
Jesse Barnese3aef172012-04-10 11:58:03 -07004019 bool is_cpu_edp = false, is_pch_edp = false;
Jesse Barnes79e53942008-11-07 14:24:08 -08004020
Jesse Barnes79e53942008-11-07 14:24:08 -08004021 list_for_each_entry(encoder, &mode_config->encoder_list, base.head) {
4022 if (encoder->base.crtc != crtc)
4023 continue;
4024
4025 switch (encoder->type) {
4026 case INTEL_OUTPUT_LVDS:
4027 is_lvds = true;
4028 break;
4029 case INTEL_OUTPUT_SDVO:
4030 case INTEL_OUTPUT_HDMI:
4031 is_sdvo = true;
4032 if (encoder->needs_tv_clock)
4033 is_tv = true;
4034 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08004035 case INTEL_OUTPUT_TVOUT:
4036 is_tv = true;
4037 break;
4038 case INTEL_OUTPUT_ANALOG:
4039 is_crt = true;
4040 break;
4041 case INTEL_OUTPUT_DISPLAYPORT:
4042 is_dp = true;
4043 break;
4044 case INTEL_OUTPUT_EDP:
Jesse Barnese3aef172012-04-10 11:58:03 -07004045 is_dp = true;
4046 if (intel_encoder_is_pch_edp(&encoder->base))
4047 is_pch_edp = true;
4048 else
4049 is_cpu_edp = true;
4050 edp_encoder = encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08004051 break;
4052 }
4053
Kristian Høgsberg43565a02009-02-13 20:56:52 -05004054 num_connectors++;
4055 }
4056
Jesse Barnesd9d444c2011-09-02 13:03:05 -07004057 refclk = ironlake_get_refclk(crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08004058
4059 /*
4060 * Returns a set of divisors for the desired target clock with the given
4061 * refclk, or FALSE. The returned values represent the clock equation:
4062 * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2.
4063 */
4064 limit = intel_limit(crtc, refclk);
Sean Paulcec2f352012-01-10 15:09:36 -08004065 ok = limit->find_pll(limit, crtc, adjusted_mode->clock, refclk, NULL,
4066 &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08004067 if (!ok) {
4068 DRM_ERROR("Couldn't find PLL settings for mode!\n");
4069 return -EINVAL;
4070 }
4071
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01004072 /* Ensure that the cursor is valid for the new mode before changing... */
Chris Wilson6b383a72010-09-13 13:54:26 +01004073 intel_crtc_update_cursor(crtc, true);
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01004074
Zhao Yakuiddc90032010-01-06 22:05:56 +08004075 if (is_lvds && dev_priv->lvds_downclock_avail) {
Sean Paulcec2f352012-01-10 15:09:36 -08004076 /*
4077 * Ensure we match the reduced clock's P to the target clock.
4078 * If the clocks don't match, we can't switch the display clock
4079 * by using the FP0/FP1. In such case we will disable the LVDS
4080 * downclock feature.
4081 */
Zhao Yakuiddc90032010-01-06 22:05:56 +08004082 has_reduced_clock = limit->find_pll(limit, crtc,
Chris Wilson5eddb702010-09-11 13:48:45 +01004083 dev_priv->lvds_downclock,
4084 refclk,
Sean Paulcec2f352012-01-10 15:09:36 -08004085 &clock,
Chris Wilson5eddb702010-09-11 13:48:45 +01004086 &reduced_clock);
Jesse Barnes652c3932009-08-17 13:31:43 -07004087 }
Zhenyu Wang7026d4a2009-03-24 14:02:43 +08004088 /* SDVO TV has fixed PLL values depend on its clock range,
4089 this mirrors vbios setting. */
4090 if (is_sdvo && is_tv) {
4091 if (adjusted_mode->clock >= 100000
Chris Wilson5eddb702010-09-11 13:48:45 +01004092 && adjusted_mode->clock < 140500) {
Zhenyu Wang7026d4a2009-03-24 14:02:43 +08004093 clock.p1 = 2;
4094 clock.p2 = 10;
4095 clock.n = 3;
4096 clock.m1 = 16;
4097 clock.m2 = 8;
4098 } else if (adjusted_mode->clock >= 140500
Chris Wilson5eddb702010-09-11 13:48:45 +01004099 && adjusted_mode->clock <= 200000) {
Zhenyu Wang7026d4a2009-03-24 14:02:43 +08004100 clock.p1 = 1;
4101 clock.p2 = 10;
4102 clock.n = 6;
4103 clock.m1 = 12;
4104 clock.m2 = 8;
4105 }
4106 }
4107
Zhenyu Wang2c072452009-06-05 15:38:42 +08004108 /* FDI link */
Eric Anholt8febb292011-03-30 13:01:07 -07004109 pixel_multiplier = intel_mode_get_pixel_multiplier(adjusted_mode);
4110 lane = 0;
4111 /* CPU eDP doesn't require FDI link, so just set DP M/N
4112 according to current link config */
Jesse Barnese3aef172012-04-10 11:58:03 -07004113 if (is_cpu_edp) {
Eric Anholt8febb292011-03-30 13:01:07 -07004114 target_clock = mode->clock;
Jesse Barnese3aef172012-04-10 11:58:03 -07004115 intel_edp_link_config(edp_encoder, &lane, &link_bw);
Eric Anholt8febb292011-03-30 13:01:07 -07004116 } else {
4117 /* [e]DP over FDI requires target mode clock
4118 instead of link clock */
Jesse Barnese3aef172012-04-10 11:58:03 -07004119 if (is_dp)
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08004120 target_clock = mode->clock;
Eric Anholt8febb292011-03-30 13:01:07 -07004121 else
4122 target_clock = adjusted_mode->clock;
Chris Wilson021357a2010-09-07 20:54:59 +01004123
Eric Anholt8febb292011-03-30 13:01:07 -07004124 /* FDI is a binary signal running at ~2.7GHz, encoding
4125 * each output octet as 10 bits. The actual frequency
4126 * is stored as a divider into a 100MHz clock, and the
4127 * mode pixel clock is stored in units of 1KHz.
4128 * Hence the bw of each lane in terms of the mode signal
4129 * is:
4130 */
4131 link_bw = intel_fdi_link_freq(dev) * MHz(100)/KHz(1)/10;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08004132 }
Zhenyu Wang2c072452009-06-05 15:38:42 +08004133
Eric Anholt8febb292011-03-30 13:01:07 -07004134 /* determine panel color depth */
4135 temp = I915_READ(PIPECONF(pipe));
4136 temp &= ~PIPE_BPC_MASK;
Adam Jackson3b5c78a2011-12-13 15:41:00 -08004137 dither = intel_choose_pipe_bpp_dither(crtc, &pipe_bpp, mode);
Jesse Barnes5a354202011-06-24 12:19:22 -07004138 switch (pipe_bpp) {
4139 case 18:
4140 temp |= PIPE_6BPC;
4141 break;
4142 case 24:
Eric Anholt8febb292011-03-30 13:01:07 -07004143 temp |= PIPE_8BPC;
Eric Anholt8febb292011-03-30 13:01:07 -07004144 break;
Jesse Barnes5a354202011-06-24 12:19:22 -07004145 case 30:
4146 temp |= PIPE_10BPC;
Eric Anholt8febb292011-03-30 13:01:07 -07004147 break;
Jesse Barnes5a354202011-06-24 12:19:22 -07004148 case 36:
4149 temp |= PIPE_12BPC;
Eric Anholt8febb292011-03-30 13:01:07 -07004150 break;
4151 default:
Jesse Barnes62ac41a2011-07-28 12:55:14 -07004152 WARN(1, "intel_choose_pipe_bpp returned invalid value %d\n",
4153 pipe_bpp);
Jesse Barnes5a354202011-06-24 12:19:22 -07004154 temp |= PIPE_8BPC;
4155 pipe_bpp = 24;
4156 break;
Eric Anholt8febb292011-03-30 13:01:07 -07004157 }
4158
Jesse Barnes5a354202011-06-24 12:19:22 -07004159 intel_crtc->bpp = pipe_bpp;
4160 I915_WRITE(PIPECONF(pipe), temp);
4161
Eric Anholt8febb292011-03-30 13:01:07 -07004162 if (!lane) {
4163 /*
4164 * Account for spread spectrum to avoid
4165 * oversubscribing the link. Max center spread
4166 * is 2.5%; use 5% for safety's sake.
4167 */
Jesse Barnes5a354202011-06-24 12:19:22 -07004168 u32 bps = target_clock * intel_crtc->bpp * 21 / 20;
Eric Anholt8febb292011-03-30 13:01:07 -07004169 lane = bps / (link_bw * 8) + 1;
4170 }
4171
4172 intel_crtc->fdi_lanes = lane;
4173
4174 if (pixel_multiplier > 1)
4175 link_bw *= pixel_multiplier;
Jesse Barnes5a354202011-06-24 12:19:22 -07004176 ironlake_compute_m_n(intel_crtc->bpp, lane, target_clock, link_bw,
4177 &m_n);
Eric Anholt8febb292011-03-30 13:01:07 -07004178
Eric Anholta07d6782011-03-30 13:01:08 -07004179 fp = clock.n << 16 | clock.m1 << 8 | clock.m2;
4180 if (has_reduced_clock)
4181 fp2 = reduced_clock.n << 16 | reduced_clock.m1 << 8 |
4182 reduced_clock.m2;
Jesse Barnes79e53942008-11-07 14:24:08 -08004183
Chris Wilsonc1858122010-12-03 21:35:48 +00004184 /* Enable autotuning of the PLL clock (if permissible) */
Eric Anholt8febb292011-03-30 13:01:07 -07004185 factor = 21;
4186 if (is_lvds) {
4187 if ((intel_panel_use_ssc(dev_priv) &&
4188 dev_priv->lvds_ssc_freq == 100) ||
4189 (I915_READ(PCH_LVDS) & LVDS_CLKB_POWER_MASK) == LVDS_CLKB_POWER_UP)
4190 factor = 25;
4191 } else if (is_sdvo && is_tv)
4192 factor = 20;
Chris Wilsonc1858122010-12-03 21:35:48 +00004193
Jesse Barnescb0e0932011-07-28 14:50:30 -07004194 if (clock.m < factor * clock.n)
Eric Anholt8febb292011-03-30 13:01:07 -07004195 fp |= FP_CB_TUNE;
Chris Wilsonc1858122010-12-03 21:35:48 +00004196
Chris Wilson5eddb702010-09-11 13:48:45 +01004197 dpll = 0;
Zhenyu Wang2c072452009-06-05 15:38:42 +08004198
Eric Anholta07d6782011-03-30 13:01:08 -07004199 if (is_lvds)
4200 dpll |= DPLLB_MODE_LVDS;
4201 else
4202 dpll |= DPLLB_MODE_DAC_SERIAL;
4203 if (is_sdvo) {
4204 int pixel_multiplier = intel_mode_get_pixel_multiplier(adjusted_mode);
4205 if (pixel_multiplier > 1) {
4206 dpll |= (pixel_multiplier - 1) << PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT;
Jesse Barnes79e53942008-11-07 14:24:08 -08004207 }
Eric Anholta07d6782011-03-30 13:01:08 -07004208 dpll |= DPLL_DVO_HIGH_SPEED;
4209 }
Jesse Barnese3aef172012-04-10 11:58:03 -07004210 if (is_dp && !is_cpu_edp)
Eric Anholta07d6782011-03-30 13:01:08 -07004211 dpll |= DPLL_DVO_HIGH_SPEED;
Jesse Barnes79e53942008-11-07 14:24:08 -08004212
Eric Anholta07d6782011-03-30 13:01:08 -07004213 /* compute bitmask from p1 value */
4214 dpll |= (1 << (clock.p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
4215 /* also FPA1 */
4216 dpll |= (1 << (clock.p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
4217
4218 switch (clock.p2) {
4219 case 5:
4220 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
4221 break;
4222 case 7:
4223 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
4224 break;
4225 case 10:
4226 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
4227 break;
4228 case 14:
4229 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
4230 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08004231 }
4232
4233 if (is_sdvo && is_tv)
4234 dpll |= PLL_REF_INPUT_TVCLKINBC;
4235 else if (is_tv)
4236 /* XXX: just matching BIOS for now */
4237 /* dpll |= PLL_REF_INPUT_TVCLKINBC; */
4238 dpll |= 3;
Chris Wilsona7615032011-01-12 17:04:08 +00004239 else if (is_lvds && intel_panel_use_ssc(dev_priv) && num_connectors < 2)
Jesse Barnes79e53942008-11-07 14:24:08 -08004240 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
4241 else
4242 dpll |= PLL_REF_INPUT_DREFCLK;
4243
4244 /* setup pipeconf */
Chris Wilson5eddb702010-09-11 13:48:45 +01004245 pipeconf = I915_READ(PIPECONF(pipe));
Jesse Barnes79e53942008-11-07 14:24:08 -08004246
4247 /* Set up the display plane register */
4248 dspcntr = DISPPLANE_GAMMA_ENABLE;
4249
Jesse Barnesf7cb34d2011-10-12 10:49:14 -07004250 DRM_DEBUG_KMS("Mode for pipe %d:\n", pipe);
Jesse Barnes79e53942008-11-07 14:24:08 -08004251 drm_mode_debug_printmodeline(mode);
4252
Jesse Barnes5c5313c2010-10-07 16:01:11 -07004253 /* PCH eDP needs FDI, but CPU eDP does not */
Jesse Barnes4b645f12011-10-12 09:51:31 -07004254 if (!intel_crtc->no_pll) {
Jesse Barnese3aef172012-04-10 11:58:03 -07004255 if (!is_cpu_edp) {
Jesse Barnes4b645f12011-10-12 09:51:31 -07004256 I915_WRITE(PCH_FP0(pipe), fp);
4257 I915_WRITE(PCH_DPLL(pipe), dpll & ~DPLL_VCO_ENABLE);
Chris Wilson5eddb702010-09-11 13:48:45 +01004258
Jesse Barnes4b645f12011-10-12 09:51:31 -07004259 POSTING_READ(PCH_DPLL(pipe));
4260 udelay(150);
4261 }
4262 } else {
4263 if (dpll == (I915_READ(PCH_DPLL(0)) & 0x7fffffff) &&
4264 fp == I915_READ(PCH_FP0(0))) {
4265 intel_crtc->use_pll_a = true;
4266 DRM_DEBUG_KMS("using pipe a dpll\n");
4267 } else if (dpll == (I915_READ(PCH_DPLL(1)) & 0x7fffffff) &&
4268 fp == I915_READ(PCH_FP0(1))) {
4269 intel_crtc->use_pll_a = false;
4270 DRM_DEBUG_KMS("using pipe b dpll\n");
4271 } else {
4272 DRM_DEBUG_KMS("no matching PLL configuration for pipe 2\n");
4273 return -EINVAL;
4274 }
Jesse Barnes79e53942008-11-07 14:24:08 -08004275 }
4276
4277 /* The LVDS pin pair needs to be on before the DPLLs are enabled.
4278 * This is an exception to the general rule that mode_set doesn't turn
4279 * things on.
4280 */
4281 if (is_lvds) {
Eric Anholtfae14982011-03-30 13:01:09 -07004282 temp = I915_READ(PCH_LVDS);
Chris Wilson5eddb702010-09-11 13:48:45 +01004283 temp |= LVDS_PORT_EN | LVDS_A0A2_CLKA_POWER_UP;
Jesse Barnes7885d202012-01-12 14:51:17 -08004284 if (HAS_PCH_CPT(dev)) {
4285 temp &= ~PORT_TRANS_SEL_MASK;
Jesse Barnes4b645f12011-10-12 09:51:31 -07004286 temp |= PORT_TRANS_SEL_CPT(pipe);
Jesse Barnes7885d202012-01-12 14:51:17 -08004287 } else {
4288 if (pipe == 1)
4289 temp |= LVDS_PIPEB_SELECT;
4290 else
4291 temp &= ~LVDS_PIPEB_SELECT;
4292 }
Jesse Barnes4b645f12011-10-12 09:51:31 -07004293
Zhao Yakuia3e17eb2009-10-10 10:42:37 +08004294 /* set the corresponsding LVDS_BORDER bit */
Chris Wilson5eddb702010-09-11 13:48:45 +01004295 temp |= dev_priv->lvds_border_bits;
Jesse Barnes79e53942008-11-07 14:24:08 -08004296 /* Set the B0-B3 data pairs corresponding to whether we're going to
4297 * set the DPLLs for dual-channel mode or not.
4298 */
4299 if (clock.p2 == 7)
Chris Wilson5eddb702010-09-11 13:48:45 +01004300 temp |= LVDS_B0B3_POWER_UP | LVDS_CLKB_POWER_UP;
Jesse Barnes79e53942008-11-07 14:24:08 -08004301 else
Chris Wilson5eddb702010-09-11 13:48:45 +01004302 temp &= ~(LVDS_B0B3_POWER_UP | LVDS_CLKB_POWER_UP);
Jesse Barnes79e53942008-11-07 14:24:08 -08004303
4304 /* It would be nice to set 24 vs 18-bit mode (LVDS_A3_POWER_UP)
4305 * appropriately here, but we need to look more thoroughly into how
4306 * panels behave in the two modes.
4307 */
Bryan Freedaa9b5002011-01-12 13:43:19 -08004308 if (adjusted_mode->flags & DRM_MODE_FLAG_NHSYNC)
4309 lvds_sync |= LVDS_HSYNC_POLARITY;
4310 if (adjusted_mode->flags & DRM_MODE_FLAG_NVSYNC)
4311 lvds_sync |= LVDS_VSYNC_POLARITY;
4312 if ((temp & (LVDS_HSYNC_POLARITY | LVDS_VSYNC_POLARITY))
4313 != lvds_sync) {
4314 char flags[2] = "-+";
4315 DRM_INFO("Changing LVDS panel from "
4316 "(%chsync, %cvsync) to (%chsync, %cvsync)\n",
4317 flags[!(temp & LVDS_HSYNC_POLARITY)],
4318 flags[!(temp & LVDS_VSYNC_POLARITY)],
4319 flags[!(lvds_sync & LVDS_HSYNC_POLARITY)],
4320 flags[!(lvds_sync & LVDS_VSYNC_POLARITY)]);
4321 temp &= ~(LVDS_HSYNC_POLARITY | LVDS_VSYNC_POLARITY);
4322 temp |= lvds_sync;
4323 }
Eric Anholtfae14982011-03-30 13:01:09 -07004324 I915_WRITE(PCH_LVDS, temp);
Jesse Barnes79e53942008-11-07 14:24:08 -08004325 }
Jesse Barnes434ed092010-09-07 14:48:06 -07004326
Eric Anholt8febb292011-03-30 13:01:07 -07004327 pipeconf &= ~PIPECONF_DITHER_EN;
4328 pipeconf &= ~PIPECONF_DITHER_TYPE_MASK;
Jesse Barnes5a354202011-06-24 12:19:22 -07004329 if ((is_lvds && dev_priv->lvds_dither) || dither) {
Eric Anholt8febb292011-03-30 13:01:07 -07004330 pipeconf |= PIPECONF_DITHER_EN;
Daniel Vetterf74974c2011-10-11 17:27:51 +02004331 pipeconf |= PIPECONF_DITHER_TYPE_SP;
Jesse Barnes434ed092010-09-07 14:48:06 -07004332 }
Jesse Barnese3aef172012-04-10 11:58:03 -07004333 if (is_dp && !is_cpu_edp) {
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004334 intel_dp_set_m_n(crtc, mode, adjusted_mode);
Eric Anholt8febb292011-03-30 13:01:07 -07004335 } else {
Zhenyu Wang8db9d772010-04-07 16:15:54 +08004336 /* For non-DP output, clear any trans DP clock recovery setting.*/
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08004337 I915_WRITE(TRANSDATA_M1(pipe), 0);
4338 I915_WRITE(TRANSDATA_N1(pipe), 0);
4339 I915_WRITE(TRANSDPLINK_M1(pipe), 0);
4340 I915_WRITE(TRANSDPLINK_N1(pipe), 0);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08004341 }
Jesse Barnes79e53942008-11-07 14:24:08 -08004342
Jesse Barnese3aef172012-04-10 11:58:03 -07004343 if (!intel_crtc->no_pll && (!edp_encoder || is_pch_edp)) {
Eric Anholtfae14982011-03-30 13:01:09 -07004344 I915_WRITE(PCH_DPLL(pipe), dpll);
Chris Wilson5eddb702010-09-11 13:48:45 +01004345
Zhenyu Wang32f9d652009-07-24 01:00:32 +08004346 /* Wait for the clocks to stabilize. */
Eric Anholtfae14982011-03-30 13:01:09 -07004347 POSTING_READ(PCH_DPLL(pipe));
Zhenyu Wang32f9d652009-07-24 01:00:32 +08004348 udelay(150);
4349
Eric Anholt8febb292011-03-30 13:01:07 -07004350 /* The pixel multiplier can only be updated once the
4351 * DPLL is enabled and the clocks are stable.
4352 *
4353 * So write it again.
4354 */
Eric Anholtfae14982011-03-30 13:01:09 -07004355 I915_WRITE(PCH_DPLL(pipe), dpll);
Jesse Barnes79e53942008-11-07 14:24:08 -08004356 }
Jesse Barnes79e53942008-11-07 14:24:08 -08004357
Chris Wilson5eddb702010-09-11 13:48:45 +01004358 intel_crtc->lowfreq_avail = false;
Jesse Barnes4b645f12011-10-12 09:51:31 -07004359 if (!intel_crtc->no_pll) {
4360 if (is_lvds && has_reduced_clock && i915_powersave) {
4361 I915_WRITE(PCH_FP1(pipe), fp2);
4362 intel_crtc->lowfreq_avail = true;
4363 if (HAS_PIPE_CXSR(dev)) {
4364 DRM_DEBUG_KMS("enabling CxSR downclocking\n");
4365 pipeconf |= PIPECONF_CXSR_DOWNCLOCK;
4366 }
4367 } else {
4368 I915_WRITE(PCH_FP1(pipe), fp);
4369 if (HAS_PIPE_CXSR(dev)) {
4370 DRM_DEBUG_KMS("disabling CxSR downclocking\n");
4371 pipeconf &= ~PIPECONF_CXSR_DOWNCLOCK;
4372 }
Jesse Barnes652c3932009-08-17 13:31:43 -07004373 }
4374 }
4375
Keith Packard617cf882012-02-08 13:53:38 -08004376 pipeconf &= ~PIPECONF_INTERLACE_MASK;
Krzysztof Halasa734b4152010-05-25 18:41:46 +02004377 if (adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE) {
Daniel Vetter5def4742012-01-28 14:49:22 +01004378 pipeconf |= PIPECONF_INTERLACED_ILK;
Krzysztof Halasa734b4152010-05-25 18:41:46 +02004379 /* the chip adds 2 halflines automatically */
Krzysztof Halasa734b4152010-05-25 18:41:46 +02004380 adjusted_mode->crtc_vtotal -= 1;
Krzysztof Halasa734b4152010-05-25 18:41:46 +02004381 adjusted_mode->crtc_vblank_end -= 1;
Daniel Vetter0529a0d2012-01-28 14:49:24 +01004382 I915_WRITE(VSYNCSHIFT(pipe),
4383 adjusted_mode->crtc_hsync_start
4384 - adjusted_mode->crtc_htotal/2);
4385 } else {
Keith Packard617cf882012-02-08 13:53:38 -08004386 pipeconf |= PIPECONF_PROGRESSIVE;
Daniel Vetter0529a0d2012-01-28 14:49:24 +01004387 I915_WRITE(VSYNCSHIFT(pipe), 0);
4388 }
Krzysztof Halasa734b4152010-05-25 18:41:46 +02004389
Chris Wilson5eddb702010-09-11 13:48:45 +01004390 I915_WRITE(HTOTAL(pipe),
4391 (adjusted_mode->crtc_hdisplay - 1) |
Jesse Barnes79e53942008-11-07 14:24:08 -08004392 ((adjusted_mode->crtc_htotal - 1) << 16));
Chris Wilson5eddb702010-09-11 13:48:45 +01004393 I915_WRITE(HBLANK(pipe),
4394 (adjusted_mode->crtc_hblank_start - 1) |
Jesse Barnes79e53942008-11-07 14:24:08 -08004395 ((adjusted_mode->crtc_hblank_end - 1) << 16));
Chris Wilson5eddb702010-09-11 13:48:45 +01004396 I915_WRITE(HSYNC(pipe),
4397 (adjusted_mode->crtc_hsync_start - 1) |
Jesse Barnes79e53942008-11-07 14:24:08 -08004398 ((adjusted_mode->crtc_hsync_end - 1) << 16));
Chris Wilson5eddb702010-09-11 13:48:45 +01004399
4400 I915_WRITE(VTOTAL(pipe),
4401 (adjusted_mode->crtc_vdisplay - 1) |
Jesse Barnes79e53942008-11-07 14:24:08 -08004402 ((adjusted_mode->crtc_vtotal - 1) << 16));
Chris Wilson5eddb702010-09-11 13:48:45 +01004403 I915_WRITE(VBLANK(pipe),
4404 (adjusted_mode->crtc_vblank_start - 1) |
Jesse Barnes79e53942008-11-07 14:24:08 -08004405 ((adjusted_mode->crtc_vblank_end - 1) << 16));
Chris Wilson5eddb702010-09-11 13:48:45 +01004406 I915_WRITE(VSYNC(pipe),
4407 (adjusted_mode->crtc_vsync_start - 1) |
Jesse Barnes79e53942008-11-07 14:24:08 -08004408 ((adjusted_mode->crtc_vsync_end - 1) << 16));
Chris Wilson5eddb702010-09-11 13:48:45 +01004409
Eric Anholt8febb292011-03-30 13:01:07 -07004410 /* pipesrc controls the size that is scaled from, which should
4411 * always be the user's requested size.
Jesse Barnes79e53942008-11-07 14:24:08 -08004412 */
Chris Wilson5eddb702010-09-11 13:48:45 +01004413 I915_WRITE(PIPESRC(pipe),
4414 ((mode->hdisplay - 1) << 16) | (mode->vdisplay - 1));
Zhenyu Wang2c072452009-06-05 15:38:42 +08004415
Eric Anholt8febb292011-03-30 13:01:07 -07004416 I915_WRITE(PIPE_DATA_M1(pipe), TU_SIZE(m_n.tu) | m_n.gmch_m);
4417 I915_WRITE(PIPE_DATA_N1(pipe), m_n.gmch_n);
4418 I915_WRITE(PIPE_LINK_M1(pipe), m_n.link_m);
4419 I915_WRITE(PIPE_LINK_N1(pipe), m_n.link_n);
Zhenyu Wang2c072452009-06-05 15:38:42 +08004420
Jesse Barnese3aef172012-04-10 11:58:03 -07004421 if (is_cpu_edp)
Eric Anholt8febb292011-03-30 13:01:07 -07004422 ironlake_set_pll_edp(crtc, adjusted_mode->clock);
Zhenyu Wang2c072452009-06-05 15:38:42 +08004423
Chris Wilson5eddb702010-09-11 13:48:45 +01004424 I915_WRITE(PIPECONF(pipe), pipeconf);
4425 POSTING_READ(PIPECONF(pipe));
Jesse Barnes79e53942008-11-07 14:24:08 -08004426
Jesse Barnes9d0498a2010-08-18 13:20:54 -07004427 intel_wait_for_vblank(dev, pipe);
Jesse Barnes79e53942008-11-07 14:24:08 -08004428
Chris Wilson5eddb702010-09-11 13:48:45 +01004429 I915_WRITE(DSPCNTR(plane), dspcntr);
Jesse Barnesb24e7172011-01-04 15:09:30 -08004430 POSTING_READ(DSPCNTR(plane));
Jesse Barnes79e53942008-11-07 14:24:08 -08004431
Chris Wilson5c3b82e2009-02-11 13:25:09 +00004432 ret = intel_pipe_set_base(crtc, x, y, old_fb);
Shaohua Li7662c8b2009-06-26 11:23:55 +08004433
4434 intel_update_watermarks(dev);
4435
Chris Wilson1f803ee2009-06-06 09:45:59 +01004436 return ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08004437}
4438
Eric Anholtf564048e2011-03-30 13:01:02 -07004439static int intel_crtc_mode_set(struct drm_crtc *crtc,
4440 struct drm_display_mode *mode,
4441 struct drm_display_mode *adjusted_mode,
4442 int x, int y,
4443 struct drm_framebuffer *old_fb)
4444{
4445 struct drm_device *dev = crtc->dev;
4446 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholt0b701d22011-03-30 13:01:03 -07004447 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4448 int pipe = intel_crtc->pipe;
Eric Anholtf564048e2011-03-30 13:01:02 -07004449 int ret;
4450
Eric Anholt0b701d22011-03-30 13:01:03 -07004451 drm_vblank_pre_modeset(dev, pipe);
4452
Eric Anholtf564048e2011-03-30 13:01:02 -07004453 ret = dev_priv->display.crtc_mode_set(crtc, mode, adjusted_mode,
4454 x, y, old_fb);
Jesse Barnes79e53942008-11-07 14:24:08 -08004455 drm_vblank_post_modeset(dev, pipe);
4456
Jesse Barnesd8e70a22011-11-15 10:28:54 -08004457 if (ret)
4458 intel_crtc->dpms_mode = DRM_MODE_DPMS_OFF;
4459 else
4460 intel_crtc->dpms_mode = DRM_MODE_DPMS_ON;
Keith Packard120eced2011-07-27 01:21:40 -07004461
Jesse Barnes79e53942008-11-07 14:24:08 -08004462 return ret;
4463}
4464
Wu Fengguang3a9627f2011-12-09 20:42:19 +08004465static bool intel_eld_uptodate(struct drm_connector *connector,
4466 int reg_eldv, uint32_t bits_eldv,
4467 int reg_elda, uint32_t bits_elda,
4468 int reg_edid)
4469{
4470 struct drm_i915_private *dev_priv = connector->dev->dev_private;
4471 uint8_t *eld = connector->eld;
4472 uint32_t i;
4473
4474 i = I915_READ(reg_eldv);
4475 i &= bits_eldv;
4476
4477 if (!eld[0])
4478 return !i;
4479
4480 if (!i)
4481 return false;
4482
4483 i = I915_READ(reg_elda);
4484 i &= ~bits_elda;
4485 I915_WRITE(reg_elda, i);
4486
4487 for (i = 0; i < eld[2]; i++)
4488 if (I915_READ(reg_edid) != *((uint32_t *)eld + i))
4489 return false;
4490
4491 return true;
4492}
4493
Wu Fengguange0dac652011-09-05 14:25:34 +08004494static void g4x_write_eld(struct drm_connector *connector,
4495 struct drm_crtc *crtc)
4496{
4497 struct drm_i915_private *dev_priv = connector->dev->dev_private;
4498 uint8_t *eld = connector->eld;
4499 uint32_t eldv;
4500 uint32_t len;
4501 uint32_t i;
4502
4503 i = I915_READ(G4X_AUD_VID_DID);
4504
4505 if (i == INTEL_AUDIO_DEVBLC || i == INTEL_AUDIO_DEVCL)
4506 eldv = G4X_ELDV_DEVCL_DEVBLC;
4507 else
4508 eldv = G4X_ELDV_DEVCTG;
4509
Wu Fengguang3a9627f2011-12-09 20:42:19 +08004510 if (intel_eld_uptodate(connector,
4511 G4X_AUD_CNTL_ST, eldv,
4512 G4X_AUD_CNTL_ST, G4X_ELD_ADDR,
4513 G4X_HDMIW_HDMIEDID))
4514 return;
4515
Wu Fengguange0dac652011-09-05 14:25:34 +08004516 i = I915_READ(G4X_AUD_CNTL_ST);
4517 i &= ~(eldv | G4X_ELD_ADDR);
4518 len = (i >> 9) & 0x1f; /* ELD buffer size */
4519 I915_WRITE(G4X_AUD_CNTL_ST, i);
4520
4521 if (!eld[0])
4522 return;
4523
4524 len = min_t(uint8_t, eld[2], len);
4525 DRM_DEBUG_DRIVER("ELD size %d\n", len);
4526 for (i = 0; i < len; i++)
4527 I915_WRITE(G4X_HDMIW_HDMIEDID, *((uint32_t *)eld + i));
4528
4529 i = I915_READ(G4X_AUD_CNTL_ST);
4530 i |= eldv;
4531 I915_WRITE(G4X_AUD_CNTL_ST, i);
4532}
4533
4534static void ironlake_write_eld(struct drm_connector *connector,
4535 struct drm_crtc *crtc)
4536{
4537 struct drm_i915_private *dev_priv = connector->dev->dev_private;
4538 uint8_t *eld = connector->eld;
4539 uint32_t eldv;
4540 uint32_t i;
4541 int len;
4542 int hdmiw_hdmiedid;
Wu Fengguangb6daa022012-01-06 14:41:31 -06004543 int aud_config;
Wu Fengguange0dac652011-09-05 14:25:34 +08004544 int aud_cntl_st;
4545 int aud_cntrl_st2;
4546
Wu Fengguangb3f33cb2011-12-09 20:42:17 +08004547 if (HAS_PCH_IBX(connector->dev)) {
Wu Fengguang1202b4c62011-12-09 20:42:18 +08004548 hdmiw_hdmiedid = IBX_HDMIW_HDMIEDID_A;
Wu Fengguangb6daa022012-01-06 14:41:31 -06004549 aud_config = IBX_AUD_CONFIG_A;
Wu Fengguang1202b4c62011-12-09 20:42:18 +08004550 aud_cntl_st = IBX_AUD_CNTL_ST_A;
4551 aud_cntrl_st2 = IBX_AUD_CNTL_ST2;
Wu Fengguange0dac652011-09-05 14:25:34 +08004552 } else {
Wu Fengguang1202b4c62011-12-09 20:42:18 +08004553 hdmiw_hdmiedid = CPT_HDMIW_HDMIEDID_A;
Wu Fengguangb6daa022012-01-06 14:41:31 -06004554 aud_config = CPT_AUD_CONFIG_A;
Wu Fengguang1202b4c62011-12-09 20:42:18 +08004555 aud_cntl_st = CPT_AUD_CNTL_ST_A;
4556 aud_cntrl_st2 = CPT_AUD_CNTRL_ST2;
Wu Fengguange0dac652011-09-05 14:25:34 +08004557 }
4558
4559 i = to_intel_crtc(crtc)->pipe;
4560 hdmiw_hdmiedid += i * 0x100;
4561 aud_cntl_st += i * 0x100;
Wu Fengguangb6daa022012-01-06 14:41:31 -06004562 aud_config += i * 0x100;
Wu Fengguange0dac652011-09-05 14:25:34 +08004563
4564 DRM_DEBUG_DRIVER("ELD on pipe %c\n", pipe_name(i));
4565
4566 i = I915_READ(aud_cntl_st);
4567 i = (i >> 29) & 0x3; /* DIP_Port_Select, 0x1 = PortB */
4568 if (!i) {
4569 DRM_DEBUG_DRIVER("Audio directed to unknown port\n");
4570 /* operate blindly on all ports */
Wu Fengguang1202b4c62011-12-09 20:42:18 +08004571 eldv = IBX_ELD_VALIDB;
4572 eldv |= IBX_ELD_VALIDB << 4;
4573 eldv |= IBX_ELD_VALIDB << 8;
Wu Fengguange0dac652011-09-05 14:25:34 +08004574 } else {
4575 DRM_DEBUG_DRIVER("ELD on port %c\n", 'A' + i);
Wu Fengguang1202b4c62011-12-09 20:42:18 +08004576 eldv = IBX_ELD_VALIDB << ((i - 1) * 4);
Wu Fengguange0dac652011-09-05 14:25:34 +08004577 }
4578
Wu Fengguang3a9627f2011-12-09 20:42:19 +08004579 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT)) {
4580 DRM_DEBUG_DRIVER("ELD: DisplayPort detected\n");
4581 eld[5] |= (1 << 2); /* Conn_Type, 0x1 = DisplayPort */
Wu Fengguangb6daa022012-01-06 14:41:31 -06004582 I915_WRITE(aud_config, AUD_CONFIG_N_VALUE_INDEX); /* 0x1 = DP */
4583 } else
4584 I915_WRITE(aud_config, 0);
Wu Fengguang3a9627f2011-12-09 20:42:19 +08004585
4586 if (intel_eld_uptodate(connector,
4587 aud_cntrl_st2, eldv,
4588 aud_cntl_st, IBX_ELD_ADDRESS,
4589 hdmiw_hdmiedid))
4590 return;
4591
Wu Fengguange0dac652011-09-05 14:25:34 +08004592 i = I915_READ(aud_cntrl_st2);
4593 i &= ~eldv;
4594 I915_WRITE(aud_cntrl_st2, i);
4595
4596 if (!eld[0])
4597 return;
4598
Wu Fengguange0dac652011-09-05 14:25:34 +08004599 i = I915_READ(aud_cntl_st);
Wu Fengguang1202b4c62011-12-09 20:42:18 +08004600 i &= ~IBX_ELD_ADDRESS;
Wu Fengguange0dac652011-09-05 14:25:34 +08004601 I915_WRITE(aud_cntl_st, i);
4602
4603 len = min_t(uint8_t, eld[2], 21); /* 84 bytes of hw ELD buffer */
4604 DRM_DEBUG_DRIVER("ELD size %d\n", len);
4605 for (i = 0; i < len; i++)
4606 I915_WRITE(hdmiw_hdmiedid, *((uint32_t *)eld + i));
4607
4608 i = I915_READ(aud_cntrl_st2);
4609 i |= eldv;
4610 I915_WRITE(aud_cntrl_st2, i);
4611}
4612
4613void intel_write_eld(struct drm_encoder *encoder,
4614 struct drm_display_mode *mode)
4615{
4616 struct drm_crtc *crtc = encoder->crtc;
4617 struct drm_connector *connector;
4618 struct drm_device *dev = encoder->dev;
4619 struct drm_i915_private *dev_priv = dev->dev_private;
4620
4621 connector = drm_select_eld(encoder, mode);
4622 if (!connector)
4623 return;
4624
4625 DRM_DEBUG_DRIVER("ELD on [CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
4626 connector->base.id,
4627 drm_get_connector_name(connector),
4628 connector->encoder->base.id,
4629 drm_get_encoder_name(connector->encoder));
4630
4631 connector->eld[6] = drm_av_sync_delay(connector, mode) / 2;
4632
4633 if (dev_priv->display.write_eld)
4634 dev_priv->display.write_eld(connector, crtc);
4635}
4636
Jesse Barnes79e53942008-11-07 14:24:08 -08004637/** Loads the palette/gamma unit for the CRTC with the prepared values */
4638void intel_crtc_load_lut(struct drm_crtc *crtc)
4639{
4640 struct drm_device *dev = crtc->dev;
4641 struct drm_i915_private *dev_priv = dev->dev_private;
4642 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08004643 int palreg = PALETTE(intel_crtc->pipe);
Jesse Barnes79e53942008-11-07 14:24:08 -08004644 int i;
4645
4646 /* The clocks have to be on to load the palette. */
Alban Browaeysaed3f092012-02-24 17:12:45 +00004647 if (!crtc->enabled || !intel_crtc->active)
Jesse Barnes79e53942008-11-07 14:24:08 -08004648 return;
4649
Adam Jacksonf2b115e2009-12-03 17:14:42 -05004650 /* use legacy palette for Ironlake */
Eric Anholtbad720f2009-10-22 16:11:14 -07004651 if (HAS_PCH_SPLIT(dev))
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08004652 palreg = LGC_PALETTE(intel_crtc->pipe);
Zhenyu Wang2c072452009-06-05 15:38:42 +08004653
Jesse Barnes79e53942008-11-07 14:24:08 -08004654 for (i = 0; i < 256; i++) {
4655 I915_WRITE(palreg + 4 * i,
4656 (intel_crtc->lut_r[i] << 16) |
4657 (intel_crtc->lut_g[i] << 8) |
4658 intel_crtc->lut_b[i]);
4659 }
4660}
4661
Chris Wilson560b85b2010-08-07 11:01:38 +01004662static void i845_update_cursor(struct drm_crtc *crtc, u32 base)
4663{
4664 struct drm_device *dev = crtc->dev;
4665 struct drm_i915_private *dev_priv = dev->dev_private;
4666 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4667 bool visible = base != 0;
4668 u32 cntl;
4669
4670 if (intel_crtc->cursor_visible == visible)
4671 return;
4672
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08004673 cntl = I915_READ(_CURACNTR);
Chris Wilson560b85b2010-08-07 11:01:38 +01004674 if (visible) {
4675 /* On these chipsets we can only modify the base whilst
4676 * the cursor is disabled.
4677 */
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08004678 I915_WRITE(_CURABASE, base);
Chris Wilson560b85b2010-08-07 11:01:38 +01004679
4680 cntl &= ~(CURSOR_FORMAT_MASK);
4681 /* XXX width must be 64, stride 256 => 0x00 << 28 */
4682 cntl |= CURSOR_ENABLE |
4683 CURSOR_GAMMA_ENABLE |
4684 CURSOR_FORMAT_ARGB;
4685 } else
4686 cntl &= ~(CURSOR_ENABLE | CURSOR_GAMMA_ENABLE);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08004687 I915_WRITE(_CURACNTR, cntl);
Chris Wilson560b85b2010-08-07 11:01:38 +01004688
4689 intel_crtc->cursor_visible = visible;
4690}
4691
4692static void i9xx_update_cursor(struct drm_crtc *crtc, u32 base)
4693{
4694 struct drm_device *dev = crtc->dev;
4695 struct drm_i915_private *dev_priv = dev->dev_private;
4696 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4697 int pipe = intel_crtc->pipe;
4698 bool visible = base != 0;
4699
4700 if (intel_crtc->cursor_visible != visible) {
Jesse Barnes548f2452011-02-17 10:40:53 -08004701 uint32_t cntl = I915_READ(CURCNTR(pipe));
Chris Wilson560b85b2010-08-07 11:01:38 +01004702 if (base) {
4703 cntl &= ~(CURSOR_MODE | MCURSOR_PIPE_SELECT);
4704 cntl |= CURSOR_MODE_64_ARGB_AX | MCURSOR_GAMMA_ENABLE;
4705 cntl |= pipe << 28; /* Connect to correct pipe */
4706 } else {
4707 cntl &= ~(CURSOR_MODE | MCURSOR_GAMMA_ENABLE);
4708 cntl |= CURSOR_MODE_DISABLE;
4709 }
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08004710 I915_WRITE(CURCNTR(pipe), cntl);
Chris Wilson560b85b2010-08-07 11:01:38 +01004711
4712 intel_crtc->cursor_visible = visible;
4713 }
4714 /* and commit changes on next vblank */
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08004715 I915_WRITE(CURBASE(pipe), base);
Chris Wilson560b85b2010-08-07 11:01:38 +01004716}
4717
Jesse Barnes65a21cd2011-10-12 11:10:21 -07004718static void ivb_update_cursor(struct drm_crtc *crtc, u32 base)
4719{
4720 struct drm_device *dev = crtc->dev;
4721 struct drm_i915_private *dev_priv = dev->dev_private;
4722 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4723 int pipe = intel_crtc->pipe;
4724 bool visible = base != 0;
4725
4726 if (intel_crtc->cursor_visible != visible) {
4727 uint32_t cntl = I915_READ(CURCNTR_IVB(pipe));
4728 if (base) {
4729 cntl &= ~CURSOR_MODE;
4730 cntl |= CURSOR_MODE_64_ARGB_AX | MCURSOR_GAMMA_ENABLE;
4731 } else {
4732 cntl &= ~(CURSOR_MODE | MCURSOR_GAMMA_ENABLE);
4733 cntl |= CURSOR_MODE_DISABLE;
4734 }
4735 I915_WRITE(CURCNTR_IVB(pipe), cntl);
4736
4737 intel_crtc->cursor_visible = visible;
4738 }
4739 /* and commit changes on next vblank */
4740 I915_WRITE(CURBASE_IVB(pipe), base);
4741}
4742
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01004743/* If no-part of the cursor is visible on the framebuffer, then the GPU may hang... */
Chris Wilson6b383a72010-09-13 13:54:26 +01004744static void intel_crtc_update_cursor(struct drm_crtc *crtc,
4745 bool on)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01004746{
4747 struct drm_device *dev = crtc->dev;
4748 struct drm_i915_private *dev_priv = dev->dev_private;
4749 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4750 int pipe = intel_crtc->pipe;
4751 int x = intel_crtc->cursor_x;
4752 int y = intel_crtc->cursor_y;
Chris Wilson560b85b2010-08-07 11:01:38 +01004753 u32 base, pos;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01004754 bool visible;
4755
4756 pos = 0;
4757
Chris Wilson6b383a72010-09-13 13:54:26 +01004758 if (on && crtc->enabled && crtc->fb) {
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01004759 base = intel_crtc->cursor_addr;
4760 if (x > (int) crtc->fb->width)
4761 base = 0;
4762
4763 if (y > (int) crtc->fb->height)
4764 base = 0;
4765 } else
4766 base = 0;
4767
4768 if (x < 0) {
4769 if (x + intel_crtc->cursor_width < 0)
4770 base = 0;
4771
4772 pos |= CURSOR_POS_SIGN << CURSOR_X_SHIFT;
4773 x = -x;
4774 }
4775 pos |= x << CURSOR_X_SHIFT;
4776
4777 if (y < 0) {
4778 if (y + intel_crtc->cursor_height < 0)
4779 base = 0;
4780
4781 pos |= CURSOR_POS_SIGN << CURSOR_Y_SHIFT;
4782 y = -y;
4783 }
4784 pos |= y << CURSOR_Y_SHIFT;
4785
4786 visible = base != 0;
Chris Wilson560b85b2010-08-07 11:01:38 +01004787 if (!visible && !intel_crtc->cursor_visible)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01004788 return;
4789
Eugeni Dodonov0cd83aa2012-04-13 17:08:48 -03004790 if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev)) {
Jesse Barnes65a21cd2011-10-12 11:10:21 -07004791 I915_WRITE(CURPOS_IVB(pipe), pos);
4792 ivb_update_cursor(crtc, base);
4793 } else {
4794 I915_WRITE(CURPOS(pipe), pos);
4795 if (IS_845G(dev) || IS_I865G(dev))
4796 i845_update_cursor(crtc, base);
4797 else
4798 i9xx_update_cursor(crtc, base);
4799 }
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01004800
4801 if (visible)
4802 intel_mark_busy(dev, to_intel_framebuffer(crtc->fb)->obj);
4803}
4804
Jesse Barnes79e53942008-11-07 14:24:08 -08004805static int intel_crtc_cursor_set(struct drm_crtc *crtc,
Chris Wilson05394f32010-11-08 19:18:58 +00004806 struct drm_file *file,
Jesse Barnes79e53942008-11-07 14:24:08 -08004807 uint32_t handle,
4808 uint32_t width, uint32_t height)
4809{
4810 struct drm_device *dev = crtc->dev;
4811 struct drm_i915_private *dev_priv = dev->dev_private;
4812 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Chris Wilson05394f32010-11-08 19:18:58 +00004813 struct drm_i915_gem_object *obj;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01004814 uint32_t addr;
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05004815 int ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08004816
Zhao Yakui28c97732009-10-09 11:39:41 +08004817 DRM_DEBUG_KMS("\n");
Jesse Barnes79e53942008-11-07 14:24:08 -08004818
4819 /* if we want to turn off the cursor ignore width and height */
4820 if (!handle) {
Zhao Yakui28c97732009-10-09 11:39:41 +08004821 DRM_DEBUG_KMS("cursor off\n");
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05004822 addr = 0;
Chris Wilson05394f32010-11-08 19:18:58 +00004823 obj = NULL;
Pierre Willenbrock50044172009-02-23 10:12:15 +10004824 mutex_lock(&dev->struct_mutex);
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05004825 goto finish;
Jesse Barnes79e53942008-11-07 14:24:08 -08004826 }
4827
4828 /* Currently we only support 64x64 cursors */
4829 if (width != 64 || height != 64) {
4830 DRM_ERROR("we currently only support 64x64 cursors\n");
4831 return -EINVAL;
4832 }
4833
Chris Wilson05394f32010-11-08 19:18:58 +00004834 obj = to_intel_bo(drm_gem_object_lookup(dev, file, handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00004835 if (&obj->base == NULL)
Jesse Barnes79e53942008-11-07 14:24:08 -08004836 return -ENOENT;
4837
Chris Wilson05394f32010-11-08 19:18:58 +00004838 if (obj->base.size < width * height * 4) {
Jesse Barnes79e53942008-11-07 14:24:08 -08004839 DRM_ERROR("buffer is to small\n");
Dave Airlie34b8686e2009-01-15 14:03:07 +10004840 ret = -ENOMEM;
4841 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -08004842 }
4843
Dave Airlie71acb5e2008-12-30 20:31:46 +10004844 /* we only need to pin inside GTT if cursor is non-phy */
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05004845 mutex_lock(&dev->struct_mutex);
Kristian Høgsbergb295d1b2009-12-16 15:16:17 -05004846 if (!dev_priv->info->cursor_needs_physical) {
Chris Wilsond9e86c02010-11-10 16:40:20 +00004847 if (obj->tiling_mode) {
4848 DRM_ERROR("cursor cannot be tiled\n");
4849 ret = -EINVAL;
4850 goto fail_locked;
4851 }
4852
Chris Wilson2da3b9b2011-04-14 09:41:17 +01004853 ret = i915_gem_object_pin_to_display_plane(obj, 0, NULL);
Chris Wilsone7b526b2010-06-02 08:30:48 +01004854 if (ret) {
4855 DRM_ERROR("failed to move cursor bo into the GTT\n");
Chris Wilson2da3b9b2011-04-14 09:41:17 +01004856 goto fail_locked;
Chris Wilsone7b526b2010-06-02 08:30:48 +01004857 }
4858
Chris Wilsond9e86c02010-11-10 16:40:20 +00004859 ret = i915_gem_object_put_fence(obj);
4860 if (ret) {
Chris Wilson2da3b9b2011-04-14 09:41:17 +01004861 DRM_ERROR("failed to release fence for cursor");
Chris Wilsond9e86c02010-11-10 16:40:20 +00004862 goto fail_unpin;
4863 }
4864
Chris Wilson05394f32010-11-08 19:18:58 +00004865 addr = obj->gtt_offset;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004866 } else {
Chris Wilson6eeefaf2010-08-07 11:01:39 +01004867 int align = IS_I830(dev) ? 16 * 1024 : 256;
Chris Wilson05394f32010-11-08 19:18:58 +00004868 ret = i915_gem_attach_phys_object(dev, obj,
Chris Wilson6eeefaf2010-08-07 11:01:39 +01004869 (intel_crtc->pipe == 0) ? I915_GEM_PHYS_CURSOR_0 : I915_GEM_PHYS_CURSOR_1,
4870 align);
Dave Airlie71acb5e2008-12-30 20:31:46 +10004871 if (ret) {
4872 DRM_ERROR("failed to attach phys object\n");
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05004873 goto fail_locked;
Dave Airlie71acb5e2008-12-30 20:31:46 +10004874 }
Chris Wilson05394f32010-11-08 19:18:58 +00004875 addr = obj->phys_obj->handle->busaddr;
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05004876 }
4877
Chris Wilsona6c45cf2010-09-17 00:32:17 +01004878 if (IS_GEN2(dev))
Jesse Barnes14b60392009-05-20 16:47:08 -04004879 I915_WRITE(CURSIZE, (height << 12) | width);
4880
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05004881 finish:
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05004882 if (intel_crtc->cursor_bo) {
Kristian Høgsbergb295d1b2009-12-16 15:16:17 -05004883 if (dev_priv->info->cursor_needs_physical) {
Chris Wilson05394f32010-11-08 19:18:58 +00004884 if (intel_crtc->cursor_bo != obj)
Dave Airlie71acb5e2008-12-30 20:31:46 +10004885 i915_gem_detach_phys_object(dev, intel_crtc->cursor_bo);
4886 } else
4887 i915_gem_object_unpin(intel_crtc->cursor_bo);
Chris Wilson05394f32010-11-08 19:18:58 +00004888 drm_gem_object_unreference(&intel_crtc->cursor_bo->base);
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05004889 }
Jesse Barnes80824002009-09-10 15:28:06 -07004890
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05004891 mutex_unlock(&dev->struct_mutex);
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05004892
4893 intel_crtc->cursor_addr = addr;
Chris Wilson05394f32010-11-08 19:18:58 +00004894 intel_crtc->cursor_bo = obj;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01004895 intel_crtc->cursor_width = width;
4896 intel_crtc->cursor_height = height;
4897
Chris Wilson6b383a72010-09-13 13:54:26 +01004898 intel_crtc_update_cursor(crtc, true);
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05004899
Jesse Barnes79e53942008-11-07 14:24:08 -08004900 return 0;
Chris Wilsone7b526b2010-06-02 08:30:48 +01004901fail_unpin:
Chris Wilson05394f32010-11-08 19:18:58 +00004902 i915_gem_object_unpin(obj);
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05004903fail_locked:
Dave Airlie34b8686e2009-01-15 14:03:07 +10004904 mutex_unlock(&dev->struct_mutex);
Luca Barbieribc9025b2010-02-09 05:49:12 +00004905fail:
Chris Wilson05394f32010-11-08 19:18:58 +00004906 drm_gem_object_unreference_unlocked(&obj->base);
Dave Airlie34b8686e2009-01-15 14:03:07 +10004907 return ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08004908}
4909
4910static int intel_crtc_cursor_move(struct drm_crtc *crtc, int x, int y)
4911{
Jesse Barnes79e53942008-11-07 14:24:08 -08004912 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08004913
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01004914 intel_crtc->cursor_x = x;
4915 intel_crtc->cursor_y = y;
Jesse Barnes652c3932009-08-17 13:31:43 -07004916
Chris Wilson6b383a72010-09-13 13:54:26 +01004917 intel_crtc_update_cursor(crtc, true);
Jesse Barnes79e53942008-11-07 14:24:08 -08004918
4919 return 0;
4920}
4921
4922/** Sets the color ramps on behalf of RandR */
4923void intel_crtc_fb_gamma_set(struct drm_crtc *crtc, u16 red, u16 green,
4924 u16 blue, int regno)
4925{
4926 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4927
4928 intel_crtc->lut_r[regno] = red >> 8;
4929 intel_crtc->lut_g[regno] = green >> 8;
4930 intel_crtc->lut_b[regno] = blue >> 8;
4931}
4932
Dave Airlieb8c00ac2009-10-06 13:54:01 +10004933void intel_crtc_fb_gamma_get(struct drm_crtc *crtc, u16 *red, u16 *green,
4934 u16 *blue, int regno)
4935{
4936 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4937
4938 *red = intel_crtc->lut_r[regno] << 8;
4939 *green = intel_crtc->lut_g[regno] << 8;
4940 *blue = intel_crtc->lut_b[regno] << 8;
4941}
4942
Jesse Barnes79e53942008-11-07 14:24:08 -08004943static void intel_crtc_gamma_set(struct drm_crtc *crtc, u16 *red, u16 *green,
James Simmons72034252010-08-03 01:33:19 +01004944 u16 *blue, uint32_t start, uint32_t size)
Jesse Barnes79e53942008-11-07 14:24:08 -08004945{
James Simmons72034252010-08-03 01:33:19 +01004946 int end = (start + size > 256) ? 256 : start + size, i;
Jesse Barnes79e53942008-11-07 14:24:08 -08004947 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08004948
James Simmons72034252010-08-03 01:33:19 +01004949 for (i = start; i < end; i++) {
Jesse Barnes79e53942008-11-07 14:24:08 -08004950 intel_crtc->lut_r[i] = red[i] >> 8;
4951 intel_crtc->lut_g[i] = green[i] >> 8;
4952 intel_crtc->lut_b[i] = blue[i] >> 8;
4953 }
4954
4955 intel_crtc_load_lut(crtc);
4956}
4957
4958/**
4959 * Get a pipe with a simple mode set on it for doing load-based monitor
4960 * detection.
4961 *
4962 * It will be up to the load-detect code to adjust the pipe as appropriate for
Eric Anholtc751ce42010-03-25 11:48:48 -07004963 * its requirements. The pipe will be connected to no other encoders.
Jesse Barnes79e53942008-11-07 14:24:08 -08004964 *
Eric Anholtc751ce42010-03-25 11:48:48 -07004965 * Currently this code will only succeed if there is a pipe with no encoders
Jesse Barnes79e53942008-11-07 14:24:08 -08004966 * configured for it. In the future, it could choose to temporarily disable
4967 * some outputs to free up a pipe for its use.
4968 *
4969 * \return crtc, or NULL if no pipes are available.
4970 */
4971
4972/* VESA 640x480x72Hz mode to set on the pipe */
4973static struct drm_display_mode load_detect_mode = {
4974 DRM_MODE("640x480", DRM_MODE_TYPE_DEFAULT, 31500, 640, 664,
4975 704, 832, 0, 480, 489, 491, 520, 0, DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
4976};
4977
Chris Wilsond2dff872011-04-19 08:36:26 +01004978static struct drm_framebuffer *
4979intel_framebuffer_create(struct drm_device *dev,
Jesse Barnes308e5bc2011-11-14 14:51:28 -08004980 struct drm_mode_fb_cmd2 *mode_cmd,
Chris Wilsond2dff872011-04-19 08:36:26 +01004981 struct drm_i915_gem_object *obj)
4982{
4983 struct intel_framebuffer *intel_fb;
4984 int ret;
4985
4986 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
4987 if (!intel_fb) {
4988 drm_gem_object_unreference_unlocked(&obj->base);
4989 return ERR_PTR(-ENOMEM);
4990 }
4991
4992 ret = intel_framebuffer_init(dev, intel_fb, mode_cmd, obj);
4993 if (ret) {
4994 drm_gem_object_unreference_unlocked(&obj->base);
4995 kfree(intel_fb);
4996 return ERR_PTR(ret);
4997 }
4998
4999 return &intel_fb->base;
5000}
5001
5002static u32
5003intel_framebuffer_pitch_for_width(int width, int bpp)
5004{
5005 u32 pitch = DIV_ROUND_UP(width * bpp, 8);
5006 return ALIGN(pitch, 64);
5007}
5008
5009static u32
5010intel_framebuffer_size_for_mode(struct drm_display_mode *mode, int bpp)
5011{
5012 u32 pitch = intel_framebuffer_pitch_for_width(mode->hdisplay, bpp);
5013 return ALIGN(pitch * mode->vdisplay, PAGE_SIZE);
5014}
5015
5016static struct drm_framebuffer *
5017intel_framebuffer_create_for_mode(struct drm_device *dev,
5018 struct drm_display_mode *mode,
5019 int depth, int bpp)
5020{
5021 struct drm_i915_gem_object *obj;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08005022 struct drm_mode_fb_cmd2 mode_cmd;
Chris Wilsond2dff872011-04-19 08:36:26 +01005023
5024 obj = i915_gem_alloc_object(dev,
5025 intel_framebuffer_size_for_mode(mode, bpp));
5026 if (obj == NULL)
5027 return ERR_PTR(-ENOMEM);
5028
5029 mode_cmd.width = mode->hdisplay;
5030 mode_cmd.height = mode->vdisplay;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08005031 mode_cmd.pitches[0] = intel_framebuffer_pitch_for_width(mode_cmd.width,
5032 bpp);
Dave Airlie5ca0c342012-02-23 15:33:40 +00005033 mode_cmd.pixel_format = drm_mode_legacy_fb_format(bpp, depth);
Chris Wilsond2dff872011-04-19 08:36:26 +01005034
5035 return intel_framebuffer_create(dev, &mode_cmd, obj);
5036}
5037
5038static struct drm_framebuffer *
5039mode_fits_in_fbdev(struct drm_device *dev,
5040 struct drm_display_mode *mode)
5041{
5042 struct drm_i915_private *dev_priv = dev->dev_private;
5043 struct drm_i915_gem_object *obj;
5044 struct drm_framebuffer *fb;
5045
5046 if (dev_priv->fbdev == NULL)
5047 return NULL;
5048
5049 obj = dev_priv->fbdev->ifb.obj;
5050 if (obj == NULL)
5051 return NULL;
5052
5053 fb = &dev_priv->fbdev->ifb.base;
Ville Syrjälä01f2c772011-12-20 00:06:49 +02005054 if (fb->pitches[0] < intel_framebuffer_pitch_for_width(mode->hdisplay,
5055 fb->bits_per_pixel))
Chris Wilsond2dff872011-04-19 08:36:26 +01005056 return NULL;
5057
Ville Syrjälä01f2c772011-12-20 00:06:49 +02005058 if (obj->base.size < mode->vdisplay * fb->pitches[0])
Chris Wilsond2dff872011-04-19 08:36:26 +01005059 return NULL;
5060
5061 return fb;
5062}
5063
Chris Wilson71731882011-04-19 23:10:58 +01005064bool intel_get_load_detect_pipe(struct intel_encoder *intel_encoder,
5065 struct drm_connector *connector,
5066 struct drm_display_mode *mode,
Chris Wilson8261b192011-04-19 23:18:09 +01005067 struct intel_load_detect_pipe *old)
Jesse Barnes79e53942008-11-07 14:24:08 -08005068{
5069 struct intel_crtc *intel_crtc;
5070 struct drm_crtc *possible_crtc;
Chris Wilson4ef69c72010-09-09 15:14:28 +01005071 struct drm_encoder *encoder = &intel_encoder->base;
Jesse Barnes79e53942008-11-07 14:24:08 -08005072 struct drm_crtc *crtc = NULL;
5073 struct drm_device *dev = encoder->dev;
Chris Wilsond2dff872011-04-19 08:36:26 +01005074 struct drm_framebuffer *old_fb;
Jesse Barnes79e53942008-11-07 14:24:08 -08005075 int i = -1;
5076
Chris Wilsond2dff872011-04-19 08:36:26 +01005077 DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
5078 connector->base.id, drm_get_connector_name(connector),
5079 encoder->base.id, drm_get_encoder_name(encoder));
5080
Jesse Barnes79e53942008-11-07 14:24:08 -08005081 /*
5082 * Algorithm gets a little messy:
Chris Wilson7a5e4802011-04-19 23:21:12 +01005083 *
Jesse Barnes79e53942008-11-07 14:24:08 -08005084 * - if the connector already has an assigned crtc, use it (but make
5085 * sure it's on first)
Chris Wilson7a5e4802011-04-19 23:21:12 +01005086 *
Jesse Barnes79e53942008-11-07 14:24:08 -08005087 * - try to find the first unused crtc that can drive this connector,
5088 * and use that if we find one
Jesse Barnes79e53942008-11-07 14:24:08 -08005089 */
5090
5091 /* See if we already have a CRTC for this connector */
5092 if (encoder->crtc) {
5093 crtc = encoder->crtc;
Chris Wilson8261b192011-04-19 23:18:09 +01005094
Jesse Barnes79e53942008-11-07 14:24:08 -08005095 intel_crtc = to_intel_crtc(crtc);
Chris Wilson8261b192011-04-19 23:18:09 +01005096 old->dpms_mode = intel_crtc->dpms_mode;
5097 old->load_detect_temp = false;
5098
5099 /* Make sure the crtc and connector are running */
Jesse Barnes79e53942008-11-07 14:24:08 -08005100 if (intel_crtc->dpms_mode != DRM_MODE_DPMS_ON) {
Chris Wilson64927112011-04-20 07:25:26 +01005101 struct drm_encoder_helper_funcs *encoder_funcs;
5102 struct drm_crtc_helper_funcs *crtc_funcs;
5103
Jesse Barnes79e53942008-11-07 14:24:08 -08005104 crtc_funcs = crtc->helper_private;
5105 crtc_funcs->dpms(crtc, DRM_MODE_DPMS_ON);
Chris Wilson64927112011-04-20 07:25:26 +01005106
5107 encoder_funcs = encoder->helper_private;
Jesse Barnes79e53942008-11-07 14:24:08 -08005108 encoder_funcs->dpms(encoder, DRM_MODE_DPMS_ON);
5109 }
Chris Wilson8261b192011-04-19 23:18:09 +01005110
Chris Wilson71731882011-04-19 23:10:58 +01005111 return true;
Jesse Barnes79e53942008-11-07 14:24:08 -08005112 }
5113
5114 /* Find an unused one (if possible) */
5115 list_for_each_entry(possible_crtc, &dev->mode_config.crtc_list, head) {
5116 i++;
5117 if (!(encoder->possible_crtcs & (1 << i)))
5118 continue;
5119 if (!possible_crtc->enabled) {
5120 crtc = possible_crtc;
5121 break;
5122 }
Jesse Barnes79e53942008-11-07 14:24:08 -08005123 }
5124
5125 /*
5126 * If we didn't find an unused CRTC, don't use any.
5127 */
5128 if (!crtc) {
Chris Wilson71731882011-04-19 23:10:58 +01005129 DRM_DEBUG_KMS("no pipe available for load-detect\n");
5130 return false;
Jesse Barnes79e53942008-11-07 14:24:08 -08005131 }
5132
5133 encoder->crtc = crtc;
Zhenyu Wangc1c43972010-03-30 14:39:30 +08005134 connector->encoder = encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08005135
5136 intel_crtc = to_intel_crtc(crtc);
Chris Wilson8261b192011-04-19 23:18:09 +01005137 old->dpms_mode = intel_crtc->dpms_mode;
5138 old->load_detect_temp = true;
Chris Wilsond2dff872011-04-19 08:36:26 +01005139 old->release_fb = NULL;
Jesse Barnes79e53942008-11-07 14:24:08 -08005140
Chris Wilson64927112011-04-20 07:25:26 +01005141 if (!mode)
5142 mode = &load_detect_mode;
Jesse Barnes79e53942008-11-07 14:24:08 -08005143
Chris Wilsond2dff872011-04-19 08:36:26 +01005144 old_fb = crtc->fb;
5145
5146 /* We need a framebuffer large enough to accommodate all accesses
5147 * that the plane may generate whilst we perform load detection.
5148 * We can not rely on the fbcon either being present (we get called
5149 * during its initialisation to detect all boot displays, or it may
5150 * not even exist) or that it is large enough to satisfy the
5151 * requested mode.
5152 */
5153 crtc->fb = mode_fits_in_fbdev(dev, mode);
5154 if (crtc->fb == NULL) {
5155 DRM_DEBUG_KMS("creating tmp fb for load-detection\n");
5156 crtc->fb = intel_framebuffer_create_for_mode(dev, mode, 24, 32);
5157 old->release_fb = crtc->fb;
5158 } else
5159 DRM_DEBUG_KMS("reusing fbdev for load-detection framebuffer\n");
5160 if (IS_ERR(crtc->fb)) {
5161 DRM_DEBUG_KMS("failed to allocate framebuffer for load-detection\n");
5162 crtc->fb = old_fb;
5163 return false;
Jesse Barnes79e53942008-11-07 14:24:08 -08005164 }
Chris Wilsond2dff872011-04-19 08:36:26 +01005165
5166 if (!drm_crtc_helper_set_mode(crtc, mode, 0, 0, old_fb)) {
Chris Wilson64927112011-04-20 07:25:26 +01005167 DRM_DEBUG_KMS("failed to set mode on load-detect pipe\n");
Chris Wilsond2dff872011-04-19 08:36:26 +01005168 if (old->release_fb)
5169 old->release_fb->funcs->destroy(old->release_fb);
5170 crtc->fb = old_fb;
Chris Wilson64927112011-04-20 07:25:26 +01005171 return false;
Jesse Barnes79e53942008-11-07 14:24:08 -08005172 }
Chris Wilson71731882011-04-19 23:10:58 +01005173
Jesse Barnes79e53942008-11-07 14:24:08 -08005174 /* let the connector get through one full cycle before testing */
Jesse Barnes9d0498a2010-08-18 13:20:54 -07005175 intel_wait_for_vblank(dev, intel_crtc->pipe);
Jesse Barnes79e53942008-11-07 14:24:08 -08005176
Chris Wilson71731882011-04-19 23:10:58 +01005177 return true;
Jesse Barnes79e53942008-11-07 14:24:08 -08005178}
5179
Zhenyu Wangc1c43972010-03-30 14:39:30 +08005180void intel_release_load_detect_pipe(struct intel_encoder *intel_encoder,
Chris Wilson8261b192011-04-19 23:18:09 +01005181 struct drm_connector *connector,
5182 struct intel_load_detect_pipe *old)
Jesse Barnes79e53942008-11-07 14:24:08 -08005183{
Chris Wilson4ef69c72010-09-09 15:14:28 +01005184 struct drm_encoder *encoder = &intel_encoder->base;
Jesse Barnes79e53942008-11-07 14:24:08 -08005185 struct drm_device *dev = encoder->dev;
5186 struct drm_crtc *crtc = encoder->crtc;
5187 struct drm_encoder_helper_funcs *encoder_funcs = encoder->helper_private;
5188 struct drm_crtc_helper_funcs *crtc_funcs = crtc->helper_private;
5189
Chris Wilsond2dff872011-04-19 08:36:26 +01005190 DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
5191 connector->base.id, drm_get_connector_name(connector),
5192 encoder->base.id, drm_get_encoder_name(encoder));
5193
Chris Wilson8261b192011-04-19 23:18:09 +01005194 if (old->load_detect_temp) {
Zhenyu Wangc1c43972010-03-30 14:39:30 +08005195 connector->encoder = NULL;
Jesse Barnes79e53942008-11-07 14:24:08 -08005196 drm_helper_disable_unused_functions(dev);
Chris Wilsond2dff872011-04-19 08:36:26 +01005197
5198 if (old->release_fb)
5199 old->release_fb->funcs->destroy(old->release_fb);
5200
Chris Wilson0622a532011-04-21 09:32:11 +01005201 return;
Jesse Barnes79e53942008-11-07 14:24:08 -08005202 }
5203
Eric Anholtc751ce42010-03-25 11:48:48 -07005204 /* Switch crtc and encoder back off if necessary */
Chris Wilson0622a532011-04-21 09:32:11 +01005205 if (old->dpms_mode != DRM_MODE_DPMS_ON) {
5206 encoder_funcs->dpms(encoder, old->dpms_mode);
Chris Wilson8261b192011-04-19 23:18:09 +01005207 crtc_funcs->dpms(crtc, old->dpms_mode);
Jesse Barnes79e53942008-11-07 14:24:08 -08005208 }
5209}
5210
5211/* Returns the clock of the currently programmed mode of the given pipe. */
5212static int intel_crtc_clock_get(struct drm_device *dev, struct drm_crtc *crtc)
5213{
5214 struct drm_i915_private *dev_priv = dev->dev_private;
5215 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5216 int pipe = intel_crtc->pipe;
Jesse Barnes548f2452011-02-17 10:40:53 -08005217 u32 dpll = I915_READ(DPLL(pipe));
Jesse Barnes79e53942008-11-07 14:24:08 -08005218 u32 fp;
5219 intel_clock_t clock;
5220
5221 if ((dpll & DISPLAY_RATE_SELECT_FPA1) == 0)
Chris Wilson39adb7a2011-04-22 22:17:21 +01005222 fp = I915_READ(FP0(pipe));
Jesse Barnes79e53942008-11-07 14:24:08 -08005223 else
Chris Wilson39adb7a2011-04-22 22:17:21 +01005224 fp = I915_READ(FP1(pipe));
Jesse Barnes79e53942008-11-07 14:24:08 -08005225
5226 clock.m1 = (fp & FP_M1_DIV_MASK) >> FP_M1_DIV_SHIFT;
Adam Jacksonf2b115e2009-12-03 17:14:42 -05005227 if (IS_PINEVIEW(dev)) {
5228 clock.n = ffs((fp & FP_N_PINEVIEW_DIV_MASK) >> FP_N_DIV_SHIFT) - 1;
5229 clock.m2 = (fp & FP_M2_PINEVIEW_DIV_MASK) >> FP_M2_DIV_SHIFT;
Shaohua Li21778322009-02-23 15:19:16 +08005230 } else {
5231 clock.n = (fp & FP_N_DIV_MASK) >> FP_N_DIV_SHIFT;
5232 clock.m2 = (fp & FP_M2_DIV_MASK) >> FP_M2_DIV_SHIFT;
5233 }
5234
Chris Wilsona6c45cf2010-09-17 00:32:17 +01005235 if (!IS_GEN2(dev)) {
Adam Jacksonf2b115e2009-12-03 17:14:42 -05005236 if (IS_PINEVIEW(dev))
5237 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_PINEVIEW) >>
5238 DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW);
Shaohua Li21778322009-02-23 15:19:16 +08005239 else
5240 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK) >>
Jesse Barnes79e53942008-11-07 14:24:08 -08005241 DPLL_FPA01_P1_POST_DIV_SHIFT);
5242
5243 switch (dpll & DPLL_MODE_MASK) {
5244 case DPLLB_MODE_DAC_SERIAL:
5245 clock.p2 = dpll & DPLL_DAC_SERIAL_P2_CLOCK_DIV_5 ?
5246 5 : 10;
5247 break;
5248 case DPLLB_MODE_LVDS:
5249 clock.p2 = dpll & DPLLB_LVDS_P2_CLOCK_DIV_7 ?
5250 7 : 14;
5251 break;
5252 default:
Zhao Yakui28c97732009-10-09 11:39:41 +08005253 DRM_DEBUG_KMS("Unknown DPLL mode %08x in programmed "
Jesse Barnes79e53942008-11-07 14:24:08 -08005254 "mode\n", (int)(dpll & DPLL_MODE_MASK));
5255 return 0;
5256 }
5257
5258 /* XXX: Handle the 100Mhz refclk */
Shaohua Li21778322009-02-23 15:19:16 +08005259 intel_clock(dev, 96000, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08005260 } else {
5261 bool is_lvds = (pipe == 1) && (I915_READ(LVDS) & LVDS_PORT_EN);
5262
5263 if (is_lvds) {
5264 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830_LVDS) >>
5265 DPLL_FPA01_P1_POST_DIV_SHIFT);
5266 clock.p2 = 14;
5267
5268 if ((dpll & PLL_REF_INPUT_MASK) ==
5269 PLLB_REF_INPUT_SPREADSPECTRUMIN) {
5270 /* XXX: might not be 66MHz */
Shaohua Li21778322009-02-23 15:19:16 +08005271 intel_clock(dev, 66000, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08005272 } else
Shaohua Li21778322009-02-23 15:19:16 +08005273 intel_clock(dev, 48000, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08005274 } else {
5275 if (dpll & PLL_P1_DIVIDE_BY_TWO)
5276 clock.p1 = 2;
5277 else {
5278 clock.p1 = ((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830) >>
5279 DPLL_FPA01_P1_POST_DIV_SHIFT) + 2;
5280 }
5281 if (dpll & PLL_P2_DIVIDE_BY_4)
5282 clock.p2 = 4;
5283 else
5284 clock.p2 = 2;
5285
Shaohua Li21778322009-02-23 15:19:16 +08005286 intel_clock(dev, 48000, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08005287 }
5288 }
5289
5290 /* XXX: It would be nice to validate the clocks, but we can't reuse
5291 * i830PllIsValid() because it relies on the xf86_config connector
5292 * configuration being accurate, which it isn't necessarily.
5293 */
5294
5295 return clock.dot;
5296}
5297
5298/** Returns the currently programmed mode of the given pipe. */
5299struct drm_display_mode *intel_crtc_mode_get(struct drm_device *dev,
5300 struct drm_crtc *crtc)
5301{
Jesse Barnes548f2452011-02-17 10:40:53 -08005302 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -08005303 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5304 int pipe = intel_crtc->pipe;
5305 struct drm_display_mode *mode;
Jesse Barnes548f2452011-02-17 10:40:53 -08005306 int htot = I915_READ(HTOTAL(pipe));
5307 int hsync = I915_READ(HSYNC(pipe));
5308 int vtot = I915_READ(VTOTAL(pipe));
5309 int vsync = I915_READ(VSYNC(pipe));
Jesse Barnes79e53942008-11-07 14:24:08 -08005310
5311 mode = kzalloc(sizeof(*mode), GFP_KERNEL);
5312 if (!mode)
5313 return NULL;
5314
5315 mode->clock = intel_crtc_clock_get(dev, crtc);
5316 mode->hdisplay = (htot & 0xffff) + 1;
5317 mode->htotal = ((htot & 0xffff0000) >> 16) + 1;
5318 mode->hsync_start = (hsync & 0xffff) + 1;
5319 mode->hsync_end = ((hsync & 0xffff0000) >> 16) + 1;
5320 mode->vdisplay = (vtot & 0xffff) + 1;
5321 mode->vtotal = ((vtot & 0xffff0000) >> 16) + 1;
5322 mode->vsync_start = (vsync & 0xffff) + 1;
5323 mode->vsync_end = ((vsync & 0xffff0000) >> 16) + 1;
5324
5325 drm_mode_set_name(mode);
5326 drm_mode_set_crtcinfo(mode, 0);
5327
5328 return mode;
5329}
5330
Jesse Barnes652c3932009-08-17 13:31:43 -07005331#define GPU_IDLE_TIMEOUT 500 /* ms */
5332
5333/* When this timer fires, we've been idle for awhile */
5334static void intel_gpu_idle_timer(unsigned long arg)
5335{
5336 struct drm_device *dev = (struct drm_device *)arg;
5337 drm_i915_private_t *dev_priv = dev->dev_private;
5338
Chris Wilsonff7ea4c2010-12-08 09:43:41 +00005339 if (!list_empty(&dev_priv->mm.active_list)) {
5340 /* Still processing requests, so just re-arm the timer. */
5341 mod_timer(&dev_priv->idle_timer, jiffies +
5342 msecs_to_jiffies(GPU_IDLE_TIMEOUT));
5343 return;
5344 }
Jesse Barnes652c3932009-08-17 13:31:43 -07005345
Chris Wilsonff7ea4c2010-12-08 09:43:41 +00005346 dev_priv->busy = false;
Eric Anholt01dfba92009-09-06 15:18:53 -07005347 queue_work(dev_priv->wq, &dev_priv->idle_work);
Jesse Barnes652c3932009-08-17 13:31:43 -07005348}
5349
Jesse Barnes652c3932009-08-17 13:31:43 -07005350#define CRTC_IDLE_TIMEOUT 1000 /* ms */
5351
5352static void intel_crtc_idle_timer(unsigned long arg)
5353{
5354 struct intel_crtc *intel_crtc = (struct intel_crtc *)arg;
5355 struct drm_crtc *crtc = &intel_crtc->base;
5356 drm_i915_private_t *dev_priv = crtc->dev->dev_private;
Chris Wilsonff7ea4c2010-12-08 09:43:41 +00005357 struct intel_framebuffer *intel_fb;
5358
5359 intel_fb = to_intel_framebuffer(crtc->fb);
5360 if (intel_fb && intel_fb->obj->active) {
5361 /* The framebuffer is still being accessed by the GPU. */
5362 mod_timer(&intel_crtc->idle_timer, jiffies +
5363 msecs_to_jiffies(CRTC_IDLE_TIMEOUT));
5364 return;
5365 }
Jesse Barnes652c3932009-08-17 13:31:43 -07005366
Jesse Barnes652c3932009-08-17 13:31:43 -07005367 intel_crtc->busy = false;
Eric Anholt01dfba92009-09-06 15:18:53 -07005368 queue_work(dev_priv->wq, &dev_priv->idle_work);
Jesse Barnes652c3932009-08-17 13:31:43 -07005369}
5370
Daniel Vetter3dec0092010-08-20 21:40:52 +02005371static void intel_increase_pllclock(struct drm_crtc *crtc)
Jesse Barnes652c3932009-08-17 13:31:43 -07005372{
5373 struct drm_device *dev = crtc->dev;
5374 drm_i915_private_t *dev_priv = dev->dev_private;
5375 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5376 int pipe = intel_crtc->pipe;
Jesse Barnesdbdc6472010-12-30 09:36:39 -08005377 int dpll_reg = DPLL(pipe);
5378 int dpll;
Jesse Barnes652c3932009-08-17 13:31:43 -07005379
Eric Anholtbad720f2009-10-22 16:11:14 -07005380 if (HAS_PCH_SPLIT(dev))
Jesse Barnes652c3932009-08-17 13:31:43 -07005381 return;
5382
5383 if (!dev_priv->lvds_downclock_avail)
5384 return;
5385
Jesse Barnesdbdc6472010-12-30 09:36:39 -08005386 dpll = I915_READ(dpll_reg);
Jesse Barnes652c3932009-08-17 13:31:43 -07005387 if (!HAS_PIPE_CXSR(dev) && (dpll & DISPLAY_RATE_SELECT_FPA1)) {
Zhao Yakui44d98a62009-10-09 11:39:40 +08005388 DRM_DEBUG_DRIVER("upclocking LVDS\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07005389
Sean Paul8ac5a6d2012-02-13 13:14:51 -05005390 assert_panel_unlocked(dev_priv, pipe);
Jesse Barnes652c3932009-08-17 13:31:43 -07005391
5392 dpll &= ~DISPLAY_RATE_SELECT_FPA1;
5393 I915_WRITE(dpll_reg, dpll);
Jesse Barnes9d0498a2010-08-18 13:20:54 -07005394 intel_wait_for_vblank(dev, pipe);
Jesse Barnesdbdc6472010-12-30 09:36:39 -08005395
Jesse Barnes652c3932009-08-17 13:31:43 -07005396 dpll = I915_READ(dpll_reg);
5397 if (dpll & DISPLAY_RATE_SELECT_FPA1)
Zhao Yakui44d98a62009-10-09 11:39:40 +08005398 DRM_DEBUG_DRIVER("failed to upclock LVDS!\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07005399 }
5400
5401 /* Schedule downclock */
Daniel Vetter3dec0092010-08-20 21:40:52 +02005402 mod_timer(&intel_crtc->idle_timer, jiffies +
5403 msecs_to_jiffies(CRTC_IDLE_TIMEOUT));
Jesse Barnes652c3932009-08-17 13:31:43 -07005404}
5405
5406static void intel_decrease_pllclock(struct drm_crtc *crtc)
5407{
5408 struct drm_device *dev = crtc->dev;
5409 drm_i915_private_t *dev_priv = dev->dev_private;
5410 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5411 int pipe = intel_crtc->pipe;
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08005412 int dpll_reg = DPLL(pipe);
Jesse Barnes652c3932009-08-17 13:31:43 -07005413 int dpll = I915_READ(dpll_reg);
5414
Eric Anholtbad720f2009-10-22 16:11:14 -07005415 if (HAS_PCH_SPLIT(dev))
Jesse Barnes652c3932009-08-17 13:31:43 -07005416 return;
5417
5418 if (!dev_priv->lvds_downclock_avail)
5419 return;
5420
5421 /*
5422 * Since this is called by a timer, we should never get here in
5423 * the manual case.
5424 */
5425 if (!HAS_PIPE_CXSR(dev) && intel_crtc->lowfreq_avail) {
Zhao Yakui44d98a62009-10-09 11:39:40 +08005426 DRM_DEBUG_DRIVER("downclocking LVDS\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07005427
Sean Paul8ac5a6d2012-02-13 13:14:51 -05005428 assert_panel_unlocked(dev_priv, pipe);
Jesse Barnes652c3932009-08-17 13:31:43 -07005429
5430 dpll |= DISPLAY_RATE_SELECT_FPA1;
5431 I915_WRITE(dpll_reg, dpll);
Jesse Barnes9d0498a2010-08-18 13:20:54 -07005432 intel_wait_for_vblank(dev, pipe);
Jesse Barnes652c3932009-08-17 13:31:43 -07005433 dpll = I915_READ(dpll_reg);
5434 if (!(dpll & DISPLAY_RATE_SELECT_FPA1))
Zhao Yakui44d98a62009-10-09 11:39:40 +08005435 DRM_DEBUG_DRIVER("failed to downclock LVDS!\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07005436 }
5437
5438}
5439
5440/**
5441 * intel_idle_update - adjust clocks for idleness
5442 * @work: work struct
5443 *
5444 * Either the GPU or display (or both) went idle. Check the busy status
5445 * here and adjust the CRTC and GPU clocks as necessary.
5446 */
5447static void intel_idle_update(struct work_struct *work)
5448{
5449 drm_i915_private_t *dev_priv = container_of(work, drm_i915_private_t,
5450 idle_work);
5451 struct drm_device *dev = dev_priv->dev;
5452 struct drm_crtc *crtc;
5453 struct intel_crtc *intel_crtc;
5454
5455 if (!i915_powersave)
5456 return;
5457
5458 mutex_lock(&dev->struct_mutex);
5459
Jesse Barnes7648fa92010-05-20 14:28:11 -07005460 i915_update_gfx_val(dev_priv);
5461
Jesse Barnes652c3932009-08-17 13:31:43 -07005462 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
5463 /* Skip inactive CRTCs */
5464 if (!crtc->fb)
5465 continue;
5466
5467 intel_crtc = to_intel_crtc(crtc);
5468 if (!intel_crtc->busy)
5469 intel_decrease_pllclock(crtc);
5470 }
5471
Li Peng45ac22c2010-06-12 23:38:35 +08005472
Jesse Barnes652c3932009-08-17 13:31:43 -07005473 mutex_unlock(&dev->struct_mutex);
5474}
5475
5476/**
5477 * intel_mark_busy - mark the GPU and possibly the display busy
5478 * @dev: drm device
5479 * @obj: object we're operating on
5480 *
5481 * Callers can use this function to indicate that the GPU is busy processing
5482 * commands. If @obj matches one of the CRTC objects (i.e. it's a scanout
5483 * buffer), we'll also mark the display as busy, so we know to increase its
5484 * clock frequency.
5485 */
Chris Wilson05394f32010-11-08 19:18:58 +00005486void intel_mark_busy(struct drm_device *dev, struct drm_i915_gem_object *obj)
Jesse Barnes652c3932009-08-17 13:31:43 -07005487{
5488 drm_i915_private_t *dev_priv = dev->dev_private;
5489 struct drm_crtc *crtc = NULL;
5490 struct intel_framebuffer *intel_fb;
5491 struct intel_crtc *intel_crtc;
5492
Zhenyu Wang5e17ee72009-09-03 09:30:06 +08005493 if (!drm_core_check_feature(dev, DRIVER_MODESET))
5494 return;
5495
Alexander Lam18b21902011-01-03 13:28:56 -05005496 if (!dev_priv->busy)
Chris Wilson28cf7982009-11-30 01:08:56 +00005497 dev_priv->busy = true;
Alexander Lam18b21902011-01-03 13:28:56 -05005498 else
Chris Wilson28cf7982009-11-30 01:08:56 +00005499 mod_timer(&dev_priv->idle_timer, jiffies +
5500 msecs_to_jiffies(GPU_IDLE_TIMEOUT));
Jesse Barnes652c3932009-08-17 13:31:43 -07005501
5502 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
5503 if (!crtc->fb)
5504 continue;
5505
5506 intel_crtc = to_intel_crtc(crtc);
5507 intel_fb = to_intel_framebuffer(crtc->fb);
5508 if (intel_fb->obj == obj) {
5509 if (!intel_crtc->busy) {
5510 /* Non-busy -> busy, upclock */
Daniel Vetter3dec0092010-08-20 21:40:52 +02005511 intel_increase_pllclock(crtc);
Jesse Barnes652c3932009-08-17 13:31:43 -07005512 intel_crtc->busy = true;
5513 } else {
5514 /* Busy -> busy, put off timer */
5515 mod_timer(&intel_crtc->idle_timer, jiffies +
5516 msecs_to_jiffies(CRTC_IDLE_TIMEOUT));
5517 }
5518 }
5519 }
5520}
5521
Jesse Barnes79e53942008-11-07 14:24:08 -08005522static void intel_crtc_destroy(struct drm_crtc *crtc)
5523{
5524 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter67e77c52010-08-20 22:26:30 +02005525 struct drm_device *dev = crtc->dev;
5526 struct intel_unpin_work *work;
5527 unsigned long flags;
5528
5529 spin_lock_irqsave(&dev->event_lock, flags);
5530 work = intel_crtc->unpin_work;
5531 intel_crtc->unpin_work = NULL;
5532 spin_unlock_irqrestore(&dev->event_lock, flags);
5533
5534 if (work) {
5535 cancel_work_sync(&work->work);
5536 kfree(work);
5537 }
Jesse Barnes79e53942008-11-07 14:24:08 -08005538
5539 drm_crtc_cleanup(crtc);
Daniel Vetter67e77c52010-08-20 22:26:30 +02005540
Jesse Barnes79e53942008-11-07 14:24:08 -08005541 kfree(intel_crtc);
5542}
5543
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005544static void intel_unpin_work_fn(struct work_struct *__work)
5545{
5546 struct intel_unpin_work *work =
5547 container_of(__work, struct intel_unpin_work, work);
5548
5549 mutex_lock(&work->dev->struct_mutex);
Chris Wilson1690e1e2011-12-14 13:57:08 +01005550 intel_unpin_fb_obj(work->old_fb_obj);
Chris Wilson05394f32010-11-08 19:18:58 +00005551 drm_gem_object_unreference(&work->pending_flip_obj->base);
5552 drm_gem_object_unreference(&work->old_fb_obj->base);
Chris Wilsond9e86c02010-11-10 16:40:20 +00005553
Chris Wilson7782de32011-07-08 12:22:41 +01005554 intel_update_fbc(work->dev);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005555 mutex_unlock(&work->dev->struct_mutex);
5556 kfree(work);
5557}
5558
Jesse Barnes1afe3e92010-03-26 10:35:20 -07005559static void do_intel_finish_page_flip(struct drm_device *dev,
Mario Kleiner49b14a52010-12-09 07:00:07 +01005560 struct drm_crtc *crtc)
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005561{
5562 drm_i915_private_t *dev_priv = dev->dev_private;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005563 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5564 struct intel_unpin_work *work;
Chris Wilson05394f32010-11-08 19:18:58 +00005565 struct drm_i915_gem_object *obj;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005566 struct drm_pending_vblank_event *e;
Mario Kleiner49b14a52010-12-09 07:00:07 +01005567 struct timeval tnow, tvbl;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005568 unsigned long flags;
5569
5570 /* Ignore early vblank irqs */
5571 if (intel_crtc == NULL)
5572 return;
5573
Mario Kleiner49b14a52010-12-09 07:00:07 +01005574 do_gettimeofday(&tnow);
5575
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005576 spin_lock_irqsave(&dev->event_lock, flags);
5577 work = intel_crtc->unpin_work;
5578 if (work == NULL || !work->pending) {
5579 spin_unlock_irqrestore(&dev->event_lock, flags);
5580 return;
5581 }
5582
5583 intel_crtc->unpin_work = NULL;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005584
5585 if (work->event) {
5586 e = work->event;
Mario Kleiner49b14a52010-12-09 07:00:07 +01005587 e->event.sequence = drm_vblank_count_and_time(dev, intel_crtc->pipe, &tvbl);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +01005588
5589 /* Called before vblank count and timestamps have
5590 * been updated for the vblank interval of flip
5591 * completion? Need to increment vblank count and
5592 * add one videorefresh duration to returned timestamp
Mario Kleiner49b14a52010-12-09 07:00:07 +01005593 * to account for this. We assume this happened if we
5594 * get called over 0.9 frame durations after the last
5595 * timestamped vblank.
5596 *
5597 * This calculation can not be used with vrefresh rates
5598 * below 5Hz (10Hz to be on the safe side) without
5599 * promoting to 64 integers.
Mario Kleiner0af7e4d2010-12-08 04:07:19 +01005600 */
Mario Kleiner49b14a52010-12-09 07:00:07 +01005601 if (10 * (timeval_to_ns(&tnow) - timeval_to_ns(&tvbl)) >
5602 9 * crtc->framedur_ns) {
Mario Kleiner0af7e4d2010-12-08 04:07:19 +01005603 e->event.sequence++;
Mario Kleiner49b14a52010-12-09 07:00:07 +01005604 tvbl = ns_to_timeval(timeval_to_ns(&tvbl) +
5605 crtc->framedur_ns);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +01005606 }
5607
Mario Kleiner49b14a52010-12-09 07:00:07 +01005608 e->event.tv_sec = tvbl.tv_sec;
5609 e->event.tv_usec = tvbl.tv_usec;
Mario Kleiner0af7e4d2010-12-08 04:07:19 +01005610
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005611 list_add_tail(&e->base.link,
5612 &e->base.file_priv->event_list);
5613 wake_up_interruptible(&e->base.file_priv->event_wait);
5614 }
5615
Mario Kleiner0af7e4d2010-12-08 04:07:19 +01005616 drm_vblank_put(dev, intel_crtc->pipe);
5617
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005618 spin_unlock_irqrestore(&dev->event_lock, flags);
5619
Chris Wilson05394f32010-11-08 19:18:58 +00005620 obj = work->old_fb_obj;
Chris Wilsond9e86c02010-11-10 16:40:20 +00005621
Chris Wilsone59f2ba2010-10-07 17:28:15 +01005622 atomic_clear_mask(1 << intel_crtc->plane,
Chris Wilson05394f32010-11-08 19:18:58 +00005623 &obj->pending_flip.counter);
5624 if (atomic_read(&obj->pending_flip) == 0)
Chris Wilsonf787a5f2010-09-24 16:02:42 +01005625 wake_up(&dev_priv->pending_flip_queue);
Chris Wilsond9e86c02010-11-10 16:40:20 +00005626
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005627 schedule_work(&work->work);
Jesse Barnese5510fa2010-07-01 16:48:37 -07005628
5629 trace_i915_flip_complete(intel_crtc->plane, work->pending_flip_obj);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005630}
5631
Jesse Barnes1afe3e92010-03-26 10:35:20 -07005632void intel_finish_page_flip(struct drm_device *dev, int pipe)
5633{
5634 drm_i915_private_t *dev_priv = dev->dev_private;
5635 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
5636
Mario Kleiner49b14a52010-12-09 07:00:07 +01005637 do_intel_finish_page_flip(dev, crtc);
Jesse Barnes1afe3e92010-03-26 10:35:20 -07005638}
5639
5640void intel_finish_page_flip_plane(struct drm_device *dev, int plane)
5641{
5642 drm_i915_private_t *dev_priv = dev->dev_private;
5643 struct drm_crtc *crtc = dev_priv->plane_to_crtc_mapping[plane];
5644
Mario Kleiner49b14a52010-12-09 07:00:07 +01005645 do_intel_finish_page_flip(dev, crtc);
Jesse Barnes1afe3e92010-03-26 10:35:20 -07005646}
5647
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005648void intel_prepare_page_flip(struct drm_device *dev, int plane)
5649{
5650 drm_i915_private_t *dev_priv = dev->dev_private;
5651 struct intel_crtc *intel_crtc =
5652 to_intel_crtc(dev_priv->plane_to_crtc_mapping[plane]);
5653 unsigned long flags;
5654
5655 spin_lock_irqsave(&dev->event_lock, flags);
Jesse Barnesde3f4402010-01-14 13:18:02 -08005656 if (intel_crtc->unpin_work) {
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01005657 if ((++intel_crtc->unpin_work->pending) > 1)
5658 DRM_ERROR("Prepared flip multiple times\n");
Jesse Barnesde3f4402010-01-14 13:18:02 -08005659 } else {
5660 DRM_DEBUG_DRIVER("preparing flip with no unpin work?\n");
5661 }
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005662 spin_unlock_irqrestore(&dev->event_lock, flags);
5663}
5664
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07005665static int intel_gen2_queue_flip(struct drm_device *dev,
5666 struct drm_crtc *crtc,
5667 struct drm_framebuffer *fb,
5668 struct drm_i915_gem_object *obj)
5669{
5670 struct drm_i915_private *dev_priv = dev->dev_private;
5671 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5672 unsigned long offset;
5673 u32 flip_mask;
5674 int ret;
5675
5676 ret = intel_pin_and_fence_fb_obj(dev, obj, LP_RING(dev_priv));
5677 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01005678 goto err;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07005679
5680 /* Offset into the new buffer for cases of shared fbs between CRTCs */
Ville Syrjälä01f2c772011-12-20 00:06:49 +02005681 offset = crtc->y * fb->pitches[0] + crtc->x * fb->bits_per_pixel/8;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07005682
5683 ret = BEGIN_LP_RING(6);
5684 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01005685 goto err_unpin;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07005686
5687 /* Can't queue multiple flips, so wait for the previous
5688 * one to finish before executing the next.
5689 */
5690 if (intel_crtc->plane)
5691 flip_mask = MI_WAIT_FOR_PLANE_B_FLIP;
5692 else
5693 flip_mask = MI_WAIT_FOR_PLANE_A_FLIP;
5694 OUT_RING(MI_WAIT_FOR_EVENT | flip_mask);
5695 OUT_RING(MI_NOOP);
5696 OUT_RING(MI_DISPLAY_FLIP |
5697 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
Ville Syrjälä01f2c772011-12-20 00:06:49 +02005698 OUT_RING(fb->pitches[0]);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07005699 OUT_RING(obj->gtt_offset + offset);
Daniel Vetterc6a32fc2012-01-20 10:43:44 +01005700 OUT_RING(0); /* aux display base address, unused */
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07005701 ADVANCE_LP_RING();
Chris Wilson83d40922012-04-17 19:35:53 +01005702 return 0;
5703
5704err_unpin:
5705 intel_unpin_fb_obj(obj);
5706err:
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07005707 return ret;
5708}
5709
5710static int intel_gen3_queue_flip(struct drm_device *dev,
5711 struct drm_crtc *crtc,
5712 struct drm_framebuffer *fb,
5713 struct drm_i915_gem_object *obj)
5714{
5715 struct drm_i915_private *dev_priv = dev->dev_private;
5716 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5717 unsigned long offset;
5718 u32 flip_mask;
5719 int ret;
5720
5721 ret = intel_pin_and_fence_fb_obj(dev, obj, LP_RING(dev_priv));
5722 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01005723 goto err;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07005724
5725 /* Offset into the new buffer for cases of shared fbs between CRTCs */
Ville Syrjälä01f2c772011-12-20 00:06:49 +02005726 offset = crtc->y * fb->pitches[0] + crtc->x * fb->bits_per_pixel/8;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07005727
5728 ret = BEGIN_LP_RING(6);
5729 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01005730 goto err_unpin;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07005731
5732 if (intel_crtc->plane)
5733 flip_mask = MI_WAIT_FOR_PLANE_B_FLIP;
5734 else
5735 flip_mask = MI_WAIT_FOR_PLANE_A_FLIP;
5736 OUT_RING(MI_WAIT_FOR_EVENT | flip_mask);
5737 OUT_RING(MI_NOOP);
5738 OUT_RING(MI_DISPLAY_FLIP_I915 |
5739 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
Ville Syrjälä01f2c772011-12-20 00:06:49 +02005740 OUT_RING(fb->pitches[0]);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07005741 OUT_RING(obj->gtt_offset + offset);
5742 OUT_RING(MI_NOOP);
5743
5744 ADVANCE_LP_RING();
Chris Wilson83d40922012-04-17 19:35:53 +01005745 return 0;
5746
5747err_unpin:
5748 intel_unpin_fb_obj(obj);
5749err:
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07005750 return ret;
5751}
5752
5753static int intel_gen4_queue_flip(struct drm_device *dev,
5754 struct drm_crtc *crtc,
5755 struct drm_framebuffer *fb,
5756 struct drm_i915_gem_object *obj)
5757{
5758 struct drm_i915_private *dev_priv = dev->dev_private;
5759 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5760 uint32_t pf, pipesrc;
5761 int ret;
5762
5763 ret = intel_pin_and_fence_fb_obj(dev, obj, LP_RING(dev_priv));
5764 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01005765 goto err;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07005766
5767 ret = BEGIN_LP_RING(4);
5768 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01005769 goto err_unpin;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07005770
5771 /* i965+ uses the linear or tiled offsets from the
5772 * Display Registers (which do not change across a page-flip)
5773 * so we need only reprogram the base address.
5774 */
5775 OUT_RING(MI_DISPLAY_FLIP |
5776 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
Ville Syrjälä01f2c772011-12-20 00:06:49 +02005777 OUT_RING(fb->pitches[0]);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07005778 OUT_RING(obj->gtt_offset | obj->tiling_mode);
5779
5780 /* XXX Enabling the panel-fitter across page-flip is so far
5781 * untested on non-native modes, so ignore it for now.
5782 * pf = I915_READ(pipe == 0 ? PFA_CTL_1 : PFB_CTL_1) & PF_ENABLE;
5783 */
5784 pf = 0;
5785 pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff;
5786 OUT_RING(pf | pipesrc);
5787 ADVANCE_LP_RING();
Chris Wilson83d40922012-04-17 19:35:53 +01005788 return 0;
5789
5790err_unpin:
5791 intel_unpin_fb_obj(obj);
5792err:
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07005793 return ret;
5794}
5795
5796static int intel_gen6_queue_flip(struct drm_device *dev,
5797 struct drm_crtc *crtc,
5798 struct drm_framebuffer *fb,
5799 struct drm_i915_gem_object *obj)
5800{
5801 struct drm_i915_private *dev_priv = dev->dev_private;
5802 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5803 uint32_t pf, pipesrc;
5804 int ret;
5805
5806 ret = intel_pin_and_fence_fb_obj(dev, obj, LP_RING(dev_priv));
5807 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01005808 goto err;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07005809
5810 ret = BEGIN_LP_RING(4);
5811 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01005812 goto err_unpin;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07005813
5814 OUT_RING(MI_DISPLAY_FLIP |
5815 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
Ville Syrjälä01f2c772011-12-20 00:06:49 +02005816 OUT_RING(fb->pitches[0] | obj->tiling_mode);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07005817 OUT_RING(obj->gtt_offset);
5818
5819 pf = I915_READ(PF_CTL(intel_crtc->pipe)) & PF_ENABLE;
5820 pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff;
5821 OUT_RING(pf | pipesrc);
5822 ADVANCE_LP_RING();
Chris Wilson83d40922012-04-17 19:35:53 +01005823 return 0;
5824
5825err_unpin:
5826 intel_unpin_fb_obj(obj);
5827err:
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07005828 return ret;
5829}
5830
Jesse Barnes7c9017e2011-06-16 12:18:54 -07005831/*
5832 * On gen7 we currently use the blit ring because (in early silicon at least)
5833 * the render ring doesn't give us interrpts for page flip completion, which
5834 * means clients will hang after the first flip is queued. Fortunately the
5835 * blit ring generates interrupts properly, so use it instead.
5836 */
5837static int intel_gen7_queue_flip(struct drm_device *dev,
5838 struct drm_crtc *crtc,
5839 struct drm_framebuffer *fb,
5840 struct drm_i915_gem_object *obj)
5841{
5842 struct drm_i915_private *dev_priv = dev->dev_private;
5843 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5844 struct intel_ring_buffer *ring = &dev_priv->ring[BCS];
5845 int ret;
5846
5847 ret = intel_pin_and_fence_fb_obj(dev, obj, ring);
5848 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01005849 goto err;
Jesse Barnes7c9017e2011-06-16 12:18:54 -07005850
5851 ret = intel_ring_begin(ring, 4);
5852 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01005853 goto err_unpin;
Jesse Barnes7c9017e2011-06-16 12:18:54 -07005854
5855 intel_ring_emit(ring, MI_DISPLAY_FLIP_I915 | (intel_crtc->plane << 19));
Ville Syrjälä01f2c772011-12-20 00:06:49 +02005856 intel_ring_emit(ring, (fb->pitches[0] | obj->tiling_mode));
Jesse Barnes7c9017e2011-06-16 12:18:54 -07005857 intel_ring_emit(ring, (obj->gtt_offset));
5858 intel_ring_emit(ring, (MI_NOOP));
5859 intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01005860 return 0;
5861
5862err_unpin:
5863 intel_unpin_fb_obj(obj);
5864err:
Jesse Barnes7c9017e2011-06-16 12:18:54 -07005865 return ret;
5866}
5867
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07005868static int intel_default_queue_flip(struct drm_device *dev,
5869 struct drm_crtc *crtc,
5870 struct drm_framebuffer *fb,
5871 struct drm_i915_gem_object *obj)
5872{
5873 return -ENODEV;
5874}
5875
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005876static int intel_crtc_page_flip(struct drm_crtc *crtc,
5877 struct drm_framebuffer *fb,
5878 struct drm_pending_vblank_event *event)
5879{
5880 struct drm_device *dev = crtc->dev;
5881 struct drm_i915_private *dev_priv = dev->dev_private;
5882 struct intel_framebuffer *intel_fb;
Chris Wilson05394f32010-11-08 19:18:58 +00005883 struct drm_i915_gem_object *obj;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005884 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5885 struct intel_unpin_work *work;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07005886 unsigned long flags;
Chris Wilson52e68632010-08-08 10:15:59 +01005887 int ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005888
5889 work = kzalloc(sizeof *work, GFP_KERNEL);
5890 if (work == NULL)
5891 return -ENOMEM;
5892
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005893 work->event = event;
5894 work->dev = crtc->dev;
5895 intel_fb = to_intel_framebuffer(crtc->fb);
Jesse Barnesb1b87f62010-01-26 14:40:05 -08005896 work->old_fb_obj = intel_fb->obj;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005897 INIT_WORK(&work->work, intel_unpin_work_fn);
5898
Jesse Barnes7317c75e62011-08-29 09:45:28 -07005899 ret = drm_vblank_get(dev, intel_crtc->pipe);
5900 if (ret)
5901 goto free_work;
5902
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005903 /* We borrow the event spin lock for protecting unpin_work */
5904 spin_lock_irqsave(&dev->event_lock, flags);
5905 if (intel_crtc->unpin_work) {
5906 spin_unlock_irqrestore(&dev->event_lock, flags);
5907 kfree(work);
Jesse Barnes7317c75e62011-08-29 09:45:28 -07005908 drm_vblank_put(dev, intel_crtc->pipe);
Chris Wilson468f0b42010-05-27 13:18:13 +01005909
5910 DRM_DEBUG_DRIVER("flip queue: crtc already busy\n");
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005911 return -EBUSY;
5912 }
5913 intel_crtc->unpin_work = work;
5914 spin_unlock_irqrestore(&dev->event_lock, flags);
5915
5916 intel_fb = to_intel_framebuffer(fb);
5917 obj = intel_fb->obj;
5918
Chris Wilson468f0b42010-05-27 13:18:13 +01005919 mutex_lock(&dev->struct_mutex);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005920
Jesse Barnes75dfca82010-02-10 15:09:44 -08005921 /* Reference the objects for the scheduled work. */
Chris Wilson05394f32010-11-08 19:18:58 +00005922 drm_gem_object_reference(&work->old_fb_obj->base);
5923 drm_gem_object_reference(&obj->base);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005924
5925 crtc->fb = fb;
Chris Wilson96b099f2010-06-07 14:03:04 +01005926
Chris Wilsone1f99ce2010-10-27 12:45:26 +01005927 work->pending_flip_obj = obj;
Chris Wilsone1f99ce2010-10-27 12:45:26 +01005928
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01005929 work->enable_stall_check = true;
5930
Chris Wilsone1f99ce2010-10-27 12:45:26 +01005931 /* Block clients from rendering to the new back buffer until
5932 * the flip occurs and the object is no longer visible.
5933 */
Chris Wilson05394f32010-11-08 19:18:58 +00005934 atomic_add(1 << intel_crtc->plane, &work->old_fb_obj->pending_flip);
Chris Wilsone1f99ce2010-10-27 12:45:26 +01005935
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07005936 ret = dev_priv->display.queue_flip(dev, crtc, fb, obj);
5937 if (ret)
5938 goto cleanup_pending;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005939
Chris Wilson7782de32011-07-08 12:22:41 +01005940 intel_disable_fbc(dev);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005941 mutex_unlock(&dev->struct_mutex);
5942
Jesse Barnese5510fa2010-07-01 16:48:37 -07005943 trace_i915_flip_request(intel_crtc->plane, obj);
5944
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005945 return 0;
Chris Wilson96b099f2010-06-07 14:03:04 +01005946
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07005947cleanup_pending:
5948 atomic_sub(1 << intel_crtc->plane, &work->old_fb_obj->pending_flip);
Chris Wilson05394f32010-11-08 19:18:58 +00005949 drm_gem_object_unreference(&work->old_fb_obj->base);
5950 drm_gem_object_unreference(&obj->base);
Chris Wilson96b099f2010-06-07 14:03:04 +01005951 mutex_unlock(&dev->struct_mutex);
5952
5953 spin_lock_irqsave(&dev->event_lock, flags);
5954 intel_crtc->unpin_work = NULL;
5955 spin_unlock_irqrestore(&dev->event_lock, flags);
5956
Jesse Barnes7317c75e62011-08-29 09:45:28 -07005957 drm_vblank_put(dev, intel_crtc->pipe);
5958free_work:
Chris Wilson96b099f2010-06-07 14:03:04 +01005959 kfree(work);
5960
5961 return ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005962}
5963
Chris Wilson47f1c6c2010-12-03 15:37:31 +00005964static void intel_sanitize_modesetting(struct drm_device *dev,
5965 int pipe, int plane)
5966{
5967 struct drm_i915_private *dev_priv = dev->dev_private;
5968 u32 reg, val;
5969
Chris Wilsonf47166d2012-03-22 15:00:50 +00005970 /* Clear any frame start delays used for debugging left by the BIOS */
5971 for_each_pipe(pipe) {
5972 reg = PIPECONF(pipe);
5973 I915_WRITE(reg, I915_READ(reg) & ~PIPECONF_FRAME_START_DELAY_MASK);
5974 }
5975
Chris Wilson47f1c6c2010-12-03 15:37:31 +00005976 if (HAS_PCH_SPLIT(dev))
5977 return;
5978
5979 /* Who knows what state these registers were left in by the BIOS or
5980 * grub?
5981 *
5982 * If we leave the registers in a conflicting state (e.g. with the
5983 * display plane reading from the other pipe than the one we intend
5984 * to use) then when we attempt to teardown the active mode, we will
5985 * not disable the pipes and planes in the correct order -- leaving
5986 * a plane reading from a disabled pipe and possibly leading to
5987 * undefined behaviour.
5988 */
5989
5990 reg = DSPCNTR(plane);
5991 val = I915_READ(reg);
5992
5993 if ((val & DISPLAY_PLANE_ENABLE) == 0)
5994 return;
5995 if (!!(val & DISPPLANE_SEL_PIPE_MASK) == pipe)
5996 return;
5997
5998 /* This display plane is active and attached to the other CPU pipe. */
5999 pipe = !pipe;
6000
6001 /* Disable the plane and wait for it to stop reading from the pipe. */
Jesse Barnesb24e7172011-01-04 15:09:30 -08006002 intel_disable_plane(dev_priv, plane, pipe);
6003 intel_disable_pipe(dev_priv, pipe);
Chris Wilson47f1c6c2010-12-03 15:37:31 +00006004}
Jesse Barnes79e53942008-11-07 14:24:08 -08006005
Chris Wilsonf6e5b162011-04-12 18:06:51 +01006006static void intel_crtc_reset(struct drm_crtc *crtc)
6007{
6008 struct drm_device *dev = crtc->dev;
6009 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6010
6011 /* Reset flags back to the 'unknown' status so that they
6012 * will be correctly set on the initial modeset.
6013 */
6014 intel_crtc->dpms_mode = -1;
6015
6016 /* We need to fix up any BIOS configuration that conflicts with
6017 * our expectations.
6018 */
6019 intel_sanitize_modesetting(dev, intel_crtc->pipe, intel_crtc->plane);
6020}
6021
6022static struct drm_crtc_helper_funcs intel_helper_funcs = {
6023 .dpms = intel_crtc_dpms,
6024 .mode_fixup = intel_crtc_mode_fixup,
6025 .mode_set = intel_crtc_mode_set,
6026 .mode_set_base = intel_pipe_set_base,
6027 .mode_set_base_atomic = intel_pipe_set_base_atomic,
6028 .load_lut = intel_crtc_load_lut,
6029 .disable = intel_crtc_disable,
6030};
6031
6032static const struct drm_crtc_funcs intel_crtc_funcs = {
6033 .reset = intel_crtc_reset,
6034 .cursor_set = intel_crtc_cursor_set,
6035 .cursor_move = intel_crtc_cursor_move,
6036 .gamma_set = intel_crtc_gamma_set,
6037 .set_config = drm_crtc_helper_set_config,
6038 .destroy = intel_crtc_destroy,
6039 .page_flip = intel_crtc_page_flip,
6040};
6041
Hannes Ederb358d0a2008-12-18 21:18:47 +01006042static void intel_crtc_init(struct drm_device *dev, int pipe)
Jesse Barnes79e53942008-11-07 14:24:08 -08006043{
Jesse Barnes22fd0fa2009-12-02 13:42:53 -08006044 drm_i915_private_t *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -08006045 struct intel_crtc *intel_crtc;
6046 int i;
6047
6048 intel_crtc = kzalloc(sizeof(struct intel_crtc) + (INTELFB_CONN_LIMIT * sizeof(struct drm_connector *)), GFP_KERNEL);
6049 if (intel_crtc == NULL)
6050 return;
6051
6052 drm_crtc_init(dev, &intel_crtc->base, &intel_crtc_funcs);
6053
6054 drm_mode_crtc_set_gamma_size(&intel_crtc->base, 256);
Jesse Barnes79e53942008-11-07 14:24:08 -08006055 for (i = 0; i < 256; i++) {
6056 intel_crtc->lut_r[i] = i;
6057 intel_crtc->lut_g[i] = i;
6058 intel_crtc->lut_b[i] = i;
6059 }
6060
Jesse Barnes80824002009-09-10 15:28:06 -07006061 /* Swap pipes & planes for FBC on pre-965 */
6062 intel_crtc->pipe = pipe;
6063 intel_crtc->plane = pipe;
Chris Wilsone2e767a2010-09-13 16:53:12 +01006064 if (IS_MOBILE(dev) && IS_GEN3(dev)) {
Zhao Yakui28c97732009-10-09 11:39:41 +08006065 DRM_DEBUG_KMS("swapping pipes & planes for FBC\n");
Chris Wilsone2e767a2010-09-13 16:53:12 +01006066 intel_crtc->plane = !pipe;
Jesse Barnes80824002009-09-10 15:28:06 -07006067 }
6068
Jesse Barnes22fd0fa2009-12-02 13:42:53 -08006069 BUG_ON(pipe >= ARRAY_SIZE(dev_priv->plane_to_crtc_mapping) ||
6070 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] != NULL);
6071 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] = &intel_crtc->base;
6072 dev_priv->pipe_to_crtc_mapping[intel_crtc->pipe] = &intel_crtc->base;
6073
Chris Wilson5d1d0cc2011-01-24 15:02:15 +00006074 intel_crtc_reset(&intel_crtc->base);
Chris Wilson04dbff52011-02-10 17:38:35 +00006075 intel_crtc->active = true; /* force the pipe off on setup_init_config */
Jesse Barnes5a354202011-06-24 12:19:22 -07006076 intel_crtc->bpp = 24; /* default for pre-Ironlake */
Jesse Barnes7e7d76c2010-09-10 10:47:20 -07006077
6078 if (HAS_PCH_SPLIT(dev)) {
Jesse Barnes4b645f12011-10-12 09:51:31 -07006079 if (pipe == 2 && IS_IVYBRIDGE(dev))
6080 intel_crtc->no_pll = true;
Jesse Barnes7e7d76c2010-09-10 10:47:20 -07006081 intel_helper_funcs.prepare = ironlake_crtc_prepare;
6082 intel_helper_funcs.commit = ironlake_crtc_commit;
6083 } else {
6084 intel_helper_funcs.prepare = i9xx_crtc_prepare;
6085 intel_helper_funcs.commit = i9xx_crtc_commit;
6086 }
6087
Jesse Barnes79e53942008-11-07 14:24:08 -08006088 drm_crtc_helper_add(&intel_crtc->base, &intel_helper_funcs);
6089
Jesse Barnes652c3932009-08-17 13:31:43 -07006090 intel_crtc->busy = false;
6091
6092 setup_timer(&intel_crtc->idle_timer, intel_crtc_idle_timer,
6093 (unsigned long)intel_crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08006094}
6095
Carl Worth08d7b3d2009-04-29 14:43:54 -07006096int intel_get_pipe_from_crtc_id(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00006097 struct drm_file *file)
Carl Worth08d7b3d2009-04-29 14:43:54 -07006098{
6099 drm_i915_private_t *dev_priv = dev->dev_private;
6100 struct drm_i915_get_pipe_from_crtc_id *pipe_from_crtc_id = data;
Daniel Vetterc05422d2009-08-11 16:05:30 +02006101 struct drm_mode_object *drmmode_obj;
6102 struct intel_crtc *crtc;
Carl Worth08d7b3d2009-04-29 14:43:54 -07006103
6104 if (!dev_priv) {
6105 DRM_ERROR("called with no initialization\n");
6106 return -EINVAL;
6107 }
6108
Daniel Vetterc05422d2009-08-11 16:05:30 +02006109 drmmode_obj = drm_mode_object_find(dev, pipe_from_crtc_id->crtc_id,
6110 DRM_MODE_OBJECT_CRTC);
Carl Worth08d7b3d2009-04-29 14:43:54 -07006111
Daniel Vetterc05422d2009-08-11 16:05:30 +02006112 if (!drmmode_obj) {
Carl Worth08d7b3d2009-04-29 14:43:54 -07006113 DRM_ERROR("no such CRTC id\n");
6114 return -EINVAL;
6115 }
6116
Daniel Vetterc05422d2009-08-11 16:05:30 +02006117 crtc = to_intel_crtc(obj_to_crtc(drmmode_obj));
6118 pipe_from_crtc_id->pipe = crtc->pipe;
Carl Worth08d7b3d2009-04-29 14:43:54 -07006119
Daniel Vetterc05422d2009-08-11 16:05:30 +02006120 return 0;
Carl Worth08d7b3d2009-04-29 14:43:54 -07006121}
6122
Zhenyu Wangc5e4df32010-03-30 14:39:27 +08006123static int intel_encoder_clones(struct drm_device *dev, int type_mask)
Jesse Barnes79e53942008-11-07 14:24:08 -08006124{
Chris Wilson4ef69c72010-09-09 15:14:28 +01006125 struct intel_encoder *encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08006126 int index_mask = 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08006127 int entry = 0;
6128
Chris Wilson4ef69c72010-09-09 15:14:28 +01006129 list_for_each_entry(encoder, &dev->mode_config.encoder_list, base.head) {
6130 if (type_mask & encoder->clone_mask)
Jesse Barnes79e53942008-11-07 14:24:08 -08006131 index_mask |= (1 << entry);
6132 entry++;
6133 }
Chris Wilson4ef69c72010-09-09 15:14:28 +01006134
Jesse Barnes79e53942008-11-07 14:24:08 -08006135 return index_mask;
6136}
6137
Chris Wilson4d302442010-12-14 19:21:29 +00006138static bool has_edp_a(struct drm_device *dev)
6139{
6140 struct drm_i915_private *dev_priv = dev->dev_private;
6141
6142 if (!IS_MOBILE(dev))
6143 return false;
6144
6145 if ((I915_READ(DP_A) & DP_DETECTED) == 0)
6146 return false;
6147
6148 if (IS_GEN5(dev) &&
6149 (I915_READ(ILK_DISPLAY_CHICKEN_FUSES) & ILK_eDP_A_DISABLE))
6150 return false;
6151
6152 return true;
6153}
6154
Jesse Barnes79e53942008-11-07 14:24:08 -08006155static void intel_setup_outputs(struct drm_device *dev)
6156{
Eric Anholt725e30a2009-01-22 13:01:02 -08006157 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson4ef69c72010-09-09 15:14:28 +01006158 struct intel_encoder *encoder;
Adam Jacksoncb0953d2010-07-16 14:46:29 -04006159 bool dpd_is_edp = false;
Chris Wilsonf3cfcba2012-02-09 09:35:53 +00006160 bool has_lvds;
Jesse Barnes79e53942008-11-07 14:24:08 -08006161
Chris Wilsonf3cfcba2012-02-09 09:35:53 +00006162 has_lvds = intel_lvds_init(dev);
Chris Wilsonc5d1b512010-11-29 18:00:23 +00006163 if (!has_lvds && !HAS_PCH_SPLIT(dev)) {
6164 /* disable the panel fitter on everything but LVDS */
6165 I915_WRITE(PFIT_CONTROL, 0);
6166 }
Jesse Barnes79e53942008-11-07 14:24:08 -08006167
Eric Anholtbad720f2009-10-22 16:11:14 -07006168 if (HAS_PCH_SPLIT(dev)) {
Adam Jacksoncb0953d2010-07-16 14:46:29 -04006169 dpd_is_edp = intel_dpd_is_edp(dev);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +08006170
Chris Wilson4d302442010-12-14 19:21:29 +00006171 if (has_edp_a(dev))
Zhenyu Wang32f9d652009-07-24 01:00:32 +08006172 intel_dp_init(dev, DP_A);
6173
Adam Jacksoncb0953d2010-07-16 14:46:29 -04006174 if (dpd_is_edp && (I915_READ(PCH_DP_D) & DP_DETECTED))
6175 intel_dp_init(dev, PCH_DP_D);
6176 }
6177
6178 intel_crt_init(dev);
6179
6180 if (HAS_PCH_SPLIT(dev)) {
6181 int found;
6182
Zhenyu Wang30ad48b2009-06-05 15:38:43 +08006183 if (I915_READ(HDMIB) & PORT_DETECTED) {
Zhao Yakui461ed3c2010-03-30 15:11:33 +08006184 /* PCH SDVOB multiplex with HDMIB */
Daniel Vettereef4eac2012-03-23 23:43:35 +01006185 found = intel_sdvo_init(dev, PCH_SDVOB, true);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +08006186 if (!found)
6187 intel_hdmi_init(dev, HDMIB);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08006188 if (!found && (I915_READ(PCH_DP_B) & DP_DETECTED))
6189 intel_dp_init(dev, PCH_DP_B);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +08006190 }
6191
6192 if (I915_READ(HDMIC) & PORT_DETECTED)
6193 intel_hdmi_init(dev, HDMIC);
6194
6195 if (I915_READ(HDMID) & PORT_DETECTED)
6196 intel_hdmi_init(dev, HDMID);
6197
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08006198 if (I915_READ(PCH_DP_C) & DP_DETECTED)
6199 intel_dp_init(dev, PCH_DP_C);
6200
Adam Jacksoncb0953d2010-07-16 14:46:29 -04006201 if (!dpd_is_edp && (I915_READ(PCH_DP_D) & DP_DETECTED))
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08006202 intel_dp_init(dev, PCH_DP_D);
6203
Zhenyu Wang103a1962009-11-27 11:44:36 +08006204 } else if (SUPPORTS_DIGITAL_OUTPUTS(dev)) {
Ma Ling27185ae2009-08-24 13:50:23 +08006205 bool found = false;
Eric Anholt7d573822009-01-02 13:33:00 -08006206
Eric Anholt725e30a2009-01-22 13:01:02 -08006207 if (I915_READ(SDVOB) & SDVO_DETECTED) {
Jesse Barnesb01f2c32009-12-11 11:07:17 -08006208 DRM_DEBUG_KMS("probing SDVOB\n");
Daniel Vettereef4eac2012-03-23 23:43:35 +01006209 found = intel_sdvo_init(dev, SDVOB, true);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08006210 if (!found && SUPPORTS_INTEGRATED_HDMI(dev)) {
6211 DRM_DEBUG_KMS("probing HDMI on SDVOB\n");
Eric Anholt725e30a2009-01-22 13:01:02 -08006212 intel_hdmi_init(dev, SDVOB);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08006213 }
Ma Ling27185ae2009-08-24 13:50:23 +08006214
Jesse Barnesb01f2c32009-12-11 11:07:17 -08006215 if (!found && SUPPORTS_INTEGRATED_DP(dev)) {
6216 DRM_DEBUG_KMS("probing DP_B\n");
Keith Packarda4fc5ed2009-04-07 16:16:42 -07006217 intel_dp_init(dev, DP_B);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08006218 }
Eric Anholt725e30a2009-01-22 13:01:02 -08006219 }
Kristian Høgsberg13520b02009-03-13 15:42:14 -04006220
6221 /* Before G4X SDVOC doesn't have its own detect register */
Kristian Høgsberg13520b02009-03-13 15:42:14 -04006222
Jesse Barnesb01f2c32009-12-11 11:07:17 -08006223 if (I915_READ(SDVOB) & SDVO_DETECTED) {
6224 DRM_DEBUG_KMS("probing SDVOC\n");
Daniel Vettereef4eac2012-03-23 23:43:35 +01006225 found = intel_sdvo_init(dev, SDVOC, false);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08006226 }
Ma Ling27185ae2009-08-24 13:50:23 +08006227
6228 if (!found && (I915_READ(SDVOC) & SDVO_DETECTED)) {
6229
Jesse Barnesb01f2c32009-12-11 11:07:17 -08006230 if (SUPPORTS_INTEGRATED_HDMI(dev)) {
6231 DRM_DEBUG_KMS("probing HDMI on SDVOC\n");
Eric Anholt725e30a2009-01-22 13:01:02 -08006232 intel_hdmi_init(dev, SDVOC);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08006233 }
6234 if (SUPPORTS_INTEGRATED_DP(dev)) {
6235 DRM_DEBUG_KMS("probing DP_C\n");
Keith Packarda4fc5ed2009-04-07 16:16:42 -07006236 intel_dp_init(dev, DP_C);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08006237 }
Eric Anholt725e30a2009-01-22 13:01:02 -08006238 }
Ma Ling27185ae2009-08-24 13:50:23 +08006239
Jesse Barnesb01f2c32009-12-11 11:07:17 -08006240 if (SUPPORTS_INTEGRATED_DP(dev) &&
6241 (I915_READ(DP_D) & DP_DETECTED)) {
6242 DRM_DEBUG_KMS("probing DP_D\n");
Keith Packarda4fc5ed2009-04-07 16:16:42 -07006243 intel_dp_init(dev, DP_D);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08006244 }
Eric Anholtbad720f2009-10-22 16:11:14 -07006245 } else if (IS_GEN2(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -08006246 intel_dvo_init(dev);
6247
Zhenyu Wang103a1962009-11-27 11:44:36 +08006248 if (SUPPORTS_TV(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -08006249 intel_tv_init(dev);
6250
Chris Wilson4ef69c72010-09-09 15:14:28 +01006251 list_for_each_entry(encoder, &dev->mode_config.encoder_list, base.head) {
6252 encoder->base.possible_crtcs = encoder->crtc_mask;
6253 encoder->base.possible_clones =
6254 intel_encoder_clones(dev, encoder->clone_mask);
Jesse Barnes79e53942008-11-07 14:24:08 -08006255 }
Chris Wilson47356eb2011-01-11 17:06:04 +00006256
Chris Wilson2c7111d2011-03-29 10:40:27 +01006257 /* disable all the possible outputs/crtcs before entering KMS mode */
6258 drm_helper_disable_unused_functions(dev);
Keith Packard9fb526d2011-09-26 22:24:57 -07006259
6260 if (HAS_PCH_SPLIT(dev))
6261 ironlake_init_pch_refclk(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08006262}
6263
6264static void intel_user_framebuffer_destroy(struct drm_framebuffer *fb)
6265{
6266 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
Jesse Barnes79e53942008-11-07 14:24:08 -08006267
6268 drm_framebuffer_cleanup(fb);
Chris Wilson05394f32010-11-08 19:18:58 +00006269 drm_gem_object_unreference_unlocked(&intel_fb->obj->base);
Jesse Barnes79e53942008-11-07 14:24:08 -08006270
6271 kfree(intel_fb);
6272}
6273
6274static int intel_user_framebuffer_create_handle(struct drm_framebuffer *fb,
Chris Wilson05394f32010-11-08 19:18:58 +00006275 struct drm_file *file,
Jesse Barnes79e53942008-11-07 14:24:08 -08006276 unsigned int *handle)
6277{
6278 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
Chris Wilson05394f32010-11-08 19:18:58 +00006279 struct drm_i915_gem_object *obj = intel_fb->obj;
Jesse Barnes79e53942008-11-07 14:24:08 -08006280
Chris Wilson05394f32010-11-08 19:18:58 +00006281 return drm_gem_handle_create(file, &obj->base, handle);
Jesse Barnes79e53942008-11-07 14:24:08 -08006282}
6283
6284static const struct drm_framebuffer_funcs intel_fb_funcs = {
6285 .destroy = intel_user_framebuffer_destroy,
6286 .create_handle = intel_user_framebuffer_create_handle,
6287};
6288
Dave Airlie38651672010-03-30 05:34:13 +00006289int intel_framebuffer_init(struct drm_device *dev,
6290 struct intel_framebuffer *intel_fb,
Jesse Barnes308e5bc2011-11-14 14:51:28 -08006291 struct drm_mode_fb_cmd2 *mode_cmd,
Chris Wilson05394f32010-11-08 19:18:58 +00006292 struct drm_i915_gem_object *obj)
Jesse Barnes79e53942008-11-07 14:24:08 -08006293{
Jesse Barnes79e53942008-11-07 14:24:08 -08006294 int ret;
6295
Chris Wilson05394f32010-11-08 19:18:58 +00006296 if (obj->tiling_mode == I915_TILING_Y)
Chris Wilson57cd6502010-08-08 12:34:44 +01006297 return -EINVAL;
6298
Jesse Barnes308e5bc2011-11-14 14:51:28 -08006299 if (mode_cmd->pitches[0] & 63)
Chris Wilson57cd6502010-08-08 12:34:44 +01006300 return -EINVAL;
6301
Jesse Barnes308e5bc2011-11-14 14:51:28 -08006302 switch (mode_cmd->pixel_format) {
Ville Syrjälä04b39242011-11-17 18:05:13 +02006303 case DRM_FORMAT_RGB332:
6304 case DRM_FORMAT_RGB565:
6305 case DRM_FORMAT_XRGB8888:
Jesse Barnesb250da72012-03-07 08:49:29 -08006306 case DRM_FORMAT_XBGR8888:
Ville Syrjälä04b39242011-11-17 18:05:13 +02006307 case DRM_FORMAT_ARGB8888:
6308 case DRM_FORMAT_XRGB2101010:
6309 case DRM_FORMAT_ARGB2101010:
Jesse Barnes308e5bc2011-11-14 14:51:28 -08006310 /* RGB formats are common across chipsets */
Jesse Barnesb5626742011-06-24 12:19:27 -07006311 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +02006312 case DRM_FORMAT_YUYV:
6313 case DRM_FORMAT_UYVY:
6314 case DRM_FORMAT_YVYU:
6315 case DRM_FORMAT_VYUY:
Chris Wilson57cd6502010-08-08 12:34:44 +01006316 break;
6317 default:
Eugeni Dodonovaca25842012-01-17 15:25:45 -02006318 DRM_DEBUG_KMS("unsupported pixel format %u\n",
6319 mode_cmd->pixel_format);
Chris Wilson57cd6502010-08-08 12:34:44 +01006320 return -EINVAL;
6321 }
6322
Jesse Barnes79e53942008-11-07 14:24:08 -08006323 ret = drm_framebuffer_init(dev, &intel_fb->base, &intel_fb_funcs);
6324 if (ret) {
6325 DRM_ERROR("framebuffer init failed %d\n", ret);
6326 return ret;
6327 }
6328
6329 drm_helper_mode_fill_fb_struct(&intel_fb->base, mode_cmd);
Jesse Barnes79e53942008-11-07 14:24:08 -08006330 intel_fb->obj = obj;
Jesse Barnes79e53942008-11-07 14:24:08 -08006331 return 0;
6332}
6333
Jesse Barnes79e53942008-11-07 14:24:08 -08006334static struct drm_framebuffer *
6335intel_user_framebuffer_create(struct drm_device *dev,
6336 struct drm_file *filp,
Jesse Barnes308e5bc2011-11-14 14:51:28 -08006337 struct drm_mode_fb_cmd2 *mode_cmd)
Jesse Barnes79e53942008-11-07 14:24:08 -08006338{
Chris Wilson05394f32010-11-08 19:18:58 +00006339 struct drm_i915_gem_object *obj;
Jesse Barnes79e53942008-11-07 14:24:08 -08006340
Jesse Barnes308e5bc2011-11-14 14:51:28 -08006341 obj = to_intel_bo(drm_gem_object_lookup(dev, filp,
6342 mode_cmd->handles[0]));
Chris Wilsonc8725222011-02-19 11:31:06 +00006343 if (&obj->base == NULL)
Chris Wilsoncce13ff2010-08-08 13:36:38 +01006344 return ERR_PTR(-ENOENT);
Jesse Barnes79e53942008-11-07 14:24:08 -08006345
Chris Wilsond2dff872011-04-19 08:36:26 +01006346 return intel_framebuffer_create(dev, mode_cmd, obj);
Jesse Barnes79e53942008-11-07 14:24:08 -08006347}
6348
Jesse Barnes79e53942008-11-07 14:24:08 -08006349static const struct drm_mode_config_funcs intel_mode_funcs = {
Jesse Barnes79e53942008-11-07 14:24:08 -08006350 .fb_create = intel_user_framebuffer_create,
Dave Airlieeb1f8e42010-05-07 06:42:51 +00006351 .output_poll_changed = intel_fb_output_poll_changed,
Jesse Barnes79e53942008-11-07 14:24:08 -08006352};
6353
Jesse Barnese70236a2009-09-21 10:42:27 -07006354/* Set up chip specific display functions */
6355static void intel_init_display(struct drm_device *dev)
6356{
6357 struct drm_i915_private *dev_priv = dev->dev_private;
6358
6359 /* We always want a DPMS function */
Eric Anholtf564048e2011-03-30 13:01:02 -07006360 if (HAS_PCH_SPLIT(dev)) {
Adam Jacksonf2b115e2009-12-03 17:14:42 -05006361 dev_priv->display.dpms = ironlake_crtc_dpms;
Eric Anholtf564048e2011-03-30 13:01:02 -07006362 dev_priv->display.crtc_mode_set = ironlake_crtc_mode_set;
Jesse Barnes17638cd2011-06-24 12:19:23 -07006363 dev_priv->display.update_plane = ironlake_update_plane;
Eric Anholtf564048e2011-03-30 13:01:02 -07006364 } else {
Jesse Barnese70236a2009-09-21 10:42:27 -07006365 dev_priv->display.dpms = i9xx_crtc_dpms;
Eric Anholtf564048e2011-03-30 13:01:02 -07006366 dev_priv->display.crtc_mode_set = i9xx_crtc_mode_set;
Jesse Barnes17638cd2011-06-24 12:19:23 -07006367 dev_priv->display.update_plane = i9xx_update_plane;
Eric Anholtf564048e2011-03-30 13:01:02 -07006368 }
Jesse Barnese70236a2009-09-21 10:42:27 -07006369
Jesse Barnese70236a2009-09-21 10:42:27 -07006370 /* Returns the core display clock speed */
Jesse Barnes25eb05fc2012-03-28 13:39:23 -07006371 if (IS_VALLEYVIEW(dev))
6372 dev_priv->display.get_display_clock_speed =
6373 valleyview_get_display_clock_speed;
6374 else if (IS_I945G(dev) || (IS_G33(dev) && !IS_PINEVIEW_M(dev)))
Jesse Barnese70236a2009-09-21 10:42:27 -07006375 dev_priv->display.get_display_clock_speed =
6376 i945_get_display_clock_speed;
6377 else if (IS_I915G(dev))
6378 dev_priv->display.get_display_clock_speed =
6379 i915_get_display_clock_speed;
Adam Jacksonf2b115e2009-12-03 17:14:42 -05006380 else if (IS_I945GM(dev) || IS_845G(dev) || IS_PINEVIEW_M(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -07006381 dev_priv->display.get_display_clock_speed =
6382 i9xx_misc_get_display_clock_speed;
6383 else if (IS_I915GM(dev))
6384 dev_priv->display.get_display_clock_speed =
6385 i915gm_get_display_clock_speed;
6386 else if (IS_I865G(dev))
6387 dev_priv->display.get_display_clock_speed =
6388 i865_get_display_clock_speed;
Daniel Vetterf0f8a9c2009-09-15 22:57:33 +02006389 else if (IS_I85X(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -07006390 dev_priv->display.get_display_clock_speed =
6391 i855_get_display_clock_speed;
6392 else /* 852, 830 */
6393 dev_priv->display.get_display_clock_speed =
6394 i830_get_display_clock_speed;
6395
Zhenyu Wang7f8a8562010-04-01 13:07:53 +08006396 if (HAS_PCH_SPLIT(dev)) {
Chris Wilsonf00a3dd2010-10-21 14:57:17 +01006397 if (IS_GEN5(dev)) {
Jesse Barnes674cf962011-04-28 14:27:04 -07006398 dev_priv->display.fdi_link_train = ironlake_fdi_link_train;
Wu Fengguange0dac652011-09-05 14:25:34 +08006399 dev_priv->display.write_eld = ironlake_write_eld;
Yuanhan Liu13982612010-12-15 15:42:31 +08006400 } else if (IS_GEN6(dev)) {
Jesse Barnes674cf962011-04-28 14:27:04 -07006401 dev_priv->display.fdi_link_train = gen6_fdi_link_train;
Wu Fengguange0dac652011-09-05 14:25:34 +08006402 dev_priv->display.write_eld = ironlake_write_eld;
Jesse Barnes357555c2011-04-28 15:09:55 -07006403 } else if (IS_IVYBRIDGE(dev)) {
6404 /* FIXME: detect B0+ stepping and use auto training */
6405 dev_priv->display.fdi_link_train = ivb_manual_fdi_link_train;
Wu Fengguange0dac652011-09-05 14:25:34 +08006406 dev_priv->display.write_eld = ironlake_write_eld;
Zhenyu Wang7f8a8562010-04-01 13:07:53 +08006407 } else
6408 dev_priv->display.update_wm = NULL;
Jesse Barnesceb04242012-03-28 13:39:22 -07006409 } else if (IS_VALLEYVIEW(dev)) {
Jesse Barnes575155a2012-03-28 13:39:37 -07006410 dev_priv->display.force_wake_get = vlv_force_wake_get;
6411 dev_priv->display.force_wake_put = vlv_force_wake_put;
Jesse Barnes6067aae2011-04-28 15:04:31 -07006412 } else if (IS_G4X(dev)) {
Wu Fengguange0dac652011-09-05 14:25:34 +08006413 dev_priv->display.write_eld = g4x_write_eld;
Jesse Barnese70236a2009-09-21 10:42:27 -07006414 }
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006415
6416 /* Default just returns -ENODEV to indicate unsupported */
6417 dev_priv->display.queue_flip = intel_default_queue_flip;
6418
6419 switch (INTEL_INFO(dev)->gen) {
6420 case 2:
6421 dev_priv->display.queue_flip = intel_gen2_queue_flip;
6422 break;
6423
6424 case 3:
6425 dev_priv->display.queue_flip = intel_gen3_queue_flip;
6426 break;
6427
6428 case 4:
6429 case 5:
6430 dev_priv->display.queue_flip = intel_gen4_queue_flip;
6431 break;
6432
6433 case 6:
6434 dev_priv->display.queue_flip = intel_gen6_queue_flip;
6435 break;
Jesse Barnes7c9017e2011-06-16 12:18:54 -07006436 case 7:
6437 dev_priv->display.queue_flip = intel_gen7_queue_flip;
6438 break;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006439 }
Jesse Barnese70236a2009-09-21 10:42:27 -07006440}
6441
Jesse Barnesb690e962010-07-19 13:53:12 -07006442/*
6443 * Some BIOSes insist on assuming the GPU's pipe A is enabled at suspend,
6444 * resume, or other times. This quirk makes sure that's the case for
6445 * affected systems.
6446 */
Akshay Joshi0206e352011-08-16 15:34:10 -04006447static void quirk_pipea_force(struct drm_device *dev)
Jesse Barnesb690e962010-07-19 13:53:12 -07006448{
6449 struct drm_i915_private *dev_priv = dev->dev_private;
6450
6451 dev_priv->quirks |= QUIRK_PIPEA_FORCE;
Daniel Vetterbc0daf42012-04-01 13:16:49 +02006452 DRM_INFO("applying pipe a force quirk\n");
Jesse Barnesb690e962010-07-19 13:53:12 -07006453}
6454
Keith Packard435793d2011-07-12 14:56:22 -07006455/*
6456 * Some machines (Lenovo U160) do not work with SSC on LVDS for some reason
6457 */
6458static void quirk_ssc_force_disable(struct drm_device *dev)
6459{
6460 struct drm_i915_private *dev_priv = dev->dev_private;
6461 dev_priv->quirks |= QUIRK_LVDS_SSC_DISABLE;
Daniel Vetterbc0daf42012-04-01 13:16:49 +02006462 DRM_INFO("applying lvds SSC disable quirk\n");
Keith Packard435793d2011-07-12 14:56:22 -07006463}
6464
Carsten Emde4dca20e2012-03-15 15:56:26 +01006465/*
Carsten Emde5a15ab52012-03-15 15:56:27 +01006466 * A machine (e.g. Acer Aspire 5734Z) may need to invert the panel backlight
6467 * brightness value
Carsten Emde4dca20e2012-03-15 15:56:26 +01006468 */
6469static void quirk_invert_brightness(struct drm_device *dev)
6470{
6471 struct drm_i915_private *dev_priv = dev->dev_private;
6472 dev_priv->quirks |= QUIRK_INVERT_BRIGHTNESS;
Daniel Vetterbc0daf42012-04-01 13:16:49 +02006473 DRM_INFO("applying inverted panel brightness quirk\n");
Jesse Barnesb690e962010-07-19 13:53:12 -07006474}
6475
6476struct intel_quirk {
6477 int device;
6478 int subsystem_vendor;
6479 int subsystem_device;
6480 void (*hook)(struct drm_device *dev);
6481};
6482
Ben Widawskyc43b5632012-04-16 14:07:40 -07006483static struct intel_quirk intel_quirks[] = {
Jesse Barnesb690e962010-07-19 13:53:12 -07006484 /* HP Mini needs pipe A force quirk (LP: #322104) */
Akshay Joshi0206e352011-08-16 15:34:10 -04006485 { 0x27ae, 0x103c, 0x361a, quirk_pipea_force },
Jesse Barnesb690e962010-07-19 13:53:12 -07006486
6487 /* Thinkpad R31 needs pipe A force quirk */
6488 { 0x3577, 0x1014, 0x0505, quirk_pipea_force },
6489 /* Toshiba Protege R-205, S-209 needs pipe A force quirk */
6490 { 0x2592, 0x1179, 0x0001, quirk_pipea_force },
6491
6492 /* ThinkPad X30 needs pipe A force quirk (LP: #304614) */
6493 { 0x3577, 0x1014, 0x0513, quirk_pipea_force },
6494 /* ThinkPad X40 needs pipe A force quirk */
6495
6496 /* ThinkPad T60 needs pipe A force quirk (bug #16494) */
6497 { 0x2782, 0x17aa, 0x201a, quirk_pipea_force },
6498
6499 /* 855 & before need to leave pipe A & dpll A up */
6500 { 0x3582, PCI_ANY_ID, PCI_ANY_ID, quirk_pipea_force },
6501 { 0x2562, PCI_ANY_ID, PCI_ANY_ID, quirk_pipea_force },
Keith Packard435793d2011-07-12 14:56:22 -07006502
6503 /* Lenovo U160 cannot use SSC on LVDS */
6504 { 0x0046, 0x17aa, 0x3920, quirk_ssc_force_disable },
Michel Alexandre Salim070d3292011-07-28 18:52:06 +02006505
6506 /* Sony Vaio Y cannot use SSC on LVDS */
6507 { 0x0046, 0x104d, 0x9076, quirk_ssc_force_disable },
Carsten Emde5a15ab52012-03-15 15:56:27 +01006508
6509 /* Acer Aspire 5734Z must invert backlight brightness */
6510 { 0x2a42, 0x1025, 0x0459, quirk_invert_brightness },
Jesse Barnesb690e962010-07-19 13:53:12 -07006511};
6512
6513static void intel_init_quirks(struct drm_device *dev)
6514{
6515 struct pci_dev *d = dev->pdev;
6516 int i;
6517
6518 for (i = 0; i < ARRAY_SIZE(intel_quirks); i++) {
6519 struct intel_quirk *q = &intel_quirks[i];
6520
6521 if (d->device == q->device &&
6522 (d->subsystem_vendor == q->subsystem_vendor ||
6523 q->subsystem_vendor == PCI_ANY_ID) &&
6524 (d->subsystem_device == q->subsystem_device ||
6525 q->subsystem_device == PCI_ANY_ID))
6526 q->hook(dev);
6527 }
6528}
6529
Jesse Barnes9cce37f2010-08-13 15:11:26 -07006530/* Disable the VGA plane that we never use */
6531static void i915_disable_vga(struct drm_device *dev)
6532{
6533 struct drm_i915_private *dev_priv = dev->dev_private;
6534 u8 sr1;
6535 u32 vga_reg;
6536
6537 if (HAS_PCH_SPLIT(dev))
6538 vga_reg = CPU_VGACNTRL;
6539 else
6540 vga_reg = VGACNTRL;
6541
6542 vga_get_uninterruptible(dev->pdev, VGA_RSRC_LEGACY_IO);
Jesse Barnes3fdcf432012-04-06 11:46:27 -07006543 outb(SR01, VGA_SR_INDEX);
Jesse Barnes9cce37f2010-08-13 15:11:26 -07006544 sr1 = inb(VGA_SR_DATA);
6545 outb(sr1 | 1<<5, VGA_SR_DATA);
6546 vga_put(dev->pdev, VGA_RSRC_LEGACY_IO);
6547 udelay(300);
6548
6549 I915_WRITE(vga_reg, VGA_DISP_DISABLE);
6550 POSTING_READ(vga_reg);
6551}
6552
Jesse Barnesf82cfb62012-04-11 09:23:35 -07006553static void ivb_pch_pwm_override(struct drm_device *dev)
6554{
6555 struct drm_i915_private *dev_priv = dev->dev_private;
6556
6557 /*
6558 * IVB has CPU eDP backlight regs too, set things up to let the
6559 * PCH regs control the backlight
6560 */
6561 I915_WRITE(BLC_PWM_CPU_CTL2, PWM_ENABLE);
6562 I915_WRITE(BLC_PWM_CPU_CTL, 0);
6563 I915_WRITE(BLC_PWM_PCH_CTL1, PWM_ENABLE | (1<<30));
6564}
6565
Daniel Vetterf8175862012-04-10 15:50:11 +02006566void intel_modeset_init_hw(struct drm_device *dev)
6567{
6568 struct drm_i915_private *dev_priv = dev->dev_private;
6569
6570 intel_init_clock_gating(dev);
6571
6572 if (IS_IRONLAKE_M(dev)) {
6573 ironlake_enable_drps(dev);
6574 intel_init_emon(dev);
6575 }
6576
Jesse Barnesb6834bd2012-04-11 09:23:33 -07006577 if ((IS_GEN6(dev) || IS_GEN7(dev)) && !IS_VALLEYVIEW(dev)) {
Daniel Vetterf8175862012-04-10 15:50:11 +02006578 gen6_enable_rps(dev_priv);
6579 gen6_update_ring_freq(dev_priv);
6580 }
Jesse Barnesf82cfb62012-04-11 09:23:35 -07006581
6582 if (IS_IVYBRIDGE(dev))
6583 ivb_pch_pwm_override(dev);
Daniel Vetterf8175862012-04-10 15:50:11 +02006584}
6585
Jesse Barnes79e53942008-11-07 14:24:08 -08006586void intel_modeset_init(struct drm_device *dev)
6587{
Jesse Barnes652c3932009-08-17 13:31:43 -07006588 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesb840d907f2011-12-13 13:19:38 -08006589 int i, ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08006590
6591 drm_mode_config_init(dev);
6592
6593 dev->mode_config.min_width = 0;
6594 dev->mode_config.min_height = 0;
6595
Dave Airlie019d96c2011-09-29 16:20:42 +01006596 dev->mode_config.preferred_depth = 24;
6597 dev->mode_config.prefer_shadow = 1;
6598
Jesse Barnes79e53942008-11-07 14:24:08 -08006599 dev->mode_config.funcs = (void *)&intel_mode_funcs;
6600
Jesse Barnesb690e962010-07-19 13:53:12 -07006601 intel_init_quirks(dev);
6602
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006603 intel_init_pm(dev);
6604
Jesse Barnese70236a2009-09-21 10:42:27 -07006605 intel_init_display(dev);
6606
Chris Wilsona6c45cf2010-09-17 00:32:17 +01006607 if (IS_GEN2(dev)) {
6608 dev->mode_config.max_width = 2048;
6609 dev->mode_config.max_height = 2048;
6610 } else if (IS_GEN3(dev)) {
Keith Packard5e4d6fa2009-07-12 23:53:17 -07006611 dev->mode_config.max_width = 4096;
6612 dev->mode_config.max_height = 4096;
Jesse Barnes79e53942008-11-07 14:24:08 -08006613 } else {
Chris Wilsona6c45cf2010-09-17 00:32:17 +01006614 dev->mode_config.max_width = 8192;
6615 dev->mode_config.max_height = 8192;
Jesse Barnes79e53942008-11-07 14:24:08 -08006616 }
Chris Wilson35c30472010-12-22 14:07:12 +00006617 dev->mode_config.fb_base = dev->agp->base;
Jesse Barnes79e53942008-11-07 14:24:08 -08006618
Zhao Yakui28c97732009-10-09 11:39:41 +08006619 DRM_DEBUG_KMS("%d display pipe%s available.\n",
Dave Airliea3524f12010-06-06 18:59:41 +10006620 dev_priv->num_pipe, dev_priv->num_pipe > 1 ? "s" : "");
Jesse Barnes79e53942008-11-07 14:24:08 -08006621
Dave Airliea3524f12010-06-06 18:59:41 +10006622 for (i = 0; i < dev_priv->num_pipe; i++) {
Jesse Barnes79e53942008-11-07 14:24:08 -08006623 intel_crtc_init(dev, i);
Jesse Barnes00c2064b2012-01-13 15:48:39 -08006624 ret = intel_plane_init(dev, i);
6625 if (ret)
6626 DRM_DEBUG_KMS("plane %d init failed: %d\n", i, ret);
Jesse Barnes79e53942008-11-07 14:24:08 -08006627 }
6628
Jesse Barnes9cce37f2010-08-13 15:11:26 -07006629 /* Just disable it once at startup */
6630 i915_disable_vga(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08006631 intel_setup_outputs(dev);
Jesse Barnes652c3932009-08-17 13:31:43 -07006632
Daniel Vetterf8175862012-04-10 15:50:11 +02006633 intel_modeset_init_hw(dev);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08006634
Jesse Barnes652c3932009-08-17 13:31:43 -07006635 INIT_WORK(&dev_priv->idle_work, intel_idle_update);
6636 setup_timer(&dev_priv->idle_timer, intel_gpu_idle_timer,
6637 (unsigned long)dev);
Chris Wilson2c7111d2011-03-29 10:40:27 +01006638}
6639
6640void intel_modeset_gem_init(struct drm_device *dev)
6641{
6642 if (IS_IRONLAKE_M(dev))
6643 ironlake_enable_rc6(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +02006644
6645 intel_setup_overlay(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08006646}
6647
6648void intel_modeset_cleanup(struct drm_device *dev)
6649{
Jesse Barnes652c3932009-08-17 13:31:43 -07006650 struct drm_i915_private *dev_priv = dev->dev_private;
6651 struct drm_crtc *crtc;
6652 struct intel_crtc *intel_crtc;
6653
Keith Packardf87ea762010-10-03 19:36:26 -07006654 drm_kms_helper_poll_fini(dev);
Jesse Barnes652c3932009-08-17 13:31:43 -07006655 mutex_lock(&dev->struct_mutex);
6656
Jesse Barnes723bfd72010-10-07 16:01:13 -07006657 intel_unregister_dsm_handler();
6658
6659
Jesse Barnes652c3932009-08-17 13:31:43 -07006660 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
6661 /* Skip inactive CRTCs */
6662 if (!crtc->fb)
6663 continue;
6664
6665 intel_crtc = to_intel_crtc(crtc);
Daniel Vetter3dec0092010-08-20 21:40:52 +02006666 intel_increase_pllclock(crtc);
Jesse Barnes652c3932009-08-17 13:31:43 -07006667 }
6668
Chris Wilson973d04f2011-07-08 12:22:37 +01006669 intel_disable_fbc(dev);
Jesse Barnese70236a2009-09-21 10:42:27 -07006670
Jesse Barnesf97108d2010-01-29 11:27:07 -08006671 if (IS_IRONLAKE_M(dev))
6672 ironlake_disable_drps(dev);
Jesse Barnesb6834bd2012-04-11 09:23:33 -07006673 if ((IS_GEN6(dev) || IS_GEN7(dev)) && !IS_VALLEYVIEW(dev))
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08006674 gen6_disable_rps(dev);
Jesse Barnesf97108d2010-01-29 11:27:07 -08006675
Jesse Barnesd5bb0812011-01-05 12:01:26 -08006676 if (IS_IRONLAKE_M(dev))
6677 ironlake_disable_rc6(dev);
Chris Wilson0cdab212010-12-05 17:27:06 +00006678
Jesse Barnes57f350b2012-03-28 13:39:25 -07006679 if (IS_VALLEYVIEW(dev))
6680 vlv_init_dpio(dev);
6681
Kristian Høgsberg69341a52009-11-11 12:19:17 -05006682 mutex_unlock(&dev->struct_mutex);
6683
Daniel Vetter6c0d93502010-08-20 18:26:46 +02006684 /* Disable the irq before mode object teardown, for the irq might
6685 * enqueue unpin/hotplug work. */
6686 drm_irq_uninstall(dev);
6687 cancel_work_sync(&dev_priv->hotplug_work);
Daniel Vetter6fdd4d92011-09-08 14:00:22 +02006688 cancel_work_sync(&dev_priv->rps_work);
Daniel Vetter6c0d93502010-08-20 18:26:46 +02006689
Chris Wilson1630fe72011-07-08 12:22:42 +01006690 /* flush any delayed tasks or pending work */
6691 flush_scheduled_work();
6692
Daniel Vetter3dec0092010-08-20 21:40:52 +02006693 /* Shut off idle work before the crtcs get freed. */
6694 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
6695 intel_crtc = to_intel_crtc(crtc);
6696 del_timer_sync(&intel_crtc->idle_timer);
6697 }
6698 del_timer_sync(&dev_priv->idle_timer);
6699 cancel_work_sync(&dev_priv->idle_work);
6700
Jesse Barnes79e53942008-11-07 14:24:08 -08006701 drm_mode_config_cleanup(dev);
6702}
6703
Dave Airlie28d52042009-09-21 14:33:58 +10006704/*
Zhenyu Wangf1c79df2010-03-30 14:39:29 +08006705 * Return which encoder is currently attached for connector.
6706 */
Chris Wilsondf0e9242010-09-09 16:20:55 +01006707struct drm_encoder *intel_best_encoder(struct drm_connector *connector)
Jesse Barnes79e53942008-11-07 14:24:08 -08006708{
Chris Wilsondf0e9242010-09-09 16:20:55 +01006709 return &intel_attached_encoder(connector)->base;
6710}
Jesse Barnes79e53942008-11-07 14:24:08 -08006711
Chris Wilsondf0e9242010-09-09 16:20:55 +01006712void intel_connector_attach_encoder(struct intel_connector *connector,
6713 struct intel_encoder *encoder)
6714{
6715 connector->encoder = encoder;
6716 drm_mode_connector_attach_encoder(&connector->base,
6717 &encoder->base);
Jesse Barnes79e53942008-11-07 14:24:08 -08006718}
Dave Airlie28d52042009-09-21 14:33:58 +10006719
6720/*
6721 * set vga decode state - true == enable VGA decode
6722 */
6723int intel_modeset_vga_set_state(struct drm_device *dev, bool state)
6724{
6725 struct drm_i915_private *dev_priv = dev->dev_private;
6726 u16 gmch_ctrl;
6727
6728 pci_read_config_word(dev_priv->bridge_dev, INTEL_GMCH_CTRL, &gmch_ctrl);
6729 if (state)
6730 gmch_ctrl &= ~INTEL_GMCH_VGA_DISABLE;
6731 else
6732 gmch_ctrl |= INTEL_GMCH_VGA_DISABLE;
6733 pci_write_config_word(dev_priv->bridge_dev, INTEL_GMCH_CTRL, gmch_ctrl);
6734 return 0;
6735}
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00006736
6737#ifdef CONFIG_DEBUG_FS
6738#include <linux/seq_file.h>
6739
6740struct intel_display_error_state {
6741 struct intel_cursor_error_state {
6742 u32 control;
6743 u32 position;
6744 u32 base;
6745 u32 size;
6746 } cursor[2];
6747
6748 struct intel_pipe_error_state {
6749 u32 conf;
6750 u32 source;
6751
6752 u32 htotal;
6753 u32 hblank;
6754 u32 hsync;
6755 u32 vtotal;
6756 u32 vblank;
6757 u32 vsync;
6758 } pipe[2];
6759
6760 struct intel_plane_error_state {
6761 u32 control;
6762 u32 stride;
6763 u32 size;
6764 u32 pos;
6765 u32 addr;
6766 u32 surface;
6767 u32 tile_offset;
6768 } plane[2];
6769};
6770
6771struct intel_display_error_state *
6772intel_display_capture_error_state(struct drm_device *dev)
6773{
Akshay Joshi0206e352011-08-16 15:34:10 -04006774 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00006775 struct intel_display_error_state *error;
6776 int i;
6777
6778 error = kmalloc(sizeof(*error), GFP_ATOMIC);
6779 if (error == NULL)
6780 return NULL;
6781
6782 for (i = 0; i < 2; i++) {
6783 error->cursor[i].control = I915_READ(CURCNTR(i));
6784 error->cursor[i].position = I915_READ(CURPOS(i));
6785 error->cursor[i].base = I915_READ(CURBASE(i));
6786
6787 error->plane[i].control = I915_READ(DSPCNTR(i));
6788 error->plane[i].stride = I915_READ(DSPSTRIDE(i));
6789 error->plane[i].size = I915_READ(DSPSIZE(i));
Akshay Joshi0206e352011-08-16 15:34:10 -04006790 error->plane[i].pos = I915_READ(DSPPOS(i));
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00006791 error->plane[i].addr = I915_READ(DSPADDR(i));
6792 if (INTEL_INFO(dev)->gen >= 4) {
6793 error->plane[i].surface = I915_READ(DSPSURF(i));
6794 error->plane[i].tile_offset = I915_READ(DSPTILEOFF(i));
6795 }
6796
6797 error->pipe[i].conf = I915_READ(PIPECONF(i));
6798 error->pipe[i].source = I915_READ(PIPESRC(i));
6799 error->pipe[i].htotal = I915_READ(HTOTAL(i));
6800 error->pipe[i].hblank = I915_READ(HBLANK(i));
6801 error->pipe[i].hsync = I915_READ(HSYNC(i));
6802 error->pipe[i].vtotal = I915_READ(VTOTAL(i));
6803 error->pipe[i].vblank = I915_READ(VBLANK(i));
6804 error->pipe[i].vsync = I915_READ(VSYNC(i));
6805 }
6806
6807 return error;
6808}
6809
6810void
6811intel_display_print_error_state(struct seq_file *m,
6812 struct drm_device *dev,
6813 struct intel_display_error_state *error)
6814{
6815 int i;
6816
6817 for (i = 0; i < 2; i++) {
6818 seq_printf(m, "Pipe [%d]:\n", i);
6819 seq_printf(m, " CONF: %08x\n", error->pipe[i].conf);
6820 seq_printf(m, " SRC: %08x\n", error->pipe[i].source);
6821 seq_printf(m, " HTOTAL: %08x\n", error->pipe[i].htotal);
6822 seq_printf(m, " HBLANK: %08x\n", error->pipe[i].hblank);
6823 seq_printf(m, " HSYNC: %08x\n", error->pipe[i].hsync);
6824 seq_printf(m, " VTOTAL: %08x\n", error->pipe[i].vtotal);
6825 seq_printf(m, " VBLANK: %08x\n", error->pipe[i].vblank);
6826 seq_printf(m, " VSYNC: %08x\n", error->pipe[i].vsync);
6827
6828 seq_printf(m, "Plane [%d]:\n", i);
6829 seq_printf(m, " CNTR: %08x\n", error->plane[i].control);
6830 seq_printf(m, " STRIDE: %08x\n", error->plane[i].stride);
6831 seq_printf(m, " SIZE: %08x\n", error->plane[i].size);
6832 seq_printf(m, " POS: %08x\n", error->plane[i].pos);
6833 seq_printf(m, " ADDR: %08x\n", error->plane[i].addr);
6834 if (INTEL_INFO(dev)->gen >= 4) {
6835 seq_printf(m, " SURF: %08x\n", error->plane[i].surface);
6836 seq_printf(m, " TILEOFF: %08x\n", error->plane[i].tile_offset);
6837 }
6838
6839 seq_printf(m, "Cursor [%d]:\n", i);
6840 seq_printf(m, " CNTR: %08x\n", error->cursor[i].control);
6841 seq_printf(m, " POS: %08x\n", error->cursor[i].position);
6842 seq_printf(m, " BASE: %08x\n", error->cursor[i].base);
6843 }
6844}
6845#endif