blob: 83ae2c889ff7be098683b080ba477dbae2dccacf [file] [log] [blame]
Jesse Barnes79e53942008-11-07 14:24:08 -08001/*
2 * Copyright © 2006-2007 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21 * DEALINGS IN THE SOFTWARE.
22 *
23 * Authors:
24 * Eric Anholt <eric@anholt.net>
25 */
26
Daniel Vetter618563e2012-04-01 13:38:50 +020027#include <linux/dmi.h>
Jesse Barnesc1c7af62009-09-10 15:28:03 -070028#include <linux/module.h>
29#include <linux/input.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080030#include <linux/i2c.h>
Shaohua Li7662c8b2009-06-26 11:23:55 +080031#include <linux/kernel.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090032#include <linux/slab.h>
Jesse Barnes9cce37f2010-08-13 15:11:26 -070033#include <linux/vgaarb.h>
Wu Fengguange0dac652011-09-05 14:25:34 +080034#include <drm/drm_edid.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080035#include "drmP.h"
36#include "intel_drv.h"
37#include "i915_drm.h"
38#include "i915_drv.h"
Jesse Barnese5510fa2010-07-01 16:48:37 -070039#include "i915_trace.h"
Dave Airlieab2c0672009-12-04 10:55:24 +100040#include "drm_dp_helper.h"
Jesse Barnes79e53942008-11-07 14:24:08 -080041#include "drm_crtc_helper.h"
Keith Packardc0f372b32011-11-16 22:24:52 -080042#include <linux/dma_remapping.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080043
Zhenyu Wang32f9d652009-07-24 01:00:32 +080044#define HAS_eDP (intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP))
45
Akshay Joshi0206e352011-08-16 15:34:10 -040046bool intel_pipe_has_type(struct drm_crtc *crtc, int type);
Daniel Vetter3dec0092010-08-20 21:40:52 +020047static void intel_increase_pllclock(struct drm_crtc *crtc);
Chris Wilson6b383a72010-09-13 13:54:26 +010048static void intel_crtc_update_cursor(struct drm_crtc *crtc, bool on);
Jesse Barnes79e53942008-11-07 14:24:08 -080049
50typedef struct {
Akshay Joshi0206e352011-08-16 15:34:10 -040051 /* given values */
52 int n;
53 int m1, m2;
54 int p1, p2;
55 /* derived values */
56 int dot;
57 int vco;
58 int m;
59 int p;
Jesse Barnes79e53942008-11-07 14:24:08 -080060} intel_clock_t;
61
62typedef struct {
Akshay Joshi0206e352011-08-16 15:34:10 -040063 int min, max;
Jesse Barnes79e53942008-11-07 14:24:08 -080064} intel_range_t;
65
66typedef struct {
Akshay Joshi0206e352011-08-16 15:34:10 -040067 int dot_limit;
68 int p2_slow, p2_fast;
Jesse Barnes79e53942008-11-07 14:24:08 -080069} intel_p2_t;
70
71#define INTEL_P2_NUM 2
Ma Lingd4906092009-03-18 20:13:27 +080072typedef struct intel_limit intel_limit_t;
73struct intel_limit {
Akshay Joshi0206e352011-08-16 15:34:10 -040074 intel_range_t dot, vco, n, m, m1, m2, p, p1;
75 intel_p2_t p2;
76 bool (* find_pll)(const intel_limit_t *, struct drm_crtc *,
Sean Paulcec2f352012-01-10 15:09:36 -080077 int, int, intel_clock_t *, intel_clock_t *);
Ma Lingd4906092009-03-18 20:13:27 +080078};
Jesse Barnes79e53942008-11-07 14:24:08 -080079
Jesse Barnes2377b742010-07-07 14:06:43 -070080/* FDI */
81#define IRONLAKE_FDI_FREQ 2700000 /* in kHz for mode->clock */
82
Ma Lingd4906092009-03-18 20:13:27 +080083static bool
84intel_find_best_PLL(const intel_limit_t *limit, struct drm_crtc *crtc,
Sean Paulcec2f352012-01-10 15:09:36 -080085 int target, int refclk, intel_clock_t *match_clock,
86 intel_clock_t *best_clock);
Ma Lingd4906092009-03-18 20:13:27 +080087static bool
88intel_g4x_find_best_PLL(const intel_limit_t *limit, struct drm_crtc *crtc,
Sean Paulcec2f352012-01-10 15:09:36 -080089 int target, int refclk, intel_clock_t *match_clock,
90 intel_clock_t *best_clock);
Jesse Barnes79e53942008-11-07 14:24:08 -080091
Keith Packarda4fc5ed2009-04-07 16:16:42 -070092static bool
93intel_find_pll_g4x_dp(const intel_limit_t *, struct drm_crtc *crtc,
Sean Paulcec2f352012-01-10 15:09:36 -080094 int target, int refclk, intel_clock_t *match_clock,
95 intel_clock_t *best_clock);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +080096static bool
Adam Jacksonf2b115e2009-12-03 17:14:42 -050097intel_find_pll_ironlake_dp(const intel_limit_t *, struct drm_crtc *crtc,
Sean Paulcec2f352012-01-10 15:09:36 -080098 int target, int refclk, intel_clock_t *match_clock,
99 intel_clock_t *best_clock);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700100
Chris Wilson021357a2010-09-07 20:54:59 +0100101static inline u32 /* units of 100MHz */
102intel_fdi_link_freq(struct drm_device *dev)
103{
Chris Wilson8b99e682010-10-13 09:59:17 +0100104 if (IS_GEN5(dev)) {
105 struct drm_i915_private *dev_priv = dev->dev_private;
106 return (I915_READ(FDI_PLL_BIOS_0) & FDI_PLL_FB_CLOCK_MASK) + 2;
107 } else
108 return 27;
Chris Wilson021357a2010-09-07 20:54:59 +0100109}
110
Keith Packarde4b36692009-06-05 19:22:17 -0700111static const intel_limit_t intel_limits_i8xx_dvo = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400112 .dot = { .min = 25000, .max = 350000 },
113 .vco = { .min = 930000, .max = 1400000 },
114 .n = { .min = 3, .max = 16 },
115 .m = { .min = 96, .max = 140 },
116 .m1 = { .min = 18, .max = 26 },
117 .m2 = { .min = 6, .max = 16 },
118 .p = { .min = 4, .max = 128 },
119 .p1 = { .min = 2, .max = 33 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700120 .p2 = { .dot_limit = 165000,
121 .p2_slow = 4, .p2_fast = 2 },
Ma Lingd4906092009-03-18 20:13:27 +0800122 .find_pll = intel_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700123};
124
125static const intel_limit_t intel_limits_i8xx_lvds = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400126 .dot = { .min = 25000, .max = 350000 },
127 .vco = { .min = 930000, .max = 1400000 },
128 .n = { .min = 3, .max = 16 },
129 .m = { .min = 96, .max = 140 },
130 .m1 = { .min = 18, .max = 26 },
131 .m2 = { .min = 6, .max = 16 },
132 .p = { .min = 4, .max = 128 },
133 .p1 = { .min = 1, .max = 6 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700134 .p2 = { .dot_limit = 165000,
135 .p2_slow = 14, .p2_fast = 7 },
Ma Lingd4906092009-03-18 20:13:27 +0800136 .find_pll = intel_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700137};
Eric Anholt273e27c2011-03-30 13:01:10 -0700138
Keith Packarde4b36692009-06-05 19:22:17 -0700139static const intel_limit_t intel_limits_i9xx_sdvo = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400140 .dot = { .min = 20000, .max = 400000 },
141 .vco = { .min = 1400000, .max = 2800000 },
142 .n = { .min = 1, .max = 6 },
143 .m = { .min = 70, .max = 120 },
144 .m1 = { .min = 10, .max = 22 },
145 .m2 = { .min = 5, .max = 9 },
146 .p = { .min = 5, .max = 80 },
147 .p1 = { .min = 1, .max = 8 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700148 .p2 = { .dot_limit = 200000,
149 .p2_slow = 10, .p2_fast = 5 },
Ma Lingd4906092009-03-18 20:13:27 +0800150 .find_pll = intel_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700151};
152
153static const intel_limit_t intel_limits_i9xx_lvds = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400154 .dot = { .min = 20000, .max = 400000 },
155 .vco = { .min = 1400000, .max = 2800000 },
156 .n = { .min = 1, .max = 6 },
157 .m = { .min = 70, .max = 120 },
158 .m1 = { .min = 10, .max = 22 },
159 .m2 = { .min = 5, .max = 9 },
160 .p = { .min = 7, .max = 98 },
161 .p1 = { .min = 1, .max = 8 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700162 .p2 = { .dot_limit = 112000,
163 .p2_slow = 14, .p2_fast = 7 },
Ma Lingd4906092009-03-18 20:13:27 +0800164 .find_pll = intel_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700165};
166
Eric Anholt273e27c2011-03-30 13:01:10 -0700167
Keith Packarde4b36692009-06-05 19:22:17 -0700168static const intel_limit_t intel_limits_g4x_sdvo = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700169 .dot = { .min = 25000, .max = 270000 },
170 .vco = { .min = 1750000, .max = 3500000},
171 .n = { .min = 1, .max = 4 },
172 .m = { .min = 104, .max = 138 },
173 .m1 = { .min = 17, .max = 23 },
174 .m2 = { .min = 5, .max = 11 },
175 .p = { .min = 10, .max = 30 },
176 .p1 = { .min = 1, .max = 3},
177 .p2 = { .dot_limit = 270000,
178 .p2_slow = 10,
179 .p2_fast = 10
Ma Ling044c7c42009-03-18 20:13:23 +0800180 },
Ma Lingd4906092009-03-18 20:13:27 +0800181 .find_pll = intel_g4x_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700182};
183
184static const intel_limit_t intel_limits_g4x_hdmi = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700185 .dot = { .min = 22000, .max = 400000 },
186 .vco = { .min = 1750000, .max = 3500000},
187 .n = { .min = 1, .max = 4 },
188 .m = { .min = 104, .max = 138 },
189 .m1 = { .min = 16, .max = 23 },
190 .m2 = { .min = 5, .max = 11 },
191 .p = { .min = 5, .max = 80 },
192 .p1 = { .min = 1, .max = 8},
193 .p2 = { .dot_limit = 165000,
194 .p2_slow = 10, .p2_fast = 5 },
Ma Lingd4906092009-03-18 20:13:27 +0800195 .find_pll = intel_g4x_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700196};
197
198static const intel_limit_t intel_limits_g4x_single_channel_lvds = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700199 .dot = { .min = 20000, .max = 115000 },
200 .vco = { .min = 1750000, .max = 3500000 },
201 .n = { .min = 1, .max = 3 },
202 .m = { .min = 104, .max = 138 },
203 .m1 = { .min = 17, .max = 23 },
204 .m2 = { .min = 5, .max = 11 },
205 .p = { .min = 28, .max = 112 },
206 .p1 = { .min = 2, .max = 8 },
207 .p2 = { .dot_limit = 0,
208 .p2_slow = 14, .p2_fast = 14
Ma Ling044c7c42009-03-18 20:13:23 +0800209 },
Ma Lingd4906092009-03-18 20:13:27 +0800210 .find_pll = intel_g4x_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700211};
212
213static const intel_limit_t intel_limits_g4x_dual_channel_lvds = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700214 .dot = { .min = 80000, .max = 224000 },
215 .vco = { .min = 1750000, .max = 3500000 },
216 .n = { .min = 1, .max = 3 },
217 .m = { .min = 104, .max = 138 },
218 .m1 = { .min = 17, .max = 23 },
219 .m2 = { .min = 5, .max = 11 },
220 .p = { .min = 14, .max = 42 },
221 .p1 = { .min = 2, .max = 6 },
222 .p2 = { .dot_limit = 0,
223 .p2_slow = 7, .p2_fast = 7
Ma Ling044c7c42009-03-18 20:13:23 +0800224 },
Ma Lingd4906092009-03-18 20:13:27 +0800225 .find_pll = intel_g4x_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700226};
227
228static const intel_limit_t intel_limits_g4x_display_port = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400229 .dot = { .min = 161670, .max = 227000 },
230 .vco = { .min = 1750000, .max = 3500000},
231 .n = { .min = 1, .max = 2 },
232 .m = { .min = 97, .max = 108 },
233 .m1 = { .min = 0x10, .max = 0x12 },
234 .m2 = { .min = 0x05, .max = 0x06 },
235 .p = { .min = 10, .max = 20 },
236 .p1 = { .min = 1, .max = 2},
237 .p2 = { .dot_limit = 0,
Eric Anholt273e27c2011-03-30 13:01:10 -0700238 .p2_slow = 10, .p2_fast = 10 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400239 .find_pll = intel_find_pll_g4x_dp,
Keith Packarde4b36692009-06-05 19:22:17 -0700240};
241
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500242static const intel_limit_t intel_limits_pineview_sdvo = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400243 .dot = { .min = 20000, .max = 400000},
244 .vco = { .min = 1700000, .max = 3500000 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700245 /* Pineview's Ncounter is a ring counter */
Akshay Joshi0206e352011-08-16 15:34:10 -0400246 .n = { .min = 3, .max = 6 },
247 .m = { .min = 2, .max = 256 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700248 /* Pineview only has one combined m divider, which we treat as m2. */
Akshay Joshi0206e352011-08-16 15:34:10 -0400249 .m1 = { .min = 0, .max = 0 },
250 .m2 = { .min = 0, .max = 254 },
251 .p = { .min = 5, .max = 80 },
252 .p1 = { .min = 1, .max = 8 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700253 .p2 = { .dot_limit = 200000,
254 .p2_slow = 10, .p2_fast = 5 },
Shaohua Li61157072009-04-03 15:24:43 +0800255 .find_pll = intel_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700256};
257
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500258static const intel_limit_t intel_limits_pineview_lvds = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400259 .dot = { .min = 20000, .max = 400000 },
260 .vco = { .min = 1700000, .max = 3500000 },
261 .n = { .min = 3, .max = 6 },
262 .m = { .min = 2, .max = 256 },
263 .m1 = { .min = 0, .max = 0 },
264 .m2 = { .min = 0, .max = 254 },
265 .p = { .min = 7, .max = 112 },
266 .p1 = { .min = 1, .max = 8 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700267 .p2 = { .dot_limit = 112000,
268 .p2_slow = 14, .p2_fast = 14 },
Shaohua Li61157072009-04-03 15:24:43 +0800269 .find_pll = intel_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700270};
271
Eric Anholt273e27c2011-03-30 13:01:10 -0700272/* Ironlake / Sandybridge
273 *
274 * We calculate clock using (register_value + 2) for N/M1/M2, so here
275 * the range value for them is (actual_value - 2).
276 */
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800277static const intel_limit_t intel_limits_ironlake_dac = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700278 .dot = { .min = 25000, .max = 350000 },
279 .vco = { .min = 1760000, .max = 3510000 },
280 .n = { .min = 1, .max = 5 },
281 .m = { .min = 79, .max = 127 },
282 .m1 = { .min = 12, .max = 22 },
283 .m2 = { .min = 5, .max = 9 },
284 .p = { .min = 5, .max = 80 },
285 .p1 = { .min = 1, .max = 8 },
286 .p2 = { .dot_limit = 225000,
287 .p2_slow = 10, .p2_fast = 5 },
Zhao Yakui45476682009-12-31 16:06:04 +0800288 .find_pll = intel_g4x_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700289};
290
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800291static const intel_limit_t intel_limits_ironlake_single_lvds = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700292 .dot = { .min = 25000, .max = 350000 },
293 .vco = { .min = 1760000, .max = 3510000 },
294 .n = { .min = 1, .max = 3 },
295 .m = { .min = 79, .max = 118 },
296 .m1 = { .min = 12, .max = 22 },
297 .m2 = { .min = 5, .max = 9 },
298 .p = { .min = 28, .max = 112 },
299 .p1 = { .min = 2, .max = 8 },
300 .p2 = { .dot_limit = 225000,
301 .p2_slow = 14, .p2_fast = 14 },
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800302 .find_pll = intel_g4x_find_best_PLL,
303};
304
305static const intel_limit_t intel_limits_ironlake_dual_lvds = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700306 .dot = { .min = 25000, .max = 350000 },
307 .vco = { .min = 1760000, .max = 3510000 },
308 .n = { .min = 1, .max = 3 },
309 .m = { .min = 79, .max = 127 },
310 .m1 = { .min = 12, .max = 22 },
311 .m2 = { .min = 5, .max = 9 },
312 .p = { .min = 14, .max = 56 },
313 .p1 = { .min = 2, .max = 8 },
314 .p2 = { .dot_limit = 225000,
315 .p2_slow = 7, .p2_fast = 7 },
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800316 .find_pll = intel_g4x_find_best_PLL,
317};
318
Eric Anholt273e27c2011-03-30 13:01:10 -0700319/* LVDS 100mhz refclk limits. */
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800320static const intel_limit_t intel_limits_ironlake_single_lvds_100m = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700321 .dot = { .min = 25000, .max = 350000 },
322 .vco = { .min = 1760000, .max = 3510000 },
323 .n = { .min = 1, .max = 2 },
324 .m = { .min = 79, .max = 126 },
325 .m1 = { .min = 12, .max = 22 },
326 .m2 = { .min = 5, .max = 9 },
327 .p = { .min = 28, .max = 112 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400328 .p1 = { .min = 2, .max = 8 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700329 .p2 = { .dot_limit = 225000,
330 .p2_slow = 14, .p2_fast = 14 },
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800331 .find_pll = intel_g4x_find_best_PLL,
332};
333
334static const intel_limit_t intel_limits_ironlake_dual_lvds_100m = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700335 .dot = { .min = 25000, .max = 350000 },
336 .vco = { .min = 1760000, .max = 3510000 },
337 .n = { .min = 1, .max = 3 },
338 .m = { .min = 79, .max = 126 },
339 .m1 = { .min = 12, .max = 22 },
340 .m2 = { .min = 5, .max = 9 },
341 .p = { .min = 14, .max = 42 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400342 .p1 = { .min = 2, .max = 6 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700343 .p2 = { .dot_limit = 225000,
344 .p2_slow = 7, .p2_fast = 7 },
Zhao Yakui45476682009-12-31 16:06:04 +0800345 .find_pll = intel_g4x_find_best_PLL,
346};
347
348static const intel_limit_t intel_limits_ironlake_display_port = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400349 .dot = { .min = 25000, .max = 350000 },
350 .vco = { .min = 1760000, .max = 3510000},
351 .n = { .min = 1, .max = 2 },
352 .m = { .min = 81, .max = 90 },
353 .m1 = { .min = 12, .max = 22 },
354 .m2 = { .min = 5, .max = 9 },
355 .p = { .min = 10, .max = 20 },
356 .p1 = { .min = 1, .max = 2},
357 .p2 = { .dot_limit = 0,
Eric Anholt273e27c2011-03-30 13:01:10 -0700358 .p2_slow = 10, .p2_fast = 10 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400359 .find_pll = intel_find_pll_ironlake_dp,
Jesse Barnes79e53942008-11-07 14:24:08 -0800360};
361
Jesse Barnes57f350b2012-03-28 13:39:25 -0700362u32 intel_dpio_read(struct drm_i915_private *dev_priv, int reg)
363{
364 unsigned long flags;
365 u32 val = 0;
366
367 spin_lock_irqsave(&dev_priv->dpio_lock, flags);
368 if (wait_for_atomic_us((I915_READ(DPIO_PKT) & DPIO_BUSY) == 0, 100)) {
369 DRM_ERROR("DPIO idle wait timed out\n");
370 goto out_unlock;
371 }
372
373 I915_WRITE(DPIO_REG, reg);
374 I915_WRITE(DPIO_PKT, DPIO_RID | DPIO_OP_READ | DPIO_PORTID |
375 DPIO_BYTE);
376 if (wait_for_atomic_us((I915_READ(DPIO_PKT) & DPIO_BUSY) == 0, 100)) {
377 DRM_ERROR("DPIO read wait timed out\n");
378 goto out_unlock;
379 }
380 val = I915_READ(DPIO_DATA);
381
382out_unlock:
383 spin_unlock_irqrestore(&dev_priv->dpio_lock, flags);
384 return val;
385}
386
Jesse Barnes57f350b2012-03-28 13:39:25 -0700387static void vlv_init_dpio(struct drm_device *dev)
388{
389 struct drm_i915_private *dev_priv = dev->dev_private;
390
391 /* Reset the DPIO config */
392 I915_WRITE(DPIO_CTL, 0);
393 POSTING_READ(DPIO_CTL);
394 I915_WRITE(DPIO_CTL, 1);
395 POSTING_READ(DPIO_CTL);
396}
397
Daniel Vetter618563e2012-04-01 13:38:50 +0200398static int intel_dual_link_lvds_callback(const struct dmi_system_id *id)
399{
400 DRM_INFO("Forcing lvds to dual link mode on %s\n", id->ident);
401 return 1;
402}
403
404static const struct dmi_system_id intel_dual_link_lvds[] = {
405 {
406 .callback = intel_dual_link_lvds_callback,
407 .ident = "Apple MacBook Pro (Core i5/i7 Series)",
408 .matches = {
409 DMI_MATCH(DMI_SYS_VENDOR, "Apple Inc."),
410 DMI_MATCH(DMI_PRODUCT_NAME, "MacBookPro8,2"),
411 },
412 },
413 { } /* terminating entry */
414};
415
Takashi Iwaib0354382012-03-20 13:07:05 +0100416static bool is_dual_link_lvds(struct drm_i915_private *dev_priv,
417 unsigned int reg)
418{
419 unsigned int val;
420
Takashi Iwai121d5272012-03-20 13:07:06 +0100421 /* use the module option value if specified */
422 if (i915_lvds_channel_mode > 0)
423 return i915_lvds_channel_mode == 2;
424
Daniel Vetter618563e2012-04-01 13:38:50 +0200425 if (dmi_check_system(intel_dual_link_lvds))
426 return true;
427
Takashi Iwaib0354382012-03-20 13:07:05 +0100428 if (dev_priv->lvds_val)
429 val = dev_priv->lvds_val;
430 else {
431 /* BIOS should set the proper LVDS register value at boot, but
432 * in reality, it doesn't set the value when the lid is closed;
433 * we need to check "the value to be set" in VBT when LVDS
434 * register is uninitialized.
435 */
436 val = I915_READ(reg);
437 if (!(val & ~LVDS_DETECTED))
438 val = dev_priv->bios_lvds_val;
439 dev_priv->lvds_val = val;
440 }
441 return (val & LVDS_CLKB_POWER_MASK) == LVDS_CLKB_POWER_UP;
442}
443
Chris Wilson1b894b52010-12-14 20:04:54 +0000444static const intel_limit_t *intel_ironlake_limit(struct drm_crtc *crtc,
445 int refclk)
Zhenyu Wang2c072452009-06-05 15:38:42 +0800446{
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800447 struct drm_device *dev = crtc->dev;
448 struct drm_i915_private *dev_priv = dev->dev_private;
Zhenyu Wang2c072452009-06-05 15:38:42 +0800449 const intel_limit_t *limit;
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800450
451 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
Takashi Iwaib0354382012-03-20 13:07:05 +0100452 if (is_dual_link_lvds(dev_priv, PCH_LVDS)) {
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800453 /* LVDS dual channel */
Chris Wilson1b894b52010-12-14 20:04:54 +0000454 if (refclk == 100000)
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800455 limit = &intel_limits_ironlake_dual_lvds_100m;
456 else
457 limit = &intel_limits_ironlake_dual_lvds;
458 } else {
Chris Wilson1b894b52010-12-14 20:04:54 +0000459 if (refclk == 100000)
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800460 limit = &intel_limits_ironlake_single_lvds_100m;
461 else
462 limit = &intel_limits_ironlake_single_lvds;
463 }
464 } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT) ||
Zhao Yakui45476682009-12-31 16:06:04 +0800465 HAS_eDP)
466 limit = &intel_limits_ironlake_display_port;
Zhenyu Wang2c072452009-06-05 15:38:42 +0800467 else
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800468 limit = &intel_limits_ironlake_dac;
Zhenyu Wang2c072452009-06-05 15:38:42 +0800469
470 return limit;
471}
472
Ma Ling044c7c42009-03-18 20:13:23 +0800473static const intel_limit_t *intel_g4x_limit(struct drm_crtc *crtc)
474{
475 struct drm_device *dev = crtc->dev;
476 struct drm_i915_private *dev_priv = dev->dev_private;
477 const intel_limit_t *limit;
478
479 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
Takashi Iwaib0354382012-03-20 13:07:05 +0100480 if (is_dual_link_lvds(dev_priv, LVDS))
Ma Ling044c7c42009-03-18 20:13:23 +0800481 /* LVDS with dual channel */
Keith Packarde4b36692009-06-05 19:22:17 -0700482 limit = &intel_limits_g4x_dual_channel_lvds;
Ma Ling044c7c42009-03-18 20:13:23 +0800483 else
484 /* LVDS with dual channel */
Keith Packarde4b36692009-06-05 19:22:17 -0700485 limit = &intel_limits_g4x_single_channel_lvds;
Ma Ling044c7c42009-03-18 20:13:23 +0800486 } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI) ||
487 intel_pipe_has_type(crtc, INTEL_OUTPUT_ANALOG)) {
Keith Packarde4b36692009-06-05 19:22:17 -0700488 limit = &intel_limits_g4x_hdmi;
Ma Ling044c7c42009-03-18 20:13:23 +0800489 } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_SDVO)) {
Keith Packarde4b36692009-06-05 19:22:17 -0700490 limit = &intel_limits_g4x_sdvo;
Akshay Joshi0206e352011-08-16 15:34:10 -0400491 } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT)) {
Keith Packarde4b36692009-06-05 19:22:17 -0700492 limit = &intel_limits_g4x_display_port;
Ma Ling044c7c42009-03-18 20:13:23 +0800493 } else /* The option is for other outputs */
Keith Packarde4b36692009-06-05 19:22:17 -0700494 limit = &intel_limits_i9xx_sdvo;
Ma Ling044c7c42009-03-18 20:13:23 +0800495
496 return limit;
497}
498
Chris Wilson1b894b52010-12-14 20:04:54 +0000499static const intel_limit_t *intel_limit(struct drm_crtc *crtc, int refclk)
Jesse Barnes79e53942008-11-07 14:24:08 -0800500{
501 struct drm_device *dev = crtc->dev;
502 const intel_limit_t *limit;
503
Eric Anholtbad720f2009-10-22 16:11:14 -0700504 if (HAS_PCH_SPLIT(dev))
Chris Wilson1b894b52010-12-14 20:04:54 +0000505 limit = intel_ironlake_limit(crtc, refclk);
Zhenyu Wang2c072452009-06-05 15:38:42 +0800506 else if (IS_G4X(dev)) {
Ma Ling044c7c42009-03-18 20:13:23 +0800507 limit = intel_g4x_limit(crtc);
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500508 } else if (IS_PINEVIEW(dev)) {
Shaohua Li21778322009-02-23 15:19:16 +0800509 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS))
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500510 limit = &intel_limits_pineview_lvds;
Shaohua Li21778322009-02-23 15:19:16 +0800511 else
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500512 limit = &intel_limits_pineview_sdvo;
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100513 } else if (!IS_GEN2(dev)) {
514 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS))
515 limit = &intel_limits_i9xx_lvds;
516 else
517 limit = &intel_limits_i9xx_sdvo;
Jesse Barnes79e53942008-11-07 14:24:08 -0800518 } else {
519 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS))
Keith Packarde4b36692009-06-05 19:22:17 -0700520 limit = &intel_limits_i8xx_lvds;
Jesse Barnes79e53942008-11-07 14:24:08 -0800521 else
Keith Packarde4b36692009-06-05 19:22:17 -0700522 limit = &intel_limits_i8xx_dvo;
Jesse Barnes79e53942008-11-07 14:24:08 -0800523 }
524 return limit;
525}
526
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500527/* m1 is reserved as 0 in Pineview, n is a ring counter */
528static void pineview_clock(int refclk, intel_clock_t *clock)
Jesse Barnes79e53942008-11-07 14:24:08 -0800529{
Shaohua Li21778322009-02-23 15:19:16 +0800530 clock->m = clock->m2 + 2;
531 clock->p = clock->p1 * clock->p2;
532 clock->vco = refclk * clock->m / clock->n;
533 clock->dot = clock->vco / clock->p;
534}
535
536static void intel_clock(struct drm_device *dev, int refclk, intel_clock_t *clock)
537{
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500538 if (IS_PINEVIEW(dev)) {
539 pineview_clock(refclk, clock);
Shaohua Li21778322009-02-23 15:19:16 +0800540 return;
541 }
Jesse Barnes79e53942008-11-07 14:24:08 -0800542 clock->m = 5 * (clock->m1 + 2) + (clock->m2 + 2);
543 clock->p = clock->p1 * clock->p2;
544 clock->vco = refclk * clock->m / (clock->n + 2);
545 clock->dot = clock->vco / clock->p;
546}
547
Jesse Barnes79e53942008-11-07 14:24:08 -0800548/**
549 * Returns whether any output on the specified pipe is of the specified type
550 */
Chris Wilson4ef69c72010-09-09 15:14:28 +0100551bool intel_pipe_has_type(struct drm_crtc *crtc, int type)
Jesse Barnes79e53942008-11-07 14:24:08 -0800552{
Chris Wilson4ef69c72010-09-09 15:14:28 +0100553 struct drm_device *dev = crtc->dev;
554 struct drm_mode_config *mode_config = &dev->mode_config;
555 struct intel_encoder *encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -0800556
Chris Wilson4ef69c72010-09-09 15:14:28 +0100557 list_for_each_entry(encoder, &mode_config->encoder_list, base.head)
558 if (encoder->base.crtc == crtc && encoder->type == type)
559 return true;
560
561 return false;
Jesse Barnes79e53942008-11-07 14:24:08 -0800562}
563
Jesse Barnes7c04d1d2009-02-23 15:36:40 -0800564#define INTELPllInvalid(s) do { /* DRM_DEBUG(s); */ return false; } while (0)
Jesse Barnes79e53942008-11-07 14:24:08 -0800565/**
566 * Returns whether the given set of divisors are valid for a given refclk with
567 * the given connectors.
568 */
569
Chris Wilson1b894b52010-12-14 20:04:54 +0000570static bool intel_PLL_is_valid(struct drm_device *dev,
571 const intel_limit_t *limit,
572 const intel_clock_t *clock)
Jesse Barnes79e53942008-11-07 14:24:08 -0800573{
Jesse Barnes79e53942008-11-07 14:24:08 -0800574 if (clock->p1 < limit->p1.min || limit->p1.max < clock->p1)
Akshay Joshi0206e352011-08-16 15:34:10 -0400575 INTELPllInvalid("p1 out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800576 if (clock->p < limit->p.min || limit->p.max < clock->p)
Akshay Joshi0206e352011-08-16 15:34:10 -0400577 INTELPllInvalid("p out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800578 if (clock->m2 < limit->m2.min || limit->m2.max < clock->m2)
Akshay Joshi0206e352011-08-16 15:34:10 -0400579 INTELPllInvalid("m2 out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800580 if (clock->m1 < limit->m1.min || limit->m1.max < clock->m1)
Akshay Joshi0206e352011-08-16 15:34:10 -0400581 INTELPllInvalid("m1 out of range\n");
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500582 if (clock->m1 <= clock->m2 && !IS_PINEVIEW(dev))
Akshay Joshi0206e352011-08-16 15:34:10 -0400583 INTELPllInvalid("m1 <= m2\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800584 if (clock->m < limit->m.min || limit->m.max < clock->m)
Akshay Joshi0206e352011-08-16 15:34:10 -0400585 INTELPllInvalid("m out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800586 if (clock->n < limit->n.min || limit->n.max < clock->n)
Akshay Joshi0206e352011-08-16 15:34:10 -0400587 INTELPllInvalid("n out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800588 if (clock->vco < limit->vco.min || limit->vco.max < clock->vco)
Akshay Joshi0206e352011-08-16 15:34:10 -0400589 INTELPllInvalid("vco out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800590 /* XXX: We may need to be checking "Dot clock" depending on the multiplier,
591 * connector, etc., rather than just a single range.
592 */
593 if (clock->dot < limit->dot.min || limit->dot.max < clock->dot)
Akshay Joshi0206e352011-08-16 15:34:10 -0400594 INTELPllInvalid("dot out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800595
596 return true;
597}
598
Ma Lingd4906092009-03-18 20:13:27 +0800599static bool
600intel_find_best_PLL(const intel_limit_t *limit, struct drm_crtc *crtc,
Sean Paulcec2f352012-01-10 15:09:36 -0800601 int target, int refclk, intel_clock_t *match_clock,
602 intel_clock_t *best_clock)
Ma Lingd4906092009-03-18 20:13:27 +0800603
Jesse Barnes79e53942008-11-07 14:24:08 -0800604{
605 struct drm_device *dev = crtc->dev;
606 struct drm_i915_private *dev_priv = dev->dev_private;
607 intel_clock_t clock;
Jesse Barnes79e53942008-11-07 14:24:08 -0800608 int err = target;
609
Bruno Prémontbc5e5712009-08-08 13:01:17 +0200610 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) &&
Florian Mickler832cc282009-07-13 18:40:32 +0800611 (I915_READ(LVDS)) != 0) {
Jesse Barnes79e53942008-11-07 14:24:08 -0800612 /*
613 * For LVDS, if the panel is on, just rely on its current
614 * settings for dual-channel. We haven't figured out how to
615 * reliably set up different single/dual channel state, if we
616 * even can.
617 */
Takashi Iwaib0354382012-03-20 13:07:05 +0100618 if (is_dual_link_lvds(dev_priv, LVDS))
Jesse Barnes79e53942008-11-07 14:24:08 -0800619 clock.p2 = limit->p2.p2_fast;
620 else
621 clock.p2 = limit->p2.p2_slow;
622 } else {
623 if (target < limit->p2.dot_limit)
624 clock.p2 = limit->p2.p2_slow;
625 else
626 clock.p2 = limit->p2.p2_fast;
627 }
628
Akshay Joshi0206e352011-08-16 15:34:10 -0400629 memset(best_clock, 0, sizeof(*best_clock));
Jesse Barnes79e53942008-11-07 14:24:08 -0800630
Zhao Yakui42158662009-11-20 11:24:18 +0800631 for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max;
632 clock.m1++) {
633 for (clock.m2 = limit->m2.min;
634 clock.m2 <= limit->m2.max; clock.m2++) {
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500635 /* m1 is always 0 in Pineview */
636 if (clock.m2 >= clock.m1 && !IS_PINEVIEW(dev))
Zhao Yakui42158662009-11-20 11:24:18 +0800637 break;
638 for (clock.n = limit->n.min;
639 clock.n <= limit->n.max; clock.n++) {
640 for (clock.p1 = limit->p1.min;
641 clock.p1 <= limit->p1.max; clock.p1++) {
Jesse Barnes79e53942008-11-07 14:24:08 -0800642 int this_err;
643
Shaohua Li21778322009-02-23 15:19:16 +0800644 intel_clock(dev, refclk, &clock);
Chris Wilson1b894b52010-12-14 20:04:54 +0000645 if (!intel_PLL_is_valid(dev, limit,
646 &clock))
Jesse Barnes79e53942008-11-07 14:24:08 -0800647 continue;
Sean Paulcec2f352012-01-10 15:09:36 -0800648 if (match_clock &&
649 clock.p != match_clock->p)
650 continue;
Jesse Barnes79e53942008-11-07 14:24:08 -0800651
652 this_err = abs(clock.dot - target);
653 if (this_err < err) {
654 *best_clock = clock;
655 err = this_err;
656 }
657 }
658 }
659 }
660 }
661
662 return (err != target);
663}
664
Ma Lingd4906092009-03-18 20:13:27 +0800665static bool
666intel_g4x_find_best_PLL(const intel_limit_t *limit, struct drm_crtc *crtc,
Sean Paulcec2f352012-01-10 15:09:36 -0800667 int target, int refclk, intel_clock_t *match_clock,
668 intel_clock_t *best_clock)
Ma Lingd4906092009-03-18 20:13:27 +0800669{
670 struct drm_device *dev = crtc->dev;
671 struct drm_i915_private *dev_priv = dev->dev_private;
672 intel_clock_t clock;
673 int max_n;
674 bool found;
Adam Jackson6ba770d2010-07-02 16:43:30 -0400675 /* approximately equals target * 0.00585 */
676 int err_most = (target >> 8) + (target >> 9);
Ma Lingd4906092009-03-18 20:13:27 +0800677 found = false;
678
679 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
Zhao Yakui45476682009-12-31 16:06:04 +0800680 int lvds_reg;
681
Eric Anholtc619eed2010-01-28 16:45:52 -0800682 if (HAS_PCH_SPLIT(dev))
Zhao Yakui45476682009-12-31 16:06:04 +0800683 lvds_reg = PCH_LVDS;
684 else
685 lvds_reg = LVDS;
686 if ((I915_READ(lvds_reg) & LVDS_CLKB_POWER_MASK) ==
Ma Lingd4906092009-03-18 20:13:27 +0800687 LVDS_CLKB_POWER_UP)
688 clock.p2 = limit->p2.p2_fast;
689 else
690 clock.p2 = limit->p2.p2_slow;
691 } else {
692 if (target < limit->p2.dot_limit)
693 clock.p2 = limit->p2.p2_slow;
694 else
695 clock.p2 = limit->p2.p2_fast;
696 }
697
698 memset(best_clock, 0, sizeof(*best_clock));
699 max_n = limit->n.max;
Gilles Espinassef77f13e2010-03-29 15:41:47 +0200700 /* based on hardware requirement, prefer smaller n to precision */
Ma Lingd4906092009-03-18 20:13:27 +0800701 for (clock.n = limit->n.min; clock.n <= max_n; clock.n++) {
Gilles Espinassef77f13e2010-03-29 15:41:47 +0200702 /* based on hardware requirement, prefere larger m1,m2 */
Ma Lingd4906092009-03-18 20:13:27 +0800703 for (clock.m1 = limit->m1.max;
704 clock.m1 >= limit->m1.min; clock.m1--) {
705 for (clock.m2 = limit->m2.max;
706 clock.m2 >= limit->m2.min; clock.m2--) {
707 for (clock.p1 = limit->p1.max;
708 clock.p1 >= limit->p1.min; clock.p1--) {
709 int this_err;
710
Shaohua Li21778322009-02-23 15:19:16 +0800711 intel_clock(dev, refclk, &clock);
Chris Wilson1b894b52010-12-14 20:04:54 +0000712 if (!intel_PLL_is_valid(dev, limit,
713 &clock))
Ma Lingd4906092009-03-18 20:13:27 +0800714 continue;
Sean Paulcec2f352012-01-10 15:09:36 -0800715 if (match_clock &&
716 clock.p != match_clock->p)
717 continue;
Chris Wilson1b894b52010-12-14 20:04:54 +0000718
719 this_err = abs(clock.dot - target);
Ma Lingd4906092009-03-18 20:13:27 +0800720 if (this_err < err_most) {
721 *best_clock = clock;
722 err_most = this_err;
723 max_n = clock.n;
724 found = true;
725 }
726 }
727 }
728 }
729 }
Zhenyu Wang2c072452009-06-05 15:38:42 +0800730 return found;
731}
Ma Lingd4906092009-03-18 20:13:27 +0800732
Zhenyu Wang2c072452009-06-05 15:38:42 +0800733static bool
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500734intel_find_pll_ironlake_dp(const intel_limit_t *limit, struct drm_crtc *crtc,
Sean Paulcec2f352012-01-10 15:09:36 -0800735 int target, int refclk, intel_clock_t *match_clock,
736 intel_clock_t *best_clock)
Zhenyu Wang5eb08b62009-07-24 01:00:31 +0800737{
738 struct drm_device *dev = crtc->dev;
739 intel_clock_t clock;
Zhao Yakui45476682009-12-31 16:06:04 +0800740
Zhenyu Wang5eb08b62009-07-24 01:00:31 +0800741 if (target < 200000) {
742 clock.n = 1;
743 clock.p1 = 2;
744 clock.p2 = 10;
745 clock.m1 = 12;
746 clock.m2 = 9;
747 } else {
748 clock.n = 2;
749 clock.p1 = 1;
750 clock.p2 = 10;
751 clock.m1 = 14;
752 clock.m2 = 8;
753 }
754 intel_clock(dev, refclk, &clock);
755 memcpy(best_clock, &clock, sizeof(intel_clock_t));
756 return true;
757}
758
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700759/* DisplayPort has only two frequencies, 162MHz and 270MHz */
760static bool
761intel_find_pll_g4x_dp(const intel_limit_t *limit, struct drm_crtc *crtc,
Sean Paulcec2f352012-01-10 15:09:36 -0800762 int target, int refclk, intel_clock_t *match_clock,
763 intel_clock_t *best_clock)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700764{
Chris Wilson5eddb702010-09-11 13:48:45 +0100765 intel_clock_t clock;
766 if (target < 200000) {
767 clock.p1 = 2;
768 clock.p2 = 10;
769 clock.n = 2;
770 clock.m1 = 23;
771 clock.m2 = 8;
772 } else {
773 clock.p1 = 1;
774 clock.p2 = 10;
775 clock.n = 1;
776 clock.m1 = 14;
777 clock.m2 = 2;
778 }
779 clock.m = 5 * (clock.m1 + 2) + (clock.m2 + 2);
780 clock.p = (clock.p1 * clock.p2);
781 clock.dot = 96000 * clock.m / (clock.n + 2) / clock.p;
782 clock.vco = 0;
783 memcpy(best_clock, &clock, sizeof(intel_clock_t));
784 return true;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700785}
786
Paulo Zanonia928d532012-05-04 17:18:15 -0300787static void ironlake_wait_for_vblank(struct drm_device *dev, int pipe)
788{
789 struct drm_i915_private *dev_priv = dev->dev_private;
790 u32 frame, frame_reg = PIPEFRAME(pipe);
791
792 frame = I915_READ(frame_reg);
793
794 if (wait_for(I915_READ_NOTRACE(frame_reg) != frame, 50))
795 DRM_DEBUG_KMS("vblank wait timed out\n");
796}
797
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700798/**
799 * intel_wait_for_vblank - wait for vblank on a given pipe
800 * @dev: drm device
801 * @pipe: pipe to wait for
802 *
803 * Wait for vblank to occur on a given pipe. Needed for various bits of
804 * mode setting code.
805 */
806void intel_wait_for_vblank(struct drm_device *dev, int pipe)
Jesse Barnes79e53942008-11-07 14:24:08 -0800807{
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700808 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800809 int pipestat_reg = PIPESTAT(pipe);
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700810
Paulo Zanonia928d532012-05-04 17:18:15 -0300811 if (INTEL_INFO(dev)->gen >= 5) {
812 ironlake_wait_for_vblank(dev, pipe);
813 return;
814 }
815
Chris Wilson300387c2010-09-05 20:25:43 +0100816 /* Clear existing vblank status. Note this will clear any other
817 * sticky status fields as well.
818 *
819 * This races with i915_driver_irq_handler() with the result
820 * that either function could miss a vblank event. Here it is not
821 * fatal, as we will either wait upon the next vblank interrupt or
822 * timeout. Generally speaking intel_wait_for_vblank() is only
823 * called during modeset at which time the GPU should be idle and
824 * should *not* be performing page flips and thus not waiting on
825 * vblanks...
826 * Currently, the result of us stealing a vblank from the irq
827 * handler is that a single frame will be skipped during swapbuffers.
828 */
829 I915_WRITE(pipestat_reg,
830 I915_READ(pipestat_reg) | PIPE_VBLANK_INTERRUPT_STATUS);
831
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700832 /* Wait for vblank interrupt bit to set */
Chris Wilson481b6af2010-08-23 17:43:35 +0100833 if (wait_for(I915_READ(pipestat_reg) &
834 PIPE_VBLANK_INTERRUPT_STATUS,
835 50))
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700836 DRM_DEBUG_KMS("vblank wait timed out\n");
837}
838
Keith Packardab7ad7f2010-10-03 00:33:06 -0700839/*
840 * intel_wait_for_pipe_off - wait for pipe to turn off
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700841 * @dev: drm device
842 * @pipe: pipe to wait for
843 *
844 * After disabling a pipe, we can't wait for vblank in the usual way,
845 * spinning on the vblank interrupt status bit, since we won't actually
846 * see an interrupt when the pipe is disabled.
847 *
Keith Packardab7ad7f2010-10-03 00:33:06 -0700848 * On Gen4 and above:
849 * wait for the pipe register state bit to turn off
850 *
851 * Otherwise:
852 * wait for the display line value to settle (it usually
853 * ends up stopping at the start of the next frame).
Chris Wilson58e10eb2010-10-03 10:56:11 +0100854 *
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700855 */
Chris Wilson58e10eb2010-10-03 10:56:11 +0100856void intel_wait_for_pipe_off(struct drm_device *dev, int pipe)
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700857{
858 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700859
Keith Packardab7ad7f2010-10-03 00:33:06 -0700860 if (INTEL_INFO(dev)->gen >= 4) {
Chris Wilson58e10eb2010-10-03 10:56:11 +0100861 int reg = PIPECONF(pipe);
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700862
Keith Packardab7ad7f2010-10-03 00:33:06 -0700863 /* Wait for the Pipe State to go off */
Chris Wilson58e10eb2010-10-03 10:56:11 +0100864 if (wait_for((I915_READ(reg) & I965_PIPECONF_ACTIVE) == 0,
865 100))
Keith Packardab7ad7f2010-10-03 00:33:06 -0700866 DRM_DEBUG_KMS("pipe_off wait timed out\n");
867 } else {
Paulo Zanoni837ba002012-05-04 17:18:14 -0300868 u32 last_line, line_mask;
Chris Wilson58e10eb2010-10-03 10:56:11 +0100869 int reg = PIPEDSL(pipe);
Keith Packardab7ad7f2010-10-03 00:33:06 -0700870 unsigned long timeout = jiffies + msecs_to_jiffies(100);
871
Paulo Zanoni837ba002012-05-04 17:18:14 -0300872 if (IS_GEN2(dev))
873 line_mask = DSL_LINEMASK_GEN2;
874 else
875 line_mask = DSL_LINEMASK_GEN3;
876
Keith Packardab7ad7f2010-10-03 00:33:06 -0700877 /* Wait for the display line to settle */
878 do {
Paulo Zanoni837ba002012-05-04 17:18:14 -0300879 last_line = I915_READ(reg) & line_mask;
Keith Packardab7ad7f2010-10-03 00:33:06 -0700880 mdelay(5);
Paulo Zanoni837ba002012-05-04 17:18:14 -0300881 } while (((I915_READ(reg) & line_mask) != last_line) &&
Keith Packardab7ad7f2010-10-03 00:33:06 -0700882 time_after(timeout, jiffies));
883 if (time_after(jiffies, timeout))
884 DRM_DEBUG_KMS("pipe_off wait timed out\n");
885 }
Jesse Barnes79e53942008-11-07 14:24:08 -0800886}
887
Jesse Barnesb24e7172011-01-04 15:09:30 -0800888static const char *state_string(bool enabled)
889{
890 return enabled ? "on" : "off";
891}
892
893/* Only for pre-ILK configs */
894static void assert_pll(struct drm_i915_private *dev_priv,
895 enum pipe pipe, bool state)
896{
897 int reg;
898 u32 val;
899 bool cur_state;
900
901 reg = DPLL(pipe);
902 val = I915_READ(reg);
903 cur_state = !!(val & DPLL_VCO_ENABLE);
904 WARN(cur_state != state,
905 "PLL state assertion failure (expected %s, current %s)\n",
906 state_string(state), state_string(cur_state));
907}
908#define assert_pll_enabled(d, p) assert_pll(d, p, true)
909#define assert_pll_disabled(d, p) assert_pll(d, p, false)
910
Jesse Barnes040484a2011-01-03 12:14:26 -0800911/* For ILK+ */
912static void assert_pch_pll(struct drm_i915_private *dev_priv,
Jesse Barnesee7b9f92012-04-20 17:11:53 +0100913 struct intel_crtc *intel_crtc, bool state)
Jesse Barnes040484a2011-01-03 12:14:26 -0800914{
915 int reg;
916 u32 val;
917 bool cur_state;
918
Eugeni Dodonov9d82aa12012-05-09 15:37:17 -0300919 if (HAS_PCH_LPT(dev_priv->dev)) {
920 DRM_DEBUG_DRIVER("LPT detected: skipping PCH PLL test\n");
921 return;
922 }
923
Jesse Barnesee7b9f92012-04-20 17:11:53 +0100924 if (!intel_crtc->pch_pll) {
925 WARN(1, "asserting PCH PLL enabled with no PLL\n");
926 return;
927 }
928
Jesse Barnesd3ccbe82011-10-12 09:27:42 -0700929 if (HAS_PCH_CPT(dev_priv->dev)) {
930 u32 pch_dpll;
931
932 pch_dpll = I915_READ(PCH_DPLL_SEL);
933
934 /* Make sure the selected PLL is enabled to the transcoder */
Jesse Barnesee7b9f92012-04-20 17:11:53 +0100935 WARN(!((pch_dpll >> (4 * intel_crtc->pipe)) & 8),
936 "transcoder %d PLL not enabled\n", intel_crtc->pipe);
Jesse Barnesd3ccbe82011-10-12 09:27:42 -0700937 }
938
Jesse Barnesee7b9f92012-04-20 17:11:53 +0100939 reg = intel_crtc->pch_pll->pll_reg;
Jesse Barnes040484a2011-01-03 12:14:26 -0800940 val = I915_READ(reg);
941 cur_state = !!(val & DPLL_VCO_ENABLE);
942 WARN(cur_state != state,
943 "PCH PLL state assertion failure (expected %s, current %s)\n",
944 state_string(state), state_string(cur_state));
945}
946#define assert_pch_pll_enabled(d, p) assert_pch_pll(d, p, true)
947#define assert_pch_pll_disabled(d, p) assert_pch_pll(d, p, false)
948
949static void assert_fdi_tx(struct drm_i915_private *dev_priv,
950 enum pipe pipe, bool state)
951{
952 int reg;
953 u32 val;
954 bool cur_state;
955
Eugeni Dodonovbf507ef2012-05-09 15:37:18 -0300956 if (IS_HASWELL(dev_priv->dev)) {
957 /* On Haswell, DDI is used instead of FDI_TX_CTL */
958 reg = DDI_FUNC_CTL(pipe);
959 val = I915_READ(reg);
960 cur_state = !!(val & PIPE_DDI_FUNC_ENABLE);
961 } else {
962 reg = FDI_TX_CTL(pipe);
963 val = I915_READ(reg);
964 cur_state = !!(val & FDI_TX_ENABLE);
965 }
Jesse Barnes040484a2011-01-03 12:14:26 -0800966 WARN(cur_state != state,
967 "FDI TX state assertion failure (expected %s, current %s)\n",
968 state_string(state), state_string(cur_state));
969}
970#define assert_fdi_tx_enabled(d, p) assert_fdi_tx(d, p, true)
971#define assert_fdi_tx_disabled(d, p) assert_fdi_tx(d, p, false)
972
973static void assert_fdi_rx(struct drm_i915_private *dev_priv,
974 enum pipe pipe, bool state)
975{
976 int reg;
977 u32 val;
978 bool cur_state;
979
Eugeni Dodonov59c859d2012-05-09 15:37:19 -0300980 if (IS_HASWELL(dev_priv->dev) && pipe > 0) {
981 DRM_ERROR("Attempting to enable FDI_RX on Haswell pipe > 0\n");
982 return;
983 } else {
984 reg = FDI_RX_CTL(pipe);
985 val = I915_READ(reg);
986 cur_state = !!(val & FDI_RX_ENABLE);
987 }
Jesse Barnes040484a2011-01-03 12:14:26 -0800988 WARN(cur_state != state,
989 "FDI RX state assertion failure (expected %s, current %s)\n",
990 state_string(state), state_string(cur_state));
991}
992#define assert_fdi_rx_enabled(d, p) assert_fdi_rx(d, p, true)
993#define assert_fdi_rx_disabled(d, p) assert_fdi_rx(d, p, false)
994
995static void assert_fdi_tx_pll_enabled(struct drm_i915_private *dev_priv,
996 enum pipe pipe)
997{
998 int reg;
999 u32 val;
1000
1001 /* ILK FDI PLL is always enabled */
1002 if (dev_priv->info->gen == 5)
1003 return;
1004
Eugeni Dodonovbf507ef2012-05-09 15:37:18 -03001005 /* On Haswell, DDI ports are responsible for the FDI PLL setup */
1006 if (IS_HASWELL(dev_priv->dev))
1007 return;
1008
Jesse Barnes040484a2011-01-03 12:14:26 -08001009 reg = FDI_TX_CTL(pipe);
1010 val = I915_READ(reg);
1011 WARN(!(val & FDI_TX_PLL_ENABLE), "FDI TX PLL assertion failure, should be active but is disabled\n");
1012}
1013
1014static void assert_fdi_rx_pll_enabled(struct drm_i915_private *dev_priv,
1015 enum pipe pipe)
1016{
1017 int reg;
1018 u32 val;
1019
Eugeni Dodonov59c859d2012-05-09 15:37:19 -03001020 if (IS_HASWELL(dev_priv->dev) && pipe > 0) {
1021 DRM_ERROR("Attempting to enable FDI on Haswell with pipe > 0\n");
1022 return;
1023 }
Jesse Barnes040484a2011-01-03 12:14:26 -08001024 reg = FDI_RX_CTL(pipe);
1025 val = I915_READ(reg);
1026 WARN(!(val & FDI_RX_PLL_ENABLE), "FDI RX PLL assertion failure, should be active but is disabled\n");
1027}
1028
Jesse Barnesea0760c2011-01-04 15:09:32 -08001029static void assert_panel_unlocked(struct drm_i915_private *dev_priv,
1030 enum pipe pipe)
1031{
1032 int pp_reg, lvds_reg;
1033 u32 val;
1034 enum pipe panel_pipe = PIPE_A;
Thomas Jarosch0de3b482011-08-25 15:37:45 +02001035 bool locked = true;
Jesse Barnesea0760c2011-01-04 15:09:32 -08001036
1037 if (HAS_PCH_SPLIT(dev_priv->dev)) {
1038 pp_reg = PCH_PP_CONTROL;
1039 lvds_reg = PCH_LVDS;
1040 } else {
1041 pp_reg = PP_CONTROL;
1042 lvds_reg = LVDS;
1043 }
1044
1045 val = I915_READ(pp_reg);
1046 if (!(val & PANEL_POWER_ON) ||
1047 ((val & PANEL_UNLOCK_REGS) == PANEL_UNLOCK_REGS))
1048 locked = false;
1049
1050 if (I915_READ(lvds_reg) & LVDS_PIPEB_SELECT)
1051 panel_pipe = PIPE_B;
1052
1053 WARN(panel_pipe == pipe && locked,
1054 "panel assertion failure, pipe %c regs locked\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001055 pipe_name(pipe));
Jesse Barnesea0760c2011-01-04 15:09:32 -08001056}
1057
Jesse Barnesb840d907f2011-12-13 13:19:38 -08001058void assert_pipe(struct drm_i915_private *dev_priv,
1059 enum pipe pipe, bool state)
Jesse Barnesb24e7172011-01-04 15:09:30 -08001060{
1061 int reg;
1062 u32 val;
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001063 bool cur_state;
Jesse Barnesb24e7172011-01-04 15:09:30 -08001064
Daniel Vetter8e636782012-01-22 01:36:48 +01001065 /* if we need the pipe A quirk it must be always on */
1066 if (pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE)
1067 state = true;
1068
Jesse Barnesb24e7172011-01-04 15:09:30 -08001069 reg = PIPECONF(pipe);
1070 val = I915_READ(reg);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001071 cur_state = !!(val & PIPECONF_ENABLE);
1072 WARN(cur_state != state,
1073 "pipe %c assertion failure (expected %s, current %s)\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001074 pipe_name(pipe), state_string(state), state_string(cur_state));
Jesse Barnesb24e7172011-01-04 15:09:30 -08001075}
1076
Chris Wilson931872f2012-01-16 23:01:13 +00001077static void assert_plane(struct drm_i915_private *dev_priv,
1078 enum plane plane, bool state)
Jesse Barnesb24e7172011-01-04 15:09:30 -08001079{
1080 int reg;
1081 u32 val;
Chris Wilson931872f2012-01-16 23:01:13 +00001082 bool cur_state;
Jesse Barnesb24e7172011-01-04 15:09:30 -08001083
1084 reg = DSPCNTR(plane);
1085 val = I915_READ(reg);
Chris Wilson931872f2012-01-16 23:01:13 +00001086 cur_state = !!(val & DISPLAY_PLANE_ENABLE);
1087 WARN(cur_state != state,
1088 "plane %c assertion failure (expected %s, current %s)\n",
1089 plane_name(plane), state_string(state), state_string(cur_state));
Jesse Barnesb24e7172011-01-04 15:09:30 -08001090}
1091
Chris Wilson931872f2012-01-16 23:01:13 +00001092#define assert_plane_enabled(d, p) assert_plane(d, p, true)
1093#define assert_plane_disabled(d, p) assert_plane(d, p, false)
1094
Jesse Barnesb24e7172011-01-04 15:09:30 -08001095static void assert_planes_disabled(struct drm_i915_private *dev_priv,
1096 enum pipe pipe)
1097{
1098 int reg, i;
1099 u32 val;
1100 int cur_pipe;
1101
Jesse Barnes19ec1352011-02-02 12:28:02 -08001102 /* Planes are fixed to pipes on ILK+ */
Adam Jackson28c057942011-10-07 14:38:42 -04001103 if (HAS_PCH_SPLIT(dev_priv->dev)) {
1104 reg = DSPCNTR(pipe);
1105 val = I915_READ(reg);
1106 WARN((val & DISPLAY_PLANE_ENABLE),
1107 "plane %c assertion failure, should be disabled but not\n",
1108 plane_name(pipe));
Jesse Barnes19ec1352011-02-02 12:28:02 -08001109 return;
Adam Jackson28c057942011-10-07 14:38:42 -04001110 }
Jesse Barnes19ec1352011-02-02 12:28:02 -08001111
Jesse Barnesb24e7172011-01-04 15:09:30 -08001112 /* Need to check both planes against the pipe */
1113 for (i = 0; i < 2; i++) {
1114 reg = DSPCNTR(i);
1115 val = I915_READ(reg);
1116 cur_pipe = (val & DISPPLANE_SEL_PIPE_MASK) >>
1117 DISPPLANE_SEL_PIPE_SHIFT;
1118 WARN((val & DISPLAY_PLANE_ENABLE) && pipe == cur_pipe,
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001119 "plane %c assertion failure, should be off on pipe %c but is still active\n",
1120 plane_name(i), pipe_name(pipe));
Jesse Barnesb24e7172011-01-04 15:09:30 -08001121 }
1122}
1123
Jesse Barnes92f25842011-01-04 15:09:34 -08001124static void assert_pch_refclk_enabled(struct drm_i915_private *dev_priv)
1125{
1126 u32 val;
1127 bool enabled;
1128
Eugeni Dodonov9d82aa12012-05-09 15:37:17 -03001129 if (HAS_PCH_LPT(dev_priv->dev)) {
1130 DRM_DEBUG_DRIVER("LPT does not has PCH refclk, skipping check\n");
1131 return;
1132 }
1133
Jesse Barnes92f25842011-01-04 15:09:34 -08001134 val = I915_READ(PCH_DREF_CONTROL);
1135 enabled = !!(val & (DREF_SSC_SOURCE_MASK | DREF_NONSPREAD_SOURCE_MASK |
1136 DREF_SUPERSPREAD_SOURCE_MASK));
1137 WARN(!enabled, "PCH refclk assertion failure, should be active but is disabled\n");
1138}
1139
1140static void assert_transcoder_disabled(struct drm_i915_private *dev_priv,
1141 enum pipe pipe)
1142{
1143 int reg;
1144 u32 val;
1145 bool enabled;
1146
1147 reg = TRANSCONF(pipe);
1148 val = I915_READ(reg);
1149 enabled = !!(val & TRANS_ENABLE);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001150 WARN(enabled,
1151 "transcoder assertion failed, should be off on pipe %c but is still active\n",
1152 pipe_name(pipe));
Jesse Barnes92f25842011-01-04 15:09:34 -08001153}
1154
Keith Packard4e634382011-08-06 10:39:45 -07001155static bool dp_pipe_enabled(struct drm_i915_private *dev_priv,
1156 enum pipe pipe, u32 port_sel, u32 val)
Keith Packardf0575e92011-07-25 22:12:43 -07001157{
1158 if ((val & DP_PORT_EN) == 0)
1159 return false;
1160
1161 if (HAS_PCH_CPT(dev_priv->dev)) {
1162 u32 trans_dp_ctl_reg = TRANS_DP_CTL(pipe);
1163 u32 trans_dp_ctl = I915_READ(trans_dp_ctl_reg);
1164 if ((trans_dp_ctl & TRANS_DP_PORT_SEL_MASK) != port_sel)
1165 return false;
1166 } else {
1167 if ((val & DP_PIPE_MASK) != (pipe << 30))
1168 return false;
1169 }
1170 return true;
1171}
1172
Keith Packard1519b992011-08-06 10:35:34 -07001173static bool hdmi_pipe_enabled(struct drm_i915_private *dev_priv,
1174 enum pipe pipe, u32 val)
1175{
1176 if ((val & PORT_ENABLE) == 0)
1177 return false;
1178
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 & TRANSCODER_MASK) != TRANSCODER(pipe))
1184 return false;
1185 }
1186 return true;
1187}
1188
1189static bool lvds_pipe_enabled(struct drm_i915_private *dev_priv,
1190 enum pipe pipe, u32 val)
1191{
1192 if ((val & LVDS_PORT_EN) == 0)
1193 return false;
1194
1195 if (HAS_PCH_CPT(dev_priv->dev)) {
1196 if ((val & PORT_TRANS_SEL_MASK) != PORT_TRANS_SEL_CPT(pipe))
1197 return false;
1198 } else {
1199 if ((val & LVDS_PIPE_MASK) != LVDS_PIPE(pipe))
1200 return false;
1201 }
1202 return true;
1203}
1204
1205static bool adpa_pipe_enabled(struct drm_i915_private *dev_priv,
1206 enum pipe pipe, u32 val)
1207{
1208 if ((val & ADPA_DAC_ENABLE) == 0)
1209 return false;
1210 if (HAS_PCH_CPT(dev_priv->dev)) {
1211 if ((val & PORT_TRANS_SEL_MASK) != PORT_TRANS_SEL_CPT(pipe))
1212 return false;
1213 } else {
1214 if ((val & ADPA_PIPE_SELECT_MASK) != ADPA_PIPE_SELECT(pipe))
1215 return false;
1216 }
1217 return true;
1218}
1219
Jesse Barnes291906f2011-02-02 12:28:03 -08001220static void assert_pch_dp_disabled(struct drm_i915_private *dev_priv,
Keith Packardf0575e92011-07-25 22:12:43 -07001221 enum pipe pipe, int reg, u32 port_sel)
Jesse Barnes291906f2011-02-02 12:28:03 -08001222{
Jesse Barnes47a05ec2011-02-07 13:46:40 -08001223 u32 val = I915_READ(reg);
Keith Packard4e634382011-08-06 10:39:45 -07001224 WARN(dp_pipe_enabled(dev_priv, pipe, port_sel, val),
Jesse Barnes291906f2011-02-02 12:28:03 -08001225 "PCH DP (0x%08x) enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001226 reg, pipe_name(pipe));
Jesse Barnes291906f2011-02-02 12:28:03 -08001227}
1228
1229static void assert_pch_hdmi_disabled(struct drm_i915_private *dev_priv,
1230 enum pipe pipe, int reg)
1231{
Jesse Barnes47a05ec2011-02-07 13:46:40 -08001232 u32 val = I915_READ(reg);
Keith Packard1519b992011-08-06 10:35:34 -07001233 WARN(hdmi_pipe_enabled(dev_priv, val, pipe),
Adam Jackson23c99e72011-10-07 14:38:43 -04001234 "PCH HDMI (0x%08x) enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001235 reg, pipe_name(pipe));
Jesse Barnes291906f2011-02-02 12:28:03 -08001236}
1237
1238static void assert_pch_ports_disabled(struct drm_i915_private *dev_priv,
1239 enum pipe pipe)
1240{
1241 int reg;
1242 u32 val;
Jesse Barnes291906f2011-02-02 12:28:03 -08001243
Keith Packardf0575e92011-07-25 22:12:43 -07001244 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_B, TRANS_DP_PORT_SEL_B);
1245 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_C, TRANS_DP_PORT_SEL_C);
1246 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_D, TRANS_DP_PORT_SEL_D);
Jesse Barnes291906f2011-02-02 12:28:03 -08001247
1248 reg = PCH_ADPA;
1249 val = I915_READ(reg);
Keith Packard1519b992011-08-06 10:35:34 -07001250 WARN(adpa_pipe_enabled(dev_priv, val, pipe),
Jesse Barnes291906f2011-02-02 12:28:03 -08001251 "PCH VGA enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001252 pipe_name(pipe));
Jesse Barnes291906f2011-02-02 12:28:03 -08001253
1254 reg = PCH_LVDS;
1255 val = I915_READ(reg);
Keith Packard1519b992011-08-06 10:35:34 -07001256 WARN(lvds_pipe_enabled(dev_priv, val, pipe),
Jesse Barnes291906f2011-02-02 12:28:03 -08001257 "PCH LVDS enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001258 pipe_name(pipe));
Jesse Barnes291906f2011-02-02 12:28:03 -08001259
1260 assert_pch_hdmi_disabled(dev_priv, pipe, HDMIB);
1261 assert_pch_hdmi_disabled(dev_priv, pipe, HDMIC);
1262 assert_pch_hdmi_disabled(dev_priv, pipe, HDMID);
1263}
1264
Jesse Barnesb24e7172011-01-04 15:09:30 -08001265/**
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001266 * intel_enable_pll - enable a PLL
1267 * @dev_priv: i915 private structure
1268 * @pipe: pipe PLL to enable
1269 *
1270 * Enable @pipe's PLL so we can start pumping pixels from a plane. Check to
1271 * make sure the PLL reg is writable first though, since the panel write
1272 * protect mechanism may be enabled.
1273 *
1274 * Note! This is for pre-ILK only.
1275 */
1276static void intel_enable_pll(struct drm_i915_private *dev_priv, enum pipe pipe)
1277{
1278 int reg;
1279 u32 val;
1280
1281 /* No really, not for ILK+ */
1282 BUG_ON(dev_priv->info->gen >= 5);
1283
1284 /* PLL is protected by panel, make sure we can write it */
1285 if (IS_MOBILE(dev_priv->dev) && !IS_I830(dev_priv->dev))
1286 assert_panel_unlocked(dev_priv, pipe);
1287
1288 reg = DPLL(pipe);
1289 val = I915_READ(reg);
1290 val |= DPLL_VCO_ENABLE;
1291
1292 /* We do this three times for luck */
1293 I915_WRITE(reg, val);
1294 POSTING_READ(reg);
1295 udelay(150); /* wait for warmup */
1296 I915_WRITE(reg, val);
1297 POSTING_READ(reg);
1298 udelay(150); /* wait for warmup */
1299 I915_WRITE(reg, val);
1300 POSTING_READ(reg);
1301 udelay(150); /* wait for warmup */
1302}
1303
1304/**
1305 * intel_disable_pll - disable a PLL
1306 * @dev_priv: i915 private structure
1307 * @pipe: pipe PLL to disable
1308 *
1309 * Disable the PLL for @pipe, making sure the pipe is off first.
1310 *
1311 * Note! This is for pre-ILK only.
1312 */
1313static void intel_disable_pll(struct drm_i915_private *dev_priv, enum pipe pipe)
1314{
1315 int reg;
1316 u32 val;
1317
1318 /* Don't disable pipe A or pipe A PLLs if needed */
1319 if (pipe == PIPE_A && (dev_priv->quirks & QUIRK_PIPEA_FORCE))
1320 return;
1321
1322 /* Make sure the pipe isn't still relying on us */
1323 assert_pipe_disabled(dev_priv, pipe);
1324
1325 reg = DPLL(pipe);
1326 val = I915_READ(reg);
1327 val &= ~DPLL_VCO_ENABLE;
1328 I915_WRITE(reg, val);
1329 POSTING_READ(reg);
1330}
1331
Eugeni Dodonova416ede2012-05-09 15:37:10 -03001332/* SBI access */
1333static void
1334intel_sbi_write(struct drm_i915_private *dev_priv, u16 reg, u32 value)
1335{
1336 unsigned long flags;
1337
1338 spin_lock_irqsave(&dev_priv->dpio_lock, flags);
1339 if (wait_for((I915_READ(SBI_CTL_STAT) & SBI_READY) == 0,
1340 100)) {
1341 DRM_ERROR("timeout waiting for SBI to become ready\n");
1342 goto out_unlock;
1343 }
1344
1345 I915_WRITE(SBI_ADDR,
1346 (reg << 16));
1347 I915_WRITE(SBI_DATA,
1348 value);
1349 I915_WRITE(SBI_CTL_STAT,
1350 SBI_BUSY |
1351 SBI_CTL_OP_CRWR);
1352
1353 if (wait_for((I915_READ(SBI_CTL_STAT) & (SBI_READY | SBI_RESPONSE_SUCCESS)) == 0,
1354 100)) {
1355 DRM_ERROR("timeout waiting for SBI to complete write transaction\n");
1356 goto out_unlock;
1357 }
1358
1359out_unlock:
1360 spin_unlock_irqrestore(&dev_priv->dpio_lock, flags);
1361}
1362
1363static u32
1364intel_sbi_read(struct drm_i915_private *dev_priv, u16 reg)
1365{
1366 unsigned long flags;
1367 u32 value;
1368
1369 spin_lock_irqsave(&dev_priv->dpio_lock, flags);
1370 if (wait_for((I915_READ(SBI_CTL_STAT) & SBI_READY) == 0,
1371 100)) {
1372 DRM_ERROR("timeout waiting for SBI to become ready\n");
1373 goto out_unlock;
1374 }
1375
1376 I915_WRITE(SBI_ADDR,
1377 (reg << 16));
1378 I915_WRITE(SBI_CTL_STAT,
1379 SBI_BUSY |
1380 SBI_CTL_OP_CRRD);
1381
1382 if (wait_for((I915_READ(SBI_CTL_STAT) & (SBI_READY | SBI_RESPONSE_SUCCESS)) == 0,
1383 100)) {
1384 DRM_ERROR("timeout waiting for SBI to complete read transaction\n");
1385 goto out_unlock;
1386 }
1387
1388 value = I915_READ(SBI_DATA);
1389
1390out_unlock:
1391 spin_unlock_irqrestore(&dev_priv->dpio_lock, flags);
1392 return value;
1393}
1394
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001395/**
Jesse Barnes92f25842011-01-04 15:09:34 -08001396 * intel_enable_pch_pll - enable PCH PLL
1397 * @dev_priv: i915 private structure
1398 * @pipe: pipe PLL to enable
1399 *
1400 * The PCH PLL needs to be enabled before the PCH transcoder, since it
1401 * drives the transcoder clock.
1402 */
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001403static void intel_enable_pch_pll(struct intel_crtc *intel_crtc)
Jesse Barnes92f25842011-01-04 15:09:34 -08001404{
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001405 struct drm_i915_private *dev_priv = intel_crtc->base.dev->dev_private;
Chris Wilson48da64a2012-05-13 20:16:12 +01001406 struct intel_pch_pll *pll;
Jesse Barnes92f25842011-01-04 15:09:34 -08001407 int reg;
1408 u32 val;
1409
Chris Wilson48da64a2012-05-13 20:16:12 +01001410 /* PCH PLLs only available on ILK, SNB and IVB */
Jesse Barnes92f25842011-01-04 15:09:34 -08001411 BUG_ON(dev_priv->info->gen < 5);
Chris Wilson48da64a2012-05-13 20:16:12 +01001412 pll = intel_crtc->pch_pll;
1413 if (pll == NULL)
1414 return;
1415
1416 if (WARN_ON(pll->refcount == 0))
1417 return;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001418
1419 DRM_DEBUG_KMS("enable PCH PLL %x (active %d, on? %d)for crtc %d\n",
1420 pll->pll_reg, pll->active, pll->on,
1421 intel_crtc->base.base.id);
Jesse Barnes92f25842011-01-04 15:09:34 -08001422
1423 /* PCH refclock must be enabled first */
1424 assert_pch_refclk_enabled(dev_priv);
1425
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001426 if (pll->active++ && pll->on) {
1427 assert_pch_pll_enabled(dev_priv, intel_crtc);
1428 return;
1429 }
1430
1431 DRM_DEBUG_KMS("enabling PCH PLL %x\n", pll->pll_reg);
1432
1433 reg = pll->pll_reg;
Jesse Barnes92f25842011-01-04 15:09:34 -08001434 val = I915_READ(reg);
1435 val |= DPLL_VCO_ENABLE;
1436 I915_WRITE(reg, val);
1437 POSTING_READ(reg);
1438 udelay(200);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001439
1440 pll->on = true;
Jesse Barnes92f25842011-01-04 15:09:34 -08001441}
1442
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001443static void intel_disable_pch_pll(struct intel_crtc *intel_crtc)
Jesse Barnes92f25842011-01-04 15:09:34 -08001444{
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001445 struct drm_i915_private *dev_priv = intel_crtc->base.dev->dev_private;
1446 struct intel_pch_pll *pll = intel_crtc->pch_pll;
Jesse Barnes92f25842011-01-04 15:09:34 -08001447 int reg;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001448 u32 val;
Jesse Barnes4c609cb2011-09-02 12:52:11 -07001449
Jesse Barnes92f25842011-01-04 15:09:34 -08001450 /* PCH only available on ILK+ */
1451 BUG_ON(dev_priv->info->gen < 5);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001452 if (pll == NULL)
1453 return;
1454
Chris Wilson48da64a2012-05-13 20:16:12 +01001455 if (WARN_ON(pll->refcount == 0))
1456 return;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001457
1458 DRM_DEBUG_KMS("disable PCH PLL %x (active %d, on? %d) for crtc %d\n",
1459 pll->pll_reg, pll->active, pll->on,
1460 intel_crtc->base.base.id);
1461
Chris Wilson48da64a2012-05-13 20:16:12 +01001462 if (WARN_ON(pll->active == 0)) {
1463 assert_pch_pll_disabled(dev_priv, intel_crtc);
1464 return;
1465 }
1466
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001467 if (--pll->active) {
1468 assert_pch_pll_enabled(dev_priv, intel_crtc);
1469 return;
1470 }
1471
1472 DRM_DEBUG_KMS("disabling PCH PLL %x\n", pll->pll_reg);
Jesse Barnes92f25842011-01-04 15:09:34 -08001473
1474 /* Make sure transcoder isn't still depending on us */
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001475 assert_transcoder_disabled(dev_priv, intel_crtc->pipe);
Jesse Barnes92f25842011-01-04 15:09:34 -08001476
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001477 reg = pll->pll_reg;
Jesse Barnes92f25842011-01-04 15:09:34 -08001478 val = I915_READ(reg);
1479 val &= ~DPLL_VCO_ENABLE;
1480 I915_WRITE(reg, val);
1481 POSTING_READ(reg);
1482 udelay(200);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001483
1484 pll->on = false;
Jesse Barnes92f25842011-01-04 15:09:34 -08001485}
1486
Jesse Barnes040484a2011-01-03 12:14:26 -08001487static void intel_enable_transcoder(struct drm_i915_private *dev_priv,
1488 enum pipe pipe)
1489{
1490 int reg;
Paulo Zanoni5f7f7262012-02-03 17:47:15 -02001491 u32 val, pipeconf_val;
Paulo Zanoni7c26e5c2012-02-14 17:07:09 -02001492 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
Jesse Barnes040484a2011-01-03 12:14:26 -08001493
1494 /* PCH only available on ILK+ */
1495 BUG_ON(dev_priv->info->gen < 5);
1496
1497 /* Make sure PCH DPLL is enabled */
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001498 assert_pch_pll_enabled(dev_priv, to_intel_crtc(crtc));
Jesse Barnes040484a2011-01-03 12:14:26 -08001499
1500 /* FDI must be feeding us bits for PCH ports */
1501 assert_fdi_tx_enabled(dev_priv, pipe);
1502 assert_fdi_rx_enabled(dev_priv, pipe);
1503
Eugeni Dodonov59c859d2012-05-09 15:37:19 -03001504 if (IS_HASWELL(dev_priv->dev) && pipe > 0) {
1505 DRM_ERROR("Attempting to enable transcoder on Haswell with pipe > 0\n");
1506 return;
1507 }
Jesse Barnes040484a2011-01-03 12:14:26 -08001508 reg = TRANSCONF(pipe);
1509 val = I915_READ(reg);
Paulo Zanoni5f7f7262012-02-03 17:47:15 -02001510 pipeconf_val = I915_READ(PIPECONF(pipe));
Jesse Barnese9bcff52011-06-24 12:19:20 -07001511
1512 if (HAS_PCH_IBX(dev_priv->dev)) {
1513 /*
1514 * make the BPC in transcoder be consistent with
1515 * that in pipeconf reg.
1516 */
1517 val &= ~PIPE_BPC_MASK;
Paulo Zanoni5f7f7262012-02-03 17:47:15 -02001518 val |= pipeconf_val & PIPE_BPC_MASK;
Jesse Barnese9bcff52011-06-24 12:19:20 -07001519 }
Paulo Zanoni5f7f7262012-02-03 17:47:15 -02001520
1521 val &= ~TRANS_INTERLACE_MASK;
1522 if ((pipeconf_val & PIPECONF_INTERLACE_MASK) == PIPECONF_INTERLACED_ILK)
Paulo Zanoni7c26e5c2012-02-14 17:07:09 -02001523 if (HAS_PCH_IBX(dev_priv->dev) &&
1524 intel_pipe_has_type(crtc, INTEL_OUTPUT_SDVO))
1525 val |= TRANS_LEGACY_INTERLACED_ILK;
1526 else
1527 val |= TRANS_INTERLACED;
Paulo Zanoni5f7f7262012-02-03 17:47:15 -02001528 else
1529 val |= TRANS_PROGRESSIVE;
1530
Jesse Barnes040484a2011-01-03 12:14:26 -08001531 I915_WRITE(reg, val | TRANS_ENABLE);
1532 if (wait_for(I915_READ(reg) & TRANS_STATE_ENABLE, 100))
1533 DRM_ERROR("failed to enable transcoder %d\n", pipe);
1534}
1535
1536static void intel_disable_transcoder(struct drm_i915_private *dev_priv,
1537 enum pipe pipe)
1538{
1539 int reg;
1540 u32 val;
1541
1542 /* FDI relies on the transcoder */
1543 assert_fdi_tx_disabled(dev_priv, pipe);
1544 assert_fdi_rx_disabled(dev_priv, pipe);
1545
Jesse Barnes291906f2011-02-02 12:28:03 -08001546 /* Ports must be off as well */
1547 assert_pch_ports_disabled(dev_priv, pipe);
1548
Jesse Barnes040484a2011-01-03 12:14:26 -08001549 reg = TRANSCONF(pipe);
1550 val = I915_READ(reg);
1551 val &= ~TRANS_ENABLE;
1552 I915_WRITE(reg, val);
1553 /* wait for PCH transcoder off, transcoder state */
1554 if (wait_for((I915_READ(reg) & TRANS_STATE_ENABLE) == 0, 50))
Jesse Barnes4c9c18c2011-10-13 09:46:32 -07001555 DRM_ERROR("failed to disable transcoder %d\n", pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08001556}
1557
Jesse Barnes92f25842011-01-04 15:09:34 -08001558/**
Chris Wilson309cfea2011-01-28 13:54:53 +00001559 * intel_enable_pipe - enable a pipe, asserting requirements
Jesse Barnesb24e7172011-01-04 15:09:30 -08001560 * @dev_priv: i915 private structure
1561 * @pipe: pipe to enable
Jesse Barnes040484a2011-01-03 12:14:26 -08001562 * @pch_port: on ILK+, is this pipe driving a PCH port or not
Jesse Barnesb24e7172011-01-04 15:09:30 -08001563 *
1564 * Enable @pipe, making sure that various hardware specific requirements
1565 * are met, if applicable, e.g. PLL enabled, LVDS pairs enabled, etc.
1566 *
1567 * @pipe should be %PIPE_A or %PIPE_B.
1568 *
1569 * Will wait until the pipe is actually running (i.e. first vblank) before
1570 * returning.
1571 */
Jesse Barnes040484a2011-01-03 12:14:26 -08001572static void intel_enable_pipe(struct drm_i915_private *dev_priv, enum pipe pipe,
1573 bool pch_port)
Jesse Barnesb24e7172011-01-04 15:09:30 -08001574{
1575 int reg;
1576 u32 val;
1577
1578 /*
1579 * A pipe without a PLL won't actually be able to drive bits from
1580 * a plane. On ILK+ the pipe PLLs are integrated, so we don't
1581 * need the check.
1582 */
1583 if (!HAS_PCH_SPLIT(dev_priv->dev))
1584 assert_pll_enabled(dev_priv, pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08001585 else {
1586 if (pch_port) {
1587 /* if driving the PCH, we need FDI enabled */
1588 assert_fdi_rx_pll_enabled(dev_priv, pipe);
1589 assert_fdi_tx_pll_enabled(dev_priv, pipe);
1590 }
1591 /* FIXME: assert CPU port conditions for SNB+ */
1592 }
Jesse Barnesb24e7172011-01-04 15:09:30 -08001593
1594 reg = PIPECONF(pipe);
1595 val = I915_READ(reg);
Chris Wilson00d70b12011-03-17 07:18:29 +00001596 if (val & PIPECONF_ENABLE)
1597 return;
1598
1599 I915_WRITE(reg, val | PIPECONF_ENABLE);
Jesse Barnesb24e7172011-01-04 15:09:30 -08001600 intel_wait_for_vblank(dev_priv->dev, pipe);
1601}
1602
1603/**
Chris Wilson309cfea2011-01-28 13:54:53 +00001604 * intel_disable_pipe - disable a pipe, asserting requirements
Jesse Barnesb24e7172011-01-04 15:09:30 -08001605 * @dev_priv: i915 private structure
1606 * @pipe: pipe to disable
1607 *
1608 * Disable @pipe, making sure that various hardware specific requirements
1609 * are met, if applicable, e.g. plane disabled, panel fitter off, etc.
1610 *
1611 * @pipe should be %PIPE_A or %PIPE_B.
1612 *
1613 * Will wait until the pipe has shut down before returning.
1614 */
1615static void intel_disable_pipe(struct drm_i915_private *dev_priv,
1616 enum pipe pipe)
1617{
1618 int reg;
1619 u32 val;
1620
1621 /*
1622 * Make sure planes won't keep trying to pump pixels to us,
1623 * or we might hang the display.
1624 */
1625 assert_planes_disabled(dev_priv, pipe);
1626
1627 /* Don't disable pipe A or pipe A PLLs if needed */
1628 if (pipe == PIPE_A && (dev_priv->quirks & QUIRK_PIPEA_FORCE))
1629 return;
1630
1631 reg = PIPECONF(pipe);
1632 val = I915_READ(reg);
Chris Wilson00d70b12011-03-17 07:18:29 +00001633 if ((val & PIPECONF_ENABLE) == 0)
1634 return;
1635
1636 I915_WRITE(reg, val & ~PIPECONF_ENABLE);
Jesse Barnesb24e7172011-01-04 15:09:30 -08001637 intel_wait_for_pipe_off(dev_priv->dev, pipe);
1638}
1639
Keith Packardd74362c2011-07-28 14:47:14 -07001640/*
1641 * Plane regs are double buffered, going from enabled->disabled needs a
1642 * trigger in order to latch. The display address reg provides this.
1643 */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03001644void intel_flush_display_plane(struct drm_i915_private *dev_priv,
Keith Packardd74362c2011-07-28 14:47:14 -07001645 enum plane plane)
1646{
1647 I915_WRITE(DSPADDR(plane), I915_READ(DSPADDR(plane)));
1648 I915_WRITE(DSPSURF(plane), I915_READ(DSPSURF(plane)));
1649}
1650
Jesse Barnesb24e7172011-01-04 15:09:30 -08001651/**
1652 * intel_enable_plane - enable a display plane on a given pipe
1653 * @dev_priv: i915 private structure
1654 * @plane: plane to enable
1655 * @pipe: pipe being fed
1656 *
1657 * Enable @plane on @pipe, making sure that @pipe is running first.
1658 */
1659static void intel_enable_plane(struct drm_i915_private *dev_priv,
1660 enum plane plane, enum pipe pipe)
1661{
1662 int reg;
1663 u32 val;
1664
1665 /* If the pipe isn't enabled, we can't pump pixels and may hang */
1666 assert_pipe_enabled(dev_priv, pipe);
1667
1668 reg = DSPCNTR(plane);
1669 val = I915_READ(reg);
Chris Wilson00d70b12011-03-17 07:18:29 +00001670 if (val & DISPLAY_PLANE_ENABLE)
1671 return;
1672
1673 I915_WRITE(reg, val | DISPLAY_PLANE_ENABLE);
Keith Packardd74362c2011-07-28 14:47:14 -07001674 intel_flush_display_plane(dev_priv, plane);
Jesse Barnesb24e7172011-01-04 15:09:30 -08001675 intel_wait_for_vblank(dev_priv->dev, pipe);
1676}
1677
Jesse Barnesb24e7172011-01-04 15:09:30 -08001678/**
1679 * intel_disable_plane - disable a display plane
1680 * @dev_priv: i915 private structure
1681 * @plane: plane to disable
1682 * @pipe: pipe consuming the data
1683 *
1684 * Disable @plane; should be an independent operation.
1685 */
1686static void intel_disable_plane(struct drm_i915_private *dev_priv,
1687 enum plane plane, enum pipe pipe)
1688{
1689 int reg;
1690 u32 val;
1691
1692 reg = DSPCNTR(plane);
1693 val = I915_READ(reg);
Chris Wilson00d70b12011-03-17 07:18:29 +00001694 if ((val & DISPLAY_PLANE_ENABLE) == 0)
1695 return;
1696
1697 I915_WRITE(reg, val & ~DISPLAY_PLANE_ENABLE);
Jesse Barnesb24e7172011-01-04 15:09:30 -08001698 intel_flush_display_plane(dev_priv, plane);
1699 intel_wait_for_vblank(dev_priv->dev, pipe);
1700}
1701
Jesse Barnes47a05ec2011-02-07 13:46:40 -08001702static void disable_pch_dp(struct drm_i915_private *dev_priv,
Keith Packardf0575e92011-07-25 22:12:43 -07001703 enum pipe pipe, int reg, u32 port_sel)
Jesse Barnes47a05ec2011-02-07 13:46:40 -08001704{
1705 u32 val = I915_READ(reg);
Keith Packard4e634382011-08-06 10:39:45 -07001706 if (dp_pipe_enabled(dev_priv, pipe, port_sel, val)) {
Keith Packardf0575e92011-07-25 22:12:43 -07001707 DRM_DEBUG_KMS("Disabling pch dp %x on pipe %d\n", reg, pipe);
Jesse Barnes47a05ec2011-02-07 13:46:40 -08001708 I915_WRITE(reg, val & ~DP_PORT_EN);
Keith Packardf0575e92011-07-25 22:12:43 -07001709 }
Jesse Barnes47a05ec2011-02-07 13:46:40 -08001710}
1711
1712static void disable_pch_hdmi(struct drm_i915_private *dev_priv,
1713 enum pipe pipe, int reg)
1714{
1715 u32 val = I915_READ(reg);
Keith Packard1519b992011-08-06 10:35:34 -07001716 if (hdmi_pipe_enabled(dev_priv, val, pipe)) {
Keith Packardf0575e92011-07-25 22:12:43 -07001717 DRM_DEBUG_KMS("Disabling pch HDMI %x on pipe %d\n",
1718 reg, pipe);
Jesse Barnes47a05ec2011-02-07 13:46:40 -08001719 I915_WRITE(reg, val & ~PORT_ENABLE);
Keith Packardf0575e92011-07-25 22:12:43 -07001720 }
Jesse Barnes47a05ec2011-02-07 13:46:40 -08001721}
1722
1723/* Disable any ports connected to this transcoder */
1724static void intel_disable_pch_ports(struct drm_i915_private *dev_priv,
1725 enum pipe pipe)
1726{
1727 u32 reg, val;
1728
1729 val = I915_READ(PCH_PP_CONTROL);
1730 I915_WRITE(PCH_PP_CONTROL, val | PANEL_UNLOCK_REGS);
1731
Keith Packardf0575e92011-07-25 22:12:43 -07001732 disable_pch_dp(dev_priv, pipe, PCH_DP_B, TRANS_DP_PORT_SEL_B);
1733 disable_pch_dp(dev_priv, pipe, PCH_DP_C, TRANS_DP_PORT_SEL_C);
1734 disable_pch_dp(dev_priv, pipe, PCH_DP_D, TRANS_DP_PORT_SEL_D);
Jesse Barnes47a05ec2011-02-07 13:46:40 -08001735
1736 reg = PCH_ADPA;
1737 val = I915_READ(reg);
Keith Packard1519b992011-08-06 10:35:34 -07001738 if (adpa_pipe_enabled(dev_priv, val, pipe))
Jesse Barnes47a05ec2011-02-07 13:46:40 -08001739 I915_WRITE(reg, val & ~ADPA_DAC_ENABLE);
1740
1741 reg = PCH_LVDS;
1742 val = I915_READ(reg);
Keith Packard1519b992011-08-06 10:35:34 -07001743 if (lvds_pipe_enabled(dev_priv, val, pipe)) {
1744 DRM_DEBUG_KMS("disable lvds on pipe %d val 0x%08x\n", pipe, val);
Jesse Barnes47a05ec2011-02-07 13:46:40 -08001745 I915_WRITE(reg, val & ~LVDS_PORT_EN);
1746 POSTING_READ(reg);
1747 udelay(100);
1748 }
1749
1750 disable_pch_hdmi(dev_priv, pipe, HDMIB);
1751 disable_pch_hdmi(dev_priv, pipe, HDMIC);
1752 disable_pch_hdmi(dev_priv, pipe, HDMID);
1753}
1754
Chris Wilson127bd2a2010-07-23 23:32:05 +01001755int
Chris Wilson48b956c2010-09-14 12:50:34 +01001756intel_pin_and_fence_fb_obj(struct drm_device *dev,
Chris Wilson05394f32010-11-08 19:18:58 +00001757 struct drm_i915_gem_object *obj,
Chris Wilson919926a2010-11-12 13:42:53 +00001758 struct intel_ring_buffer *pipelined)
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001759{
Chris Wilsonce453d82011-02-21 14:43:56 +00001760 struct drm_i915_private *dev_priv = dev->dev_private;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001761 u32 alignment;
1762 int ret;
1763
Chris Wilson05394f32010-11-08 19:18:58 +00001764 switch (obj->tiling_mode) {
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001765 case I915_TILING_NONE:
Chris Wilson534843d2010-07-05 18:01:46 +01001766 if (IS_BROADWATER(dev) || IS_CRESTLINE(dev))
1767 alignment = 128 * 1024;
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001768 else if (INTEL_INFO(dev)->gen >= 4)
Chris Wilson534843d2010-07-05 18:01:46 +01001769 alignment = 4 * 1024;
1770 else
1771 alignment = 64 * 1024;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001772 break;
1773 case I915_TILING_X:
1774 /* pin() will align the object as required by fence */
1775 alignment = 0;
1776 break;
1777 case I915_TILING_Y:
1778 /* FIXME: Is this true? */
1779 DRM_ERROR("Y tiled not allowed for scan out buffers\n");
1780 return -EINVAL;
1781 default:
1782 BUG();
1783 }
1784
Chris Wilsonce453d82011-02-21 14:43:56 +00001785 dev_priv->mm.interruptible = false;
Chris Wilson2da3b9b2011-04-14 09:41:17 +01001786 ret = i915_gem_object_pin_to_display_plane(obj, alignment, pipelined);
Chris Wilson48b956c2010-09-14 12:50:34 +01001787 if (ret)
Chris Wilsonce453d82011-02-21 14:43:56 +00001788 goto err_interruptible;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001789
1790 /* Install a fence for tiled scan-out. Pre-i965 always needs a
1791 * fence, whereas 965+ only requires a fence if using
1792 * framebuffer compression. For simplicity, we always install
1793 * a fence as the cost is not that onerous.
1794 */
Chris Wilson06d98132012-04-17 15:31:24 +01001795 ret = i915_gem_object_get_fence(obj);
Chris Wilson9a5a53b2012-03-22 15:10:00 +00001796 if (ret)
1797 goto err_unpin;
Chris Wilson1690e1e2011-12-14 13:57:08 +01001798
Chris Wilson9a5a53b2012-03-22 15:10:00 +00001799 i915_gem_object_pin_fence(obj);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001800
Chris Wilsonce453d82011-02-21 14:43:56 +00001801 dev_priv->mm.interruptible = true;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001802 return 0;
Chris Wilson48b956c2010-09-14 12:50:34 +01001803
1804err_unpin:
1805 i915_gem_object_unpin(obj);
Chris Wilsonce453d82011-02-21 14:43:56 +00001806err_interruptible:
1807 dev_priv->mm.interruptible = true;
Chris Wilson48b956c2010-09-14 12:50:34 +01001808 return ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001809}
1810
Chris Wilson1690e1e2011-12-14 13:57:08 +01001811void intel_unpin_fb_obj(struct drm_i915_gem_object *obj)
1812{
1813 i915_gem_object_unpin_fence(obj);
1814 i915_gem_object_unpin(obj);
1815}
1816
Jesse Barnes17638cd2011-06-24 12:19:23 -07001817static int i9xx_update_plane(struct drm_crtc *crtc, struct drm_framebuffer *fb,
1818 int x, int y)
Jesse Barnes81255562010-08-02 12:07:50 -07001819{
1820 struct drm_device *dev = crtc->dev;
1821 struct drm_i915_private *dev_priv = dev->dev_private;
1822 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1823 struct intel_framebuffer *intel_fb;
Chris Wilson05394f32010-11-08 19:18:58 +00001824 struct drm_i915_gem_object *obj;
Jesse Barnes81255562010-08-02 12:07:50 -07001825 int plane = intel_crtc->plane;
1826 unsigned long Start, Offset;
Jesse Barnes81255562010-08-02 12:07:50 -07001827 u32 dspcntr;
Chris Wilson5eddb702010-09-11 13:48:45 +01001828 u32 reg;
Jesse Barnes81255562010-08-02 12:07:50 -07001829
1830 switch (plane) {
1831 case 0:
1832 case 1:
1833 break;
1834 default:
1835 DRM_ERROR("Can't update plane %d in SAREA\n", plane);
1836 return -EINVAL;
1837 }
1838
1839 intel_fb = to_intel_framebuffer(fb);
1840 obj = intel_fb->obj;
Jesse Barnes81255562010-08-02 12:07:50 -07001841
Chris Wilson5eddb702010-09-11 13:48:45 +01001842 reg = DSPCNTR(plane);
1843 dspcntr = I915_READ(reg);
Jesse Barnes81255562010-08-02 12:07:50 -07001844 /* Mask out pixel format bits in case we change it */
1845 dspcntr &= ~DISPPLANE_PIXFORMAT_MASK;
1846 switch (fb->bits_per_pixel) {
1847 case 8:
1848 dspcntr |= DISPPLANE_8BPP;
1849 break;
1850 case 16:
1851 if (fb->depth == 15)
1852 dspcntr |= DISPPLANE_15_16BPP;
1853 else
1854 dspcntr |= DISPPLANE_16BPP;
1855 break;
1856 case 24:
1857 case 32:
1858 dspcntr |= DISPPLANE_32BPP_NO_ALPHA;
1859 break;
1860 default:
Jesse Barnes17638cd2011-06-24 12:19:23 -07001861 DRM_ERROR("Unknown color depth %d\n", fb->bits_per_pixel);
Jesse Barnes81255562010-08-02 12:07:50 -07001862 return -EINVAL;
1863 }
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001864 if (INTEL_INFO(dev)->gen >= 4) {
Chris Wilson05394f32010-11-08 19:18:58 +00001865 if (obj->tiling_mode != I915_TILING_NONE)
Jesse Barnes81255562010-08-02 12:07:50 -07001866 dspcntr |= DISPPLANE_TILED;
1867 else
1868 dspcntr &= ~DISPPLANE_TILED;
1869 }
1870
Chris Wilson5eddb702010-09-11 13:48:45 +01001871 I915_WRITE(reg, dspcntr);
Jesse Barnes81255562010-08-02 12:07:50 -07001872
Chris Wilson05394f32010-11-08 19:18:58 +00001873 Start = obj->gtt_offset;
Ville Syrjälä01f2c772011-12-20 00:06:49 +02001874 Offset = y * fb->pitches[0] + x * (fb->bits_per_pixel / 8);
Jesse Barnes81255562010-08-02 12:07:50 -07001875
Chris Wilson4e6cfef2010-08-08 13:20:19 +01001876 DRM_DEBUG_KMS("Writing base %08lX %08lX %d %d %d\n",
Ville Syrjälä01f2c772011-12-20 00:06:49 +02001877 Start, Offset, x, y, fb->pitches[0]);
1878 I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]);
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001879 if (INTEL_INFO(dev)->gen >= 4) {
Armin Reese446f2542012-03-30 16:20:16 -07001880 I915_MODIFY_DISPBASE(DSPSURF(plane), Start);
Chris Wilson5eddb702010-09-11 13:48:45 +01001881 I915_WRITE(DSPTILEOFF(plane), (y << 16) | x);
1882 I915_WRITE(DSPADDR(plane), Offset);
1883 } else
1884 I915_WRITE(DSPADDR(plane), Start + Offset);
1885 POSTING_READ(reg);
Jesse Barnes81255562010-08-02 12:07:50 -07001886
Jesse Barnes17638cd2011-06-24 12:19:23 -07001887 return 0;
1888}
1889
1890static int ironlake_update_plane(struct drm_crtc *crtc,
1891 struct drm_framebuffer *fb, int x, int y)
1892{
1893 struct drm_device *dev = crtc->dev;
1894 struct drm_i915_private *dev_priv = dev->dev_private;
1895 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1896 struct intel_framebuffer *intel_fb;
1897 struct drm_i915_gem_object *obj;
1898 int plane = intel_crtc->plane;
1899 unsigned long Start, Offset;
1900 u32 dspcntr;
1901 u32 reg;
1902
1903 switch (plane) {
1904 case 0:
1905 case 1:
Jesse Barnes27f82272011-09-02 12:54:37 -07001906 case 2:
Jesse Barnes17638cd2011-06-24 12:19:23 -07001907 break;
1908 default:
1909 DRM_ERROR("Can't update plane %d in SAREA\n", plane);
1910 return -EINVAL;
1911 }
1912
1913 intel_fb = to_intel_framebuffer(fb);
1914 obj = intel_fb->obj;
1915
1916 reg = DSPCNTR(plane);
1917 dspcntr = I915_READ(reg);
1918 /* Mask out pixel format bits in case we change it */
1919 dspcntr &= ~DISPPLANE_PIXFORMAT_MASK;
1920 switch (fb->bits_per_pixel) {
1921 case 8:
1922 dspcntr |= DISPPLANE_8BPP;
1923 break;
1924 case 16:
1925 if (fb->depth != 16)
1926 return -EINVAL;
1927
1928 dspcntr |= DISPPLANE_16BPP;
1929 break;
1930 case 24:
1931 case 32:
1932 if (fb->depth == 24)
1933 dspcntr |= DISPPLANE_32BPP_NO_ALPHA;
1934 else if (fb->depth == 30)
1935 dspcntr |= DISPPLANE_32BPP_30BIT_NO_ALPHA;
1936 else
1937 return -EINVAL;
1938 break;
1939 default:
1940 DRM_ERROR("Unknown color depth %d\n", fb->bits_per_pixel);
1941 return -EINVAL;
1942 }
1943
1944 if (obj->tiling_mode != I915_TILING_NONE)
1945 dspcntr |= DISPPLANE_TILED;
1946 else
1947 dspcntr &= ~DISPPLANE_TILED;
1948
1949 /* must disable */
1950 dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE;
1951
1952 I915_WRITE(reg, dspcntr);
1953
1954 Start = obj->gtt_offset;
Ville Syrjälä01f2c772011-12-20 00:06:49 +02001955 Offset = y * fb->pitches[0] + x * (fb->bits_per_pixel / 8);
Jesse Barnes17638cd2011-06-24 12:19:23 -07001956
1957 DRM_DEBUG_KMS("Writing base %08lX %08lX %d %d %d\n",
Ville Syrjälä01f2c772011-12-20 00:06:49 +02001958 Start, Offset, x, y, fb->pitches[0]);
1959 I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]);
Armin Reese446f2542012-03-30 16:20:16 -07001960 I915_MODIFY_DISPBASE(DSPSURF(plane), Start);
Jesse Barnes17638cd2011-06-24 12:19:23 -07001961 I915_WRITE(DSPTILEOFF(plane), (y << 16) | x);
1962 I915_WRITE(DSPADDR(plane), Offset);
1963 POSTING_READ(reg);
1964
1965 return 0;
1966}
1967
1968/* Assume fb object is pinned & idle & fenced and just update base pointers */
1969static int
1970intel_pipe_set_base_atomic(struct drm_crtc *crtc, struct drm_framebuffer *fb,
1971 int x, int y, enum mode_set_atomic state)
1972{
1973 struct drm_device *dev = crtc->dev;
1974 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes17638cd2011-06-24 12:19:23 -07001975
Chris Wilson6b8e6ed2012-04-17 15:08:19 +01001976 if (dev_priv->display.disable_fbc)
1977 dev_priv->display.disable_fbc(dev);
Daniel Vetter3dec0092010-08-20 21:40:52 +02001978 intel_increase_pllclock(crtc);
Jesse Barnes81255562010-08-02 12:07:50 -07001979
Chris Wilson6b8e6ed2012-04-17 15:08:19 +01001980 return dev_priv->display.update_plane(crtc, fb, x, y);
Jesse Barnes81255562010-08-02 12:07:50 -07001981}
1982
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001983static int
Chris Wilson14667a42012-04-03 17:58:35 +01001984intel_finish_fb(struct drm_framebuffer *old_fb)
1985{
1986 struct drm_i915_gem_object *obj = to_intel_framebuffer(old_fb)->obj;
1987 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
1988 bool was_interruptible = dev_priv->mm.interruptible;
1989 int ret;
1990
1991 wait_event(dev_priv->pending_flip_queue,
1992 atomic_read(&dev_priv->mm.wedged) ||
1993 atomic_read(&obj->pending_flip) == 0);
1994
1995 /* Big Hammer, we also need to ensure that any pending
1996 * MI_WAIT_FOR_EVENT inside a user batch buffer on the
1997 * current scanout is retired before unpinning the old
1998 * framebuffer.
1999 *
2000 * This should only fail upon a hung GPU, in which case we
2001 * can safely continue.
2002 */
2003 dev_priv->mm.interruptible = false;
2004 ret = i915_gem_object_finish_gpu(obj);
2005 dev_priv->mm.interruptible = was_interruptible;
2006
2007 return ret;
2008}
2009
2010static int
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -05002011intel_pipe_set_base(struct drm_crtc *crtc, int x, int y,
2012 struct drm_framebuffer *old_fb)
Jesse Barnes79e53942008-11-07 14:24:08 -08002013{
2014 struct drm_device *dev = crtc->dev;
Chris Wilson6b8e6ed2012-04-17 15:08:19 +01002015 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -08002016 struct drm_i915_master_private *master_priv;
2017 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002018 int ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08002019
2020 /* no fb bound */
2021 if (!crtc->fb) {
Jesse Barnesa5071c22011-07-19 15:38:56 -07002022 DRM_ERROR("No FB bound\n");
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002023 return 0;
2024 }
2025
Eugeni Dodonov5826eca2012-05-09 15:37:12 -03002026 if(intel_crtc->plane > dev_priv->num_pipe) {
2027 DRM_ERROR("no plane for crtc: plane %d, num_pipes %d\n",
2028 intel_crtc->plane,
2029 dev_priv->num_pipe);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002030 return -EINVAL;
Jesse Barnes79e53942008-11-07 14:24:08 -08002031 }
2032
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002033 mutex_lock(&dev->struct_mutex);
Chris Wilson265db952010-09-20 15:41:01 +01002034 ret = intel_pin_and_fence_fb_obj(dev,
2035 to_intel_framebuffer(crtc->fb)->obj,
Chris Wilson919926a2010-11-12 13:42:53 +00002036 NULL);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002037 if (ret != 0) {
2038 mutex_unlock(&dev->struct_mutex);
Jesse Barnesa5071c22011-07-19 15:38:56 -07002039 DRM_ERROR("pin & fence failed\n");
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002040 return ret;
2041 }
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -05002042
Chris Wilson14667a42012-04-03 17:58:35 +01002043 if (old_fb)
2044 intel_finish_fb(old_fb);
Chris Wilson265db952010-09-20 15:41:01 +01002045
Chris Wilson6b8e6ed2012-04-17 15:08:19 +01002046 ret = dev_priv->display.update_plane(crtc, crtc->fb, x, y);
Chris Wilson4e6cfef2010-08-08 13:20:19 +01002047 if (ret) {
Chris Wilson1690e1e2011-12-14 13:57:08 +01002048 intel_unpin_fb_obj(to_intel_framebuffer(crtc->fb)->obj);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002049 mutex_unlock(&dev->struct_mutex);
Jesse Barnesa5071c22011-07-19 15:38:56 -07002050 DRM_ERROR("failed to update base address\n");
Chris Wilson4e6cfef2010-08-08 13:20:19 +01002051 return ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08002052 }
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -05002053
Chris Wilsonb7f1de22010-12-14 16:09:31 +00002054 if (old_fb) {
2055 intel_wait_for_vblank(dev, intel_crtc->pipe);
Chris Wilson1690e1e2011-12-14 13:57:08 +01002056 intel_unpin_fb_obj(to_intel_framebuffer(old_fb)->obj);
Chris Wilsonb7f1de22010-12-14 16:09:31 +00002057 }
Jesse Barnes652c3932009-08-17 13:31:43 -07002058
Chris Wilson6b8e6ed2012-04-17 15:08:19 +01002059 intel_update_fbc(dev);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002060 mutex_unlock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -08002061
2062 if (!dev->primary->master)
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002063 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08002064
2065 master_priv = dev->primary->master->driver_priv;
2066 if (!master_priv->sarea_priv)
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002067 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08002068
Chris Wilson265db952010-09-20 15:41:01 +01002069 if (intel_crtc->pipe) {
Jesse Barnes79e53942008-11-07 14:24:08 -08002070 master_priv->sarea_priv->pipeB_x = x;
2071 master_priv->sarea_priv->pipeB_y = y;
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002072 } else {
2073 master_priv->sarea_priv->pipeA_x = x;
2074 master_priv->sarea_priv->pipeA_y = y;
Jesse Barnes79e53942008-11-07 14:24:08 -08002075 }
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002076
2077 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08002078}
2079
Chris Wilson5eddb702010-09-11 13:48:45 +01002080static void ironlake_set_pll_edp(struct drm_crtc *crtc, int clock)
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002081{
2082 struct drm_device *dev = crtc->dev;
2083 struct drm_i915_private *dev_priv = dev->dev_private;
2084 u32 dpa_ctl;
2085
Zhao Yakui28c97732009-10-09 11:39:41 +08002086 DRM_DEBUG_KMS("eDP PLL enable for clock %d\n", clock);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002087 dpa_ctl = I915_READ(DP_A);
2088 dpa_ctl &= ~DP_PLL_FREQ_MASK;
2089
2090 if (clock < 200000) {
2091 u32 temp;
2092 dpa_ctl |= DP_PLL_FREQ_160MHZ;
2093 /* workaround for 160Mhz:
2094 1) program 0x4600c bits 15:0 = 0x8124
2095 2) program 0x46010 bit 0 = 1
2096 3) program 0x46034 bit 24 = 1
2097 4) program 0x64000 bit 14 = 1
2098 */
2099 temp = I915_READ(0x4600c);
2100 temp &= 0xffff0000;
2101 I915_WRITE(0x4600c, temp | 0x8124);
2102
2103 temp = I915_READ(0x46010);
2104 I915_WRITE(0x46010, temp | 1);
2105
2106 temp = I915_READ(0x46034);
2107 I915_WRITE(0x46034, temp | (1 << 24));
2108 } else {
2109 dpa_ctl |= DP_PLL_FREQ_270MHZ;
2110 }
2111 I915_WRITE(DP_A, dpa_ctl);
2112
Chris Wilson5eddb702010-09-11 13:48:45 +01002113 POSTING_READ(DP_A);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002114 udelay(500);
2115}
2116
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08002117static void intel_fdi_normal_train(struct drm_crtc *crtc)
2118{
2119 struct drm_device *dev = crtc->dev;
2120 struct drm_i915_private *dev_priv = dev->dev_private;
2121 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2122 int pipe = intel_crtc->pipe;
2123 u32 reg, temp;
2124
2125 /* enable normal train */
2126 reg = FDI_TX_CTL(pipe);
2127 temp = I915_READ(reg);
Keith Packard61e499b2011-05-17 16:13:52 -07002128 if (IS_IVYBRIDGE(dev)) {
Jesse Barnes357555c2011-04-28 15:09:55 -07002129 temp &= ~FDI_LINK_TRAIN_NONE_IVB;
2130 temp |= FDI_LINK_TRAIN_NONE_IVB | FDI_TX_ENHANCE_FRAME_ENABLE;
Keith Packard61e499b2011-05-17 16:13:52 -07002131 } else {
2132 temp &= ~FDI_LINK_TRAIN_NONE;
2133 temp |= FDI_LINK_TRAIN_NONE | FDI_TX_ENHANCE_FRAME_ENABLE;
Jesse Barnes357555c2011-04-28 15:09:55 -07002134 }
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08002135 I915_WRITE(reg, temp);
2136
2137 reg = FDI_RX_CTL(pipe);
2138 temp = I915_READ(reg);
2139 if (HAS_PCH_CPT(dev)) {
2140 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2141 temp |= FDI_LINK_TRAIN_NORMAL_CPT;
2142 } else {
2143 temp &= ~FDI_LINK_TRAIN_NONE;
2144 temp |= FDI_LINK_TRAIN_NONE;
2145 }
2146 I915_WRITE(reg, temp | FDI_RX_ENHANCE_FRAME_ENABLE);
2147
2148 /* wait one idle pattern time */
2149 POSTING_READ(reg);
2150 udelay(1000);
Jesse Barnes357555c2011-04-28 15:09:55 -07002151
2152 /* IVB wants error correction enabled */
2153 if (IS_IVYBRIDGE(dev))
2154 I915_WRITE(reg, I915_READ(reg) | FDI_FS_ERRC_ENABLE |
2155 FDI_FE_ERRC_ENABLE);
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08002156}
2157
Jesse Barnes291427f2011-07-29 12:42:37 -07002158static void cpt_phase_pointer_enable(struct drm_device *dev, int pipe)
2159{
2160 struct drm_i915_private *dev_priv = dev->dev_private;
2161 u32 flags = I915_READ(SOUTH_CHICKEN1);
2162
2163 flags |= FDI_PHASE_SYNC_OVR(pipe);
2164 I915_WRITE(SOUTH_CHICKEN1, flags); /* once to unlock... */
2165 flags |= FDI_PHASE_SYNC_EN(pipe);
2166 I915_WRITE(SOUTH_CHICKEN1, flags); /* then again to enable */
2167 POSTING_READ(SOUTH_CHICKEN1);
2168}
2169
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002170/* The FDI link training functions for ILK/Ibexpeak. */
2171static void ironlake_fdi_link_train(struct drm_crtc *crtc)
2172{
2173 struct drm_device *dev = crtc->dev;
2174 struct drm_i915_private *dev_priv = dev->dev_private;
2175 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2176 int pipe = intel_crtc->pipe;
Jesse Barnes0fc932b2011-01-04 15:09:37 -08002177 int plane = intel_crtc->plane;
Chris Wilson5eddb702010-09-11 13:48:45 +01002178 u32 reg, temp, tries;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002179
Jesse Barnes0fc932b2011-01-04 15:09:37 -08002180 /* FDI needs bits from pipe & plane first */
2181 assert_pipe_enabled(dev_priv, pipe);
2182 assert_plane_enabled(dev_priv, plane);
2183
Adam Jacksone1a44742010-06-25 15:32:14 -04002184 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
2185 for train result */
Chris Wilson5eddb702010-09-11 13:48:45 +01002186 reg = FDI_RX_IMR(pipe);
2187 temp = I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04002188 temp &= ~FDI_RX_SYMBOL_LOCK;
2189 temp &= ~FDI_RX_BIT_LOCK;
Chris Wilson5eddb702010-09-11 13:48:45 +01002190 I915_WRITE(reg, temp);
2191 I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04002192 udelay(150);
2193
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002194 /* enable CPU FDI TX and PCH FDI RX */
Chris Wilson5eddb702010-09-11 13:48:45 +01002195 reg = FDI_TX_CTL(pipe);
2196 temp = I915_READ(reg);
Adam Jackson77ffb592010-04-12 11:38:44 -04002197 temp &= ~(7 << 19);
2198 temp |= (intel_crtc->fdi_lanes - 1) << 19;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002199 temp &= ~FDI_LINK_TRAIN_NONE;
2200 temp |= FDI_LINK_TRAIN_PATTERN_1;
Chris Wilson5eddb702010-09-11 13:48:45 +01002201 I915_WRITE(reg, temp | FDI_TX_ENABLE);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002202
Chris Wilson5eddb702010-09-11 13:48:45 +01002203 reg = FDI_RX_CTL(pipe);
2204 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002205 temp &= ~FDI_LINK_TRAIN_NONE;
2206 temp |= FDI_LINK_TRAIN_PATTERN_1;
Chris Wilson5eddb702010-09-11 13:48:45 +01002207 I915_WRITE(reg, temp | FDI_RX_ENABLE);
2208
2209 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002210 udelay(150);
2211
Jesse Barnes5b2adf82010-10-07 16:01:15 -07002212 /* Ironlake workaround, enable clock pointer after FDI enable*/
Jesse Barnes6f06ce12011-01-04 15:09:38 -08002213 if (HAS_PCH_IBX(dev)) {
2214 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR);
2215 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR |
2216 FDI_RX_PHASE_SYNC_POINTER_EN);
2217 }
Jesse Barnes5b2adf82010-10-07 16:01:15 -07002218
Chris Wilson5eddb702010-09-11 13:48:45 +01002219 reg = FDI_RX_IIR(pipe);
Adam Jacksone1a44742010-06-25 15:32:14 -04002220 for (tries = 0; tries < 5; tries++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002221 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002222 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2223
2224 if ((temp & FDI_RX_BIT_LOCK)) {
2225 DRM_DEBUG_KMS("FDI train 1 done.\n");
Chris Wilson5eddb702010-09-11 13:48:45 +01002226 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002227 break;
2228 }
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002229 }
Adam Jacksone1a44742010-06-25 15:32:14 -04002230 if (tries == 5)
Chris Wilson5eddb702010-09-11 13:48:45 +01002231 DRM_ERROR("FDI train 1 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002232
2233 /* Train 2 */
Chris Wilson5eddb702010-09-11 13:48:45 +01002234 reg = FDI_TX_CTL(pipe);
2235 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002236 temp &= ~FDI_LINK_TRAIN_NONE;
2237 temp |= FDI_LINK_TRAIN_PATTERN_2;
Chris Wilson5eddb702010-09-11 13:48:45 +01002238 I915_WRITE(reg, temp);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002239
Chris Wilson5eddb702010-09-11 13:48:45 +01002240 reg = FDI_RX_CTL(pipe);
2241 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002242 temp &= ~FDI_LINK_TRAIN_NONE;
2243 temp |= FDI_LINK_TRAIN_PATTERN_2;
Chris Wilson5eddb702010-09-11 13:48:45 +01002244 I915_WRITE(reg, temp);
2245
2246 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002247 udelay(150);
2248
Chris Wilson5eddb702010-09-11 13:48:45 +01002249 reg = FDI_RX_IIR(pipe);
Adam Jacksone1a44742010-06-25 15:32:14 -04002250 for (tries = 0; tries < 5; tries++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002251 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002252 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2253
2254 if (temp & FDI_RX_SYMBOL_LOCK) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002255 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002256 DRM_DEBUG_KMS("FDI train 2 done.\n");
2257 break;
2258 }
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002259 }
Adam Jacksone1a44742010-06-25 15:32:14 -04002260 if (tries == 5)
Chris Wilson5eddb702010-09-11 13:48:45 +01002261 DRM_ERROR("FDI train 2 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002262
2263 DRM_DEBUG_KMS("FDI train done\n");
Jesse Barnes5c5313c2010-10-07 16:01:11 -07002264
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002265}
2266
Akshay Joshi0206e352011-08-16 15:34:10 -04002267static const int snb_b_fdi_train_param[] = {
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002268 FDI_LINK_TRAIN_400MV_0DB_SNB_B,
2269 FDI_LINK_TRAIN_400MV_6DB_SNB_B,
2270 FDI_LINK_TRAIN_600MV_3_5DB_SNB_B,
2271 FDI_LINK_TRAIN_800MV_0DB_SNB_B,
2272};
2273
2274/* The FDI link training functions for SNB/Cougarpoint. */
2275static void gen6_fdi_link_train(struct drm_crtc *crtc)
2276{
2277 struct drm_device *dev = crtc->dev;
2278 struct drm_i915_private *dev_priv = dev->dev_private;
2279 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2280 int pipe = intel_crtc->pipe;
Sean Paulfa37d392012-03-02 12:53:39 -05002281 u32 reg, temp, i, retry;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002282
Adam Jacksone1a44742010-06-25 15:32:14 -04002283 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
2284 for train result */
Chris Wilson5eddb702010-09-11 13:48:45 +01002285 reg = FDI_RX_IMR(pipe);
2286 temp = I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04002287 temp &= ~FDI_RX_SYMBOL_LOCK;
2288 temp &= ~FDI_RX_BIT_LOCK;
Chris Wilson5eddb702010-09-11 13:48:45 +01002289 I915_WRITE(reg, temp);
2290
2291 POSTING_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04002292 udelay(150);
2293
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002294 /* enable CPU FDI TX and PCH FDI RX */
Chris Wilson5eddb702010-09-11 13:48:45 +01002295 reg = FDI_TX_CTL(pipe);
2296 temp = I915_READ(reg);
Adam Jackson77ffb592010-04-12 11:38:44 -04002297 temp &= ~(7 << 19);
2298 temp |= (intel_crtc->fdi_lanes - 1) << 19;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002299 temp &= ~FDI_LINK_TRAIN_NONE;
2300 temp |= FDI_LINK_TRAIN_PATTERN_1;
2301 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2302 /* SNB-B */
2303 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
Chris Wilson5eddb702010-09-11 13:48:45 +01002304 I915_WRITE(reg, temp | FDI_TX_ENABLE);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002305
Chris Wilson5eddb702010-09-11 13:48:45 +01002306 reg = FDI_RX_CTL(pipe);
2307 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002308 if (HAS_PCH_CPT(dev)) {
2309 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2310 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
2311 } else {
2312 temp &= ~FDI_LINK_TRAIN_NONE;
2313 temp |= FDI_LINK_TRAIN_PATTERN_1;
2314 }
Chris Wilson5eddb702010-09-11 13:48:45 +01002315 I915_WRITE(reg, temp | FDI_RX_ENABLE);
2316
2317 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002318 udelay(150);
2319
Jesse Barnes291427f2011-07-29 12:42:37 -07002320 if (HAS_PCH_CPT(dev))
2321 cpt_phase_pointer_enable(dev, pipe);
2322
Akshay Joshi0206e352011-08-16 15:34:10 -04002323 for (i = 0; i < 4; i++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002324 reg = FDI_TX_CTL(pipe);
2325 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002326 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2327 temp |= snb_b_fdi_train_param[i];
Chris Wilson5eddb702010-09-11 13:48:45 +01002328 I915_WRITE(reg, temp);
2329
2330 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002331 udelay(500);
2332
Sean Paulfa37d392012-03-02 12:53:39 -05002333 for (retry = 0; retry < 5; retry++) {
2334 reg = FDI_RX_IIR(pipe);
2335 temp = I915_READ(reg);
2336 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2337 if (temp & FDI_RX_BIT_LOCK) {
2338 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
2339 DRM_DEBUG_KMS("FDI train 1 done.\n");
2340 break;
2341 }
2342 udelay(50);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002343 }
Sean Paulfa37d392012-03-02 12:53:39 -05002344 if (retry < 5)
2345 break;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002346 }
2347 if (i == 4)
Chris Wilson5eddb702010-09-11 13:48:45 +01002348 DRM_ERROR("FDI train 1 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002349
2350 /* Train 2 */
Chris Wilson5eddb702010-09-11 13:48:45 +01002351 reg = FDI_TX_CTL(pipe);
2352 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002353 temp &= ~FDI_LINK_TRAIN_NONE;
2354 temp |= FDI_LINK_TRAIN_PATTERN_2;
2355 if (IS_GEN6(dev)) {
2356 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2357 /* SNB-B */
2358 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
2359 }
Chris Wilson5eddb702010-09-11 13:48:45 +01002360 I915_WRITE(reg, temp);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002361
Chris Wilson5eddb702010-09-11 13:48:45 +01002362 reg = FDI_RX_CTL(pipe);
2363 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002364 if (HAS_PCH_CPT(dev)) {
2365 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2366 temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
2367 } else {
2368 temp &= ~FDI_LINK_TRAIN_NONE;
2369 temp |= FDI_LINK_TRAIN_PATTERN_2;
2370 }
Chris Wilson5eddb702010-09-11 13:48:45 +01002371 I915_WRITE(reg, temp);
2372
2373 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002374 udelay(150);
2375
Akshay Joshi0206e352011-08-16 15:34:10 -04002376 for (i = 0; i < 4; i++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002377 reg = FDI_TX_CTL(pipe);
2378 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002379 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2380 temp |= snb_b_fdi_train_param[i];
Chris Wilson5eddb702010-09-11 13:48:45 +01002381 I915_WRITE(reg, temp);
2382
2383 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002384 udelay(500);
2385
Sean Paulfa37d392012-03-02 12:53:39 -05002386 for (retry = 0; retry < 5; retry++) {
2387 reg = FDI_RX_IIR(pipe);
2388 temp = I915_READ(reg);
2389 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2390 if (temp & FDI_RX_SYMBOL_LOCK) {
2391 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
2392 DRM_DEBUG_KMS("FDI train 2 done.\n");
2393 break;
2394 }
2395 udelay(50);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002396 }
Sean Paulfa37d392012-03-02 12:53:39 -05002397 if (retry < 5)
2398 break;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002399 }
2400 if (i == 4)
Chris Wilson5eddb702010-09-11 13:48:45 +01002401 DRM_ERROR("FDI train 2 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002402
2403 DRM_DEBUG_KMS("FDI train done.\n");
2404}
2405
Jesse Barnes357555c2011-04-28 15:09:55 -07002406/* Manual link training for Ivy Bridge A0 parts */
2407static void ivb_manual_fdi_link_train(struct drm_crtc *crtc)
2408{
2409 struct drm_device *dev = crtc->dev;
2410 struct drm_i915_private *dev_priv = dev->dev_private;
2411 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2412 int pipe = intel_crtc->pipe;
2413 u32 reg, temp, i;
2414
2415 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
2416 for train result */
2417 reg = FDI_RX_IMR(pipe);
2418 temp = I915_READ(reg);
2419 temp &= ~FDI_RX_SYMBOL_LOCK;
2420 temp &= ~FDI_RX_BIT_LOCK;
2421 I915_WRITE(reg, temp);
2422
2423 POSTING_READ(reg);
2424 udelay(150);
2425
2426 /* enable CPU FDI TX and PCH FDI RX */
2427 reg = FDI_TX_CTL(pipe);
2428 temp = I915_READ(reg);
2429 temp &= ~(7 << 19);
2430 temp |= (intel_crtc->fdi_lanes - 1) << 19;
2431 temp &= ~(FDI_LINK_TRAIN_AUTO | FDI_LINK_TRAIN_NONE_IVB);
2432 temp |= FDI_LINK_TRAIN_PATTERN_1_IVB;
2433 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2434 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
Jesse Barnesc4f9c4c2011-10-10 14:28:52 -07002435 temp |= FDI_COMPOSITE_SYNC;
Jesse Barnes357555c2011-04-28 15:09:55 -07002436 I915_WRITE(reg, temp | FDI_TX_ENABLE);
2437
2438 reg = FDI_RX_CTL(pipe);
2439 temp = I915_READ(reg);
2440 temp &= ~FDI_LINK_TRAIN_AUTO;
2441 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2442 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
Jesse Barnesc4f9c4c2011-10-10 14:28:52 -07002443 temp |= FDI_COMPOSITE_SYNC;
Jesse Barnes357555c2011-04-28 15:09:55 -07002444 I915_WRITE(reg, temp | FDI_RX_ENABLE);
2445
2446 POSTING_READ(reg);
2447 udelay(150);
2448
Jesse Barnes291427f2011-07-29 12:42:37 -07002449 if (HAS_PCH_CPT(dev))
2450 cpt_phase_pointer_enable(dev, pipe);
2451
Akshay Joshi0206e352011-08-16 15:34:10 -04002452 for (i = 0; i < 4; i++) {
Jesse Barnes357555c2011-04-28 15:09:55 -07002453 reg = FDI_TX_CTL(pipe);
2454 temp = I915_READ(reg);
2455 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2456 temp |= snb_b_fdi_train_param[i];
2457 I915_WRITE(reg, temp);
2458
2459 POSTING_READ(reg);
2460 udelay(500);
2461
2462 reg = FDI_RX_IIR(pipe);
2463 temp = I915_READ(reg);
2464 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2465
2466 if (temp & FDI_RX_BIT_LOCK ||
2467 (I915_READ(reg) & FDI_RX_BIT_LOCK)) {
2468 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
2469 DRM_DEBUG_KMS("FDI train 1 done.\n");
2470 break;
2471 }
2472 }
2473 if (i == 4)
2474 DRM_ERROR("FDI train 1 fail!\n");
2475
2476 /* Train 2 */
2477 reg = FDI_TX_CTL(pipe);
2478 temp = I915_READ(reg);
2479 temp &= ~FDI_LINK_TRAIN_NONE_IVB;
2480 temp |= FDI_LINK_TRAIN_PATTERN_2_IVB;
2481 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2482 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
2483 I915_WRITE(reg, temp);
2484
2485 reg = FDI_RX_CTL(pipe);
2486 temp = I915_READ(reg);
2487 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2488 temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
2489 I915_WRITE(reg, temp);
2490
2491 POSTING_READ(reg);
2492 udelay(150);
2493
Akshay Joshi0206e352011-08-16 15:34:10 -04002494 for (i = 0; i < 4; i++) {
Jesse Barnes357555c2011-04-28 15:09:55 -07002495 reg = FDI_TX_CTL(pipe);
2496 temp = I915_READ(reg);
2497 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2498 temp |= snb_b_fdi_train_param[i];
2499 I915_WRITE(reg, temp);
2500
2501 POSTING_READ(reg);
2502 udelay(500);
2503
2504 reg = FDI_RX_IIR(pipe);
2505 temp = I915_READ(reg);
2506 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2507
2508 if (temp & FDI_RX_SYMBOL_LOCK) {
2509 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
2510 DRM_DEBUG_KMS("FDI train 2 done.\n");
2511 break;
2512 }
2513 }
2514 if (i == 4)
2515 DRM_ERROR("FDI train 2 fail!\n");
2516
2517 DRM_DEBUG_KMS("FDI train done.\n");
2518}
2519
2520static void ironlake_fdi_pll_enable(struct drm_crtc *crtc)
Jesse Barnes0e23b992010-09-10 11:10:00 -07002521{
2522 struct drm_device *dev = crtc->dev;
2523 struct drm_i915_private *dev_priv = dev->dev_private;
2524 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2525 int pipe = intel_crtc->pipe;
Chris Wilson5eddb702010-09-11 13:48:45 +01002526 u32 reg, temp;
Jesse Barnes0e23b992010-09-10 11:10:00 -07002527
Jesse Barnesc64e3112010-09-10 11:27:03 -07002528 /* Write the TU size bits so error detection works */
Chris Wilson5eddb702010-09-11 13:48:45 +01002529 I915_WRITE(FDI_RX_TUSIZE1(pipe),
2530 I915_READ(PIPE_DATA_M1(pipe)) & TU_SIZE_MASK);
Jesse Barnesc64e3112010-09-10 11:27:03 -07002531
Jesse Barnes0e23b992010-09-10 11:10:00 -07002532 /* enable PCH FDI RX PLL, wait warmup plus DMI latency */
Chris Wilson5eddb702010-09-11 13:48:45 +01002533 reg = FDI_RX_CTL(pipe);
2534 temp = I915_READ(reg);
2535 temp &= ~((0x7 << 19) | (0x7 << 16));
Jesse Barnes0e23b992010-09-10 11:10:00 -07002536 temp |= (intel_crtc->fdi_lanes - 1) << 19;
Chris Wilson5eddb702010-09-11 13:48:45 +01002537 temp |= (I915_READ(PIPECONF(pipe)) & PIPE_BPC_MASK) << 11;
2538 I915_WRITE(reg, temp | FDI_RX_PLL_ENABLE);
2539
2540 POSTING_READ(reg);
Jesse Barnes0e23b992010-09-10 11:10:00 -07002541 udelay(200);
2542
2543 /* Switch from Rawclk to PCDclk */
Chris Wilson5eddb702010-09-11 13:48:45 +01002544 temp = I915_READ(reg);
2545 I915_WRITE(reg, temp | FDI_PCDCLK);
2546
2547 POSTING_READ(reg);
Jesse Barnes0e23b992010-09-10 11:10:00 -07002548 udelay(200);
2549
Eugeni Dodonovbf507ef2012-05-09 15:37:18 -03002550 /* On Haswell, the PLL configuration for ports and pipes is handled
2551 * separately, as part of DDI setup */
2552 if (!IS_HASWELL(dev)) {
2553 /* Enable CPU FDI TX PLL, always on for Ironlake */
2554 reg = FDI_TX_CTL(pipe);
2555 temp = I915_READ(reg);
2556 if ((temp & FDI_TX_PLL_ENABLE) == 0) {
2557 I915_WRITE(reg, temp | FDI_TX_PLL_ENABLE);
Chris Wilson5eddb702010-09-11 13:48:45 +01002558
Eugeni Dodonovbf507ef2012-05-09 15:37:18 -03002559 POSTING_READ(reg);
2560 udelay(100);
2561 }
Jesse Barnes0e23b992010-09-10 11:10:00 -07002562 }
2563}
2564
Jesse Barnes291427f2011-07-29 12:42:37 -07002565static void cpt_phase_pointer_disable(struct drm_device *dev, int pipe)
2566{
2567 struct drm_i915_private *dev_priv = dev->dev_private;
2568 u32 flags = I915_READ(SOUTH_CHICKEN1);
2569
2570 flags &= ~(FDI_PHASE_SYNC_EN(pipe));
2571 I915_WRITE(SOUTH_CHICKEN1, flags); /* once to disable... */
2572 flags &= ~(FDI_PHASE_SYNC_OVR(pipe));
2573 I915_WRITE(SOUTH_CHICKEN1, flags); /* then again to lock */
2574 POSTING_READ(SOUTH_CHICKEN1);
2575}
Jesse Barnes0fc932b2011-01-04 15:09:37 -08002576static void ironlake_fdi_disable(struct drm_crtc *crtc)
2577{
2578 struct drm_device *dev = crtc->dev;
2579 struct drm_i915_private *dev_priv = dev->dev_private;
2580 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2581 int pipe = intel_crtc->pipe;
2582 u32 reg, temp;
2583
2584 /* disable CPU FDI tx and PCH FDI rx */
2585 reg = FDI_TX_CTL(pipe);
2586 temp = I915_READ(reg);
2587 I915_WRITE(reg, temp & ~FDI_TX_ENABLE);
2588 POSTING_READ(reg);
2589
2590 reg = FDI_RX_CTL(pipe);
2591 temp = I915_READ(reg);
2592 temp &= ~(0x7 << 16);
2593 temp |= (I915_READ(PIPECONF(pipe)) & PIPE_BPC_MASK) << 11;
2594 I915_WRITE(reg, temp & ~FDI_RX_ENABLE);
2595
2596 POSTING_READ(reg);
2597 udelay(100);
2598
2599 /* Ironlake workaround, disable clock pointer after downing FDI */
Jesse Barnes6f06ce12011-01-04 15:09:38 -08002600 if (HAS_PCH_IBX(dev)) {
2601 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR);
Jesse Barnes0fc932b2011-01-04 15:09:37 -08002602 I915_WRITE(FDI_RX_CHICKEN(pipe),
2603 I915_READ(FDI_RX_CHICKEN(pipe) &
Jesse Barnes6f06ce12011-01-04 15:09:38 -08002604 ~FDI_RX_PHASE_SYNC_POINTER_EN));
Jesse Barnes291427f2011-07-29 12:42:37 -07002605 } else if (HAS_PCH_CPT(dev)) {
2606 cpt_phase_pointer_disable(dev, pipe);
Jesse Barnes6f06ce12011-01-04 15:09:38 -08002607 }
Jesse Barnes0fc932b2011-01-04 15:09:37 -08002608
2609 /* still set train pattern 1 */
2610 reg = FDI_TX_CTL(pipe);
2611 temp = I915_READ(reg);
2612 temp &= ~FDI_LINK_TRAIN_NONE;
2613 temp |= FDI_LINK_TRAIN_PATTERN_1;
2614 I915_WRITE(reg, temp);
2615
2616 reg = FDI_RX_CTL(pipe);
2617 temp = I915_READ(reg);
2618 if (HAS_PCH_CPT(dev)) {
2619 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2620 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
2621 } else {
2622 temp &= ~FDI_LINK_TRAIN_NONE;
2623 temp |= FDI_LINK_TRAIN_PATTERN_1;
2624 }
2625 /* BPC in FDI rx is consistent with that in PIPECONF */
2626 temp &= ~(0x07 << 16);
2627 temp |= (I915_READ(PIPECONF(pipe)) & PIPE_BPC_MASK) << 11;
2628 I915_WRITE(reg, temp);
2629
2630 POSTING_READ(reg);
2631 udelay(100);
2632}
2633
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01002634static void intel_crtc_wait_for_pending_flips(struct drm_crtc *crtc)
2635{
Chris Wilson0f911282012-04-17 10:05:38 +01002636 struct drm_device *dev = crtc->dev;
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01002637
2638 if (crtc->fb == NULL)
2639 return;
2640
Chris Wilson0f911282012-04-17 10:05:38 +01002641 mutex_lock(&dev->struct_mutex);
2642 intel_finish_fb(crtc->fb);
2643 mutex_unlock(&dev->struct_mutex);
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01002644}
2645
Jesse Barnes040484a2011-01-03 12:14:26 -08002646static bool intel_crtc_driving_pch(struct drm_crtc *crtc)
2647{
2648 struct drm_device *dev = crtc->dev;
2649 struct drm_mode_config *mode_config = &dev->mode_config;
2650 struct intel_encoder *encoder;
2651
2652 /*
2653 * If there's a non-PCH eDP on this crtc, it must be DP_A, and that
2654 * must be driven by its own crtc; no sharing is possible.
2655 */
2656 list_for_each_entry(encoder, &mode_config->encoder_list, base.head) {
2657 if (encoder->base.crtc != crtc)
2658 continue;
2659
Eugeni Dodonov6ee8bab2012-05-09 20:30:31 -03002660 /* On Haswell, LPT PCH handles the VGA connection via FDI, and Haswell
2661 * CPU handles all others */
2662 if (IS_HASWELL(dev)) {
2663 /* It is still unclear how this will work on PPT, so throw up a warning */
2664 WARN_ON(!HAS_PCH_LPT(dev));
2665
2666 if (encoder->type == DRM_MODE_ENCODER_DAC) {
2667 DRM_DEBUG_KMS("Haswell detected DAC encoder, assuming is PCH\n");
2668 return true;
2669 } else {
2670 DRM_DEBUG_KMS("Haswell detected encoder %d, assuming is CPU\n",
2671 encoder->type);
2672 return false;
2673 }
2674 }
2675
Jesse Barnes040484a2011-01-03 12:14:26 -08002676 switch (encoder->type) {
2677 case INTEL_OUTPUT_EDP:
2678 if (!intel_encoder_is_pch_edp(&encoder->base))
2679 return false;
2680 continue;
2681 }
2682 }
2683
2684 return true;
2685}
2686
Eugeni Dodonove615efe2012-05-09 15:37:26 -03002687/* Program iCLKIP clock to the desired frequency */
2688static void lpt_program_iclkip(struct drm_crtc *crtc)
2689{
2690 struct drm_device *dev = crtc->dev;
2691 struct drm_i915_private *dev_priv = dev->dev_private;
2692 u32 divsel, phaseinc, auxdiv, phasedir = 0;
2693 u32 temp;
2694
2695 /* It is necessary to ungate the pixclk gate prior to programming
2696 * the divisors, and gate it back when it is done.
2697 */
2698 I915_WRITE(PIXCLK_GATE, PIXCLK_GATE_GATE);
2699
2700 /* Disable SSCCTL */
2701 intel_sbi_write(dev_priv, SBI_SSCCTL6,
2702 intel_sbi_read(dev_priv, SBI_SSCCTL6) |
2703 SBI_SSCCTL_DISABLE);
2704
2705 /* 20MHz is a corner case which is out of range for the 7-bit divisor */
2706 if (crtc->mode.clock == 20000) {
2707 auxdiv = 1;
2708 divsel = 0x41;
2709 phaseinc = 0x20;
2710 } else {
2711 /* The iCLK virtual clock root frequency is in MHz,
2712 * but the crtc->mode.clock in in KHz. To get the divisors,
2713 * it is necessary to divide one by another, so we
2714 * convert the virtual clock precision to KHz here for higher
2715 * precision.
2716 */
2717 u32 iclk_virtual_root_freq = 172800 * 1000;
2718 u32 iclk_pi_range = 64;
2719 u32 desired_divisor, msb_divisor_value, pi_value;
2720
2721 desired_divisor = (iclk_virtual_root_freq / crtc->mode.clock);
2722 msb_divisor_value = desired_divisor / iclk_pi_range;
2723 pi_value = desired_divisor % iclk_pi_range;
2724
2725 auxdiv = 0;
2726 divsel = msb_divisor_value - 2;
2727 phaseinc = pi_value;
2728 }
2729
2730 /* This should not happen with any sane values */
2731 WARN_ON(SBI_SSCDIVINTPHASE_DIVSEL(divsel) &
2732 ~SBI_SSCDIVINTPHASE_DIVSEL_MASK);
2733 WARN_ON(SBI_SSCDIVINTPHASE_DIR(phasedir) &
2734 ~SBI_SSCDIVINTPHASE_INCVAL_MASK);
2735
2736 DRM_DEBUG_KMS("iCLKIP clock: found settings for %dKHz refresh rate: auxdiv=%x, divsel=%x, phasedir=%x, phaseinc=%x\n",
2737 crtc->mode.clock,
2738 auxdiv,
2739 divsel,
2740 phasedir,
2741 phaseinc);
2742
2743 /* Program SSCDIVINTPHASE6 */
2744 temp = intel_sbi_read(dev_priv, SBI_SSCDIVINTPHASE6);
2745 temp &= ~SBI_SSCDIVINTPHASE_DIVSEL_MASK;
2746 temp |= SBI_SSCDIVINTPHASE_DIVSEL(divsel);
2747 temp &= ~SBI_SSCDIVINTPHASE_INCVAL_MASK;
2748 temp |= SBI_SSCDIVINTPHASE_INCVAL(phaseinc);
2749 temp |= SBI_SSCDIVINTPHASE_DIR(phasedir);
2750 temp |= SBI_SSCDIVINTPHASE_PROPAGATE;
2751
2752 intel_sbi_write(dev_priv,
2753 SBI_SSCDIVINTPHASE6,
2754 temp);
2755
2756 /* Program SSCAUXDIV */
2757 temp = intel_sbi_read(dev_priv, SBI_SSCAUXDIV6);
2758 temp &= ~SBI_SSCAUXDIV_FINALDIV2SEL(1);
2759 temp |= SBI_SSCAUXDIV_FINALDIV2SEL(auxdiv);
2760 intel_sbi_write(dev_priv,
2761 SBI_SSCAUXDIV6,
2762 temp);
2763
2764
2765 /* Enable modulator and associated divider */
2766 temp = intel_sbi_read(dev_priv, SBI_SSCCTL6);
2767 temp &= ~SBI_SSCCTL_DISABLE;
2768 intel_sbi_write(dev_priv,
2769 SBI_SSCCTL6,
2770 temp);
2771
2772 /* Wait for initialization time */
2773 udelay(24);
2774
2775 I915_WRITE(PIXCLK_GATE, PIXCLK_GATE_UNGATE);
2776}
2777
Jesse Barnesf67a5592011-01-05 10:31:48 -08002778/*
2779 * Enable PCH resources required for PCH ports:
2780 * - PCH PLLs
2781 * - FDI training & RX/TX
2782 * - update transcoder timings
2783 * - DP transcoding bits
2784 * - transcoder
2785 */
2786static void ironlake_pch_enable(struct drm_crtc *crtc)
Jesse Barnes79e53942008-11-07 14:24:08 -08002787{
2788 struct drm_device *dev = crtc->dev;
Zhenyu Wang2c072452009-06-05 15:38:42 +08002789 struct drm_i915_private *dev_priv = dev->dev_private;
2790 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2791 int pipe = intel_crtc->pipe;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01002792 u32 reg, temp;
Jesse Barnes6be4a602010-09-10 10:26:01 -07002793
Chris Wilsone7e164d2012-05-11 09:21:25 +01002794 assert_transcoder_disabled(dev_priv, pipe);
2795
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002796 /* For PCH output, training FDI link */
Jesse Barnes674cf962011-04-28 14:27:04 -07002797 dev_priv->display.fdi_link_train(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002798
Chris Wilson6f13b7b2012-05-13 09:54:09 +01002799 intel_enable_pch_pll(intel_crtc);
2800
Eugeni Dodonove615efe2012-05-09 15:37:26 -03002801 if (HAS_PCH_LPT(dev)) {
2802 DRM_DEBUG_KMS("LPT detected: programming iCLKIP\n");
2803 lpt_program_iclkip(crtc);
2804 } else if (HAS_PCH_CPT(dev)) {
Jesse Barnesee7b9f92012-04-20 17:11:53 +01002805 u32 sel;
Jesse Barnes4b645f12011-10-12 09:51:31 -07002806
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002807 temp = I915_READ(PCH_DPLL_SEL);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01002808 switch (pipe) {
2809 default:
2810 case 0:
2811 temp |= TRANSA_DPLL_ENABLE;
2812 sel = TRANSA_DPLLB_SEL;
2813 break;
2814 case 1:
2815 temp |= TRANSB_DPLL_ENABLE;
2816 sel = TRANSB_DPLLB_SEL;
2817 break;
2818 case 2:
2819 temp |= TRANSC_DPLL_ENABLE;
2820 sel = TRANSC_DPLLB_SEL;
2821 break;
Jesse Barnesd64311a2011-10-12 15:01:33 -07002822 }
Jesse Barnesee7b9f92012-04-20 17:11:53 +01002823 if (intel_crtc->pch_pll->pll_reg == _PCH_DPLL_B)
2824 temp |= sel;
2825 else
2826 temp &= ~sel;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002827 I915_WRITE(PCH_DPLL_SEL, temp);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002828 }
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002829
Jesse Barnesd9b6cb52011-01-04 15:09:35 -08002830 /* set transcoder timing, panel must allow it */
2831 assert_panel_unlocked(dev_priv, pipe);
Chris Wilson5eddb702010-09-11 13:48:45 +01002832 I915_WRITE(TRANS_HTOTAL(pipe), I915_READ(HTOTAL(pipe)));
2833 I915_WRITE(TRANS_HBLANK(pipe), I915_READ(HBLANK(pipe)));
2834 I915_WRITE(TRANS_HSYNC(pipe), I915_READ(HSYNC(pipe)));
2835
2836 I915_WRITE(TRANS_VTOTAL(pipe), I915_READ(VTOTAL(pipe)));
2837 I915_WRITE(TRANS_VBLANK(pipe), I915_READ(VBLANK(pipe)));
2838 I915_WRITE(TRANS_VSYNC(pipe), I915_READ(VSYNC(pipe)));
Daniel Vetter0529a0d2012-01-28 14:49:24 +01002839 I915_WRITE(TRANS_VSYNCSHIFT(pipe), I915_READ(VSYNCSHIFT(pipe)));
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002840
Eugeni Dodonovf57e1e32012-05-09 15:37:14 -03002841 if (!IS_HASWELL(dev))
2842 intel_fdi_normal_train(crtc);
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08002843
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002844 /* For PCH DP, enable TRANS_DP_CTL */
2845 if (HAS_PCH_CPT(dev) &&
Keith Packard417e8222011-11-01 19:54:11 -07002846 (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT) ||
2847 intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP))) {
Jesse Barnes9325c9f2011-06-24 12:19:21 -07002848 u32 bpc = (I915_READ(PIPECONF(pipe)) & PIPE_BPC_MASK) >> 5;
Chris Wilson5eddb702010-09-11 13:48:45 +01002849 reg = TRANS_DP_CTL(pipe);
2850 temp = I915_READ(reg);
2851 temp &= ~(TRANS_DP_PORT_SEL_MASK |
Eric Anholt220cad32010-11-18 09:32:58 +08002852 TRANS_DP_SYNC_MASK |
2853 TRANS_DP_BPC_MASK);
Chris Wilson5eddb702010-09-11 13:48:45 +01002854 temp |= (TRANS_DP_OUTPUT_ENABLE |
2855 TRANS_DP_ENH_FRAMING);
Jesse Barnes9325c9f2011-06-24 12:19:21 -07002856 temp |= bpc << 9; /* same format but at 11:9 */
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002857
2858 if (crtc->mode.flags & DRM_MODE_FLAG_PHSYNC)
Chris Wilson5eddb702010-09-11 13:48:45 +01002859 temp |= TRANS_DP_HSYNC_ACTIVE_HIGH;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002860 if (crtc->mode.flags & DRM_MODE_FLAG_PVSYNC)
Chris Wilson5eddb702010-09-11 13:48:45 +01002861 temp |= TRANS_DP_VSYNC_ACTIVE_HIGH;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002862
2863 switch (intel_trans_dp_port_sel(crtc)) {
2864 case PCH_DP_B:
Chris Wilson5eddb702010-09-11 13:48:45 +01002865 temp |= TRANS_DP_PORT_SEL_B;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002866 break;
2867 case PCH_DP_C:
Chris Wilson5eddb702010-09-11 13:48:45 +01002868 temp |= TRANS_DP_PORT_SEL_C;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002869 break;
2870 case PCH_DP_D:
Chris Wilson5eddb702010-09-11 13:48:45 +01002871 temp |= TRANS_DP_PORT_SEL_D;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002872 break;
2873 default:
2874 DRM_DEBUG_KMS("Wrong PCH DP port return. Guess port B\n");
Chris Wilson5eddb702010-09-11 13:48:45 +01002875 temp |= TRANS_DP_PORT_SEL_B;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002876 break;
2877 }
2878
Chris Wilson5eddb702010-09-11 13:48:45 +01002879 I915_WRITE(reg, temp);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002880 }
2881
Jesse Barnes040484a2011-01-03 12:14:26 -08002882 intel_enable_transcoder(dev_priv, pipe);
Jesse Barnesf67a5592011-01-05 10:31:48 -08002883}
2884
Jesse Barnesee7b9f92012-04-20 17:11:53 +01002885static void intel_put_pch_pll(struct intel_crtc *intel_crtc)
2886{
2887 struct intel_pch_pll *pll = intel_crtc->pch_pll;
2888
2889 if (pll == NULL)
2890 return;
2891
2892 if (pll->refcount == 0) {
2893 WARN(1, "bad PCH PLL refcount\n");
2894 return;
2895 }
2896
2897 --pll->refcount;
2898 intel_crtc->pch_pll = NULL;
2899}
2900
2901static struct intel_pch_pll *intel_get_pch_pll(struct intel_crtc *intel_crtc, u32 dpll, u32 fp)
2902{
2903 struct drm_i915_private *dev_priv = intel_crtc->base.dev->dev_private;
2904 struct intel_pch_pll *pll;
2905 int i;
2906
2907 pll = intel_crtc->pch_pll;
2908 if (pll) {
2909 DRM_DEBUG_KMS("CRTC:%d reusing existing PCH PLL %x\n",
2910 intel_crtc->base.base.id, pll->pll_reg);
2911 goto prepare;
2912 }
2913
Daniel Vetter98b6bd92012-05-20 20:00:25 +02002914 if (HAS_PCH_IBX(dev_priv->dev)) {
2915 /* Ironlake PCH has a fixed PLL->PCH pipe mapping. */
2916 i = intel_crtc->pipe;
2917 pll = &dev_priv->pch_plls[i];
2918
2919 DRM_DEBUG_KMS("CRTC:%d using pre-allocated PCH PLL %x\n",
2920 intel_crtc->base.base.id, pll->pll_reg);
2921
2922 goto found;
2923 }
2924
Jesse Barnesee7b9f92012-04-20 17:11:53 +01002925 for (i = 0; i < dev_priv->num_pch_pll; i++) {
2926 pll = &dev_priv->pch_plls[i];
2927
2928 /* Only want to check enabled timings first */
2929 if (pll->refcount == 0)
2930 continue;
2931
2932 if (dpll == (I915_READ(pll->pll_reg) & 0x7fffffff) &&
2933 fp == I915_READ(pll->fp0_reg)) {
2934 DRM_DEBUG_KMS("CRTC:%d sharing existing PCH PLL %x (refcount %d, ative %d)\n",
2935 intel_crtc->base.base.id,
2936 pll->pll_reg, pll->refcount, pll->active);
2937
2938 goto found;
2939 }
2940 }
2941
2942 /* Ok no matching timings, maybe there's a free one? */
2943 for (i = 0; i < dev_priv->num_pch_pll; i++) {
2944 pll = &dev_priv->pch_plls[i];
2945 if (pll->refcount == 0) {
2946 DRM_DEBUG_KMS("CRTC:%d allocated PCH PLL %x\n",
2947 intel_crtc->base.base.id, pll->pll_reg);
2948 goto found;
2949 }
2950 }
2951
2952 return NULL;
2953
2954found:
2955 intel_crtc->pch_pll = pll;
2956 pll->refcount++;
2957 DRM_DEBUG_DRIVER("using pll %d for pipe %d\n", i, intel_crtc->pipe);
2958prepare: /* separate function? */
2959 DRM_DEBUG_DRIVER("switching PLL %x off\n", pll->pll_reg);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01002960
Chris Wilsone04c7352012-05-02 20:43:56 +01002961 /* Wait for the clocks to stabilize before rewriting the regs */
2962 I915_WRITE(pll->pll_reg, dpll & ~DPLL_VCO_ENABLE);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01002963 POSTING_READ(pll->pll_reg);
2964 udelay(150);
Chris Wilsone04c7352012-05-02 20:43:56 +01002965
2966 I915_WRITE(pll->fp0_reg, fp);
2967 I915_WRITE(pll->pll_reg, dpll & ~DPLL_VCO_ENABLE);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01002968 pll->on = false;
2969 return pll;
2970}
2971
Jesse Barnesd4270e52011-10-11 10:43:02 -07002972void intel_cpt_verify_modeset(struct drm_device *dev, int pipe)
2973{
2974 struct drm_i915_private *dev_priv = dev->dev_private;
2975 int dslreg = PIPEDSL(pipe), tc2reg = TRANS_CHICKEN2(pipe);
2976 u32 temp;
2977
2978 temp = I915_READ(dslreg);
2979 udelay(500);
2980 if (wait_for(I915_READ(dslreg) != temp, 5)) {
2981 /* Without this, mode sets may fail silently on FDI */
2982 I915_WRITE(tc2reg, TRANS_AUTOTRAIN_GEN_STALL_DIS);
2983 udelay(250);
2984 I915_WRITE(tc2reg, 0);
2985 if (wait_for(I915_READ(dslreg) != temp, 5))
2986 DRM_ERROR("mode set failed: pipe %d stuck\n", pipe);
2987 }
2988}
2989
Jesse Barnesf67a5592011-01-05 10:31:48 -08002990static void ironlake_crtc_enable(struct drm_crtc *crtc)
2991{
2992 struct drm_device *dev = crtc->dev;
2993 struct drm_i915_private *dev_priv = dev->dev_private;
2994 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2995 int pipe = intel_crtc->pipe;
2996 int plane = intel_crtc->plane;
2997 u32 temp;
2998 bool is_pch_port;
2999
3000 if (intel_crtc->active)
3001 return;
3002
3003 intel_crtc->active = true;
3004 intel_update_watermarks(dev);
3005
3006 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
3007 temp = I915_READ(PCH_LVDS);
3008 if ((temp & LVDS_PORT_EN) == 0)
3009 I915_WRITE(PCH_LVDS, temp | LVDS_PORT_EN);
3010 }
3011
3012 is_pch_port = intel_crtc_driving_pch(crtc);
3013
3014 if (is_pch_port)
Jesse Barnes357555c2011-04-28 15:09:55 -07003015 ironlake_fdi_pll_enable(crtc);
Jesse Barnesf67a5592011-01-05 10:31:48 -08003016 else
3017 ironlake_fdi_disable(crtc);
3018
3019 /* Enable panel fitting for LVDS */
3020 if (dev_priv->pch_pf_size &&
3021 (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) || HAS_eDP)) {
3022 /* Force use of hard-coded filter coefficients
3023 * as some pre-programmed values are broken,
3024 * e.g. x201.
3025 */
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08003026 I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3);
3027 I915_WRITE(PF_WIN_POS(pipe), dev_priv->pch_pf_pos);
3028 I915_WRITE(PF_WIN_SZ(pipe), dev_priv->pch_pf_size);
Jesse Barnesf67a5592011-01-05 10:31:48 -08003029 }
3030
Jesse Barnes9c54c0d2011-06-15 23:32:33 +02003031 /*
3032 * On ILK+ LUT must be loaded before the pipe is running but with
3033 * clocks enabled
3034 */
3035 intel_crtc_load_lut(crtc);
3036
Jesse Barnesf67a5592011-01-05 10:31:48 -08003037 intel_enable_pipe(dev_priv, pipe, is_pch_port);
3038 intel_enable_plane(dev_priv, plane, pipe);
3039
3040 if (is_pch_port)
3041 ironlake_pch_enable(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003042
Ben Widawskyd1ebd8162011-04-25 20:11:50 +01003043 mutex_lock(&dev->struct_mutex);
Chris Wilsonbed4a672010-09-11 10:47:47 +01003044 intel_update_fbc(dev);
Ben Widawskyd1ebd8162011-04-25 20:11:50 +01003045 mutex_unlock(&dev->struct_mutex);
3046
Chris Wilson6b383a72010-09-13 13:54:26 +01003047 intel_crtc_update_cursor(crtc, true);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003048}
3049
3050static void ironlake_crtc_disable(struct drm_crtc *crtc)
3051{
3052 struct drm_device *dev = crtc->dev;
3053 struct drm_i915_private *dev_priv = dev->dev_private;
3054 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3055 int pipe = intel_crtc->pipe;
3056 int plane = intel_crtc->plane;
Chris Wilson5eddb702010-09-11 13:48:45 +01003057 u32 reg, temp;
Jesse Barnes6be4a602010-09-10 10:26:01 -07003058
Chris Wilsonf7abfe82010-09-13 14:19:16 +01003059 if (!intel_crtc->active)
3060 return;
3061
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01003062 intel_crtc_wait_for_pending_flips(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003063 drm_vblank_off(dev, pipe);
Chris Wilson6b383a72010-09-13 13:54:26 +01003064 intel_crtc_update_cursor(crtc, false);
Chris Wilson5eddb702010-09-11 13:48:45 +01003065
Jesse Barnesb24e7172011-01-04 15:09:30 -08003066 intel_disable_plane(dev_priv, plane, pipe);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003067
Chris Wilson973d04f2011-07-08 12:22:37 +01003068 if (dev_priv->cfb_plane == plane)
3069 intel_disable_fbc(dev);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003070
Jesse Barnesb24e7172011-01-04 15:09:30 -08003071 intel_disable_pipe(dev_priv, pipe);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003072
Jesse Barnes6be4a602010-09-10 10:26:01 -07003073 /* Disable PF */
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08003074 I915_WRITE(PF_CTL(pipe), 0);
3075 I915_WRITE(PF_WIN_SZ(pipe), 0);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003076
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003077 ironlake_fdi_disable(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003078
Jesse Barnes47a05ec2011-02-07 13:46:40 -08003079 /* This is a horrible layering violation; we should be doing this in
3080 * the connector/encoder ->prepare instead, but we don't always have
3081 * enough information there about the config to know whether it will
3082 * actually be necessary or just cause undesired flicker.
3083 */
3084 intel_disable_pch_ports(dev_priv, pipe);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003085
Jesse Barnes040484a2011-01-03 12:14:26 -08003086 intel_disable_transcoder(dev_priv, pipe);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003087
Jesse Barnes6be4a602010-09-10 10:26:01 -07003088 if (HAS_PCH_CPT(dev)) {
3089 /* disable TRANS_DP_CTL */
Chris Wilson5eddb702010-09-11 13:48:45 +01003090 reg = TRANS_DP_CTL(pipe);
3091 temp = I915_READ(reg);
3092 temp &= ~(TRANS_DP_OUTPUT_ENABLE | TRANS_DP_PORT_SEL_MASK);
Eric Anholtcb3543c2011-02-02 12:08:07 -08003093 temp |= TRANS_DP_PORT_SEL_NONE;
Chris Wilson5eddb702010-09-11 13:48:45 +01003094 I915_WRITE(reg, temp);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003095
3096 /* disable DPLL_SEL */
3097 temp = I915_READ(PCH_DPLL_SEL);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08003098 switch (pipe) {
3099 case 0:
Jesse Barnesd64311a2011-10-12 15:01:33 -07003100 temp &= ~(TRANSA_DPLL_ENABLE | TRANSA_DPLLB_SEL);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08003101 break;
3102 case 1:
Jesse Barnes6be4a602010-09-10 10:26:01 -07003103 temp &= ~(TRANSB_DPLL_ENABLE | TRANSB_DPLLB_SEL);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08003104 break;
3105 case 2:
Jesse Barnes4b645f12011-10-12 09:51:31 -07003106 /* C shares PLL A or B */
Jesse Barnesd64311a2011-10-12 15:01:33 -07003107 temp &= ~(TRANSC_DPLL_ENABLE | TRANSC_DPLLB_SEL);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08003108 break;
3109 default:
3110 BUG(); /* wtf */
3111 }
Jesse Barnes6be4a602010-09-10 10:26:01 -07003112 I915_WRITE(PCH_DPLL_SEL, temp);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003113 }
3114
3115 /* disable PCH DPLL */
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003116 intel_disable_pch_pll(intel_crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003117
3118 /* Switch from PCDclk to Rawclk */
Chris Wilson5eddb702010-09-11 13:48:45 +01003119 reg = FDI_RX_CTL(pipe);
3120 temp = I915_READ(reg);
3121 I915_WRITE(reg, temp & ~FDI_PCDCLK);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003122
3123 /* Disable CPU FDI TX PLL */
Chris Wilson5eddb702010-09-11 13:48:45 +01003124 reg = FDI_TX_CTL(pipe);
3125 temp = I915_READ(reg);
3126 I915_WRITE(reg, temp & ~FDI_TX_PLL_ENABLE);
3127
3128 POSTING_READ(reg);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003129 udelay(100);
3130
Chris Wilson5eddb702010-09-11 13:48:45 +01003131 reg = FDI_RX_CTL(pipe);
3132 temp = I915_READ(reg);
3133 I915_WRITE(reg, temp & ~FDI_RX_PLL_ENABLE);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003134
3135 /* Wait for the clocks to turn off. */
Chris Wilson5eddb702010-09-11 13:48:45 +01003136 POSTING_READ(reg);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003137 udelay(100);
Chris Wilson6b383a72010-09-13 13:54:26 +01003138
Chris Wilsonf7abfe82010-09-13 14:19:16 +01003139 intel_crtc->active = false;
Chris Wilson6b383a72010-09-13 13:54:26 +01003140 intel_update_watermarks(dev);
Ben Widawskyd1ebd8162011-04-25 20:11:50 +01003141
3142 mutex_lock(&dev->struct_mutex);
Chris Wilson6b383a72010-09-13 13:54:26 +01003143 intel_update_fbc(dev);
Ben Widawskyd1ebd8162011-04-25 20:11:50 +01003144 mutex_unlock(&dev->struct_mutex);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003145}
3146
3147static void ironlake_crtc_dpms(struct drm_crtc *crtc, int mode)
3148{
3149 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3150 int pipe = intel_crtc->pipe;
3151 int plane = intel_crtc->plane;
3152
Zhenyu Wang2c072452009-06-05 15:38:42 +08003153 /* XXX: When our outputs are all unaware of DPMS modes other than off
3154 * and on, we should map those modes to DRM_MODE_DPMS_OFF in the CRTC.
3155 */
3156 switch (mode) {
3157 case DRM_MODE_DPMS_ON:
3158 case DRM_MODE_DPMS_STANDBY:
3159 case DRM_MODE_DPMS_SUSPEND:
Chris Wilson868dc582010-08-07 11:01:31 +01003160 DRM_DEBUG_KMS("crtc %d/%d dpms on\n", pipe, plane);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003161 ironlake_crtc_enable(crtc);
Chris Wilson868dc582010-08-07 11:01:31 +01003162 break;
Zhao Yakuib52eb4d2010-06-12 14:32:27 +08003163
Zhenyu Wang2c072452009-06-05 15:38:42 +08003164 case DRM_MODE_DPMS_OFF:
Chris Wilson868dc582010-08-07 11:01:31 +01003165 DRM_DEBUG_KMS("crtc %d/%d dpms off\n", pipe, plane);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003166 ironlake_crtc_disable(crtc);
Zhenyu Wang2c072452009-06-05 15:38:42 +08003167 break;
3168 }
3169}
3170
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003171static void ironlake_crtc_off(struct drm_crtc *crtc)
3172{
3173 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3174 intel_put_pch_pll(intel_crtc);
3175}
3176
Daniel Vetter02e792f2009-09-15 22:57:34 +02003177static void intel_crtc_dpms_overlay(struct intel_crtc *intel_crtc, bool enable)
3178{
Daniel Vetter02e792f2009-09-15 22:57:34 +02003179 if (!enable && intel_crtc->overlay) {
Chris Wilson23f09ce2010-08-12 13:53:37 +01003180 struct drm_device *dev = intel_crtc->base.dev;
Chris Wilsonce453d82011-02-21 14:43:56 +00003181 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter03f77ea2009-09-15 22:57:37 +02003182
Chris Wilson23f09ce2010-08-12 13:53:37 +01003183 mutex_lock(&dev->struct_mutex);
Chris Wilsonce453d82011-02-21 14:43:56 +00003184 dev_priv->mm.interruptible = false;
3185 (void) intel_overlay_switch_off(intel_crtc->overlay);
3186 dev_priv->mm.interruptible = true;
Chris Wilson23f09ce2010-08-12 13:53:37 +01003187 mutex_unlock(&dev->struct_mutex);
Daniel Vetter02e792f2009-09-15 22:57:34 +02003188 }
Daniel Vetter02e792f2009-09-15 22:57:34 +02003189
Chris Wilson5dcdbcb2010-08-12 13:50:28 +01003190 /* Let userspace switch the overlay on again. In most cases userspace
3191 * has to recompute where to put it anyway.
3192 */
Daniel Vetter02e792f2009-09-15 22:57:34 +02003193}
3194
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003195static void i9xx_crtc_enable(struct drm_crtc *crtc)
Zhenyu Wang2c072452009-06-05 15:38:42 +08003196{
3197 struct drm_device *dev = crtc->dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08003198 struct drm_i915_private *dev_priv = dev->dev_private;
3199 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3200 int pipe = intel_crtc->pipe;
Jesse Barnes80824002009-09-10 15:28:06 -07003201 int plane = intel_crtc->plane;
Jesse Barnes79e53942008-11-07 14:24:08 -08003202
Chris Wilsonf7abfe82010-09-13 14:19:16 +01003203 if (intel_crtc->active)
3204 return;
3205
3206 intel_crtc->active = true;
Chris Wilson6b383a72010-09-13 13:54:26 +01003207 intel_update_watermarks(dev);
3208
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08003209 intel_enable_pll(dev_priv, pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08003210 intel_enable_pipe(dev_priv, pipe, false);
Jesse Barnesb24e7172011-01-04 15:09:30 -08003211 intel_enable_plane(dev_priv, plane, pipe);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003212
3213 intel_crtc_load_lut(crtc);
Chris Wilsonbed4a672010-09-11 10:47:47 +01003214 intel_update_fbc(dev);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003215
3216 /* Give the overlay scaler a chance to enable if it's on this pipe */
3217 intel_crtc_dpms_overlay(intel_crtc, true);
Chris Wilson6b383a72010-09-13 13:54:26 +01003218 intel_crtc_update_cursor(crtc, true);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003219}
3220
3221static void i9xx_crtc_disable(struct drm_crtc *crtc)
3222{
3223 struct drm_device *dev = crtc->dev;
3224 struct drm_i915_private *dev_priv = dev->dev_private;
3225 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3226 int pipe = intel_crtc->pipe;
3227 int plane = intel_crtc->plane;
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003228
Chris Wilsonf7abfe82010-09-13 14:19:16 +01003229 if (!intel_crtc->active)
3230 return;
3231
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003232 /* Give the overlay scaler a chance to disable if it's on this pipe */
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01003233 intel_crtc_wait_for_pending_flips(crtc);
3234 drm_vblank_off(dev, pipe);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003235 intel_crtc_dpms_overlay(intel_crtc, false);
Chris Wilson6b383a72010-09-13 13:54:26 +01003236 intel_crtc_update_cursor(crtc, false);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003237
Chris Wilson973d04f2011-07-08 12:22:37 +01003238 if (dev_priv->cfb_plane == plane)
3239 intel_disable_fbc(dev);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003240
Jesse Barnesb24e7172011-01-04 15:09:30 -08003241 intel_disable_plane(dev_priv, plane, pipe);
Jesse Barnesb24e7172011-01-04 15:09:30 -08003242 intel_disable_pipe(dev_priv, pipe);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08003243 intel_disable_pll(dev_priv, pipe);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003244
Chris Wilsonf7abfe82010-09-13 14:19:16 +01003245 intel_crtc->active = false;
Chris Wilson6b383a72010-09-13 13:54:26 +01003246 intel_update_fbc(dev);
3247 intel_update_watermarks(dev);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003248}
3249
3250static void i9xx_crtc_dpms(struct drm_crtc *crtc, int mode)
3251{
Jesse Barnes79e53942008-11-07 14:24:08 -08003252 /* XXX: When our outputs are all unaware of DPMS modes other than off
3253 * and on, we should map those modes to DRM_MODE_DPMS_OFF in the CRTC.
3254 */
3255 switch (mode) {
3256 case DRM_MODE_DPMS_ON:
3257 case DRM_MODE_DPMS_STANDBY:
3258 case DRM_MODE_DPMS_SUSPEND:
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003259 i9xx_crtc_enable(crtc);
3260 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08003261 case DRM_MODE_DPMS_OFF:
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003262 i9xx_crtc_disable(crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08003263 break;
3264 }
Zhenyu Wang2c072452009-06-05 15:38:42 +08003265}
3266
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003267static void i9xx_crtc_off(struct drm_crtc *crtc)
3268{
3269}
3270
Zhenyu Wang2c072452009-06-05 15:38:42 +08003271/**
3272 * Sets the power management mode of the pipe and plane.
Zhenyu Wang2c072452009-06-05 15:38:42 +08003273 */
3274static void intel_crtc_dpms(struct drm_crtc *crtc, int mode)
3275{
3276 struct drm_device *dev = crtc->dev;
Jesse Barnese70236a2009-09-21 10:42:27 -07003277 struct drm_i915_private *dev_priv = dev->dev_private;
Zhenyu Wang2c072452009-06-05 15:38:42 +08003278 struct drm_i915_master_private *master_priv;
3279 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3280 int pipe = intel_crtc->pipe;
3281 bool enabled;
3282
Chris Wilson032d2a02010-09-06 16:17:22 +01003283 if (intel_crtc->dpms_mode == mode)
3284 return;
3285
Chris Wilsondebcadd2010-08-07 11:01:33 +01003286 intel_crtc->dpms_mode = mode;
Chris Wilsondebcadd2010-08-07 11:01:33 +01003287
Jesse Barnese70236a2009-09-21 10:42:27 -07003288 dev_priv->display.dpms(crtc, mode);
Jesse Barnes79e53942008-11-07 14:24:08 -08003289
3290 if (!dev->primary->master)
3291 return;
3292
3293 master_priv = dev->primary->master->driver_priv;
3294 if (!master_priv->sarea_priv)
3295 return;
3296
3297 enabled = crtc->enabled && mode != DRM_MODE_DPMS_OFF;
3298
3299 switch (pipe) {
3300 case 0:
3301 master_priv->sarea_priv->pipeA_w = enabled ? crtc->mode.hdisplay : 0;
3302 master_priv->sarea_priv->pipeA_h = enabled ? crtc->mode.vdisplay : 0;
3303 break;
3304 case 1:
3305 master_priv->sarea_priv->pipeB_w = enabled ? crtc->mode.hdisplay : 0;
3306 master_priv->sarea_priv->pipeB_h = enabled ? crtc->mode.vdisplay : 0;
3307 break;
3308 default:
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08003309 DRM_ERROR("Can't update pipe %c in SAREA\n", pipe_name(pipe));
Jesse Barnes79e53942008-11-07 14:24:08 -08003310 break;
3311 }
Jesse Barnes79e53942008-11-07 14:24:08 -08003312}
3313
Chris Wilsoncdd59982010-09-08 16:30:16 +01003314static void intel_crtc_disable(struct drm_crtc *crtc)
3315{
3316 struct drm_crtc_helper_funcs *crtc_funcs = crtc->helper_private;
3317 struct drm_device *dev = crtc->dev;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003318 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsoncdd59982010-09-08 16:30:16 +01003319
3320 crtc_funcs->dpms(crtc, DRM_MODE_DPMS_OFF);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003321 dev_priv->display.off(crtc);
3322
Chris Wilson931872f2012-01-16 23:01:13 +00003323 assert_plane_disabled(dev->dev_private, to_intel_crtc(crtc)->plane);
3324 assert_pipe_disabled(dev->dev_private, to_intel_crtc(crtc)->pipe);
Chris Wilsoncdd59982010-09-08 16:30:16 +01003325
3326 if (crtc->fb) {
3327 mutex_lock(&dev->struct_mutex);
Chris Wilson1690e1e2011-12-14 13:57:08 +01003328 intel_unpin_fb_obj(to_intel_framebuffer(crtc->fb)->obj);
Chris Wilsoncdd59982010-09-08 16:30:16 +01003329 mutex_unlock(&dev->struct_mutex);
3330 }
3331}
3332
Jesse Barnes7e7d76c2010-09-10 10:47:20 -07003333/* Prepare for a mode set.
3334 *
3335 * Note we could be a lot smarter here. We need to figure out which outputs
3336 * will be enabled, which disabled (in short, how the config will changes)
3337 * and perform the minimum necessary steps to accomplish that, e.g. updating
3338 * watermarks, FBC configuration, making sure PLLs are programmed correctly,
3339 * panel fitting is in the proper state, etc.
3340 */
3341static void i9xx_crtc_prepare(struct drm_crtc *crtc)
Jesse Barnes79e53942008-11-07 14:24:08 -08003342{
Jesse Barnes7e7d76c2010-09-10 10:47:20 -07003343 i9xx_crtc_disable(crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08003344}
3345
Jesse Barnes7e7d76c2010-09-10 10:47:20 -07003346static void i9xx_crtc_commit(struct drm_crtc *crtc)
Jesse Barnes79e53942008-11-07 14:24:08 -08003347{
Jesse Barnes7e7d76c2010-09-10 10:47:20 -07003348 i9xx_crtc_enable(crtc);
Jesse Barnes7e7d76c2010-09-10 10:47:20 -07003349}
3350
3351static void ironlake_crtc_prepare(struct drm_crtc *crtc)
3352{
Jesse Barnes7e7d76c2010-09-10 10:47:20 -07003353 ironlake_crtc_disable(crtc);
Jesse Barnes7e7d76c2010-09-10 10:47:20 -07003354}
3355
3356static void ironlake_crtc_commit(struct drm_crtc *crtc)
3357{
Jesse Barnes7e7d76c2010-09-10 10:47:20 -07003358 ironlake_crtc_enable(crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08003359}
3360
Akshay Joshi0206e352011-08-16 15:34:10 -04003361void intel_encoder_prepare(struct drm_encoder *encoder)
Jesse Barnes79e53942008-11-07 14:24:08 -08003362{
3363 struct drm_encoder_helper_funcs *encoder_funcs = encoder->helper_private;
3364 /* lvds has its own version of prepare see intel_lvds_prepare */
3365 encoder_funcs->dpms(encoder, DRM_MODE_DPMS_OFF);
3366}
3367
Akshay Joshi0206e352011-08-16 15:34:10 -04003368void intel_encoder_commit(struct drm_encoder *encoder)
Jesse Barnes79e53942008-11-07 14:24:08 -08003369{
3370 struct drm_encoder_helper_funcs *encoder_funcs = encoder->helper_private;
Jesse Barnesd4270e52011-10-11 10:43:02 -07003371 struct drm_device *dev = encoder->dev;
Paulo Zanonid47d7cb2012-05-04 17:18:23 -03003372 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
Jesse Barnesd4270e52011-10-11 10:43:02 -07003373
Jesse Barnes79e53942008-11-07 14:24:08 -08003374 /* lvds has its own version of commit see intel_lvds_commit */
3375 encoder_funcs->dpms(encoder, DRM_MODE_DPMS_ON);
Jesse Barnesd4270e52011-10-11 10:43:02 -07003376
3377 if (HAS_PCH_CPT(dev))
3378 intel_cpt_verify_modeset(dev, intel_crtc->pipe);
Jesse Barnes79e53942008-11-07 14:24:08 -08003379}
3380
Chris Wilsonea5b2132010-08-04 13:50:23 +01003381void intel_encoder_destroy(struct drm_encoder *encoder)
3382{
Chris Wilson4ef69c72010-09-09 15:14:28 +01003383 struct intel_encoder *intel_encoder = to_intel_encoder(encoder);
Chris Wilsonea5b2132010-08-04 13:50:23 +01003384
Chris Wilsonea5b2132010-08-04 13:50:23 +01003385 drm_encoder_cleanup(encoder);
3386 kfree(intel_encoder);
3387}
3388
Jesse Barnes79e53942008-11-07 14:24:08 -08003389static bool intel_crtc_mode_fixup(struct drm_crtc *crtc,
3390 struct drm_display_mode *mode,
3391 struct drm_display_mode *adjusted_mode)
3392{
Zhenyu Wang2c072452009-06-05 15:38:42 +08003393 struct drm_device *dev = crtc->dev;
Chris Wilson89749352010-09-12 18:25:19 +01003394
Eric Anholtbad720f2009-10-22 16:11:14 -07003395 if (HAS_PCH_SPLIT(dev)) {
Zhenyu Wang2c072452009-06-05 15:38:42 +08003396 /* FDI link clock is fixed at 2.7G */
Jesse Barnes2377b742010-07-07 14:06:43 -07003397 if (mode->clock * 3 > IRONLAKE_FDI_FREQ * 4)
3398 return false;
Zhenyu Wang2c072452009-06-05 15:38:42 +08003399 }
Chris Wilson89749352010-09-12 18:25:19 +01003400
Daniel Vetterf9bef082012-04-15 19:53:19 +02003401 /* All interlaced capable intel hw wants timings in frames. Note though
3402 * that intel_lvds_mode_fixup does some funny tricks with the crtc
3403 * timings, so we need to be careful not to clobber these.*/
3404 if (!(adjusted_mode->private_flags & INTEL_MODE_CRTC_TIMINGS_SET))
3405 drm_mode_set_crtcinfo(adjusted_mode, 0);
Chris Wilson89749352010-09-12 18:25:19 +01003406
Jesse Barnes79e53942008-11-07 14:24:08 -08003407 return true;
3408}
3409
Jesse Barnes25eb05fc2012-03-28 13:39:23 -07003410static int valleyview_get_display_clock_speed(struct drm_device *dev)
3411{
3412 return 400000; /* FIXME */
3413}
3414
Jesse Barnese70236a2009-09-21 10:42:27 -07003415static int i945_get_display_clock_speed(struct drm_device *dev)
Jesse Barnes79e53942008-11-07 14:24:08 -08003416{
Jesse Barnese70236a2009-09-21 10:42:27 -07003417 return 400000;
3418}
Jesse Barnes79e53942008-11-07 14:24:08 -08003419
Jesse Barnese70236a2009-09-21 10:42:27 -07003420static int i915_get_display_clock_speed(struct drm_device *dev)
3421{
3422 return 333000;
3423}
Jesse Barnes79e53942008-11-07 14:24:08 -08003424
Jesse Barnese70236a2009-09-21 10:42:27 -07003425static int i9xx_misc_get_display_clock_speed(struct drm_device *dev)
3426{
3427 return 200000;
3428}
Jesse Barnes79e53942008-11-07 14:24:08 -08003429
Jesse Barnese70236a2009-09-21 10:42:27 -07003430static int i915gm_get_display_clock_speed(struct drm_device *dev)
3431{
3432 u16 gcfgc = 0;
3433
3434 pci_read_config_word(dev->pdev, GCFGC, &gcfgc);
3435
3436 if (gcfgc & GC_LOW_FREQUENCY_ENABLE)
Jesse Barnes79e53942008-11-07 14:24:08 -08003437 return 133000;
Jesse Barnese70236a2009-09-21 10:42:27 -07003438 else {
3439 switch (gcfgc & GC_DISPLAY_CLOCK_MASK) {
3440 case GC_DISPLAY_CLOCK_333_MHZ:
3441 return 333000;
3442 default:
3443 case GC_DISPLAY_CLOCK_190_200_MHZ:
3444 return 190000;
3445 }
3446 }
3447}
Jesse Barnes79e53942008-11-07 14:24:08 -08003448
Jesse Barnese70236a2009-09-21 10:42:27 -07003449static int i865_get_display_clock_speed(struct drm_device *dev)
3450{
3451 return 266000;
3452}
3453
3454static int i855_get_display_clock_speed(struct drm_device *dev)
3455{
3456 u16 hpllcc = 0;
3457 /* Assume that the hardware is in the high speed state. This
3458 * should be the default.
3459 */
3460 switch (hpllcc & GC_CLOCK_CONTROL_MASK) {
3461 case GC_CLOCK_133_200:
3462 case GC_CLOCK_100_200:
3463 return 200000;
3464 case GC_CLOCK_166_250:
3465 return 250000;
3466 case GC_CLOCK_100_133:
3467 return 133000;
3468 }
3469
3470 /* Shouldn't happen */
3471 return 0;
3472}
3473
3474static int i830_get_display_clock_speed(struct drm_device *dev)
3475{
3476 return 133000;
Jesse Barnes79e53942008-11-07 14:24:08 -08003477}
3478
Zhenyu Wang2c072452009-06-05 15:38:42 +08003479struct fdi_m_n {
3480 u32 tu;
3481 u32 gmch_m;
3482 u32 gmch_n;
3483 u32 link_m;
3484 u32 link_n;
3485};
3486
3487static void
3488fdi_reduce_ratio(u32 *num, u32 *den)
3489{
3490 while (*num > 0xffffff || *den > 0xffffff) {
3491 *num >>= 1;
3492 *den >>= 1;
3493 }
3494}
3495
Zhenyu Wang2c072452009-06-05 15:38:42 +08003496static void
Adam Jacksonf2b115e2009-12-03 17:14:42 -05003497ironlake_compute_m_n(int bits_per_pixel, int nlanes, int pixel_clock,
3498 int link_clock, struct fdi_m_n *m_n)
Zhenyu Wang2c072452009-06-05 15:38:42 +08003499{
Zhenyu Wang2c072452009-06-05 15:38:42 +08003500 m_n->tu = 64; /* default size */
3501
Chris Wilson22ed1112010-12-04 01:01:29 +00003502 /* BUG_ON(pixel_clock > INT_MAX / 36); */
3503 m_n->gmch_m = bits_per_pixel * pixel_clock;
3504 m_n->gmch_n = link_clock * nlanes * 8;
Zhenyu Wang2c072452009-06-05 15:38:42 +08003505 fdi_reduce_ratio(&m_n->gmch_m, &m_n->gmch_n);
3506
Chris Wilson22ed1112010-12-04 01:01:29 +00003507 m_n->link_m = pixel_clock;
3508 m_n->link_n = link_clock;
Zhenyu Wang2c072452009-06-05 15:38:42 +08003509 fdi_reduce_ratio(&m_n->link_m, &m_n->link_n);
3510}
3511
Chris Wilsona7615032011-01-12 17:04:08 +00003512static inline bool intel_panel_use_ssc(struct drm_i915_private *dev_priv)
3513{
Keith Packard72bbe582011-09-26 16:09:45 -07003514 if (i915_panel_use_ssc >= 0)
3515 return i915_panel_use_ssc != 0;
3516 return dev_priv->lvds_use_ssc
Keith Packard435793d2011-07-12 14:56:22 -07003517 && !(dev_priv->quirks & QUIRK_LVDS_SSC_DISABLE);
Chris Wilsona7615032011-01-12 17:04:08 +00003518}
3519
Jesse Barnes5a354202011-06-24 12:19:22 -07003520/**
3521 * intel_choose_pipe_bpp_dither - figure out what color depth the pipe should send
3522 * @crtc: CRTC structure
Adam Jackson3b5c78a2011-12-13 15:41:00 -08003523 * @mode: requested mode
Jesse Barnes5a354202011-06-24 12:19:22 -07003524 *
3525 * A pipe may be connected to one or more outputs. Based on the depth of the
3526 * attached framebuffer, choose a good color depth to use on the pipe.
3527 *
3528 * If possible, match the pipe depth to the fb depth. In some cases, this
3529 * isn't ideal, because the connected output supports a lesser or restricted
3530 * set of depths. Resolve that here:
3531 * LVDS typically supports only 6bpc, so clamp down in that case
3532 * HDMI supports only 8bpc or 12bpc, so clamp to 8bpc with dither for 10bpc
3533 * Displays may support a restricted set as well, check EDID and clamp as
3534 * appropriate.
Adam Jackson3b5c78a2011-12-13 15:41:00 -08003535 * DP may want to dither down to 6bpc to fit larger modes
Jesse Barnes5a354202011-06-24 12:19:22 -07003536 *
3537 * RETURNS:
3538 * Dithering requirement (i.e. false if display bpc and pipe bpc match,
3539 * true if they don't match).
3540 */
3541static bool intel_choose_pipe_bpp_dither(struct drm_crtc *crtc,
Adam Jackson3b5c78a2011-12-13 15:41:00 -08003542 unsigned int *pipe_bpp,
3543 struct drm_display_mode *mode)
Jesse Barnes5a354202011-06-24 12:19:22 -07003544{
3545 struct drm_device *dev = crtc->dev;
3546 struct drm_i915_private *dev_priv = dev->dev_private;
3547 struct drm_encoder *encoder;
3548 struct drm_connector *connector;
3549 unsigned int display_bpc = UINT_MAX, bpc;
3550
3551 /* Walk the encoders & connectors on this crtc, get min bpc */
3552 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
3553 struct intel_encoder *intel_encoder = to_intel_encoder(encoder);
3554
3555 if (encoder->crtc != crtc)
3556 continue;
3557
3558 if (intel_encoder->type == INTEL_OUTPUT_LVDS) {
3559 unsigned int lvds_bpc;
3560
3561 if ((I915_READ(PCH_LVDS) & LVDS_A3_POWER_MASK) ==
3562 LVDS_A3_POWER_UP)
3563 lvds_bpc = 8;
3564 else
3565 lvds_bpc = 6;
3566
3567 if (lvds_bpc < display_bpc) {
Adam Jackson82820492011-10-10 16:33:34 -04003568 DRM_DEBUG_KMS("clamping display bpc (was %d) to LVDS (%d)\n", display_bpc, lvds_bpc);
Jesse Barnes5a354202011-06-24 12:19:22 -07003569 display_bpc = lvds_bpc;
3570 }
3571 continue;
3572 }
3573
3574 if (intel_encoder->type == INTEL_OUTPUT_EDP) {
3575 /* Use VBT settings if we have an eDP panel */
3576 unsigned int edp_bpc = dev_priv->edp.bpp / 3;
3577
3578 if (edp_bpc < display_bpc) {
Adam Jackson82820492011-10-10 16:33:34 -04003579 DRM_DEBUG_KMS("clamping display bpc (was %d) to eDP (%d)\n", display_bpc, edp_bpc);
Jesse Barnes5a354202011-06-24 12:19:22 -07003580 display_bpc = edp_bpc;
3581 }
3582 continue;
3583 }
3584
3585 /* Not one of the known troublemakers, check the EDID */
3586 list_for_each_entry(connector, &dev->mode_config.connector_list,
3587 head) {
3588 if (connector->encoder != encoder)
3589 continue;
3590
Jesse Barnes62ac41a2011-07-28 12:55:14 -07003591 /* Don't use an invalid EDID bpc value */
3592 if (connector->display_info.bpc &&
3593 connector->display_info.bpc < display_bpc) {
Adam Jackson82820492011-10-10 16:33:34 -04003594 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 -07003595 display_bpc = connector->display_info.bpc;
3596 }
3597 }
3598
3599 /*
3600 * HDMI is either 12 or 8, so if the display lets 10bpc sneak
3601 * through, clamp it down. (Note: >12bpc will be caught below.)
3602 */
3603 if (intel_encoder->type == INTEL_OUTPUT_HDMI) {
3604 if (display_bpc > 8 && display_bpc < 12) {
Adam Jackson82820492011-10-10 16:33:34 -04003605 DRM_DEBUG_KMS("forcing bpc to 12 for HDMI\n");
Jesse Barnes5a354202011-06-24 12:19:22 -07003606 display_bpc = 12;
3607 } else {
Adam Jackson82820492011-10-10 16:33:34 -04003608 DRM_DEBUG_KMS("forcing bpc to 8 for HDMI\n");
Jesse Barnes5a354202011-06-24 12:19:22 -07003609 display_bpc = 8;
3610 }
3611 }
3612 }
3613
Adam Jackson3b5c78a2011-12-13 15:41:00 -08003614 if (mode->private_flags & INTEL_MODE_DP_FORCE_6BPC) {
3615 DRM_DEBUG_KMS("Dithering DP to 6bpc\n");
3616 display_bpc = 6;
3617 }
3618
Jesse Barnes5a354202011-06-24 12:19:22 -07003619 /*
3620 * We could just drive the pipe at the highest bpc all the time and
3621 * enable dithering as needed, but that costs bandwidth. So choose
3622 * the minimum value that expresses the full color range of the fb but
3623 * also stays within the max display bpc discovered above.
3624 */
3625
3626 switch (crtc->fb->depth) {
3627 case 8:
3628 bpc = 8; /* since we go through a colormap */
3629 break;
3630 case 15:
3631 case 16:
3632 bpc = 6; /* min is 18bpp */
3633 break;
3634 case 24:
Keith Packard578393c2011-09-05 11:53:21 -07003635 bpc = 8;
Jesse Barnes5a354202011-06-24 12:19:22 -07003636 break;
3637 case 30:
Keith Packard578393c2011-09-05 11:53:21 -07003638 bpc = 10;
Jesse Barnes5a354202011-06-24 12:19:22 -07003639 break;
3640 case 48:
Keith Packard578393c2011-09-05 11:53:21 -07003641 bpc = 12;
Jesse Barnes5a354202011-06-24 12:19:22 -07003642 break;
3643 default:
3644 DRM_DEBUG("unsupported depth, assuming 24 bits\n");
3645 bpc = min((unsigned int)8, display_bpc);
3646 break;
3647 }
3648
Keith Packard578393c2011-09-05 11:53:21 -07003649 display_bpc = min(display_bpc, bpc);
3650
Adam Jackson82820492011-10-10 16:33:34 -04003651 DRM_DEBUG_KMS("setting pipe bpc to %d (max display bpc %d)\n",
3652 bpc, display_bpc);
Jesse Barnes5a354202011-06-24 12:19:22 -07003653
Keith Packard578393c2011-09-05 11:53:21 -07003654 *pipe_bpp = display_bpc * 3;
Jesse Barnes5a354202011-06-24 12:19:22 -07003655
3656 return display_bpc != bpc;
3657}
3658
Jesse Barnesc65d77d2011-12-15 12:30:36 -08003659static int i9xx_get_refclk(struct drm_crtc *crtc, int num_connectors)
3660{
3661 struct drm_device *dev = crtc->dev;
3662 struct drm_i915_private *dev_priv = dev->dev_private;
3663 int refclk;
3664
3665 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) &&
3666 intel_panel_use_ssc(dev_priv) && num_connectors < 2) {
3667 refclk = dev_priv->lvds_ssc_freq * 1000;
3668 DRM_DEBUG_KMS("using SSC reference clock of %d MHz\n",
3669 refclk / 1000);
3670 } else if (!IS_GEN2(dev)) {
3671 refclk = 96000;
3672 } else {
3673 refclk = 48000;
3674 }
3675
3676 return refclk;
3677}
3678
3679static void i9xx_adjust_sdvo_tv_clock(struct drm_display_mode *adjusted_mode,
3680 intel_clock_t *clock)
3681{
3682 /* SDVO TV has fixed PLL values depend on its clock range,
3683 this mirrors vbios setting. */
3684 if (adjusted_mode->clock >= 100000
3685 && adjusted_mode->clock < 140500) {
3686 clock->p1 = 2;
3687 clock->p2 = 10;
3688 clock->n = 3;
3689 clock->m1 = 16;
3690 clock->m2 = 8;
3691 } else if (adjusted_mode->clock >= 140500
3692 && adjusted_mode->clock <= 200000) {
3693 clock->p1 = 1;
3694 clock->p2 = 10;
3695 clock->n = 6;
3696 clock->m1 = 12;
3697 clock->m2 = 8;
3698 }
3699}
3700
Jesse Barnesa7516a02011-12-15 12:30:37 -08003701static void i9xx_update_pll_dividers(struct drm_crtc *crtc,
3702 intel_clock_t *clock,
3703 intel_clock_t *reduced_clock)
3704{
3705 struct drm_device *dev = crtc->dev;
3706 struct drm_i915_private *dev_priv = dev->dev_private;
3707 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3708 int pipe = intel_crtc->pipe;
3709 u32 fp, fp2 = 0;
3710
3711 if (IS_PINEVIEW(dev)) {
3712 fp = (1 << clock->n) << 16 | clock->m1 << 8 | clock->m2;
3713 if (reduced_clock)
3714 fp2 = (1 << reduced_clock->n) << 16 |
3715 reduced_clock->m1 << 8 | reduced_clock->m2;
3716 } else {
3717 fp = clock->n << 16 | clock->m1 << 8 | clock->m2;
3718 if (reduced_clock)
3719 fp2 = reduced_clock->n << 16 | reduced_clock->m1 << 8 |
3720 reduced_clock->m2;
3721 }
3722
3723 I915_WRITE(FP0(pipe), fp);
3724
3725 intel_crtc->lowfreq_avail = false;
3726 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) &&
3727 reduced_clock && i915_powersave) {
3728 I915_WRITE(FP1(pipe), fp2);
3729 intel_crtc->lowfreq_avail = true;
3730 } else {
3731 I915_WRITE(FP1(pipe), fp);
3732 }
3733}
3734
Daniel Vetter93e537a2012-03-28 23:11:26 +02003735static void intel_update_lvds(struct drm_crtc *crtc, intel_clock_t *clock,
3736 struct drm_display_mode *adjusted_mode)
3737{
3738 struct drm_device *dev = crtc->dev;
3739 struct drm_i915_private *dev_priv = dev->dev_private;
3740 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3741 int pipe = intel_crtc->pipe;
Chris Wilson284d5df2012-04-14 17:41:59 +01003742 u32 temp;
Daniel Vetter93e537a2012-03-28 23:11:26 +02003743
3744 temp = I915_READ(LVDS);
3745 temp |= LVDS_PORT_EN | LVDS_A0A2_CLKA_POWER_UP;
3746 if (pipe == 1) {
3747 temp |= LVDS_PIPEB_SELECT;
3748 } else {
3749 temp &= ~LVDS_PIPEB_SELECT;
3750 }
3751 /* set the corresponsding LVDS_BORDER bit */
3752 temp |= dev_priv->lvds_border_bits;
3753 /* Set the B0-B3 data pairs corresponding to whether we're going to
3754 * set the DPLLs for dual-channel mode or not.
3755 */
3756 if (clock->p2 == 7)
3757 temp |= LVDS_B0B3_POWER_UP | LVDS_CLKB_POWER_UP;
3758 else
3759 temp &= ~(LVDS_B0B3_POWER_UP | LVDS_CLKB_POWER_UP);
3760
3761 /* It would be nice to set 24 vs 18-bit mode (LVDS_A3_POWER_UP)
3762 * appropriately here, but we need to look more thoroughly into how
3763 * panels behave in the two modes.
3764 */
3765 /* set the dithering flag on LVDS as needed */
3766 if (INTEL_INFO(dev)->gen >= 4) {
3767 if (dev_priv->lvds_dither)
3768 temp |= LVDS_ENABLE_DITHER;
3769 else
3770 temp &= ~LVDS_ENABLE_DITHER;
3771 }
Chris Wilson284d5df2012-04-14 17:41:59 +01003772 temp &= ~(LVDS_HSYNC_POLARITY | LVDS_VSYNC_POLARITY);
Daniel Vetter93e537a2012-03-28 23:11:26 +02003773 if (adjusted_mode->flags & DRM_MODE_FLAG_NHSYNC)
Chris Wilson284d5df2012-04-14 17:41:59 +01003774 temp |= LVDS_HSYNC_POLARITY;
Daniel Vetter93e537a2012-03-28 23:11:26 +02003775 if (adjusted_mode->flags & DRM_MODE_FLAG_NVSYNC)
Chris Wilson284d5df2012-04-14 17:41:59 +01003776 temp |= LVDS_VSYNC_POLARITY;
Daniel Vetter93e537a2012-03-28 23:11:26 +02003777 I915_WRITE(LVDS, temp);
3778}
3779
Daniel Vettereb1cbe42012-03-28 23:12:16 +02003780static void i9xx_update_pll(struct drm_crtc *crtc,
3781 struct drm_display_mode *mode,
3782 struct drm_display_mode *adjusted_mode,
3783 intel_clock_t *clock, intel_clock_t *reduced_clock,
3784 int num_connectors)
3785{
3786 struct drm_device *dev = crtc->dev;
3787 struct drm_i915_private *dev_priv = dev->dev_private;
3788 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3789 int pipe = intel_crtc->pipe;
3790 u32 dpll;
3791 bool is_sdvo;
3792
3793 is_sdvo = intel_pipe_has_type(crtc, INTEL_OUTPUT_SDVO) ||
3794 intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI);
3795
3796 dpll = DPLL_VGA_MODE_DIS;
3797
3798 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS))
3799 dpll |= DPLLB_MODE_LVDS;
3800 else
3801 dpll |= DPLLB_MODE_DAC_SERIAL;
3802 if (is_sdvo) {
3803 int pixel_multiplier = intel_mode_get_pixel_multiplier(adjusted_mode);
3804 if (pixel_multiplier > 1) {
3805 if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev))
3806 dpll |= (pixel_multiplier - 1) << SDVO_MULTIPLIER_SHIFT_HIRES;
3807 }
3808 dpll |= DPLL_DVO_HIGH_SPEED;
3809 }
3810 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT))
3811 dpll |= DPLL_DVO_HIGH_SPEED;
3812
3813 /* compute bitmask from p1 value */
3814 if (IS_PINEVIEW(dev))
3815 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW;
3816 else {
3817 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
3818 if (IS_G4X(dev) && reduced_clock)
3819 dpll |= (1 << (reduced_clock->p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
3820 }
3821 switch (clock->p2) {
3822 case 5:
3823 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
3824 break;
3825 case 7:
3826 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
3827 break;
3828 case 10:
3829 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
3830 break;
3831 case 14:
3832 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
3833 break;
3834 }
3835 if (INTEL_INFO(dev)->gen >= 4)
3836 dpll |= (6 << PLL_LOAD_PULSE_PHASE_SHIFT);
3837
3838 if (is_sdvo && intel_pipe_has_type(crtc, INTEL_OUTPUT_TVOUT))
3839 dpll |= PLL_REF_INPUT_TVCLKINBC;
3840 else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_TVOUT))
3841 /* XXX: just matching BIOS for now */
3842 /* dpll |= PLL_REF_INPUT_TVCLKINBC; */
3843 dpll |= 3;
3844 else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) &&
3845 intel_panel_use_ssc(dev_priv) && num_connectors < 2)
3846 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
3847 else
3848 dpll |= PLL_REF_INPUT_DREFCLK;
3849
3850 dpll |= DPLL_VCO_ENABLE;
3851 I915_WRITE(DPLL(pipe), dpll & ~DPLL_VCO_ENABLE);
3852 POSTING_READ(DPLL(pipe));
3853 udelay(150);
3854
3855 /* The LVDS pin pair needs to be on before the DPLLs are enabled.
3856 * This is an exception to the general rule that mode_set doesn't turn
3857 * things on.
3858 */
3859 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS))
3860 intel_update_lvds(crtc, clock, adjusted_mode);
3861
3862 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT))
3863 intel_dp_set_m_n(crtc, mode, adjusted_mode);
3864
3865 I915_WRITE(DPLL(pipe), dpll);
3866
3867 /* Wait for the clocks to stabilize. */
3868 POSTING_READ(DPLL(pipe));
3869 udelay(150);
3870
3871 if (INTEL_INFO(dev)->gen >= 4) {
3872 u32 temp = 0;
3873 if (is_sdvo) {
3874 temp = intel_mode_get_pixel_multiplier(adjusted_mode);
3875 if (temp > 1)
3876 temp = (temp - 1) << DPLL_MD_UDI_MULTIPLIER_SHIFT;
3877 else
3878 temp = 0;
3879 }
3880 I915_WRITE(DPLL_MD(pipe), temp);
3881 } else {
3882 /* The pixel multiplier can only be updated once the
3883 * DPLL is enabled and the clocks are stable.
3884 *
3885 * So write it again.
3886 */
3887 I915_WRITE(DPLL(pipe), dpll);
3888 }
3889}
3890
3891static void i8xx_update_pll(struct drm_crtc *crtc,
3892 struct drm_display_mode *adjusted_mode,
3893 intel_clock_t *clock,
3894 int num_connectors)
3895{
3896 struct drm_device *dev = crtc->dev;
3897 struct drm_i915_private *dev_priv = dev->dev_private;
3898 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3899 int pipe = intel_crtc->pipe;
3900 u32 dpll;
3901
3902 dpll = DPLL_VGA_MODE_DIS;
3903
3904 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
3905 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
3906 } else {
3907 if (clock->p1 == 2)
3908 dpll |= PLL_P1_DIVIDE_BY_TWO;
3909 else
3910 dpll |= (clock->p1 - 2) << DPLL_FPA01_P1_POST_DIV_SHIFT;
3911 if (clock->p2 == 4)
3912 dpll |= PLL_P2_DIVIDE_BY_4;
3913 }
3914
3915 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_TVOUT))
3916 /* XXX: just matching BIOS for now */
3917 /* dpll |= PLL_REF_INPUT_TVCLKINBC; */
3918 dpll |= 3;
3919 else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) &&
3920 intel_panel_use_ssc(dev_priv) && num_connectors < 2)
3921 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
3922 else
3923 dpll |= PLL_REF_INPUT_DREFCLK;
3924
3925 dpll |= DPLL_VCO_ENABLE;
3926 I915_WRITE(DPLL(pipe), dpll & ~DPLL_VCO_ENABLE);
3927 POSTING_READ(DPLL(pipe));
3928 udelay(150);
3929
3930 I915_WRITE(DPLL(pipe), dpll);
3931
3932 /* Wait for the clocks to stabilize. */
3933 POSTING_READ(DPLL(pipe));
3934 udelay(150);
3935
3936 /* The LVDS pin pair needs to be on before the DPLLs are enabled.
3937 * This is an exception to the general rule that mode_set doesn't turn
3938 * things on.
3939 */
3940 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS))
3941 intel_update_lvds(crtc, clock, adjusted_mode);
3942
3943 /* The pixel multiplier can only be updated once the
3944 * DPLL is enabled and the clocks are stable.
3945 *
3946 * So write it again.
3947 */
3948 I915_WRITE(DPLL(pipe), dpll);
3949}
3950
Eric Anholtf564048e2011-03-30 13:01:02 -07003951static int i9xx_crtc_mode_set(struct drm_crtc *crtc,
3952 struct drm_display_mode *mode,
3953 struct drm_display_mode *adjusted_mode,
3954 int x, int y,
3955 struct drm_framebuffer *old_fb)
Jesse Barnes79e53942008-11-07 14:24:08 -08003956{
3957 struct drm_device *dev = crtc->dev;
3958 struct drm_i915_private *dev_priv = dev->dev_private;
3959 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3960 int pipe = intel_crtc->pipe;
Jesse Barnes80824002009-09-10 15:28:06 -07003961 int plane = intel_crtc->plane;
Eric Anholtc751ce42010-03-25 11:48:48 -07003962 int refclk, num_connectors = 0;
Jesse Barnes652c3932009-08-17 13:31:43 -07003963 intel_clock_t clock, reduced_clock;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02003964 u32 dspcntr, pipeconf, vsyncshift;
3965 bool ok, has_reduced_clock = false, is_sdvo = false;
3966 bool is_lvds = false, is_tv = false, is_dp = false;
Jesse Barnes79e53942008-11-07 14:24:08 -08003967 struct drm_mode_config *mode_config = &dev->mode_config;
Chris Wilson5eddb702010-09-11 13:48:45 +01003968 struct intel_encoder *encoder;
Ma Lingd4906092009-03-18 20:13:27 +08003969 const intel_limit_t *limit;
Chris Wilson5c3b82e2009-02-11 13:25:09 +00003970 int ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08003971
Chris Wilson5eddb702010-09-11 13:48:45 +01003972 list_for_each_entry(encoder, &mode_config->encoder_list, base.head) {
3973 if (encoder->base.crtc != crtc)
Jesse Barnes79e53942008-11-07 14:24:08 -08003974 continue;
3975
Chris Wilson5eddb702010-09-11 13:48:45 +01003976 switch (encoder->type) {
Jesse Barnes79e53942008-11-07 14:24:08 -08003977 case INTEL_OUTPUT_LVDS:
3978 is_lvds = true;
3979 break;
3980 case INTEL_OUTPUT_SDVO:
Eric Anholt7d573822009-01-02 13:33:00 -08003981 case INTEL_OUTPUT_HDMI:
Jesse Barnes79e53942008-11-07 14:24:08 -08003982 is_sdvo = true;
Chris Wilson5eddb702010-09-11 13:48:45 +01003983 if (encoder->needs_tv_clock)
Jesse Barnese2f0ba92009-02-02 15:11:52 -08003984 is_tv = true;
Jesse Barnes79e53942008-11-07 14:24:08 -08003985 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08003986 case INTEL_OUTPUT_TVOUT:
3987 is_tv = true;
3988 break;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07003989 case INTEL_OUTPUT_DISPLAYPORT:
3990 is_dp = true;
3991 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08003992 }
Kristian Høgsberg43565a02009-02-13 20:56:52 -05003993
Eric Anholtc751ce42010-03-25 11:48:48 -07003994 num_connectors++;
Jesse Barnes79e53942008-11-07 14:24:08 -08003995 }
3996
Jesse Barnesc65d77d2011-12-15 12:30:36 -08003997 refclk = i9xx_get_refclk(crtc, num_connectors);
Jesse Barnes79e53942008-11-07 14:24:08 -08003998
Ma Lingd4906092009-03-18 20:13:27 +08003999 /*
4000 * Returns a set of divisors for the desired target clock with the given
4001 * refclk, or FALSE. The returned values represent the clock equation:
4002 * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2.
4003 */
Chris Wilson1b894b52010-12-14 20:04:54 +00004004 limit = intel_limit(crtc, refclk);
Sean Paulcec2f352012-01-10 15:09:36 -08004005 ok = limit->find_pll(limit, crtc, adjusted_mode->clock, refclk, NULL,
4006 &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08004007 if (!ok) {
4008 DRM_ERROR("Couldn't find PLL settings for mode!\n");
Eric Anholtf564048e2011-03-30 13:01:02 -07004009 return -EINVAL;
4010 }
4011
4012 /* Ensure that the cursor is valid for the new mode before changing... */
4013 intel_crtc_update_cursor(crtc, true);
4014
4015 if (is_lvds && dev_priv->lvds_downclock_avail) {
Sean Paulcec2f352012-01-10 15:09:36 -08004016 /*
4017 * Ensure we match the reduced clock's P to the target clock.
4018 * If the clocks don't match, we can't switch the display clock
4019 * by using the FP0/FP1. In such case we will disable the LVDS
4020 * downclock feature.
4021 */
Eric Anholtf564048e2011-03-30 13:01:02 -07004022 has_reduced_clock = limit->find_pll(limit, crtc,
4023 dev_priv->lvds_downclock,
4024 refclk,
Sean Paulcec2f352012-01-10 15:09:36 -08004025 &clock,
Eric Anholtf564048e2011-03-30 13:01:02 -07004026 &reduced_clock);
Eric Anholtf564048e2011-03-30 13:01:02 -07004027 }
4028
Jesse Barnesc65d77d2011-12-15 12:30:36 -08004029 if (is_sdvo && is_tv)
4030 i9xx_adjust_sdvo_tv_clock(adjusted_mode, &clock);
Eric Anholtf564048e2011-03-30 13:01:02 -07004031
Jesse Barnesa7516a02011-12-15 12:30:37 -08004032 i9xx_update_pll_dividers(crtc, &clock, has_reduced_clock ?
4033 &reduced_clock : NULL);
Eric Anholtf564048e2011-03-30 13:01:02 -07004034
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004035 if (IS_GEN2(dev))
4036 i8xx_update_pll(crtc, adjusted_mode, &clock, num_connectors);
Eric Anholtf564048e2011-03-30 13:01:02 -07004037 else
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004038 i9xx_update_pll(crtc, mode, adjusted_mode, &clock,
4039 has_reduced_clock ? &reduced_clock : NULL,
4040 num_connectors);
Eric Anholtf564048e2011-03-30 13:01:02 -07004041
4042 /* setup pipeconf */
4043 pipeconf = I915_READ(PIPECONF(pipe));
4044
4045 /* Set up the display plane register */
4046 dspcntr = DISPPLANE_GAMMA_ENABLE;
4047
Eric Anholt929c77f2011-03-30 13:01:04 -07004048 if (pipe == 0)
4049 dspcntr &= ~DISPPLANE_SEL_PIPE_MASK;
4050 else
4051 dspcntr |= DISPPLANE_SEL_PIPE_B;
Eric Anholtf564048e2011-03-30 13:01:02 -07004052
4053 if (pipe == 0 && INTEL_INFO(dev)->gen < 4) {
4054 /* Enable pixel doubling when the dot clock is > 90% of the (display)
4055 * core speed.
4056 *
4057 * XXX: No double-wide on 915GM pipe B. Is that the only reason for the
4058 * pipe == 0 check?
4059 */
4060 if (mode->clock >
4061 dev_priv->display.get_display_clock_speed(dev) * 9 / 10)
4062 pipeconf |= PIPECONF_DOUBLE_WIDE;
4063 else
4064 pipeconf &= ~PIPECONF_DOUBLE_WIDE;
4065 }
4066
Adam Jackson3b5c78a2011-12-13 15:41:00 -08004067 /* default to 8bpc */
4068 pipeconf &= ~(PIPECONF_BPP_MASK | PIPECONF_DITHER_EN);
4069 if (is_dp) {
4070 if (mode->private_flags & INTEL_MODE_DP_FORCE_6BPC) {
4071 pipeconf |= PIPECONF_BPP_6 |
4072 PIPECONF_DITHER_EN |
4073 PIPECONF_DITHER_TYPE_SP;
4074 }
4075 }
4076
Eric Anholtf564048e2011-03-30 13:01:02 -07004077 DRM_DEBUG_KMS("Mode for pipe %c:\n", pipe == 0 ? 'A' : 'B');
4078 drm_mode_debug_printmodeline(mode);
4079
Jesse Barnesa7516a02011-12-15 12:30:37 -08004080 if (HAS_PIPE_CXSR(dev)) {
4081 if (intel_crtc->lowfreq_avail) {
Eric Anholtf564048e2011-03-30 13:01:02 -07004082 DRM_DEBUG_KMS("enabling CxSR downclocking\n");
4083 pipeconf |= PIPECONF_CXSR_DOWNCLOCK;
Jesse Barnesa7516a02011-12-15 12:30:37 -08004084 } else {
Eric Anholtf564048e2011-03-30 13:01:02 -07004085 DRM_DEBUG_KMS("disabling CxSR downclocking\n");
4086 pipeconf &= ~PIPECONF_CXSR_DOWNCLOCK;
4087 }
4088 }
4089
Keith Packard617cf882012-02-08 13:53:38 -08004090 pipeconf &= ~PIPECONF_INTERLACE_MASK;
Daniel Vetterdbb02572012-01-28 14:49:23 +01004091 if (!IS_GEN2(dev) &&
4092 adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE) {
Eric Anholtf564048e2011-03-30 13:01:02 -07004093 pipeconf |= PIPECONF_INTERLACE_W_FIELD_INDICATION;
4094 /* the chip adds 2 halflines automatically */
Eric Anholtf564048e2011-03-30 13:01:02 -07004095 adjusted_mode->crtc_vtotal -= 1;
Eric Anholtf564048e2011-03-30 13:01:02 -07004096 adjusted_mode->crtc_vblank_end -= 1;
Daniel Vetter0529a0d2012-01-28 14:49:24 +01004097 vsyncshift = adjusted_mode->crtc_hsync_start
4098 - adjusted_mode->crtc_htotal/2;
4099 } else {
Keith Packard617cf882012-02-08 13:53:38 -08004100 pipeconf |= PIPECONF_PROGRESSIVE;
Daniel Vetter0529a0d2012-01-28 14:49:24 +01004101 vsyncshift = 0;
4102 }
4103
4104 if (!IS_GEN3(dev))
4105 I915_WRITE(VSYNCSHIFT(pipe), vsyncshift);
Eric Anholtf564048e2011-03-30 13:01:02 -07004106
4107 I915_WRITE(HTOTAL(pipe),
4108 (adjusted_mode->crtc_hdisplay - 1) |
4109 ((adjusted_mode->crtc_htotal - 1) << 16));
4110 I915_WRITE(HBLANK(pipe),
4111 (adjusted_mode->crtc_hblank_start - 1) |
4112 ((adjusted_mode->crtc_hblank_end - 1) << 16));
4113 I915_WRITE(HSYNC(pipe),
4114 (adjusted_mode->crtc_hsync_start - 1) |
4115 ((adjusted_mode->crtc_hsync_end - 1) << 16));
4116
4117 I915_WRITE(VTOTAL(pipe),
4118 (adjusted_mode->crtc_vdisplay - 1) |
4119 ((adjusted_mode->crtc_vtotal - 1) << 16));
4120 I915_WRITE(VBLANK(pipe),
4121 (adjusted_mode->crtc_vblank_start - 1) |
4122 ((adjusted_mode->crtc_vblank_end - 1) << 16));
4123 I915_WRITE(VSYNC(pipe),
4124 (adjusted_mode->crtc_vsync_start - 1) |
4125 ((adjusted_mode->crtc_vsync_end - 1) << 16));
4126
4127 /* pipesrc and dspsize control the size that is scaled from,
4128 * which should always be the user's requested size.
4129 */
Eric Anholt929c77f2011-03-30 13:01:04 -07004130 I915_WRITE(DSPSIZE(plane),
4131 ((mode->vdisplay - 1) << 16) |
4132 (mode->hdisplay - 1));
4133 I915_WRITE(DSPPOS(plane), 0);
Eric Anholtf564048e2011-03-30 13:01:02 -07004134 I915_WRITE(PIPESRC(pipe),
4135 ((mode->hdisplay - 1) << 16) | (mode->vdisplay - 1));
4136
Eric Anholtf564048e2011-03-30 13:01:02 -07004137 I915_WRITE(PIPECONF(pipe), pipeconf);
4138 POSTING_READ(PIPECONF(pipe));
Eric Anholt929c77f2011-03-30 13:01:04 -07004139 intel_enable_pipe(dev_priv, pipe, false);
Eric Anholtf564048e2011-03-30 13:01:02 -07004140
4141 intel_wait_for_vblank(dev, pipe);
4142
Eric Anholtf564048e2011-03-30 13:01:02 -07004143 I915_WRITE(DSPCNTR(plane), dspcntr);
4144 POSTING_READ(DSPCNTR(plane));
4145
4146 ret = intel_pipe_set_base(crtc, x, y, old_fb);
4147
4148 intel_update_watermarks(dev);
4149
Eric Anholtf564048e2011-03-30 13:01:02 -07004150 return ret;
4151}
4152
Keith Packard9fb526d2011-09-26 22:24:57 -07004153/*
4154 * Initialize reference clocks when the driver loads
4155 */
4156void ironlake_init_pch_refclk(struct drm_device *dev)
Jesse Barnes13d83a62011-08-03 12:59:20 -07004157{
4158 struct drm_i915_private *dev_priv = dev->dev_private;
4159 struct drm_mode_config *mode_config = &dev->mode_config;
Jesse Barnes13d83a62011-08-03 12:59:20 -07004160 struct intel_encoder *encoder;
Jesse Barnes13d83a62011-08-03 12:59:20 -07004161 u32 temp;
4162 bool has_lvds = false;
Keith Packard199e5d72011-09-22 12:01:57 -07004163 bool has_cpu_edp = false;
4164 bool has_pch_edp = false;
4165 bool has_panel = false;
Keith Packard99eb6a02011-09-26 14:29:12 -07004166 bool has_ck505 = false;
4167 bool can_ssc = false;
Jesse Barnes13d83a62011-08-03 12:59:20 -07004168
4169 /* We need to take the global config into account */
Keith Packard199e5d72011-09-22 12:01:57 -07004170 list_for_each_entry(encoder, &mode_config->encoder_list,
4171 base.head) {
4172 switch (encoder->type) {
4173 case INTEL_OUTPUT_LVDS:
4174 has_panel = true;
4175 has_lvds = true;
4176 break;
4177 case INTEL_OUTPUT_EDP:
4178 has_panel = true;
4179 if (intel_encoder_is_pch_edp(&encoder->base))
4180 has_pch_edp = true;
4181 else
4182 has_cpu_edp = true;
4183 break;
Jesse Barnes13d83a62011-08-03 12:59:20 -07004184 }
4185 }
4186
Keith Packard99eb6a02011-09-26 14:29:12 -07004187 if (HAS_PCH_IBX(dev)) {
4188 has_ck505 = dev_priv->display_clock_mode;
4189 can_ssc = has_ck505;
4190 } else {
4191 has_ck505 = false;
4192 can_ssc = true;
4193 }
4194
4195 DRM_DEBUG_KMS("has_panel %d has_lvds %d has_pch_edp %d has_cpu_edp %d has_ck505 %d\n",
4196 has_panel, has_lvds, has_pch_edp, has_cpu_edp,
4197 has_ck505);
Jesse Barnes13d83a62011-08-03 12:59:20 -07004198
4199 /* Ironlake: try to setup display ref clock before DPLL
4200 * enabling. This is only under driver's control after
4201 * PCH B stepping, previous chipset stepping should be
4202 * ignoring this setting.
4203 */
4204 temp = I915_READ(PCH_DREF_CONTROL);
4205 /* Always enable nonspread source */
4206 temp &= ~DREF_NONSPREAD_SOURCE_MASK;
Jesse Barnes13d83a62011-08-03 12:59:20 -07004207
Keith Packard99eb6a02011-09-26 14:29:12 -07004208 if (has_ck505)
4209 temp |= DREF_NONSPREAD_CK505_ENABLE;
4210 else
4211 temp |= DREF_NONSPREAD_SOURCE_ENABLE;
Jesse Barnes13d83a62011-08-03 12:59:20 -07004212
Keith Packard199e5d72011-09-22 12:01:57 -07004213 if (has_panel) {
4214 temp &= ~DREF_SSC_SOURCE_MASK;
4215 temp |= DREF_SSC_SOURCE_ENABLE;
Jesse Barnes13d83a62011-08-03 12:59:20 -07004216
Keith Packard199e5d72011-09-22 12:01:57 -07004217 /* SSC must be turned on before enabling the CPU output */
Keith Packard99eb6a02011-09-26 14:29:12 -07004218 if (intel_panel_use_ssc(dev_priv) && can_ssc) {
Keith Packard199e5d72011-09-22 12:01:57 -07004219 DRM_DEBUG_KMS("Using SSC on panel\n");
Jesse Barnes13d83a62011-08-03 12:59:20 -07004220 temp |= DREF_SSC1_ENABLE;
Daniel Vettere77166b2012-03-30 22:14:05 +02004221 } else
4222 temp &= ~DREF_SSC1_ENABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07004223
4224 /* Get SSC going before enabling the outputs */
4225 I915_WRITE(PCH_DREF_CONTROL, temp);
4226 POSTING_READ(PCH_DREF_CONTROL);
4227 udelay(200);
4228
Jesse Barnes13d83a62011-08-03 12:59:20 -07004229 temp &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
4230
4231 /* Enable CPU source on CPU attached eDP */
Keith Packard199e5d72011-09-22 12:01:57 -07004232 if (has_cpu_edp) {
Keith Packard99eb6a02011-09-26 14:29:12 -07004233 if (intel_panel_use_ssc(dev_priv) && can_ssc) {
Keith Packard199e5d72011-09-22 12:01:57 -07004234 DRM_DEBUG_KMS("Using SSC on eDP\n");
Jesse Barnes13d83a62011-08-03 12:59:20 -07004235 temp |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD;
Keith Packard199e5d72011-09-22 12:01:57 -07004236 }
Jesse Barnes13d83a62011-08-03 12:59:20 -07004237 else
4238 temp |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD;
Keith Packard199e5d72011-09-22 12:01:57 -07004239 } else
4240 temp |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
4241
4242 I915_WRITE(PCH_DREF_CONTROL, temp);
4243 POSTING_READ(PCH_DREF_CONTROL);
4244 udelay(200);
4245 } else {
4246 DRM_DEBUG_KMS("Disabling SSC entirely\n");
4247
4248 temp &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
4249
4250 /* Turn off CPU output */
4251 temp |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
4252
4253 I915_WRITE(PCH_DREF_CONTROL, temp);
4254 POSTING_READ(PCH_DREF_CONTROL);
4255 udelay(200);
4256
4257 /* Turn off the SSC source */
4258 temp &= ~DREF_SSC_SOURCE_MASK;
4259 temp |= DREF_SSC_SOURCE_DISABLE;
4260
4261 /* Turn off SSC1 */
4262 temp &= ~ DREF_SSC1_ENABLE;
4263
Jesse Barnes13d83a62011-08-03 12:59:20 -07004264 I915_WRITE(PCH_DREF_CONTROL, temp);
4265 POSTING_READ(PCH_DREF_CONTROL);
4266 udelay(200);
4267 }
4268}
4269
Jesse Barnesd9d444c2011-09-02 13:03:05 -07004270static int ironlake_get_refclk(struct drm_crtc *crtc)
4271{
4272 struct drm_device *dev = crtc->dev;
4273 struct drm_i915_private *dev_priv = dev->dev_private;
4274 struct intel_encoder *encoder;
4275 struct drm_mode_config *mode_config = &dev->mode_config;
4276 struct intel_encoder *edp_encoder = NULL;
4277 int num_connectors = 0;
4278 bool is_lvds = false;
4279
4280 list_for_each_entry(encoder, &mode_config->encoder_list, base.head) {
4281 if (encoder->base.crtc != crtc)
4282 continue;
4283
4284 switch (encoder->type) {
4285 case INTEL_OUTPUT_LVDS:
4286 is_lvds = true;
4287 break;
4288 case INTEL_OUTPUT_EDP:
4289 edp_encoder = encoder;
4290 break;
4291 }
4292 num_connectors++;
4293 }
4294
4295 if (is_lvds && intel_panel_use_ssc(dev_priv) && num_connectors < 2) {
4296 DRM_DEBUG_KMS("using SSC reference clock of %d MHz\n",
4297 dev_priv->lvds_ssc_freq);
4298 return dev_priv->lvds_ssc_freq * 1000;
4299 }
4300
4301 return 120000;
4302}
4303
Eric Anholtf564048e2011-03-30 13:01:02 -07004304static int ironlake_crtc_mode_set(struct drm_crtc *crtc,
4305 struct drm_display_mode *mode,
4306 struct drm_display_mode *adjusted_mode,
4307 int x, int y,
4308 struct drm_framebuffer *old_fb)
Jesse Barnes79e53942008-11-07 14:24:08 -08004309{
4310 struct drm_device *dev = crtc->dev;
4311 struct drm_i915_private *dev_priv = dev->dev_private;
4312 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4313 int pipe = intel_crtc->pipe;
Chris Wilson5c3b82e2009-02-11 13:25:09 +00004314 int plane = intel_crtc->plane;
Jesse Barnes79e53942008-11-07 14:24:08 -08004315 int refclk, num_connectors = 0;
4316 intel_clock_t clock, reduced_clock;
4317 u32 dpll, fp = 0, fp2 = 0, dspcntr, pipeconf;
Eric Anholta07d6782011-03-30 13:01:08 -07004318 bool ok, has_reduced_clock = false, is_sdvo = false;
Jesse Barnes79e53942008-11-07 14:24:08 -08004319 bool is_crt = false, is_lvds = false, is_tv = false, is_dp = false;
Jesse Barnes79e53942008-11-07 14:24:08 -08004320 struct drm_mode_config *mode_config = &dev->mode_config;
Jesse Barnese3aef172012-04-10 11:58:03 -07004321 struct intel_encoder *encoder, *edp_encoder = NULL;
Jesse Barnes79e53942008-11-07 14:24:08 -08004322 const intel_limit_t *limit;
4323 int ret;
4324 struct fdi_m_n m_n = {0};
Eric Anholtfae14982011-03-30 13:01:09 -07004325 u32 temp;
Jesse Barnes5a354202011-06-24 12:19:22 -07004326 int target_clock, pixel_multiplier, lane, link_bw, factor;
4327 unsigned int pipe_bpp;
4328 bool dither;
Jesse Barnese3aef172012-04-10 11:58:03 -07004329 bool is_cpu_edp = false, is_pch_edp = false;
Jesse Barnes79e53942008-11-07 14:24:08 -08004330
Jesse Barnes79e53942008-11-07 14:24:08 -08004331 list_for_each_entry(encoder, &mode_config->encoder_list, base.head) {
4332 if (encoder->base.crtc != crtc)
4333 continue;
4334
4335 switch (encoder->type) {
4336 case INTEL_OUTPUT_LVDS:
4337 is_lvds = true;
4338 break;
4339 case INTEL_OUTPUT_SDVO:
4340 case INTEL_OUTPUT_HDMI:
4341 is_sdvo = true;
4342 if (encoder->needs_tv_clock)
4343 is_tv = true;
4344 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08004345 case INTEL_OUTPUT_TVOUT:
4346 is_tv = true;
4347 break;
4348 case INTEL_OUTPUT_ANALOG:
4349 is_crt = true;
4350 break;
4351 case INTEL_OUTPUT_DISPLAYPORT:
4352 is_dp = true;
4353 break;
4354 case INTEL_OUTPUT_EDP:
Jesse Barnese3aef172012-04-10 11:58:03 -07004355 is_dp = true;
4356 if (intel_encoder_is_pch_edp(&encoder->base))
4357 is_pch_edp = true;
4358 else
4359 is_cpu_edp = true;
4360 edp_encoder = encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08004361 break;
4362 }
4363
Kristian Høgsberg43565a02009-02-13 20:56:52 -05004364 num_connectors++;
4365 }
4366
Jesse Barnesd9d444c2011-09-02 13:03:05 -07004367 refclk = ironlake_get_refclk(crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08004368
4369 /*
4370 * Returns a set of divisors for the desired target clock with the given
4371 * refclk, or FALSE. The returned values represent the clock equation:
4372 * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2.
4373 */
4374 limit = intel_limit(crtc, refclk);
Sean Paulcec2f352012-01-10 15:09:36 -08004375 ok = limit->find_pll(limit, crtc, adjusted_mode->clock, refclk, NULL,
4376 &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08004377 if (!ok) {
4378 DRM_ERROR("Couldn't find PLL settings for mode!\n");
4379 return -EINVAL;
4380 }
4381
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01004382 /* Ensure that the cursor is valid for the new mode before changing... */
Chris Wilson6b383a72010-09-13 13:54:26 +01004383 intel_crtc_update_cursor(crtc, true);
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01004384
Zhao Yakuiddc90032010-01-06 22:05:56 +08004385 if (is_lvds && dev_priv->lvds_downclock_avail) {
Sean Paulcec2f352012-01-10 15:09:36 -08004386 /*
4387 * Ensure we match the reduced clock's P to the target clock.
4388 * If the clocks don't match, we can't switch the display clock
4389 * by using the FP0/FP1. In such case we will disable the LVDS
4390 * downclock feature.
4391 */
Zhao Yakuiddc90032010-01-06 22:05:56 +08004392 has_reduced_clock = limit->find_pll(limit, crtc,
Chris Wilson5eddb702010-09-11 13:48:45 +01004393 dev_priv->lvds_downclock,
4394 refclk,
Sean Paulcec2f352012-01-10 15:09:36 -08004395 &clock,
Chris Wilson5eddb702010-09-11 13:48:45 +01004396 &reduced_clock);
Jesse Barnes652c3932009-08-17 13:31:43 -07004397 }
Zhenyu Wang7026d4a2009-03-24 14:02:43 +08004398 /* SDVO TV has fixed PLL values depend on its clock range,
4399 this mirrors vbios setting. */
4400 if (is_sdvo && is_tv) {
4401 if (adjusted_mode->clock >= 100000
Chris Wilson5eddb702010-09-11 13:48:45 +01004402 && adjusted_mode->clock < 140500) {
Zhenyu Wang7026d4a2009-03-24 14:02:43 +08004403 clock.p1 = 2;
4404 clock.p2 = 10;
4405 clock.n = 3;
4406 clock.m1 = 16;
4407 clock.m2 = 8;
4408 } else if (adjusted_mode->clock >= 140500
Chris Wilson5eddb702010-09-11 13:48:45 +01004409 && adjusted_mode->clock <= 200000) {
Zhenyu Wang7026d4a2009-03-24 14:02:43 +08004410 clock.p1 = 1;
4411 clock.p2 = 10;
4412 clock.n = 6;
4413 clock.m1 = 12;
4414 clock.m2 = 8;
4415 }
4416 }
4417
Zhenyu Wang2c072452009-06-05 15:38:42 +08004418 /* FDI link */
Eric Anholt8febb292011-03-30 13:01:07 -07004419 pixel_multiplier = intel_mode_get_pixel_multiplier(adjusted_mode);
4420 lane = 0;
4421 /* CPU eDP doesn't require FDI link, so just set DP M/N
4422 according to current link config */
Jesse Barnese3aef172012-04-10 11:58:03 -07004423 if (is_cpu_edp) {
Eric Anholt8febb292011-03-30 13:01:07 -07004424 target_clock = mode->clock;
Jesse Barnese3aef172012-04-10 11:58:03 -07004425 intel_edp_link_config(edp_encoder, &lane, &link_bw);
Eric Anholt8febb292011-03-30 13:01:07 -07004426 } else {
4427 /* [e]DP over FDI requires target mode clock
4428 instead of link clock */
Jesse Barnese3aef172012-04-10 11:58:03 -07004429 if (is_dp)
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08004430 target_clock = mode->clock;
Eric Anholt8febb292011-03-30 13:01:07 -07004431 else
4432 target_clock = adjusted_mode->clock;
Chris Wilson021357a2010-09-07 20:54:59 +01004433
Eric Anholt8febb292011-03-30 13:01:07 -07004434 /* FDI is a binary signal running at ~2.7GHz, encoding
4435 * each output octet as 10 bits. The actual frequency
4436 * is stored as a divider into a 100MHz clock, and the
4437 * mode pixel clock is stored in units of 1KHz.
4438 * Hence the bw of each lane in terms of the mode signal
4439 * is:
4440 */
4441 link_bw = intel_fdi_link_freq(dev) * MHz(100)/KHz(1)/10;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08004442 }
Zhenyu Wang2c072452009-06-05 15:38:42 +08004443
Eric Anholt8febb292011-03-30 13:01:07 -07004444 /* determine panel color depth */
4445 temp = I915_READ(PIPECONF(pipe));
4446 temp &= ~PIPE_BPC_MASK;
Adam Jackson3b5c78a2011-12-13 15:41:00 -08004447 dither = intel_choose_pipe_bpp_dither(crtc, &pipe_bpp, mode);
Jesse Barnes5a354202011-06-24 12:19:22 -07004448 switch (pipe_bpp) {
4449 case 18:
4450 temp |= PIPE_6BPC;
4451 break;
4452 case 24:
Eric Anholt8febb292011-03-30 13:01:07 -07004453 temp |= PIPE_8BPC;
Eric Anholt8febb292011-03-30 13:01:07 -07004454 break;
Jesse Barnes5a354202011-06-24 12:19:22 -07004455 case 30:
4456 temp |= PIPE_10BPC;
Eric Anholt8febb292011-03-30 13:01:07 -07004457 break;
Jesse Barnes5a354202011-06-24 12:19:22 -07004458 case 36:
4459 temp |= PIPE_12BPC;
Eric Anholt8febb292011-03-30 13:01:07 -07004460 break;
4461 default:
Jesse Barnes62ac41a2011-07-28 12:55:14 -07004462 WARN(1, "intel_choose_pipe_bpp returned invalid value %d\n",
4463 pipe_bpp);
Jesse Barnes5a354202011-06-24 12:19:22 -07004464 temp |= PIPE_8BPC;
4465 pipe_bpp = 24;
4466 break;
Eric Anholt8febb292011-03-30 13:01:07 -07004467 }
4468
Jesse Barnes5a354202011-06-24 12:19:22 -07004469 intel_crtc->bpp = pipe_bpp;
4470 I915_WRITE(PIPECONF(pipe), temp);
4471
Eric Anholt8febb292011-03-30 13:01:07 -07004472 if (!lane) {
4473 /*
4474 * Account for spread spectrum to avoid
4475 * oversubscribing the link. Max center spread
4476 * is 2.5%; use 5% for safety's sake.
4477 */
Jesse Barnes5a354202011-06-24 12:19:22 -07004478 u32 bps = target_clock * intel_crtc->bpp * 21 / 20;
Eric Anholt8febb292011-03-30 13:01:07 -07004479 lane = bps / (link_bw * 8) + 1;
4480 }
4481
4482 intel_crtc->fdi_lanes = lane;
4483
4484 if (pixel_multiplier > 1)
4485 link_bw *= pixel_multiplier;
Jesse Barnes5a354202011-06-24 12:19:22 -07004486 ironlake_compute_m_n(intel_crtc->bpp, lane, target_clock, link_bw,
4487 &m_n);
Eric Anholt8febb292011-03-30 13:01:07 -07004488
Eric Anholta07d6782011-03-30 13:01:08 -07004489 fp = clock.n << 16 | clock.m1 << 8 | clock.m2;
4490 if (has_reduced_clock)
4491 fp2 = reduced_clock.n << 16 | reduced_clock.m1 << 8 |
4492 reduced_clock.m2;
Jesse Barnes79e53942008-11-07 14:24:08 -08004493
Chris Wilsonc1858122010-12-03 21:35:48 +00004494 /* Enable autotuning of the PLL clock (if permissible) */
Eric Anholt8febb292011-03-30 13:01:07 -07004495 factor = 21;
4496 if (is_lvds) {
4497 if ((intel_panel_use_ssc(dev_priv) &&
4498 dev_priv->lvds_ssc_freq == 100) ||
4499 (I915_READ(PCH_LVDS) & LVDS_CLKB_POWER_MASK) == LVDS_CLKB_POWER_UP)
4500 factor = 25;
4501 } else if (is_sdvo && is_tv)
4502 factor = 20;
Chris Wilsonc1858122010-12-03 21:35:48 +00004503
Jesse Barnescb0e0932011-07-28 14:50:30 -07004504 if (clock.m < factor * clock.n)
Eric Anholt8febb292011-03-30 13:01:07 -07004505 fp |= FP_CB_TUNE;
Chris Wilsonc1858122010-12-03 21:35:48 +00004506
Chris Wilson5eddb702010-09-11 13:48:45 +01004507 dpll = 0;
Zhenyu Wang2c072452009-06-05 15:38:42 +08004508
Eric Anholta07d6782011-03-30 13:01:08 -07004509 if (is_lvds)
4510 dpll |= DPLLB_MODE_LVDS;
4511 else
4512 dpll |= DPLLB_MODE_DAC_SERIAL;
4513 if (is_sdvo) {
4514 int pixel_multiplier = intel_mode_get_pixel_multiplier(adjusted_mode);
4515 if (pixel_multiplier > 1) {
4516 dpll |= (pixel_multiplier - 1) << PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT;
Jesse Barnes79e53942008-11-07 14:24:08 -08004517 }
Eric Anholta07d6782011-03-30 13:01:08 -07004518 dpll |= DPLL_DVO_HIGH_SPEED;
4519 }
Jesse Barnese3aef172012-04-10 11:58:03 -07004520 if (is_dp && !is_cpu_edp)
Eric Anholta07d6782011-03-30 13:01:08 -07004521 dpll |= DPLL_DVO_HIGH_SPEED;
Jesse Barnes79e53942008-11-07 14:24:08 -08004522
Eric Anholta07d6782011-03-30 13:01:08 -07004523 /* compute bitmask from p1 value */
4524 dpll |= (1 << (clock.p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
4525 /* also FPA1 */
4526 dpll |= (1 << (clock.p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
4527
4528 switch (clock.p2) {
4529 case 5:
4530 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
4531 break;
4532 case 7:
4533 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
4534 break;
4535 case 10:
4536 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
4537 break;
4538 case 14:
4539 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
4540 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08004541 }
4542
4543 if (is_sdvo && is_tv)
4544 dpll |= PLL_REF_INPUT_TVCLKINBC;
4545 else if (is_tv)
4546 /* XXX: just matching BIOS for now */
4547 /* dpll |= PLL_REF_INPUT_TVCLKINBC; */
4548 dpll |= 3;
Chris Wilsona7615032011-01-12 17:04:08 +00004549 else if (is_lvds && intel_panel_use_ssc(dev_priv) && num_connectors < 2)
Jesse Barnes79e53942008-11-07 14:24:08 -08004550 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
4551 else
4552 dpll |= PLL_REF_INPUT_DREFCLK;
4553
4554 /* setup pipeconf */
Chris Wilson5eddb702010-09-11 13:48:45 +01004555 pipeconf = I915_READ(PIPECONF(pipe));
Jesse Barnes79e53942008-11-07 14:24:08 -08004556
4557 /* Set up the display plane register */
4558 dspcntr = DISPPLANE_GAMMA_ENABLE;
4559
Jesse Barnesf7cb34d2011-10-12 10:49:14 -07004560 DRM_DEBUG_KMS("Mode for pipe %d:\n", pipe);
Jesse Barnes79e53942008-11-07 14:24:08 -08004561 drm_mode_debug_printmodeline(mode);
4562
Eugeni Dodonov9d82aa12012-05-09 15:37:17 -03004563 /* CPU eDP is the only output that doesn't need a PCH PLL of its own on
4564 * pre-Haswell/LPT generation */
4565 if (HAS_PCH_LPT(dev)) {
4566 DRM_DEBUG_KMS("LPT detected: no PLL for pipe %d necessary\n",
4567 pipe);
4568 } else if (!is_cpu_edp) {
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004569 struct intel_pch_pll *pll;
Chris Wilson5eddb702010-09-11 13:48:45 +01004570
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004571 pll = intel_get_pch_pll(intel_crtc, dpll, fp);
4572 if (pll == NULL) {
4573 DRM_DEBUG_DRIVER("failed to find PLL for pipe %d\n",
4574 pipe);
Jesse Barnes4b645f12011-10-12 09:51:31 -07004575 return -EINVAL;
4576 }
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004577 } else
4578 intel_put_pch_pll(intel_crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08004579
4580 /* The LVDS pin pair needs to be on before the DPLLs are enabled.
4581 * This is an exception to the general rule that mode_set doesn't turn
4582 * things on.
4583 */
4584 if (is_lvds) {
Eric Anholtfae14982011-03-30 13:01:09 -07004585 temp = I915_READ(PCH_LVDS);
Chris Wilson5eddb702010-09-11 13:48:45 +01004586 temp |= LVDS_PORT_EN | LVDS_A0A2_CLKA_POWER_UP;
Jesse Barnes7885d202012-01-12 14:51:17 -08004587 if (HAS_PCH_CPT(dev)) {
4588 temp &= ~PORT_TRANS_SEL_MASK;
Jesse Barnes4b645f12011-10-12 09:51:31 -07004589 temp |= PORT_TRANS_SEL_CPT(pipe);
Jesse Barnes7885d202012-01-12 14:51:17 -08004590 } else {
4591 if (pipe == 1)
4592 temp |= LVDS_PIPEB_SELECT;
4593 else
4594 temp &= ~LVDS_PIPEB_SELECT;
4595 }
Jesse Barnes4b645f12011-10-12 09:51:31 -07004596
Zhao Yakuia3e17eb2009-10-10 10:42:37 +08004597 /* set the corresponsding LVDS_BORDER bit */
Chris Wilson5eddb702010-09-11 13:48:45 +01004598 temp |= dev_priv->lvds_border_bits;
Jesse Barnes79e53942008-11-07 14:24:08 -08004599 /* Set the B0-B3 data pairs corresponding to whether we're going to
4600 * set the DPLLs for dual-channel mode or not.
4601 */
4602 if (clock.p2 == 7)
Chris Wilson5eddb702010-09-11 13:48:45 +01004603 temp |= LVDS_B0B3_POWER_UP | LVDS_CLKB_POWER_UP;
Jesse Barnes79e53942008-11-07 14:24:08 -08004604 else
Chris Wilson5eddb702010-09-11 13:48:45 +01004605 temp &= ~(LVDS_B0B3_POWER_UP | LVDS_CLKB_POWER_UP);
Jesse Barnes79e53942008-11-07 14:24:08 -08004606
4607 /* It would be nice to set 24 vs 18-bit mode (LVDS_A3_POWER_UP)
4608 * appropriately here, but we need to look more thoroughly into how
4609 * panels behave in the two modes.
4610 */
Chris Wilson284d5df2012-04-14 17:41:59 +01004611 temp &= ~(LVDS_HSYNC_POLARITY | LVDS_VSYNC_POLARITY);
Bryan Freedaa9b5002011-01-12 13:43:19 -08004612 if (adjusted_mode->flags & DRM_MODE_FLAG_NHSYNC)
Chris Wilson284d5df2012-04-14 17:41:59 +01004613 temp |= LVDS_HSYNC_POLARITY;
Bryan Freedaa9b5002011-01-12 13:43:19 -08004614 if (adjusted_mode->flags & DRM_MODE_FLAG_NVSYNC)
Chris Wilson284d5df2012-04-14 17:41:59 +01004615 temp |= LVDS_VSYNC_POLARITY;
Eric Anholtfae14982011-03-30 13:01:09 -07004616 I915_WRITE(PCH_LVDS, temp);
Jesse Barnes79e53942008-11-07 14:24:08 -08004617 }
Jesse Barnes434ed092010-09-07 14:48:06 -07004618
Eric Anholt8febb292011-03-30 13:01:07 -07004619 pipeconf &= ~PIPECONF_DITHER_EN;
4620 pipeconf &= ~PIPECONF_DITHER_TYPE_MASK;
Jesse Barnes5a354202011-06-24 12:19:22 -07004621 if ((is_lvds && dev_priv->lvds_dither) || dither) {
Eric Anholt8febb292011-03-30 13:01:07 -07004622 pipeconf |= PIPECONF_DITHER_EN;
Daniel Vetterf74974c2011-10-11 17:27:51 +02004623 pipeconf |= PIPECONF_DITHER_TYPE_SP;
Jesse Barnes434ed092010-09-07 14:48:06 -07004624 }
Jesse Barnese3aef172012-04-10 11:58:03 -07004625 if (is_dp && !is_cpu_edp) {
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004626 intel_dp_set_m_n(crtc, mode, adjusted_mode);
Eric Anholt8febb292011-03-30 13:01:07 -07004627 } else {
Zhenyu Wang8db9d772010-04-07 16:15:54 +08004628 /* For non-DP output, clear any trans DP clock recovery setting.*/
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08004629 I915_WRITE(TRANSDATA_M1(pipe), 0);
4630 I915_WRITE(TRANSDATA_N1(pipe), 0);
4631 I915_WRITE(TRANSDPLINK_M1(pipe), 0);
4632 I915_WRITE(TRANSDPLINK_N1(pipe), 0);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08004633 }
Jesse Barnes79e53942008-11-07 14:24:08 -08004634
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004635 if (intel_crtc->pch_pll) {
4636 I915_WRITE(intel_crtc->pch_pll->pll_reg, dpll);
Chris Wilson5eddb702010-09-11 13:48:45 +01004637
Zhenyu Wang32f9d652009-07-24 01:00:32 +08004638 /* Wait for the clocks to stabilize. */
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004639 POSTING_READ(intel_crtc->pch_pll->pll_reg);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08004640 udelay(150);
4641
Eric Anholt8febb292011-03-30 13:01:07 -07004642 /* The pixel multiplier can only be updated once the
4643 * DPLL is enabled and the clocks are stable.
4644 *
4645 * So write it again.
4646 */
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004647 I915_WRITE(intel_crtc->pch_pll->pll_reg, dpll);
Jesse Barnes79e53942008-11-07 14:24:08 -08004648 }
Jesse Barnes79e53942008-11-07 14:24:08 -08004649
Chris Wilson5eddb702010-09-11 13:48:45 +01004650 intel_crtc->lowfreq_avail = false;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004651 if (intel_crtc->pch_pll) {
Jesse Barnes4b645f12011-10-12 09:51:31 -07004652 if (is_lvds && has_reduced_clock && i915_powersave) {
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004653 I915_WRITE(intel_crtc->pch_pll->fp1_reg, fp2);
Jesse Barnes4b645f12011-10-12 09:51:31 -07004654 intel_crtc->lowfreq_avail = true;
Jesse Barnes4b645f12011-10-12 09:51:31 -07004655 } else {
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004656 I915_WRITE(intel_crtc->pch_pll->fp1_reg, fp);
Jesse Barnes652c3932009-08-17 13:31:43 -07004657 }
4658 }
4659
Keith Packard617cf882012-02-08 13:53:38 -08004660 pipeconf &= ~PIPECONF_INTERLACE_MASK;
Krzysztof Halasa734b4152010-05-25 18:41:46 +02004661 if (adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE) {
Daniel Vetter5def4742012-01-28 14:49:22 +01004662 pipeconf |= PIPECONF_INTERLACED_ILK;
Krzysztof Halasa734b4152010-05-25 18:41:46 +02004663 /* the chip adds 2 halflines automatically */
Krzysztof Halasa734b4152010-05-25 18:41:46 +02004664 adjusted_mode->crtc_vtotal -= 1;
Krzysztof Halasa734b4152010-05-25 18:41:46 +02004665 adjusted_mode->crtc_vblank_end -= 1;
Daniel Vetter0529a0d2012-01-28 14:49:24 +01004666 I915_WRITE(VSYNCSHIFT(pipe),
4667 adjusted_mode->crtc_hsync_start
4668 - adjusted_mode->crtc_htotal/2);
4669 } else {
Keith Packard617cf882012-02-08 13:53:38 -08004670 pipeconf |= PIPECONF_PROGRESSIVE;
Daniel Vetter0529a0d2012-01-28 14:49:24 +01004671 I915_WRITE(VSYNCSHIFT(pipe), 0);
4672 }
Krzysztof Halasa734b4152010-05-25 18:41:46 +02004673
Chris Wilson5eddb702010-09-11 13:48:45 +01004674 I915_WRITE(HTOTAL(pipe),
4675 (adjusted_mode->crtc_hdisplay - 1) |
Jesse Barnes79e53942008-11-07 14:24:08 -08004676 ((adjusted_mode->crtc_htotal - 1) << 16));
Chris Wilson5eddb702010-09-11 13:48:45 +01004677 I915_WRITE(HBLANK(pipe),
4678 (adjusted_mode->crtc_hblank_start - 1) |
Jesse Barnes79e53942008-11-07 14:24:08 -08004679 ((adjusted_mode->crtc_hblank_end - 1) << 16));
Chris Wilson5eddb702010-09-11 13:48:45 +01004680 I915_WRITE(HSYNC(pipe),
4681 (adjusted_mode->crtc_hsync_start - 1) |
Jesse Barnes79e53942008-11-07 14:24:08 -08004682 ((adjusted_mode->crtc_hsync_end - 1) << 16));
Chris Wilson5eddb702010-09-11 13:48:45 +01004683
4684 I915_WRITE(VTOTAL(pipe),
4685 (adjusted_mode->crtc_vdisplay - 1) |
Jesse Barnes79e53942008-11-07 14:24:08 -08004686 ((adjusted_mode->crtc_vtotal - 1) << 16));
Chris Wilson5eddb702010-09-11 13:48:45 +01004687 I915_WRITE(VBLANK(pipe),
4688 (adjusted_mode->crtc_vblank_start - 1) |
Jesse Barnes79e53942008-11-07 14:24:08 -08004689 ((adjusted_mode->crtc_vblank_end - 1) << 16));
Chris Wilson5eddb702010-09-11 13:48:45 +01004690 I915_WRITE(VSYNC(pipe),
4691 (adjusted_mode->crtc_vsync_start - 1) |
Jesse Barnes79e53942008-11-07 14:24:08 -08004692 ((adjusted_mode->crtc_vsync_end - 1) << 16));
Chris Wilson5eddb702010-09-11 13:48:45 +01004693
Eric Anholt8febb292011-03-30 13:01:07 -07004694 /* pipesrc controls the size that is scaled from, which should
4695 * always be the user's requested size.
Jesse Barnes79e53942008-11-07 14:24:08 -08004696 */
Chris Wilson5eddb702010-09-11 13:48:45 +01004697 I915_WRITE(PIPESRC(pipe),
4698 ((mode->hdisplay - 1) << 16) | (mode->vdisplay - 1));
Zhenyu Wang2c072452009-06-05 15:38:42 +08004699
Eric Anholt8febb292011-03-30 13:01:07 -07004700 I915_WRITE(PIPE_DATA_M1(pipe), TU_SIZE(m_n.tu) | m_n.gmch_m);
4701 I915_WRITE(PIPE_DATA_N1(pipe), m_n.gmch_n);
4702 I915_WRITE(PIPE_LINK_M1(pipe), m_n.link_m);
4703 I915_WRITE(PIPE_LINK_N1(pipe), m_n.link_n);
Zhenyu Wang2c072452009-06-05 15:38:42 +08004704
Jesse Barnese3aef172012-04-10 11:58:03 -07004705 if (is_cpu_edp)
Eric Anholt8febb292011-03-30 13:01:07 -07004706 ironlake_set_pll_edp(crtc, adjusted_mode->clock);
Zhenyu Wang2c072452009-06-05 15:38:42 +08004707
Chris Wilson5eddb702010-09-11 13:48:45 +01004708 I915_WRITE(PIPECONF(pipe), pipeconf);
4709 POSTING_READ(PIPECONF(pipe));
Jesse Barnes79e53942008-11-07 14:24:08 -08004710
Jesse Barnes9d0498a2010-08-18 13:20:54 -07004711 intel_wait_for_vblank(dev, pipe);
Jesse Barnes79e53942008-11-07 14:24:08 -08004712
Chris Wilson5eddb702010-09-11 13:48:45 +01004713 I915_WRITE(DSPCNTR(plane), dspcntr);
Jesse Barnesb24e7172011-01-04 15:09:30 -08004714 POSTING_READ(DSPCNTR(plane));
Jesse Barnes79e53942008-11-07 14:24:08 -08004715
Chris Wilson5c3b82e2009-02-11 13:25:09 +00004716 ret = intel_pipe_set_base(crtc, x, y, old_fb);
Shaohua Li7662c8b2009-06-26 11:23:55 +08004717
4718 intel_update_watermarks(dev);
4719
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03004720 intel_update_linetime_watermarks(dev, pipe, adjusted_mode);
4721
Chris Wilson1f803ee2009-06-06 09:45:59 +01004722 return ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08004723}
4724
Eric Anholtf564048e2011-03-30 13:01:02 -07004725static int intel_crtc_mode_set(struct drm_crtc *crtc,
4726 struct drm_display_mode *mode,
4727 struct drm_display_mode *adjusted_mode,
4728 int x, int y,
4729 struct drm_framebuffer *old_fb)
4730{
4731 struct drm_device *dev = crtc->dev;
4732 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholt0b701d22011-03-30 13:01:03 -07004733 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4734 int pipe = intel_crtc->pipe;
Eric Anholtf564048e2011-03-30 13:01:02 -07004735 int ret;
4736
Eric Anholt0b701d22011-03-30 13:01:03 -07004737 drm_vblank_pre_modeset(dev, pipe);
4738
Eric Anholtf564048e2011-03-30 13:01:02 -07004739 ret = dev_priv->display.crtc_mode_set(crtc, mode, adjusted_mode,
4740 x, y, old_fb);
Jesse Barnes79e53942008-11-07 14:24:08 -08004741 drm_vblank_post_modeset(dev, pipe);
4742
Jesse Barnesd8e70a22011-11-15 10:28:54 -08004743 if (ret)
4744 intel_crtc->dpms_mode = DRM_MODE_DPMS_OFF;
4745 else
4746 intel_crtc->dpms_mode = DRM_MODE_DPMS_ON;
Keith Packard120eced2011-07-27 01:21:40 -07004747
Jesse Barnes79e53942008-11-07 14:24:08 -08004748 return ret;
4749}
4750
Wu Fengguang3a9627f2011-12-09 20:42:19 +08004751static bool intel_eld_uptodate(struct drm_connector *connector,
4752 int reg_eldv, uint32_t bits_eldv,
4753 int reg_elda, uint32_t bits_elda,
4754 int reg_edid)
4755{
4756 struct drm_i915_private *dev_priv = connector->dev->dev_private;
4757 uint8_t *eld = connector->eld;
4758 uint32_t i;
4759
4760 i = I915_READ(reg_eldv);
4761 i &= bits_eldv;
4762
4763 if (!eld[0])
4764 return !i;
4765
4766 if (!i)
4767 return false;
4768
4769 i = I915_READ(reg_elda);
4770 i &= ~bits_elda;
4771 I915_WRITE(reg_elda, i);
4772
4773 for (i = 0; i < eld[2]; i++)
4774 if (I915_READ(reg_edid) != *((uint32_t *)eld + i))
4775 return false;
4776
4777 return true;
4778}
4779
Wu Fengguange0dac652011-09-05 14:25:34 +08004780static void g4x_write_eld(struct drm_connector *connector,
4781 struct drm_crtc *crtc)
4782{
4783 struct drm_i915_private *dev_priv = connector->dev->dev_private;
4784 uint8_t *eld = connector->eld;
4785 uint32_t eldv;
4786 uint32_t len;
4787 uint32_t i;
4788
4789 i = I915_READ(G4X_AUD_VID_DID);
4790
4791 if (i == INTEL_AUDIO_DEVBLC || i == INTEL_AUDIO_DEVCL)
4792 eldv = G4X_ELDV_DEVCL_DEVBLC;
4793 else
4794 eldv = G4X_ELDV_DEVCTG;
4795
Wu Fengguang3a9627f2011-12-09 20:42:19 +08004796 if (intel_eld_uptodate(connector,
4797 G4X_AUD_CNTL_ST, eldv,
4798 G4X_AUD_CNTL_ST, G4X_ELD_ADDR,
4799 G4X_HDMIW_HDMIEDID))
4800 return;
4801
Wu Fengguange0dac652011-09-05 14:25:34 +08004802 i = I915_READ(G4X_AUD_CNTL_ST);
4803 i &= ~(eldv | G4X_ELD_ADDR);
4804 len = (i >> 9) & 0x1f; /* ELD buffer size */
4805 I915_WRITE(G4X_AUD_CNTL_ST, i);
4806
4807 if (!eld[0])
4808 return;
4809
4810 len = min_t(uint8_t, eld[2], len);
4811 DRM_DEBUG_DRIVER("ELD size %d\n", len);
4812 for (i = 0; i < len; i++)
4813 I915_WRITE(G4X_HDMIW_HDMIEDID, *((uint32_t *)eld + i));
4814
4815 i = I915_READ(G4X_AUD_CNTL_ST);
4816 i |= eldv;
4817 I915_WRITE(G4X_AUD_CNTL_ST, i);
4818}
4819
4820static void ironlake_write_eld(struct drm_connector *connector,
4821 struct drm_crtc *crtc)
4822{
4823 struct drm_i915_private *dev_priv = connector->dev->dev_private;
4824 uint8_t *eld = connector->eld;
4825 uint32_t eldv;
4826 uint32_t i;
4827 int len;
4828 int hdmiw_hdmiedid;
Wu Fengguangb6daa022012-01-06 14:41:31 -06004829 int aud_config;
Wu Fengguange0dac652011-09-05 14:25:34 +08004830 int aud_cntl_st;
4831 int aud_cntrl_st2;
4832
Wu Fengguangb3f33cb2011-12-09 20:42:17 +08004833 if (HAS_PCH_IBX(connector->dev)) {
Wu Fengguang1202b4c62011-12-09 20:42:18 +08004834 hdmiw_hdmiedid = IBX_HDMIW_HDMIEDID_A;
Wu Fengguangb6daa022012-01-06 14:41:31 -06004835 aud_config = IBX_AUD_CONFIG_A;
Wu Fengguang1202b4c62011-12-09 20:42:18 +08004836 aud_cntl_st = IBX_AUD_CNTL_ST_A;
4837 aud_cntrl_st2 = IBX_AUD_CNTL_ST2;
Wu Fengguange0dac652011-09-05 14:25:34 +08004838 } else {
Wu Fengguang1202b4c62011-12-09 20:42:18 +08004839 hdmiw_hdmiedid = CPT_HDMIW_HDMIEDID_A;
Wu Fengguangb6daa022012-01-06 14:41:31 -06004840 aud_config = CPT_AUD_CONFIG_A;
Wu Fengguang1202b4c62011-12-09 20:42:18 +08004841 aud_cntl_st = CPT_AUD_CNTL_ST_A;
4842 aud_cntrl_st2 = CPT_AUD_CNTRL_ST2;
Wu Fengguange0dac652011-09-05 14:25:34 +08004843 }
4844
4845 i = to_intel_crtc(crtc)->pipe;
4846 hdmiw_hdmiedid += i * 0x100;
4847 aud_cntl_st += i * 0x100;
Wu Fengguangb6daa022012-01-06 14:41:31 -06004848 aud_config += i * 0x100;
Wu Fengguange0dac652011-09-05 14:25:34 +08004849
4850 DRM_DEBUG_DRIVER("ELD on pipe %c\n", pipe_name(i));
4851
4852 i = I915_READ(aud_cntl_st);
4853 i = (i >> 29) & 0x3; /* DIP_Port_Select, 0x1 = PortB */
4854 if (!i) {
4855 DRM_DEBUG_DRIVER("Audio directed to unknown port\n");
4856 /* operate blindly on all ports */
Wu Fengguang1202b4c62011-12-09 20:42:18 +08004857 eldv = IBX_ELD_VALIDB;
4858 eldv |= IBX_ELD_VALIDB << 4;
4859 eldv |= IBX_ELD_VALIDB << 8;
Wu Fengguange0dac652011-09-05 14:25:34 +08004860 } else {
4861 DRM_DEBUG_DRIVER("ELD on port %c\n", 'A' + i);
Wu Fengguang1202b4c62011-12-09 20:42:18 +08004862 eldv = IBX_ELD_VALIDB << ((i - 1) * 4);
Wu Fengguange0dac652011-09-05 14:25:34 +08004863 }
4864
Wu Fengguang3a9627f2011-12-09 20:42:19 +08004865 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT)) {
4866 DRM_DEBUG_DRIVER("ELD: DisplayPort detected\n");
4867 eld[5] |= (1 << 2); /* Conn_Type, 0x1 = DisplayPort */
Wu Fengguangb6daa022012-01-06 14:41:31 -06004868 I915_WRITE(aud_config, AUD_CONFIG_N_VALUE_INDEX); /* 0x1 = DP */
4869 } else
4870 I915_WRITE(aud_config, 0);
Wu Fengguang3a9627f2011-12-09 20:42:19 +08004871
4872 if (intel_eld_uptodate(connector,
4873 aud_cntrl_st2, eldv,
4874 aud_cntl_st, IBX_ELD_ADDRESS,
4875 hdmiw_hdmiedid))
4876 return;
4877
Wu Fengguange0dac652011-09-05 14:25:34 +08004878 i = I915_READ(aud_cntrl_st2);
4879 i &= ~eldv;
4880 I915_WRITE(aud_cntrl_st2, i);
4881
4882 if (!eld[0])
4883 return;
4884
Wu Fengguange0dac652011-09-05 14:25:34 +08004885 i = I915_READ(aud_cntl_st);
Wu Fengguang1202b4c62011-12-09 20:42:18 +08004886 i &= ~IBX_ELD_ADDRESS;
Wu Fengguange0dac652011-09-05 14:25:34 +08004887 I915_WRITE(aud_cntl_st, i);
4888
4889 len = min_t(uint8_t, eld[2], 21); /* 84 bytes of hw ELD buffer */
4890 DRM_DEBUG_DRIVER("ELD size %d\n", len);
4891 for (i = 0; i < len; i++)
4892 I915_WRITE(hdmiw_hdmiedid, *((uint32_t *)eld + i));
4893
4894 i = I915_READ(aud_cntrl_st2);
4895 i |= eldv;
4896 I915_WRITE(aud_cntrl_st2, i);
4897}
4898
4899void intel_write_eld(struct drm_encoder *encoder,
4900 struct drm_display_mode *mode)
4901{
4902 struct drm_crtc *crtc = encoder->crtc;
4903 struct drm_connector *connector;
4904 struct drm_device *dev = encoder->dev;
4905 struct drm_i915_private *dev_priv = dev->dev_private;
4906
4907 connector = drm_select_eld(encoder, mode);
4908 if (!connector)
4909 return;
4910
4911 DRM_DEBUG_DRIVER("ELD on [CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
4912 connector->base.id,
4913 drm_get_connector_name(connector),
4914 connector->encoder->base.id,
4915 drm_get_encoder_name(connector->encoder));
4916
4917 connector->eld[6] = drm_av_sync_delay(connector, mode) / 2;
4918
4919 if (dev_priv->display.write_eld)
4920 dev_priv->display.write_eld(connector, crtc);
4921}
4922
Jesse Barnes79e53942008-11-07 14:24:08 -08004923/** Loads the palette/gamma unit for the CRTC with the prepared values */
4924void intel_crtc_load_lut(struct drm_crtc *crtc)
4925{
4926 struct drm_device *dev = crtc->dev;
4927 struct drm_i915_private *dev_priv = dev->dev_private;
4928 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08004929 int palreg = PALETTE(intel_crtc->pipe);
Jesse Barnes79e53942008-11-07 14:24:08 -08004930 int i;
4931
4932 /* The clocks have to be on to load the palette. */
Alban Browaeysaed3f092012-02-24 17:12:45 +00004933 if (!crtc->enabled || !intel_crtc->active)
Jesse Barnes79e53942008-11-07 14:24:08 -08004934 return;
4935
Adam Jacksonf2b115e2009-12-03 17:14:42 -05004936 /* use legacy palette for Ironlake */
Eric Anholtbad720f2009-10-22 16:11:14 -07004937 if (HAS_PCH_SPLIT(dev))
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08004938 palreg = LGC_PALETTE(intel_crtc->pipe);
Zhenyu Wang2c072452009-06-05 15:38:42 +08004939
Jesse Barnes79e53942008-11-07 14:24:08 -08004940 for (i = 0; i < 256; i++) {
4941 I915_WRITE(palreg + 4 * i,
4942 (intel_crtc->lut_r[i] << 16) |
4943 (intel_crtc->lut_g[i] << 8) |
4944 intel_crtc->lut_b[i]);
4945 }
4946}
4947
Chris Wilson560b85b2010-08-07 11:01:38 +01004948static void i845_update_cursor(struct drm_crtc *crtc, u32 base)
4949{
4950 struct drm_device *dev = crtc->dev;
4951 struct drm_i915_private *dev_priv = dev->dev_private;
4952 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4953 bool visible = base != 0;
4954 u32 cntl;
4955
4956 if (intel_crtc->cursor_visible == visible)
4957 return;
4958
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08004959 cntl = I915_READ(_CURACNTR);
Chris Wilson560b85b2010-08-07 11:01:38 +01004960 if (visible) {
4961 /* On these chipsets we can only modify the base whilst
4962 * the cursor is disabled.
4963 */
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08004964 I915_WRITE(_CURABASE, base);
Chris Wilson560b85b2010-08-07 11:01:38 +01004965
4966 cntl &= ~(CURSOR_FORMAT_MASK);
4967 /* XXX width must be 64, stride 256 => 0x00 << 28 */
4968 cntl |= CURSOR_ENABLE |
4969 CURSOR_GAMMA_ENABLE |
4970 CURSOR_FORMAT_ARGB;
4971 } else
4972 cntl &= ~(CURSOR_ENABLE | CURSOR_GAMMA_ENABLE);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08004973 I915_WRITE(_CURACNTR, cntl);
Chris Wilson560b85b2010-08-07 11:01:38 +01004974
4975 intel_crtc->cursor_visible = visible;
4976}
4977
4978static void i9xx_update_cursor(struct drm_crtc *crtc, u32 base)
4979{
4980 struct drm_device *dev = crtc->dev;
4981 struct drm_i915_private *dev_priv = dev->dev_private;
4982 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4983 int pipe = intel_crtc->pipe;
4984 bool visible = base != 0;
4985
4986 if (intel_crtc->cursor_visible != visible) {
Jesse Barnes548f2452011-02-17 10:40:53 -08004987 uint32_t cntl = I915_READ(CURCNTR(pipe));
Chris Wilson560b85b2010-08-07 11:01:38 +01004988 if (base) {
4989 cntl &= ~(CURSOR_MODE | MCURSOR_PIPE_SELECT);
4990 cntl |= CURSOR_MODE_64_ARGB_AX | MCURSOR_GAMMA_ENABLE;
4991 cntl |= pipe << 28; /* Connect to correct pipe */
4992 } else {
4993 cntl &= ~(CURSOR_MODE | MCURSOR_GAMMA_ENABLE);
4994 cntl |= CURSOR_MODE_DISABLE;
4995 }
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08004996 I915_WRITE(CURCNTR(pipe), cntl);
Chris Wilson560b85b2010-08-07 11:01:38 +01004997
4998 intel_crtc->cursor_visible = visible;
4999 }
5000 /* and commit changes on next vblank */
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08005001 I915_WRITE(CURBASE(pipe), base);
Chris Wilson560b85b2010-08-07 11:01:38 +01005002}
5003
Jesse Barnes65a21cd2011-10-12 11:10:21 -07005004static void ivb_update_cursor(struct drm_crtc *crtc, u32 base)
5005{
5006 struct drm_device *dev = crtc->dev;
5007 struct drm_i915_private *dev_priv = dev->dev_private;
5008 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5009 int pipe = intel_crtc->pipe;
5010 bool visible = base != 0;
5011
5012 if (intel_crtc->cursor_visible != visible) {
5013 uint32_t cntl = I915_READ(CURCNTR_IVB(pipe));
5014 if (base) {
5015 cntl &= ~CURSOR_MODE;
5016 cntl |= CURSOR_MODE_64_ARGB_AX | MCURSOR_GAMMA_ENABLE;
5017 } else {
5018 cntl &= ~(CURSOR_MODE | MCURSOR_GAMMA_ENABLE);
5019 cntl |= CURSOR_MODE_DISABLE;
5020 }
5021 I915_WRITE(CURCNTR_IVB(pipe), cntl);
5022
5023 intel_crtc->cursor_visible = visible;
5024 }
5025 /* and commit changes on next vblank */
5026 I915_WRITE(CURBASE_IVB(pipe), base);
5027}
5028
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01005029/* If no-part of the cursor is visible on the framebuffer, then the GPU may hang... */
Chris Wilson6b383a72010-09-13 13:54:26 +01005030static void intel_crtc_update_cursor(struct drm_crtc *crtc,
5031 bool on)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01005032{
5033 struct drm_device *dev = crtc->dev;
5034 struct drm_i915_private *dev_priv = dev->dev_private;
5035 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5036 int pipe = intel_crtc->pipe;
5037 int x = intel_crtc->cursor_x;
5038 int y = intel_crtc->cursor_y;
Chris Wilson560b85b2010-08-07 11:01:38 +01005039 u32 base, pos;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01005040 bool visible;
5041
5042 pos = 0;
5043
Chris Wilson6b383a72010-09-13 13:54:26 +01005044 if (on && crtc->enabled && crtc->fb) {
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01005045 base = intel_crtc->cursor_addr;
5046 if (x > (int) crtc->fb->width)
5047 base = 0;
5048
5049 if (y > (int) crtc->fb->height)
5050 base = 0;
5051 } else
5052 base = 0;
5053
5054 if (x < 0) {
5055 if (x + intel_crtc->cursor_width < 0)
5056 base = 0;
5057
5058 pos |= CURSOR_POS_SIGN << CURSOR_X_SHIFT;
5059 x = -x;
5060 }
5061 pos |= x << CURSOR_X_SHIFT;
5062
5063 if (y < 0) {
5064 if (y + intel_crtc->cursor_height < 0)
5065 base = 0;
5066
5067 pos |= CURSOR_POS_SIGN << CURSOR_Y_SHIFT;
5068 y = -y;
5069 }
5070 pos |= y << CURSOR_Y_SHIFT;
5071
5072 visible = base != 0;
Chris Wilson560b85b2010-08-07 11:01:38 +01005073 if (!visible && !intel_crtc->cursor_visible)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01005074 return;
5075
Eugeni Dodonov0cd83aa2012-04-13 17:08:48 -03005076 if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev)) {
Jesse Barnes65a21cd2011-10-12 11:10:21 -07005077 I915_WRITE(CURPOS_IVB(pipe), pos);
5078 ivb_update_cursor(crtc, base);
5079 } else {
5080 I915_WRITE(CURPOS(pipe), pos);
5081 if (IS_845G(dev) || IS_I865G(dev))
5082 i845_update_cursor(crtc, base);
5083 else
5084 i9xx_update_cursor(crtc, base);
5085 }
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01005086}
5087
Jesse Barnes79e53942008-11-07 14:24:08 -08005088static int intel_crtc_cursor_set(struct drm_crtc *crtc,
Chris Wilson05394f32010-11-08 19:18:58 +00005089 struct drm_file *file,
Jesse Barnes79e53942008-11-07 14:24:08 -08005090 uint32_t handle,
5091 uint32_t width, uint32_t height)
5092{
5093 struct drm_device *dev = crtc->dev;
5094 struct drm_i915_private *dev_priv = dev->dev_private;
5095 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Chris Wilson05394f32010-11-08 19:18:58 +00005096 struct drm_i915_gem_object *obj;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01005097 uint32_t addr;
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05005098 int ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08005099
Zhao Yakui28c97732009-10-09 11:39:41 +08005100 DRM_DEBUG_KMS("\n");
Jesse Barnes79e53942008-11-07 14:24:08 -08005101
5102 /* if we want to turn off the cursor ignore width and height */
5103 if (!handle) {
Zhao Yakui28c97732009-10-09 11:39:41 +08005104 DRM_DEBUG_KMS("cursor off\n");
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05005105 addr = 0;
Chris Wilson05394f32010-11-08 19:18:58 +00005106 obj = NULL;
Pierre Willenbrock50044172009-02-23 10:12:15 +10005107 mutex_lock(&dev->struct_mutex);
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05005108 goto finish;
Jesse Barnes79e53942008-11-07 14:24:08 -08005109 }
5110
5111 /* Currently we only support 64x64 cursors */
5112 if (width != 64 || height != 64) {
5113 DRM_ERROR("we currently only support 64x64 cursors\n");
5114 return -EINVAL;
5115 }
5116
Chris Wilson05394f32010-11-08 19:18:58 +00005117 obj = to_intel_bo(drm_gem_object_lookup(dev, file, handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00005118 if (&obj->base == NULL)
Jesse Barnes79e53942008-11-07 14:24:08 -08005119 return -ENOENT;
5120
Chris Wilson05394f32010-11-08 19:18:58 +00005121 if (obj->base.size < width * height * 4) {
Jesse Barnes79e53942008-11-07 14:24:08 -08005122 DRM_ERROR("buffer is to small\n");
Dave Airlie34b8686e2009-01-15 14:03:07 +10005123 ret = -ENOMEM;
5124 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -08005125 }
5126
Dave Airlie71acb5e2008-12-30 20:31:46 +10005127 /* we only need to pin inside GTT if cursor is non-phy */
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05005128 mutex_lock(&dev->struct_mutex);
Kristian Høgsbergb295d1b2009-12-16 15:16:17 -05005129 if (!dev_priv->info->cursor_needs_physical) {
Chris Wilsond9e86c02010-11-10 16:40:20 +00005130 if (obj->tiling_mode) {
5131 DRM_ERROR("cursor cannot be tiled\n");
5132 ret = -EINVAL;
5133 goto fail_locked;
5134 }
5135
Chris Wilson2da3b9b2011-04-14 09:41:17 +01005136 ret = i915_gem_object_pin_to_display_plane(obj, 0, NULL);
Chris Wilsone7b526b2010-06-02 08:30:48 +01005137 if (ret) {
5138 DRM_ERROR("failed to move cursor bo into the GTT\n");
Chris Wilson2da3b9b2011-04-14 09:41:17 +01005139 goto fail_locked;
Chris Wilsone7b526b2010-06-02 08:30:48 +01005140 }
5141
Chris Wilsond9e86c02010-11-10 16:40:20 +00005142 ret = i915_gem_object_put_fence(obj);
5143 if (ret) {
Chris Wilson2da3b9b2011-04-14 09:41:17 +01005144 DRM_ERROR("failed to release fence for cursor");
Chris Wilsond9e86c02010-11-10 16:40:20 +00005145 goto fail_unpin;
5146 }
5147
Chris Wilson05394f32010-11-08 19:18:58 +00005148 addr = obj->gtt_offset;
Dave Airlie71acb5e2008-12-30 20:31:46 +10005149 } else {
Chris Wilson6eeefaf2010-08-07 11:01:39 +01005150 int align = IS_I830(dev) ? 16 * 1024 : 256;
Chris Wilson05394f32010-11-08 19:18:58 +00005151 ret = i915_gem_attach_phys_object(dev, obj,
Chris Wilson6eeefaf2010-08-07 11:01:39 +01005152 (intel_crtc->pipe == 0) ? I915_GEM_PHYS_CURSOR_0 : I915_GEM_PHYS_CURSOR_1,
5153 align);
Dave Airlie71acb5e2008-12-30 20:31:46 +10005154 if (ret) {
5155 DRM_ERROR("failed to attach phys object\n");
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05005156 goto fail_locked;
Dave Airlie71acb5e2008-12-30 20:31:46 +10005157 }
Chris Wilson05394f32010-11-08 19:18:58 +00005158 addr = obj->phys_obj->handle->busaddr;
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05005159 }
5160
Chris Wilsona6c45cf2010-09-17 00:32:17 +01005161 if (IS_GEN2(dev))
Jesse Barnes14b60392009-05-20 16:47:08 -04005162 I915_WRITE(CURSIZE, (height << 12) | width);
5163
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05005164 finish:
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05005165 if (intel_crtc->cursor_bo) {
Kristian Høgsbergb295d1b2009-12-16 15:16:17 -05005166 if (dev_priv->info->cursor_needs_physical) {
Chris Wilson05394f32010-11-08 19:18:58 +00005167 if (intel_crtc->cursor_bo != obj)
Dave Airlie71acb5e2008-12-30 20:31:46 +10005168 i915_gem_detach_phys_object(dev, intel_crtc->cursor_bo);
5169 } else
5170 i915_gem_object_unpin(intel_crtc->cursor_bo);
Chris Wilson05394f32010-11-08 19:18:58 +00005171 drm_gem_object_unreference(&intel_crtc->cursor_bo->base);
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05005172 }
Jesse Barnes80824002009-09-10 15:28:06 -07005173
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05005174 mutex_unlock(&dev->struct_mutex);
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05005175
5176 intel_crtc->cursor_addr = addr;
Chris Wilson05394f32010-11-08 19:18:58 +00005177 intel_crtc->cursor_bo = obj;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01005178 intel_crtc->cursor_width = width;
5179 intel_crtc->cursor_height = height;
5180
Chris Wilson6b383a72010-09-13 13:54:26 +01005181 intel_crtc_update_cursor(crtc, true);
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05005182
Jesse Barnes79e53942008-11-07 14:24:08 -08005183 return 0;
Chris Wilsone7b526b2010-06-02 08:30:48 +01005184fail_unpin:
Chris Wilson05394f32010-11-08 19:18:58 +00005185 i915_gem_object_unpin(obj);
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05005186fail_locked:
Dave Airlie34b8686e2009-01-15 14:03:07 +10005187 mutex_unlock(&dev->struct_mutex);
Luca Barbieribc9025b2010-02-09 05:49:12 +00005188fail:
Chris Wilson05394f32010-11-08 19:18:58 +00005189 drm_gem_object_unreference_unlocked(&obj->base);
Dave Airlie34b8686e2009-01-15 14:03:07 +10005190 return ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08005191}
5192
5193static int intel_crtc_cursor_move(struct drm_crtc *crtc, int x, int y)
5194{
Jesse Barnes79e53942008-11-07 14:24:08 -08005195 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08005196
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01005197 intel_crtc->cursor_x = x;
5198 intel_crtc->cursor_y = y;
Jesse Barnes652c3932009-08-17 13:31:43 -07005199
Chris Wilson6b383a72010-09-13 13:54:26 +01005200 intel_crtc_update_cursor(crtc, true);
Jesse Barnes79e53942008-11-07 14:24:08 -08005201
5202 return 0;
5203}
5204
5205/** Sets the color ramps on behalf of RandR */
5206void intel_crtc_fb_gamma_set(struct drm_crtc *crtc, u16 red, u16 green,
5207 u16 blue, int regno)
5208{
5209 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5210
5211 intel_crtc->lut_r[regno] = red >> 8;
5212 intel_crtc->lut_g[regno] = green >> 8;
5213 intel_crtc->lut_b[regno] = blue >> 8;
5214}
5215
Dave Airlieb8c00ac2009-10-06 13:54:01 +10005216void intel_crtc_fb_gamma_get(struct drm_crtc *crtc, u16 *red, u16 *green,
5217 u16 *blue, int regno)
5218{
5219 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5220
5221 *red = intel_crtc->lut_r[regno] << 8;
5222 *green = intel_crtc->lut_g[regno] << 8;
5223 *blue = intel_crtc->lut_b[regno] << 8;
5224}
5225
Jesse Barnes79e53942008-11-07 14:24:08 -08005226static void intel_crtc_gamma_set(struct drm_crtc *crtc, u16 *red, u16 *green,
James Simmons72034252010-08-03 01:33:19 +01005227 u16 *blue, uint32_t start, uint32_t size)
Jesse Barnes79e53942008-11-07 14:24:08 -08005228{
James Simmons72034252010-08-03 01:33:19 +01005229 int end = (start + size > 256) ? 256 : start + size, i;
Jesse Barnes79e53942008-11-07 14:24:08 -08005230 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08005231
James Simmons72034252010-08-03 01:33:19 +01005232 for (i = start; i < end; i++) {
Jesse Barnes79e53942008-11-07 14:24:08 -08005233 intel_crtc->lut_r[i] = red[i] >> 8;
5234 intel_crtc->lut_g[i] = green[i] >> 8;
5235 intel_crtc->lut_b[i] = blue[i] >> 8;
5236 }
5237
5238 intel_crtc_load_lut(crtc);
5239}
5240
5241/**
5242 * Get a pipe with a simple mode set on it for doing load-based monitor
5243 * detection.
5244 *
5245 * It will be up to the load-detect code to adjust the pipe as appropriate for
Eric Anholtc751ce42010-03-25 11:48:48 -07005246 * its requirements. The pipe will be connected to no other encoders.
Jesse Barnes79e53942008-11-07 14:24:08 -08005247 *
Eric Anholtc751ce42010-03-25 11:48:48 -07005248 * Currently this code will only succeed if there is a pipe with no encoders
Jesse Barnes79e53942008-11-07 14:24:08 -08005249 * configured for it. In the future, it could choose to temporarily disable
5250 * some outputs to free up a pipe for its use.
5251 *
5252 * \return crtc, or NULL if no pipes are available.
5253 */
5254
5255/* VESA 640x480x72Hz mode to set on the pipe */
5256static struct drm_display_mode load_detect_mode = {
5257 DRM_MODE("640x480", DRM_MODE_TYPE_DEFAULT, 31500, 640, 664,
5258 704, 832, 0, 480, 489, 491, 520, 0, DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
5259};
5260
Chris Wilsond2dff872011-04-19 08:36:26 +01005261static struct drm_framebuffer *
5262intel_framebuffer_create(struct drm_device *dev,
Jesse Barnes308e5bc2011-11-14 14:51:28 -08005263 struct drm_mode_fb_cmd2 *mode_cmd,
Chris Wilsond2dff872011-04-19 08:36:26 +01005264 struct drm_i915_gem_object *obj)
5265{
5266 struct intel_framebuffer *intel_fb;
5267 int ret;
5268
5269 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
5270 if (!intel_fb) {
5271 drm_gem_object_unreference_unlocked(&obj->base);
5272 return ERR_PTR(-ENOMEM);
5273 }
5274
5275 ret = intel_framebuffer_init(dev, intel_fb, mode_cmd, obj);
5276 if (ret) {
5277 drm_gem_object_unreference_unlocked(&obj->base);
5278 kfree(intel_fb);
5279 return ERR_PTR(ret);
5280 }
5281
5282 return &intel_fb->base;
5283}
5284
5285static u32
5286intel_framebuffer_pitch_for_width(int width, int bpp)
5287{
5288 u32 pitch = DIV_ROUND_UP(width * bpp, 8);
5289 return ALIGN(pitch, 64);
5290}
5291
5292static u32
5293intel_framebuffer_size_for_mode(struct drm_display_mode *mode, int bpp)
5294{
5295 u32 pitch = intel_framebuffer_pitch_for_width(mode->hdisplay, bpp);
5296 return ALIGN(pitch * mode->vdisplay, PAGE_SIZE);
5297}
5298
5299static struct drm_framebuffer *
5300intel_framebuffer_create_for_mode(struct drm_device *dev,
5301 struct drm_display_mode *mode,
5302 int depth, int bpp)
5303{
5304 struct drm_i915_gem_object *obj;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08005305 struct drm_mode_fb_cmd2 mode_cmd;
Chris Wilsond2dff872011-04-19 08:36:26 +01005306
5307 obj = i915_gem_alloc_object(dev,
5308 intel_framebuffer_size_for_mode(mode, bpp));
5309 if (obj == NULL)
5310 return ERR_PTR(-ENOMEM);
5311
5312 mode_cmd.width = mode->hdisplay;
5313 mode_cmd.height = mode->vdisplay;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08005314 mode_cmd.pitches[0] = intel_framebuffer_pitch_for_width(mode_cmd.width,
5315 bpp);
Dave Airlie5ca0c342012-02-23 15:33:40 +00005316 mode_cmd.pixel_format = drm_mode_legacy_fb_format(bpp, depth);
Chris Wilsond2dff872011-04-19 08:36:26 +01005317
5318 return intel_framebuffer_create(dev, &mode_cmd, obj);
5319}
5320
5321static struct drm_framebuffer *
5322mode_fits_in_fbdev(struct drm_device *dev,
5323 struct drm_display_mode *mode)
5324{
5325 struct drm_i915_private *dev_priv = dev->dev_private;
5326 struct drm_i915_gem_object *obj;
5327 struct drm_framebuffer *fb;
5328
5329 if (dev_priv->fbdev == NULL)
5330 return NULL;
5331
5332 obj = dev_priv->fbdev->ifb.obj;
5333 if (obj == NULL)
5334 return NULL;
5335
5336 fb = &dev_priv->fbdev->ifb.base;
Ville Syrjälä01f2c772011-12-20 00:06:49 +02005337 if (fb->pitches[0] < intel_framebuffer_pitch_for_width(mode->hdisplay,
5338 fb->bits_per_pixel))
Chris Wilsond2dff872011-04-19 08:36:26 +01005339 return NULL;
5340
Ville Syrjälä01f2c772011-12-20 00:06:49 +02005341 if (obj->base.size < mode->vdisplay * fb->pitches[0])
Chris Wilsond2dff872011-04-19 08:36:26 +01005342 return NULL;
5343
5344 return fb;
5345}
5346
Chris Wilson71731882011-04-19 23:10:58 +01005347bool intel_get_load_detect_pipe(struct intel_encoder *intel_encoder,
5348 struct drm_connector *connector,
5349 struct drm_display_mode *mode,
Chris Wilson8261b192011-04-19 23:18:09 +01005350 struct intel_load_detect_pipe *old)
Jesse Barnes79e53942008-11-07 14:24:08 -08005351{
5352 struct intel_crtc *intel_crtc;
5353 struct drm_crtc *possible_crtc;
Chris Wilson4ef69c72010-09-09 15:14:28 +01005354 struct drm_encoder *encoder = &intel_encoder->base;
Jesse Barnes79e53942008-11-07 14:24:08 -08005355 struct drm_crtc *crtc = NULL;
5356 struct drm_device *dev = encoder->dev;
Chris Wilsond2dff872011-04-19 08:36:26 +01005357 struct drm_framebuffer *old_fb;
Jesse Barnes79e53942008-11-07 14:24:08 -08005358 int i = -1;
5359
Chris Wilsond2dff872011-04-19 08:36:26 +01005360 DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
5361 connector->base.id, drm_get_connector_name(connector),
5362 encoder->base.id, drm_get_encoder_name(encoder));
5363
Jesse Barnes79e53942008-11-07 14:24:08 -08005364 /*
5365 * Algorithm gets a little messy:
Chris Wilson7a5e4802011-04-19 23:21:12 +01005366 *
Jesse Barnes79e53942008-11-07 14:24:08 -08005367 * - if the connector already has an assigned crtc, use it (but make
5368 * sure it's on first)
Chris Wilson7a5e4802011-04-19 23:21:12 +01005369 *
Jesse Barnes79e53942008-11-07 14:24:08 -08005370 * - try to find the first unused crtc that can drive this connector,
5371 * and use that if we find one
Jesse Barnes79e53942008-11-07 14:24:08 -08005372 */
5373
5374 /* See if we already have a CRTC for this connector */
5375 if (encoder->crtc) {
5376 crtc = encoder->crtc;
Chris Wilson8261b192011-04-19 23:18:09 +01005377
Jesse Barnes79e53942008-11-07 14:24:08 -08005378 intel_crtc = to_intel_crtc(crtc);
Chris Wilson8261b192011-04-19 23:18:09 +01005379 old->dpms_mode = intel_crtc->dpms_mode;
5380 old->load_detect_temp = false;
5381
5382 /* Make sure the crtc and connector are running */
Jesse Barnes79e53942008-11-07 14:24:08 -08005383 if (intel_crtc->dpms_mode != DRM_MODE_DPMS_ON) {
Chris Wilson64927112011-04-20 07:25:26 +01005384 struct drm_encoder_helper_funcs *encoder_funcs;
5385 struct drm_crtc_helper_funcs *crtc_funcs;
5386
Jesse Barnes79e53942008-11-07 14:24:08 -08005387 crtc_funcs = crtc->helper_private;
5388 crtc_funcs->dpms(crtc, DRM_MODE_DPMS_ON);
Chris Wilson64927112011-04-20 07:25:26 +01005389
5390 encoder_funcs = encoder->helper_private;
Jesse Barnes79e53942008-11-07 14:24:08 -08005391 encoder_funcs->dpms(encoder, DRM_MODE_DPMS_ON);
5392 }
Chris Wilson8261b192011-04-19 23:18:09 +01005393
Chris Wilson71731882011-04-19 23:10:58 +01005394 return true;
Jesse Barnes79e53942008-11-07 14:24:08 -08005395 }
5396
5397 /* Find an unused one (if possible) */
5398 list_for_each_entry(possible_crtc, &dev->mode_config.crtc_list, head) {
5399 i++;
5400 if (!(encoder->possible_crtcs & (1 << i)))
5401 continue;
5402 if (!possible_crtc->enabled) {
5403 crtc = possible_crtc;
5404 break;
5405 }
Jesse Barnes79e53942008-11-07 14:24:08 -08005406 }
5407
5408 /*
5409 * If we didn't find an unused CRTC, don't use any.
5410 */
5411 if (!crtc) {
Chris Wilson71731882011-04-19 23:10:58 +01005412 DRM_DEBUG_KMS("no pipe available for load-detect\n");
5413 return false;
Jesse Barnes79e53942008-11-07 14:24:08 -08005414 }
5415
5416 encoder->crtc = crtc;
Zhenyu Wangc1c43972010-03-30 14:39:30 +08005417 connector->encoder = encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08005418
5419 intel_crtc = to_intel_crtc(crtc);
Chris Wilson8261b192011-04-19 23:18:09 +01005420 old->dpms_mode = intel_crtc->dpms_mode;
5421 old->load_detect_temp = true;
Chris Wilsond2dff872011-04-19 08:36:26 +01005422 old->release_fb = NULL;
Jesse Barnes79e53942008-11-07 14:24:08 -08005423
Chris Wilson64927112011-04-20 07:25:26 +01005424 if (!mode)
5425 mode = &load_detect_mode;
Jesse Barnes79e53942008-11-07 14:24:08 -08005426
Chris Wilsond2dff872011-04-19 08:36:26 +01005427 old_fb = crtc->fb;
5428
5429 /* We need a framebuffer large enough to accommodate all accesses
5430 * that the plane may generate whilst we perform load detection.
5431 * We can not rely on the fbcon either being present (we get called
5432 * during its initialisation to detect all boot displays, or it may
5433 * not even exist) or that it is large enough to satisfy the
5434 * requested mode.
5435 */
5436 crtc->fb = mode_fits_in_fbdev(dev, mode);
5437 if (crtc->fb == NULL) {
5438 DRM_DEBUG_KMS("creating tmp fb for load-detection\n");
5439 crtc->fb = intel_framebuffer_create_for_mode(dev, mode, 24, 32);
5440 old->release_fb = crtc->fb;
5441 } else
5442 DRM_DEBUG_KMS("reusing fbdev for load-detection framebuffer\n");
5443 if (IS_ERR(crtc->fb)) {
5444 DRM_DEBUG_KMS("failed to allocate framebuffer for load-detection\n");
5445 crtc->fb = old_fb;
5446 return false;
Jesse Barnes79e53942008-11-07 14:24:08 -08005447 }
Chris Wilsond2dff872011-04-19 08:36:26 +01005448
5449 if (!drm_crtc_helper_set_mode(crtc, mode, 0, 0, old_fb)) {
Chris Wilson64927112011-04-20 07:25:26 +01005450 DRM_DEBUG_KMS("failed to set mode on load-detect pipe\n");
Chris Wilsond2dff872011-04-19 08:36:26 +01005451 if (old->release_fb)
5452 old->release_fb->funcs->destroy(old->release_fb);
5453 crtc->fb = old_fb;
Chris Wilson64927112011-04-20 07:25:26 +01005454 return false;
Jesse Barnes79e53942008-11-07 14:24:08 -08005455 }
Chris Wilson71731882011-04-19 23:10:58 +01005456
Jesse Barnes79e53942008-11-07 14:24:08 -08005457 /* let the connector get through one full cycle before testing */
Jesse Barnes9d0498a2010-08-18 13:20:54 -07005458 intel_wait_for_vblank(dev, intel_crtc->pipe);
Jesse Barnes79e53942008-11-07 14:24:08 -08005459
Chris Wilson71731882011-04-19 23:10:58 +01005460 return true;
Jesse Barnes79e53942008-11-07 14:24:08 -08005461}
5462
Zhenyu Wangc1c43972010-03-30 14:39:30 +08005463void intel_release_load_detect_pipe(struct intel_encoder *intel_encoder,
Chris Wilson8261b192011-04-19 23:18:09 +01005464 struct drm_connector *connector,
5465 struct intel_load_detect_pipe *old)
Jesse Barnes79e53942008-11-07 14:24:08 -08005466{
Chris Wilson4ef69c72010-09-09 15:14:28 +01005467 struct drm_encoder *encoder = &intel_encoder->base;
Jesse Barnes79e53942008-11-07 14:24:08 -08005468 struct drm_device *dev = encoder->dev;
5469 struct drm_crtc *crtc = encoder->crtc;
5470 struct drm_encoder_helper_funcs *encoder_funcs = encoder->helper_private;
5471 struct drm_crtc_helper_funcs *crtc_funcs = crtc->helper_private;
5472
Chris Wilsond2dff872011-04-19 08:36:26 +01005473 DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
5474 connector->base.id, drm_get_connector_name(connector),
5475 encoder->base.id, drm_get_encoder_name(encoder));
5476
Chris Wilson8261b192011-04-19 23:18:09 +01005477 if (old->load_detect_temp) {
Zhenyu Wangc1c43972010-03-30 14:39:30 +08005478 connector->encoder = NULL;
Jesse Barnes79e53942008-11-07 14:24:08 -08005479 drm_helper_disable_unused_functions(dev);
Chris Wilsond2dff872011-04-19 08:36:26 +01005480
5481 if (old->release_fb)
5482 old->release_fb->funcs->destroy(old->release_fb);
5483
Chris Wilson0622a532011-04-21 09:32:11 +01005484 return;
Jesse Barnes79e53942008-11-07 14:24:08 -08005485 }
5486
Eric Anholtc751ce42010-03-25 11:48:48 -07005487 /* Switch crtc and encoder back off if necessary */
Chris Wilson0622a532011-04-21 09:32:11 +01005488 if (old->dpms_mode != DRM_MODE_DPMS_ON) {
5489 encoder_funcs->dpms(encoder, old->dpms_mode);
Chris Wilson8261b192011-04-19 23:18:09 +01005490 crtc_funcs->dpms(crtc, old->dpms_mode);
Jesse Barnes79e53942008-11-07 14:24:08 -08005491 }
5492}
5493
5494/* Returns the clock of the currently programmed mode of the given pipe. */
5495static int intel_crtc_clock_get(struct drm_device *dev, struct drm_crtc *crtc)
5496{
5497 struct drm_i915_private *dev_priv = dev->dev_private;
5498 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5499 int pipe = intel_crtc->pipe;
Jesse Barnes548f2452011-02-17 10:40:53 -08005500 u32 dpll = I915_READ(DPLL(pipe));
Jesse Barnes79e53942008-11-07 14:24:08 -08005501 u32 fp;
5502 intel_clock_t clock;
5503
5504 if ((dpll & DISPLAY_RATE_SELECT_FPA1) == 0)
Chris Wilson39adb7a2011-04-22 22:17:21 +01005505 fp = I915_READ(FP0(pipe));
Jesse Barnes79e53942008-11-07 14:24:08 -08005506 else
Chris Wilson39adb7a2011-04-22 22:17:21 +01005507 fp = I915_READ(FP1(pipe));
Jesse Barnes79e53942008-11-07 14:24:08 -08005508
5509 clock.m1 = (fp & FP_M1_DIV_MASK) >> FP_M1_DIV_SHIFT;
Adam Jacksonf2b115e2009-12-03 17:14:42 -05005510 if (IS_PINEVIEW(dev)) {
5511 clock.n = ffs((fp & FP_N_PINEVIEW_DIV_MASK) >> FP_N_DIV_SHIFT) - 1;
5512 clock.m2 = (fp & FP_M2_PINEVIEW_DIV_MASK) >> FP_M2_DIV_SHIFT;
Shaohua Li21778322009-02-23 15:19:16 +08005513 } else {
5514 clock.n = (fp & FP_N_DIV_MASK) >> FP_N_DIV_SHIFT;
5515 clock.m2 = (fp & FP_M2_DIV_MASK) >> FP_M2_DIV_SHIFT;
5516 }
5517
Chris Wilsona6c45cf2010-09-17 00:32:17 +01005518 if (!IS_GEN2(dev)) {
Adam Jacksonf2b115e2009-12-03 17:14:42 -05005519 if (IS_PINEVIEW(dev))
5520 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_PINEVIEW) >>
5521 DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW);
Shaohua Li21778322009-02-23 15:19:16 +08005522 else
5523 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK) >>
Jesse Barnes79e53942008-11-07 14:24:08 -08005524 DPLL_FPA01_P1_POST_DIV_SHIFT);
5525
5526 switch (dpll & DPLL_MODE_MASK) {
5527 case DPLLB_MODE_DAC_SERIAL:
5528 clock.p2 = dpll & DPLL_DAC_SERIAL_P2_CLOCK_DIV_5 ?
5529 5 : 10;
5530 break;
5531 case DPLLB_MODE_LVDS:
5532 clock.p2 = dpll & DPLLB_LVDS_P2_CLOCK_DIV_7 ?
5533 7 : 14;
5534 break;
5535 default:
Zhao Yakui28c97732009-10-09 11:39:41 +08005536 DRM_DEBUG_KMS("Unknown DPLL mode %08x in programmed "
Jesse Barnes79e53942008-11-07 14:24:08 -08005537 "mode\n", (int)(dpll & DPLL_MODE_MASK));
5538 return 0;
5539 }
5540
5541 /* XXX: Handle the 100Mhz refclk */
Shaohua Li21778322009-02-23 15:19:16 +08005542 intel_clock(dev, 96000, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08005543 } else {
5544 bool is_lvds = (pipe == 1) && (I915_READ(LVDS) & LVDS_PORT_EN);
5545
5546 if (is_lvds) {
5547 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830_LVDS) >>
5548 DPLL_FPA01_P1_POST_DIV_SHIFT);
5549 clock.p2 = 14;
5550
5551 if ((dpll & PLL_REF_INPUT_MASK) ==
5552 PLLB_REF_INPUT_SPREADSPECTRUMIN) {
5553 /* XXX: might not be 66MHz */
Shaohua Li21778322009-02-23 15:19:16 +08005554 intel_clock(dev, 66000, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08005555 } else
Shaohua Li21778322009-02-23 15:19:16 +08005556 intel_clock(dev, 48000, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08005557 } else {
5558 if (dpll & PLL_P1_DIVIDE_BY_TWO)
5559 clock.p1 = 2;
5560 else {
5561 clock.p1 = ((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830) >>
5562 DPLL_FPA01_P1_POST_DIV_SHIFT) + 2;
5563 }
5564 if (dpll & PLL_P2_DIVIDE_BY_4)
5565 clock.p2 = 4;
5566 else
5567 clock.p2 = 2;
5568
Shaohua Li21778322009-02-23 15:19:16 +08005569 intel_clock(dev, 48000, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08005570 }
5571 }
5572
5573 /* XXX: It would be nice to validate the clocks, but we can't reuse
5574 * i830PllIsValid() because it relies on the xf86_config connector
5575 * configuration being accurate, which it isn't necessarily.
5576 */
5577
5578 return clock.dot;
5579}
5580
5581/** Returns the currently programmed mode of the given pipe. */
5582struct drm_display_mode *intel_crtc_mode_get(struct drm_device *dev,
5583 struct drm_crtc *crtc)
5584{
Jesse Barnes548f2452011-02-17 10:40:53 -08005585 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -08005586 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5587 int pipe = intel_crtc->pipe;
5588 struct drm_display_mode *mode;
Jesse Barnes548f2452011-02-17 10:40:53 -08005589 int htot = I915_READ(HTOTAL(pipe));
5590 int hsync = I915_READ(HSYNC(pipe));
5591 int vtot = I915_READ(VTOTAL(pipe));
5592 int vsync = I915_READ(VSYNC(pipe));
Jesse Barnes79e53942008-11-07 14:24:08 -08005593
5594 mode = kzalloc(sizeof(*mode), GFP_KERNEL);
5595 if (!mode)
5596 return NULL;
5597
5598 mode->clock = intel_crtc_clock_get(dev, crtc);
5599 mode->hdisplay = (htot & 0xffff) + 1;
5600 mode->htotal = ((htot & 0xffff0000) >> 16) + 1;
5601 mode->hsync_start = (hsync & 0xffff) + 1;
5602 mode->hsync_end = ((hsync & 0xffff0000) >> 16) + 1;
5603 mode->vdisplay = (vtot & 0xffff) + 1;
5604 mode->vtotal = ((vtot & 0xffff0000) >> 16) + 1;
5605 mode->vsync_start = (vsync & 0xffff) + 1;
5606 mode->vsync_end = ((vsync & 0xffff0000) >> 16) + 1;
5607
5608 drm_mode_set_name(mode);
Jesse Barnes79e53942008-11-07 14:24:08 -08005609
5610 return mode;
5611}
5612
Jesse Barnes652c3932009-08-17 13:31:43 -07005613#define GPU_IDLE_TIMEOUT 500 /* ms */
5614
5615/* When this timer fires, we've been idle for awhile */
5616static void intel_gpu_idle_timer(unsigned long arg)
5617{
5618 struct drm_device *dev = (struct drm_device *)arg;
5619 drm_i915_private_t *dev_priv = dev->dev_private;
5620
Chris Wilsonff7ea4c2010-12-08 09:43:41 +00005621 if (!list_empty(&dev_priv->mm.active_list)) {
5622 /* Still processing requests, so just re-arm the timer. */
5623 mod_timer(&dev_priv->idle_timer, jiffies +
5624 msecs_to_jiffies(GPU_IDLE_TIMEOUT));
5625 return;
5626 }
Jesse Barnes652c3932009-08-17 13:31:43 -07005627
Chris Wilsonff7ea4c2010-12-08 09:43:41 +00005628 dev_priv->busy = false;
Eric Anholt01dfba92009-09-06 15:18:53 -07005629 queue_work(dev_priv->wq, &dev_priv->idle_work);
Jesse Barnes652c3932009-08-17 13:31:43 -07005630}
5631
Jesse Barnes652c3932009-08-17 13:31:43 -07005632#define CRTC_IDLE_TIMEOUT 1000 /* ms */
5633
5634static void intel_crtc_idle_timer(unsigned long arg)
5635{
5636 struct intel_crtc *intel_crtc = (struct intel_crtc *)arg;
5637 struct drm_crtc *crtc = &intel_crtc->base;
5638 drm_i915_private_t *dev_priv = crtc->dev->dev_private;
Chris Wilsonff7ea4c2010-12-08 09:43:41 +00005639 struct intel_framebuffer *intel_fb;
5640
5641 intel_fb = to_intel_framebuffer(crtc->fb);
5642 if (intel_fb && intel_fb->obj->active) {
5643 /* The framebuffer is still being accessed by the GPU. */
5644 mod_timer(&intel_crtc->idle_timer, jiffies +
5645 msecs_to_jiffies(CRTC_IDLE_TIMEOUT));
5646 return;
5647 }
Jesse Barnes652c3932009-08-17 13:31:43 -07005648
Jesse Barnes652c3932009-08-17 13:31:43 -07005649 intel_crtc->busy = false;
Eric Anholt01dfba92009-09-06 15:18:53 -07005650 queue_work(dev_priv->wq, &dev_priv->idle_work);
Jesse Barnes652c3932009-08-17 13:31:43 -07005651}
5652
Daniel Vetter3dec0092010-08-20 21:40:52 +02005653static void intel_increase_pllclock(struct drm_crtc *crtc)
Jesse Barnes652c3932009-08-17 13:31:43 -07005654{
5655 struct drm_device *dev = crtc->dev;
5656 drm_i915_private_t *dev_priv = dev->dev_private;
5657 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5658 int pipe = intel_crtc->pipe;
Jesse Barnesdbdc6472010-12-30 09:36:39 -08005659 int dpll_reg = DPLL(pipe);
5660 int dpll;
Jesse Barnes652c3932009-08-17 13:31:43 -07005661
Eric Anholtbad720f2009-10-22 16:11:14 -07005662 if (HAS_PCH_SPLIT(dev))
Jesse Barnes652c3932009-08-17 13:31:43 -07005663 return;
5664
5665 if (!dev_priv->lvds_downclock_avail)
5666 return;
5667
Jesse Barnesdbdc6472010-12-30 09:36:39 -08005668 dpll = I915_READ(dpll_reg);
Jesse Barnes652c3932009-08-17 13:31:43 -07005669 if (!HAS_PIPE_CXSR(dev) && (dpll & DISPLAY_RATE_SELECT_FPA1)) {
Zhao Yakui44d98a62009-10-09 11:39:40 +08005670 DRM_DEBUG_DRIVER("upclocking LVDS\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07005671
Sean Paul8ac5a6d2012-02-13 13:14:51 -05005672 assert_panel_unlocked(dev_priv, pipe);
Jesse Barnes652c3932009-08-17 13:31:43 -07005673
5674 dpll &= ~DISPLAY_RATE_SELECT_FPA1;
5675 I915_WRITE(dpll_reg, dpll);
Jesse Barnes9d0498a2010-08-18 13:20:54 -07005676 intel_wait_for_vblank(dev, pipe);
Jesse Barnesdbdc6472010-12-30 09:36:39 -08005677
Jesse Barnes652c3932009-08-17 13:31:43 -07005678 dpll = I915_READ(dpll_reg);
5679 if (dpll & DISPLAY_RATE_SELECT_FPA1)
Zhao Yakui44d98a62009-10-09 11:39:40 +08005680 DRM_DEBUG_DRIVER("failed to upclock LVDS!\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07005681 }
5682
5683 /* Schedule downclock */
Daniel Vetter3dec0092010-08-20 21:40:52 +02005684 mod_timer(&intel_crtc->idle_timer, jiffies +
5685 msecs_to_jiffies(CRTC_IDLE_TIMEOUT));
Jesse Barnes652c3932009-08-17 13:31:43 -07005686}
5687
5688static void intel_decrease_pllclock(struct drm_crtc *crtc)
5689{
5690 struct drm_device *dev = crtc->dev;
5691 drm_i915_private_t *dev_priv = dev->dev_private;
5692 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes652c3932009-08-17 13:31:43 -07005693
Eric Anholtbad720f2009-10-22 16:11:14 -07005694 if (HAS_PCH_SPLIT(dev))
Jesse Barnes652c3932009-08-17 13:31:43 -07005695 return;
5696
5697 if (!dev_priv->lvds_downclock_avail)
5698 return;
5699
5700 /*
5701 * Since this is called by a timer, we should never get here in
5702 * the manual case.
5703 */
5704 if (!HAS_PIPE_CXSR(dev) && intel_crtc->lowfreq_avail) {
Chris Wilson074b5e12012-05-02 12:07:06 +01005705 int pipe = intel_crtc->pipe;
5706 int dpll_reg = DPLL(pipe);
Daniel Vetterdc257cf2012-05-07 11:30:46 +02005707 int dpll;
Chris Wilson074b5e12012-05-02 12:07:06 +01005708
Zhao Yakui44d98a62009-10-09 11:39:40 +08005709 DRM_DEBUG_DRIVER("downclocking LVDS\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07005710
Sean Paul8ac5a6d2012-02-13 13:14:51 -05005711 assert_panel_unlocked(dev_priv, pipe);
Jesse Barnes652c3932009-08-17 13:31:43 -07005712
Chris Wilson074b5e12012-05-02 12:07:06 +01005713 dpll = I915_READ(dpll_reg);
Jesse Barnes652c3932009-08-17 13:31:43 -07005714 dpll |= DISPLAY_RATE_SELECT_FPA1;
5715 I915_WRITE(dpll_reg, dpll);
Jesse Barnes9d0498a2010-08-18 13:20:54 -07005716 intel_wait_for_vblank(dev, pipe);
Jesse Barnes652c3932009-08-17 13:31:43 -07005717 dpll = I915_READ(dpll_reg);
5718 if (!(dpll & DISPLAY_RATE_SELECT_FPA1))
Zhao Yakui44d98a62009-10-09 11:39:40 +08005719 DRM_DEBUG_DRIVER("failed to downclock LVDS!\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07005720 }
5721
5722}
5723
5724/**
5725 * intel_idle_update - adjust clocks for idleness
5726 * @work: work struct
5727 *
5728 * Either the GPU or display (or both) went idle. Check the busy status
5729 * here and adjust the CRTC and GPU clocks as necessary.
5730 */
5731static void intel_idle_update(struct work_struct *work)
5732{
5733 drm_i915_private_t *dev_priv = container_of(work, drm_i915_private_t,
5734 idle_work);
5735 struct drm_device *dev = dev_priv->dev;
5736 struct drm_crtc *crtc;
5737 struct intel_crtc *intel_crtc;
5738
5739 if (!i915_powersave)
5740 return;
5741
5742 mutex_lock(&dev->struct_mutex);
5743
Jesse Barnes7648fa92010-05-20 14:28:11 -07005744 i915_update_gfx_val(dev_priv);
5745
Jesse Barnes652c3932009-08-17 13:31:43 -07005746 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
5747 /* Skip inactive CRTCs */
5748 if (!crtc->fb)
5749 continue;
5750
5751 intel_crtc = to_intel_crtc(crtc);
5752 if (!intel_crtc->busy)
5753 intel_decrease_pllclock(crtc);
5754 }
5755
Li Peng45ac22c2010-06-12 23:38:35 +08005756
Jesse Barnes652c3932009-08-17 13:31:43 -07005757 mutex_unlock(&dev->struct_mutex);
5758}
5759
5760/**
5761 * intel_mark_busy - mark the GPU and possibly the display busy
5762 * @dev: drm device
5763 * @obj: object we're operating on
5764 *
5765 * Callers can use this function to indicate that the GPU is busy processing
5766 * commands. If @obj matches one of the CRTC objects (i.e. it's a scanout
5767 * buffer), we'll also mark the display as busy, so we know to increase its
5768 * clock frequency.
5769 */
Chris Wilson05394f32010-11-08 19:18:58 +00005770void intel_mark_busy(struct drm_device *dev, struct drm_i915_gem_object *obj)
Jesse Barnes652c3932009-08-17 13:31:43 -07005771{
5772 drm_i915_private_t *dev_priv = dev->dev_private;
5773 struct drm_crtc *crtc = NULL;
5774 struct intel_framebuffer *intel_fb;
5775 struct intel_crtc *intel_crtc;
5776
Zhenyu Wang5e17ee72009-09-03 09:30:06 +08005777 if (!drm_core_check_feature(dev, DRIVER_MODESET))
5778 return;
5779
Chris Wilson91041832012-04-26 11:28:42 +01005780 if (!dev_priv->busy) {
5781 intel_sanitize_pm(dev);
Chris Wilson28cf7982009-11-30 01:08:56 +00005782 dev_priv->busy = true;
Chris Wilson91041832012-04-26 11:28:42 +01005783 } else
Chris Wilson28cf7982009-11-30 01:08:56 +00005784 mod_timer(&dev_priv->idle_timer, jiffies +
5785 msecs_to_jiffies(GPU_IDLE_TIMEOUT));
Jesse Barnes652c3932009-08-17 13:31:43 -07005786
Chris Wilsonacb87df2012-05-03 15:47:57 +01005787 if (obj == NULL)
5788 return;
5789
Jesse Barnes652c3932009-08-17 13:31:43 -07005790 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
5791 if (!crtc->fb)
5792 continue;
5793
5794 intel_crtc = to_intel_crtc(crtc);
5795 intel_fb = to_intel_framebuffer(crtc->fb);
5796 if (intel_fb->obj == obj) {
5797 if (!intel_crtc->busy) {
5798 /* Non-busy -> busy, upclock */
Daniel Vetter3dec0092010-08-20 21:40:52 +02005799 intel_increase_pllclock(crtc);
Jesse Barnes652c3932009-08-17 13:31:43 -07005800 intel_crtc->busy = true;
5801 } else {
5802 /* Busy -> busy, put off timer */
5803 mod_timer(&intel_crtc->idle_timer, jiffies +
5804 msecs_to_jiffies(CRTC_IDLE_TIMEOUT));
5805 }
5806 }
5807 }
5808}
5809
Jesse Barnes79e53942008-11-07 14:24:08 -08005810static void intel_crtc_destroy(struct drm_crtc *crtc)
5811{
5812 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter67e77c52010-08-20 22:26:30 +02005813 struct drm_device *dev = crtc->dev;
5814 struct intel_unpin_work *work;
5815 unsigned long flags;
5816
5817 spin_lock_irqsave(&dev->event_lock, flags);
5818 work = intel_crtc->unpin_work;
5819 intel_crtc->unpin_work = NULL;
5820 spin_unlock_irqrestore(&dev->event_lock, flags);
5821
5822 if (work) {
5823 cancel_work_sync(&work->work);
5824 kfree(work);
5825 }
Jesse Barnes79e53942008-11-07 14:24:08 -08005826
5827 drm_crtc_cleanup(crtc);
Daniel Vetter67e77c52010-08-20 22:26:30 +02005828
Jesse Barnes79e53942008-11-07 14:24:08 -08005829 kfree(intel_crtc);
5830}
5831
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005832static void intel_unpin_work_fn(struct work_struct *__work)
5833{
5834 struct intel_unpin_work *work =
5835 container_of(__work, struct intel_unpin_work, work);
5836
5837 mutex_lock(&work->dev->struct_mutex);
Chris Wilson1690e1e2011-12-14 13:57:08 +01005838 intel_unpin_fb_obj(work->old_fb_obj);
Chris Wilson05394f32010-11-08 19:18:58 +00005839 drm_gem_object_unreference(&work->pending_flip_obj->base);
5840 drm_gem_object_unreference(&work->old_fb_obj->base);
Chris Wilsond9e86c02010-11-10 16:40:20 +00005841
Chris Wilson7782de32011-07-08 12:22:41 +01005842 intel_update_fbc(work->dev);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005843 mutex_unlock(&work->dev->struct_mutex);
5844 kfree(work);
5845}
5846
Jesse Barnes1afe3e92010-03-26 10:35:20 -07005847static void do_intel_finish_page_flip(struct drm_device *dev,
Mario Kleiner49b14a52010-12-09 07:00:07 +01005848 struct drm_crtc *crtc)
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005849{
5850 drm_i915_private_t *dev_priv = dev->dev_private;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005851 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5852 struct intel_unpin_work *work;
Chris Wilson05394f32010-11-08 19:18:58 +00005853 struct drm_i915_gem_object *obj;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005854 struct drm_pending_vblank_event *e;
Mario Kleiner49b14a52010-12-09 07:00:07 +01005855 struct timeval tnow, tvbl;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005856 unsigned long flags;
5857
5858 /* Ignore early vblank irqs */
5859 if (intel_crtc == NULL)
5860 return;
5861
Mario Kleiner49b14a52010-12-09 07:00:07 +01005862 do_gettimeofday(&tnow);
5863
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005864 spin_lock_irqsave(&dev->event_lock, flags);
5865 work = intel_crtc->unpin_work;
5866 if (work == NULL || !work->pending) {
5867 spin_unlock_irqrestore(&dev->event_lock, flags);
5868 return;
5869 }
5870
5871 intel_crtc->unpin_work = NULL;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005872
5873 if (work->event) {
5874 e = work->event;
Mario Kleiner49b14a52010-12-09 07:00:07 +01005875 e->event.sequence = drm_vblank_count_and_time(dev, intel_crtc->pipe, &tvbl);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +01005876
5877 /* Called before vblank count and timestamps have
5878 * been updated for the vblank interval of flip
5879 * completion? Need to increment vblank count and
5880 * add one videorefresh duration to returned timestamp
Mario Kleiner49b14a52010-12-09 07:00:07 +01005881 * to account for this. We assume this happened if we
5882 * get called over 0.9 frame durations after the last
5883 * timestamped vblank.
5884 *
5885 * This calculation can not be used with vrefresh rates
5886 * below 5Hz (10Hz to be on the safe side) without
5887 * promoting to 64 integers.
Mario Kleiner0af7e4d2010-12-08 04:07:19 +01005888 */
Mario Kleiner49b14a52010-12-09 07:00:07 +01005889 if (10 * (timeval_to_ns(&tnow) - timeval_to_ns(&tvbl)) >
5890 9 * crtc->framedur_ns) {
Mario Kleiner0af7e4d2010-12-08 04:07:19 +01005891 e->event.sequence++;
Mario Kleiner49b14a52010-12-09 07:00:07 +01005892 tvbl = ns_to_timeval(timeval_to_ns(&tvbl) +
5893 crtc->framedur_ns);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +01005894 }
5895
Mario Kleiner49b14a52010-12-09 07:00:07 +01005896 e->event.tv_sec = tvbl.tv_sec;
5897 e->event.tv_usec = tvbl.tv_usec;
Mario Kleiner0af7e4d2010-12-08 04:07:19 +01005898
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005899 list_add_tail(&e->base.link,
5900 &e->base.file_priv->event_list);
5901 wake_up_interruptible(&e->base.file_priv->event_wait);
5902 }
5903
Mario Kleiner0af7e4d2010-12-08 04:07:19 +01005904 drm_vblank_put(dev, intel_crtc->pipe);
5905
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005906 spin_unlock_irqrestore(&dev->event_lock, flags);
5907
Chris Wilson05394f32010-11-08 19:18:58 +00005908 obj = work->old_fb_obj;
Chris Wilsond9e86c02010-11-10 16:40:20 +00005909
Chris Wilsone59f2ba2010-10-07 17:28:15 +01005910 atomic_clear_mask(1 << intel_crtc->plane,
Chris Wilson05394f32010-11-08 19:18:58 +00005911 &obj->pending_flip.counter);
5912 if (atomic_read(&obj->pending_flip) == 0)
Chris Wilsonf787a5f2010-09-24 16:02:42 +01005913 wake_up(&dev_priv->pending_flip_queue);
Chris Wilsond9e86c02010-11-10 16:40:20 +00005914
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005915 schedule_work(&work->work);
Jesse Barnese5510fa2010-07-01 16:48:37 -07005916
5917 trace_i915_flip_complete(intel_crtc->plane, work->pending_flip_obj);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005918}
5919
Jesse Barnes1afe3e92010-03-26 10:35:20 -07005920void intel_finish_page_flip(struct drm_device *dev, int pipe)
5921{
5922 drm_i915_private_t *dev_priv = dev->dev_private;
5923 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
5924
Mario Kleiner49b14a52010-12-09 07:00:07 +01005925 do_intel_finish_page_flip(dev, crtc);
Jesse Barnes1afe3e92010-03-26 10:35:20 -07005926}
5927
5928void intel_finish_page_flip_plane(struct drm_device *dev, int plane)
5929{
5930 drm_i915_private_t *dev_priv = dev->dev_private;
5931 struct drm_crtc *crtc = dev_priv->plane_to_crtc_mapping[plane];
5932
Mario Kleiner49b14a52010-12-09 07:00:07 +01005933 do_intel_finish_page_flip(dev, crtc);
Jesse Barnes1afe3e92010-03-26 10:35:20 -07005934}
5935
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005936void intel_prepare_page_flip(struct drm_device *dev, int plane)
5937{
5938 drm_i915_private_t *dev_priv = dev->dev_private;
5939 struct intel_crtc *intel_crtc =
5940 to_intel_crtc(dev_priv->plane_to_crtc_mapping[plane]);
5941 unsigned long flags;
5942
5943 spin_lock_irqsave(&dev->event_lock, flags);
Jesse Barnesde3f4402010-01-14 13:18:02 -08005944 if (intel_crtc->unpin_work) {
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01005945 if ((++intel_crtc->unpin_work->pending) > 1)
5946 DRM_ERROR("Prepared flip multiple times\n");
Jesse Barnesde3f4402010-01-14 13:18:02 -08005947 } else {
5948 DRM_DEBUG_DRIVER("preparing flip with no unpin work?\n");
5949 }
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05005950 spin_unlock_irqrestore(&dev->event_lock, flags);
5951}
5952
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07005953static int intel_gen2_queue_flip(struct drm_device *dev,
5954 struct drm_crtc *crtc,
5955 struct drm_framebuffer *fb,
5956 struct drm_i915_gem_object *obj)
5957{
5958 struct drm_i915_private *dev_priv = dev->dev_private;
5959 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5960 unsigned long offset;
5961 u32 flip_mask;
Daniel Vetter6d90c952012-04-26 23:28:05 +02005962 struct intel_ring_buffer *ring = &dev_priv->ring[RCS];
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07005963 int ret;
5964
Daniel Vetter6d90c952012-04-26 23:28:05 +02005965 ret = intel_pin_and_fence_fb_obj(dev, obj, ring);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07005966 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01005967 goto err;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07005968
5969 /* Offset into the new buffer for cases of shared fbs between CRTCs */
Ville Syrjälä01f2c772011-12-20 00:06:49 +02005970 offset = crtc->y * fb->pitches[0] + crtc->x * fb->bits_per_pixel/8;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07005971
Daniel Vetter6d90c952012-04-26 23:28:05 +02005972 ret = intel_ring_begin(ring, 6);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07005973 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01005974 goto err_unpin;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07005975
5976 /* Can't queue multiple flips, so wait for the previous
5977 * one to finish before executing the next.
5978 */
5979 if (intel_crtc->plane)
5980 flip_mask = MI_WAIT_FOR_PLANE_B_FLIP;
5981 else
5982 flip_mask = MI_WAIT_FOR_PLANE_A_FLIP;
Daniel Vetter6d90c952012-04-26 23:28:05 +02005983 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | flip_mask);
5984 intel_ring_emit(ring, MI_NOOP);
5985 intel_ring_emit(ring, MI_DISPLAY_FLIP |
5986 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
5987 intel_ring_emit(ring, fb->pitches[0]);
5988 intel_ring_emit(ring, obj->gtt_offset + offset);
5989 intel_ring_emit(ring, 0); /* aux display base address, unused */
5990 intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01005991 return 0;
5992
5993err_unpin:
5994 intel_unpin_fb_obj(obj);
5995err:
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07005996 return ret;
5997}
5998
5999static int intel_gen3_queue_flip(struct drm_device *dev,
6000 struct drm_crtc *crtc,
6001 struct drm_framebuffer *fb,
6002 struct drm_i915_gem_object *obj)
6003{
6004 struct drm_i915_private *dev_priv = dev->dev_private;
6005 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6006 unsigned long offset;
6007 u32 flip_mask;
Daniel Vetter6d90c952012-04-26 23:28:05 +02006008 struct intel_ring_buffer *ring = &dev_priv->ring[RCS];
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006009 int ret;
6010
Daniel Vetter6d90c952012-04-26 23:28:05 +02006011 ret = intel_pin_and_fence_fb_obj(dev, obj, ring);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006012 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01006013 goto err;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006014
6015 /* Offset into the new buffer for cases of shared fbs between CRTCs */
Ville Syrjälä01f2c772011-12-20 00:06:49 +02006016 offset = crtc->y * fb->pitches[0] + crtc->x * fb->bits_per_pixel/8;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006017
Daniel Vetter6d90c952012-04-26 23:28:05 +02006018 ret = intel_ring_begin(ring, 6);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006019 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01006020 goto err_unpin;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006021
6022 if (intel_crtc->plane)
6023 flip_mask = MI_WAIT_FOR_PLANE_B_FLIP;
6024 else
6025 flip_mask = MI_WAIT_FOR_PLANE_A_FLIP;
Daniel Vetter6d90c952012-04-26 23:28:05 +02006026 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | flip_mask);
6027 intel_ring_emit(ring, MI_NOOP);
6028 intel_ring_emit(ring, MI_DISPLAY_FLIP_I915 |
6029 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
6030 intel_ring_emit(ring, fb->pitches[0]);
6031 intel_ring_emit(ring, obj->gtt_offset + offset);
6032 intel_ring_emit(ring, MI_NOOP);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006033
Daniel Vetter6d90c952012-04-26 23:28:05 +02006034 intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01006035 return 0;
6036
6037err_unpin:
6038 intel_unpin_fb_obj(obj);
6039err:
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006040 return ret;
6041}
6042
6043static int intel_gen4_queue_flip(struct drm_device *dev,
6044 struct drm_crtc *crtc,
6045 struct drm_framebuffer *fb,
6046 struct drm_i915_gem_object *obj)
6047{
6048 struct drm_i915_private *dev_priv = dev->dev_private;
6049 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6050 uint32_t pf, pipesrc;
Daniel Vetter6d90c952012-04-26 23:28:05 +02006051 struct intel_ring_buffer *ring = &dev_priv->ring[RCS];
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006052 int ret;
6053
Daniel Vetter6d90c952012-04-26 23:28:05 +02006054 ret = intel_pin_and_fence_fb_obj(dev, obj, ring);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006055 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01006056 goto err;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006057
Daniel Vetter6d90c952012-04-26 23:28:05 +02006058 ret = intel_ring_begin(ring, 4);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006059 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01006060 goto err_unpin;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006061
6062 /* i965+ uses the linear or tiled offsets from the
6063 * Display Registers (which do not change across a page-flip)
6064 * so we need only reprogram the base address.
6065 */
Daniel Vetter6d90c952012-04-26 23:28:05 +02006066 intel_ring_emit(ring, MI_DISPLAY_FLIP |
6067 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
6068 intel_ring_emit(ring, fb->pitches[0]);
6069 intel_ring_emit(ring, obj->gtt_offset | obj->tiling_mode);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006070
6071 /* XXX Enabling the panel-fitter across page-flip is so far
6072 * untested on non-native modes, so ignore it for now.
6073 * pf = I915_READ(pipe == 0 ? PFA_CTL_1 : PFB_CTL_1) & PF_ENABLE;
6074 */
6075 pf = 0;
6076 pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff;
Daniel Vetter6d90c952012-04-26 23:28:05 +02006077 intel_ring_emit(ring, pf | pipesrc);
6078 intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01006079 return 0;
6080
6081err_unpin:
6082 intel_unpin_fb_obj(obj);
6083err:
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006084 return ret;
6085}
6086
6087static int intel_gen6_queue_flip(struct drm_device *dev,
6088 struct drm_crtc *crtc,
6089 struct drm_framebuffer *fb,
6090 struct drm_i915_gem_object *obj)
6091{
6092 struct drm_i915_private *dev_priv = dev->dev_private;
6093 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter6d90c952012-04-26 23:28:05 +02006094 struct intel_ring_buffer *ring = &dev_priv->ring[RCS];
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006095 uint32_t pf, pipesrc;
6096 int ret;
6097
Daniel Vetter6d90c952012-04-26 23:28:05 +02006098 ret = intel_pin_and_fence_fb_obj(dev, obj, ring);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006099 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01006100 goto err;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006101
Daniel Vetter6d90c952012-04-26 23:28:05 +02006102 ret = intel_ring_begin(ring, 4);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006103 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01006104 goto err_unpin;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006105
Daniel Vetter6d90c952012-04-26 23:28:05 +02006106 intel_ring_emit(ring, MI_DISPLAY_FLIP |
6107 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
6108 intel_ring_emit(ring, fb->pitches[0] | obj->tiling_mode);
6109 intel_ring_emit(ring, obj->gtt_offset);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006110
Chris Wilson99d9acd2012-04-17 20:37:00 +01006111 /* Contrary to the suggestions in the documentation,
6112 * "Enable Panel Fitter" does not seem to be required when page
6113 * flipping with a non-native mode, and worse causes a normal
6114 * modeset to fail.
6115 * pf = I915_READ(PF_CTL(intel_crtc->pipe)) & PF_ENABLE;
6116 */
6117 pf = 0;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006118 pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff;
Daniel Vetter6d90c952012-04-26 23:28:05 +02006119 intel_ring_emit(ring, pf | pipesrc);
6120 intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01006121 return 0;
6122
6123err_unpin:
6124 intel_unpin_fb_obj(obj);
6125err:
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006126 return ret;
6127}
6128
Jesse Barnes7c9017e2011-06-16 12:18:54 -07006129/*
6130 * On gen7 we currently use the blit ring because (in early silicon at least)
6131 * the render ring doesn't give us interrpts for page flip completion, which
6132 * means clients will hang after the first flip is queued. Fortunately the
6133 * blit ring generates interrupts properly, so use it instead.
6134 */
6135static int intel_gen7_queue_flip(struct drm_device *dev,
6136 struct drm_crtc *crtc,
6137 struct drm_framebuffer *fb,
6138 struct drm_i915_gem_object *obj)
6139{
6140 struct drm_i915_private *dev_priv = dev->dev_private;
6141 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6142 struct intel_ring_buffer *ring = &dev_priv->ring[BCS];
6143 int ret;
6144
6145 ret = intel_pin_and_fence_fb_obj(dev, obj, ring);
6146 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01006147 goto err;
Jesse Barnes7c9017e2011-06-16 12:18:54 -07006148
6149 ret = intel_ring_begin(ring, 4);
6150 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01006151 goto err_unpin;
Jesse Barnes7c9017e2011-06-16 12:18:54 -07006152
6153 intel_ring_emit(ring, MI_DISPLAY_FLIP_I915 | (intel_crtc->plane << 19));
Ville Syrjälä01f2c772011-12-20 00:06:49 +02006154 intel_ring_emit(ring, (fb->pitches[0] | obj->tiling_mode));
Jesse Barnes7c9017e2011-06-16 12:18:54 -07006155 intel_ring_emit(ring, (obj->gtt_offset));
6156 intel_ring_emit(ring, (MI_NOOP));
6157 intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01006158 return 0;
6159
6160err_unpin:
6161 intel_unpin_fb_obj(obj);
6162err:
Jesse Barnes7c9017e2011-06-16 12:18:54 -07006163 return ret;
6164}
6165
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006166static int intel_default_queue_flip(struct drm_device *dev,
6167 struct drm_crtc *crtc,
6168 struct drm_framebuffer *fb,
6169 struct drm_i915_gem_object *obj)
6170{
6171 return -ENODEV;
6172}
6173
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006174static int intel_crtc_page_flip(struct drm_crtc *crtc,
6175 struct drm_framebuffer *fb,
6176 struct drm_pending_vblank_event *event)
6177{
6178 struct drm_device *dev = crtc->dev;
6179 struct drm_i915_private *dev_priv = dev->dev_private;
6180 struct intel_framebuffer *intel_fb;
Chris Wilson05394f32010-11-08 19:18:58 +00006181 struct drm_i915_gem_object *obj;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006182 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6183 struct intel_unpin_work *work;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006184 unsigned long flags;
Chris Wilson52e68632010-08-08 10:15:59 +01006185 int ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006186
6187 work = kzalloc(sizeof *work, GFP_KERNEL);
6188 if (work == NULL)
6189 return -ENOMEM;
6190
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006191 work->event = event;
6192 work->dev = crtc->dev;
6193 intel_fb = to_intel_framebuffer(crtc->fb);
Jesse Barnesb1b87f62010-01-26 14:40:05 -08006194 work->old_fb_obj = intel_fb->obj;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006195 INIT_WORK(&work->work, intel_unpin_work_fn);
6196
Jesse Barnes7317c75e62011-08-29 09:45:28 -07006197 ret = drm_vblank_get(dev, intel_crtc->pipe);
6198 if (ret)
6199 goto free_work;
6200
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006201 /* We borrow the event spin lock for protecting unpin_work */
6202 spin_lock_irqsave(&dev->event_lock, flags);
6203 if (intel_crtc->unpin_work) {
6204 spin_unlock_irqrestore(&dev->event_lock, flags);
6205 kfree(work);
Jesse Barnes7317c75e62011-08-29 09:45:28 -07006206 drm_vblank_put(dev, intel_crtc->pipe);
Chris Wilson468f0b42010-05-27 13:18:13 +01006207
6208 DRM_DEBUG_DRIVER("flip queue: crtc already busy\n");
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006209 return -EBUSY;
6210 }
6211 intel_crtc->unpin_work = work;
6212 spin_unlock_irqrestore(&dev->event_lock, flags);
6213
6214 intel_fb = to_intel_framebuffer(fb);
6215 obj = intel_fb->obj;
6216
Chris Wilson468f0b42010-05-27 13:18:13 +01006217 mutex_lock(&dev->struct_mutex);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006218
Jesse Barnes75dfca82010-02-10 15:09:44 -08006219 /* Reference the objects for the scheduled work. */
Chris Wilson05394f32010-11-08 19:18:58 +00006220 drm_gem_object_reference(&work->old_fb_obj->base);
6221 drm_gem_object_reference(&obj->base);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006222
6223 crtc->fb = fb;
Chris Wilson96b099f2010-06-07 14:03:04 +01006224
Chris Wilsone1f99ce2010-10-27 12:45:26 +01006225 work->pending_flip_obj = obj;
Chris Wilsone1f99ce2010-10-27 12:45:26 +01006226
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01006227 work->enable_stall_check = true;
6228
Chris Wilsone1f99ce2010-10-27 12:45:26 +01006229 /* Block clients from rendering to the new back buffer until
6230 * the flip occurs and the object is no longer visible.
6231 */
Chris Wilson05394f32010-11-08 19:18:58 +00006232 atomic_add(1 << intel_crtc->plane, &work->old_fb_obj->pending_flip);
Chris Wilsone1f99ce2010-10-27 12:45:26 +01006233
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006234 ret = dev_priv->display.queue_flip(dev, crtc, fb, obj);
6235 if (ret)
6236 goto cleanup_pending;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006237
Chris Wilson7782de32011-07-08 12:22:41 +01006238 intel_disable_fbc(dev);
Chris Wilsonacb87df2012-05-03 15:47:57 +01006239 intel_mark_busy(dev, obj);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006240 mutex_unlock(&dev->struct_mutex);
6241
Jesse Barnese5510fa2010-07-01 16:48:37 -07006242 trace_i915_flip_request(intel_crtc->plane, obj);
6243
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006244 return 0;
Chris Wilson96b099f2010-06-07 14:03:04 +01006245
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006246cleanup_pending:
6247 atomic_sub(1 << intel_crtc->plane, &work->old_fb_obj->pending_flip);
Chris Wilson05394f32010-11-08 19:18:58 +00006248 drm_gem_object_unreference(&work->old_fb_obj->base);
6249 drm_gem_object_unreference(&obj->base);
Chris Wilson96b099f2010-06-07 14:03:04 +01006250 mutex_unlock(&dev->struct_mutex);
6251
6252 spin_lock_irqsave(&dev->event_lock, flags);
6253 intel_crtc->unpin_work = NULL;
6254 spin_unlock_irqrestore(&dev->event_lock, flags);
6255
Jesse Barnes7317c75e62011-08-29 09:45:28 -07006256 drm_vblank_put(dev, intel_crtc->pipe);
6257free_work:
Chris Wilson96b099f2010-06-07 14:03:04 +01006258 kfree(work);
6259
6260 return ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006261}
6262
Chris Wilson47f1c6c2010-12-03 15:37:31 +00006263static void intel_sanitize_modesetting(struct drm_device *dev,
6264 int pipe, int plane)
6265{
6266 struct drm_i915_private *dev_priv = dev->dev_private;
6267 u32 reg, val;
Daniel Vettera9dcf842012-05-13 22:29:25 +02006268 int i;
Chris Wilson47f1c6c2010-12-03 15:37:31 +00006269
Chris Wilsonf47166d2012-03-22 15:00:50 +00006270 /* Clear any frame start delays used for debugging left by the BIOS */
Daniel Vettera9dcf842012-05-13 22:29:25 +02006271 for_each_pipe(i) {
6272 reg = PIPECONF(i);
Chris Wilsonf47166d2012-03-22 15:00:50 +00006273 I915_WRITE(reg, I915_READ(reg) & ~PIPECONF_FRAME_START_DELAY_MASK);
6274 }
6275
Chris Wilson47f1c6c2010-12-03 15:37:31 +00006276 if (HAS_PCH_SPLIT(dev))
6277 return;
6278
6279 /* Who knows what state these registers were left in by the BIOS or
6280 * grub?
6281 *
6282 * If we leave the registers in a conflicting state (e.g. with the
6283 * display plane reading from the other pipe than the one we intend
6284 * to use) then when we attempt to teardown the active mode, we will
6285 * not disable the pipes and planes in the correct order -- leaving
6286 * a plane reading from a disabled pipe and possibly leading to
6287 * undefined behaviour.
6288 */
6289
6290 reg = DSPCNTR(plane);
6291 val = I915_READ(reg);
6292
6293 if ((val & DISPLAY_PLANE_ENABLE) == 0)
6294 return;
6295 if (!!(val & DISPPLANE_SEL_PIPE_MASK) == pipe)
6296 return;
6297
6298 /* This display plane is active and attached to the other CPU pipe. */
6299 pipe = !pipe;
6300
6301 /* Disable the plane and wait for it to stop reading from the pipe. */
Jesse Barnesb24e7172011-01-04 15:09:30 -08006302 intel_disable_plane(dev_priv, plane, pipe);
6303 intel_disable_pipe(dev_priv, pipe);
Chris Wilson47f1c6c2010-12-03 15:37:31 +00006304}
Jesse Barnes79e53942008-11-07 14:24:08 -08006305
Chris Wilsonf6e5b162011-04-12 18:06:51 +01006306static void intel_crtc_reset(struct drm_crtc *crtc)
6307{
6308 struct drm_device *dev = crtc->dev;
6309 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6310
6311 /* Reset flags back to the 'unknown' status so that they
6312 * will be correctly set on the initial modeset.
6313 */
6314 intel_crtc->dpms_mode = -1;
6315
6316 /* We need to fix up any BIOS configuration that conflicts with
6317 * our expectations.
6318 */
6319 intel_sanitize_modesetting(dev, intel_crtc->pipe, intel_crtc->plane);
6320}
6321
6322static struct drm_crtc_helper_funcs intel_helper_funcs = {
6323 .dpms = intel_crtc_dpms,
6324 .mode_fixup = intel_crtc_mode_fixup,
6325 .mode_set = intel_crtc_mode_set,
6326 .mode_set_base = intel_pipe_set_base,
6327 .mode_set_base_atomic = intel_pipe_set_base_atomic,
6328 .load_lut = intel_crtc_load_lut,
6329 .disable = intel_crtc_disable,
6330};
6331
6332static const struct drm_crtc_funcs intel_crtc_funcs = {
6333 .reset = intel_crtc_reset,
6334 .cursor_set = intel_crtc_cursor_set,
6335 .cursor_move = intel_crtc_cursor_move,
6336 .gamma_set = intel_crtc_gamma_set,
6337 .set_config = drm_crtc_helper_set_config,
6338 .destroy = intel_crtc_destroy,
6339 .page_flip = intel_crtc_page_flip,
6340};
6341
Jesse Barnesee7b9f92012-04-20 17:11:53 +01006342static void intel_pch_pll_init(struct drm_device *dev)
6343{
6344 drm_i915_private_t *dev_priv = dev->dev_private;
6345 int i;
6346
6347 if (dev_priv->num_pch_pll == 0) {
6348 DRM_DEBUG_KMS("No PCH PLLs on this hardware, skipping initialisation\n");
6349 return;
6350 }
6351
6352 for (i = 0; i < dev_priv->num_pch_pll; i++) {
6353 dev_priv->pch_plls[i].pll_reg = _PCH_DPLL(i);
6354 dev_priv->pch_plls[i].fp0_reg = _PCH_FP0(i);
6355 dev_priv->pch_plls[i].fp1_reg = _PCH_FP1(i);
6356 }
6357}
6358
Hannes Ederb358d0a2008-12-18 21:18:47 +01006359static void intel_crtc_init(struct drm_device *dev, int pipe)
Jesse Barnes79e53942008-11-07 14:24:08 -08006360{
Jesse Barnes22fd0fa2009-12-02 13:42:53 -08006361 drm_i915_private_t *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -08006362 struct intel_crtc *intel_crtc;
6363 int i;
6364
6365 intel_crtc = kzalloc(sizeof(struct intel_crtc) + (INTELFB_CONN_LIMIT * sizeof(struct drm_connector *)), GFP_KERNEL);
6366 if (intel_crtc == NULL)
6367 return;
6368
6369 drm_crtc_init(dev, &intel_crtc->base, &intel_crtc_funcs);
6370
6371 drm_mode_crtc_set_gamma_size(&intel_crtc->base, 256);
Jesse Barnes79e53942008-11-07 14:24:08 -08006372 for (i = 0; i < 256; i++) {
6373 intel_crtc->lut_r[i] = i;
6374 intel_crtc->lut_g[i] = i;
6375 intel_crtc->lut_b[i] = i;
6376 }
6377
Jesse Barnes80824002009-09-10 15:28:06 -07006378 /* Swap pipes & planes for FBC on pre-965 */
6379 intel_crtc->pipe = pipe;
6380 intel_crtc->plane = pipe;
Chris Wilsone2e767a2010-09-13 16:53:12 +01006381 if (IS_MOBILE(dev) && IS_GEN3(dev)) {
Zhao Yakui28c97732009-10-09 11:39:41 +08006382 DRM_DEBUG_KMS("swapping pipes & planes for FBC\n");
Chris Wilsone2e767a2010-09-13 16:53:12 +01006383 intel_crtc->plane = !pipe;
Jesse Barnes80824002009-09-10 15:28:06 -07006384 }
6385
Jesse Barnes22fd0fa2009-12-02 13:42:53 -08006386 BUG_ON(pipe >= ARRAY_SIZE(dev_priv->plane_to_crtc_mapping) ||
6387 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] != NULL);
6388 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] = &intel_crtc->base;
6389 dev_priv->pipe_to_crtc_mapping[intel_crtc->pipe] = &intel_crtc->base;
6390
Chris Wilson5d1d0cc2011-01-24 15:02:15 +00006391 intel_crtc_reset(&intel_crtc->base);
Chris Wilson04dbff52011-02-10 17:38:35 +00006392 intel_crtc->active = true; /* force the pipe off on setup_init_config */
Jesse Barnes5a354202011-06-24 12:19:22 -07006393 intel_crtc->bpp = 24; /* default for pre-Ironlake */
Jesse Barnes7e7d76c2010-09-10 10:47:20 -07006394
6395 if (HAS_PCH_SPLIT(dev)) {
6396 intel_helper_funcs.prepare = ironlake_crtc_prepare;
6397 intel_helper_funcs.commit = ironlake_crtc_commit;
6398 } else {
6399 intel_helper_funcs.prepare = i9xx_crtc_prepare;
6400 intel_helper_funcs.commit = i9xx_crtc_commit;
6401 }
6402
Jesse Barnes79e53942008-11-07 14:24:08 -08006403 drm_crtc_helper_add(&intel_crtc->base, &intel_helper_funcs);
6404
Jesse Barnes652c3932009-08-17 13:31:43 -07006405 intel_crtc->busy = false;
6406
6407 setup_timer(&intel_crtc->idle_timer, intel_crtc_idle_timer,
6408 (unsigned long)intel_crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08006409}
6410
Carl Worth08d7b3d2009-04-29 14:43:54 -07006411int intel_get_pipe_from_crtc_id(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00006412 struct drm_file *file)
Carl Worth08d7b3d2009-04-29 14:43:54 -07006413{
Carl Worth08d7b3d2009-04-29 14:43:54 -07006414 struct drm_i915_get_pipe_from_crtc_id *pipe_from_crtc_id = data;
Daniel Vetterc05422d2009-08-11 16:05:30 +02006415 struct drm_mode_object *drmmode_obj;
6416 struct intel_crtc *crtc;
Carl Worth08d7b3d2009-04-29 14:43:54 -07006417
Daniel Vetter1cff8f62012-04-24 09:55:08 +02006418 if (!drm_core_check_feature(dev, DRIVER_MODESET))
6419 return -ENODEV;
Carl Worth08d7b3d2009-04-29 14:43:54 -07006420
Daniel Vetterc05422d2009-08-11 16:05:30 +02006421 drmmode_obj = drm_mode_object_find(dev, pipe_from_crtc_id->crtc_id,
6422 DRM_MODE_OBJECT_CRTC);
Carl Worth08d7b3d2009-04-29 14:43:54 -07006423
Daniel Vetterc05422d2009-08-11 16:05:30 +02006424 if (!drmmode_obj) {
Carl Worth08d7b3d2009-04-29 14:43:54 -07006425 DRM_ERROR("no such CRTC id\n");
6426 return -EINVAL;
6427 }
6428
Daniel Vetterc05422d2009-08-11 16:05:30 +02006429 crtc = to_intel_crtc(obj_to_crtc(drmmode_obj));
6430 pipe_from_crtc_id->pipe = crtc->pipe;
Carl Worth08d7b3d2009-04-29 14:43:54 -07006431
Daniel Vetterc05422d2009-08-11 16:05:30 +02006432 return 0;
Carl Worth08d7b3d2009-04-29 14:43:54 -07006433}
6434
Zhenyu Wangc5e4df32010-03-30 14:39:27 +08006435static int intel_encoder_clones(struct drm_device *dev, int type_mask)
Jesse Barnes79e53942008-11-07 14:24:08 -08006436{
Chris Wilson4ef69c72010-09-09 15:14:28 +01006437 struct intel_encoder *encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08006438 int index_mask = 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08006439 int entry = 0;
6440
Chris Wilson4ef69c72010-09-09 15:14:28 +01006441 list_for_each_entry(encoder, &dev->mode_config.encoder_list, base.head) {
6442 if (type_mask & encoder->clone_mask)
Jesse Barnes79e53942008-11-07 14:24:08 -08006443 index_mask |= (1 << entry);
6444 entry++;
6445 }
Chris Wilson4ef69c72010-09-09 15:14:28 +01006446
Jesse Barnes79e53942008-11-07 14:24:08 -08006447 return index_mask;
6448}
6449
Chris Wilson4d302442010-12-14 19:21:29 +00006450static bool has_edp_a(struct drm_device *dev)
6451{
6452 struct drm_i915_private *dev_priv = dev->dev_private;
6453
6454 if (!IS_MOBILE(dev))
6455 return false;
6456
6457 if ((I915_READ(DP_A) & DP_DETECTED) == 0)
6458 return false;
6459
6460 if (IS_GEN5(dev) &&
6461 (I915_READ(ILK_DISPLAY_CHICKEN_FUSES) & ILK_eDP_A_DISABLE))
6462 return false;
6463
6464 return true;
6465}
6466
Jesse Barnes79e53942008-11-07 14:24:08 -08006467static void intel_setup_outputs(struct drm_device *dev)
6468{
Eric Anholt725e30a2009-01-22 13:01:02 -08006469 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson4ef69c72010-09-09 15:14:28 +01006470 struct intel_encoder *encoder;
Adam Jacksoncb0953d2010-07-16 14:46:29 -04006471 bool dpd_is_edp = false;
Chris Wilsonf3cfcba2012-02-09 09:35:53 +00006472 bool has_lvds;
Jesse Barnes79e53942008-11-07 14:24:08 -08006473
Chris Wilsonf3cfcba2012-02-09 09:35:53 +00006474 has_lvds = intel_lvds_init(dev);
Chris Wilsonc5d1b512010-11-29 18:00:23 +00006475 if (!has_lvds && !HAS_PCH_SPLIT(dev)) {
6476 /* disable the panel fitter on everything but LVDS */
6477 I915_WRITE(PFIT_CONTROL, 0);
6478 }
Jesse Barnes79e53942008-11-07 14:24:08 -08006479
Eric Anholtbad720f2009-10-22 16:11:14 -07006480 if (HAS_PCH_SPLIT(dev)) {
Adam Jacksoncb0953d2010-07-16 14:46:29 -04006481 dpd_is_edp = intel_dpd_is_edp(dev);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +08006482
Chris Wilson4d302442010-12-14 19:21:29 +00006483 if (has_edp_a(dev))
Zhenyu Wang32f9d652009-07-24 01:00:32 +08006484 intel_dp_init(dev, DP_A);
6485
Adam Jacksoncb0953d2010-07-16 14:46:29 -04006486 if (dpd_is_edp && (I915_READ(PCH_DP_D) & DP_DETECTED))
6487 intel_dp_init(dev, PCH_DP_D);
6488 }
6489
6490 intel_crt_init(dev);
6491
Eugeni Dodonov0e72a5b2012-05-09 15:37:27 -03006492 if (IS_HASWELL(dev)) {
6493 int found;
6494
6495 /* Haswell uses DDI functions to detect digital outputs */
6496 found = I915_READ(DDI_BUF_CTL_A) & DDI_INIT_DISPLAY_DETECTED;
6497 /* DDI A only supports eDP */
6498 if (found)
6499 intel_ddi_init(dev, PORT_A);
6500
6501 /* DDI B, C and D detection is indicated by the SFUSE_STRAP
6502 * register */
6503 found = I915_READ(SFUSE_STRAP);
6504
6505 if (found & SFUSE_STRAP_DDIB_DETECTED)
6506 intel_ddi_init(dev, PORT_B);
6507 if (found & SFUSE_STRAP_DDIC_DETECTED)
6508 intel_ddi_init(dev, PORT_C);
6509 if (found & SFUSE_STRAP_DDID_DETECTED)
6510 intel_ddi_init(dev, PORT_D);
6511 } else if (HAS_PCH_SPLIT(dev)) {
Adam Jacksoncb0953d2010-07-16 14:46:29 -04006512 int found;
6513
Zhenyu Wang30ad48b2009-06-05 15:38:43 +08006514 if (I915_READ(HDMIB) & PORT_DETECTED) {
Zhao Yakui461ed3c2010-03-30 15:11:33 +08006515 /* PCH SDVOB multiplex with HDMIB */
Daniel Vettereef4eac2012-03-23 23:43:35 +01006516 found = intel_sdvo_init(dev, PCH_SDVOB, true);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +08006517 if (!found)
6518 intel_hdmi_init(dev, HDMIB);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08006519 if (!found && (I915_READ(PCH_DP_B) & DP_DETECTED))
6520 intel_dp_init(dev, PCH_DP_B);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +08006521 }
6522
6523 if (I915_READ(HDMIC) & PORT_DETECTED)
6524 intel_hdmi_init(dev, HDMIC);
6525
6526 if (I915_READ(HDMID) & PORT_DETECTED)
6527 intel_hdmi_init(dev, HDMID);
6528
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08006529 if (I915_READ(PCH_DP_C) & DP_DETECTED)
6530 intel_dp_init(dev, PCH_DP_C);
6531
Adam Jacksoncb0953d2010-07-16 14:46:29 -04006532 if (!dpd_is_edp && (I915_READ(PCH_DP_D) & DP_DETECTED))
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08006533 intel_dp_init(dev, PCH_DP_D);
6534
Zhenyu Wang103a1962009-11-27 11:44:36 +08006535 } else if (SUPPORTS_DIGITAL_OUTPUTS(dev)) {
Ma Ling27185ae2009-08-24 13:50:23 +08006536 bool found = false;
Eric Anholt7d573822009-01-02 13:33:00 -08006537
Eric Anholt725e30a2009-01-22 13:01:02 -08006538 if (I915_READ(SDVOB) & SDVO_DETECTED) {
Jesse Barnesb01f2c32009-12-11 11:07:17 -08006539 DRM_DEBUG_KMS("probing SDVOB\n");
Daniel Vettereef4eac2012-03-23 23:43:35 +01006540 found = intel_sdvo_init(dev, SDVOB, true);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08006541 if (!found && SUPPORTS_INTEGRATED_HDMI(dev)) {
6542 DRM_DEBUG_KMS("probing HDMI on SDVOB\n");
Eric Anholt725e30a2009-01-22 13:01:02 -08006543 intel_hdmi_init(dev, SDVOB);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08006544 }
Ma Ling27185ae2009-08-24 13:50:23 +08006545
Jesse Barnesb01f2c32009-12-11 11:07:17 -08006546 if (!found && SUPPORTS_INTEGRATED_DP(dev)) {
6547 DRM_DEBUG_KMS("probing DP_B\n");
Keith Packarda4fc5ed2009-04-07 16:16:42 -07006548 intel_dp_init(dev, DP_B);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08006549 }
Eric Anholt725e30a2009-01-22 13:01:02 -08006550 }
Kristian Høgsberg13520b02009-03-13 15:42:14 -04006551
6552 /* Before G4X SDVOC doesn't have its own detect register */
Kristian Høgsberg13520b02009-03-13 15:42:14 -04006553
Jesse Barnesb01f2c32009-12-11 11:07:17 -08006554 if (I915_READ(SDVOB) & SDVO_DETECTED) {
6555 DRM_DEBUG_KMS("probing SDVOC\n");
Daniel Vettereef4eac2012-03-23 23:43:35 +01006556 found = intel_sdvo_init(dev, SDVOC, false);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08006557 }
Ma Ling27185ae2009-08-24 13:50:23 +08006558
6559 if (!found && (I915_READ(SDVOC) & SDVO_DETECTED)) {
6560
Jesse Barnesb01f2c32009-12-11 11:07:17 -08006561 if (SUPPORTS_INTEGRATED_HDMI(dev)) {
6562 DRM_DEBUG_KMS("probing HDMI on SDVOC\n");
Eric Anholt725e30a2009-01-22 13:01:02 -08006563 intel_hdmi_init(dev, SDVOC);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08006564 }
6565 if (SUPPORTS_INTEGRATED_DP(dev)) {
6566 DRM_DEBUG_KMS("probing DP_C\n");
Keith Packarda4fc5ed2009-04-07 16:16:42 -07006567 intel_dp_init(dev, DP_C);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08006568 }
Eric Anholt725e30a2009-01-22 13:01:02 -08006569 }
Ma Ling27185ae2009-08-24 13:50:23 +08006570
Jesse Barnesb01f2c32009-12-11 11:07:17 -08006571 if (SUPPORTS_INTEGRATED_DP(dev) &&
6572 (I915_READ(DP_D) & DP_DETECTED)) {
6573 DRM_DEBUG_KMS("probing DP_D\n");
Keith Packarda4fc5ed2009-04-07 16:16:42 -07006574 intel_dp_init(dev, DP_D);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08006575 }
Eric Anholtbad720f2009-10-22 16:11:14 -07006576 } else if (IS_GEN2(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -08006577 intel_dvo_init(dev);
6578
Zhenyu Wang103a1962009-11-27 11:44:36 +08006579 if (SUPPORTS_TV(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -08006580 intel_tv_init(dev);
6581
Chris Wilson4ef69c72010-09-09 15:14:28 +01006582 list_for_each_entry(encoder, &dev->mode_config.encoder_list, base.head) {
6583 encoder->base.possible_crtcs = encoder->crtc_mask;
6584 encoder->base.possible_clones =
6585 intel_encoder_clones(dev, encoder->clone_mask);
Jesse Barnes79e53942008-11-07 14:24:08 -08006586 }
Chris Wilson47356eb2011-01-11 17:06:04 +00006587
Chris Wilson2c7111d2011-03-29 10:40:27 +01006588 /* disable all the possible outputs/crtcs before entering KMS mode */
6589 drm_helper_disable_unused_functions(dev);
Keith Packard9fb526d2011-09-26 22:24:57 -07006590
6591 if (HAS_PCH_SPLIT(dev))
6592 ironlake_init_pch_refclk(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08006593}
6594
6595static void intel_user_framebuffer_destroy(struct drm_framebuffer *fb)
6596{
6597 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
Jesse Barnes79e53942008-11-07 14:24:08 -08006598
6599 drm_framebuffer_cleanup(fb);
Chris Wilson05394f32010-11-08 19:18:58 +00006600 drm_gem_object_unreference_unlocked(&intel_fb->obj->base);
Jesse Barnes79e53942008-11-07 14:24:08 -08006601
6602 kfree(intel_fb);
6603}
6604
6605static int intel_user_framebuffer_create_handle(struct drm_framebuffer *fb,
Chris Wilson05394f32010-11-08 19:18:58 +00006606 struct drm_file *file,
Jesse Barnes79e53942008-11-07 14:24:08 -08006607 unsigned int *handle)
6608{
6609 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
Chris Wilson05394f32010-11-08 19:18:58 +00006610 struct drm_i915_gem_object *obj = intel_fb->obj;
Jesse Barnes79e53942008-11-07 14:24:08 -08006611
Chris Wilson05394f32010-11-08 19:18:58 +00006612 return drm_gem_handle_create(file, &obj->base, handle);
Jesse Barnes79e53942008-11-07 14:24:08 -08006613}
6614
6615static const struct drm_framebuffer_funcs intel_fb_funcs = {
6616 .destroy = intel_user_framebuffer_destroy,
6617 .create_handle = intel_user_framebuffer_create_handle,
6618};
6619
Dave Airlie38651672010-03-30 05:34:13 +00006620int intel_framebuffer_init(struct drm_device *dev,
6621 struct intel_framebuffer *intel_fb,
Jesse Barnes308e5bc2011-11-14 14:51:28 -08006622 struct drm_mode_fb_cmd2 *mode_cmd,
Chris Wilson05394f32010-11-08 19:18:58 +00006623 struct drm_i915_gem_object *obj)
Jesse Barnes79e53942008-11-07 14:24:08 -08006624{
Jesse Barnes79e53942008-11-07 14:24:08 -08006625 int ret;
6626
Chris Wilson05394f32010-11-08 19:18:58 +00006627 if (obj->tiling_mode == I915_TILING_Y)
Chris Wilson57cd6502010-08-08 12:34:44 +01006628 return -EINVAL;
6629
Jesse Barnes308e5bc2011-11-14 14:51:28 -08006630 if (mode_cmd->pitches[0] & 63)
Chris Wilson57cd6502010-08-08 12:34:44 +01006631 return -EINVAL;
6632
Jesse Barnes308e5bc2011-11-14 14:51:28 -08006633 switch (mode_cmd->pixel_format) {
Ville Syrjälä04b39242011-11-17 18:05:13 +02006634 case DRM_FORMAT_RGB332:
6635 case DRM_FORMAT_RGB565:
6636 case DRM_FORMAT_XRGB8888:
Jesse Barnesb250da72012-03-07 08:49:29 -08006637 case DRM_FORMAT_XBGR8888:
Ville Syrjälä04b39242011-11-17 18:05:13 +02006638 case DRM_FORMAT_ARGB8888:
6639 case DRM_FORMAT_XRGB2101010:
6640 case DRM_FORMAT_ARGB2101010:
Jesse Barnes308e5bc2011-11-14 14:51:28 -08006641 /* RGB formats are common across chipsets */
Jesse Barnesb5626742011-06-24 12:19:27 -07006642 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +02006643 case DRM_FORMAT_YUYV:
6644 case DRM_FORMAT_UYVY:
6645 case DRM_FORMAT_YVYU:
6646 case DRM_FORMAT_VYUY:
Chris Wilson57cd6502010-08-08 12:34:44 +01006647 break;
6648 default:
Eugeni Dodonovaca25842012-01-17 15:25:45 -02006649 DRM_DEBUG_KMS("unsupported pixel format %u\n",
6650 mode_cmd->pixel_format);
Chris Wilson57cd6502010-08-08 12:34:44 +01006651 return -EINVAL;
6652 }
6653
Jesse Barnes79e53942008-11-07 14:24:08 -08006654 ret = drm_framebuffer_init(dev, &intel_fb->base, &intel_fb_funcs);
6655 if (ret) {
6656 DRM_ERROR("framebuffer init failed %d\n", ret);
6657 return ret;
6658 }
6659
6660 drm_helper_mode_fill_fb_struct(&intel_fb->base, mode_cmd);
Jesse Barnes79e53942008-11-07 14:24:08 -08006661 intel_fb->obj = obj;
Jesse Barnes79e53942008-11-07 14:24:08 -08006662 return 0;
6663}
6664
Jesse Barnes79e53942008-11-07 14:24:08 -08006665static struct drm_framebuffer *
6666intel_user_framebuffer_create(struct drm_device *dev,
6667 struct drm_file *filp,
Jesse Barnes308e5bc2011-11-14 14:51:28 -08006668 struct drm_mode_fb_cmd2 *mode_cmd)
Jesse Barnes79e53942008-11-07 14:24:08 -08006669{
Chris Wilson05394f32010-11-08 19:18:58 +00006670 struct drm_i915_gem_object *obj;
Jesse Barnes79e53942008-11-07 14:24:08 -08006671
Jesse Barnes308e5bc2011-11-14 14:51:28 -08006672 obj = to_intel_bo(drm_gem_object_lookup(dev, filp,
6673 mode_cmd->handles[0]));
Chris Wilsonc8725222011-02-19 11:31:06 +00006674 if (&obj->base == NULL)
Chris Wilsoncce13ff2010-08-08 13:36:38 +01006675 return ERR_PTR(-ENOENT);
Jesse Barnes79e53942008-11-07 14:24:08 -08006676
Chris Wilsond2dff872011-04-19 08:36:26 +01006677 return intel_framebuffer_create(dev, mode_cmd, obj);
Jesse Barnes79e53942008-11-07 14:24:08 -08006678}
6679
Jesse Barnes79e53942008-11-07 14:24:08 -08006680static const struct drm_mode_config_funcs intel_mode_funcs = {
Jesse Barnes79e53942008-11-07 14:24:08 -08006681 .fb_create = intel_user_framebuffer_create,
Dave Airlieeb1f8e42010-05-07 06:42:51 +00006682 .output_poll_changed = intel_fb_output_poll_changed,
Jesse Barnes79e53942008-11-07 14:24:08 -08006683};
6684
Jesse Barnese70236a2009-09-21 10:42:27 -07006685/* Set up chip specific display functions */
6686static void intel_init_display(struct drm_device *dev)
6687{
6688 struct drm_i915_private *dev_priv = dev->dev_private;
6689
6690 /* We always want a DPMS function */
Eric Anholtf564048e2011-03-30 13:01:02 -07006691 if (HAS_PCH_SPLIT(dev)) {
Adam Jacksonf2b115e2009-12-03 17:14:42 -05006692 dev_priv->display.dpms = ironlake_crtc_dpms;
Eric Anholtf564048e2011-03-30 13:01:02 -07006693 dev_priv->display.crtc_mode_set = ironlake_crtc_mode_set;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01006694 dev_priv->display.off = ironlake_crtc_off;
Jesse Barnes17638cd2011-06-24 12:19:23 -07006695 dev_priv->display.update_plane = ironlake_update_plane;
Eric Anholtf564048e2011-03-30 13:01:02 -07006696 } else {
Jesse Barnese70236a2009-09-21 10:42:27 -07006697 dev_priv->display.dpms = i9xx_crtc_dpms;
Eric Anholtf564048e2011-03-30 13:01:02 -07006698 dev_priv->display.crtc_mode_set = i9xx_crtc_mode_set;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01006699 dev_priv->display.off = i9xx_crtc_off;
Jesse Barnes17638cd2011-06-24 12:19:23 -07006700 dev_priv->display.update_plane = i9xx_update_plane;
Eric Anholtf564048e2011-03-30 13:01:02 -07006701 }
Jesse Barnese70236a2009-09-21 10:42:27 -07006702
Jesse Barnese70236a2009-09-21 10:42:27 -07006703 /* Returns the core display clock speed */
Jesse Barnes25eb05fc2012-03-28 13:39:23 -07006704 if (IS_VALLEYVIEW(dev))
6705 dev_priv->display.get_display_clock_speed =
6706 valleyview_get_display_clock_speed;
6707 else if (IS_I945G(dev) || (IS_G33(dev) && !IS_PINEVIEW_M(dev)))
Jesse Barnese70236a2009-09-21 10:42:27 -07006708 dev_priv->display.get_display_clock_speed =
6709 i945_get_display_clock_speed;
6710 else if (IS_I915G(dev))
6711 dev_priv->display.get_display_clock_speed =
6712 i915_get_display_clock_speed;
Adam Jacksonf2b115e2009-12-03 17:14:42 -05006713 else if (IS_I945GM(dev) || IS_845G(dev) || IS_PINEVIEW_M(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -07006714 dev_priv->display.get_display_clock_speed =
6715 i9xx_misc_get_display_clock_speed;
6716 else if (IS_I915GM(dev))
6717 dev_priv->display.get_display_clock_speed =
6718 i915gm_get_display_clock_speed;
6719 else if (IS_I865G(dev))
6720 dev_priv->display.get_display_clock_speed =
6721 i865_get_display_clock_speed;
Daniel Vetterf0f8a9c2009-09-15 22:57:33 +02006722 else if (IS_I85X(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -07006723 dev_priv->display.get_display_clock_speed =
6724 i855_get_display_clock_speed;
6725 else /* 852, 830 */
6726 dev_priv->display.get_display_clock_speed =
6727 i830_get_display_clock_speed;
6728
Zhenyu Wang7f8a8562010-04-01 13:07:53 +08006729 if (HAS_PCH_SPLIT(dev)) {
Chris Wilsonf00a3dd2010-10-21 14:57:17 +01006730 if (IS_GEN5(dev)) {
Jesse Barnes674cf962011-04-28 14:27:04 -07006731 dev_priv->display.fdi_link_train = ironlake_fdi_link_train;
Wu Fengguange0dac652011-09-05 14:25:34 +08006732 dev_priv->display.write_eld = ironlake_write_eld;
Yuanhan Liu13982612010-12-15 15:42:31 +08006733 } else if (IS_GEN6(dev)) {
Jesse Barnes674cf962011-04-28 14:27:04 -07006734 dev_priv->display.fdi_link_train = gen6_fdi_link_train;
Wu Fengguange0dac652011-09-05 14:25:34 +08006735 dev_priv->display.write_eld = ironlake_write_eld;
Jesse Barnes357555c2011-04-28 15:09:55 -07006736 } else if (IS_IVYBRIDGE(dev)) {
6737 /* FIXME: detect B0+ stepping and use auto training */
6738 dev_priv->display.fdi_link_train = ivb_manual_fdi_link_train;
Wu Fengguange0dac652011-09-05 14:25:34 +08006739 dev_priv->display.write_eld = ironlake_write_eld;
Eugeni Dodonovc82e4d22012-05-09 15:37:21 -03006740 } else if (IS_HASWELL(dev)) {
6741 dev_priv->display.fdi_link_train = hsw_fdi_link_train;
Eugeni Dodonov4abb3c82012-05-09 15:37:22 -03006742 dev_priv->display.write_eld = ironlake_write_eld;
Zhenyu Wang7f8a8562010-04-01 13:07:53 +08006743 } else
6744 dev_priv->display.update_wm = NULL;
Jesse Barnesceb04242012-03-28 13:39:22 -07006745 } else if (IS_VALLEYVIEW(dev)) {
Jesse Barnes575155a2012-03-28 13:39:37 -07006746 dev_priv->display.force_wake_get = vlv_force_wake_get;
6747 dev_priv->display.force_wake_put = vlv_force_wake_put;
Jesse Barnes6067aae2011-04-28 15:04:31 -07006748 } else if (IS_G4X(dev)) {
Wu Fengguange0dac652011-09-05 14:25:34 +08006749 dev_priv->display.write_eld = g4x_write_eld;
Jesse Barnese70236a2009-09-21 10:42:27 -07006750 }
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006751
6752 /* Default just returns -ENODEV to indicate unsupported */
6753 dev_priv->display.queue_flip = intel_default_queue_flip;
6754
6755 switch (INTEL_INFO(dev)->gen) {
6756 case 2:
6757 dev_priv->display.queue_flip = intel_gen2_queue_flip;
6758 break;
6759
6760 case 3:
6761 dev_priv->display.queue_flip = intel_gen3_queue_flip;
6762 break;
6763
6764 case 4:
6765 case 5:
6766 dev_priv->display.queue_flip = intel_gen4_queue_flip;
6767 break;
6768
6769 case 6:
6770 dev_priv->display.queue_flip = intel_gen6_queue_flip;
6771 break;
Jesse Barnes7c9017e2011-06-16 12:18:54 -07006772 case 7:
6773 dev_priv->display.queue_flip = intel_gen7_queue_flip;
6774 break;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006775 }
Jesse Barnese70236a2009-09-21 10:42:27 -07006776}
6777
Jesse Barnesb690e962010-07-19 13:53:12 -07006778/*
6779 * Some BIOSes insist on assuming the GPU's pipe A is enabled at suspend,
6780 * resume, or other times. This quirk makes sure that's the case for
6781 * affected systems.
6782 */
Akshay Joshi0206e352011-08-16 15:34:10 -04006783static void quirk_pipea_force(struct drm_device *dev)
Jesse Barnesb690e962010-07-19 13:53:12 -07006784{
6785 struct drm_i915_private *dev_priv = dev->dev_private;
6786
6787 dev_priv->quirks |= QUIRK_PIPEA_FORCE;
Daniel Vetterbc0daf42012-04-01 13:16:49 +02006788 DRM_INFO("applying pipe a force quirk\n");
Jesse Barnesb690e962010-07-19 13:53:12 -07006789}
6790
Keith Packard435793d2011-07-12 14:56:22 -07006791/*
6792 * Some machines (Lenovo U160) do not work with SSC on LVDS for some reason
6793 */
6794static void quirk_ssc_force_disable(struct drm_device *dev)
6795{
6796 struct drm_i915_private *dev_priv = dev->dev_private;
6797 dev_priv->quirks |= QUIRK_LVDS_SSC_DISABLE;
Daniel Vetterbc0daf42012-04-01 13:16:49 +02006798 DRM_INFO("applying lvds SSC disable quirk\n");
Keith Packard435793d2011-07-12 14:56:22 -07006799}
6800
Carsten Emde4dca20e2012-03-15 15:56:26 +01006801/*
Carsten Emde5a15ab52012-03-15 15:56:27 +01006802 * A machine (e.g. Acer Aspire 5734Z) may need to invert the panel backlight
6803 * brightness value
Carsten Emde4dca20e2012-03-15 15:56:26 +01006804 */
6805static void quirk_invert_brightness(struct drm_device *dev)
6806{
6807 struct drm_i915_private *dev_priv = dev->dev_private;
6808 dev_priv->quirks |= QUIRK_INVERT_BRIGHTNESS;
Daniel Vetterbc0daf42012-04-01 13:16:49 +02006809 DRM_INFO("applying inverted panel brightness quirk\n");
Jesse Barnesb690e962010-07-19 13:53:12 -07006810}
6811
6812struct intel_quirk {
6813 int device;
6814 int subsystem_vendor;
6815 int subsystem_device;
6816 void (*hook)(struct drm_device *dev);
6817};
6818
Ben Widawskyc43b5632012-04-16 14:07:40 -07006819static struct intel_quirk intel_quirks[] = {
Jesse Barnesb690e962010-07-19 13:53:12 -07006820 /* HP Mini needs pipe A force quirk (LP: #322104) */
Akshay Joshi0206e352011-08-16 15:34:10 -04006821 { 0x27ae, 0x103c, 0x361a, quirk_pipea_force },
Jesse Barnesb690e962010-07-19 13:53:12 -07006822
6823 /* Thinkpad R31 needs pipe A force quirk */
6824 { 0x3577, 0x1014, 0x0505, quirk_pipea_force },
6825 /* Toshiba Protege R-205, S-209 needs pipe A force quirk */
6826 { 0x2592, 0x1179, 0x0001, quirk_pipea_force },
6827
6828 /* ThinkPad X30 needs pipe A force quirk (LP: #304614) */
6829 { 0x3577, 0x1014, 0x0513, quirk_pipea_force },
6830 /* ThinkPad X40 needs pipe A force quirk */
6831
6832 /* ThinkPad T60 needs pipe A force quirk (bug #16494) */
6833 { 0x2782, 0x17aa, 0x201a, quirk_pipea_force },
6834
6835 /* 855 & before need to leave pipe A & dpll A up */
6836 { 0x3582, PCI_ANY_ID, PCI_ANY_ID, quirk_pipea_force },
6837 { 0x2562, PCI_ANY_ID, PCI_ANY_ID, quirk_pipea_force },
Keith Packard435793d2011-07-12 14:56:22 -07006838
6839 /* Lenovo U160 cannot use SSC on LVDS */
6840 { 0x0046, 0x17aa, 0x3920, quirk_ssc_force_disable },
Michel Alexandre Salim070d3292011-07-28 18:52:06 +02006841
6842 /* Sony Vaio Y cannot use SSC on LVDS */
6843 { 0x0046, 0x104d, 0x9076, quirk_ssc_force_disable },
Carsten Emde5a15ab52012-03-15 15:56:27 +01006844
6845 /* Acer Aspire 5734Z must invert backlight brightness */
6846 { 0x2a42, 0x1025, 0x0459, quirk_invert_brightness },
Jesse Barnesb690e962010-07-19 13:53:12 -07006847};
6848
6849static void intel_init_quirks(struct drm_device *dev)
6850{
6851 struct pci_dev *d = dev->pdev;
6852 int i;
6853
6854 for (i = 0; i < ARRAY_SIZE(intel_quirks); i++) {
6855 struct intel_quirk *q = &intel_quirks[i];
6856
6857 if (d->device == q->device &&
6858 (d->subsystem_vendor == q->subsystem_vendor ||
6859 q->subsystem_vendor == PCI_ANY_ID) &&
6860 (d->subsystem_device == q->subsystem_device ||
6861 q->subsystem_device == PCI_ANY_ID))
6862 q->hook(dev);
6863 }
6864}
6865
Jesse Barnes9cce37f2010-08-13 15:11:26 -07006866/* Disable the VGA plane that we never use */
6867static void i915_disable_vga(struct drm_device *dev)
6868{
6869 struct drm_i915_private *dev_priv = dev->dev_private;
6870 u8 sr1;
6871 u32 vga_reg;
6872
6873 if (HAS_PCH_SPLIT(dev))
6874 vga_reg = CPU_VGACNTRL;
6875 else
6876 vga_reg = VGACNTRL;
6877
6878 vga_get_uninterruptible(dev->pdev, VGA_RSRC_LEGACY_IO);
Jesse Barnes3fdcf432012-04-06 11:46:27 -07006879 outb(SR01, VGA_SR_INDEX);
Jesse Barnes9cce37f2010-08-13 15:11:26 -07006880 sr1 = inb(VGA_SR_DATA);
6881 outb(sr1 | 1<<5, VGA_SR_DATA);
6882 vga_put(dev->pdev, VGA_RSRC_LEGACY_IO);
6883 udelay(300);
6884
6885 I915_WRITE(vga_reg, VGA_DISP_DISABLE);
6886 POSTING_READ(vga_reg);
6887}
6888
Jesse Barnesf82cfb62012-04-11 09:23:35 -07006889static void ivb_pch_pwm_override(struct drm_device *dev)
6890{
6891 struct drm_i915_private *dev_priv = dev->dev_private;
6892
6893 /*
6894 * IVB has CPU eDP backlight regs too, set things up to let the
6895 * PCH regs control the backlight
6896 */
6897 I915_WRITE(BLC_PWM_CPU_CTL2, PWM_ENABLE);
6898 I915_WRITE(BLC_PWM_CPU_CTL, 0);
6899 I915_WRITE(BLC_PWM_PCH_CTL1, PWM_ENABLE | (1<<30));
6900}
6901
Daniel Vetterf8175862012-04-10 15:50:11 +02006902void intel_modeset_init_hw(struct drm_device *dev)
6903{
6904 struct drm_i915_private *dev_priv = dev->dev_private;
6905
6906 intel_init_clock_gating(dev);
6907
6908 if (IS_IRONLAKE_M(dev)) {
6909 ironlake_enable_drps(dev);
Chris Wilson1833b132012-05-09 11:56:28 +01006910 ironlake_enable_rc6(dev);
Daniel Vetterf8175862012-04-10 15:50:11 +02006911 intel_init_emon(dev);
6912 }
6913
Jesse Barnesb6834bd2012-04-11 09:23:33 -07006914 if ((IS_GEN6(dev) || IS_GEN7(dev)) && !IS_VALLEYVIEW(dev)) {
Daniel Vetterf8175862012-04-10 15:50:11 +02006915 gen6_enable_rps(dev_priv);
6916 gen6_update_ring_freq(dev_priv);
6917 }
Jesse Barnesf82cfb62012-04-11 09:23:35 -07006918
6919 if (IS_IVYBRIDGE(dev))
6920 ivb_pch_pwm_override(dev);
Daniel Vetterf8175862012-04-10 15:50:11 +02006921}
6922
Jesse Barnes79e53942008-11-07 14:24:08 -08006923void intel_modeset_init(struct drm_device *dev)
6924{
Jesse Barnes652c3932009-08-17 13:31:43 -07006925 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesb840d907f2011-12-13 13:19:38 -08006926 int i, ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08006927
6928 drm_mode_config_init(dev);
6929
6930 dev->mode_config.min_width = 0;
6931 dev->mode_config.min_height = 0;
6932
Dave Airlie019d96c2011-09-29 16:20:42 +01006933 dev->mode_config.preferred_depth = 24;
6934 dev->mode_config.prefer_shadow = 1;
6935
Jesse Barnes79e53942008-11-07 14:24:08 -08006936 dev->mode_config.funcs = (void *)&intel_mode_funcs;
6937
Jesse Barnesb690e962010-07-19 13:53:12 -07006938 intel_init_quirks(dev);
6939
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03006940 intel_init_pm(dev);
6941
Eugeni Dodonov45244b82012-05-09 15:37:20 -03006942 intel_prepare_ddi(dev);
6943
Jesse Barnese70236a2009-09-21 10:42:27 -07006944 intel_init_display(dev);
6945
Chris Wilsona6c45cf2010-09-17 00:32:17 +01006946 if (IS_GEN2(dev)) {
6947 dev->mode_config.max_width = 2048;
6948 dev->mode_config.max_height = 2048;
6949 } else if (IS_GEN3(dev)) {
Keith Packard5e4d6fa2009-07-12 23:53:17 -07006950 dev->mode_config.max_width = 4096;
6951 dev->mode_config.max_height = 4096;
Jesse Barnes79e53942008-11-07 14:24:08 -08006952 } else {
Chris Wilsona6c45cf2010-09-17 00:32:17 +01006953 dev->mode_config.max_width = 8192;
6954 dev->mode_config.max_height = 8192;
Jesse Barnes79e53942008-11-07 14:24:08 -08006955 }
Chris Wilson35c30472010-12-22 14:07:12 +00006956 dev->mode_config.fb_base = dev->agp->base;
Jesse Barnes79e53942008-11-07 14:24:08 -08006957
Zhao Yakui28c97732009-10-09 11:39:41 +08006958 DRM_DEBUG_KMS("%d display pipe%s available.\n",
Dave Airliea3524f12010-06-06 18:59:41 +10006959 dev_priv->num_pipe, dev_priv->num_pipe > 1 ? "s" : "");
Jesse Barnes79e53942008-11-07 14:24:08 -08006960
Dave Airliea3524f12010-06-06 18:59:41 +10006961 for (i = 0; i < dev_priv->num_pipe; i++) {
Jesse Barnes79e53942008-11-07 14:24:08 -08006962 intel_crtc_init(dev, i);
Jesse Barnes00c2064b2012-01-13 15:48:39 -08006963 ret = intel_plane_init(dev, i);
6964 if (ret)
6965 DRM_DEBUG_KMS("plane %d init failed: %d\n", i, ret);
Jesse Barnes79e53942008-11-07 14:24:08 -08006966 }
6967
Jesse Barnesee7b9f92012-04-20 17:11:53 +01006968 intel_pch_pll_init(dev);
6969
Jesse Barnes9cce37f2010-08-13 15:11:26 -07006970 /* Just disable it once at startup */
6971 i915_disable_vga(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08006972 intel_setup_outputs(dev);
Jesse Barnes652c3932009-08-17 13:31:43 -07006973
Jesse Barnes652c3932009-08-17 13:31:43 -07006974 INIT_WORK(&dev_priv->idle_work, intel_idle_update);
6975 setup_timer(&dev_priv->idle_timer, intel_gpu_idle_timer,
6976 (unsigned long)dev);
Chris Wilson2c7111d2011-03-29 10:40:27 +01006977}
6978
6979void intel_modeset_gem_init(struct drm_device *dev)
6980{
Chris Wilson1833b132012-05-09 11:56:28 +01006981 intel_modeset_init_hw(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +02006982
6983 intel_setup_overlay(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08006984}
6985
6986void intel_modeset_cleanup(struct drm_device *dev)
6987{
Jesse Barnes652c3932009-08-17 13:31:43 -07006988 struct drm_i915_private *dev_priv = dev->dev_private;
6989 struct drm_crtc *crtc;
6990 struct intel_crtc *intel_crtc;
6991
Keith Packardf87ea762010-10-03 19:36:26 -07006992 drm_kms_helper_poll_fini(dev);
Jesse Barnes652c3932009-08-17 13:31:43 -07006993 mutex_lock(&dev->struct_mutex);
6994
Jesse Barnes723bfd72010-10-07 16:01:13 -07006995 intel_unregister_dsm_handler();
6996
6997
Jesse Barnes652c3932009-08-17 13:31:43 -07006998 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
6999 /* Skip inactive CRTCs */
7000 if (!crtc->fb)
7001 continue;
7002
7003 intel_crtc = to_intel_crtc(crtc);
Daniel Vetter3dec0092010-08-20 21:40:52 +02007004 intel_increase_pllclock(crtc);
Jesse Barnes652c3932009-08-17 13:31:43 -07007005 }
7006
Chris Wilson973d04f2011-07-08 12:22:37 +01007007 intel_disable_fbc(dev);
Jesse Barnese70236a2009-09-21 10:42:27 -07007008
Jesse Barnesf97108d2010-01-29 11:27:07 -08007009 if (IS_IRONLAKE_M(dev))
7010 ironlake_disable_drps(dev);
Jesse Barnesb6834bd2012-04-11 09:23:33 -07007011 if ((IS_GEN6(dev) || IS_GEN7(dev)) && !IS_VALLEYVIEW(dev))
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08007012 gen6_disable_rps(dev);
Jesse Barnesf97108d2010-01-29 11:27:07 -08007013
Jesse Barnesd5bb0812011-01-05 12:01:26 -08007014 if (IS_IRONLAKE_M(dev))
7015 ironlake_disable_rc6(dev);
Chris Wilson0cdab212010-12-05 17:27:06 +00007016
Jesse Barnes57f350b2012-03-28 13:39:25 -07007017 if (IS_VALLEYVIEW(dev))
7018 vlv_init_dpio(dev);
7019
Kristian Høgsberg69341a52009-11-11 12:19:17 -05007020 mutex_unlock(&dev->struct_mutex);
7021
Daniel Vetter6c0d93502010-08-20 18:26:46 +02007022 /* Disable the irq before mode object teardown, for the irq might
7023 * enqueue unpin/hotplug work. */
7024 drm_irq_uninstall(dev);
7025 cancel_work_sync(&dev_priv->hotplug_work);
Daniel Vetter6fdd4d92011-09-08 14:00:22 +02007026 cancel_work_sync(&dev_priv->rps_work);
Daniel Vetter6c0d93502010-08-20 18:26:46 +02007027
Chris Wilson1630fe72011-07-08 12:22:42 +01007028 /* flush any delayed tasks or pending work */
7029 flush_scheduled_work();
7030
Daniel Vetter3dec0092010-08-20 21:40:52 +02007031 /* Shut off idle work before the crtcs get freed. */
7032 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
7033 intel_crtc = to_intel_crtc(crtc);
7034 del_timer_sync(&intel_crtc->idle_timer);
7035 }
7036 del_timer_sync(&dev_priv->idle_timer);
7037 cancel_work_sync(&dev_priv->idle_work);
7038
Jesse Barnes79e53942008-11-07 14:24:08 -08007039 drm_mode_config_cleanup(dev);
7040}
7041
Dave Airlie28d52042009-09-21 14:33:58 +10007042/*
Zhenyu Wangf1c79df2010-03-30 14:39:29 +08007043 * Return which encoder is currently attached for connector.
7044 */
Chris Wilsondf0e9242010-09-09 16:20:55 +01007045struct drm_encoder *intel_best_encoder(struct drm_connector *connector)
Jesse Barnes79e53942008-11-07 14:24:08 -08007046{
Chris Wilsondf0e9242010-09-09 16:20:55 +01007047 return &intel_attached_encoder(connector)->base;
7048}
Jesse Barnes79e53942008-11-07 14:24:08 -08007049
Chris Wilsondf0e9242010-09-09 16:20:55 +01007050void intel_connector_attach_encoder(struct intel_connector *connector,
7051 struct intel_encoder *encoder)
7052{
7053 connector->encoder = encoder;
7054 drm_mode_connector_attach_encoder(&connector->base,
7055 &encoder->base);
Jesse Barnes79e53942008-11-07 14:24:08 -08007056}
Dave Airlie28d52042009-09-21 14:33:58 +10007057
7058/*
7059 * set vga decode state - true == enable VGA decode
7060 */
7061int intel_modeset_vga_set_state(struct drm_device *dev, bool state)
7062{
7063 struct drm_i915_private *dev_priv = dev->dev_private;
7064 u16 gmch_ctrl;
7065
7066 pci_read_config_word(dev_priv->bridge_dev, INTEL_GMCH_CTRL, &gmch_ctrl);
7067 if (state)
7068 gmch_ctrl &= ~INTEL_GMCH_VGA_DISABLE;
7069 else
7070 gmch_ctrl |= INTEL_GMCH_VGA_DISABLE;
7071 pci_write_config_word(dev_priv->bridge_dev, INTEL_GMCH_CTRL, gmch_ctrl);
7072 return 0;
7073}
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00007074
7075#ifdef CONFIG_DEBUG_FS
7076#include <linux/seq_file.h>
7077
7078struct intel_display_error_state {
7079 struct intel_cursor_error_state {
7080 u32 control;
7081 u32 position;
7082 u32 base;
7083 u32 size;
7084 } cursor[2];
7085
7086 struct intel_pipe_error_state {
7087 u32 conf;
7088 u32 source;
7089
7090 u32 htotal;
7091 u32 hblank;
7092 u32 hsync;
7093 u32 vtotal;
7094 u32 vblank;
7095 u32 vsync;
7096 } pipe[2];
7097
7098 struct intel_plane_error_state {
7099 u32 control;
7100 u32 stride;
7101 u32 size;
7102 u32 pos;
7103 u32 addr;
7104 u32 surface;
7105 u32 tile_offset;
7106 } plane[2];
7107};
7108
7109struct intel_display_error_state *
7110intel_display_capture_error_state(struct drm_device *dev)
7111{
Akshay Joshi0206e352011-08-16 15:34:10 -04007112 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00007113 struct intel_display_error_state *error;
7114 int i;
7115
7116 error = kmalloc(sizeof(*error), GFP_ATOMIC);
7117 if (error == NULL)
7118 return NULL;
7119
7120 for (i = 0; i < 2; i++) {
7121 error->cursor[i].control = I915_READ(CURCNTR(i));
7122 error->cursor[i].position = I915_READ(CURPOS(i));
7123 error->cursor[i].base = I915_READ(CURBASE(i));
7124
7125 error->plane[i].control = I915_READ(DSPCNTR(i));
7126 error->plane[i].stride = I915_READ(DSPSTRIDE(i));
7127 error->plane[i].size = I915_READ(DSPSIZE(i));
Akshay Joshi0206e352011-08-16 15:34:10 -04007128 error->plane[i].pos = I915_READ(DSPPOS(i));
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00007129 error->plane[i].addr = I915_READ(DSPADDR(i));
7130 if (INTEL_INFO(dev)->gen >= 4) {
7131 error->plane[i].surface = I915_READ(DSPSURF(i));
7132 error->plane[i].tile_offset = I915_READ(DSPTILEOFF(i));
7133 }
7134
7135 error->pipe[i].conf = I915_READ(PIPECONF(i));
7136 error->pipe[i].source = I915_READ(PIPESRC(i));
7137 error->pipe[i].htotal = I915_READ(HTOTAL(i));
7138 error->pipe[i].hblank = I915_READ(HBLANK(i));
7139 error->pipe[i].hsync = I915_READ(HSYNC(i));
7140 error->pipe[i].vtotal = I915_READ(VTOTAL(i));
7141 error->pipe[i].vblank = I915_READ(VBLANK(i));
7142 error->pipe[i].vsync = I915_READ(VSYNC(i));
7143 }
7144
7145 return error;
7146}
7147
7148void
7149intel_display_print_error_state(struct seq_file *m,
7150 struct drm_device *dev,
7151 struct intel_display_error_state *error)
7152{
7153 int i;
7154
7155 for (i = 0; i < 2; i++) {
7156 seq_printf(m, "Pipe [%d]:\n", i);
7157 seq_printf(m, " CONF: %08x\n", error->pipe[i].conf);
7158 seq_printf(m, " SRC: %08x\n", error->pipe[i].source);
7159 seq_printf(m, " HTOTAL: %08x\n", error->pipe[i].htotal);
7160 seq_printf(m, " HBLANK: %08x\n", error->pipe[i].hblank);
7161 seq_printf(m, " HSYNC: %08x\n", error->pipe[i].hsync);
7162 seq_printf(m, " VTOTAL: %08x\n", error->pipe[i].vtotal);
7163 seq_printf(m, " VBLANK: %08x\n", error->pipe[i].vblank);
7164 seq_printf(m, " VSYNC: %08x\n", error->pipe[i].vsync);
7165
7166 seq_printf(m, "Plane [%d]:\n", i);
7167 seq_printf(m, " CNTR: %08x\n", error->plane[i].control);
7168 seq_printf(m, " STRIDE: %08x\n", error->plane[i].stride);
7169 seq_printf(m, " SIZE: %08x\n", error->plane[i].size);
7170 seq_printf(m, " POS: %08x\n", error->plane[i].pos);
7171 seq_printf(m, " ADDR: %08x\n", error->plane[i].addr);
7172 if (INTEL_INFO(dev)->gen >= 4) {
7173 seq_printf(m, " SURF: %08x\n", error->plane[i].surface);
7174 seq_printf(m, " TILEOFF: %08x\n", error->plane[i].tile_offset);
7175 }
7176
7177 seq_printf(m, "Cursor [%d]:\n", i);
7178 seq_printf(m, " CNTR: %08x\n", error->cursor[i].control);
7179 seq_printf(m, " POS: %08x\n", error->cursor[i].position);
7180 seq_printf(m, " BASE: %08x\n", error->cursor[i].base);
7181 }
7182}
7183#endif