blob: eb4dba6170352e7d11d07d2f0a349fc0ee365d28 [file] [log] [blame]
Jesse Barnes79e53942008-11-07 14:24:08 -08001/*
2 * Copyright © 2006-2007 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21 * DEALINGS IN THE SOFTWARE.
22 *
23 * Authors:
24 * Eric Anholt <eric@anholt.net>
25 */
26
Daniel Vetter618563e2012-04-01 13:38:50 +020027#include <linux/dmi.h>
Jesse Barnesc1c7af62009-09-10 15:28:03 -070028#include <linux/module.h>
29#include <linux/input.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080030#include <linux/i2c.h>
Shaohua Li7662c8b2009-06-26 11:23:55 +080031#include <linux/kernel.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090032#include <linux/slab.h>
Jesse Barnes9cce37f2010-08-13 15:11:26 -070033#include <linux/vgaarb.h>
Wu Fengguange0dac652011-09-05 14:25:34 +080034#include <drm/drm_edid.h>
David Howells760285e2012-10-02 18:01:07 +010035#include <drm/drmP.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080036#include "intel_drv.h"
David Howells760285e2012-10-02 18:01:07 +010037#include <drm/i915_drm.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080038#include "i915_drv.h"
Jesse Barnese5510fa2010-07-01 16:48:37 -070039#include "i915_trace.h"
David Howells760285e2012-10-02 18:01:07 +010040#include <drm/drm_dp_helper.h>
41#include <drm/drm_crtc_helper.h>
Keith Packardc0f372b32011-11-16 22:24:52 -080042#include <linux/dma_remapping.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080043
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
Daniel Vetterd2acd212012-10-20 20:57:43 +020083int
84intel_pch_rawclk(struct drm_device *dev)
85{
86 struct drm_i915_private *dev_priv = dev->dev_private;
87
88 WARN_ON(!HAS_PCH_SPLIT(dev));
89
90 return I915_READ(PCH_RAWCLK_FREQ) & RAWCLK_FREQ_MASK;
91}
92
Ma Lingd4906092009-03-18 20:13:27 +080093static bool
94intel_find_best_PLL(const intel_limit_t *limit, struct drm_crtc *crtc,
Sean Paulcec2f352012-01-10 15:09:36 -080095 int target, int refclk, intel_clock_t *match_clock,
96 intel_clock_t *best_clock);
Ma Lingd4906092009-03-18 20:13:27 +080097static bool
98intel_g4x_find_best_PLL(const intel_limit_t *limit, struct drm_crtc *crtc,
Sean Paulcec2f352012-01-10 15:09:36 -080099 int target, int refclk, intel_clock_t *match_clock,
100 intel_clock_t *best_clock);
Jesse Barnes79e53942008-11-07 14:24:08 -0800101
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700102static bool
103intel_find_pll_g4x_dp(const intel_limit_t *, struct drm_crtc *crtc,
Sean Paulcec2f352012-01-10 15:09:36 -0800104 int target, int refclk, intel_clock_t *match_clock,
105 intel_clock_t *best_clock);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +0800106static bool
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500107intel_find_pll_ironlake_dp(const intel_limit_t *, struct drm_crtc *crtc,
Sean Paulcec2f352012-01-10 15:09:36 -0800108 int target, int refclk, intel_clock_t *match_clock,
109 intel_clock_t *best_clock);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700110
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700111static bool
112intel_vlv_find_best_pll(const intel_limit_t *limit, struct drm_crtc *crtc,
113 int target, int refclk, intel_clock_t *match_clock,
114 intel_clock_t *best_clock);
115
Chris Wilson021357a2010-09-07 20:54:59 +0100116static inline u32 /* units of 100MHz */
117intel_fdi_link_freq(struct drm_device *dev)
118{
Chris Wilson8b99e682010-10-13 09:59:17 +0100119 if (IS_GEN5(dev)) {
120 struct drm_i915_private *dev_priv = dev->dev_private;
121 return (I915_READ(FDI_PLL_BIOS_0) & FDI_PLL_FB_CLOCK_MASK) + 2;
122 } else
123 return 27;
Chris Wilson021357a2010-09-07 20:54:59 +0100124}
125
Keith Packarde4b36692009-06-05 19:22:17 -0700126static const intel_limit_t intel_limits_i8xx_dvo = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400127 .dot = { .min = 25000, .max = 350000 },
128 .vco = { .min = 930000, .max = 1400000 },
129 .n = { .min = 3, .max = 16 },
130 .m = { .min = 96, .max = 140 },
131 .m1 = { .min = 18, .max = 26 },
132 .m2 = { .min = 6, .max = 16 },
133 .p = { .min = 4, .max = 128 },
134 .p1 = { .min = 2, .max = 33 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700135 .p2 = { .dot_limit = 165000,
136 .p2_slow = 4, .p2_fast = 2 },
Ma Lingd4906092009-03-18 20:13:27 +0800137 .find_pll = intel_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700138};
139
140static const intel_limit_t intel_limits_i8xx_lvds = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400141 .dot = { .min = 25000, .max = 350000 },
142 .vco = { .min = 930000, .max = 1400000 },
143 .n = { .min = 3, .max = 16 },
144 .m = { .min = 96, .max = 140 },
145 .m1 = { .min = 18, .max = 26 },
146 .m2 = { .min = 6, .max = 16 },
147 .p = { .min = 4, .max = 128 },
148 .p1 = { .min = 1, .max = 6 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700149 .p2 = { .dot_limit = 165000,
150 .p2_slow = 14, .p2_fast = 7 },
Ma Lingd4906092009-03-18 20:13:27 +0800151 .find_pll = intel_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700152};
Eric Anholt273e27c2011-03-30 13:01:10 -0700153
Keith Packarde4b36692009-06-05 19:22:17 -0700154static const intel_limit_t intel_limits_i9xx_sdvo = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400155 .dot = { .min = 20000, .max = 400000 },
156 .vco = { .min = 1400000, .max = 2800000 },
157 .n = { .min = 1, .max = 6 },
158 .m = { .min = 70, .max = 120 },
159 .m1 = { .min = 10, .max = 22 },
160 .m2 = { .min = 5, .max = 9 },
161 .p = { .min = 5, .max = 80 },
162 .p1 = { .min = 1, .max = 8 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700163 .p2 = { .dot_limit = 200000,
164 .p2_slow = 10, .p2_fast = 5 },
Ma Lingd4906092009-03-18 20:13:27 +0800165 .find_pll = intel_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700166};
167
168static const intel_limit_t intel_limits_i9xx_lvds = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400169 .dot = { .min = 20000, .max = 400000 },
170 .vco = { .min = 1400000, .max = 2800000 },
171 .n = { .min = 1, .max = 6 },
172 .m = { .min = 70, .max = 120 },
173 .m1 = { .min = 10, .max = 22 },
174 .m2 = { .min = 5, .max = 9 },
175 .p = { .min = 7, .max = 98 },
176 .p1 = { .min = 1, .max = 8 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700177 .p2 = { .dot_limit = 112000,
178 .p2_slow = 14, .p2_fast = 7 },
Ma Lingd4906092009-03-18 20:13:27 +0800179 .find_pll = intel_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700180};
181
Eric Anholt273e27c2011-03-30 13:01:10 -0700182
Keith Packarde4b36692009-06-05 19:22:17 -0700183static const intel_limit_t intel_limits_g4x_sdvo = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700184 .dot = { .min = 25000, .max = 270000 },
185 .vco = { .min = 1750000, .max = 3500000},
186 .n = { .min = 1, .max = 4 },
187 .m = { .min = 104, .max = 138 },
188 .m1 = { .min = 17, .max = 23 },
189 .m2 = { .min = 5, .max = 11 },
190 .p = { .min = 10, .max = 30 },
191 .p1 = { .min = 1, .max = 3},
192 .p2 = { .dot_limit = 270000,
193 .p2_slow = 10,
194 .p2_fast = 10
Ma Ling044c7c42009-03-18 20:13:23 +0800195 },
Ma Lingd4906092009-03-18 20:13:27 +0800196 .find_pll = intel_g4x_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700197};
198
199static const intel_limit_t intel_limits_g4x_hdmi = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700200 .dot = { .min = 22000, .max = 400000 },
201 .vco = { .min = 1750000, .max = 3500000},
202 .n = { .min = 1, .max = 4 },
203 .m = { .min = 104, .max = 138 },
204 .m1 = { .min = 16, .max = 23 },
205 .m2 = { .min = 5, .max = 11 },
206 .p = { .min = 5, .max = 80 },
207 .p1 = { .min = 1, .max = 8},
208 .p2 = { .dot_limit = 165000,
209 .p2_slow = 10, .p2_fast = 5 },
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_single_channel_lvds = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700214 .dot = { .min = 20000, .max = 115000 },
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 = 28, .max = 112 },
221 .p1 = { .min = 2, .max = 8 },
222 .p2 = { .dot_limit = 0,
223 .p2_slow = 14, .p2_fast = 14
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_dual_channel_lvds = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700229 .dot = { .min = 80000, .max = 224000 },
230 .vco = { .min = 1750000, .max = 3500000 },
231 .n = { .min = 1, .max = 3 },
232 .m = { .min = 104, .max = 138 },
233 .m1 = { .min = 17, .max = 23 },
234 .m2 = { .min = 5, .max = 11 },
235 .p = { .min = 14, .max = 42 },
236 .p1 = { .min = 2, .max = 6 },
237 .p2 = { .dot_limit = 0,
238 .p2_slow = 7, .p2_fast = 7
Ma Ling044c7c42009-03-18 20:13:23 +0800239 },
Ma Lingd4906092009-03-18 20:13:27 +0800240 .find_pll = intel_g4x_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700241};
242
243static const intel_limit_t intel_limits_g4x_display_port = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400244 .dot = { .min = 161670, .max = 227000 },
245 .vco = { .min = 1750000, .max = 3500000},
246 .n = { .min = 1, .max = 2 },
247 .m = { .min = 97, .max = 108 },
248 .m1 = { .min = 0x10, .max = 0x12 },
249 .m2 = { .min = 0x05, .max = 0x06 },
250 .p = { .min = 10, .max = 20 },
251 .p1 = { .min = 1, .max = 2},
252 .p2 = { .dot_limit = 0,
Eric Anholt273e27c2011-03-30 13:01:10 -0700253 .p2_slow = 10, .p2_fast = 10 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400254 .find_pll = intel_find_pll_g4x_dp,
Keith Packarde4b36692009-06-05 19:22:17 -0700255};
256
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500257static const intel_limit_t intel_limits_pineview_sdvo = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400258 .dot = { .min = 20000, .max = 400000},
259 .vco = { .min = 1700000, .max = 3500000 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700260 /* Pineview's Ncounter is a ring counter */
Akshay Joshi0206e352011-08-16 15:34:10 -0400261 .n = { .min = 3, .max = 6 },
262 .m = { .min = 2, .max = 256 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700263 /* Pineview only has one combined m divider, which we treat as m2. */
Akshay Joshi0206e352011-08-16 15:34:10 -0400264 .m1 = { .min = 0, .max = 0 },
265 .m2 = { .min = 0, .max = 254 },
266 .p = { .min = 5, .max = 80 },
267 .p1 = { .min = 1, .max = 8 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700268 .p2 = { .dot_limit = 200000,
269 .p2_slow = 10, .p2_fast = 5 },
Shaohua Li61157072009-04-03 15:24:43 +0800270 .find_pll = intel_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700271};
272
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500273static const intel_limit_t intel_limits_pineview_lvds = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400274 .dot = { .min = 20000, .max = 400000 },
275 .vco = { .min = 1700000, .max = 3500000 },
276 .n = { .min = 3, .max = 6 },
277 .m = { .min = 2, .max = 256 },
278 .m1 = { .min = 0, .max = 0 },
279 .m2 = { .min = 0, .max = 254 },
280 .p = { .min = 7, .max = 112 },
281 .p1 = { .min = 1, .max = 8 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700282 .p2 = { .dot_limit = 112000,
283 .p2_slow = 14, .p2_fast = 14 },
Shaohua Li61157072009-04-03 15:24:43 +0800284 .find_pll = intel_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700285};
286
Eric Anholt273e27c2011-03-30 13:01:10 -0700287/* Ironlake / Sandybridge
288 *
289 * We calculate clock using (register_value + 2) for N/M1/M2, so here
290 * the range value for them is (actual_value - 2).
291 */
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800292static const intel_limit_t intel_limits_ironlake_dac = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700293 .dot = { .min = 25000, .max = 350000 },
294 .vco = { .min = 1760000, .max = 3510000 },
295 .n = { .min = 1, .max = 5 },
296 .m = { .min = 79, .max = 127 },
297 .m1 = { .min = 12, .max = 22 },
298 .m2 = { .min = 5, .max = 9 },
299 .p = { .min = 5, .max = 80 },
300 .p1 = { .min = 1, .max = 8 },
301 .p2 = { .dot_limit = 225000,
302 .p2_slow = 10, .p2_fast = 5 },
Zhao Yakui45476682009-12-31 16:06:04 +0800303 .find_pll = intel_g4x_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700304};
305
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800306static const intel_limit_t intel_limits_ironlake_single_lvds = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700307 .dot = { .min = 25000, .max = 350000 },
308 .vco = { .min = 1760000, .max = 3510000 },
309 .n = { .min = 1, .max = 3 },
310 .m = { .min = 79, .max = 118 },
311 .m1 = { .min = 12, .max = 22 },
312 .m2 = { .min = 5, .max = 9 },
313 .p = { .min = 28, .max = 112 },
314 .p1 = { .min = 2, .max = 8 },
315 .p2 = { .dot_limit = 225000,
316 .p2_slow = 14, .p2_fast = 14 },
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800317 .find_pll = intel_g4x_find_best_PLL,
318};
319
320static const intel_limit_t intel_limits_ironlake_dual_lvds = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700321 .dot = { .min = 25000, .max = 350000 },
322 .vco = { .min = 1760000, .max = 3510000 },
323 .n = { .min = 1, .max = 3 },
324 .m = { .min = 79, .max = 127 },
325 .m1 = { .min = 12, .max = 22 },
326 .m2 = { .min = 5, .max = 9 },
327 .p = { .min = 14, .max = 56 },
328 .p1 = { .min = 2, .max = 8 },
329 .p2 = { .dot_limit = 225000,
330 .p2_slow = 7, .p2_fast = 7 },
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800331 .find_pll = intel_g4x_find_best_PLL,
332};
333
Eric Anholt273e27c2011-03-30 13:01:10 -0700334/* LVDS 100mhz refclk limits. */
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800335static const intel_limit_t intel_limits_ironlake_single_lvds_100m = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700336 .dot = { .min = 25000, .max = 350000 },
337 .vco = { .min = 1760000, .max = 3510000 },
338 .n = { .min = 1, .max = 2 },
339 .m = { .min = 79, .max = 126 },
340 .m1 = { .min = 12, .max = 22 },
341 .m2 = { .min = 5, .max = 9 },
342 .p = { .min = 28, .max = 112 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400343 .p1 = { .min = 2, .max = 8 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700344 .p2 = { .dot_limit = 225000,
345 .p2_slow = 14, .p2_fast = 14 },
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800346 .find_pll = intel_g4x_find_best_PLL,
347};
348
349static const intel_limit_t intel_limits_ironlake_dual_lvds_100m = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700350 .dot = { .min = 25000, .max = 350000 },
351 .vco = { .min = 1760000, .max = 3510000 },
352 .n = { .min = 1, .max = 3 },
353 .m = { .min = 79, .max = 126 },
354 .m1 = { .min = 12, .max = 22 },
355 .m2 = { .min = 5, .max = 9 },
356 .p = { .min = 14, .max = 42 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400357 .p1 = { .min = 2, .max = 6 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700358 .p2 = { .dot_limit = 225000,
359 .p2_slow = 7, .p2_fast = 7 },
Zhao Yakui45476682009-12-31 16:06:04 +0800360 .find_pll = intel_g4x_find_best_PLL,
361};
362
363static const intel_limit_t intel_limits_ironlake_display_port = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400364 .dot = { .min = 25000, .max = 350000 },
365 .vco = { .min = 1760000, .max = 3510000},
366 .n = { .min = 1, .max = 2 },
367 .m = { .min = 81, .max = 90 },
368 .m1 = { .min = 12, .max = 22 },
369 .m2 = { .min = 5, .max = 9 },
370 .p = { .min = 10, .max = 20 },
371 .p1 = { .min = 1, .max = 2},
372 .p2 = { .dot_limit = 0,
Eric Anholt273e27c2011-03-30 13:01:10 -0700373 .p2_slow = 10, .p2_fast = 10 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400374 .find_pll = intel_find_pll_ironlake_dp,
Jesse Barnes79e53942008-11-07 14:24:08 -0800375};
376
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700377static const intel_limit_t intel_limits_vlv_dac = {
378 .dot = { .min = 25000, .max = 270000 },
379 .vco = { .min = 4000000, .max = 6000000 },
380 .n = { .min = 1, .max = 7 },
381 .m = { .min = 22, .max = 450 }, /* guess */
382 .m1 = { .min = 2, .max = 3 },
383 .m2 = { .min = 11, .max = 156 },
384 .p = { .min = 10, .max = 30 },
385 .p1 = { .min = 2, .max = 3 },
386 .p2 = { .dot_limit = 270000,
387 .p2_slow = 2, .p2_fast = 20 },
388 .find_pll = intel_vlv_find_best_pll,
389};
390
391static const intel_limit_t intel_limits_vlv_hdmi = {
392 .dot = { .min = 20000, .max = 165000 },
Vijay Purushothaman17dc92572012-09-27 19:13:09 +0530393 .vco = { .min = 4000000, .max = 5994000},
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700394 .n = { .min = 1, .max = 7 },
395 .m = { .min = 60, .max = 300 }, /* guess */
396 .m1 = { .min = 2, .max = 3 },
397 .m2 = { .min = 11, .max = 156 },
398 .p = { .min = 10, .max = 30 },
399 .p1 = { .min = 2, .max = 3 },
400 .p2 = { .dot_limit = 270000,
401 .p2_slow = 2, .p2_fast = 20 },
402 .find_pll = intel_vlv_find_best_pll,
403};
404
405static const intel_limit_t intel_limits_vlv_dp = {
Vijay Purushothaman74a4dd22012-09-27 19:13:04 +0530406 .dot = { .min = 25000, .max = 270000 },
407 .vco = { .min = 4000000, .max = 6000000 },
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700408 .n = { .min = 1, .max = 7 },
Vijay Purushothaman74a4dd22012-09-27 19:13:04 +0530409 .m = { .min = 22, .max = 450 },
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700410 .m1 = { .min = 2, .max = 3 },
411 .m2 = { .min = 11, .max = 156 },
412 .p = { .min = 10, .max = 30 },
413 .p1 = { .min = 2, .max = 3 },
414 .p2 = { .dot_limit = 270000,
415 .p2_slow = 2, .p2_fast = 20 },
416 .find_pll = intel_vlv_find_best_pll,
417};
418
Jesse Barnes57f350b2012-03-28 13:39:25 -0700419u32 intel_dpio_read(struct drm_i915_private *dev_priv, int reg)
420{
421 unsigned long flags;
422 u32 val = 0;
423
424 spin_lock_irqsave(&dev_priv->dpio_lock, flags);
425 if (wait_for_atomic_us((I915_READ(DPIO_PKT) & DPIO_BUSY) == 0, 100)) {
426 DRM_ERROR("DPIO idle wait timed out\n");
427 goto out_unlock;
428 }
429
430 I915_WRITE(DPIO_REG, reg);
431 I915_WRITE(DPIO_PKT, DPIO_RID | DPIO_OP_READ | DPIO_PORTID |
432 DPIO_BYTE);
433 if (wait_for_atomic_us((I915_READ(DPIO_PKT) & DPIO_BUSY) == 0, 100)) {
434 DRM_ERROR("DPIO read wait timed out\n");
435 goto out_unlock;
436 }
437 val = I915_READ(DPIO_DATA);
438
439out_unlock:
440 spin_unlock_irqrestore(&dev_priv->dpio_lock, flags);
441 return val;
442}
443
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700444static void intel_dpio_write(struct drm_i915_private *dev_priv, int reg,
445 u32 val)
446{
447 unsigned long flags;
448
449 spin_lock_irqsave(&dev_priv->dpio_lock, flags);
450 if (wait_for_atomic_us((I915_READ(DPIO_PKT) & DPIO_BUSY) == 0, 100)) {
451 DRM_ERROR("DPIO idle wait timed out\n");
452 goto out_unlock;
453 }
454
455 I915_WRITE(DPIO_DATA, val);
456 I915_WRITE(DPIO_REG, reg);
457 I915_WRITE(DPIO_PKT, DPIO_RID | DPIO_OP_WRITE | DPIO_PORTID |
458 DPIO_BYTE);
459 if (wait_for_atomic_us((I915_READ(DPIO_PKT) & DPIO_BUSY) == 0, 100))
460 DRM_ERROR("DPIO write wait timed out\n");
461
462out_unlock:
463 spin_unlock_irqrestore(&dev_priv->dpio_lock, flags);
464}
465
Jesse Barnes57f350b2012-03-28 13:39:25 -0700466static void vlv_init_dpio(struct drm_device *dev)
467{
468 struct drm_i915_private *dev_priv = dev->dev_private;
469
470 /* Reset the DPIO config */
471 I915_WRITE(DPIO_CTL, 0);
472 POSTING_READ(DPIO_CTL);
473 I915_WRITE(DPIO_CTL, 1);
474 POSTING_READ(DPIO_CTL);
475}
476
Daniel Vetter618563e2012-04-01 13:38:50 +0200477static int intel_dual_link_lvds_callback(const struct dmi_system_id *id)
478{
479 DRM_INFO("Forcing lvds to dual link mode on %s\n", id->ident);
480 return 1;
481}
482
483static const struct dmi_system_id intel_dual_link_lvds[] = {
484 {
485 .callback = intel_dual_link_lvds_callback,
486 .ident = "Apple MacBook Pro (Core i5/i7 Series)",
487 .matches = {
488 DMI_MATCH(DMI_SYS_VENDOR, "Apple Inc."),
489 DMI_MATCH(DMI_PRODUCT_NAME, "MacBookPro8,2"),
490 },
491 },
492 { } /* terminating entry */
493};
494
Takashi Iwaib0354382012-03-20 13:07:05 +0100495static bool is_dual_link_lvds(struct drm_i915_private *dev_priv,
496 unsigned int reg)
497{
498 unsigned int val;
499
Takashi Iwai121d5272012-03-20 13:07:06 +0100500 /* use the module option value if specified */
501 if (i915_lvds_channel_mode > 0)
502 return i915_lvds_channel_mode == 2;
503
Daniel Vetter618563e2012-04-01 13:38:50 +0200504 if (dmi_check_system(intel_dual_link_lvds))
505 return true;
506
Takashi Iwaib0354382012-03-20 13:07:05 +0100507 if (dev_priv->lvds_val)
508 val = dev_priv->lvds_val;
509 else {
510 /* BIOS should set the proper LVDS register value at boot, but
511 * in reality, it doesn't set the value when the lid is closed;
512 * we need to check "the value to be set" in VBT when LVDS
513 * register is uninitialized.
514 */
515 val = I915_READ(reg);
Seth Forshee14d94a32012-06-13 13:46:58 -0500516 if (!(val & ~(LVDS_PIPE_MASK | LVDS_DETECTED)))
Takashi Iwaib0354382012-03-20 13:07:05 +0100517 val = dev_priv->bios_lvds_val;
518 dev_priv->lvds_val = val;
519 }
520 return (val & LVDS_CLKB_POWER_MASK) == LVDS_CLKB_POWER_UP;
521}
522
Chris Wilson1b894b52010-12-14 20:04:54 +0000523static const intel_limit_t *intel_ironlake_limit(struct drm_crtc *crtc,
524 int refclk)
Zhenyu Wang2c072452009-06-05 15:38:42 +0800525{
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800526 struct drm_device *dev = crtc->dev;
527 struct drm_i915_private *dev_priv = dev->dev_private;
Zhenyu Wang2c072452009-06-05 15:38:42 +0800528 const intel_limit_t *limit;
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800529
530 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
Takashi Iwaib0354382012-03-20 13:07:05 +0100531 if (is_dual_link_lvds(dev_priv, PCH_LVDS)) {
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800532 /* LVDS dual channel */
Chris Wilson1b894b52010-12-14 20:04:54 +0000533 if (refclk == 100000)
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800534 limit = &intel_limits_ironlake_dual_lvds_100m;
535 else
536 limit = &intel_limits_ironlake_dual_lvds;
537 } else {
Chris Wilson1b894b52010-12-14 20:04:54 +0000538 if (refclk == 100000)
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800539 limit = &intel_limits_ironlake_single_lvds_100m;
540 else
541 limit = &intel_limits_ironlake_single_lvds;
542 }
543 } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT) ||
Zhao Yakui45476682009-12-31 16:06:04 +0800544 HAS_eDP)
545 limit = &intel_limits_ironlake_display_port;
Zhenyu Wang2c072452009-06-05 15:38:42 +0800546 else
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800547 limit = &intel_limits_ironlake_dac;
Zhenyu Wang2c072452009-06-05 15:38:42 +0800548
549 return limit;
550}
551
Ma Ling044c7c42009-03-18 20:13:23 +0800552static const intel_limit_t *intel_g4x_limit(struct drm_crtc *crtc)
553{
554 struct drm_device *dev = crtc->dev;
555 struct drm_i915_private *dev_priv = dev->dev_private;
556 const intel_limit_t *limit;
557
558 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
Takashi Iwaib0354382012-03-20 13:07:05 +0100559 if (is_dual_link_lvds(dev_priv, LVDS))
Ma Ling044c7c42009-03-18 20:13:23 +0800560 /* LVDS with dual channel */
Keith Packarde4b36692009-06-05 19:22:17 -0700561 limit = &intel_limits_g4x_dual_channel_lvds;
Ma Ling044c7c42009-03-18 20:13:23 +0800562 else
563 /* LVDS with dual channel */
Keith Packarde4b36692009-06-05 19:22:17 -0700564 limit = &intel_limits_g4x_single_channel_lvds;
Ma Ling044c7c42009-03-18 20:13:23 +0800565 } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI) ||
566 intel_pipe_has_type(crtc, INTEL_OUTPUT_ANALOG)) {
Keith Packarde4b36692009-06-05 19:22:17 -0700567 limit = &intel_limits_g4x_hdmi;
Ma Ling044c7c42009-03-18 20:13:23 +0800568 } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_SDVO)) {
Keith Packarde4b36692009-06-05 19:22:17 -0700569 limit = &intel_limits_g4x_sdvo;
Akshay Joshi0206e352011-08-16 15:34:10 -0400570 } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT)) {
Keith Packarde4b36692009-06-05 19:22:17 -0700571 limit = &intel_limits_g4x_display_port;
Ma Ling044c7c42009-03-18 20:13:23 +0800572 } else /* The option is for other outputs */
Keith Packarde4b36692009-06-05 19:22:17 -0700573 limit = &intel_limits_i9xx_sdvo;
Ma Ling044c7c42009-03-18 20:13:23 +0800574
575 return limit;
576}
577
Chris Wilson1b894b52010-12-14 20:04:54 +0000578static const intel_limit_t *intel_limit(struct drm_crtc *crtc, int refclk)
Jesse Barnes79e53942008-11-07 14:24:08 -0800579{
580 struct drm_device *dev = crtc->dev;
581 const intel_limit_t *limit;
582
Eric Anholtbad720f2009-10-22 16:11:14 -0700583 if (HAS_PCH_SPLIT(dev))
Chris Wilson1b894b52010-12-14 20:04:54 +0000584 limit = intel_ironlake_limit(crtc, refclk);
Zhenyu Wang2c072452009-06-05 15:38:42 +0800585 else if (IS_G4X(dev)) {
Ma Ling044c7c42009-03-18 20:13:23 +0800586 limit = intel_g4x_limit(crtc);
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500587 } else if (IS_PINEVIEW(dev)) {
Shaohua Li21778322009-02-23 15:19:16 +0800588 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS))
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500589 limit = &intel_limits_pineview_lvds;
Shaohua Li21778322009-02-23 15:19:16 +0800590 else
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500591 limit = &intel_limits_pineview_sdvo;
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700592 } else if (IS_VALLEYVIEW(dev)) {
593 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_ANALOG))
594 limit = &intel_limits_vlv_dac;
595 else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI))
596 limit = &intel_limits_vlv_hdmi;
597 else
598 limit = &intel_limits_vlv_dp;
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100599 } else if (!IS_GEN2(dev)) {
600 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS))
601 limit = &intel_limits_i9xx_lvds;
602 else
603 limit = &intel_limits_i9xx_sdvo;
Jesse Barnes79e53942008-11-07 14:24:08 -0800604 } else {
605 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS))
Keith Packarde4b36692009-06-05 19:22:17 -0700606 limit = &intel_limits_i8xx_lvds;
Jesse Barnes79e53942008-11-07 14:24:08 -0800607 else
Keith Packarde4b36692009-06-05 19:22:17 -0700608 limit = &intel_limits_i8xx_dvo;
Jesse Barnes79e53942008-11-07 14:24:08 -0800609 }
610 return limit;
611}
612
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500613/* m1 is reserved as 0 in Pineview, n is a ring counter */
614static void pineview_clock(int refclk, intel_clock_t *clock)
Jesse Barnes79e53942008-11-07 14:24:08 -0800615{
Shaohua Li21778322009-02-23 15:19:16 +0800616 clock->m = clock->m2 + 2;
617 clock->p = clock->p1 * clock->p2;
618 clock->vco = refclk * clock->m / clock->n;
619 clock->dot = clock->vco / clock->p;
620}
621
622static void intel_clock(struct drm_device *dev, int refclk, intel_clock_t *clock)
623{
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500624 if (IS_PINEVIEW(dev)) {
625 pineview_clock(refclk, clock);
Shaohua Li21778322009-02-23 15:19:16 +0800626 return;
627 }
Jesse Barnes79e53942008-11-07 14:24:08 -0800628 clock->m = 5 * (clock->m1 + 2) + (clock->m2 + 2);
629 clock->p = clock->p1 * clock->p2;
630 clock->vco = refclk * clock->m / (clock->n + 2);
631 clock->dot = clock->vco / clock->p;
632}
633
Jesse Barnes79e53942008-11-07 14:24:08 -0800634/**
635 * Returns whether any output on the specified pipe is of the specified type
636 */
Chris Wilson4ef69c72010-09-09 15:14:28 +0100637bool intel_pipe_has_type(struct drm_crtc *crtc, int type)
Jesse Barnes79e53942008-11-07 14:24:08 -0800638{
Chris Wilson4ef69c72010-09-09 15:14:28 +0100639 struct drm_device *dev = crtc->dev;
Chris Wilson4ef69c72010-09-09 15:14:28 +0100640 struct intel_encoder *encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -0800641
Daniel Vetter6c2b7c12012-07-05 09:50:24 +0200642 for_each_encoder_on_crtc(dev, crtc, encoder)
643 if (encoder->type == type)
Chris Wilson4ef69c72010-09-09 15:14:28 +0100644 return true;
645
646 return false;
Jesse Barnes79e53942008-11-07 14:24:08 -0800647}
648
Jesse Barnes7c04d1d2009-02-23 15:36:40 -0800649#define INTELPllInvalid(s) do { /* DRM_DEBUG(s); */ return false; } while (0)
Jesse Barnes79e53942008-11-07 14:24:08 -0800650/**
651 * Returns whether the given set of divisors are valid for a given refclk with
652 * the given connectors.
653 */
654
Chris Wilson1b894b52010-12-14 20:04:54 +0000655static bool intel_PLL_is_valid(struct drm_device *dev,
656 const intel_limit_t *limit,
657 const intel_clock_t *clock)
Jesse Barnes79e53942008-11-07 14:24:08 -0800658{
Jesse Barnes79e53942008-11-07 14:24:08 -0800659 if (clock->p1 < limit->p1.min || limit->p1.max < clock->p1)
Akshay Joshi0206e352011-08-16 15:34:10 -0400660 INTELPllInvalid("p1 out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800661 if (clock->p < limit->p.min || limit->p.max < clock->p)
Akshay Joshi0206e352011-08-16 15:34:10 -0400662 INTELPllInvalid("p out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800663 if (clock->m2 < limit->m2.min || limit->m2.max < clock->m2)
Akshay Joshi0206e352011-08-16 15:34:10 -0400664 INTELPllInvalid("m2 out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800665 if (clock->m1 < limit->m1.min || limit->m1.max < clock->m1)
Akshay Joshi0206e352011-08-16 15:34:10 -0400666 INTELPllInvalid("m1 out of range\n");
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500667 if (clock->m1 <= clock->m2 && !IS_PINEVIEW(dev))
Akshay Joshi0206e352011-08-16 15:34:10 -0400668 INTELPllInvalid("m1 <= m2\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800669 if (clock->m < limit->m.min || limit->m.max < clock->m)
Akshay Joshi0206e352011-08-16 15:34:10 -0400670 INTELPllInvalid("m out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800671 if (clock->n < limit->n.min || limit->n.max < clock->n)
Akshay Joshi0206e352011-08-16 15:34:10 -0400672 INTELPllInvalid("n out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800673 if (clock->vco < limit->vco.min || limit->vco.max < clock->vco)
Akshay Joshi0206e352011-08-16 15:34:10 -0400674 INTELPllInvalid("vco out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800675 /* XXX: We may need to be checking "Dot clock" depending on the multiplier,
676 * connector, etc., rather than just a single range.
677 */
678 if (clock->dot < limit->dot.min || limit->dot.max < clock->dot)
Akshay Joshi0206e352011-08-16 15:34:10 -0400679 INTELPllInvalid("dot out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800680
681 return true;
682}
683
Ma Lingd4906092009-03-18 20:13:27 +0800684static bool
685intel_find_best_PLL(const intel_limit_t *limit, struct drm_crtc *crtc,
Sean Paulcec2f352012-01-10 15:09:36 -0800686 int target, int refclk, intel_clock_t *match_clock,
687 intel_clock_t *best_clock)
Ma Lingd4906092009-03-18 20:13:27 +0800688
Jesse Barnes79e53942008-11-07 14:24:08 -0800689{
690 struct drm_device *dev = crtc->dev;
691 struct drm_i915_private *dev_priv = dev->dev_private;
692 intel_clock_t clock;
Jesse Barnes79e53942008-11-07 14:24:08 -0800693 int err = target;
694
Bruno Prémontbc5e5712009-08-08 13:01:17 +0200695 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) &&
Florian Mickler832cc282009-07-13 18:40:32 +0800696 (I915_READ(LVDS)) != 0) {
Jesse Barnes79e53942008-11-07 14:24:08 -0800697 /*
698 * For LVDS, if the panel is on, just rely on its current
699 * settings for dual-channel. We haven't figured out how to
700 * reliably set up different single/dual channel state, if we
701 * even can.
702 */
Takashi Iwaib0354382012-03-20 13:07:05 +0100703 if (is_dual_link_lvds(dev_priv, LVDS))
Jesse Barnes79e53942008-11-07 14:24:08 -0800704 clock.p2 = limit->p2.p2_fast;
705 else
706 clock.p2 = limit->p2.p2_slow;
707 } else {
708 if (target < limit->p2.dot_limit)
709 clock.p2 = limit->p2.p2_slow;
710 else
711 clock.p2 = limit->p2.p2_fast;
712 }
713
Akshay Joshi0206e352011-08-16 15:34:10 -0400714 memset(best_clock, 0, sizeof(*best_clock));
Jesse Barnes79e53942008-11-07 14:24:08 -0800715
Zhao Yakui42158662009-11-20 11:24:18 +0800716 for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max;
717 clock.m1++) {
718 for (clock.m2 = limit->m2.min;
719 clock.m2 <= limit->m2.max; clock.m2++) {
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500720 /* m1 is always 0 in Pineview */
721 if (clock.m2 >= clock.m1 && !IS_PINEVIEW(dev))
Zhao Yakui42158662009-11-20 11:24:18 +0800722 break;
723 for (clock.n = limit->n.min;
724 clock.n <= limit->n.max; clock.n++) {
725 for (clock.p1 = limit->p1.min;
726 clock.p1 <= limit->p1.max; clock.p1++) {
Jesse Barnes79e53942008-11-07 14:24:08 -0800727 int this_err;
728
Shaohua Li21778322009-02-23 15:19:16 +0800729 intel_clock(dev, refclk, &clock);
Chris Wilson1b894b52010-12-14 20:04:54 +0000730 if (!intel_PLL_is_valid(dev, limit,
731 &clock))
Jesse Barnes79e53942008-11-07 14:24:08 -0800732 continue;
Sean Paulcec2f352012-01-10 15:09:36 -0800733 if (match_clock &&
734 clock.p != match_clock->p)
735 continue;
Jesse Barnes79e53942008-11-07 14:24:08 -0800736
737 this_err = abs(clock.dot - target);
738 if (this_err < err) {
739 *best_clock = clock;
740 err = this_err;
741 }
742 }
743 }
744 }
745 }
746
747 return (err != target);
748}
749
Ma Lingd4906092009-03-18 20:13:27 +0800750static bool
751intel_g4x_find_best_PLL(const intel_limit_t *limit, struct drm_crtc *crtc,
Sean Paulcec2f352012-01-10 15:09:36 -0800752 int target, int refclk, intel_clock_t *match_clock,
753 intel_clock_t *best_clock)
Ma Lingd4906092009-03-18 20:13:27 +0800754{
755 struct drm_device *dev = crtc->dev;
756 struct drm_i915_private *dev_priv = dev->dev_private;
757 intel_clock_t clock;
758 int max_n;
759 bool found;
Adam Jackson6ba770d2010-07-02 16:43:30 -0400760 /* approximately equals target * 0.00585 */
761 int err_most = (target >> 8) + (target >> 9);
Ma Lingd4906092009-03-18 20:13:27 +0800762 found = false;
763
764 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
Zhao Yakui45476682009-12-31 16:06:04 +0800765 int lvds_reg;
766
Eric Anholtc619eed2010-01-28 16:45:52 -0800767 if (HAS_PCH_SPLIT(dev))
Zhao Yakui45476682009-12-31 16:06:04 +0800768 lvds_reg = PCH_LVDS;
769 else
770 lvds_reg = LVDS;
771 if ((I915_READ(lvds_reg) & LVDS_CLKB_POWER_MASK) ==
Ma Lingd4906092009-03-18 20:13:27 +0800772 LVDS_CLKB_POWER_UP)
773 clock.p2 = limit->p2.p2_fast;
774 else
775 clock.p2 = limit->p2.p2_slow;
776 } else {
777 if (target < limit->p2.dot_limit)
778 clock.p2 = limit->p2.p2_slow;
779 else
780 clock.p2 = limit->p2.p2_fast;
781 }
782
783 memset(best_clock, 0, sizeof(*best_clock));
784 max_n = limit->n.max;
Gilles Espinassef77f13e2010-03-29 15:41:47 +0200785 /* based on hardware requirement, prefer smaller n to precision */
Ma Lingd4906092009-03-18 20:13:27 +0800786 for (clock.n = limit->n.min; clock.n <= max_n; clock.n++) {
Gilles Espinassef77f13e2010-03-29 15:41:47 +0200787 /* based on hardware requirement, prefere larger m1,m2 */
Ma Lingd4906092009-03-18 20:13:27 +0800788 for (clock.m1 = limit->m1.max;
789 clock.m1 >= limit->m1.min; clock.m1--) {
790 for (clock.m2 = limit->m2.max;
791 clock.m2 >= limit->m2.min; clock.m2--) {
792 for (clock.p1 = limit->p1.max;
793 clock.p1 >= limit->p1.min; clock.p1--) {
794 int this_err;
795
Shaohua Li21778322009-02-23 15:19:16 +0800796 intel_clock(dev, refclk, &clock);
Chris Wilson1b894b52010-12-14 20:04:54 +0000797 if (!intel_PLL_is_valid(dev, limit,
798 &clock))
Ma Lingd4906092009-03-18 20:13:27 +0800799 continue;
Sean Paulcec2f352012-01-10 15:09:36 -0800800 if (match_clock &&
801 clock.p != match_clock->p)
802 continue;
Chris Wilson1b894b52010-12-14 20:04:54 +0000803
804 this_err = abs(clock.dot - target);
Ma Lingd4906092009-03-18 20:13:27 +0800805 if (this_err < err_most) {
806 *best_clock = clock;
807 err_most = this_err;
808 max_n = clock.n;
809 found = true;
810 }
811 }
812 }
813 }
814 }
Zhenyu Wang2c072452009-06-05 15:38:42 +0800815 return found;
816}
Ma Lingd4906092009-03-18 20:13:27 +0800817
Zhenyu Wang2c072452009-06-05 15:38:42 +0800818static bool
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500819intel_find_pll_ironlake_dp(const intel_limit_t *limit, struct drm_crtc *crtc,
Sean Paulcec2f352012-01-10 15:09:36 -0800820 int target, int refclk, intel_clock_t *match_clock,
821 intel_clock_t *best_clock)
Zhenyu Wang5eb08b62009-07-24 01:00:31 +0800822{
823 struct drm_device *dev = crtc->dev;
824 intel_clock_t clock;
Zhao Yakui45476682009-12-31 16:06:04 +0800825
Zhenyu Wang5eb08b62009-07-24 01:00:31 +0800826 if (target < 200000) {
827 clock.n = 1;
828 clock.p1 = 2;
829 clock.p2 = 10;
830 clock.m1 = 12;
831 clock.m2 = 9;
832 } else {
833 clock.n = 2;
834 clock.p1 = 1;
835 clock.p2 = 10;
836 clock.m1 = 14;
837 clock.m2 = 8;
838 }
839 intel_clock(dev, refclk, &clock);
840 memcpy(best_clock, &clock, sizeof(intel_clock_t));
841 return true;
842}
843
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700844/* DisplayPort has only two frequencies, 162MHz and 270MHz */
845static bool
846intel_find_pll_g4x_dp(const intel_limit_t *limit, struct drm_crtc *crtc,
Sean Paulcec2f352012-01-10 15:09:36 -0800847 int target, int refclk, intel_clock_t *match_clock,
848 intel_clock_t *best_clock)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700849{
Chris Wilson5eddb702010-09-11 13:48:45 +0100850 intel_clock_t clock;
851 if (target < 200000) {
852 clock.p1 = 2;
853 clock.p2 = 10;
854 clock.n = 2;
855 clock.m1 = 23;
856 clock.m2 = 8;
857 } else {
858 clock.p1 = 1;
859 clock.p2 = 10;
860 clock.n = 1;
861 clock.m1 = 14;
862 clock.m2 = 2;
863 }
864 clock.m = 5 * (clock.m1 + 2) + (clock.m2 + 2);
865 clock.p = (clock.p1 * clock.p2);
866 clock.dot = 96000 * clock.m / (clock.n + 2) / clock.p;
867 clock.vco = 0;
868 memcpy(best_clock, &clock, sizeof(intel_clock_t));
869 return true;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700870}
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700871static bool
872intel_vlv_find_best_pll(const intel_limit_t *limit, struct drm_crtc *crtc,
873 int target, int refclk, intel_clock_t *match_clock,
874 intel_clock_t *best_clock)
875{
876 u32 p1, p2, m1, m2, vco, bestn, bestm1, bestm2, bestp1, bestp2;
877 u32 m, n, fastclk;
878 u32 updrate, minupdate, fracbits, p;
879 unsigned long bestppm, ppm, absppm;
880 int dotclk, flag;
881
Alan Coxaf447bd2012-07-25 13:49:18 +0100882 flag = 0;
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700883 dotclk = target * 1000;
884 bestppm = 1000000;
885 ppm = absppm = 0;
886 fastclk = dotclk / (2*100);
887 updrate = 0;
888 minupdate = 19200;
889 fracbits = 1;
890 n = p = p1 = p2 = m = m1 = m2 = vco = bestn = 0;
891 bestm1 = bestm2 = bestp1 = bestp2 = 0;
892
893 /* based on hardware requirement, prefer smaller n to precision */
894 for (n = limit->n.min; n <= ((refclk) / minupdate); n++) {
895 updrate = refclk / n;
896 for (p1 = limit->p1.max; p1 > limit->p1.min; p1--) {
897 for (p2 = limit->p2.p2_fast+1; p2 > 0; p2--) {
898 if (p2 > 10)
899 p2 = p2 - 1;
900 p = p1 * p2;
901 /* based on hardware requirement, prefer bigger m1,m2 values */
902 for (m1 = limit->m1.min; m1 <= limit->m1.max; m1++) {
903 m2 = (((2*(fastclk * p * n / m1 )) +
904 refclk) / (2*refclk));
905 m = m1 * m2;
906 vco = updrate * m;
907 if (vco >= limit->vco.min && vco < limit->vco.max) {
908 ppm = 1000000 * ((vco / p) - fastclk) / fastclk;
909 absppm = (ppm > 0) ? ppm : (-ppm);
910 if (absppm < 100 && ((p1 * p2) > (bestp1 * bestp2))) {
911 bestppm = 0;
912 flag = 1;
913 }
914 if (absppm < bestppm - 10) {
915 bestppm = absppm;
916 flag = 1;
917 }
918 if (flag) {
919 bestn = n;
920 bestm1 = m1;
921 bestm2 = m2;
922 bestp1 = p1;
923 bestp2 = p2;
924 flag = 0;
925 }
926 }
927 }
928 }
929 }
930 }
931 best_clock->n = bestn;
932 best_clock->m1 = bestm1;
933 best_clock->m2 = bestm2;
934 best_clock->p1 = bestp1;
935 best_clock->p2 = bestp2;
936
937 return true;
938}
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700939
Paulo Zanonia928d532012-05-04 17:18:15 -0300940static void ironlake_wait_for_vblank(struct drm_device *dev, int pipe)
941{
942 struct drm_i915_private *dev_priv = dev->dev_private;
943 u32 frame, frame_reg = PIPEFRAME(pipe);
944
945 frame = I915_READ(frame_reg);
946
947 if (wait_for(I915_READ_NOTRACE(frame_reg) != frame, 50))
948 DRM_DEBUG_KMS("vblank wait timed out\n");
949}
950
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700951/**
952 * intel_wait_for_vblank - wait for vblank on a given pipe
953 * @dev: drm device
954 * @pipe: pipe to wait for
955 *
956 * Wait for vblank to occur on a given pipe. Needed for various bits of
957 * mode setting code.
958 */
959void intel_wait_for_vblank(struct drm_device *dev, int pipe)
Jesse Barnes79e53942008-11-07 14:24:08 -0800960{
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700961 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800962 int pipestat_reg = PIPESTAT(pipe);
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700963
Paulo Zanonia928d532012-05-04 17:18:15 -0300964 if (INTEL_INFO(dev)->gen >= 5) {
965 ironlake_wait_for_vblank(dev, pipe);
966 return;
967 }
968
Chris Wilson300387c2010-09-05 20:25:43 +0100969 /* Clear existing vblank status. Note this will clear any other
970 * sticky status fields as well.
971 *
972 * This races with i915_driver_irq_handler() with the result
973 * that either function could miss a vblank event. Here it is not
974 * fatal, as we will either wait upon the next vblank interrupt or
975 * timeout. Generally speaking intel_wait_for_vblank() is only
976 * called during modeset at which time the GPU should be idle and
977 * should *not* be performing page flips and thus not waiting on
978 * vblanks...
979 * Currently, the result of us stealing a vblank from the irq
980 * handler is that a single frame will be skipped during swapbuffers.
981 */
982 I915_WRITE(pipestat_reg,
983 I915_READ(pipestat_reg) | PIPE_VBLANK_INTERRUPT_STATUS);
984
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700985 /* Wait for vblank interrupt bit to set */
Chris Wilson481b6af2010-08-23 17:43:35 +0100986 if (wait_for(I915_READ(pipestat_reg) &
987 PIPE_VBLANK_INTERRUPT_STATUS,
988 50))
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700989 DRM_DEBUG_KMS("vblank wait timed out\n");
990}
991
Keith Packardab7ad7f2010-10-03 00:33:06 -0700992/*
993 * intel_wait_for_pipe_off - wait for pipe to turn off
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700994 * @dev: drm device
995 * @pipe: pipe to wait for
996 *
997 * After disabling a pipe, we can't wait for vblank in the usual way,
998 * spinning on the vblank interrupt status bit, since we won't actually
999 * see an interrupt when the pipe is disabled.
1000 *
Keith Packardab7ad7f2010-10-03 00:33:06 -07001001 * On Gen4 and above:
1002 * wait for the pipe register state bit to turn off
1003 *
1004 * Otherwise:
1005 * wait for the display line value to settle (it usually
1006 * ends up stopping at the start of the next frame).
Chris Wilson58e10eb2010-10-03 10:56:11 +01001007 *
Jesse Barnes9d0498a2010-08-18 13:20:54 -07001008 */
Chris Wilson58e10eb2010-10-03 10:56:11 +01001009void intel_wait_for_pipe_off(struct drm_device *dev, int pipe)
Jesse Barnes9d0498a2010-08-18 13:20:54 -07001010{
1011 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes9d0498a2010-08-18 13:20:54 -07001012
Keith Packardab7ad7f2010-10-03 00:33:06 -07001013 if (INTEL_INFO(dev)->gen >= 4) {
Chris Wilson58e10eb2010-10-03 10:56:11 +01001014 int reg = PIPECONF(pipe);
Jesse Barnes9d0498a2010-08-18 13:20:54 -07001015
Keith Packardab7ad7f2010-10-03 00:33:06 -07001016 /* Wait for the Pipe State to go off */
Chris Wilson58e10eb2010-10-03 10:56:11 +01001017 if (wait_for((I915_READ(reg) & I965_PIPECONF_ACTIVE) == 0,
1018 100))
Daniel Vetter284637d2012-07-09 09:51:57 +02001019 WARN(1, "pipe_off wait timed out\n");
Keith Packardab7ad7f2010-10-03 00:33:06 -07001020 } else {
Paulo Zanoni837ba002012-05-04 17:18:14 -03001021 u32 last_line, line_mask;
Chris Wilson58e10eb2010-10-03 10:56:11 +01001022 int reg = PIPEDSL(pipe);
Keith Packardab7ad7f2010-10-03 00:33:06 -07001023 unsigned long timeout = jiffies + msecs_to_jiffies(100);
1024
Paulo Zanoni837ba002012-05-04 17:18:14 -03001025 if (IS_GEN2(dev))
1026 line_mask = DSL_LINEMASK_GEN2;
1027 else
1028 line_mask = DSL_LINEMASK_GEN3;
1029
Keith Packardab7ad7f2010-10-03 00:33:06 -07001030 /* Wait for the display line to settle */
1031 do {
Paulo Zanoni837ba002012-05-04 17:18:14 -03001032 last_line = I915_READ(reg) & line_mask;
Keith Packardab7ad7f2010-10-03 00:33:06 -07001033 mdelay(5);
Paulo Zanoni837ba002012-05-04 17:18:14 -03001034 } while (((I915_READ(reg) & line_mask) != last_line) &&
Keith Packardab7ad7f2010-10-03 00:33:06 -07001035 time_after(timeout, jiffies));
1036 if (time_after(jiffies, timeout))
Daniel Vetter284637d2012-07-09 09:51:57 +02001037 WARN(1, "pipe_off wait timed out\n");
Keith Packardab7ad7f2010-10-03 00:33:06 -07001038 }
Jesse Barnes79e53942008-11-07 14:24:08 -08001039}
1040
Jesse Barnesb24e7172011-01-04 15:09:30 -08001041static const char *state_string(bool enabled)
1042{
1043 return enabled ? "on" : "off";
1044}
1045
1046/* Only for pre-ILK configs */
1047static void assert_pll(struct drm_i915_private *dev_priv,
1048 enum pipe pipe, bool state)
1049{
1050 int reg;
1051 u32 val;
1052 bool cur_state;
1053
1054 reg = DPLL(pipe);
1055 val = I915_READ(reg);
1056 cur_state = !!(val & DPLL_VCO_ENABLE);
1057 WARN(cur_state != state,
1058 "PLL state assertion failure (expected %s, current %s)\n",
1059 state_string(state), state_string(cur_state));
1060}
1061#define assert_pll_enabled(d, p) assert_pll(d, p, true)
1062#define assert_pll_disabled(d, p) assert_pll(d, p, false)
1063
Jesse Barnes040484a2011-01-03 12:14:26 -08001064/* For ILK+ */
1065static void assert_pch_pll(struct drm_i915_private *dev_priv,
Chris Wilson92b27b02012-05-20 18:10:50 +01001066 struct intel_pch_pll *pll,
1067 struct intel_crtc *crtc,
1068 bool state)
Jesse Barnes040484a2011-01-03 12:14:26 -08001069{
Jesse Barnes040484a2011-01-03 12:14:26 -08001070 u32 val;
1071 bool cur_state;
1072
Eugeni Dodonov9d82aa12012-05-09 15:37:17 -03001073 if (HAS_PCH_LPT(dev_priv->dev)) {
1074 DRM_DEBUG_DRIVER("LPT detected: skipping PCH PLL test\n");
1075 return;
1076 }
1077
Chris Wilson92b27b02012-05-20 18:10:50 +01001078 if (WARN (!pll,
1079 "asserting PCH PLL %s with no PLL\n", state_string(state)))
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001080 return;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001081
Chris Wilson92b27b02012-05-20 18:10:50 +01001082 val = I915_READ(pll->pll_reg);
1083 cur_state = !!(val & DPLL_VCO_ENABLE);
1084 WARN(cur_state != state,
1085 "PCH PLL state for reg %x assertion failure (expected %s, current %s), val=%08x\n",
1086 pll->pll_reg, state_string(state), state_string(cur_state), val);
1087
1088 /* Make sure the selected PLL is correctly attached to the transcoder */
1089 if (crtc && HAS_PCH_CPT(dev_priv->dev)) {
Jesse Barnesd3ccbe82011-10-12 09:27:42 -07001090 u32 pch_dpll;
1091
1092 pch_dpll = I915_READ(PCH_DPLL_SEL);
Chris Wilson92b27b02012-05-20 18:10:50 +01001093 cur_state = pll->pll_reg == _PCH_DPLL_B;
1094 if (!WARN(((pch_dpll >> (4 * crtc->pipe)) & 1) != cur_state,
1095 "PLL[%d] not attached to this transcoder %d: %08x\n",
1096 cur_state, crtc->pipe, pch_dpll)) {
1097 cur_state = !!(val >> (4*crtc->pipe + 3));
1098 WARN(cur_state != state,
1099 "PLL[%d] not %s on this transcoder %d: %08x\n",
1100 pll->pll_reg == _PCH_DPLL_B,
1101 state_string(state),
1102 crtc->pipe,
1103 val);
1104 }
Jesse Barnesd3ccbe82011-10-12 09:27:42 -07001105 }
Jesse Barnes040484a2011-01-03 12:14:26 -08001106}
Chris Wilson92b27b02012-05-20 18:10:50 +01001107#define assert_pch_pll_enabled(d, p, c) assert_pch_pll(d, p, c, true)
1108#define assert_pch_pll_disabled(d, p, c) assert_pch_pll(d, p, c, false)
Jesse Barnes040484a2011-01-03 12:14:26 -08001109
1110static void assert_fdi_tx(struct drm_i915_private *dev_priv,
1111 enum pipe pipe, bool state)
1112{
1113 int reg;
1114 u32 val;
1115 bool cur_state;
1116
Eugeni Dodonovbf507ef2012-05-09 15:37:18 -03001117 if (IS_HASWELL(dev_priv->dev)) {
1118 /* On Haswell, DDI is used instead of FDI_TX_CTL */
1119 reg = DDI_FUNC_CTL(pipe);
1120 val = I915_READ(reg);
1121 cur_state = !!(val & PIPE_DDI_FUNC_ENABLE);
1122 } else {
1123 reg = FDI_TX_CTL(pipe);
1124 val = I915_READ(reg);
1125 cur_state = !!(val & FDI_TX_ENABLE);
1126 }
Jesse Barnes040484a2011-01-03 12:14:26 -08001127 WARN(cur_state != state,
1128 "FDI TX state assertion failure (expected %s, current %s)\n",
1129 state_string(state), state_string(cur_state));
1130}
1131#define assert_fdi_tx_enabled(d, p) assert_fdi_tx(d, p, true)
1132#define assert_fdi_tx_disabled(d, p) assert_fdi_tx(d, p, false)
1133
1134static void assert_fdi_rx(struct drm_i915_private *dev_priv,
1135 enum pipe pipe, bool state)
1136{
1137 int reg;
1138 u32 val;
1139 bool cur_state;
1140
Eugeni Dodonov59c859d2012-05-09 15:37:19 -03001141 if (IS_HASWELL(dev_priv->dev) && pipe > 0) {
1142 DRM_ERROR("Attempting to enable FDI_RX on Haswell pipe > 0\n");
1143 return;
1144 } else {
1145 reg = FDI_RX_CTL(pipe);
1146 val = I915_READ(reg);
1147 cur_state = !!(val & FDI_RX_ENABLE);
1148 }
Jesse Barnes040484a2011-01-03 12:14:26 -08001149 WARN(cur_state != state,
1150 "FDI RX state assertion failure (expected %s, current %s)\n",
1151 state_string(state), state_string(cur_state));
1152}
1153#define assert_fdi_rx_enabled(d, p) assert_fdi_rx(d, p, true)
1154#define assert_fdi_rx_disabled(d, p) assert_fdi_rx(d, p, false)
1155
1156static void assert_fdi_tx_pll_enabled(struct drm_i915_private *dev_priv,
1157 enum pipe pipe)
1158{
1159 int reg;
1160 u32 val;
1161
1162 /* ILK FDI PLL is always enabled */
1163 if (dev_priv->info->gen == 5)
1164 return;
1165
Eugeni Dodonovbf507ef2012-05-09 15:37:18 -03001166 /* On Haswell, DDI ports are responsible for the FDI PLL setup */
1167 if (IS_HASWELL(dev_priv->dev))
1168 return;
1169
Jesse Barnes040484a2011-01-03 12:14:26 -08001170 reg = FDI_TX_CTL(pipe);
1171 val = I915_READ(reg);
1172 WARN(!(val & FDI_TX_PLL_ENABLE), "FDI TX PLL assertion failure, should be active but is disabled\n");
1173}
1174
1175static void assert_fdi_rx_pll_enabled(struct drm_i915_private *dev_priv,
1176 enum pipe pipe)
1177{
1178 int reg;
1179 u32 val;
1180
Eugeni Dodonov59c859d2012-05-09 15:37:19 -03001181 if (IS_HASWELL(dev_priv->dev) && pipe > 0) {
1182 DRM_ERROR("Attempting to enable FDI on Haswell with pipe > 0\n");
1183 return;
1184 }
Jesse Barnes040484a2011-01-03 12:14:26 -08001185 reg = FDI_RX_CTL(pipe);
1186 val = I915_READ(reg);
1187 WARN(!(val & FDI_RX_PLL_ENABLE), "FDI RX PLL assertion failure, should be active but is disabled\n");
1188}
1189
Jesse Barnesea0760c2011-01-04 15:09:32 -08001190static void assert_panel_unlocked(struct drm_i915_private *dev_priv,
1191 enum pipe pipe)
1192{
1193 int pp_reg, lvds_reg;
1194 u32 val;
1195 enum pipe panel_pipe = PIPE_A;
Thomas Jarosch0de3b482011-08-25 15:37:45 +02001196 bool locked = true;
Jesse Barnesea0760c2011-01-04 15:09:32 -08001197
1198 if (HAS_PCH_SPLIT(dev_priv->dev)) {
1199 pp_reg = PCH_PP_CONTROL;
1200 lvds_reg = PCH_LVDS;
1201 } else {
1202 pp_reg = PP_CONTROL;
1203 lvds_reg = LVDS;
1204 }
1205
1206 val = I915_READ(pp_reg);
1207 if (!(val & PANEL_POWER_ON) ||
1208 ((val & PANEL_UNLOCK_REGS) == PANEL_UNLOCK_REGS))
1209 locked = false;
1210
1211 if (I915_READ(lvds_reg) & LVDS_PIPEB_SELECT)
1212 panel_pipe = PIPE_B;
1213
1214 WARN(panel_pipe == pipe && locked,
1215 "panel assertion failure, pipe %c regs locked\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001216 pipe_name(pipe));
Jesse Barnesea0760c2011-01-04 15:09:32 -08001217}
1218
Jesse Barnesb840d907f2011-12-13 13:19:38 -08001219void assert_pipe(struct drm_i915_private *dev_priv,
1220 enum pipe pipe, bool state)
Jesse Barnesb24e7172011-01-04 15:09:30 -08001221{
1222 int reg;
1223 u32 val;
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001224 bool cur_state;
Jesse Barnesb24e7172011-01-04 15:09:30 -08001225
Daniel Vetter8e636782012-01-22 01:36:48 +01001226 /* if we need the pipe A quirk it must be always on */
1227 if (pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE)
1228 state = true;
1229
Jesse Barnesb24e7172011-01-04 15:09:30 -08001230 reg = PIPECONF(pipe);
1231 val = I915_READ(reg);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001232 cur_state = !!(val & PIPECONF_ENABLE);
1233 WARN(cur_state != state,
1234 "pipe %c assertion failure (expected %s, current %s)\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001235 pipe_name(pipe), state_string(state), state_string(cur_state));
Jesse Barnesb24e7172011-01-04 15:09:30 -08001236}
1237
Chris Wilson931872f2012-01-16 23:01:13 +00001238static void assert_plane(struct drm_i915_private *dev_priv,
1239 enum plane plane, bool state)
Jesse Barnesb24e7172011-01-04 15:09:30 -08001240{
1241 int reg;
1242 u32 val;
Chris Wilson931872f2012-01-16 23:01:13 +00001243 bool cur_state;
Jesse Barnesb24e7172011-01-04 15:09:30 -08001244
1245 reg = DSPCNTR(plane);
1246 val = I915_READ(reg);
Chris Wilson931872f2012-01-16 23:01:13 +00001247 cur_state = !!(val & DISPLAY_PLANE_ENABLE);
1248 WARN(cur_state != state,
1249 "plane %c assertion failure (expected %s, current %s)\n",
1250 plane_name(plane), state_string(state), state_string(cur_state));
Jesse Barnesb24e7172011-01-04 15:09:30 -08001251}
1252
Chris Wilson931872f2012-01-16 23:01:13 +00001253#define assert_plane_enabled(d, p) assert_plane(d, p, true)
1254#define assert_plane_disabled(d, p) assert_plane(d, p, false)
1255
Jesse Barnesb24e7172011-01-04 15:09:30 -08001256static void assert_planes_disabled(struct drm_i915_private *dev_priv,
1257 enum pipe pipe)
1258{
1259 int reg, i;
1260 u32 val;
1261 int cur_pipe;
1262
Jesse Barnes19ec1352011-02-02 12:28:02 -08001263 /* Planes are fixed to pipes on ILK+ */
Adam Jackson28c057942011-10-07 14:38:42 -04001264 if (HAS_PCH_SPLIT(dev_priv->dev)) {
1265 reg = DSPCNTR(pipe);
1266 val = I915_READ(reg);
1267 WARN((val & DISPLAY_PLANE_ENABLE),
1268 "plane %c assertion failure, should be disabled but not\n",
1269 plane_name(pipe));
Jesse Barnes19ec1352011-02-02 12:28:02 -08001270 return;
Adam Jackson28c057942011-10-07 14:38:42 -04001271 }
Jesse Barnes19ec1352011-02-02 12:28:02 -08001272
Jesse Barnesb24e7172011-01-04 15:09:30 -08001273 /* Need to check both planes against the pipe */
1274 for (i = 0; i < 2; i++) {
1275 reg = DSPCNTR(i);
1276 val = I915_READ(reg);
1277 cur_pipe = (val & DISPPLANE_SEL_PIPE_MASK) >>
1278 DISPPLANE_SEL_PIPE_SHIFT;
1279 WARN((val & DISPLAY_PLANE_ENABLE) && pipe == cur_pipe,
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001280 "plane %c assertion failure, should be off on pipe %c but is still active\n",
1281 plane_name(i), pipe_name(pipe));
Jesse Barnesb24e7172011-01-04 15:09:30 -08001282 }
1283}
1284
Jesse Barnes92f25842011-01-04 15:09:34 -08001285static void assert_pch_refclk_enabled(struct drm_i915_private *dev_priv)
1286{
1287 u32 val;
1288 bool enabled;
1289
Eugeni Dodonov9d82aa12012-05-09 15:37:17 -03001290 if (HAS_PCH_LPT(dev_priv->dev)) {
1291 DRM_DEBUG_DRIVER("LPT does not has PCH refclk, skipping check\n");
1292 return;
1293 }
1294
Jesse Barnes92f25842011-01-04 15:09:34 -08001295 val = I915_READ(PCH_DREF_CONTROL);
1296 enabled = !!(val & (DREF_SSC_SOURCE_MASK | DREF_NONSPREAD_SOURCE_MASK |
1297 DREF_SUPERSPREAD_SOURCE_MASK));
1298 WARN(!enabled, "PCH refclk assertion failure, should be active but is disabled\n");
1299}
1300
1301static void assert_transcoder_disabled(struct drm_i915_private *dev_priv,
1302 enum pipe pipe)
1303{
1304 int reg;
1305 u32 val;
1306 bool enabled;
1307
1308 reg = TRANSCONF(pipe);
1309 val = I915_READ(reg);
1310 enabled = !!(val & TRANS_ENABLE);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001311 WARN(enabled,
1312 "transcoder assertion failed, should be off on pipe %c but is still active\n",
1313 pipe_name(pipe));
Jesse Barnes92f25842011-01-04 15:09:34 -08001314}
1315
Keith Packard4e634382011-08-06 10:39:45 -07001316static bool dp_pipe_enabled(struct drm_i915_private *dev_priv,
1317 enum pipe pipe, u32 port_sel, u32 val)
Keith Packardf0575e92011-07-25 22:12:43 -07001318{
1319 if ((val & DP_PORT_EN) == 0)
1320 return false;
1321
1322 if (HAS_PCH_CPT(dev_priv->dev)) {
1323 u32 trans_dp_ctl_reg = TRANS_DP_CTL(pipe);
1324 u32 trans_dp_ctl = I915_READ(trans_dp_ctl_reg);
1325 if ((trans_dp_ctl & TRANS_DP_PORT_SEL_MASK) != port_sel)
1326 return false;
1327 } else {
1328 if ((val & DP_PIPE_MASK) != (pipe << 30))
1329 return false;
1330 }
1331 return true;
1332}
1333
Keith Packard1519b992011-08-06 10:35:34 -07001334static bool hdmi_pipe_enabled(struct drm_i915_private *dev_priv,
1335 enum pipe pipe, u32 val)
1336{
1337 if ((val & PORT_ENABLE) == 0)
1338 return false;
1339
1340 if (HAS_PCH_CPT(dev_priv->dev)) {
1341 if ((val & PORT_TRANS_SEL_MASK) != PORT_TRANS_SEL_CPT(pipe))
1342 return false;
1343 } else {
1344 if ((val & TRANSCODER_MASK) != TRANSCODER(pipe))
1345 return false;
1346 }
1347 return true;
1348}
1349
1350static bool lvds_pipe_enabled(struct drm_i915_private *dev_priv,
1351 enum pipe pipe, u32 val)
1352{
1353 if ((val & LVDS_PORT_EN) == 0)
1354 return false;
1355
1356 if (HAS_PCH_CPT(dev_priv->dev)) {
1357 if ((val & PORT_TRANS_SEL_MASK) != PORT_TRANS_SEL_CPT(pipe))
1358 return false;
1359 } else {
1360 if ((val & LVDS_PIPE_MASK) != LVDS_PIPE(pipe))
1361 return false;
1362 }
1363 return true;
1364}
1365
1366static bool adpa_pipe_enabled(struct drm_i915_private *dev_priv,
1367 enum pipe pipe, u32 val)
1368{
1369 if ((val & ADPA_DAC_ENABLE) == 0)
1370 return false;
1371 if (HAS_PCH_CPT(dev_priv->dev)) {
1372 if ((val & PORT_TRANS_SEL_MASK) != PORT_TRANS_SEL_CPT(pipe))
1373 return false;
1374 } else {
1375 if ((val & ADPA_PIPE_SELECT_MASK) != ADPA_PIPE_SELECT(pipe))
1376 return false;
1377 }
1378 return true;
1379}
1380
Jesse Barnes291906f2011-02-02 12:28:03 -08001381static void assert_pch_dp_disabled(struct drm_i915_private *dev_priv,
Keith Packardf0575e92011-07-25 22:12:43 -07001382 enum pipe pipe, int reg, u32 port_sel)
Jesse Barnes291906f2011-02-02 12:28:03 -08001383{
Jesse Barnes47a05ec2011-02-07 13:46:40 -08001384 u32 val = I915_READ(reg);
Keith Packard4e634382011-08-06 10:39:45 -07001385 WARN(dp_pipe_enabled(dev_priv, pipe, port_sel, val),
Jesse Barnes291906f2011-02-02 12:28:03 -08001386 "PCH DP (0x%08x) enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001387 reg, pipe_name(pipe));
Daniel Vetterde9a35a2012-06-05 11:03:40 +02001388
Daniel Vetter75c5da22012-09-10 21:58:29 +02001389 WARN(HAS_PCH_IBX(dev_priv->dev) && (val & DP_PORT_EN) == 0
1390 && (val & DP_PIPEB_SELECT),
Daniel Vetterde9a35a2012-06-05 11:03:40 +02001391 "IBX PCH dp port still using transcoder B\n");
Jesse Barnes291906f2011-02-02 12:28:03 -08001392}
1393
1394static void assert_pch_hdmi_disabled(struct drm_i915_private *dev_priv,
1395 enum pipe pipe, int reg)
1396{
Jesse Barnes47a05ec2011-02-07 13:46:40 -08001397 u32 val = I915_READ(reg);
Xu, Anhuae9a851e2012-08-13 03:08:33 +00001398 WARN(hdmi_pipe_enabled(dev_priv, pipe, val),
Adam Jackson23c99e72011-10-07 14:38:43 -04001399 "PCH HDMI (0x%08x) enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001400 reg, pipe_name(pipe));
Daniel Vetterde9a35a2012-06-05 11:03:40 +02001401
Daniel Vetter75c5da22012-09-10 21:58:29 +02001402 WARN(HAS_PCH_IBX(dev_priv->dev) && (val & PORT_ENABLE) == 0
1403 && (val & SDVO_PIPE_B_SELECT),
Daniel Vetterde9a35a2012-06-05 11:03:40 +02001404 "IBX PCH hdmi port still using transcoder B\n");
Jesse Barnes291906f2011-02-02 12:28:03 -08001405}
1406
1407static void assert_pch_ports_disabled(struct drm_i915_private *dev_priv,
1408 enum pipe pipe)
1409{
1410 int reg;
1411 u32 val;
Jesse Barnes291906f2011-02-02 12:28:03 -08001412
Keith Packardf0575e92011-07-25 22:12:43 -07001413 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_B, TRANS_DP_PORT_SEL_B);
1414 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_C, TRANS_DP_PORT_SEL_C);
1415 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_D, TRANS_DP_PORT_SEL_D);
Jesse Barnes291906f2011-02-02 12:28:03 -08001416
1417 reg = PCH_ADPA;
1418 val = I915_READ(reg);
Xu, Anhuae9a851e2012-08-13 03:08:33 +00001419 WARN(adpa_pipe_enabled(dev_priv, pipe, val),
Jesse Barnes291906f2011-02-02 12:28:03 -08001420 "PCH VGA enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001421 pipe_name(pipe));
Jesse Barnes291906f2011-02-02 12:28:03 -08001422
1423 reg = PCH_LVDS;
1424 val = I915_READ(reg);
Xu, Anhuae9a851e2012-08-13 03:08:33 +00001425 WARN(lvds_pipe_enabled(dev_priv, pipe, val),
Jesse Barnes291906f2011-02-02 12:28:03 -08001426 "PCH LVDS enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001427 pipe_name(pipe));
Jesse Barnes291906f2011-02-02 12:28:03 -08001428
1429 assert_pch_hdmi_disabled(dev_priv, pipe, HDMIB);
1430 assert_pch_hdmi_disabled(dev_priv, pipe, HDMIC);
1431 assert_pch_hdmi_disabled(dev_priv, pipe, HDMID);
1432}
1433
Jesse Barnesb24e7172011-01-04 15:09:30 -08001434/**
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001435 * intel_enable_pll - enable a PLL
1436 * @dev_priv: i915 private structure
1437 * @pipe: pipe PLL to enable
1438 *
1439 * Enable @pipe's PLL so we can start pumping pixels from a plane. Check to
1440 * make sure the PLL reg is writable first though, since the panel write
1441 * protect mechanism may be enabled.
1442 *
1443 * Note! This is for pre-ILK only.
Thomas Richter7434a252012-07-18 19:22:30 +02001444 *
1445 * Unfortunately needed by dvo_ns2501 since the dvo depends on it running.
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001446 */
Daniel Vettera37b9b32012-08-12 19:27:09 +02001447static void intel_enable_pll(struct drm_i915_private *dev_priv, enum pipe pipe)
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001448{
1449 int reg;
1450 u32 val;
1451
1452 /* No really, not for ILK+ */
Jesse Barnesa0c4da242012-06-15 11:55:13 -07001453 BUG_ON(!IS_VALLEYVIEW(dev_priv->dev) && dev_priv->info->gen >= 5);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001454
1455 /* PLL is protected by panel, make sure we can write it */
1456 if (IS_MOBILE(dev_priv->dev) && !IS_I830(dev_priv->dev))
1457 assert_panel_unlocked(dev_priv, pipe);
1458
1459 reg = DPLL(pipe);
1460 val = I915_READ(reg);
1461 val |= DPLL_VCO_ENABLE;
1462
1463 /* We do this three times for luck */
1464 I915_WRITE(reg, val);
1465 POSTING_READ(reg);
1466 udelay(150); /* wait for warmup */
1467 I915_WRITE(reg, val);
1468 POSTING_READ(reg);
1469 udelay(150); /* wait for warmup */
1470 I915_WRITE(reg, val);
1471 POSTING_READ(reg);
1472 udelay(150); /* wait for warmup */
1473}
1474
1475/**
1476 * intel_disable_pll - disable a PLL
1477 * @dev_priv: i915 private structure
1478 * @pipe: pipe PLL to disable
1479 *
1480 * Disable the PLL for @pipe, making sure the pipe is off first.
1481 *
1482 * Note! This is for pre-ILK only.
1483 */
1484static void intel_disable_pll(struct drm_i915_private *dev_priv, enum pipe pipe)
1485{
1486 int reg;
1487 u32 val;
1488
1489 /* Don't disable pipe A or pipe A PLLs if needed */
1490 if (pipe == PIPE_A && (dev_priv->quirks & QUIRK_PIPEA_FORCE))
1491 return;
1492
1493 /* Make sure the pipe isn't still relying on us */
1494 assert_pipe_disabled(dev_priv, pipe);
1495
1496 reg = DPLL(pipe);
1497 val = I915_READ(reg);
1498 val &= ~DPLL_VCO_ENABLE;
1499 I915_WRITE(reg, val);
1500 POSTING_READ(reg);
1501}
1502
Eugeni Dodonova416ede2012-05-09 15:37:10 -03001503/* SBI access */
1504static void
1505intel_sbi_write(struct drm_i915_private *dev_priv, u16 reg, u32 value)
1506{
1507 unsigned long flags;
1508
1509 spin_lock_irqsave(&dev_priv->dpio_lock, flags);
Eugeni Dodonov39fb50f2012-06-08 16:43:19 -03001510 if (wait_for((I915_READ(SBI_CTL_STAT) & SBI_BUSY) == 0,
Eugeni Dodonova416ede2012-05-09 15:37:10 -03001511 100)) {
1512 DRM_ERROR("timeout waiting for SBI to become ready\n");
1513 goto out_unlock;
1514 }
1515
1516 I915_WRITE(SBI_ADDR,
1517 (reg << 16));
1518 I915_WRITE(SBI_DATA,
1519 value);
1520 I915_WRITE(SBI_CTL_STAT,
1521 SBI_BUSY |
1522 SBI_CTL_OP_CRWR);
1523
Eugeni Dodonov39fb50f2012-06-08 16:43:19 -03001524 if (wait_for((I915_READ(SBI_CTL_STAT) & (SBI_BUSY | SBI_RESPONSE_FAIL)) == 0,
Eugeni Dodonova416ede2012-05-09 15:37:10 -03001525 100)) {
1526 DRM_ERROR("timeout waiting for SBI to complete write transaction\n");
1527 goto out_unlock;
1528 }
1529
1530out_unlock:
1531 spin_unlock_irqrestore(&dev_priv->dpio_lock, flags);
1532}
1533
1534static u32
1535intel_sbi_read(struct drm_i915_private *dev_priv, u16 reg)
1536{
1537 unsigned long flags;
Eugeni Dodonov39fb50f2012-06-08 16:43:19 -03001538 u32 value = 0;
Eugeni Dodonova416ede2012-05-09 15:37:10 -03001539
1540 spin_lock_irqsave(&dev_priv->dpio_lock, flags);
Eugeni Dodonov39fb50f2012-06-08 16:43:19 -03001541 if (wait_for((I915_READ(SBI_CTL_STAT) & SBI_BUSY) == 0,
Eugeni Dodonova416ede2012-05-09 15:37:10 -03001542 100)) {
1543 DRM_ERROR("timeout waiting for SBI to become ready\n");
1544 goto out_unlock;
1545 }
1546
1547 I915_WRITE(SBI_ADDR,
1548 (reg << 16));
1549 I915_WRITE(SBI_CTL_STAT,
1550 SBI_BUSY |
1551 SBI_CTL_OP_CRRD);
1552
Eugeni Dodonov39fb50f2012-06-08 16:43:19 -03001553 if (wait_for((I915_READ(SBI_CTL_STAT) & (SBI_BUSY | SBI_RESPONSE_FAIL)) == 0,
Eugeni Dodonova416ede2012-05-09 15:37:10 -03001554 100)) {
1555 DRM_ERROR("timeout waiting for SBI to complete read transaction\n");
1556 goto out_unlock;
1557 }
1558
1559 value = I915_READ(SBI_DATA);
1560
1561out_unlock:
1562 spin_unlock_irqrestore(&dev_priv->dpio_lock, flags);
1563 return value;
1564}
1565
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001566/**
Jesse Barnes92f25842011-01-04 15:09:34 -08001567 * intel_enable_pch_pll - enable PCH PLL
1568 * @dev_priv: i915 private structure
1569 * @pipe: pipe PLL to enable
1570 *
1571 * The PCH PLL needs to be enabled before the PCH transcoder, since it
1572 * drives the transcoder clock.
1573 */
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001574static void intel_enable_pch_pll(struct intel_crtc *intel_crtc)
Jesse Barnes92f25842011-01-04 15:09:34 -08001575{
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001576 struct drm_i915_private *dev_priv = intel_crtc->base.dev->dev_private;
Chris Wilson48da64a2012-05-13 20:16:12 +01001577 struct intel_pch_pll *pll;
Jesse Barnes92f25842011-01-04 15:09:34 -08001578 int reg;
1579 u32 val;
1580
Chris Wilson48da64a2012-05-13 20:16:12 +01001581 /* PCH PLLs only available on ILK, SNB and IVB */
Jesse Barnes92f25842011-01-04 15:09:34 -08001582 BUG_ON(dev_priv->info->gen < 5);
Chris Wilson48da64a2012-05-13 20:16:12 +01001583 pll = intel_crtc->pch_pll;
1584 if (pll == NULL)
1585 return;
1586
1587 if (WARN_ON(pll->refcount == 0))
1588 return;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001589
1590 DRM_DEBUG_KMS("enable PCH PLL %x (active %d, on? %d)for crtc %d\n",
1591 pll->pll_reg, pll->active, pll->on,
1592 intel_crtc->base.base.id);
Jesse Barnes92f25842011-01-04 15:09:34 -08001593
1594 /* PCH refclock must be enabled first */
1595 assert_pch_refclk_enabled(dev_priv);
1596
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001597 if (pll->active++ && pll->on) {
Chris Wilson92b27b02012-05-20 18:10:50 +01001598 assert_pch_pll_enabled(dev_priv, pll, NULL);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001599 return;
1600 }
1601
1602 DRM_DEBUG_KMS("enabling PCH PLL %x\n", pll->pll_reg);
1603
1604 reg = pll->pll_reg;
Jesse Barnes92f25842011-01-04 15:09:34 -08001605 val = I915_READ(reg);
1606 val |= DPLL_VCO_ENABLE;
1607 I915_WRITE(reg, val);
1608 POSTING_READ(reg);
1609 udelay(200);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001610
1611 pll->on = true;
Jesse Barnes92f25842011-01-04 15:09:34 -08001612}
1613
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001614static void intel_disable_pch_pll(struct intel_crtc *intel_crtc)
Jesse Barnes92f25842011-01-04 15:09:34 -08001615{
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001616 struct drm_i915_private *dev_priv = intel_crtc->base.dev->dev_private;
1617 struct intel_pch_pll *pll = intel_crtc->pch_pll;
Jesse Barnes92f25842011-01-04 15:09:34 -08001618 int reg;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001619 u32 val;
Jesse Barnes4c609cb2011-09-02 12:52:11 -07001620
Jesse Barnes92f25842011-01-04 15:09:34 -08001621 /* PCH only available on ILK+ */
1622 BUG_ON(dev_priv->info->gen < 5);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001623 if (pll == NULL)
1624 return;
1625
Chris Wilson48da64a2012-05-13 20:16:12 +01001626 if (WARN_ON(pll->refcount == 0))
1627 return;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001628
1629 DRM_DEBUG_KMS("disable PCH PLL %x (active %d, on? %d) for crtc %d\n",
1630 pll->pll_reg, pll->active, pll->on,
1631 intel_crtc->base.base.id);
1632
Chris Wilson48da64a2012-05-13 20:16:12 +01001633 if (WARN_ON(pll->active == 0)) {
Chris Wilson92b27b02012-05-20 18:10:50 +01001634 assert_pch_pll_disabled(dev_priv, pll, NULL);
Chris Wilson48da64a2012-05-13 20:16:12 +01001635 return;
1636 }
1637
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001638 if (--pll->active) {
Chris Wilson92b27b02012-05-20 18:10:50 +01001639 assert_pch_pll_enabled(dev_priv, pll, NULL);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001640 return;
1641 }
1642
1643 DRM_DEBUG_KMS("disabling PCH PLL %x\n", pll->pll_reg);
Jesse Barnes92f25842011-01-04 15:09:34 -08001644
1645 /* Make sure transcoder isn't still depending on us */
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001646 assert_transcoder_disabled(dev_priv, intel_crtc->pipe);
Jesse Barnes92f25842011-01-04 15:09:34 -08001647
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001648 reg = pll->pll_reg;
Jesse Barnes92f25842011-01-04 15:09:34 -08001649 val = I915_READ(reg);
1650 val &= ~DPLL_VCO_ENABLE;
1651 I915_WRITE(reg, val);
1652 POSTING_READ(reg);
1653 udelay(200);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001654
1655 pll->on = false;
Jesse Barnes92f25842011-01-04 15:09:34 -08001656}
1657
Jesse Barnes040484a2011-01-03 12:14:26 -08001658static void intel_enable_transcoder(struct drm_i915_private *dev_priv,
1659 enum pipe pipe)
1660{
1661 int reg;
Paulo Zanoni5f7f7262012-02-03 17:47:15 -02001662 u32 val, pipeconf_val;
Paulo Zanoni7c26e5c2012-02-14 17:07:09 -02001663 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
Jesse Barnes040484a2011-01-03 12:14:26 -08001664
1665 /* PCH only available on ILK+ */
1666 BUG_ON(dev_priv->info->gen < 5);
1667
1668 /* Make sure PCH DPLL is enabled */
Chris Wilson92b27b02012-05-20 18:10:50 +01001669 assert_pch_pll_enabled(dev_priv,
1670 to_intel_crtc(crtc)->pch_pll,
1671 to_intel_crtc(crtc));
Jesse Barnes040484a2011-01-03 12:14:26 -08001672
1673 /* FDI must be feeding us bits for PCH ports */
1674 assert_fdi_tx_enabled(dev_priv, pipe);
1675 assert_fdi_rx_enabled(dev_priv, pipe);
1676
Eugeni Dodonov59c859d2012-05-09 15:37:19 -03001677 if (IS_HASWELL(dev_priv->dev) && pipe > 0) {
1678 DRM_ERROR("Attempting to enable transcoder on Haswell with pipe > 0\n");
1679 return;
1680 }
Jesse Barnes040484a2011-01-03 12:14:26 -08001681 reg = TRANSCONF(pipe);
1682 val = I915_READ(reg);
Paulo Zanoni5f7f7262012-02-03 17:47:15 -02001683 pipeconf_val = I915_READ(PIPECONF(pipe));
Jesse Barnese9bcff52011-06-24 12:19:20 -07001684
1685 if (HAS_PCH_IBX(dev_priv->dev)) {
1686 /*
1687 * make the BPC in transcoder be consistent with
1688 * that in pipeconf reg.
1689 */
1690 val &= ~PIPE_BPC_MASK;
Paulo Zanoni5f7f7262012-02-03 17:47:15 -02001691 val |= pipeconf_val & PIPE_BPC_MASK;
Jesse Barnese9bcff52011-06-24 12:19:20 -07001692 }
Paulo Zanoni5f7f7262012-02-03 17:47:15 -02001693
1694 val &= ~TRANS_INTERLACE_MASK;
1695 if ((pipeconf_val & PIPECONF_INTERLACE_MASK) == PIPECONF_INTERLACED_ILK)
Paulo Zanoni7c26e5c2012-02-14 17:07:09 -02001696 if (HAS_PCH_IBX(dev_priv->dev) &&
1697 intel_pipe_has_type(crtc, INTEL_OUTPUT_SDVO))
1698 val |= TRANS_LEGACY_INTERLACED_ILK;
1699 else
1700 val |= TRANS_INTERLACED;
Paulo Zanoni5f7f7262012-02-03 17:47:15 -02001701 else
1702 val |= TRANS_PROGRESSIVE;
1703
Jesse Barnes040484a2011-01-03 12:14:26 -08001704 I915_WRITE(reg, val | TRANS_ENABLE);
1705 if (wait_for(I915_READ(reg) & TRANS_STATE_ENABLE, 100))
1706 DRM_ERROR("failed to enable transcoder %d\n", pipe);
1707}
1708
1709static void intel_disable_transcoder(struct drm_i915_private *dev_priv,
1710 enum pipe pipe)
1711{
1712 int reg;
1713 u32 val;
1714
1715 /* FDI relies on the transcoder */
1716 assert_fdi_tx_disabled(dev_priv, pipe);
1717 assert_fdi_rx_disabled(dev_priv, pipe);
1718
Jesse Barnes291906f2011-02-02 12:28:03 -08001719 /* Ports must be off as well */
1720 assert_pch_ports_disabled(dev_priv, pipe);
1721
Jesse Barnes040484a2011-01-03 12:14:26 -08001722 reg = TRANSCONF(pipe);
1723 val = I915_READ(reg);
1724 val &= ~TRANS_ENABLE;
1725 I915_WRITE(reg, val);
1726 /* wait for PCH transcoder off, transcoder state */
1727 if (wait_for((I915_READ(reg) & TRANS_STATE_ENABLE) == 0, 50))
Jesse Barnes4c9c18c2011-10-13 09:46:32 -07001728 DRM_ERROR("failed to disable transcoder %d\n", pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08001729}
1730
Jesse Barnes92f25842011-01-04 15:09:34 -08001731/**
Chris Wilson309cfea2011-01-28 13:54:53 +00001732 * intel_enable_pipe - enable a pipe, asserting requirements
Jesse Barnesb24e7172011-01-04 15:09:30 -08001733 * @dev_priv: i915 private structure
1734 * @pipe: pipe to enable
Jesse Barnes040484a2011-01-03 12:14:26 -08001735 * @pch_port: on ILK+, is this pipe driving a PCH port or not
Jesse Barnesb24e7172011-01-04 15:09:30 -08001736 *
1737 * Enable @pipe, making sure that various hardware specific requirements
1738 * are met, if applicable, e.g. PLL enabled, LVDS pairs enabled, etc.
1739 *
1740 * @pipe should be %PIPE_A or %PIPE_B.
1741 *
1742 * Will wait until the pipe is actually running (i.e. first vblank) before
1743 * returning.
1744 */
Jesse Barnes040484a2011-01-03 12:14:26 -08001745static void intel_enable_pipe(struct drm_i915_private *dev_priv, enum pipe pipe,
1746 bool pch_port)
Jesse Barnesb24e7172011-01-04 15:09:30 -08001747{
1748 int reg;
1749 u32 val;
1750
1751 /*
1752 * A pipe without a PLL won't actually be able to drive bits from
1753 * a plane. On ILK+ the pipe PLLs are integrated, so we don't
1754 * need the check.
1755 */
1756 if (!HAS_PCH_SPLIT(dev_priv->dev))
1757 assert_pll_enabled(dev_priv, pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08001758 else {
1759 if (pch_port) {
1760 /* if driving the PCH, we need FDI enabled */
1761 assert_fdi_rx_pll_enabled(dev_priv, pipe);
1762 assert_fdi_tx_pll_enabled(dev_priv, pipe);
1763 }
1764 /* FIXME: assert CPU port conditions for SNB+ */
1765 }
Jesse Barnesb24e7172011-01-04 15:09:30 -08001766
1767 reg = PIPECONF(pipe);
1768 val = I915_READ(reg);
Chris Wilson00d70b12011-03-17 07:18:29 +00001769 if (val & PIPECONF_ENABLE)
1770 return;
1771
1772 I915_WRITE(reg, val | PIPECONF_ENABLE);
Jesse Barnesb24e7172011-01-04 15:09:30 -08001773 intel_wait_for_vblank(dev_priv->dev, pipe);
1774}
1775
1776/**
Chris Wilson309cfea2011-01-28 13:54:53 +00001777 * intel_disable_pipe - disable a pipe, asserting requirements
Jesse Barnesb24e7172011-01-04 15:09:30 -08001778 * @dev_priv: i915 private structure
1779 * @pipe: pipe to disable
1780 *
1781 * Disable @pipe, making sure that various hardware specific requirements
1782 * are met, if applicable, e.g. plane disabled, panel fitter off, etc.
1783 *
1784 * @pipe should be %PIPE_A or %PIPE_B.
1785 *
1786 * Will wait until the pipe has shut down before returning.
1787 */
1788static void intel_disable_pipe(struct drm_i915_private *dev_priv,
1789 enum pipe pipe)
1790{
1791 int reg;
1792 u32 val;
1793
1794 /*
1795 * Make sure planes won't keep trying to pump pixels to us,
1796 * or we might hang the display.
1797 */
1798 assert_planes_disabled(dev_priv, pipe);
1799
1800 /* Don't disable pipe A or pipe A PLLs if needed */
1801 if (pipe == PIPE_A && (dev_priv->quirks & QUIRK_PIPEA_FORCE))
1802 return;
1803
1804 reg = PIPECONF(pipe);
1805 val = I915_READ(reg);
Chris Wilson00d70b12011-03-17 07:18:29 +00001806 if ((val & PIPECONF_ENABLE) == 0)
1807 return;
1808
1809 I915_WRITE(reg, val & ~PIPECONF_ENABLE);
Jesse Barnesb24e7172011-01-04 15:09:30 -08001810 intel_wait_for_pipe_off(dev_priv->dev, pipe);
1811}
1812
Keith Packardd74362c2011-07-28 14:47:14 -07001813/*
1814 * Plane regs are double buffered, going from enabled->disabled needs a
1815 * trigger in order to latch. The display address reg provides this.
1816 */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03001817void intel_flush_display_plane(struct drm_i915_private *dev_priv,
Keith Packardd74362c2011-07-28 14:47:14 -07001818 enum plane plane)
1819{
1820 I915_WRITE(DSPADDR(plane), I915_READ(DSPADDR(plane)));
1821 I915_WRITE(DSPSURF(plane), I915_READ(DSPSURF(plane)));
1822}
1823
Jesse Barnesb24e7172011-01-04 15:09:30 -08001824/**
1825 * intel_enable_plane - enable a display plane on a given pipe
1826 * @dev_priv: i915 private structure
1827 * @plane: plane to enable
1828 * @pipe: pipe being fed
1829 *
1830 * Enable @plane on @pipe, making sure that @pipe is running first.
1831 */
1832static void intel_enable_plane(struct drm_i915_private *dev_priv,
1833 enum plane plane, enum pipe pipe)
1834{
1835 int reg;
1836 u32 val;
1837
1838 /* If the pipe isn't enabled, we can't pump pixels and may hang */
1839 assert_pipe_enabled(dev_priv, pipe);
1840
1841 reg = DSPCNTR(plane);
1842 val = I915_READ(reg);
Chris Wilson00d70b12011-03-17 07:18:29 +00001843 if (val & DISPLAY_PLANE_ENABLE)
1844 return;
1845
1846 I915_WRITE(reg, val | DISPLAY_PLANE_ENABLE);
Keith Packardd74362c2011-07-28 14:47:14 -07001847 intel_flush_display_plane(dev_priv, plane);
Jesse Barnesb24e7172011-01-04 15:09:30 -08001848 intel_wait_for_vblank(dev_priv->dev, pipe);
1849}
1850
Jesse Barnesb24e7172011-01-04 15:09:30 -08001851/**
1852 * intel_disable_plane - disable a display plane
1853 * @dev_priv: i915 private structure
1854 * @plane: plane to disable
1855 * @pipe: pipe consuming the data
1856 *
1857 * Disable @plane; should be an independent operation.
1858 */
1859static void intel_disable_plane(struct drm_i915_private *dev_priv,
1860 enum plane plane, enum pipe pipe)
1861{
1862 int reg;
1863 u32 val;
1864
1865 reg = DSPCNTR(plane);
1866 val = I915_READ(reg);
Chris Wilson00d70b12011-03-17 07:18:29 +00001867 if ((val & DISPLAY_PLANE_ENABLE) == 0)
1868 return;
1869
1870 I915_WRITE(reg, val & ~DISPLAY_PLANE_ENABLE);
Jesse Barnesb24e7172011-01-04 15:09:30 -08001871 intel_flush_display_plane(dev_priv, plane);
1872 intel_wait_for_vblank(dev_priv->dev, pipe);
1873}
1874
Chris Wilson127bd2a2010-07-23 23:32:05 +01001875int
Chris Wilson48b956c2010-09-14 12:50:34 +01001876intel_pin_and_fence_fb_obj(struct drm_device *dev,
Chris Wilson05394f32010-11-08 19:18:58 +00001877 struct drm_i915_gem_object *obj,
Chris Wilson919926a2010-11-12 13:42:53 +00001878 struct intel_ring_buffer *pipelined)
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001879{
Chris Wilsonce453d82011-02-21 14:43:56 +00001880 struct drm_i915_private *dev_priv = dev->dev_private;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001881 u32 alignment;
1882 int ret;
1883
Chris Wilson05394f32010-11-08 19:18:58 +00001884 switch (obj->tiling_mode) {
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001885 case I915_TILING_NONE:
Chris Wilson534843d2010-07-05 18:01:46 +01001886 if (IS_BROADWATER(dev) || IS_CRESTLINE(dev))
1887 alignment = 128 * 1024;
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001888 else if (INTEL_INFO(dev)->gen >= 4)
Chris Wilson534843d2010-07-05 18:01:46 +01001889 alignment = 4 * 1024;
1890 else
1891 alignment = 64 * 1024;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001892 break;
1893 case I915_TILING_X:
1894 /* pin() will align the object as required by fence */
1895 alignment = 0;
1896 break;
1897 case I915_TILING_Y:
1898 /* FIXME: Is this true? */
1899 DRM_ERROR("Y tiled not allowed for scan out buffers\n");
1900 return -EINVAL;
1901 default:
1902 BUG();
1903 }
1904
Chris Wilsonce453d82011-02-21 14:43:56 +00001905 dev_priv->mm.interruptible = false;
Chris Wilson2da3b9b2011-04-14 09:41:17 +01001906 ret = i915_gem_object_pin_to_display_plane(obj, alignment, pipelined);
Chris Wilson48b956c2010-09-14 12:50:34 +01001907 if (ret)
Chris Wilsonce453d82011-02-21 14:43:56 +00001908 goto err_interruptible;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001909
1910 /* Install a fence for tiled scan-out. Pre-i965 always needs a
1911 * fence, whereas 965+ only requires a fence if using
1912 * framebuffer compression. For simplicity, we always install
1913 * a fence as the cost is not that onerous.
1914 */
Chris Wilson06d98132012-04-17 15:31:24 +01001915 ret = i915_gem_object_get_fence(obj);
Chris Wilson9a5a53b2012-03-22 15:10:00 +00001916 if (ret)
1917 goto err_unpin;
Chris Wilson1690e1e2011-12-14 13:57:08 +01001918
Chris Wilson9a5a53b2012-03-22 15:10:00 +00001919 i915_gem_object_pin_fence(obj);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001920
Chris Wilsonce453d82011-02-21 14:43:56 +00001921 dev_priv->mm.interruptible = true;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001922 return 0;
Chris Wilson48b956c2010-09-14 12:50:34 +01001923
1924err_unpin:
1925 i915_gem_object_unpin(obj);
Chris Wilsonce453d82011-02-21 14:43:56 +00001926err_interruptible:
1927 dev_priv->mm.interruptible = true;
Chris Wilson48b956c2010-09-14 12:50:34 +01001928 return ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001929}
1930
Chris Wilson1690e1e2011-12-14 13:57:08 +01001931void intel_unpin_fb_obj(struct drm_i915_gem_object *obj)
1932{
1933 i915_gem_object_unpin_fence(obj);
1934 i915_gem_object_unpin(obj);
1935}
1936
Daniel Vetterc2c75132012-07-05 12:17:30 +02001937/* Computes the linear offset to the base tile and adjusts x, y. bytes per pixel
1938 * is assumed to be a power-of-two. */
1939static unsigned long gen4_compute_dspaddr_offset_xtiled(int *x, int *y,
1940 unsigned int bpp,
1941 unsigned int pitch)
1942{
1943 int tile_rows, tiles;
1944
1945 tile_rows = *y / 8;
1946 *y %= 8;
1947 tiles = *x / (512/bpp);
1948 *x %= 512/bpp;
1949
1950 return tile_rows * pitch * 8 + tiles * 4096;
1951}
1952
Jesse Barnes17638cd2011-06-24 12:19:23 -07001953static int i9xx_update_plane(struct drm_crtc *crtc, struct drm_framebuffer *fb,
1954 int x, int y)
Jesse Barnes81255562010-08-02 12:07:50 -07001955{
1956 struct drm_device *dev = crtc->dev;
1957 struct drm_i915_private *dev_priv = dev->dev_private;
1958 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1959 struct intel_framebuffer *intel_fb;
Chris Wilson05394f32010-11-08 19:18:58 +00001960 struct drm_i915_gem_object *obj;
Jesse Barnes81255562010-08-02 12:07:50 -07001961 int plane = intel_crtc->plane;
Daniel Vettere506a0c2012-07-05 12:17:29 +02001962 unsigned long linear_offset;
Jesse Barnes81255562010-08-02 12:07:50 -07001963 u32 dspcntr;
Chris Wilson5eddb702010-09-11 13:48:45 +01001964 u32 reg;
Jesse Barnes81255562010-08-02 12:07:50 -07001965
1966 switch (plane) {
1967 case 0:
1968 case 1:
1969 break;
1970 default:
1971 DRM_ERROR("Can't update plane %d in SAREA\n", plane);
1972 return -EINVAL;
1973 }
1974
1975 intel_fb = to_intel_framebuffer(fb);
1976 obj = intel_fb->obj;
Jesse Barnes81255562010-08-02 12:07:50 -07001977
Chris Wilson5eddb702010-09-11 13:48:45 +01001978 reg = DSPCNTR(plane);
1979 dspcntr = I915_READ(reg);
Jesse Barnes81255562010-08-02 12:07:50 -07001980 /* Mask out pixel format bits in case we change it */
1981 dspcntr &= ~DISPPLANE_PIXFORMAT_MASK;
1982 switch (fb->bits_per_pixel) {
1983 case 8:
1984 dspcntr |= DISPPLANE_8BPP;
1985 break;
1986 case 16:
1987 if (fb->depth == 15)
1988 dspcntr |= DISPPLANE_15_16BPP;
1989 else
1990 dspcntr |= DISPPLANE_16BPP;
1991 break;
1992 case 24:
1993 case 32:
1994 dspcntr |= DISPPLANE_32BPP_NO_ALPHA;
1995 break;
1996 default:
Jesse Barnes17638cd2011-06-24 12:19:23 -07001997 DRM_ERROR("Unknown color depth %d\n", fb->bits_per_pixel);
Jesse Barnes81255562010-08-02 12:07:50 -07001998 return -EINVAL;
1999 }
Chris Wilsona6c45cf2010-09-17 00:32:17 +01002000 if (INTEL_INFO(dev)->gen >= 4) {
Chris Wilson05394f32010-11-08 19:18:58 +00002001 if (obj->tiling_mode != I915_TILING_NONE)
Jesse Barnes81255562010-08-02 12:07:50 -07002002 dspcntr |= DISPPLANE_TILED;
2003 else
2004 dspcntr &= ~DISPPLANE_TILED;
2005 }
2006
Chris Wilson5eddb702010-09-11 13:48:45 +01002007 I915_WRITE(reg, dspcntr);
Jesse Barnes81255562010-08-02 12:07:50 -07002008
Daniel Vettere506a0c2012-07-05 12:17:29 +02002009 linear_offset = y * fb->pitches[0] + x * (fb->bits_per_pixel / 8);
Jesse Barnes81255562010-08-02 12:07:50 -07002010
Daniel Vetterc2c75132012-07-05 12:17:30 +02002011 if (INTEL_INFO(dev)->gen >= 4) {
2012 intel_crtc->dspaddr_offset =
2013 gen4_compute_dspaddr_offset_xtiled(&x, &y,
2014 fb->bits_per_pixel / 8,
2015 fb->pitches[0]);
2016 linear_offset -= intel_crtc->dspaddr_offset;
2017 } else {
Daniel Vettere506a0c2012-07-05 12:17:29 +02002018 intel_crtc->dspaddr_offset = linear_offset;
Daniel Vetterc2c75132012-07-05 12:17:30 +02002019 }
Daniel Vettere506a0c2012-07-05 12:17:29 +02002020
2021 DRM_DEBUG_KMS("Writing base %08X %08lX %d %d %d\n",
2022 obj->gtt_offset, linear_offset, x, y, fb->pitches[0]);
Ville Syrjälä01f2c772011-12-20 00:06:49 +02002023 I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]);
Chris Wilsona6c45cf2010-09-17 00:32:17 +01002024 if (INTEL_INFO(dev)->gen >= 4) {
Daniel Vetterc2c75132012-07-05 12:17:30 +02002025 I915_MODIFY_DISPBASE(DSPSURF(plane),
2026 obj->gtt_offset + intel_crtc->dspaddr_offset);
Chris Wilson5eddb702010-09-11 13:48:45 +01002027 I915_WRITE(DSPTILEOFF(plane), (y << 16) | x);
Daniel Vettere506a0c2012-07-05 12:17:29 +02002028 I915_WRITE(DSPLINOFF(plane), linear_offset);
Chris Wilson5eddb702010-09-11 13:48:45 +01002029 } else
Daniel Vettere506a0c2012-07-05 12:17:29 +02002030 I915_WRITE(DSPADDR(plane), obj->gtt_offset + linear_offset);
Chris Wilson5eddb702010-09-11 13:48:45 +01002031 POSTING_READ(reg);
Jesse Barnes81255562010-08-02 12:07:50 -07002032
Jesse Barnes17638cd2011-06-24 12:19:23 -07002033 return 0;
2034}
2035
2036static int ironlake_update_plane(struct drm_crtc *crtc,
2037 struct drm_framebuffer *fb, int x, int y)
2038{
2039 struct drm_device *dev = crtc->dev;
2040 struct drm_i915_private *dev_priv = dev->dev_private;
2041 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2042 struct intel_framebuffer *intel_fb;
2043 struct drm_i915_gem_object *obj;
2044 int plane = intel_crtc->plane;
Daniel Vettere506a0c2012-07-05 12:17:29 +02002045 unsigned long linear_offset;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002046 u32 dspcntr;
2047 u32 reg;
2048
2049 switch (plane) {
2050 case 0:
2051 case 1:
Jesse Barnes27f82272011-09-02 12:54:37 -07002052 case 2:
Jesse Barnes17638cd2011-06-24 12:19:23 -07002053 break;
2054 default:
2055 DRM_ERROR("Can't update plane %d in SAREA\n", plane);
2056 return -EINVAL;
2057 }
2058
2059 intel_fb = to_intel_framebuffer(fb);
2060 obj = intel_fb->obj;
2061
2062 reg = DSPCNTR(plane);
2063 dspcntr = I915_READ(reg);
2064 /* Mask out pixel format bits in case we change it */
2065 dspcntr &= ~DISPPLANE_PIXFORMAT_MASK;
2066 switch (fb->bits_per_pixel) {
2067 case 8:
2068 dspcntr |= DISPPLANE_8BPP;
2069 break;
2070 case 16:
2071 if (fb->depth != 16)
2072 return -EINVAL;
2073
2074 dspcntr |= DISPPLANE_16BPP;
2075 break;
2076 case 24:
2077 case 32:
2078 if (fb->depth == 24)
2079 dspcntr |= DISPPLANE_32BPP_NO_ALPHA;
2080 else if (fb->depth == 30)
2081 dspcntr |= DISPPLANE_32BPP_30BIT_NO_ALPHA;
2082 else
2083 return -EINVAL;
2084 break;
2085 default:
2086 DRM_ERROR("Unknown color depth %d\n", fb->bits_per_pixel);
2087 return -EINVAL;
2088 }
2089
2090 if (obj->tiling_mode != I915_TILING_NONE)
2091 dspcntr |= DISPPLANE_TILED;
2092 else
2093 dspcntr &= ~DISPPLANE_TILED;
2094
2095 /* must disable */
2096 dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE;
2097
2098 I915_WRITE(reg, dspcntr);
2099
Daniel Vettere506a0c2012-07-05 12:17:29 +02002100 linear_offset = y * fb->pitches[0] + x * (fb->bits_per_pixel / 8);
Daniel Vetterc2c75132012-07-05 12:17:30 +02002101 intel_crtc->dspaddr_offset =
2102 gen4_compute_dspaddr_offset_xtiled(&x, &y,
2103 fb->bits_per_pixel / 8,
2104 fb->pitches[0]);
2105 linear_offset -= intel_crtc->dspaddr_offset;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002106
Daniel Vettere506a0c2012-07-05 12:17:29 +02002107 DRM_DEBUG_KMS("Writing base %08X %08lX %d %d %d\n",
2108 obj->gtt_offset, linear_offset, x, y, fb->pitches[0]);
Ville Syrjälä01f2c772011-12-20 00:06:49 +02002109 I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]);
Daniel Vetterc2c75132012-07-05 12:17:30 +02002110 I915_MODIFY_DISPBASE(DSPSURF(plane),
2111 obj->gtt_offset + intel_crtc->dspaddr_offset);
Jesse Barnes17638cd2011-06-24 12:19:23 -07002112 I915_WRITE(DSPTILEOFF(plane), (y << 16) | x);
Daniel Vettere506a0c2012-07-05 12:17:29 +02002113 I915_WRITE(DSPLINOFF(plane), linear_offset);
Jesse Barnes17638cd2011-06-24 12:19:23 -07002114 POSTING_READ(reg);
2115
2116 return 0;
2117}
2118
2119/* Assume fb object is pinned & idle & fenced and just update base pointers */
2120static int
2121intel_pipe_set_base_atomic(struct drm_crtc *crtc, struct drm_framebuffer *fb,
2122 int x, int y, enum mode_set_atomic state)
2123{
2124 struct drm_device *dev = crtc->dev;
2125 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002126
Chris Wilson6b8e6ed2012-04-17 15:08:19 +01002127 if (dev_priv->display.disable_fbc)
2128 dev_priv->display.disable_fbc(dev);
Daniel Vetter3dec0092010-08-20 21:40:52 +02002129 intel_increase_pllclock(crtc);
Jesse Barnes81255562010-08-02 12:07:50 -07002130
Chris Wilson6b8e6ed2012-04-17 15:08:19 +01002131 return dev_priv->display.update_plane(crtc, fb, x, y);
Jesse Barnes81255562010-08-02 12:07:50 -07002132}
2133
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002134static int
Chris Wilson14667a42012-04-03 17:58:35 +01002135intel_finish_fb(struct drm_framebuffer *old_fb)
2136{
2137 struct drm_i915_gem_object *obj = to_intel_framebuffer(old_fb)->obj;
2138 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
2139 bool was_interruptible = dev_priv->mm.interruptible;
2140 int ret;
2141
2142 wait_event(dev_priv->pending_flip_queue,
2143 atomic_read(&dev_priv->mm.wedged) ||
2144 atomic_read(&obj->pending_flip) == 0);
2145
2146 /* Big Hammer, we also need to ensure that any pending
2147 * MI_WAIT_FOR_EVENT inside a user batch buffer on the
2148 * current scanout is retired before unpinning the old
2149 * framebuffer.
2150 *
2151 * This should only fail upon a hung GPU, in which case we
2152 * can safely continue.
2153 */
2154 dev_priv->mm.interruptible = false;
2155 ret = i915_gem_object_finish_gpu(obj);
2156 dev_priv->mm.interruptible = was_interruptible;
2157
2158 return ret;
2159}
2160
2161static int
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -05002162intel_pipe_set_base(struct drm_crtc *crtc, int x, int y,
Daniel Vetter94352cf2012-07-05 22:51:56 +02002163 struct drm_framebuffer *fb)
Jesse Barnes79e53942008-11-07 14:24:08 -08002164{
2165 struct drm_device *dev = crtc->dev;
Chris Wilson6b8e6ed2012-04-17 15:08:19 +01002166 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -08002167 struct drm_i915_master_private *master_priv;
2168 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter94352cf2012-07-05 22:51:56 +02002169 struct drm_framebuffer *old_fb;
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002170 int ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08002171
2172 /* no fb bound */
Daniel Vetter94352cf2012-07-05 22:51:56 +02002173 if (!fb) {
Jesse Barnesa5071c22011-07-19 15:38:56 -07002174 DRM_ERROR("No FB bound\n");
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002175 return 0;
2176 }
2177
Eugeni Dodonov5826eca2012-05-09 15:37:12 -03002178 if(intel_crtc->plane > dev_priv->num_pipe) {
2179 DRM_ERROR("no plane for crtc: plane %d, num_pipes %d\n",
2180 intel_crtc->plane,
2181 dev_priv->num_pipe);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002182 return -EINVAL;
Jesse Barnes79e53942008-11-07 14:24:08 -08002183 }
2184
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002185 mutex_lock(&dev->struct_mutex);
Chris Wilson265db952010-09-20 15:41:01 +01002186 ret = intel_pin_and_fence_fb_obj(dev,
Daniel Vetter94352cf2012-07-05 22:51:56 +02002187 to_intel_framebuffer(fb)->obj,
Chris Wilson919926a2010-11-12 13:42:53 +00002188 NULL);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002189 if (ret != 0) {
2190 mutex_unlock(&dev->struct_mutex);
Jesse Barnesa5071c22011-07-19 15:38:56 -07002191 DRM_ERROR("pin & fence failed\n");
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002192 return ret;
2193 }
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -05002194
Daniel Vetter94352cf2012-07-05 22:51:56 +02002195 if (crtc->fb)
2196 intel_finish_fb(crtc->fb);
Chris Wilson265db952010-09-20 15:41:01 +01002197
Daniel Vetter94352cf2012-07-05 22:51:56 +02002198 ret = dev_priv->display.update_plane(crtc, fb, x, y);
Chris Wilson4e6cfef2010-08-08 13:20:19 +01002199 if (ret) {
Daniel Vetter94352cf2012-07-05 22:51:56 +02002200 intel_unpin_fb_obj(to_intel_framebuffer(fb)->obj);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002201 mutex_unlock(&dev->struct_mutex);
Jesse Barnesa5071c22011-07-19 15:38:56 -07002202 DRM_ERROR("failed to update base address\n");
Chris Wilson4e6cfef2010-08-08 13:20:19 +01002203 return ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08002204 }
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -05002205
Daniel Vetter94352cf2012-07-05 22:51:56 +02002206 old_fb = crtc->fb;
2207 crtc->fb = fb;
Daniel Vetter6c4c86f2012-09-10 21:58:30 +02002208 crtc->x = x;
2209 crtc->y = y;
Daniel Vetter94352cf2012-07-05 22:51:56 +02002210
Chris Wilsonb7f1de22010-12-14 16:09:31 +00002211 if (old_fb) {
2212 intel_wait_for_vblank(dev, intel_crtc->pipe);
Chris Wilson1690e1e2011-12-14 13:57:08 +01002213 intel_unpin_fb_obj(to_intel_framebuffer(old_fb)->obj);
Chris Wilsonb7f1de22010-12-14 16:09:31 +00002214 }
Jesse Barnes652c3932009-08-17 13:31:43 -07002215
Chris Wilson6b8e6ed2012-04-17 15:08:19 +01002216 intel_update_fbc(dev);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002217 mutex_unlock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -08002218
2219 if (!dev->primary->master)
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002220 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08002221
2222 master_priv = dev->primary->master->driver_priv;
2223 if (!master_priv->sarea_priv)
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002224 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08002225
Chris Wilson265db952010-09-20 15:41:01 +01002226 if (intel_crtc->pipe) {
Jesse Barnes79e53942008-11-07 14:24:08 -08002227 master_priv->sarea_priv->pipeB_x = x;
2228 master_priv->sarea_priv->pipeB_y = y;
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002229 } else {
2230 master_priv->sarea_priv->pipeA_x = x;
2231 master_priv->sarea_priv->pipeA_y = y;
Jesse Barnes79e53942008-11-07 14:24:08 -08002232 }
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002233
2234 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08002235}
2236
Chris Wilson5eddb702010-09-11 13:48:45 +01002237static void ironlake_set_pll_edp(struct drm_crtc *crtc, int clock)
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002238{
2239 struct drm_device *dev = crtc->dev;
2240 struct drm_i915_private *dev_priv = dev->dev_private;
2241 u32 dpa_ctl;
2242
Zhao Yakui28c97732009-10-09 11:39:41 +08002243 DRM_DEBUG_KMS("eDP PLL enable for clock %d\n", clock);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002244 dpa_ctl = I915_READ(DP_A);
2245 dpa_ctl &= ~DP_PLL_FREQ_MASK;
2246
2247 if (clock < 200000) {
2248 u32 temp;
2249 dpa_ctl |= DP_PLL_FREQ_160MHZ;
2250 /* workaround for 160Mhz:
2251 1) program 0x4600c bits 15:0 = 0x8124
2252 2) program 0x46010 bit 0 = 1
2253 3) program 0x46034 bit 24 = 1
2254 4) program 0x64000 bit 14 = 1
2255 */
2256 temp = I915_READ(0x4600c);
2257 temp &= 0xffff0000;
2258 I915_WRITE(0x4600c, temp | 0x8124);
2259
2260 temp = I915_READ(0x46010);
2261 I915_WRITE(0x46010, temp | 1);
2262
2263 temp = I915_READ(0x46034);
2264 I915_WRITE(0x46034, temp | (1 << 24));
2265 } else {
2266 dpa_ctl |= DP_PLL_FREQ_270MHZ;
2267 }
2268 I915_WRITE(DP_A, dpa_ctl);
2269
Chris Wilson5eddb702010-09-11 13:48:45 +01002270 POSTING_READ(DP_A);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002271 udelay(500);
2272}
2273
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08002274static void intel_fdi_normal_train(struct drm_crtc *crtc)
2275{
2276 struct drm_device *dev = crtc->dev;
2277 struct drm_i915_private *dev_priv = dev->dev_private;
2278 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2279 int pipe = intel_crtc->pipe;
2280 u32 reg, temp;
2281
2282 /* enable normal train */
2283 reg = FDI_TX_CTL(pipe);
2284 temp = I915_READ(reg);
Keith Packard61e499b2011-05-17 16:13:52 -07002285 if (IS_IVYBRIDGE(dev)) {
Jesse Barnes357555c2011-04-28 15:09:55 -07002286 temp &= ~FDI_LINK_TRAIN_NONE_IVB;
2287 temp |= FDI_LINK_TRAIN_NONE_IVB | FDI_TX_ENHANCE_FRAME_ENABLE;
Keith Packard61e499b2011-05-17 16:13:52 -07002288 } else {
2289 temp &= ~FDI_LINK_TRAIN_NONE;
2290 temp |= FDI_LINK_TRAIN_NONE | FDI_TX_ENHANCE_FRAME_ENABLE;
Jesse Barnes357555c2011-04-28 15:09:55 -07002291 }
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08002292 I915_WRITE(reg, temp);
2293
2294 reg = FDI_RX_CTL(pipe);
2295 temp = I915_READ(reg);
2296 if (HAS_PCH_CPT(dev)) {
2297 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2298 temp |= FDI_LINK_TRAIN_NORMAL_CPT;
2299 } else {
2300 temp &= ~FDI_LINK_TRAIN_NONE;
2301 temp |= FDI_LINK_TRAIN_NONE;
2302 }
2303 I915_WRITE(reg, temp | FDI_RX_ENHANCE_FRAME_ENABLE);
2304
2305 /* wait one idle pattern time */
2306 POSTING_READ(reg);
2307 udelay(1000);
Jesse Barnes357555c2011-04-28 15:09:55 -07002308
2309 /* IVB wants error correction enabled */
2310 if (IS_IVYBRIDGE(dev))
2311 I915_WRITE(reg, I915_READ(reg) | FDI_FS_ERRC_ENABLE |
2312 FDI_FE_ERRC_ENABLE);
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08002313}
2314
Jesse Barnes291427f2011-07-29 12:42:37 -07002315static void cpt_phase_pointer_enable(struct drm_device *dev, int pipe)
2316{
2317 struct drm_i915_private *dev_priv = dev->dev_private;
2318 u32 flags = I915_READ(SOUTH_CHICKEN1);
2319
2320 flags |= FDI_PHASE_SYNC_OVR(pipe);
2321 I915_WRITE(SOUTH_CHICKEN1, flags); /* once to unlock... */
2322 flags |= FDI_PHASE_SYNC_EN(pipe);
2323 I915_WRITE(SOUTH_CHICKEN1, flags); /* then again to enable */
2324 POSTING_READ(SOUTH_CHICKEN1);
2325}
2326
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002327/* The FDI link training functions for ILK/Ibexpeak. */
2328static void ironlake_fdi_link_train(struct drm_crtc *crtc)
2329{
2330 struct drm_device *dev = crtc->dev;
2331 struct drm_i915_private *dev_priv = dev->dev_private;
2332 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2333 int pipe = intel_crtc->pipe;
Jesse Barnes0fc932b2011-01-04 15:09:37 -08002334 int plane = intel_crtc->plane;
Chris Wilson5eddb702010-09-11 13:48:45 +01002335 u32 reg, temp, tries;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002336
Jesse Barnes0fc932b2011-01-04 15:09:37 -08002337 /* FDI needs bits from pipe & plane first */
2338 assert_pipe_enabled(dev_priv, pipe);
2339 assert_plane_enabled(dev_priv, plane);
2340
Adam Jacksone1a44742010-06-25 15:32:14 -04002341 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
2342 for train result */
Chris Wilson5eddb702010-09-11 13:48:45 +01002343 reg = FDI_RX_IMR(pipe);
2344 temp = I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04002345 temp &= ~FDI_RX_SYMBOL_LOCK;
2346 temp &= ~FDI_RX_BIT_LOCK;
Chris Wilson5eddb702010-09-11 13:48:45 +01002347 I915_WRITE(reg, temp);
2348 I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04002349 udelay(150);
2350
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002351 /* enable CPU FDI TX and PCH FDI RX */
Chris Wilson5eddb702010-09-11 13:48:45 +01002352 reg = FDI_TX_CTL(pipe);
2353 temp = I915_READ(reg);
Adam Jackson77ffb592010-04-12 11:38:44 -04002354 temp &= ~(7 << 19);
2355 temp |= (intel_crtc->fdi_lanes - 1) << 19;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002356 temp &= ~FDI_LINK_TRAIN_NONE;
2357 temp |= FDI_LINK_TRAIN_PATTERN_1;
Chris Wilson5eddb702010-09-11 13:48:45 +01002358 I915_WRITE(reg, temp | FDI_TX_ENABLE);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002359
Chris Wilson5eddb702010-09-11 13:48:45 +01002360 reg = FDI_RX_CTL(pipe);
2361 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002362 temp &= ~FDI_LINK_TRAIN_NONE;
2363 temp |= FDI_LINK_TRAIN_PATTERN_1;
Chris Wilson5eddb702010-09-11 13:48:45 +01002364 I915_WRITE(reg, temp | FDI_RX_ENABLE);
2365
2366 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002367 udelay(150);
2368
Jesse Barnes5b2adf82010-10-07 16:01:15 -07002369 /* Ironlake workaround, enable clock pointer after FDI enable*/
Jesse Barnes6f06ce12011-01-04 15:09:38 -08002370 if (HAS_PCH_IBX(dev)) {
2371 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR);
2372 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR |
2373 FDI_RX_PHASE_SYNC_POINTER_EN);
2374 }
Jesse Barnes5b2adf82010-10-07 16:01:15 -07002375
Chris Wilson5eddb702010-09-11 13:48:45 +01002376 reg = FDI_RX_IIR(pipe);
Adam Jacksone1a44742010-06-25 15:32:14 -04002377 for (tries = 0; tries < 5; tries++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002378 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002379 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2380
2381 if ((temp & FDI_RX_BIT_LOCK)) {
2382 DRM_DEBUG_KMS("FDI train 1 done.\n");
Chris Wilson5eddb702010-09-11 13:48:45 +01002383 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002384 break;
2385 }
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002386 }
Adam Jacksone1a44742010-06-25 15:32:14 -04002387 if (tries == 5)
Chris Wilson5eddb702010-09-11 13:48:45 +01002388 DRM_ERROR("FDI train 1 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002389
2390 /* Train 2 */
Chris Wilson5eddb702010-09-11 13:48:45 +01002391 reg = FDI_TX_CTL(pipe);
2392 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002393 temp &= ~FDI_LINK_TRAIN_NONE;
2394 temp |= FDI_LINK_TRAIN_PATTERN_2;
Chris Wilson5eddb702010-09-11 13:48:45 +01002395 I915_WRITE(reg, temp);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002396
Chris Wilson5eddb702010-09-11 13:48:45 +01002397 reg = FDI_RX_CTL(pipe);
2398 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002399 temp &= ~FDI_LINK_TRAIN_NONE;
2400 temp |= FDI_LINK_TRAIN_PATTERN_2;
Chris Wilson5eddb702010-09-11 13:48:45 +01002401 I915_WRITE(reg, temp);
2402
2403 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002404 udelay(150);
2405
Chris Wilson5eddb702010-09-11 13:48:45 +01002406 reg = FDI_RX_IIR(pipe);
Adam Jacksone1a44742010-06-25 15:32:14 -04002407 for (tries = 0; tries < 5; tries++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002408 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002409 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2410
2411 if (temp & FDI_RX_SYMBOL_LOCK) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002412 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002413 DRM_DEBUG_KMS("FDI train 2 done.\n");
2414 break;
2415 }
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002416 }
Adam Jacksone1a44742010-06-25 15:32:14 -04002417 if (tries == 5)
Chris Wilson5eddb702010-09-11 13:48:45 +01002418 DRM_ERROR("FDI train 2 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002419
2420 DRM_DEBUG_KMS("FDI train done\n");
Jesse Barnes5c5313c2010-10-07 16:01:11 -07002421
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002422}
2423
Akshay Joshi0206e352011-08-16 15:34:10 -04002424static const int snb_b_fdi_train_param[] = {
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002425 FDI_LINK_TRAIN_400MV_0DB_SNB_B,
2426 FDI_LINK_TRAIN_400MV_6DB_SNB_B,
2427 FDI_LINK_TRAIN_600MV_3_5DB_SNB_B,
2428 FDI_LINK_TRAIN_800MV_0DB_SNB_B,
2429};
2430
2431/* The FDI link training functions for SNB/Cougarpoint. */
2432static void gen6_fdi_link_train(struct drm_crtc *crtc)
2433{
2434 struct drm_device *dev = crtc->dev;
2435 struct drm_i915_private *dev_priv = dev->dev_private;
2436 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2437 int pipe = intel_crtc->pipe;
Sean Paulfa37d392012-03-02 12:53:39 -05002438 u32 reg, temp, i, retry;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002439
Adam Jacksone1a44742010-06-25 15:32:14 -04002440 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
2441 for train result */
Chris Wilson5eddb702010-09-11 13:48:45 +01002442 reg = FDI_RX_IMR(pipe);
2443 temp = I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04002444 temp &= ~FDI_RX_SYMBOL_LOCK;
2445 temp &= ~FDI_RX_BIT_LOCK;
Chris Wilson5eddb702010-09-11 13:48:45 +01002446 I915_WRITE(reg, temp);
2447
2448 POSTING_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04002449 udelay(150);
2450
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002451 /* enable CPU FDI TX and PCH FDI RX */
Chris Wilson5eddb702010-09-11 13:48:45 +01002452 reg = FDI_TX_CTL(pipe);
2453 temp = I915_READ(reg);
Adam Jackson77ffb592010-04-12 11:38:44 -04002454 temp &= ~(7 << 19);
2455 temp |= (intel_crtc->fdi_lanes - 1) << 19;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002456 temp &= ~FDI_LINK_TRAIN_NONE;
2457 temp |= FDI_LINK_TRAIN_PATTERN_1;
2458 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2459 /* SNB-B */
2460 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
Chris Wilson5eddb702010-09-11 13:48:45 +01002461 I915_WRITE(reg, temp | FDI_TX_ENABLE);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002462
Chris Wilson5eddb702010-09-11 13:48:45 +01002463 reg = FDI_RX_CTL(pipe);
2464 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002465 if (HAS_PCH_CPT(dev)) {
2466 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2467 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
2468 } else {
2469 temp &= ~FDI_LINK_TRAIN_NONE;
2470 temp |= FDI_LINK_TRAIN_PATTERN_1;
2471 }
Chris Wilson5eddb702010-09-11 13:48:45 +01002472 I915_WRITE(reg, temp | FDI_RX_ENABLE);
2473
2474 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002475 udelay(150);
2476
Jesse Barnes291427f2011-07-29 12:42:37 -07002477 if (HAS_PCH_CPT(dev))
2478 cpt_phase_pointer_enable(dev, pipe);
2479
Akshay Joshi0206e352011-08-16 15:34:10 -04002480 for (i = 0; i < 4; i++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002481 reg = FDI_TX_CTL(pipe);
2482 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002483 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2484 temp |= snb_b_fdi_train_param[i];
Chris Wilson5eddb702010-09-11 13:48:45 +01002485 I915_WRITE(reg, temp);
2486
2487 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002488 udelay(500);
2489
Sean Paulfa37d392012-03-02 12:53:39 -05002490 for (retry = 0; retry < 5; retry++) {
2491 reg = FDI_RX_IIR(pipe);
2492 temp = I915_READ(reg);
2493 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2494 if (temp & FDI_RX_BIT_LOCK) {
2495 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
2496 DRM_DEBUG_KMS("FDI train 1 done.\n");
2497 break;
2498 }
2499 udelay(50);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002500 }
Sean Paulfa37d392012-03-02 12:53:39 -05002501 if (retry < 5)
2502 break;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002503 }
2504 if (i == 4)
Chris Wilson5eddb702010-09-11 13:48:45 +01002505 DRM_ERROR("FDI train 1 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002506
2507 /* Train 2 */
Chris Wilson5eddb702010-09-11 13:48:45 +01002508 reg = FDI_TX_CTL(pipe);
2509 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002510 temp &= ~FDI_LINK_TRAIN_NONE;
2511 temp |= FDI_LINK_TRAIN_PATTERN_2;
2512 if (IS_GEN6(dev)) {
2513 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2514 /* SNB-B */
2515 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
2516 }
Chris Wilson5eddb702010-09-11 13:48:45 +01002517 I915_WRITE(reg, temp);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002518
Chris Wilson5eddb702010-09-11 13:48:45 +01002519 reg = FDI_RX_CTL(pipe);
2520 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002521 if (HAS_PCH_CPT(dev)) {
2522 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2523 temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
2524 } else {
2525 temp &= ~FDI_LINK_TRAIN_NONE;
2526 temp |= FDI_LINK_TRAIN_PATTERN_2;
2527 }
Chris Wilson5eddb702010-09-11 13:48:45 +01002528 I915_WRITE(reg, temp);
2529
2530 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002531 udelay(150);
2532
Akshay Joshi0206e352011-08-16 15:34:10 -04002533 for (i = 0; i < 4; i++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002534 reg = FDI_TX_CTL(pipe);
2535 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002536 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2537 temp |= snb_b_fdi_train_param[i];
Chris Wilson5eddb702010-09-11 13:48:45 +01002538 I915_WRITE(reg, temp);
2539
2540 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002541 udelay(500);
2542
Sean Paulfa37d392012-03-02 12:53:39 -05002543 for (retry = 0; retry < 5; retry++) {
2544 reg = FDI_RX_IIR(pipe);
2545 temp = I915_READ(reg);
2546 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2547 if (temp & FDI_RX_SYMBOL_LOCK) {
2548 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
2549 DRM_DEBUG_KMS("FDI train 2 done.\n");
2550 break;
2551 }
2552 udelay(50);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002553 }
Sean Paulfa37d392012-03-02 12:53:39 -05002554 if (retry < 5)
2555 break;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002556 }
2557 if (i == 4)
Chris Wilson5eddb702010-09-11 13:48:45 +01002558 DRM_ERROR("FDI train 2 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002559
2560 DRM_DEBUG_KMS("FDI train done.\n");
2561}
2562
Jesse Barnes357555c2011-04-28 15:09:55 -07002563/* Manual link training for Ivy Bridge A0 parts */
2564static void ivb_manual_fdi_link_train(struct drm_crtc *crtc)
2565{
2566 struct drm_device *dev = crtc->dev;
2567 struct drm_i915_private *dev_priv = dev->dev_private;
2568 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2569 int pipe = intel_crtc->pipe;
2570 u32 reg, temp, i;
2571
2572 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
2573 for train result */
2574 reg = FDI_RX_IMR(pipe);
2575 temp = I915_READ(reg);
2576 temp &= ~FDI_RX_SYMBOL_LOCK;
2577 temp &= ~FDI_RX_BIT_LOCK;
2578 I915_WRITE(reg, temp);
2579
2580 POSTING_READ(reg);
2581 udelay(150);
2582
2583 /* enable CPU FDI TX and PCH FDI RX */
2584 reg = FDI_TX_CTL(pipe);
2585 temp = I915_READ(reg);
2586 temp &= ~(7 << 19);
2587 temp |= (intel_crtc->fdi_lanes - 1) << 19;
2588 temp &= ~(FDI_LINK_TRAIN_AUTO | FDI_LINK_TRAIN_NONE_IVB);
2589 temp |= FDI_LINK_TRAIN_PATTERN_1_IVB;
2590 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2591 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
Jesse Barnesc4f9c4c2011-10-10 14:28:52 -07002592 temp |= FDI_COMPOSITE_SYNC;
Jesse Barnes357555c2011-04-28 15:09:55 -07002593 I915_WRITE(reg, temp | FDI_TX_ENABLE);
2594
2595 reg = FDI_RX_CTL(pipe);
2596 temp = I915_READ(reg);
2597 temp &= ~FDI_LINK_TRAIN_AUTO;
2598 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2599 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
Jesse Barnesc4f9c4c2011-10-10 14:28:52 -07002600 temp |= FDI_COMPOSITE_SYNC;
Jesse Barnes357555c2011-04-28 15:09:55 -07002601 I915_WRITE(reg, temp | FDI_RX_ENABLE);
2602
2603 POSTING_READ(reg);
2604 udelay(150);
2605
Jesse Barnes291427f2011-07-29 12:42:37 -07002606 if (HAS_PCH_CPT(dev))
2607 cpt_phase_pointer_enable(dev, pipe);
2608
Akshay Joshi0206e352011-08-16 15:34:10 -04002609 for (i = 0; i < 4; i++) {
Jesse Barnes357555c2011-04-28 15:09:55 -07002610 reg = FDI_TX_CTL(pipe);
2611 temp = I915_READ(reg);
2612 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2613 temp |= snb_b_fdi_train_param[i];
2614 I915_WRITE(reg, temp);
2615
2616 POSTING_READ(reg);
2617 udelay(500);
2618
2619 reg = FDI_RX_IIR(pipe);
2620 temp = I915_READ(reg);
2621 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2622
2623 if (temp & FDI_RX_BIT_LOCK ||
2624 (I915_READ(reg) & FDI_RX_BIT_LOCK)) {
2625 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
2626 DRM_DEBUG_KMS("FDI train 1 done.\n");
2627 break;
2628 }
2629 }
2630 if (i == 4)
2631 DRM_ERROR("FDI train 1 fail!\n");
2632
2633 /* Train 2 */
2634 reg = FDI_TX_CTL(pipe);
2635 temp = I915_READ(reg);
2636 temp &= ~FDI_LINK_TRAIN_NONE_IVB;
2637 temp |= FDI_LINK_TRAIN_PATTERN_2_IVB;
2638 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2639 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
2640 I915_WRITE(reg, temp);
2641
2642 reg = FDI_RX_CTL(pipe);
2643 temp = I915_READ(reg);
2644 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2645 temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
2646 I915_WRITE(reg, temp);
2647
2648 POSTING_READ(reg);
2649 udelay(150);
2650
Akshay Joshi0206e352011-08-16 15:34:10 -04002651 for (i = 0; i < 4; i++) {
Jesse Barnes357555c2011-04-28 15:09:55 -07002652 reg = FDI_TX_CTL(pipe);
2653 temp = I915_READ(reg);
2654 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2655 temp |= snb_b_fdi_train_param[i];
2656 I915_WRITE(reg, temp);
2657
2658 POSTING_READ(reg);
2659 udelay(500);
2660
2661 reg = FDI_RX_IIR(pipe);
2662 temp = I915_READ(reg);
2663 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2664
2665 if (temp & FDI_RX_SYMBOL_LOCK) {
2666 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
2667 DRM_DEBUG_KMS("FDI train 2 done.\n");
2668 break;
2669 }
2670 }
2671 if (i == 4)
2672 DRM_ERROR("FDI train 2 fail!\n");
2673
2674 DRM_DEBUG_KMS("FDI train done.\n");
2675}
2676
Daniel Vetter88cefb62012-08-12 19:27:14 +02002677static void ironlake_fdi_pll_enable(struct intel_crtc *intel_crtc)
Jesse Barnes0e23b992010-09-10 11:10:00 -07002678{
Daniel Vetter88cefb62012-08-12 19:27:14 +02002679 struct drm_device *dev = intel_crtc->base.dev;
Jesse Barnes0e23b992010-09-10 11:10:00 -07002680 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes0e23b992010-09-10 11:10:00 -07002681 int pipe = intel_crtc->pipe;
Chris Wilson5eddb702010-09-11 13:48:45 +01002682 u32 reg, temp;
Jesse Barnes0e23b992010-09-10 11:10:00 -07002683
Jesse Barnesc64e3112010-09-10 11:27:03 -07002684 /* Write the TU size bits so error detection works */
Chris Wilson5eddb702010-09-11 13:48:45 +01002685 I915_WRITE(FDI_RX_TUSIZE1(pipe),
2686 I915_READ(PIPE_DATA_M1(pipe)) & TU_SIZE_MASK);
Jesse Barnesc64e3112010-09-10 11:27:03 -07002687
Jesse Barnes0e23b992010-09-10 11:10:00 -07002688 /* enable PCH FDI RX PLL, wait warmup plus DMI latency */
Chris Wilson5eddb702010-09-11 13:48:45 +01002689 reg = FDI_RX_CTL(pipe);
2690 temp = I915_READ(reg);
2691 temp &= ~((0x7 << 19) | (0x7 << 16));
Jesse Barnes0e23b992010-09-10 11:10:00 -07002692 temp |= (intel_crtc->fdi_lanes - 1) << 19;
Chris Wilson5eddb702010-09-11 13:48:45 +01002693 temp |= (I915_READ(PIPECONF(pipe)) & PIPE_BPC_MASK) << 11;
2694 I915_WRITE(reg, temp | FDI_RX_PLL_ENABLE);
2695
2696 POSTING_READ(reg);
Jesse Barnes0e23b992010-09-10 11:10:00 -07002697 udelay(200);
2698
2699 /* Switch from Rawclk to PCDclk */
Chris Wilson5eddb702010-09-11 13:48:45 +01002700 temp = I915_READ(reg);
2701 I915_WRITE(reg, temp | FDI_PCDCLK);
2702
2703 POSTING_READ(reg);
Jesse Barnes0e23b992010-09-10 11:10:00 -07002704 udelay(200);
2705
Eugeni Dodonovbf507ef2012-05-09 15:37:18 -03002706 /* On Haswell, the PLL configuration for ports and pipes is handled
2707 * separately, as part of DDI setup */
2708 if (!IS_HASWELL(dev)) {
2709 /* Enable CPU FDI TX PLL, always on for Ironlake */
2710 reg = FDI_TX_CTL(pipe);
2711 temp = I915_READ(reg);
2712 if ((temp & FDI_TX_PLL_ENABLE) == 0) {
2713 I915_WRITE(reg, temp | FDI_TX_PLL_ENABLE);
Chris Wilson5eddb702010-09-11 13:48:45 +01002714
Eugeni Dodonovbf507ef2012-05-09 15:37:18 -03002715 POSTING_READ(reg);
2716 udelay(100);
2717 }
Jesse Barnes0e23b992010-09-10 11:10:00 -07002718 }
2719}
2720
Daniel Vetter88cefb62012-08-12 19:27:14 +02002721static void ironlake_fdi_pll_disable(struct intel_crtc *intel_crtc)
2722{
2723 struct drm_device *dev = intel_crtc->base.dev;
2724 struct drm_i915_private *dev_priv = dev->dev_private;
2725 int pipe = intel_crtc->pipe;
2726 u32 reg, temp;
2727
2728 /* Switch from PCDclk to Rawclk */
2729 reg = FDI_RX_CTL(pipe);
2730 temp = I915_READ(reg);
2731 I915_WRITE(reg, temp & ~FDI_PCDCLK);
2732
2733 /* Disable CPU FDI TX PLL */
2734 reg = FDI_TX_CTL(pipe);
2735 temp = I915_READ(reg);
2736 I915_WRITE(reg, temp & ~FDI_TX_PLL_ENABLE);
2737
2738 POSTING_READ(reg);
2739 udelay(100);
2740
2741 reg = FDI_RX_CTL(pipe);
2742 temp = I915_READ(reg);
2743 I915_WRITE(reg, temp & ~FDI_RX_PLL_ENABLE);
2744
2745 /* Wait for the clocks to turn off. */
2746 POSTING_READ(reg);
2747 udelay(100);
2748}
2749
Jesse Barnes291427f2011-07-29 12:42:37 -07002750static void cpt_phase_pointer_disable(struct drm_device *dev, int pipe)
2751{
2752 struct drm_i915_private *dev_priv = dev->dev_private;
2753 u32 flags = I915_READ(SOUTH_CHICKEN1);
2754
2755 flags &= ~(FDI_PHASE_SYNC_EN(pipe));
2756 I915_WRITE(SOUTH_CHICKEN1, flags); /* once to disable... */
2757 flags &= ~(FDI_PHASE_SYNC_OVR(pipe));
2758 I915_WRITE(SOUTH_CHICKEN1, flags); /* then again to lock */
2759 POSTING_READ(SOUTH_CHICKEN1);
2760}
Jesse Barnes0fc932b2011-01-04 15:09:37 -08002761static void ironlake_fdi_disable(struct drm_crtc *crtc)
2762{
2763 struct drm_device *dev = crtc->dev;
2764 struct drm_i915_private *dev_priv = dev->dev_private;
2765 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2766 int pipe = intel_crtc->pipe;
2767 u32 reg, temp;
2768
2769 /* disable CPU FDI tx and PCH FDI rx */
2770 reg = FDI_TX_CTL(pipe);
2771 temp = I915_READ(reg);
2772 I915_WRITE(reg, temp & ~FDI_TX_ENABLE);
2773 POSTING_READ(reg);
2774
2775 reg = FDI_RX_CTL(pipe);
2776 temp = I915_READ(reg);
2777 temp &= ~(0x7 << 16);
2778 temp |= (I915_READ(PIPECONF(pipe)) & PIPE_BPC_MASK) << 11;
2779 I915_WRITE(reg, temp & ~FDI_RX_ENABLE);
2780
2781 POSTING_READ(reg);
2782 udelay(100);
2783
2784 /* Ironlake workaround, disable clock pointer after downing FDI */
Jesse Barnes6f06ce12011-01-04 15:09:38 -08002785 if (HAS_PCH_IBX(dev)) {
2786 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR);
Jesse Barnes0fc932b2011-01-04 15:09:37 -08002787 I915_WRITE(FDI_RX_CHICKEN(pipe),
2788 I915_READ(FDI_RX_CHICKEN(pipe) &
Jesse Barnes6f06ce12011-01-04 15:09:38 -08002789 ~FDI_RX_PHASE_SYNC_POINTER_EN));
Jesse Barnes291427f2011-07-29 12:42:37 -07002790 } else if (HAS_PCH_CPT(dev)) {
2791 cpt_phase_pointer_disable(dev, pipe);
Jesse Barnes6f06ce12011-01-04 15:09:38 -08002792 }
Jesse Barnes0fc932b2011-01-04 15:09:37 -08002793
2794 /* still set train pattern 1 */
2795 reg = FDI_TX_CTL(pipe);
2796 temp = I915_READ(reg);
2797 temp &= ~FDI_LINK_TRAIN_NONE;
2798 temp |= FDI_LINK_TRAIN_PATTERN_1;
2799 I915_WRITE(reg, temp);
2800
2801 reg = FDI_RX_CTL(pipe);
2802 temp = I915_READ(reg);
2803 if (HAS_PCH_CPT(dev)) {
2804 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2805 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
2806 } else {
2807 temp &= ~FDI_LINK_TRAIN_NONE;
2808 temp |= FDI_LINK_TRAIN_PATTERN_1;
2809 }
2810 /* BPC in FDI rx is consistent with that in PIPECONF */
2811 temp &= ~(0x07 << 16);
2812 temp |= (I915_READ(PIPECONF(pipe)) & PIPE_BPC_MASK) << 11;
2813 I915_WRITE(reg, temp);
2814
2815 POSTING_READ(reg);
2816 udelay(100);
2817}
2818
Chris Wilson5bb61642012-09-27 21:25:58 +01002819static bool intel_crtc_has_pending_flip(struct drm_crtc *crtc)
2820{
2821 struct drm_device *dev = crtc->dev;
2822 struct drm_i915_private *dev_priv = dev->dev_private;
2823 unsigned long flags;
2824 bool pending;
2825
2826 if (atomic_read(&dev_priv->mm.wedged))
2827 return false;
2828
2829 spin_lock_irqsave(&dev->event_lock, flags);
2830 pending = to_intel_crtc(crtc)->unpin_work != NULL;
2831 spin_unlock_irqrestore(&dev->event_lock, flags);
2832
2833 return pending;
2834}
2835
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01002836static void intel_crtc_wait_for_pending_flips(struct drm_crtc *crtc)
2837{
Chris Wilson0f911282012-04-17 10:05:38 +01002838 struct drm_device *dev = crtc->dev;
Chris Wilson5bb61642012-09-27 21:25:58 +01002839 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01002840
2841 if (crtc->fb == NULL)
2842 return;
2843
Chris Wilson5bb61642012-09-27 21:25:58 +01002844 wait_event(dev_priv->pending_flip_queue,
2845 !intel_crtc_has_pending_flip(crtc));
2846
Chris Wilson0f911282012-04-17 10:05:38 +01002847 mutex_lock(&dev->struct_mutex);
2848 intel_finish_fb(crtc->fb);
2849 mutex_unlock(&dev->struct_mutex);
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01002850}
2851
Jesse Barnes040484a2011-01-03 12:14:26 -08002852static bool intel_crtc_driving_pch(struct drm_crtc *crtc)
2853{
2854 struct drm_device *dev = crtc->dev;
Paulo Zanoni228d3e32012-08-10 10:05:10 -03002855 struct intel_encoder *intel_encoder;
Jesse Barnes040484a2011-01-03 12:14:26 -08002856
2857 /*
2858 * If there's a non-PCH eDP on this crtc, it must be DP_A, and that
2859 * must be driven by its own crtc; no sharing is possible.
2860 */
Paulo Zanoni228d3e32012-08-10 10:05:10 -03002861 for_each_encoder_on_crtc(dev, crtc, intel_encoder) {
Jesse Barnes040484a2011-01-03 12:14:26 -08002862
Eugeni Dodonov6ee8bab2012-05-09 20:30:31 -03002863 /* On Haswell, LPT PCH handles the VGA connection via FDI, and Haswell
2864 * CPU handles all others */
2865 if (IS_HASWELL(dev)) {
2866 /* It is still unclear how this will work on PPT, so throw up a warning */
2867 WARN_ON(!HAS_PCH_LPT(dev));
2868
Paulo Zanoni228d3e32012-08-10 10:05:10 -03002869 if (intel_encoder->type == INTEL_OUTPUT_ANALOG) {
Eugeni Dodonov6ee8bab2012-05-09 20:30:31 -03002870 DRM_DEBUG_KMS("Haswell detected DAC encoder, assuming is PCH\n");
2871 return true;
2872 } else {
2873 DRM_DEBUG_KMS("Haswell detected encoder %d, assuming is CPU\n",
Paulo Zanoni228d3e32012-08-10 10:05:10 -03002874 intel_encoder->type);
Eugeni Dodonov6ee8bab2012-05-09 20:30:31 -03002875 return false;
2876 }
2877 }
2878
Paulo Zanoni228d3e32012-08-10 10:05:10 -03002879 switch (intel_encoder->type) {
Jesse Barnes040484a2011-01-03 12:14:26 -08002880 case INTEL_OUTPUT_EDP:
Paulo Zanoni228d3e32012-08-10 10:05:10 -03002881 if (!intel_encoder_is_pch_edp(&intel_encoder->base))
Jesse Barnes040484a2011-01-03 12:14:26 -08002882 return false;
2883 continue;
2884 }
2885 }
2886
2887 return true;
2888}
2889
Eugeni Dodonove615efe2012-05-09 15:37:26 -03002890/* Program iCLKIP clock to the desired frequency */
2891static void lpt_program_iclkip(struct drm_crtc *crtc)
2892{
2893 struct drm_device *dev = crtc->dev;
2894 struct drm_i915_private *dev_priv = dev->dev_private;
2895 u32 divsel, phaseinc, auxdiv, phasedir = 0;
2896 u32 temp;
2897
2898 /* It is necessary to ungate the pixclk gate prior to programming
2899 * the divisors, and gate it back when it is done.
2900 */
2901 I915_WRITE(PIXCLK_GATE, PIXCLK_GATE_GATE);
2902
2903 /* Disable SSCCTL */
2904 intel_sbi_write(dev_priv, SBI_SSCCTL6,
2905 intel_sbi_read(dev_priv, SBI_SSCCTL6) |
2906 SBI_SSCCTL_DISABLE);
2907
2908 /* 20MHz is a corner case which is out of range for the 7-bit divisor */
2909 if (crtc->mode.clock == 20000) {
2910 auxdiv = 1;
2911 divsel = 0x41;
2912 phaseinc = 0x20;
2913 } else {
2914 /* The iCLK virtual clock root frequency is in MHz,
2915 * but the crtc->mode.clock in in KHz. To get the divisors,
2916 * it is necessary to divide one by another, so we
2917 * convert the virtual clock precision to KHz here for higher
2918 * precision.
2919 */
2920 u32 iclk_virtual_root_freq = 172800 * 1000;
2921 u32 iclk_pi_range = 64;
2922 u32 desired_divisor, msb_divisor_value, pi_value;
2923
2924 desired_divisor = (iclk_virtual_root_freq / crtc->mode.clock);
2925 msb_divisor_value = desired_divisor / iclk_pi_range;
2926 pi_value = desired_divisor % iclk_pi_range;
2927
2928 auxdiv = 0;
2929 divsel = msb_divisor_value - 2;
2930 phaseinc = pi_value;
2931 }
2932
2933 /* This should not happen with any sane values */
2934 WARN_ON(SBI_SSCDIVINTPHASE_DIVSEL(divsel) &
2935 ~SBI_SSCDIVINTPHASE_DIVSEL_MASK);
2936 WARN_ON(SBI_SSCDIVINTPHASE_DIR(phasedir) &
2937 ~SBI_SSCDIVINTPHASE_INCVAL_MASK);
2938
2939 DRM_DEBUG_KMS("iCLKIP clock: found settings for %dKHz refresh rate: auxdiv=%x, divsel=%x, phasedir=%x, phaseinc=%x\n",
2940 crtc->mode.clock,
2941 auxdiv,
2942 divsel,
2943 phasedir,
2944 phaseinc);
2945
2946 /* Program SSCDIVINTPHASE6 */
2947 temp = intel_sbi_read(dev_priv, SBI_SSCDIVINTPHASE6);
2948 temp &= ~SBI_SSCDIVINTPHASE_DIVSEL_MASK;
2949 temp |= SBI_SSCDIVINTPHASE_DIVSEL(divsel);
2950 temp &= ~SBI_SSCDIVINTPHASE_INCVAL_MASK;
2951 temp |= SBI_SSCDIVINTPHASE_INCVAL(phaseinc);
2952 temp |= SBI_SSCDIVINTPHASE_DIR(phasedir);
2953 temp |= SBI_SSCDIVINTPHASE_PROPAGATE;
2954
2955 intel_sbi_write(dev_priv,
2956 SBI_SSCDIVINTPHASE6,
2957 temp);
2958
2959 /* Program SSCAUXDIV */
2960 temp = intel_sbi_read(dev_priv, SBI_SSCAUXDIV6);
2961 temp &= ~SBI_SSCAUXDIV_FINALDIV2SEL(1);
2962 temp |= SBI_SSCAUXDIV_FINALDIV2SEL(auxdiv);
2963 intel_sbi_write(dev_priv,
2964 SBI_SSCAUXDIV6,
2965 temp);
2966
2967
2968 /* Enable modulator and associated divider */
2969 temp = intel_sbi_read(dev_priv, SBI_SSCCTL6);
2970 temp &= ~SBI_SSCCTL_DISABLE;
2971 intel_sbi_write(dev_priv,
2972 SBI_SSCCTL6,
2973 temp);
2974
2975 /* Wait for initialization time */
2976 udelay(24);
2977
2978 I915_WRITE(PIXCLK_GATE, PIXCLK_GATE_UNGATE);
2979}
2980
Jesse Barnesf67a5592011-01-05 10:31:48 -08002981/*
2982 * Enable PCH resources required for PCH ports:
2983 * - PCH PLLs
2984 * - FDI training & RX/TX
2985 * - update transcoder timings
2986 * - DP transcoding bits
2987 * - transcoder
2988 */
2989static void ironlake_pch_enable(struct drm_crtc *crtc)
Jesse Barnes79e53942008-11-07 14:24:08 -08002990{
2991 struct drm_device *dev = crtc->dev;
Zhenyu Wang2c072452009-06-05 15:38:42 +08002992 struct drm_i915_private *dev_priv = dev->dev_private;
2993 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2994 int pipe = intel_crtc->pipe;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01002995 u32 reg, temp;
Jesse Barnes6be4a602010-09-10 10:26:01 -07002996
Chris Wilsone7e164d2012-05-11 09:21:25 +01002997 assert_transcoder_disabled(dev_priv, pipe);
2998
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002999 /* For PCH output, training FDI link */
Jesse Barnes674cf962011-04-28 14:27:04 -07003000 dev_priv->display.fdi_link_train(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003001
Chris Wilson6f13b7b2012-05-13 09:54:09 +01003002 intel_enable_pch_pll(intel_crtc);
3003
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003004 if (HAS_PCH_LPT(dev)) {
3005 DRM_DEBUG_KMS("LPT detected: programming iCLKIP\n");
3006 lpt_program_iclkip(crtc);
3007 } else if (HAS_PCH_CPT(dev)) {
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003008 u32 sel;
Jesse Barnes4b645f12011-10-12 09:51:31 -07003009
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003010 temp = I915_READ(PCH_DPLL_SEL);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003011 switch (pipe) {
3012 default:
3013 case 0:
3014 temp |= TRANSA_DPLL_ENABLE;
3015 sel = TRANSA_DPLLB_SEL;
3016 break;
3017 case 1:
3018 temp |= TRANSB_DPLL_ENABLE;
3019 sel = TRANSB_DPLLB_SEL;
3020 break;
3021 case 2:
3022 temp |= TRANSC_DPLL_ENABLE;
3023 sel = TRANSC_DPLLB_SEL;
3024 break;
Jesse Barnesd64311a2011-10-12 15:01:33 -07003025 }
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003026 if (intel_crtc->pch_pll->pll_reg == _PCH_DPLL_B)
3027 temp |= sel;
3028 else
3029 temp &= ~sel;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003030 I915_WRITE(PCH_DPLL_SEL, temp);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003031 }
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003032
Jesse Barnesd9b6cb52011-01-04 15:09:35 -08003033 /* set transcoder timing, panel must allow it */
3034 assert_panel_unlocked(dev_priv, pipe);
Chris Wilson5eddb702010-09-11 13:48:45 +01003035 I915_WRITE(TRANS_HTOTAL(pipe), I915_READ(HTOTAL(pipe)));
3036 I915_WRITE(TRANS_HBLANK(pipe), I915_READ(HBLANK(pipe)));
3037 I915_WRITE(TRANS_HSYNC(pipe), I915_READ(HSYNC(pipe)));
3038
3039 I915_WRITE(TRANS_VTOTAL(pipe), I915_READ(VTOTAL(pipe)));
3040 I915_WRITE(TRANS_VBLANK(pipe), I915_READ(VBLANK(pipe)));
3041 I915_WRITE(TRANS_VSYNC(pipe), I915_READ(VSYNC(pipe)));
Daniel Vetter0529a0d2012-01-28 14:49:24 +01003042 I915_WRITE(TRANS_VSYNCSHIFT(pipe), I915_READ(VSYNCSHIFT(pipe)));
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003043
Eugeni Dodonovf57e1e32012-05-09 15:37:14 -03003044 if (!IS_HASWELL(dev))
3045 intel_fdi_normal_train(crtc);
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08003046
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003047 /* For PCH DP, enable TRANS_DP_CTL */
3048 if (HAS_PCH_CPT(dev) &&
Keith Packard417e8222011-11-01 19:54:11 -07003049 (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT) ||
3050 intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP))) {
Jesse Barnes9325c9f2011-06-24 12:19:21 -07003051 u32 bpc = (I915_READ(PIPECONF(pipe)) & PIPE_BPC_MASK) >> 5;
Chris Wilson5eddb702010-09-11 13:48:45 +01003052 reg = TRANS_DP_CTL(pipe);
3053 temp = I915_READ(reg);
3054 temp &= ~(TRANS_DP_PORT_SEL_MASK |
Eric Anholt220cad32010-11-18 09:32:58 +08003055 TRANS_DP_SYNC_MASK |
3056 TRANS_DP_BPC_MASK);
Chris Wilson5eddb702010-09-11 13:48:45 +01003057 temp |= (TRANS_DP_OUTPUT_ENABLE |
3058 TRANS_DP_ENH_FRAMING);
Jesse Barnes9325c9f2011-06-24 12:19:21 -07003059 temp |= bpc << 9; /* same format but at 11:9 */
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003060
3061 if (crtc->mode.flags & DRM_MODE_FLAG_PHSYNC)
Chris Wilson5eddb702010-09-11 13:48:45 +01003062 temp |= TRANS_DP_HSYNC_ACTIVE_HIGH;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003063 if (crtc->mode.flags & DRM_MODE_FLAG_PVSYNC)
Chris Wilson5eddb702010-09-11 13:48:45 +01003064 temp |= TRANS_DP_VSYNC_ACTIVE_HIGH;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003065
3066 switch (intel_trans_dp_port_sel(crtc)) {
3067 case PCH_DP_B:
Chris Wilson5eddb702010-09-11 13:48:45 +01003068 temp |= TRANS_DP_PORT_SEL_B;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003069 break;
3070 case PCH_DP_C:
Chris Wilson5eddb702010-09-11 13:48:45 +01003071 temp |= TRANS_DP_PORT_SEL_C;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003072 break;
3073 case PCH_DP_D:
Chris Wilson5eddb702010-09-11 13:48:45 +01003074 temp |= TRANS_DP_PORT_SEL_D;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003075 break;
3076 default:
3077 DRM_DEBUG_KMS("Wrong PCH DP port return. Guess port B\n");
Chris Wilson5eddb702010-09-11 13:48:45 +01003078 temp |= TRANS_DP_PORT_SEL_B;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003079 break;
3080 }
3081
Chris Wilson5eddb702010-09-11 13:48:45 +01003082 I915_WRITE(reg, temp);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003083 }
3084
Jesse Barnes040484a2011-01-03 12:14:26 -08003085 intel_enable_transcoder(dev_priv, pipe);
Jesse Barnesf67a5592011-01-05 10:31:48 -08003086}
3087
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003088static void intel_put_pch_pll(struct intel_crtc *intel_crtc)
3089{
3090 struct intel_pch_pll *pll = intel_crtc->pch_pll;
3091
3092 if (pll == NULL)
3093 return;
3094
3095 if (pll->refcount == 0) {
3096 WARN(1, "bad PCH PLL refcount\n");
3097 return;
3098 }
3099
3100 --pll->refcount;
3101 intel_crtc->pch_pll = NULL;
3102}
3103
3104static struct intel_pch_pll *intel_get_pch_pll(struct intel_crtc *intel_crtc, u32 dpll, u32 fp)
3105{
3106 struct drm_i915_private *dev_priv = intel_crtc->base.dev->dev_private;
3107 struct intel_pch_pll *pll;
3108 int i;
3109
3110 pll = intel_crtc->pch_pll;
3111 if (pll) {
3112 DRM_DEBUG_KMS("CRTC:%d reusing existing PCH PLL %x\n",
3113 intel_crtc->base.base.id, pll->pll_reg);
3114 goto prepare;
3115 }
3116
Daniel Vetter98b6bd92012-05-20 20:00:25 +02003117 if (HAS_PCH_IBX(dev_priv->dev)) {
3118 /* Ironlake PCH has a fixed PLL->PCH pipe mapping. */
3119 i = intel_crtc->pipe;
3120 pll = &dev_priv->pch_plls[i];
3121
3122 DRM_DEBUG_KMS("CRTC:%d using pre-allocated PCH PLL %x\n",
3123 intel_crtc->base.base.id, pll->pll_reg);
3124
3125 goto found;
3126 }
3127
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003128 for (i = 0; i < dev_priv->num_pch_pll; i++) {
3129 pll = &dev_priv->pch_plls[i];
3130
3131 /* Only want to check enabled timings first */
3132 if (pll->refcount == 0)
3133 continue;
3134
3135 if (dpll == (I915_READ(pll->pll_reg) & 0x7fffffff) &&
3136 fp == I915_READ(pll->fp0_reg)) {
3137 DRM_DEBUG_KMS("CRTC:%d sharing existing PCH PLL %x (refcount %d, ative %d)\n",
3138 intel_crtc->base.base.id,
3139 pll->pll_reg, pll->refcount, pll->active);
3140
3141 goto found;
3142 }
3143 }
3144
3145 /* Ok no matching timings, maybe there's a free one? */
3146 for (i = 0; i < dev_priv->num_pch_pll; i++) {
3147 pll = &dev_priv->pch_plls[i];
3148 if (pll->refcount == 0) {
3149 DRM_DEBUG_KMS("CRTC:%d allocated PCH PLL %x\n",
3150 intel_crtc->base.base.id, pll->pll_reg);
3151 goto found;
3152 }
3153 }
3154
3155 return NULL;
3156
3157found:
3158 intel_crtc->pch_pll = pll;
3159 pll->refcount++;
3160 DRM_DEBUG_DRIVER("using pll %d for pipe %d\n", i, intel_crtc->pipe);
3161prepare: /* separate function? */
3162 DRM_DEBUG_DRIVER("switching PLL %x off\n", pll->pll_reg);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003163
Chris Wilsone04c7352012-05-02 20:43:56 +01003164 /* Wait for the clocks to stabilize before rewriting the regs */
3165 I915_WRITE(pll->pll_reg, dpll & ~DPLL_VCO_ENABLE);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003166 POSTING_READ(pll->pll_reg);
3167 udelay(150);
Chris Wilsone04c7352012-05-02 20:43:56 +01003168
3169 I915_WRITE(pll->fp0_reg, fp);
3170 I915_WRITE(pll->pll_reg, dpll & ~DPLL_VCO_ENABLE);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003171 pll->on = false;
3172 return pll;
3173}
3174
Jesse Barnesd4270e52011-10-11 10:43:02 -07003175void intel_cpt_verify_modeset(struct drm_device *dev, int pipe)
3176{
3177 struct drm_i915_private *dev_priv = dev->dev_private;
3178 int dslreg = PIPEDSL(pipe), tc2reg = TRANS_CHICKEN2(pipe);
3179 u32 temp;
3180
3181 temp = I915_READ(dslreg);
3182 udelay(500);
3183 if (wait_for(I915_READ(dslreg) != temp, 5)) {
3184 /* Without this, mode sets may fail silently on FDI */
3185 I915_WRITE(tc2reg, TRANS_AUTOTRAIN_GEN_STALL_DIS);
3186 udelay(250);
3187 I915_WRITE(tc2reg, 0);
3188 if (wait_for(I915_READ(dslreg) != temp, 5))
3189 DRM_ERROR("mode set failed: pipe %d stuck\n", pipe);
3190 }
3191}
3192
Jesse Barnesf67a5592011-01-05 10:31:48 -08003193static void ironlake_crtc_enable(struct drm_crtc *crtc)
3194{
3195 struct drm_device *dev = crtc->dev;
3196 struct drm_i915_private *dev_priv = dev->dev_private;
3197 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02003198 struct intel_encoder *encoder;
Jesse Barnesf67a5592011-01-05 10:31:48 -08003199 int pipe = intel_crtc->pipe;
3200 int plane = intel_crtc->plane;
3201 u32 temp;
3202 bool is_pch_port;
3203
Daniel Vetter08a48462012-07-02 11:43:47 +02003204 WARN_ON(!crtc->enabled);
3205
Jesse Barnesf67a5592011-01-05 10:31:48 -08003206 if (intel_crtc->active)
3207 return;
3208
3209 intel_crtc->active = true;
3210 intel_update_watermarks(dev);
3211
3212 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
3213 temp = I915_READ(PCH_LVDS);
3214 if ((temp & LVDS_PORT_EN) == 0)
3215 I915_WRITE(PCH_LVDS, temp | LVDS_PORT_EN);
3216 }
3217
3218 is_pch_port = intel_crtc_driving_pch(crtc);
3219
Daniel Vetter46b6f812012-09-06 22:08:33 +02003220 if (is_pch_port) {
Daniel Vetter88cefb62012-08-12 19:27:14 +02003221 ironlake_fdi_pll_enable(intel_crtc);
Daniel Vetter46b6f812012-09-06 22:08:33 +02003222 } else {
3223 assert_fdi_tx_disabled(dev_priv, pipe);
3224 assert_fdi_rx_disabled(dev_priv, pipe);
3225 }
Jesse Barnesf67a5592011-01-05 10:31:48 -08003226
Daniel Vetterbf49ec82012-09-06 22:15:40 +02003227 for_each_encoder_on_crtc(dev, crtc, encoder)
3228 if (encoder->pre_enable)
3229 encoder->pre_enable(encoder);
3230
Paulo Zanonifc914632012-10-05 12:05:54 -03003231 if (IS_HASWELL(dev))
3232 intel_ddi_enable_pipe_clock(intel_crtc);
3233
Jesse Barnesf67a5592011-01-05 10:31:48 -08003234 /* Enable panel fitting for LVDS */
3235 if (dev_priv->pch_pf_size &&
3236 (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) || HAS_eDP)) {
3237 /* Force use of hard-coded filter coefficients
3238 * as some pre-programmed values are broken,
3239 * e.g. x201.
3240 */
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08003241 I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3);
3242 I915_WRITE(PF_WIN_POS(pipe), dev_priv->pch_pf_pos);
3243 I915_WRITE(PF_WIN_SZ(pipe), dev_priv->pch_pf_size);
Jesse Barnesf67a5592011-01-05 10:31:48 -08003244 }
3245
Jesse Barnes9c54c0d2011-06-15 23:32:33 +02003246 /*
3247 * On ILK+ LUT must be loaded before the pipe is running but with
3248 * clocks enabled
3249 */
3250 intel_crtc_load_lut(crtc);
3251
Paulo Zanonidae84792012-10-15 15:51:30 -03003252 if (IS_HASWELL(dev)) {
3253 intel_ddi_set_pipe_settings(crtc);
Paulo Zanoni8d9ddbc2012-10-05 12:05:53 -03003254 intel_ddi_enable_pipe_func(crtc);
Paulo Zanonidae84792012-10-15 15:51:30 -03003255 }
Paulo Zanoni8d9ddbc2012-10-05 12:05:53 -03003256
Jesse Barnesf67a5592011-01-05 10:31:48 -08003257 intel_enable_pipe(dev_priv, pipe, is_pch_port);
3258 intel_enable_plane(dev_priv, plane, pipe);
3259
3260 if (is_pch_port)
3261 ironlake_pch_enable(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003262
Ben Widawskyd1ebd8162011-04-25 20:11:50 +01003263 mutex_lock(&dev->struct_mutex);
Chris Wilsonbed4a672010-09-11 10:47:47 +01003264 intel_update_fbc(dev);
Ben Widawskyd1ebd8162011-04-25 20:11:50 +01003265 mutex_unlock(&dev->struct_mutex);
3266
Chris Wilson6b383a72010-09-13 13:54:26 +01003267 intel_crtc_update_cursor(crtc, true);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02003268
Daniel Vetterfa5c73b2012-07-01 23:24:36 +02003269 for_each_encoder_on_crtc(dev, crtc, encoder)
3270 encoder->enable(encoder);
Daniel Vetter61b77dd2012-07-02 00:16:19 +02003271
3272 if (HAS_PCH_CPT(dev))
3273 intel_cpt_verify_modeset(dev, intel_crtc->pipe);
Daniel Vetter6ce94102012-10-04 19:20:03 +02003274
3275 /*
3276 * There seems to be a race in PCH platform hw (at least on some
3277 * outputs) where an enabled pipe still completes any pageflip right
3278 * away (as if the pipe is off) instead of waiting for vblank. As soon
3279 * as the first vblank happend, everything works as expected. Hence just
3280 * wait for one vblank before returning to avoid strange things
3281 * happening.
3282 */
3283 intel_wait_for_vblank(dev, intel_crtc->pipe);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003284}
3285
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003286static void haswell_crtc_enable(struct drm_crtc *crtc)
3287{
3288 struct drm_device *dev = crtc->dev;
3289 struct drm_i915_private *dev_priv = dev->dev_private;
3290 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3291 struct intel_encoder *encoder;
3292 int pipe = intel_crtc->pipe;
3293 int plane = intel_crtc->plane;
3294 u32 temp;
3295 bool is_pch_port;
3296
3297 WARN_ON(!crtc->enabled);
3298
3299 if (intel_crtc->active)
3300 return;
3301
3302 intel_crtc->active = true;
3303 intel_update_watermarks(dev);
3304
3305 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
3306 temp = I915_READ(PCH_LVDS);
3307 if ((temp & LVDS_PORT_EN) == 0)
3308 I915_WRITE(PCH_LVDS, temp | LVDS_PORT_EN);
3309 }
3310
3311 is_pch_port = intel_crtc_driving_pch(crtc);
3312
3313 if (is_pch_port) {
3314 ironlake_fdi_pll_enable(intel_crtc);
3315 } else {
3316 assert_fdi_tx_disabled(dev_priv, pipe);
3317 assert_fdi_rx_disabled(dev_priv, pipe);
3318 }
3319
3320 for_each_encoder_on_crtc(dev, crtc, encoder)
3321 if (encoder->pre_enable)
3322 encoder->pre_enable(encoder);
3323
3324 if (IS_HASWELL(dev))
3325 intel_ddi_enable_pipe_clock(intel_crtc);
3326
3327 /* Enable panel fitting for LVDS */
3328 if (dev_priv->pch_pf_size &&
3329 (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) || HAS_eDP)) {
3330 /* Force use of hard-coded filter coefficients
3331 * as some pre-programmed values are broken,
3332 * e.g. x201.
3333 */
3334 I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3);
3335 I915_WRITE(PF_WIN_POS(pipe), dev_priv->pch_pf_pos);
3336 I915_WRITE(PF_WIN_SZ(pipe), dev_priv->pch_pf_size);
3337 }
3338
3339 /*
3340 * On ILK+ LUT must be loaded before the pipe is running but with
3341 * clocks enabled
3342 */
3343 intel_crtc_load_lut(crtc);
3344
3345 if (IS_HASWELL(dev)) {
3346 intel_ddi_set_pipe_settings(crtc);
3347 intel_ddi_enable_pipe_func(crtc);
3348 }
3349
3350 intel_enable_pipe(dev_priv, pipe, is_pch_port);
3351 intel_enable_plane(dev_priv, plane, pipe);
3352
3353 if (is_pch_port)
3354 ironlake_pch_enable(crtc);
3355
3356 mutex_lock(&dev->struct_mutex);
3357 intel_update_fbc(dev);
3358 mutex_unlock(&dev->struct_mutex);
3359
3360 intel_crtc_update_cursor(crtc, true);
3361
3362 for_each_encoder_on_crtc(dev, crtc, encoder)
3363 encoder->enable(encoder);
3364
3365 if (HAS_PCH_CPT(dev))
3366 intel_cpt_verify_modeset(dev, intel_crtc->pipe);
3367
3368 /*
3369 * There seems to be a race in PCH platform hw (at least on some
3370 * outputs) where an enabled pipe still completes any pageflip right
3371 * away (as if the pipe is off) instead of waiting for vblank. As soon
3372 * as the first vblank happend, everything works as expected. Hence just
3373 * wait for one vblank before returning to avoid strange things
3374 * happening.
3375 */
3376 intel_wait_for_vblank(dev, intel_crtc->pipe);
3377}
3378
Jesse Barnes6be4a602010-09-10 10:26:01 -07003379static void ironlake_crtc_disable(struct drm_crtc *crtc)
3380{
3381 struct drm_device *dev = crtc->dev;
3382 struct drm_i915_private *dev_priv = dev->dev_private;
3383 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02003384 struct intel_encoder *encoder;
Jesse Barnes6be4a602010-09-10 10:26:01 -07003385 int pipe = intel_crtc->pipe;
3386 int plane = intel_crtc->plane;
Chris Wilson5eddb702010-09-11 13:48:45 +01003387 u32 reg, temp;
Jesse Barnes6be4a602010-09-10 10:26:01 -07003388
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02003389
Chris Wilsonf7abfe82010-09-13 14:19:16 +01003390 if (!intel_crtc->active)
3391 return;
3392
Daniel Vetterea9d7582012-07-10 10:42:52 +02003393 for_each_encoder_on_crtc(dev, crtc, encoder)
3394 encoder->disable(encoder);
3395
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01003396 intel_crtc_wait_for_pending_flips(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003397 drm_vblank_off(dev, pipe);
Chris Wilson6b383a72010-09-13 13:54:26 +01003398 intel_crtc_update_cursor(crtc, false);
Chris Wilson5eddb702010-09-11 13:48:45 +01003399
Jesse Barnesb24e7172011-01-04 15:09:30 -08003400 intel_disable_plane(dev_priv, plane, pipe);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003401
Chris Wilson973d04f2011-07-08 12:22:37 +01003402 if (dev_priv->cfb_plane == plane)
3403 intel_disable_fbc(dev);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003404
Jesse Barnesb24e7172011-01-04 15:09:30 -08003405 intel_disable_pipe(dev_priv, pipe);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003406
Paulo Zanoni8d9ddbc2012-10-05 12:05:53 -03003407 if (IS_HASWELL(dev))
3408 intel_ddi_disable_pipe_func(dev_priv, pipe);
3409
Jesse Barnes6be4a602010-09-10 10:26:01 -07003410 /* Disable PF */
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08003411 I915_WRITE(PF_CTL(pipe), 0);
3412 I915_WRITE(PF_WIN_SZ(pipe), 0);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003413
Paulo Zanonifc914632012-10-05 12:05:54 -03003414 if (IS_HASWELL(dev))
3415 intel_ddi_disable_pipe_clock(intel_crtc);
3416
Daniel Vetterbf49ec82012-09-06 22:15:40 +02003417 for_each_encoder_on_crtc(dev, crtc, encoder)
3418 if (encoder->post_disable)
3419 encoder->post_disable(encoder);
3420
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003421 ironlake_fdi_disable(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003422
Jesse Barnes040484a2011-01-03 12:14:26 -08003423 intel_disable_transcoder(dev_priv, pipe);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003424
Jesse Barnes6be4a602010-09-10 10:26:01 -07003425 if (HAS_PCH_CPT(dev)) {
3426 /* disable TRANS_DP_CTL */
Chris Wilson5eddb702010-09-11 13:48:45 +01003427 reg = TRANS_DP_CTL(pipe);
3428 temp = I915_READ(reg);
3429 temp &= ~(TRANS_DP_OUTPUT_ENABLE | TRANS_DP_PORT_SEL_MASK);
Eric Anholtcb3543c2011-02-02 12:08:07 -08003430 temp |= TRANS_DP_PORT_SEL_NONE;
Chris Wilson5eddb702010-09-11 13:48:45 +01003431 I915_WRITE(reg, temp);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003432
3433 /* disable DPLL_SEL */
3434 temp = I915_READ(PCH_DPLL_SEL);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08003435 switch (pipe) {
3436 case 0:
Jesse Barnesd64311a2011-10-12 15:01:33 -07003437 temp &= ~(TRANSA_DPLL_ENABLE | TRANSA_DPLLB_SEL);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08003438 break;
3439 case 1:
Jesse Barnes6be4a602010-09-10 10:26:01 -07003440 temp &= ~(TRANSB_DPLL_ENABLE | TRANSB_DPLLB_SEL);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08003441 break;
3442 case 2:
Jesse Barnes4b645f12011-10-12 09:51:31 -07003443 /* C shares PLL A or B */
Jesse Barnesd64311a2011-10-12 15:01:33 -07003444 temp &= ~(TRANSC_DPLL_ENABLE | TRANSC_DPLLB_SEL);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08003445 break;
3446 default:
3447 BUG(); /* wtf */
3448 }
Jesse Barnes6be4a602010-09-10 10:26:01 -07003449 I915_WRITE(PCH_DPLL_SEL, temp);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003450 }
3451
3452 /* disable PCH DPLL */
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003453 intel_disable_pch_pll(intel_crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003454
Daniel Vetter88cefb62012-08-12 19:27:14 +02003455 ironlake_fdi_pll_disable(intel_crtc);
Chris Wilson6b383a72010-09-13 13:54:26 +01003456
Chris Wilsonf7abfe82010-09-13 14:19:16 +01003457 intel_crtc->active = false;
Chris Wilson6b383a72010-09-13 13:54:26 +01003458 intel_update_watermarks(dev);
Ben Widawskyd1ebd8162011-04-25 20:11:50 +01003459
3460 mutex_lock(&dev->struct_mutex);
Chris Wilson6b383a72010-09-13 13:54:26 +01003461 intel_update_fbc(dev);
Ben Widawskyd1ebd8162011-04-25 20:11:50 +01003462 mutex_unlock(&dev->struct_mutex);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003463}
3464
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003465static void haswell_crtc_disable(struct drm_crtc *crtc)
3466{
3467 struct drm_device *dev = crtc->dev;
3468 struct drm_i915_private *dev_priv = dev->dev_private;
3469 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3470 struct intel_encoder *encoder;
3471 int pipe = intel_crtc->pipe;
3472 int plane = intel_crtc->plane;
3473 u32 reg, temp;
3474
3475
3476 if (!intel_crtc->active)
3477 return;
3478
3479 for_each_encoder_on_crtc(dev, crtc, encoder)
3480 encoder->disable(encoder);
3481
3482 intel_crtc_wait_for_pending_flips(crtc);
3483 drm_vblank_off(dev, pipe);
3484 intel_crtc_update_cursor(crtc, false);
3485
3486 intel_disable_plane(dev_priv, plane, pipe);
3487
3488 if (dev_priv->cfb_plane == plane)
3489 intel_disable_fbc(dev);
3490
3491 intel_disable_pipe(dev_priv, pipe);
3492
3493 if (IS_HASWELL(dev))
3494 intel_ddi_disable_pipe_func(dev_priv, pipe);
3495
3496 /* Disable PF */
3497 I915_WRITE(PF_CTL(pipe), 0);
3498 I915_WRITE(PF_WIN_SZ(pipe), 0);
3499
3500 if (IS_HASWELL(dev))
3501 intel_ddi_disable_pipe_clock(intel_crtc);
3502
3503 for_each_encoder_on_crtc(dev, crtc, encoder)
3504 if (encoder->post_disable)
3505 encoder->post_disable(encoder);
3506
3507 ironlake_fdi_disable(crtc);
3508
3509 intel_disable_transcoder(dev_priv, pipe);
3510
3511 if (HAS_PCH_CPT(dev)) {
3512 /* disable TRANS_DP_CTL */
3513 reg = TRANS_DP_CTL(pipe);
3514 temp = I915_READ(reg);
3515 temp &= ~(TRANS_DP_OUTPUT_ENABLE | TRANS_DP_PORT_SEL_MASK);
3516 temp |= TRANS_DP_PORT_SEL_NONE;
3517 I915_WRITE(reg, temp);
3518
3519 /* disable DPLL_SEL */
3520 temp = I915_READ(PCH_DPLL_SEL);
3521 switch (pipe) {
3522 case 0:
3523 temp &= ~(TRANSA_DPLL_ENABLE | TRANSA_DPLLB_SEL);
3524 break;
3525 case 1:
3526 temp &= ~(TRANSB_DPLL_ENABLE | TRANSB_DPLLB_SEL);
3527 break;
3528 case 2:
3529 /* C shares PLL A or B */
3530 temp &= ~(TRANSC_DPLL_ENABLE | TRANSC_DPLLB_SEL);
3531 break;
3532 default:
3533 BUG(); /* wtf */
3534 }
3535 I915_WRITE(PCH_DPLL_SEL, temp);
3536 }
3537
3538 /* disable PCH DPLL */
3539 intel_disable_pch_pll(intel_crtc);
3540
3541 ironlake_fdi_pll_disable(intel_crtc);
3542
3543 intel_crtc->active = false;
3544 intel_update_watermarks(dev);
3545
3546 mutex_lock(&dev->struct_mutex);
3547 intel_update_fbc(dev);
3548 mutex_unlock(&dev->struct_mutex);
3549}
3550
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003551static void ironlake_crtc_off(struct drm_crtc *crtc)
3552{
3553 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3554 intel_put_pch_pll(intel_crtc);
3555}
3556
Paulo Zanoni6441ab52012-10-05 12:05:58 -03003557static void haswell_crtc_off(struct drm_crtc *crtc)
3558{
3559 intel_ddi_put_crtc_pll(crtc);
3560}
3561
Daniel Vetter02e792f2009-09-15 22:57:34 +02003562static void intel_crtc_dpms_overlay(struct intel_crtc *intel_crtc, bool enable)
3563{
Daniel Vetter02e792f2009-09-15 22:57:34 +02003564 if (!enable && intel_crtc->overlay) {
Chris Wilson23f09ce2010-08-12 13:53:37 +01003565 struct drm_device *dev = intel_crtc->base.dev;
Chris Wilsonce453d82011-02-21 14:43:56 +00003566 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter03f77ea2009-09-15 22:57:37 +02003567
Chris Wilson23f09ce2010-08-12 13:53:37 +01003568 mutex_lock(&dev->struct_mutex);
Chris Wilsonce453d82011-02-21 14:43:56 +00003569 dev_priv->mm.interruptible = false;
3570 (void) intel_overlay_switch_off(intel_crtc->overlay);
3571 dev_priv->mm.interruptible = true;
Chris Wilson23f09ce2010-08-12 13:53:37 +01003572 mutex_unlock(&dev->struct_mutex);
Daniel Vetter02e792f2009-09-15 22:57:34 +02003573 }
Daniel Vetter02e792f2009-09-15 22:57:34 +02003574
Chris Wilson5dcdbcb2010-08-12 13:50:28 +01003575 /* Let userspace switch the overlay on again. In most cases userspace
3576 * has to recompute where to put it anyway.
3577 */
Daniel Vetter02e792f2009-09-15 22:57:34 +02003578}
3579
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003580static void i9xx_crtc_enable(struct drm_crtc *crtc)
Zhenyu Wang2c072452009-06-05 15:38:42 +08003581{
3582 struct drm_device *dev = crtc->dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08003583 struct drm_i915_private *dev_priv = dev->dev_private;
3584 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02003585 struct intel_encoder *encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08003586 int pipe = intel_crtc->pipe;
Jesse Barnes80824002009-09-10 15:28:06 -07003587 int plane = intel_crtc->plane;
Jesse Barnes79e53942008-11-07 14:24:08 -08003588
Daniel Vetter08a48462012-07-02 11:43:47 +02003589 WARN_ON(!crtc->enabled);
3590
Chris Wilsonf7abfe82010-09-13 14:19:16 +01003591 if (intel_crtc->active)
3592 return;
3593
3594 intel_crtc->active = true;
Chris Wilson6b383a72010-09-13 13:54:26 +01003595 intel_update_watermarks(dev);
3596
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08003597 intel_enable_pll(dev_priv, pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08003598 intel_enable_pipe(dev_priv, pipe, false);
Jesse Barnesb24e7172011-01-04 15:09:30 -08003599 intel_enable_plane(dev_priv, plane, pipe);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003600
3601 intel_crtc_load_lut(crtc);
Chris Wilsonbed4a672010-09-11 10:47:47 +01003602 intel_update_fbc(dev);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003603
3604 /* Give the overlay scaler a chance to enable if it's on this pipe */
3605 intel_crtc_dpms_overlay(intel_crtc, true);
Chris Wilson6b383a72010-09-13 13:54:26 +01003606 intel_crtc_update_cursor(crtc, true);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02003607
Daniel Vetterfa5c73b2012-07-01 23:24:36 +02003608 for_each_encoder_on_crtc(dev, crtc, encoder)
3609 encoder->enable(encoder);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003610}
3611
3612static void i9xx_crtc_disable(struct drm_crtc *crtc)
3613{
3614 struct drm_device *dev = crtc->dev;
3615 struct drm_i915_private *dev_priv = dev->dev_private;
3616 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02003617 struct intel_encoder *encoder;
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003618 int pipe = intel_crtc->pipe;
3619 int plane = intel_crtc->plane;
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003620
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02003621
Chris Wilsonf7abfe82010-09-13 14:19:16 +01003622 if (!intel_crtc->active)
3623 return;
3624
Daniel Vetterea9d7582012-07-10 10:42:52 +02003625 for_each_encoder_on_crtc(dev, crtc, encoder)
3626 encoder->disable(encoder);
3627
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003628 /* Give the overlay scaler a chance to disable if it's on this pipe */
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01003629 intel_crtc_wait_for_pending_flips(crtc);
3630 drm_vblank_off(dev, pipe);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003631 intel_crtc_dpms_overlay(intel_crtc, false);
Chris Wilson6b383a72010-09-13 13:54:26 +01003632 intel_crtc_update_cursor(crtc, false);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003633
Chris Wilson973d04f2011-07-08 12:22:37 +01003634 if (dev_priv->cfb_plane == plane)
3635 intel_disable_fbc(dev);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003636
Jesse Barnesb24e7172011-01-04 15:09:30 -08003637 intel_disable_plane(dev_priv, plane, pipe);
Jesse Barnesb24e7172011-01-04 15:09:30 -08003638 intel_disable_pipe(dev_priv, pipe);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08003639 intel_disable_pll(dev_priv, pipe);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003640
Chris Wilsonf7abfe82010-09-13 14:19:16 +01003641 intel_crtc->active = false;
Chris Wilson6b383a72010-09-13 13:54:26 +01003642 intel_update_fbc(dev);
3643 intel_update_watermarks(dev);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003644}
3645
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003646static void i9xx_crtc_off(struct drm_crtc *crtc)
3647{
3648}
3649
Daniel Vetter976f8a22012-07-08 22:34:21 +02003650static void intel_crtc_update_sarea(struct drm_crtc *crtc,
3651 bool enabled)
Zhenyu Wang2c072452009-06-05 15:38:42 +08003652{
3653 struct drm_device *dev = crtc->dev;
3654 struct drm_i915_master_private *master_priv;
3655 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3656 int pipe = intel_crtc->pipe;
Jesse Barnes79e53942008-11-07 14:24:08 -08003657
3658 if (!dev->primary->master)
3659 return;
3660
3661 master_priv = dev->primary->master->driver_priv;
3662 if (!master_priv->sarea_priv)
3663 return;
3664
Jesse Barnes79e53942008-11-07 14:24:08 -08003665 switch (pipe) {
3666 case 0:
3667 master_priv->sarea_priv->pipeA_w = enabled ? crtc->mode.hdisplay : 0;
3668 master_priv->sarea_priv->pipeA_h = enabled ? crtc->mode.vdisplay : 0;
3669 break;
3670 case 1:
3671 master_priv->sarea_priv->pipeB_w = enabled ? crtc->mode.hdisplay : 0;
3672 master_priv->sarea_priv->pipeB_h = enabled ? crtc->mode.vdisplay : 0;
3673 break;
3674 default:
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08003675 DRM_ERROR("Can't update pipe %c in SAREA\n", pipe_name(pipe));
Jesse Barnes79e53942008-11-07 14:24:08 -08003676 break;
3677 }
Jesse Barnes79e53942008-11-07 14:24:08 -08003678}
3679
Daniel Vetter976f8a22012-07-08 22:34:21 +02003680/**
3681 * Sets the power management mode of the pipe and plane.
3682 */
3683void intel_crtc_update_dpms(struct drm_crtc *crtc)
Chris Wilsoncdd59982010-09-08 16:30:16 +01003684{
Chris Wilsoncdd59982010-09-08 16:30:16 +01003685 struct drm_device *dev = crtc->dev;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003686 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter976f8a22012-07-08 22:34:21 +02003687 struct intel_encoder *intel_encoder;
3688 bool enable = false;
Chris Wilsoncdd59982010-09-08 16:30:16 +01003689
Daniel Vetter976f8a22012-07-08 22:34:21 +02003690 for_each_encoder_on_crtc(dev, crtc, intel_encoder)
3691 enable |= intel_encoder->connectors_active;
3692
3693 if (enable)
3694 dev_priv->display.crtc_enable(crtc);
3695 else
3696 dev_priv->display.crtc_disable(crtc);
3697
3698 intel_crtc_update_sarea(crtc, enable);
3699}
3700
3701static void intel_crtc_noop(struct drm_crtc *crtc)
3702{
3703}
3704
3705static void intel_crtc_disable(struct drm_crtc *crtc)
3706{
3707 struct drm_device *dev = crtc->dev;
3708 struct drm_connector *connector;
3709 struct drm_i915_private *dev_priv = dev->dev_private;
3710
3711 /* crtc should still be enabled when we disable it. */
3712 WARN_ON(!crtc->enabled);
3713
3714 dev_priv->display.crtc_disable(crtc);
3715 intel_crtc_update_sarea(crtc, false);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003716 dev_priv->display.off(crtc);
3717
Chris Wilson931872f2012-01-16 23:01:13 +00003718 assert_plane_disabled(dev->dev_private, to_intel_crtc(crtc)->plane);
3719 assert_pipe_disabled(dev->dev_private, to_intel_crtc(crtc)->pipe);
Chris Wilsoncdd59982010-09-08 16:30:16 +01003720
3721 if (crtc->fb) {
3722 mutex_lock(&dev->struct_mutex);
Chris Wilson1690e1e2011-12-14 13:57:08 +01003723 intel_unpin_fb_obj(to_intel_framebuffer(crtc->fb)->obj);
Chris Wilsoncdd59982010-09-08 16:30:16 +01003724 mutex_unlock(&dev->struct_mutex);
Daniel Vetter976f8a22012-07-08 22:34:21 +02003725 crtc->fb = NULL;
3726 }
3727
3728 /* Update computed state. */
3729 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
3730 if (!connector->encoder || !connector->encoder->crtc)
3731 continue;
3732
3733 if (connector->encoder->crtc != crtc)
3734 continue;
3735
3736 connector->dpms = DRM_MODE_DPMS_OFF;
3737 to_intel_encoder(connector->encoder)->connectors_active = false;
Chris Wilsoncdd59982010-09-08 16:30:16 +01003738 }
3739}
3740
Daniel Vettera261b242012-07-26 19:21:47 +02003741void intel_modeset_disable(struct drm_device *dev)
Jesse Barnes79e53942008-11-07 14:24:08 -08003742{
Daniel Vettera261b242012-07-26 19:21:47 +02003743 struct drm_crtc *crtc;
3744
3745 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
3746 if (crtc->enabled)
3747 intel_crtc_disable(crtc);
3748 }
Jesse Barnes79e53942008-11-07 14:24:08 -08003749}
3750
Daniel Vetter1f703852012-07-11 16:51:39 +02003751void intel_encoder_noop(struct drm_encoder *encoder)
Jesse Barnes79e53942008-11-07 14:24:08 -08003752{
Jesse Barnes79e53942008-11-07 14:24:08 -08003753}
3754
Chris Wilsonea5b2132010-08-04 13:50:23 +01003755void intel_encoder_destroy(struct drm_encoder *encoder)
3756{
Chris Wilson4ef69c72010-09-09 15:14:28 +01003757 struct intel_encoder *intel_encoder = to_intel_encoder(encoder);
Chris Wilsonea5b2132010-08-04 13:50:23 +01003758
Chris Wilsonea5b2132010-08-04 13:50:23 +01003759 drm_encoder_cleanup(encoder);
3760 kfree(intel_encoder);
3761}
3762
Daniel Vetter5ab432e2012-06-30 08:59:56 +02003763/* Simple dpms helper for encodres with just one connector, no cloning and only
3764 * one kind of off state. It clamps all !ON modes to fully OFF and changes the
3765 * state of the entire output pipe. */
3766void intel_encoder_dpms(struct intel_encoder *encoder, int mode)
3767{
3768 if (mode == DRM_MODE_DPMS_ON) {
3769 encoder->connectors_active = true;
3770
Daniel Vetterb2cabb02012-07-01 22:42:24 +02003771 intel_crtc_update_dpms(encoder->base.crtc);
Daniel Vetter5ab432e2012-06-30 08:59:56 +02003772 } else {
3773 encoder->connectors_active = false;
3774
Daniel Vetterb2cabb02012-07-01 22:42:24 +02003775 intel_crtc_update_dpms(encoder->base.crtc);
Daniel Vetter5ab432e2012-06-30 08:59:56 +02003776 }
3777}
3778
Daniel Vetter0a91ca22012-07-02 21:54:27 +02003779/* Cross check the actual hw state with our own modeset state tracking (and it's
3780 * internal consistency). */
Daniel Vetterb9805142012-08-31 17:37:33 +02003781static void intel_connector_check_state(struct intel_connector *connector)
Daniel Vetter0a91ca22012-07-02 21:54:27 +02003782{
3783 if (connector->get_hw_state(connector)) {
3784 struct intel_encoder *encoder = connector->encoder;
3785 struct drm_crtc *crtc;
3786 bool encoder_enabled;
3787 enum pipe pipe;
3788
3789 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
3790 connector->base.base.id,
3791 drm_get_connector_name(&connector->base));
3792
3793 WARN(connector->base.dpms == DRM_MODE_DPMS_OFF,
3794 "wrong connector dpms state\n");
3795 WARN(connector->base.encoder != &encoder->base,
3796 "active connector not linked to encoder\n");
3797 WARN(!encoder->connectors_active,
3798 "encoder->connectors_active not set\n");
3799
3800 encoder_enabled = encoder->get_hw_state(encoder, &pipe);
3801 WARN(!encoder_enabled, "encoder not enabled\n");
3802 if (WARN_ON(!encoder->base.crtc))
3803 return;
3804
3805 crtc = encoder->base.crtc;
3806
3807 WARN(!crtc->enabled, "crtc not enabled\n");
3808 WARN(!to_intel_crtc(crtc)->active, "crtc not active\n");
3809 WARN(pipe != to_intel_crtc(crtc)->pipe,
3810 "encoder active on the wrong pipe\n");
3811 }
3812}
3813
Daniel Vetter5ab432e2012-06-30 08:59:56 +02003814/* Even simpler default implementation, if there's really no special case to
3815 * consider. */
3816void intel_connector_dpms(struct drm_connector *connector, int mode)
3817{
3818 struct intel_encoder *encoder = intel_attached_encoder(connector);
3819
3820 /* All the simple cases only support two dpms states. */
3821 if (mode != DRM_MODE_DPMS_ON)
3822 mode = DRM_MODE_DPMS_OFF;
3823
3824 if (mode == connector->dpms)
3825 return;
3826
3827 connector->dpms = mode;
3828
3829 /* Only need to change hw state when actually enabled */
3830 if (encoder->base.crtc)
3831 intel_encoder_dpms(encoder, mode);
3832 else
Daniel Vetter8af6cf82012-07-10 09:50:11 +02003833 WARN_ON(encoder->connectors_active != false);
Daniel Vetter0a91ca22012-07-02 21:54:27 +02003834
Daniel Vetterb9805142012-08-31 17:37:33 +02003835 intel_modeset_check_state(connector->dev);
Daniel Vetter5ab432e2012-06-30 08:59:56 +02003836}
3837
Daniel Vetterf0947c32012-07-02 13:10:34 +02003838/* Simple connector->get_hw_state implementation for encoders that support only
3839 * one connector and no cloning and hence the encoder state determines the state
3840 * of the connector. */
3841bool intel_connector_get_hw_state(struct intel_connector *connector)
3842{
Daniel Vetter24929352012-07-02 20:28:59 +02003843 enum pipe pipe = 0;
Daniel Vetterf0947c32012-07-02 13:10:34 +02003844 struct intel_encoder *encoder = connector->encoder;
3845
3846 return encoder->get_hw_state(encoder, &pipe);
3847}
3848
Jesse Barnes79e53942008-11-07 14:24:08 -08003849static bool intel_crtc_mode_fixup(struct drm_crtc *crtc,
Daniel Vetter35313cd2012-07-20 10:30:45 +02003850 const struct drm_display_mode *mode,
Jesse Barnes79e53942008-11-07 14:24:08 -08003851 struct drm_display_mode *adjusted_mode)
3852{
Zhenyu Wang2c072452009-06-05 15:38:42 +08003853 struct drm_device *dev = crtc->dev;
Chris Wilson89749352010-09-12 18:25:19 +01003854
Eric Anholtbad720f2009-10-22 16:11:14 -07003855 if (HAS_PCH_SPLIT(dev)) {
Zhenyu Wang2c072452009-06-05 15:38:42 +08003856 /* FDI link clock is fixed at 2.7G */
Jesse Barnes2377b742010-07-07 14:06:43 -07003857 if (mode->clock * 3 > IRONLAKE_FDI_FREQ * 4)
3858 return false;
Zhenyu Wang2c072452009-06-05 15:38:42 +08003859 }
Chris Wilson89749352010-09-12 18:25:19 +01003860
Daniel Vetterf9bef082012-04-15 19:53:19 +02003861 /* All interlaced capable intel hw wants timings in frames. Note though
3862 * that intel_lvds_mode_fixup does some funny tricks with the crtc
3863 * timings, so we need to be careful not to clobber these.*/
3864 if (!(adjusted_mode->private_flags & INTEL_MODE_CRTC_TIMINGS_SET))
3865 drm_mode_set_crtcinfo(adjusted_mode, 0);
Chris Wilson89749352010-09-12 18:25:19 +01003866
Chris Wilson44f46b422012-06-21 13:19:59 +03003867 /* WaPruneModeWithIncorrectHsyncOffset: Cantiga+ cannot handle modes
3868 * with a hsync front porch of 0.
3869 */
3870 if ((INTEL_INFO(dev)->gen > 4 || IS_G4X(dev)) &&
3871 adjusted_mode->hsync_start == adjusted_mode->hdisplay)
3872 return false;
3873
Jesse Barnes79e53942008-11-07 14:24:08 -08003874 return true;
3875}
3876
Jesse Barnes25eb05fc2012-03-28 13:39:23 -07003877static int valleyview_get_display_clock_speed(struct drm_device *dev)
3878{
3879 return 400000; /* FIXME */
3880}
3881
Jesse Barnese70236a2009-09-21 10:42:27 -07003882static int i945_get_display_clock_speed(struct drm_device *dev)
Jesse Barnes79e53942008-11-07 14:24:08 -08003883{
Jesse Barnese70236a2009-09-21 10:42:27 -07003884 return 400000;
3885}
Jesse Barnes79e53942008-11-07 14:24:08 -08003886
Jesse Barnese70236a2009-09-21 10:42:27 -07003887static int i915_get_display_clock_speed(struct drm_device *dev)
3888{
3889 return 333000;
3890}
Jesse Barnes79e53942008-11-07 14:24:08 -08003891
Jesse Barnese70236a2009-09-21 10:42:27 -07003892static int i9xx_misc_get_display_clock_speed(struct drm_device *dev)
3893{
3894 return 200000;
3895}
Jesse Barnes79e53942008-11-07 14:24:08 -08003896
Jesse Barnese70236a2009-09-21 10:42:27 -07003897static int i915gm_get_display_clock_speed(struct drm_device *dev)
3898{
3899 u16 gcfgc = 0;
3900
3901 pci_read_config_word(dev->pdev, GCFGC, &gcfgc);
3902
3903 if (gcfgc & GC_LOW_FREQUENCY_ENABLE)
Jesse Barnes79e53942008-11-07 14:24:08 -08003904 return 133000;
Jesse Barnese70236a2009-09-21 10:42:27 -07003905 else {
3906 switch (gcfgc & GC_DISPLAY_CLOCK_MASK) {
3907 case GC_DISPLAY_CLOCK_333_MHZ:
3908 return 333000;
3909 default:
3910 case GC_DISPLAY_CLOCK_190_200_MHZ:
3911 return 190000;
3912 }
3913 }
3914}
Jesse Barnes79e53942008-11-07 14:24:08 -08003915
Jesse Barnese70236a2009-09-21 10:42:27 -07003916static int i865_get_display_clock_speed(struct drm_device *dev)
3917{
3918 return 266000;
3919}
3920
3921static int i855_get_display_clock_speed(struct drm_device *dev)
3922{
3923 u16 hpllcc = 0;
3924 /* Assume that the hardware is in the high speed state. This
3925 * should be the default.
3926 */
3927 switch (hpllcc & GC_CLOCK_CONTROL_MASK) {
3928 case GC_CLOCK_133_200:
3929 case GC_CLOCK_100_200:
3930 return 200000;
3931 case GC_CLOCK_166_250:
3932 return 250000;
3933 case GC_CLOCK_100_133:
3934 return 133000;
3935 }
3936
3937 /* Shouldn't happen */
3938 return 0;
3939}
3940
3941static int i830_get_display_clock_speed(struct drm_device *dev)
3942{
3943 return 133000;
Jesse Barnes79e53942008-11-07 14:24:08 -08003944}
3945
Zhenyu Wang2c072452009-06-05 15:38:42 +08003946struct fdi_m_n {
3947 u32 tu;
3948 u32 gmch_m;
3949 u32 gmch_n;
3950 u32 link_m;
3951 u32 link_n;
3952};
3953
3954static void
3955fdi_reduce_ratio(u32 *num, u32 *den)
3956{
3957 while (*num > 0xffffff || *den > 0xffffff) {
3958 *num >>= 1;
3959 *den >>= 1;
3960 }
3961}
3962
Zhenyu Wang2c072452009-06-05 15:38:42 +08003963static void
Adam Jacksonf2b115e2009-12-03 17:14:42 -05003964ironlake_compute_m_n(int bits_per_pixel, int nlanes, int pixel_clock,
3965 int link_clock, struct fdi_m_n *m_n)
Zhenyu Wang2c072452009-06-05 15:38:42 +08003966{
Zhenyu Wang2c072452009-06-05 15:38:42 +08003967 m_n->tu = 64; /* default size */
3968
Chris Wilson22ed1112010-12-04 01:01:29 +00003969 /* BUG_ON(pixel_clock > INT_MAX / 36); */
3970 m_n->gmch_m = bits_per_pixel * pixel_clock;
3971 m_n->gmch_n = link_clock * nlanes * 8;
Zhenyu Wang2c072452009-06-05 15:38:42 +08003972 fdi_reduce_ratio(&m_n->gmch_m, &m_n->gmch_n);
3973
Chris Wilson22ed1112010-12-04 01:01:29 +00003974 m_n->link_m = pixel_clock;
3975 m_n->link_n = link_clock;
Zhenyu Wang2c072452009-06-05 15:38:42 +08003976 fdi_reduce_ratio(&m_n->link_m, &m_n->link_n);
3977}
3978
Chris Wilsona7615032011-01-12 17:04:08 +00003979static inline bool intel_panel_use_ssc(struct drm_i915_private *dev_priv)
3980{
Keith Packard72bbe582011-09-26 16:09:45 -07003981 if (i915_panel_use_ssc >= 0)
3982 return i915_panel_use_ssc != 0;
3983 return dev_priv->lvds_use_ssc
Keith Packard435793d2011-07-12 14:56:22 -07003984 && !(dev_priv->quirks & QUIRK_LVDS_SSC_DISABLE);
Chris Wilsona7615032011-01-12 17:04:08 +00003985}
3986
Jesse Barnes5a354202011-06-24 12:19:22 -07003987/**
3988 * intel_choose_pipe_bpp_dither - figure out what color depth the pipe should send
3989 * @crtc: CRTC structure
Adam Jackson3b5c78a2011-12-13 15:41:00 -08003990 * @mode: requested mode
Jesse Barnes5a354202011-06-24 12:19:22 -07003991 *
3992 * A pipe may be connected to one or more outputs. Based on the depth of the
3993 * attached framebuffer, choose a good color depth to use on the pipe.
3994 *
3995 * If possible, match the pipe depth to the fb depth. In some cases, this
3996 * isn't ideal, because the connected output supports a lesser or restricted
3997 * set of depths. Resolve that here:
3998 * LVDS typically supports only 6bpc, so clamp down in that case
3999 * HDMI supports only 8bpc or 12bpc, so clamp to 8bpc with dither for 10bpc
4000 * Displays may support a restricted set as well, check EDID and clamp as
4001 * appropriate.
Adam Jackson3b5c78a2011-12-13 15:41:00 -08004002 * DP may want to dither down to 6bpc to fit larger modes
Jesse Barnes5a354202011-06-24 12:19:22 -07004003 *
4004 * RETURNS:
4005 * Dithering requirement (i.e. false if display bpc and pipe bpc match,
4006 * true if they don't match).
4007 */
4008static bool intel_choose_pipe_bpp_dither(struct drm_crtc *crtc,
Daniel Vetter94352cf2012-07-05 22:51:56 +02004009 struct drm_framebuffer *fb,
Adam Jackson3b5c78a2011-12-13 15:41:00 -08004010 unsigned int *pipe_bpp,
4011 struct drm_display_mode *mode)
Jesse Barnes5a354202011-06-24 12:19:22 -07004012{
4013 struct drm_device *dev = crtc->dev;
4014 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes5a354202011-06-24 12:19:22 -07004015 struct drm_connector *connector;
Daniel Vetter6c2b7c12012-07-05 09:50:24 +02004016 struct intel_encoder *intel_encoder;
Jesse Barnes5a354202011-06-24 12:19:22 -07004017 unsigned int display_bpc = UINT_MAX, bpc;
4018
4019 /* Walk the encoders & connectors on this crtc, get min bpc */
Daniel Vetter6c2b7c12012-07-05 09:50:24 +02004020 for_each_encoder_on_crtc(dev, crtc, intel_encoder) {
Jesse Barnes5a354202011-06-24 12:19:22 -07004021
4022 if (intel_encoder->type == INTEL_OUTPUT_LVDS) {
4023 unsigned int lvds_bpc;
4024
4025 if ((I915_READ(PCH_LVDS) & LVDS_A3_POWER_MASK) ==
4026 LVDS_A3_POWER_UP)
4027 lvds_bpc = 8;
4028 else
4029 lvds_bpc = 6;
4030
4031 if (lvds_bpc < display_bpc) {
Adam Jackson82820492011-10-10 16:33:34 -04004032 DRM_DEBUG_KMS("clamping display bpc (was %d) to LVDS (%d)\n", display_bpc, lvds_bpc);
Jesse Barnes5a354202011-06-24 12:19:22 -07004033 display_bpc = lvds_bpc;
4034 }
4035 continue;
4036 }
4037
Jesse Barnes5a354202011-06-24 12:19:22 -07004038 /* Not one of the known troublemakers, check the EDID */
4039 list_for_each_entry(connector, &dev->mode_config.connector_list,
4040 head) {
Daniel Vetter6c2b7c12012-07-05 09:50:24 +02004041 if (connector->encoder != &intel_encoder->base)
Jesse Barnes5a354202011-06-24 12:19:22 -07004042 continue;
4043
Jesse Barnes62ac41a2011-07-28 12:55:14 -07004044 /* Don't use an invalid EDID bpc value */
4045 if (connector->display_info.bpc &&
4046 connector->display_info.bpc < display_bpc) {
Adam Jackson82820492011-10-10 16:33:34 -04004047 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 -07004048 display_bpc = connector->display_info.bpc;
4049 }
4050 }
4051
4052 /*
4053 * HDMI is either 12 or 8, so if the display lets 10bpc sneak
4054 * through, clamp it down. (Note: >12bpc will be caught below.)
4055 */
4056 if (intel_encoder->type == INTEL_OUTPUT_HDMI) {
4057 if (display_bpc > 8 && display_bpc < 12) {
Adam Jackson82820492011-10-10 16:33:34 -04004058 DRM_DEBUG_KMS("forcing bpc to 12 for HDMI\n");
Jesse Barnes5a354202011-06-24 12:19:22 -07004059 display_bpc = 12;
4060 } else {
Adam Jackson82820492011-10-10 16:33:34 -04004061 DRM_DEBUG_KMS("forcing bpc to 8 for HDMI\n");
Jesse Barnes5a354202011-06-24 12:19:22 -07004062 display_bpc = 8;
4063 }
4064 }
4065 }
4066
Adam Jackson3b5c78a2011-12-13 15:41:00 -08004067 if (mode->private_flags & INTEL_MODE_DP_FORCE_6BPC) {
4068 DRM_DEBUG_KMS("Dithering DP to 6bpc\n");
4069 display_bpc = 6;
4070 }
4071
Jesse Barnes5a354202011-06-24 12:19:22 -07004072 /*
4073 * We could just drive the pipe at the highest bpc all the time and
4074 * enable dithering as needed, but that costs bandwidth. So choose
4075 * the minimum value that expresses the full color range of the fb but
4076 * also stays within the max display bpc discovered above.
4077 */
4078
Daniel Vetter94352cf2012-07-05 22:51:56 +02004079 switch (fb->depth) {
Jesse Barnes5a354202011-06-24 12:19:22 -07004080 case 8:
4081 bpc = 8; /* since we go through a colormap */
4082 break;
4083 case 15:
4084 case 16:
4085 bpc = 6; /* min is 18bpp */
4086 break;
4087 case 24:
Keith Packard578393c2011-09-05 11:53:21 -07004088 bpc = 8;
Jesse Barnes5a354202011-06-24 12:19:22 -07004089 break;
4090 case 30:
Keith Packard578393c2011-09-05 11:53:21 -07004091 bpc = 10;
Jesse Barnes5a354202011-06-24 12:19:22 -07004092 break;
4093 case 48:
Keith Packard578393c2011-09-05 11:53:21 -07004094 bpc = 12;
Jesse Barnes5a354202011-06-24 12:19:22 -07004095 break;
4096 default:
4097 DRM_DEBUG("unsupported depth, assuming 24 bits\n");
4098 bpc = min((unsigned int)8, display_bpc);
4099 break;
4100 }
4101
Keith Packard578393c2011-09-05 11:53:21 -07004102 display_bpc = min(display_bpc, bpc);
4103
Adam Jackson82820492011-10-10 16:33:34 -04004104 DRM_DEBUG_KMS("setting pipe bpc to %d (max display bpc %d)\n",
4105 bpc, display_bpc);
Jesse Barnes5a354202011-06-24 12:19:22 -07004106
Keith Packard578393c2011-09-05 11:53:21 -07004107 *pipe_bpp = display_bpc * 3;
Jesse Barnes5a354202011-06-24 12:19:22 -07004108
4109 return display_bpc != bpc;
4110}
4111
Jesse Barnesa0c4da242012-06-15 11:55:13 -07004112static int vlv_get_refclk(struct drm_crtc *crtc)
4113{
4114 struct drm_device *dev = crtc->dev;
4115 struct drm_i915_private *dev_priv = dev->dev_private;
4116 int refclk = 27000; /* for DP & HDMI */
4117
4118 return 100000; /* only one validated so far */
4119
4120 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_ANALOG)) {
4121 refclk = 96000;
4122 } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
4123 if (intel_panel_use_ssc(dev_priv))
4124 refclk = 100000;
4125 else
4126 refclk = 96000;
4127 } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP)) {
4128 refclk = 100000;
4129 }
4130
4131 return refclk;
4132}
4133
Jesse Barnesc65d77d2011-12-15 12:30:36 -08004134static int i9xx_get_refclk(struct drm_crtc *crtc, int num_connectors)
4135{
4136 struct drm_device *dev = crtc->dev;
4137 struct drm_i915_private *dev_priv = dev->dev_private;
4138 int refclk;
4139
Jesse Barnesa0c4da242012-06-15 11:55:13 -07004140 if (IS_VALLEYVIEW(dev)) {
4141 refclk = vlv_get_refclk(crtc);
4142 } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) &&
Jesse Barnesc65d77d2011-12-15 12:30:36 -08004143 intel_panel_use_ssc(dev_priv) && num_connectors < 2) {
4144 refclk = dev_priv->lvds_ssc_freq * 1000;
4145 DRM_DEBUG_KMS("using SSC reference clock of %d MHz\n",
4146 refclk / 1000);
4147 } else if (!IS_GEN2(dev)) {
4148 refclk = 96000;
4149 } else {
4150 refclk = 48000;
4151 }
4152
4153 return refclk;
4154}
4155
4156static void i9xx_adjust_sdvo_tv_clock(struct drm_display_mode *adjusted_mode,
4157 intel_clock_t *clock)
4158{
4159 /* SDVO TV has fixed PLL values depend on its clock range,
4160 this mirrors vbios setting. */
4161 if (adjusted_mode->clock >= 100000
4162 && adjusted_mode->clock < 140500) {
4163 clock->p1 = 2;
4164 clock->p2 = 10;
4165 clock->n = 3;
4166 clock->m1 = 16;
4167 clock->m2 = 8;
4168 } else if (adjusted_mode->clock >= 140500
4169 && adjusted_mode->clock <= 200000) {
4170 clock->p1 = 1;
4171 clock->p2 = 10;
4172 clock->n = 6;
4173 clock->m1 = 12;
4174 clock->m2 = 8;
4175 }
4176}
4177
Jesse Barnesa7516a02011-12-15 12:30:37 -08004178static void i9xx_update_pll_dividers(struct drm_crtc *crtc,
4179 intel_clock_t *clock,
4180 intel_clock_t *reduced_clock)
4181{
4182 struct drm_device *dev = crtc->dev;
4183 struct drm_i915_private *dev_priv = dev->dev_private;
4184 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4185 int pipe = intel_crtc->pipe;
4186 u32 fp, fp2 = 0;
4187
4188 if (IS_PINEVIEW(dev)) {
4189 fp = (1 << clock->n) << 16 | clock->m1 << 8 | clock->m2;
4190 if (reduced_clock)
4191 fp2 = (1 << reduced_clock->n) << 16 |
4192 reduced_clock->m1 << 8 | reduced_clock->m2;
4193 } else {
4194 fp = clock->n << 16 | clock->m1 << 8 | clock->m2;
4195 if (reduced_clock)
4196 fp2 = reduced_clock->n << 16 | reduced_clock->m1 << 8 |
4197 reduced_clock->m2;
4198 }
4199
4200 I915_WRITE(FP0(pipe), fp);
4201
4202 intel_crtc->lowfreq_avail = false;
4203 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) &&
4204 reduced_clock && i915_powersave) {
4205 I915_WRITE(FP1(pipe), fp2);
4206 intel_crtc->lowfreq_avail = true;
4207 } else {
4208 I915_WRITE(FP1(pipe), fp);
4209 }
4210}
4211
Daniel Vetter93e537a2012-03-28 23:11:26 +02004212static void intel_update_lvds(struct drm_crtc *crtc, intel_clock_t *clock,
4213 struct drm_display_mode *adjusted_mode)
4214{
4215 struct drm_device *dev = crtc->dev;
4216 struct drm_i915_private *dev_priv = dev->dev_private;
4217 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4218 int pipe = intel_crtc->pipe;
Chris Wilson284d5df2012-04-14 17:41:59 +01004219 u32 temp;
Daniel Vetter93e537a2012-03-28 23:11:26 +02004220
4221 temp = I915_READ(LVDS);
4222 temp |= LVDS_PORT_EN | LVDS_A0A2_CLKA_POWER_UP;
4223 if (pipe == 1) {
4224 temp |= LVDS_PIPEB_SELECT;
4225 } else {
4226 temp &= ~LVDS_PIPEB_SELECT;
4227 }
4228 /* set the corresponsding LVDS_BORDER bit */
4229 temp |= dev_priv->lvds_border_bits;
4230 /* Set the B0-B3 data pairs corresponding to whether we're going to
4231 * set the DPLLs for dual-channel mode or not.
4232 */
4233 if (clock->p2 == 7)
4234 temp |= LVDS_B0B3_POWER_UP | LVDS_CLKB_POWER_UP;
4235 else
4236 temp &= ~(LVDS_B0B3_POWER_UP | LVDS_CLKB_POWER_UP);
4237
4238 /* It would be nice to set 24 vs 18-bit mode (LVDS_A3_POWER_UP)
4239 * appropriately here, but we need to look more thoroughly into how
4240 * panels behave in the two modes.
4241 */
4242 /* set the dithering flag on LVDS as needed */
4243 if (INTEL_INFO(dev)->gen >= 4) {
4244 if (dev_priv->lvds_dither)
4245 temp |= LVDS_ENABLE_DITHER;
4246 else
4247 temp &= ~LVDS_ENABLE_DITHER;
4248 }
Chris Wilson284d5df2012-04-14 17:41:59 +01004249 temp &= ~(LVDS_HSYNC_POLARITY | LVDS_VSYNC_POLARITY);
Daniel Vetter93e537a2012-03-28 23:11:26 +02004250 if (adjusted_mode->flags & DRM_MODE_FLAG_NHSYNC)
Chris Wilson284d5df2012-04-14 17:41:59 +01004251 temp |= LVDS_HSYNC_POLARITY;
Daniel Vetter93e537a2012-03-28 23:11:26 +02004252 if (adjusted_mode->flags & DRM_MODE_FLAG_NVSYNC)
Chris Wilson284d5df2012-04-14 17:41:59 +01004253 temp |= LVDS_VSYNC_POLARITY;
Daniel Vetter93e537a2012-03-28 23:11:26 +02004254 I915_WRITE(LVDS, temp);
4255}
4256
Jesse Barnesa0c4da242012-06-15 11:55:13 -07004257static void vlv_update_pll(struct drm_crtc *crtc,
4258 struct drm_display_mode *mode,
4259 struct drm_display_mode *adjusted_mode,
4260 intel_clock_t *clock, intel_clock_t *reduced_clock,
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05304261 int num_connectors)
Jesse Barnesa0c4da242012-06-15 11:55:13 -07004262{
4263 struct drm_device *dev = crtc->dev;
4264 struct drm_i915_private *dev_priv = dev->dev_private;
4265 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4266 int pipe = intel_crtc->pipe;
4267 u32 dpll, mdiv, pdiv;
4268 u32 bestn, bestm1, bestm2, bestp1, bestp2;
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05304269 bool is_sdvo;
4270 u32 temp;
Jesse Barnesa0c4da242012-06-15 11:55:13 -07004271
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05304272 is_sdvo = intel_pipe_has_type(crtc, INTEL_OUTPUT_SDVO) ||
4273 intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI);
4274
4275 dpll = DPLL_VGA_MODE_DIS;
4276 dpll |= DPLL_EXT_BUFFER_ENABLE_VLV;
4277 dpll |= DPLL_REFA_CLK_ENABLE_VLV;
4278 dpll |= DPLL_INTEGRATED_CLOCK_VLV;
4279
4280 I915_WRITE(DPLL(pipe), dpll);
4281 POSTING_READ(DPLL(pipe));
Jesse Barnesa0c4da242012-06-15 11:55:13 -07004282
4283 bestn = clock->n;
4284 bestm1 = clock->m1;
4285 bestm2 = clock->m2;
4286 bestp1 = clock->p1;
4287 bestp2 = clock->p2;
4288
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05304289 /*
4290 * In Valleyview PLL and program lane counter registers are exposed
4291 * through DPIO interface
4292 */
Jesse Barnesa0c4da242012-06-15 11:55:13 -07004293 mdiv = ((bestm1 << DPIO_M1DIV_SHIFT) | (bestm2 & DPIO_M2DIV_MASK));
4294 mdiv |= ((bestp1 << DPIO_P1_SHIFT) | (bestp2 << DPIO_P2_SHIFT));
4295 mdiv |= ((bestn << DPIO_N_SHIFT));
4296 mdiv |= (1 << DPIO_POST_DIV_SHIFT);
4297 mdiv |= (1 << DPIO_K_SHIFT);
4298 mdiv |= DPIO_ENABLE_CALIBRATION;
4299 intel_dpio_write(dev_priv, DPIO_DIV(pipe), mdiv);
4300
4301 intel_dpio_write(dev_priv, DPIO_CORE_CLK(pipe), 0x01000000);
4302
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05304303 pdiv = (1 << DPIO_REFSEL_OVERRIDE) | (5 << DPIO_PLL_MODESEL_SHIFT) |
Jesse Barnesa0c4da242012-06-15 11:55:13 -07004304 (3 << DPIO_BIAS_CURRENT_CTL_SHIFT) | (1<<20) |
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05304305 (7 << DPIO_PLL_REFCLK_SEL_SHIFT) | (8 << DPIO_DRIVER_CTL_SHIFT) |
4306 (5 << DPIO_CLK_BIAS_CTL_SHIFT);
Jesse Barnesa0c4da242012-06-15 11:55:13 -07004307 intel_dpio_write(dev_priv, DPIO_REFSFR(pipe), pdiv);
4308
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05304309 intel_dpio_write(dev_priv, DPIO_LFP_COEFF(pipe), 0x005f003b);
Jesse Barnesa0c4da242012-06-15 11:55:13 -07004310
4311 dpll |= DPLL_VCO_ENABLE;
4312 I915_WRITE(DPLL(pipe), dpll);
4313 POSTING_READ(DPLL(pipe));
4314 if (wait_for(((I915_READ(DPLL(pipe)) & DPLL_LOCK_VLV) == DPLL_LOCK_VLV), 1))
4315 DRM_ERROR("DPLL %d failed to lock\n", pipe);
4316
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05304317 intel_dpio_write(dev_priv, DPIO_FASTCLK_DISABLE, 0x620);
Jesse Barnesa0c4da242012-06-15 11:55:13 -07004318
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05304319 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT))
4320 intel_dp_set_m_n(crtc, mode, adjusted_mode);
4321
4322 I915_WRITE(DPLL(pipe), dpll);
4323
4324 /* Wait for the clocks to stabilize. */
4325 POSTING_READ(DPLL(pipe));
4326 udelay(150);
4327
4328 temp = 0;
4329 if (is_sdvo) {
4330 temp = intel_mode_get_pixel_multiplier(adjusted_mode);
Jesse Barnesa0c4da242012-06-15 11:55:13 -07004331 if (temp > 1)
4332 temp = (temp - 1) << DPLL_MD_UDI_MULTIPLIER_SHIFT;
4333 else
4334 temp = 0;
Jesse Barnesa0c4da242012-06-15 11:55:13 -07004335 }
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05304336 I915_WRITE(DPLL_MD(pipe), temp);
4337 POSTING_READ(DPLL_MD(pipe));
Jesse Barnesa0c4da242012-06-15 11:55:13 -07004338
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05304339 /* Now program lane control registers */
4340 if(intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT)
4341 || intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI))
4342 {
4343 temp = 0x1000C4;
4344 if(pipe == 1)
4345 temp |= (1 << 21);
4346 intel_dpio_write(dev_priv, DPIO_DATA_CHANNEL1, temp);
4347 }
4348 if(intel_pipe_has_type(crtc,INTEL_OUTPUT_EDP))
4349 {
4350 temp = 0x1000C4;
4351 if(pipe == 1)
4352 temp |= (1 << 21);
4353 intel_dpio_write(dev_priv, DPIO_DATA_CHANNEL2, temp);
4354 }
Jesse Barnesa0c4da242012-06-15 11:55:13 -07004355}
4356
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004357static void i9xx_update_pll(struct drm_crtc *crtc,
4358 struct drm_display_mode *mode,
4359 struct drm_display_mode *adjusted_mode,
4360 intel_clock_t *clock, intel_clock_t *reduced_clock,
4361 int num_connectors)
4362{
4363 struct drm_device *dev = crtc->dev;
4364 struct drm_i915_private *dev_priv = dev->dev_private;
4365 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4366 int pipe = intel_crtc->pipe;
4367 u32 dpll;
4368 bool is_sdvo;
4369
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05304370 i9xx_update_pll_dividers(crtc, clock, reduced_clock);
4371
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004372 is_sdvo = intel_pipe_has_type(crtc, INTEL_OUTPUT_SDVO) ||
4373 intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI);
4374
4375 dpll = DPLL_VGA_MODE_DIS;
4376
4377 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS))
4378 dpll |= DPLLB_MODE_LVDS;
4379 else
4380 dpll |= DPLLB_MODE_DAC_SERIAL;
4381 if (is_sdvo) {
4382 int pixel_multiplier = intel_mode_get_pixel_multiplier(adjusted_mode);
4383 if (pixel_multiplier > 1) {
4384 if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev))
4385 dpll |= (pixel_multiplier - 1) << SDVO_MULTIPLIER_SHIFT_HIRES;
4386 }
4387 dpll |= DPLL_DVO_HIGH_SPEED;
4388 }
4389 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT))
4390 dpll |= DPLL_DVO_HIGH_SPEED;
4391
4392 /* compute bitmask from p1 value */
4393 if (IS_PINEVIEW(dev))
4394 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW;
4395 else {
4396 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
4397 if (IS_G4X(dev) && reduced_clock)
4398 dpll |= (1 << (reduced_clock->p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
4399 }
4400 switch (clock->p2) {
4401 case 5:
4402 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
4403 break;
4404 case 7:
4405 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
4406 break;
4407 case 10:
4408 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
4409 break;
4410 case 14:
4411 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
4412 break;
4413 }
4414 if (INTEL_INFO(dev)->gen >= 4)
4415 dpll |= (6 << PLL_LOAD_PULSE_PHASE_SHIFT);
4416
4417 if (is_sdvo && intel_pipe_has_type(crtc, INTEL_OUTPUT_TVOUT))
4418 dpll |= PLL_REF_INPUT_TVCLKINBC;
4419 else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_TVOUT))
4420 /* XXX: just matching BIOS for now */
4421 /* dpll |= PLL_REF_INPUT_TVCLKINBC; */
4422 dpll |= 3;
4423 else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) &&
4424 intel_panel_use_ssc(dev_priv) && num_connectors < 2)
4425 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
4426 else
4427 dpll |= PLL_REF_INPUT_DREFCLK;
4428
4429 dpll |= DPLL_VCO_ENABLE;
4430 I915_WRITE(DPLL(pipe), dpll & ~DPLL_VCO_ENABLE);
4431 POSTING_READ(DPLL(pipe));
4432 udelay(150);
4433
4434 /* The LVDS pin pair needs to be on before the DPLLs are enabled.
4435 * This is an exception to the general rule that mode_set doesn't turn
4436 * things on.
4437 */
4438 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS))
4439 intel_update_lvds(crtc, clock, adjusted_mode);
4440
4441 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT))
4442 intel_dp_set_m_n(crtc, mode, adjusted_mode);
4443
4444 I915_WRITE(DPLL(pipe), dpll);
4445
4446 /* Wait for the clocks to stabilize. */
4447 POSTING_READ(DPLL(pipe));
4448 udelay(150);
4449
4450 if (INTEL_INFO(dev)->gen >= 4) {
4451 u32 temp = 0;
4452 if (is_sdvo) {
4453 temp = intel_mode_get_pixel_multiplier(adjusted_mode);
4454 if (temp > 1)
4455 temp = (temp - 1) << DPLL_MD_UDI_MULTIPLIER_SHIFT;
4456 else
4457 temp = 0;
4458 }
4459 I915_WRITE(DPLL_MD(pipe), temp);
4460 } else {
4461 /* The pixel multiplier can only be updated once the
4462 * DPLL is enabled and the clocks are stable.
4463 *
4464 * So write it again.
4465 */
4466 I915_WRITE(DPLL(pipe), dpll);
4467 }
4468}
4469
4470static void i8xx_update_pll(struct drm_crtc *crtc,
4471 struct drm_display_mode *adjusted_mode,
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05304472 intel_clock_t *clock, intel_clock_t *reduced_clock,
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004473 int num_connectors)
4474{
4475 struct drm_device *dev = crtc->dev;
4476 struct drm_i915_private *dev_priv = dev->dev_private;
4477 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4478 int pipe = intel_crtc->pipe;
4479 u32 dpll;
4480
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05304481 i9xx_update_pll_dividers(crtc, clock, reduced_clock);
4482
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004483 dpll = DPLL_VGA_MODE_DIS;
4484
4485 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
4486 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
4487 } else {
4488 if (clock->p1 == 2)
4489 dpll |= PLL_P1_DIVIDE_BY_TWO;
4490 else
4491 dpll |= (clock->p1 - 2) << DPLL_FPA01_P1_POST_DIV_SHIFT;
4492 if (clock->p2 == 4)
4493 dpll |= PLL_P2_DIVIDE_BY_4;
4494 }
4495
4496 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_TVOUT))
4497 /* XXX: just matching BIOS for now */
4498 /* dpll |= PLL_REF_INPUT_TVCLKINBC; */
4499 dpll |= 3;
4500 else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) &&
4501 intel_panel_use_ssc(dev_priv) && num_connectors < 2)
4502 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
4503 else
4504 dpll |= PLL_REF_INPUT_DREFCLK;
4505
4506 dpll |= DPLL_VCO_ENABLE;
4507 I915_WRITE(DPLL(pipe), dpll & ~DPLL_VCO_ENABLE);
4508 POSTING_READ(DPLL(pipe));
4509 udelay(150);
4510
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004511 /* The LVDS pin pair needs to be on before the DPLLs are enabled.
4512 * This is an exception to the general rule that mode_set doesn't turn
4513 * things on.
4514 */
4515 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS))
4516 intel_update_lvds(crtc, clock, adjusted_mode);
4517
Daniel Vetter5b5896e2012-09-11 12:37:55 +02004518 I915_WRITE(DPLL(pipe), dpll);
4519
4520 /* Wait for the clocks to stabilize. */
4521 POSTING_READ(DPLL(pipe));
4522 udelay(150);
4523
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004524 /* The pixel multiplier can only be updated once the
4525 * DPLL is enabled and the clocks are stable.
4526 *
4527 * So write it again.
4528 */
4529 I915_WRITE(DPLL(pipe), dpll);
4530}
4531
Paulo Zanonib0e77b92012-10-01 18:10:53 -03004532static void intel_set_pipe_timings(struct intel_crtc *intel_crtc,
4533 struct drm_display_mode *mode,
4534 struct drm_display_mode *adjusted_mode)
4535{
4536 struct drm_device *dev = intel_crtc->base.dev;
4537 struct drm_i915_private *dev_priv = dev->dev_private;
4538 enum pipe pipe = intel_crtc->pipe;
4539 uint32_t vsyncshift;
4540
4541 if (!IS_GEN2(dev) && adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE) {
4542 /* the chip adds 2 halflines automatically */
4543 adjusted_mode->crtc_vtotal -= 1;
4544 adjusted_mode->crtc_vblank_end -= 1;
4545 vsyncshift = adjusted_mode->crtc_hsync_start
4546 - adjusted_mode->crtc_htotal / 2;
4547 } else {
4548 vsyncshift = 0;
4549 }
4550
4551 if (INTEL_INFO(dev)->gen > 3)
4552 I915_WRITE(VSYNCSHIFT(pipe), vsyncshift);
4553
4554 I915_WRITE(HTOTAL(pipe),
4555 (adjusted_mode->crtc_hdisplay - 1) |
4556 ((adjusted_mode->crtc_htotal - 1) << 16));
4557 I915_WRITE(HBLANK(pipe),
4558 (adjusted_mode->crtc_hblank_start - 1) |
4559 ((adjusted_mode->crtc_hblank_end - 1) << 16));
4560 I915_WRITE(HSYNC(pipe),
4561 (adjusted_mode->crtc_hsync_start - 1) |
4562 ((adjusted_mode->crtc_hsync_end - 1) << 16));
4563
4564 I915_WRITE(VTOTAL(pipe),
4565 (adjusted_mode->crtc_vdisplay - 1) |
4566 ((adjusted_mode->crtc_vtotal - 1) << 16));
4567 I915_WRITE(VBLANK(pipe),
4568 (adjusted_mode->crtc_vblank_start - 1) |
4569 ((adjusted_mode->crtc_vblank_end - 1) << 16));
4570 I915_WRITE(VSYNC(pipe),
4571 (adjusted_mode->crtc_vsync_start - 1) |
4572 ((adjusted_mode->crtc_vsync_end - 1) << 16));
4573
4574 /* pipesrc controls the size that is scaled from, which should
4575 * always be the user's requested size.
4576 */
4577 I915_WRITE(PIPESRC(pipe),
4578 ((mode->hdisplay - 1) << 16) | (mode->vdisplay - 1));
4579}
4580
Eric Anholtf564048e2011-03-30 13:01:02 -07004581static int i9xx_crtc_mode_set(struct drm_crtc *crtc,
4582 struct drm_display_mode *mode,
4583 struct drm_display_mode *adjusted_mode,
4584 int x, int y,
Daniel Vetter94352cf2012-07-05 22:51:56 +02004585 struct drm_framebuffer *fb)
Jesse Barnes79e53942008-11-07 14:24:08 -08004586{
4587 struct drm_device *dev = crtc->dev;
4588 struct drm_i915_private *dev_priv = dev->dev_private;
4589 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4590 int pipe = intel_crtc->pipe;
Jesse Barnes80824002009-09-10 15:28:06 -07004591 int plane = intel_crtc->plane;
Eric Anholtc751ce42010-03-25 11:48:48 -07004592 int refclk, num_connectors = 0;
Jesse Barnes652c3932009-08-17 13:31:43 -07004593 intel_clock_t clock, reduced_clock;
Paulo Zanonib0e77b92012-10-01 18:10:53 -03004594 u32 dspcntr, pipeconf;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004595 bool ok, has_reduced_clock = false, is_sdvo = false;
4596 bool is_lvds = false, is_tv = false, is_dp = false;
Chris Wilson5eddb702010-09-11 13:48:45 +01004597 struct intel_encoder *encoder;
Ma Lingd4906092009-03-18 20:13:27 +08004598 const intel_limit_t *limit;
Chris Wilson5c3b82e2009-02-11 13:25:09 +00004599 int ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08004600
Daniel Vetter6c2b7c12012-07-05 09:50:24 +02004601 for_each_encoder_on_crtc(dev, crtc, encoder) {
Chris Wilson5eddb702010-09-11 13:48:45 +01004602 switch (encoder->type) {
Jesse Barnes79e53942008-11-07 14:24:08 -08004603 case INTEL_OUTPUT_LVDS:
4604 is_lvds = true;
4605 break;
4606 case INTEL_OUTPUT_SDVO:
Eric Anholt7d573822009-01-02 13:33:00 -08004607 case INTEL_OUTPUT_HDMI:
Jesse Barnes79e53942008-11-07 14:24:08 -08004608 is_sdvo = true;
Chris Wilson5eddb702010-09-11 13:48:45 +01004609 if (encoder->needs_tv_clock)
Jesse Barnese2f0ba92009-02-02 15:11:52 -08004610 is_tv = true;
Jesse Barnes79e53942008-11-07 14:24:08 -08004611 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08004612 case INTEL_OUTPUT_TVOUT:
4613 is_tv = true;
4614 break;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004615 case INTEL_OUTPUT_DISPLAYPORT:
4616 is_dp = true;
4617 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08004618 }
Kristian Høgsberg43565a02009-02-13 20:56:52 -05004619
Eric Anholtc751ce42010-03-25 11:48:48 -07004620 num_connectors++;
Jesse Barnes79e53942008-11-07 14:24:08 -08004621 }
4622
Jesse Barnesc65d77d2011-12-15 12:30:36 -08004623 refclk = i9xx_get_refclk(crtc, num_connectors);
Jesse Barnes79e53942008-11-07 14:24:08 -08004624
Ma Lingd4906092009-03-18 20:13:27 +08004625 /*
4626 * Returns a set of divisors for the desired target clock with the given
4627 * refclk, or FALSE. The returned values represent the clock equation:
4628 * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2.
4629 */
Chris Wilson1b894b52010-12-14 20:04:54 +00004630 limit = intel_limit(crtc, refclk);
Sean Paulcec2f352012-01-10 15:09:36 -08004631 ok = limit->find_pll(limit, crtc, adjusted_mode->clock, refclk, NULL,
4632 &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08004633 if (!ok) {
4634 DRM_ERROR("Couldn't find PLL settings for mode!\n");
Eric Anholtf564048e2011-03-30 13:01:02 -07004635 return -EINVAL;
4636 }
4637
4638 /* Ensure that the cursor is valid for the new mode before changing... */
4639 intel_crtc_update_cursor(crtc, true);
4640
4641 if (is_lvds && dev_priv->lvds_downclock_avail) {
Sean Paulcec2f352012-01-10 15:09:36 -08004642 /*
4643 * Ensure we match the reduced clock's P to the target clock.
4644 * If the clocks don't match, we can't switch the display clock
4645 * by using the FP0/FP1. In such case we will disable the LVDS
4646 * downclock feature.
4647 */
Eric Anholtf564048e2011-03-30 13:01:02 -07004648 has_reduced_clock = limit->find_pll(limit, crtc,
4649 dev_priv->lvds_downclock,
4650 refclk,
Sean Paulcec2f352012-01-10 15:09:36 -08004651 &clock,
Eric Anholtf564048e2011-03-30 13:01:02 -07004652 &reduced_clock);
Eric Anholtf564048e2011-03-30 13:01:02 -07004653 }
4654
Jesse Barnesc65d77d2011-12-15 12:30:36 -08004655 if (is_sdvo && is_tv)
4656 i9xx_adjust_sdvo_tv_clock(adjusted_mode, &clock);
Eric Anholtf564048e2011-03-30 13:01:02 -07004657
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004658 if (IS_GEN2(dev))
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05304659 i8xx_update_pll(crtc, adjusted_mode, &clock,
4660 has_reduced_clock ? &reduced_clock : NULL,
4661 num_connectors);
Jesse Barnesa0c4da242012-06-15 11:55:13 -07004662 else if (IS_VALLEYVIEW(dev))
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05304663 vlv_update_pll(crtc, mode, adjusted_mode, &clock,
4664 has_reduced_clock ? &reduced_clock : NULL,
4665 num_connectors);
Eric Anholtf564048e2011-03-30 13:01:02 -07004666 else
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004667 i9xx_update_pll(crtc, mode, adjusted_mode, &clock,
4668 has_reduced_clock ? &reduced_clock : NULL,
4669 num_connectors);
Eric Anholtf564048e2011-03-30 13:01:02 -07004670
4671 /* setup pipeconf */
4672 pipeconf = I915_READ(PIPECONF(pipe));
4673
4674 /* Set up the display plane register */
4675 dspcntr = DISPPLANE_GAMMA_ENABLE;
4676
Eric Anholt929c77f2011-03-30 13:01:04 -07004677 if (pipe == 0)
4678 dspcntr &= ~DISPPLANE_SEL_PIPE_MASK;
4679 else
4680 dspcntr |= DISPPLANE_SEL_PIPE_B;
Eric Anholtf564048e2011-03-30 13:01:02 -07004681
4682 if (pipe == 0 && INTEL_INFO(dev)->gen < 4) {
4683 /* Enable pixel doubling when the dot clock is > 90% of the (display)
4684 * core speed.
4685 *
4686 * XXX: No double-wide on 915GM pipe B. Is that the only reason for the
4687 * pipe == 0 check?
4688 */
4689 if (mode->clock >
4690 dev_priv->display.get_display_clock_speed(dev) * 9 / 10)
4691 pipeconf |= PIPECONF_DOUBLE_WIDE;
4692 else
4693 pipeconf &= ~PIPECONF_DOUBLE_WIDE;
4694 }
4695
Adam Jackson3b5c78a2011-12-13 15:41:00 -08004696 /* default to 8bpc */
4697 pipeconf &= ~(PIPECONF_BPP_MASK | PIPECONF_DITHER_EN);
4698 if (is_dp) {
Jani Nikula0c96c652012-09-26 18:43:10 +03004699 if (adjusted_mode->private_flags & INTEL_MODE_DP_FORCE_6BPC) {
Adam Jackson3b5c78a2011-12-13 15:41:00 -08004700 pipeconf |= PIPECONF_BPP_6 |
4701 PIPECONF_DITHER_EN |
4702 PIPECONF_DITHER_TYPE_SP;
4703 }
4704 }
4705
Gajanan Bhat19c03922012-09-27 19:13:07 +05304706 if (IS_VALLEYVIEW(dev) && intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP)) {
4707 if (adjusted_mode->private_flags & INTEL_MODE_DP_FORCE_6BPC) {
4708 pipeconf |= PIPECONF_BPP_6 |
4709 PIPECONF_ENABLE |
4710 I965_PIPECONF_ACTIVE;
4711 }
4712 }
4713
Eric Anholtf564048e2011-03-30 13:01:02 -07004714 DRM_DEBUG_KMS("Mode for pipe %c:\n", pipe == 0 ? 'A' : 'B');
4715 drm_mode_debug_printmodeline(mode);
4716
Jesse Barnesa7516a02011-12-15 12:30:37 -08004717 if (HAS_PIPE_CXSR(dev)) {
4718 if (intel_crtc->lowfreq_avail) {
Eric Anholtf564048e2011-03-30 13:01:02 -07004719 DRM_DEBUG_KMS("enabling CxSR downclocking\n");
4720 pipeconf |= PIPECONF_CXSR_DOWNCLOCK;
Jesse Barnesa7516a02011-12-15 12:30:37 -08004721 } else {
Eric Anholtf564048e2011-03-30 13:01:02 -07004722 DRM_DEBUG_KMS("disabling CxSR downclocking\n");
4723 pipeconf &= ~PIPECONF_CXSR_DOWNCLOCK;
4724 }
4725 }
4726
Keith Packard617cf882012-02-08 13:53:38 -08004727 pipeconf &= ~PIPECONF_INTERLACE_MASK;
Daniel Vetterdbb02572012-01-28 14:49:23 +01004728 if (!IS_GEN2(dev) &&
Paulo Zanonib0e77b92012-10-01 18:10:53 -03004729 adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE)
Eric Anholtf564048e2011-03-30 13:01:02 -07004730 pipeconf |= PIPECONF_INTERLACE_W_FIELD_INDICATION;
Paulo Zanonib0e77b92012-10-01 18:10:53 -03004731 else
Keith Packard617cf882012-02-08 13:53:38 -08004732 pipeconf |= PIPECONF_PROGRESSIVE;
Daniel Vetter0529a0d2012-01-28 14:49:24 +01004733
Paulo Zanonib0e77b92012-10-01 18:10:53 -03004734 intel_set_pipe_timings(intel_crtc, mode, adjusted_mode);
Eric Anholtf564048e2011-03-30 13:01:02 -07004735
4736 /* pipesrc and dspsize control the size that is scaled from,
4737 * which should always be the user's requested size.
4738 */
Eric Anholt929c77f2011-03-30 13:01:04 -07004739 I915_WRITE(DSPSIZE(plane),
4740 ((mode->vdisplay - 1) << 16) |
4741 (mode->hdisplay - 1));
4742 I915_WRITE(DSPPOS(plane), 0);
Eric Anholtf564048e2011-03-30 13:01:02 -07004743
Eric Anholtf564048e2011-03-30 13:01:02 -07004744 I915_WRITE(PIPECONF(pipe), pipeconf);
4745 POSTING_READ(PIPECONF(pipe));
Eric Anholt929c77f2011-03-30 13:01:04 -07004746 intel_enable_pipe(dev_priv, pipe, false);
Eric Anholtf564048e2011-03-30 13:01:02 -07004747
4748 intel_wait_for_vblank(dev, pipe);
4749
Eric Anholtf564048e2011-03-30 13:01:02 -07004750 I915_WRITE(DSPCNTR(plane), dspcntr);
4751 POSTING_READ(DSPCNTR(plane));
4752
Daniel Vetter94352cf2012-07-05 22:51:56 +02004753 ret = intel_pipe_set_base(crtc, x, y, fb);
Eric Anholtf564048e2011-03-30 13:01:02 -07004754
4755 intel_update_watermarks(dev);
4756
Eric Anholtf564048e2011-03-30 13:01:02 -07004757 return ret;
4758}
4759
Keith Packard9fb526d2011-09-26 22:24:57 -07004760/*
4761 * Initialize reference clocks when the driver loads
4762 */
4763void ironlake_init_pch_refclk(struct drm_device *dev)
Jesse Barnes13d83a62011-08-03 12:59:20 -07004764{
4765 struct drm_i915_private *dev_priv = dev->dev_private;
4766 struct drm_mode_config *mode_config = &dev->mode_config;
Jesse Barnes13d83a62011-08-03 12:59:20 -07004767 struct intel_encoder *encoder;
Jesse Barnes13d83a62011-08-03 12:59:20 -07004768 u32 temp;
4769 bool has_lvds = false;
Keith Packard199e5d72011-09-22 12:01:57 -07004770 bool has_cpu_edp = false;
4771 bool has_pch_edp = false;
4772 bool has_panel = false;
Keith Packard99eb6a02011-09-26 14:29:12 -07004773 bool has_ck505 = false;
4774 bool can_ssc = false;
Jesse Barnes13d83a62011-08-03 12:59:20 -07004775
4776 /* We need to take the global config into account */
Keith Packard199e5d72011-09-22 12:01:57 -07004777 list_for_each_entry(encoder, &mode_config->encoder_list,
4778 base.head) {
4779 switch (encoder->type) {
4780 case INTEL_OUTPUT_LVDS:
4781 has_panel = true;
4782 has_lvds = true;
4783 break;
4784 case INTEL_OUTPUT_EDP:
4785 has_panel = true;
4786 if (intel_encoder_is_pch_edp(&encoder->base))
4787 has_pch_edp = true;
4788 else
4789 has_cpu_edp = true;
4790 break;
Jesse Barnes13d83a62011-08-03 12:59:20 -07004791 }
4792 }
4793
Keith Packard99eb6a02011-09-26 14:29:12 -07004794 if (HAS_PCH_IBX(dev)) {
4795 has_ck505 = dev_priv->display_clock_mode;
4796 can_ssc = has_ck505;
4797 } else {
4798 has_ck505 = false;
4799 can_ssc = true;
4800 }
4801
4802 DRM_DEBUG_KMS("has_panel %d has_lvds %d has_pch_edp %d has_cpu_edp %d has_ck505 %d\n",
4803 has_panel, has_lvds, has_pch_edp, has_cpu_edp,
4804 has_ck505);
Jesse Barnes13d83a62011-08-03 12:59:20 -07004805
4806 /* Ironlake: try to setup display ref clock before DPLL
4807 * enabling. This is only under driver's control after
4808 * PCH B stepping, previous chipset stepping should be
4809 * ignoring this setting.
4810 */
4811 temp = I915_READ(PCH_DREF_CONTROL);
4812 /* Always enable nonspread source */
4813 temp &= ~DREF_NONSPREAD_SOURCE_MASK;
Jesse Barnes13d83a62011-08-03 12:59:20 -07004814
Keith Packard99eb6a02011-09-26 14:29:12 -07004815 if (has_ck505)
4816 temp |= DREF_NONSPREAD_CK505_ENABLE;
4817 else
4818 temp |= DREF_NONSPREAD_SOURCE_ENABLE;
Jesse Barnes13d83a62011-08-03 12:59:20 -07004819
Keith Packard199e5d72011-09-22 12:01:57 -07004820 if (has_panel) {
4821 temp &= ~DREF_SSC_SOURCE_MASK;
4822 temp |= DREF_SSC_SOURCE_ENABLE;
Jesse Barnes13d83a62011-08-03 12:59:20 -07004823
Keith Packard199e5d72011-09-22 12:01:57 -07004824 /* SSC must be turned on before enabling the CPU output */
Keith Packard99eb6a02011-09-26 14:29:12 -07004825 if (intel_panel_use_ssc(dev_priv) && can_ssc) {
Keith Packard199e5d72011-09-22 12:01:57 -07004826 DRM_DEBUG_KMS("Using SSC on panel\n");
Jesse Barnes13d83a62011-08-03 12:59:20 -07004827 temp |= DREF_SSC1_ENABLE;
Daniel Vettere77166b2012-03-30 22:14:05 +02004828 } else
4829 temp &= ~DREF_SSC1_ENABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07004830
4831 /* Get SSC going before enabling the outputs */
4832 I915_WRITE(PCH_DREF_CONTROL, temp);
4833 POSTING_READ(PCH_DREF_CONTROL);
4834 udelay(200);
4835
Jesse Barnes13d83a62011-08-03 12:59:20 -07004836 temp &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
4837
4838 /* Enable CPU source on CPU attached eDP */
Keith Packard199e5d72011-09-22 12:01:57 -07004839 if (has_cpu_edp) {
Keith Packard99eb6a02011-09-26 14:29:12 -07004840 if (intel_panel_use_ssc(dev_priv) && can_ssc) {
Keith Packard199e5d72011-09-22 12:01:57 -07004841 DRM_DEBUG_KMS("Using SSC on eDP\n");
Jesse Barnes13d83a62011-08-03 12:59:20 -07004842 temp |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD;
Keith Packard199e5d72011-09-22 12:01:57 -07004843 }
Jesse Barnes13d83a62011-08-03 12:59:20 -07004844 else
4845 temp |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD;
Keith Packard199e5d72011-09-22 12:01:57 -07004846 } else
4847 temp |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
4848
4849 I915_WRITE(PCH_DREF_CONTROL, temp);
4850 POSTING_READ(PCH_DREF_CONTROL);
4851 udelay(200);
4852 } else {
4853 DRM_DEBUG_KMS("Disabling SSC entirely\n");
4854
4855 temp &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
4856
4857 /* Turn off CPU output */
4858 temp |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
4859
4860 I915_WRITE(PCH_DREF_CONTROL, temp);
4861 POSTING_READ(PCH_DREF_CONTROL);
4862 udelay(200);
4863
4864 /* Turn off the SSC source */
4865 temp &= ~DREF_SSC_SOURCE_MASK;
4866 temp |= DREF_SSC_SOURCE_DISABLE;
4867
4868 /* Turn off SSC1 */
4869 temp &= ~ DREF_SSC1_ENABLE;
4870
Jesse Barnes13d83a62011-08-03 12:59:20 -07004871 I915_WRITE(PCH_DREF_CONTROL, temp);
4872 POSTING_READ(PCH_DREF_CONTROL);
4873 udelay(200);
4874 }
4875}
4876
Jesse Barnesd9d444c2011-09-02 13:03:05 -07004877static int ironlake_get_refclk(struct drm_crtc *crtc)
4878{
4879 struct drm_device *dev = crtc->dev;
4880 struct drm_i915_private *dev_priv = dev->dev_private;
4881 struct intel_encoder *encoder;
Jesse Barnesd9d444c2011-09-02 13:03:05 -07004882 struct intel_encoder *edp_encoder = NULL;
4883 int num_connectors = 0;
4884 bool is_lvds = false;
4885
Daniel Vetter6c2b7c12012-07-05 09:50:24 +02004886 for_each_encoder_on_crtc(dev, crtc, encoder) {
Jesse Barnesd9d444c2011-09-02 13:03:05 -07004887 switch (encoder->type) {
4888 case INTEL_OUTPUT_LVDS:
4889 is_lvds = true;
4890 break;
4891 case INTEL_OUTPUT_EDP:
4892 edp_encoder = encoder;
4893 break;
4894 }
4895 num_connectors++;
4896 }
4897
4898 if (is_lvds && intel_panel_use_ssc(dev_priv) && num_connectors < 2) {
4899 DRM_DEBUG_KMS("using SSC reference clock of %d MHz\n",
4900 dev_priv->lvds_ssc_freq);
4901 return dev_priv->lvds_ssc_freq * 1000;
4902 }
4903
4904 return 120000;
4905}
4906
Paulo Zanonic8203562012-09-12 10:06:29 -03004907static void ironlake_set_pipeconf(struct drm_crtc *crtc,
4908 struct drm_display_mode *adjusted_mode,
4909 bool dither)
4910{
4911 struct drm_i915_private *dev_priv = crtc->dev->dev_private;
4912 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4913 int pipe = intel_crtc->pipe;
4914 uint32_t val;
4915
4916 val = I915_READ(PIPECONF(pipe));
4917
4918 val &= ~PIPE_BPC_MASK;
4919 switch (intel_crtc->bpp) {
4920 case 18:
4921 val |= PIPE_6BPC;
4922 break;
4923 case 24:
4924 val |= PIPE_8BPC;
4925 break;
4926 case 30:
4927 val |= PIPE_10BPC;
4928 break;
4929 case 36:
4930 val |= PIPE_12BPC;
4931 break;
4932 default:
Paulo Zanonicc769b62012-09-20 18:36:03 -03004933 /* Case prevented by intel_choose_pipe_bpp_dither. */
4934 BUG();
Paulo Zanonic8203562012-09-12 10:06:29 -03004935 }
4936
4937 val &= ~(PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_MASK);
4938 if (dither)
4939 val |= (PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_SP);
4940
4941 val &= ~PIPECONF_INTERLACE_MASK;
4942 if (adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE)
4943 val |= PIPECONF_INTERLACED_ILK;
4944 else
4945 val |= PIPECONF_PROGRESSIVE;
4946
4947 I915_WRITE(PIPECONF(pipe), val);
4948 POSTING_READ(PIPECONF(pipe));
4949}
4950
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03004951static void haswell_set_pipeconf(struct drm_crtc *crtc,
4952 struct drm_display_mode *adjusted_mode,
4953 bool dither)
4954{
4955 struct drm_i915_private *dev_priv = crtc->dev->dev_private;
4956 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4957 int pipe = intel_crtc->pipe;
4958 uint32_t val;
4959
4960 val = I915_READ(PIPECONF(pipe));
4961
4962 val &= ~(PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_MASK);
4963 if (dither)
4964 val |= (PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_SP);
4965
4966 val &= ~PIPECONF_INTERLACE_MASK_HSW;
4967 if (adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE)
4968 val |= PIPECONF_INTERLACED_ILK;
4969 else
4970 val |= PIPECONF_PROGRESSIVE;
4971
4972 I915_WRITE(PIPECONF(pipe), val);
4973 POSTING_READ(PIPECONF(pipe));
4974}
4975
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03004976static bool ironlake_compute_clocks(struct drm_crtc *crtc,
4977 struct drm_display_mode *adjusted_mode,
4978 intel_clock_t *clock,
4979 bool *has_reduced_clock,
4980 intel_clock_t *reduced_clock)
4981{
4982 struct drm_device *dev = crtc->dev;
4983 struct drm_i915_private *dev_priv = dev->dev_private;
4984 struct intel_encoder *intel_encoder;
4985 int refclk;
4986 const intel_limit_t *limit;
4987 bool ret, is_sdvo = false, is_tv = false, is_lvds = false;
4988
4989 for_each_encoder_on_crtc(dev, crtc, intel_encoder) {
4990 switch (intel_encoder->type) {
4991 case INTEL_OUTPUT_LVDS:
4992 is_lvds = true;
4993 break;
4994 case INTEL_OUTPUT_SDVO:
4995 case INTEL_OUTPUT_HDMI:
4996 is_sdvo = true;
4997 if (intel_encoder->needs_tv_clock)
4998 is_tv = true;
4999 break;
5000 case INTEL_OUTPUT_TVOUT:
5001 is_tv = true;
5002 break;
5003 }
5004 }
5005
5006 refclk = ironlake_get_refclk(crtc);
5007
5008 /*
5009 * Returns a set of divisors for the desired target clock with the given
5010 * refclk, or FALSE. The returned values represent the clock equation:
5011 * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2.
5012 */
5013 limit = intel_limit(crtc, refclk);
5014 ret = limit->find_pll(limit, crtc, adjusted_mode->clock, refclk, NULL,
5015 clock);
5016 if (!ret)
5017 return false;
5018
5019 if (is_lvds && dev_priv->lvds_downclock_avail) {
5020 /*
5021 * Ensure we match the reduced clock's P to the target clock.
5022 * If the clocks don't match, we can't switch the display clock
5023 * by using the FP0/FP1. In such case we will disable the LVDS
5024 * downclock feature.
5025 */
5026 *has_reduced_clock = limit->find_pll(limit, crtc,
5027 dev_priv->lvds_downclock,
5028 refclk,
5029 clock,
5030 reduced_clock);
5031 }
5032
5033 if (is_sdvo && is_tv)
5034 i9xx_adjust_sdvo_tv_clock(adjusted_mode, clock);
5035
5036 return true;
5037}
5038
Paulo Zanonif48d8f22012-09-20 18:36:04 -03005039static void ironlake_set_m_n(struct drm_crtc *crtc,
5040 struct drm_display_mode *mode,
5041 struct drm_display_mode *adjusted_mode)
5042{
5043 struct drm_device *dev = crtc->dev;
5044 struct drm_i915_private *dev_priv = dev->dev_private;
5045 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5046 enum pipe pipe = intel_crtc->pipe;
5047 struct intel_encoder *intel_encoder, *edp_encoder = NULL;
5048 struct fdi_m_n m_n = {0};
5049 int target_clock, pixel_multiplier, lane, link_bw;
5050 bool is_dp = false, is_cpu_edp = false;
5051
5052 for_each_encoder_on_crtc(dev, crtc, intel_encoder) {
5053 switch (intel_encoder->type) {
5054 case INTEL_OUTPUT_DISPLAYPORT:
5055 is_dp = true;
5056 break;
5057 case INTEL_OUTPUT_EDP:
5058 is_dp = true;
5059 if (!intel_encoder_is_pch_edp(&intel_encoder->base))
5060 is_cpu_edp = true;
5061 edp_encoder = intel_encoder;
5062 break;
5063 }
5064 }
5065
5066 /* FDI link */
5067 pixel_multiplier = intel_mode_get_pixel_multiplier(adjusted_mode);
5068 lane = 0;
5069 /* CPU eDP doesn't require FDI link, so just set DP M/N
5070 according to current link config */
5071 if (is_cpu_edp) {
5072 intel_edp_link_config(edp_encoder, &lane, &link_bw);
5073 } else {
5074 /* FDI is a binary signal running at ~2.7GHz, encoding
5075 * each output octet as 10 bits. The actual frequency
5076 * is stored as a divider into a 100MHz clock, and the
5077 * mode pixel clock is stored in units of 1KHz.
5078 * Hence the bw of each lane in terms of the mode signal
5079 * is:
5080 */
5081 link_bw = intel_fdi_link_freq(dev) * MHz(100)/KHz(1)/10;
5082 }
5083
5084 /* [e]DP over FDI requires target mode clock instead of link clock. */
5085 if (edp_encoder)
5086 target_clock = intel_edp_target_clock(edp_encoder, mode);
5087 else if (is_dp)
5088 target_clock = mode->clock;
5089 else
5090 target_clock = adjusted_mode->clock;
5091
5092 if (!lane) {
5093 /*
5094 * Account for spread spectrum to avoid
5095 * oversubscribing the link. Max center spread
5096 * is 2.5%; use 5% for safety's sake.
5097 */
5098 u32 bps = target_clock * intel_crtc->bpp * 21 / 20;
5099 lane = bps / (link_bw * 8) + 1;
5100 }
5101
5102 intel_crtc->fdi_lanes = lane;
5103
5104 if (pixel_multiplier > 1)
5105 link_bw *= pixel_multiplier;
5106 ironlake_compute_m_n(intel_crtc->bpp, lane, target_clock, link_bw,
5107 &m_n);
5108
5109 I915_WRITE(PIPE_DATA_M1(pipe), TU_SIZE(m_n.tu) | m_n.gmch_m);
5110 I915_WRITE(PIPE_DATA_N1(pipe), m_n.gmch_n);
5111 I915_WRITE(PIPE_LINK_M1(pipe), m_n.link_m);
5112 I915_WRITE(PIPE_LINK_N1(pipe), m_n.link_n);
5113}
5114
Paulo Zanonide13a2e2012-09-20 18:36:05 -03005115static uint32_t ironlake_compute_dpll(struct intel_crtc *intel_crtc,
5116 struct drm_display_mode *adjusted_mode,
5117 intel_clock_t *clock, u32 fp)
5118{
5119 struct drm_crtc *crtc = &intel_crtc->base;
5120 struct drm_device *dev = crtc->dev;
5121 struct drm_i915_private *dev_priv = dev->dev_private;
5122 struct intel_encoder *intel_encoder;
5123 uint32_t dpll;
5124 int factor, pixel_multiplier, num_connectors = 0;
5125 bool is_lvds = false, is_sdvo = false, is_tv = false;
5126 bool is_dp = false, is_cpu_edp = false;
5127
5128 for_each_encoder_on_crtc(dev, crtc, intel_encoder) {
5129 switch (intel_encoder->type) {
5130 case INTEL_OUTPUT_LVDS:
5131 is_lvds = true;
5132 break;
5133 case INTEL_OUTPUT_SDVO:
5134 case INTEL_OUTPUT_HDMI:
5135 is_sdvo = true;
5136 if (intel_encoder->needs_tv_clock)
5137 is_tv = true;
5138 break;
5139 case INTEL_OUTPUT_TVOUT:
5140 is_tv = true;
5141 break;
5142 case INTEL_OUTPUT_DISPLAYPORT:
5143 is_dp = true;
5144 break;
5145 case INTEL_OUTPUT_EDP:
5146 is_dp = true;
5147 if (!intel_encoder_is_pch_edp(&intel_encoder->base))
5148 is_cpu_edp = true;
5149 break;
5150 }
5151
5152 num_connectors++;
5153 }
5154
5155 /* Enable autotuning of the PLL clock (if permissible) */
5156 factor = 21;
5157 if (is_lvds) {
5158 if ((intel_panel_use_ssc(dev_priv) &&
5159 dev_priv->lvds_ssc_freq == 100) ||
5160 (I915_READ(PCH_LVDS) & LVDS_CLKB_POWER_MASK) == LVDS_CLKB_POWER_UP)
5161 factor = 25;
5162 } else if (is_sdvo && is_tv)
5163 factor = 20;
5164
5165 if (clock->m < factor * clock->n)
5166 fp |= FP_CB_TUNE;
5167
5168 dpll = 0;
5169
5170 if (is_lvds)
5171 dpll |= DPLLB_MODE_LVDS;
5172 else
5173 dpll |= DPLLB_MODE_DAC_SERIAL;
5174 if (is_sdvo) {
5175 pixel_multiplier = intel_mode_get_pixel_multiplier(adjusted_mode);
5176 if (pixel_multiplier > 1) {
5177 dpll |= (pixel_multiplier - 1) << PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT;
5178 }
5179 dpll |= DPLL_DVO_HIGH_SPEED;
5180 }
5181 if (is_dp && !is_cpu_edp)
5182 dpll |= DPLL_DVO_HIGH_SPEED;
5183
5184 /* compute bitmask from p1 value */
5185 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
5186 /* also FPA1 */
5187 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
5188
5189 switch (clock->p2) {
5190 case 5:
5191 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
5192 break;
5193 case 7:
5194 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
5195 break;
5196 case 10:
5197 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
5198 break;
5199 case 14:
5200 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
5201 break;
5202 }
5203
5204 if (is_sdvo && is_tv)
5205 dpll |= PLL_REF_INPUT_TVCLKINBC;
5206 else if (is_tv)
5207 /* XXX: just matching BIOS for now */
5208 /* dpll |= PLL_REF_INPUT_TVCLKINBC; */
5209 dpll |= 3;
5210 else if (is_lvds && intel_panel_use_ssc(dev_priv) && num_connectors < 2)
5211 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
5212 else
5213 dpll |= PLL_REF_INPUT_DREFCLK;
5214
5215 return dpll;
5216}
5217
Eric Anholtf564048e2011-03-30 13:01:02 -07005218static int ironlake_crtc_mode_set(struct drm_crtc *crtc,
5219 struct drm_display_mode *mode,
5220 struct drm_display_mode *adjusted_mode,
5221 int x, int y,
Daniel Vetter94352cf2012-07-05 22:51:56 +02005222 struct drm_framebuffer *fb)
Jesse Barnes79e53942008-11-07 14:24:08 -08005223{
5224 struct drm_device *dev = crtc->dev;
5225 struct drm_i915_private *dev_priv = dev->dev_private;
5226 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5227 int pipe = intel_crtc->pipe;
Chris Wilson5c3b82e2009-02-11 13:25:09 +00005228 int plane = intel_crtc->plane;
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03005229 int num_connectors = 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08005230 intel_clock_t clock, reduced_clock;
Paulo Zanonia1f9e772012-09-12 10:06:32 -03005231 u32 dpll, fp = 0, fp2 = 0;
Paulo Zanonie2f12b02012-09-20 18:36:06 -03005232 bool ok, has_reduced_clock = false;
5233 bool is_lvds = false, is_dp = false, is_cpu_edp = false;
Paulo Zanonif48d8f22012-09-20 18:36:04 -03005234 struct intel_encoder *encoder;
Eric Anholtfae14982011-03-30 13:01:09 -07005235 u32 temp;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03005236 int ret;
Jesse Barnes5a354202011-06-24 12:19:22 -07005237 bool dither;
Jesse Barnes79e53942008-11-07 14:24:08 -08005238
Daniel Vetter6c2b7c12012-07-05 09:50:24 +02005239 for_each_encoder_on_crtc(dev, crtc, encoder) {
Jesse Barnes79e53942008-11-07 14:24:08 -08005240 switch (encoder->type) {
5241 case INTEL_OUTPUT_LVDS:
5242 is_lvds = true;
5243 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08005244 case INTEL_OUTPUT_DISPLAYPORT:
5245 is_dp = true;
5246 break;
5247 case INTEL_OUTPUT_EDP:
Jesse Barnese3aef172012-04-10 11:58:03 -07005248 is_dp = true;
Paulo Zanonie2f12b02012-09-20 18:36:06 -03005249 if (!intel_encoder_is_pch_edp(&encoder->base))
Jesse Barnese3aef172012-04-10 11:58:03 -07005250 is_cpu_edp = true;
Jesse Barnes79e53942008-11-07 14:24:08 -08005251 break;
5252 }
5253
Kristian Høgsberg43565a02009-02-13 20:56:52 -05005254 num_connectors++;
5255 }
5256
Paulo Zanoni5dc52982012-10-05 12:05:56 -03005257 WARN(!(HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev)),
5258 "Unexpected PCH type %d\n", INTEL_PCH_TYPE(dev));
5259
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03005260 ok = ironlake_compute_clocks(crtc, adjusted_mode, &clock,
5261 &has_reduced_clock, &reduced_clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08005262 if (!ok) {
5263 DRM_ERROR("Couldn't find PLL settings for mode!\n");
5264 return -EINVAL;
5265 }
5266
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01005267 /* Ensure that the cursor is valid for the new mode before changing... */
Chris Wilson6b383a72010-09-13 13:54:26 +01005268 intel_crtc_update_cursor(crtc, true);
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01005269
Eric Anholt8febb292011-03-30 13:01:07 -07005270 /* determine panel color depth */
Paulo Zanonicc769b62012-09-20 18:36:03 -03005271 dither = intel_choose_pipe_bpp_dither(crtc, fb, &intel_crtc->bpp, mode);
Paulo Zanonic8203562012-09-12 10:06:29 -03005272 if (is_lvds && dev_priv->lvds_dither)
5273 dither = true;
Eric Anholt8febb292011-03-30 13:01:07 -07005274
Eric Anholta07d6782011-03-30 13:01:08 -07005275 fp = clock.n << 16 | clock.m1 << 8 | clock.m2;
5276 if (has_reduced_clock)
5277 fp2 = reduced_clock.n << 16 | reduced_clock.m1 << 8 |
5278 reduced_clock.m2;
Jesse Barnes79e53942008-11-07 14:24:08 -08005279
Paulo Zanonide13a2e2012-09-20 18:36:05 -03005280 dpll = ironlake_compute_dpll(intel_crtc, adjusted_mode, &clock, fp);
Jesse Barnes79e53942008-11-07 14:24:08 -08005281
Jesse Barnesf7cb34d2011-10-12 10:49:14 -07005282 DRM_DEBUG_KMS("Mode for pipe %d:\n", pipe);
Jesse Barnes79e53942008-11-07 14:24:08 -08005283 drm_mode_debug_printmodeline(mode);
5284
Paulo Zanoni5dc52982012-10-05 12:05:56 -03005285 /* CPU eDP is the only output that doesn't need a PCH PLL of its own. */
5286 if (!is_cpu_edp) {
Jesse Barnesee7b9f92012-04-20 17:11:53 +01005287 struct intel_pch_pll *pll;
Chris Wilson5eddb702010-09-11 13:48:45 +01005288
Jesse Barnesee7b9f92012-04-20 17:11:53 +01005289 pll = intel_get_pch_pll(intel_crtc, dpll, fp);
5290 if (pll == NULL) {
5291 DRM_DEBUG_DRIVER("failed to find PLL for pipe %d\n",
5292 pipe);
Jesse Barnes4b645f12011-10-12 09:51:31 -07005293 return -EINVAL;
5294 }
Jesse Barnesee7b9f92012-04-20 17:11:53 +01005295 } else
5296 intel_put_pch_pll(intel_crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08005297
5298 /* The LVDS pin pair needs to be on before the DPLLs are enabled.
5299 * This is an exception to the general rule that mode_set doesn't turn
5300 * things on.
5301 */
5302 if (is_lvds) {
Eric Anholtfae14982011-03-30 13:01:09 -07005303 temp = I915_READ(PCH_LVDS);
Chris Wilson5eddb702010-09-11 13:48:45 +01005304 temp |= LVDS_PORT_EN | LVDS_A0A2_CLKA_POWER_UP;
Jesse Barnes7885d202012-01-12 14:51:17 -08005305 if (HAS_PCH_CPT(dev)) {
5306 temp &= ~PORT_TRANS_SEL_MASK;
Jesse Barnes4b645f12011-10-12 09:51:31 -07005307 temp |= PORT_TRANS_SEL_CPT(pipe);
Jesse Barnes7885d202012-01-12 14:51:17 -08005308 } else {
5309 if (pipe == 1)
5310 temp |= LVDS_PIPEB_SELECT;
5311 else
5312 temp &= ~LVDS_PIPEB_SELECT;
5313 }
Jesse Barnes4b645f12011-10-12 09:51:31 -07005314
Zhao Yakuia3e17eb2009-10-10 10:42:37 +08005315 /* set the corresponsding LVDS_BORDER bit */
Chris Wilson5eddb702010-09-11 13:48:45 +01005316 temp |= dev_priv->lvds_border_bits;
Jesse Barnes79e53942008-11-07 14:24:08 -08005317 /* Set the B0-B3 data pairs corresponding to whether we're going to
5318 * set the DPLLs for dual-channel mode or not.
5319 */
5320 if (clock.p2 == 7)
Chris Wilson5eddb702010-09-11 13:48:45 +01005321 temp |= LVDS_B0B3_POWER_UP | LVDS_CLKB_POWER_UP;
Jesse Barnes79e53942008-11-07 14:24:08 -08005322 else
Chris Wilson5eddb702010-09-11 13:48:45 +01005323 temp &= ~(LVDS_B0B3_POWER_UP | LVDS_CLKB_POWER_UP);
Jesse Barnes79e53942008-11-07 14:24:08 -08005324
5325 /* It would be nice to set 24 vs 18-bit mode (LVDS_A3_POWER_UP)
5326 * appropriately here, but we need to look more thoroughly into how
5327 * panels behave in the two modes.
5328 */
Chris Wilson284d5df2012-04-14 17:41:59 +01005329 temp &= ~(LVDS_HSYNC_POLARITY | LVDS_VSYNC_POLARITY);
Bryan Freedaa9b5002011-01-12 13:43:19 -08005330 if (adjusted_mode->flags & DRM_MODE_FLAG_NHSYNC)
Chris Wilson284d5df2012-04-14 17:41:59 +01005331 temp |= LVDS_HSYNC_POLARITY;
Bryan Freedaa9b5002011-01-12 13:43:19 -08005332 if (adjusted_mode->flags & DRM_MODE_FLAG_NVSYNC)
Chris Wilson284d5df2012-04-14 17:41:59 +01005333 temp |= LVDS_VSYNC_POLARITY;
Eric Anholtfae14982011-03-30 13:01:09 -07005334 I915_WRITE(PCH_LVDS, temp);
Jesse Barnes79e53942008-11-07 14:24:08 -08005335 }
Jesse Barnes434ed092010-09-07 14:48:06 -07005336
Jesse Barnese3aef172012-04-10 11:58:03 -07005337 if (is_dp && !is_cpu_edp) {
Keith Packarda4fc5ed2009-04-07 16:16:42 -07005338 intel_dp_set_m_n(crtc, mode, adjusted_mode);
Eric Anholt8febb292011-03-30 13:01:07 -07005339 } else {
Zhenyu Wang8db9d772010-04-07 16:15:54 +08005340 /* For non-DP output, clear any trans DP clock recovery setting.*/
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08005341 I915_WRITE(TRANSDATA_M1(pipe), 0);
5342 I915_WRITE(TRANSDATA_N1(pipe), 0);
5343 I915_WRITE(TRANSDPLINK_M1(pipe), 0);
5344 I915_WRITE(TRANSDPLINK_N1(pipe), 0);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08005345 }
Jesse Barnes79e53942008-11-07 14:24:08 -08005346
Jesse Barnesee7b9f92012-04-20 17:11:53 +01005347 if (intel_crtc->pch_pll) {
5348 I915_WRITE(intel_crtc->pch_pll->pll_reg, dpll);
Chris Wilson5eddb702010-09-11 13:48:45 +01005349
Zhenyu Wang32f9d652009-07-24 01:00:32 +08005350 /* Wait for the clocks to stabilize. */
Jesse Barnesee7b9f92012-04-20 17:11:53 +01005351 POSTING_READ(intel_crtc->pch_pll->pll_reg);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08005352 udelay(150);
5353
Eric Anholt8febb292011-03-30 13:01:07 -07005354 /* The pixel multiplier can only be updated once the
5355 * DPLL is enabled and the clocks are stable.
5356 *
5357 * So write it again.
5358 */
Jesse Barnesee7b9f92012-04-20 17:11:53 +01005359 I915_WRITE(intel_crtc->pch_pll->pll_reg, dpll);
Jesse Barnes79e53942008-11-07 14:24:08 -08005360 }
Jesse Barnes79e53942008-11-07 14:24:08 -08005361
Chris Wilson5eddb702010-09-11 13:48:45 +01005362 intel_crtc->lowfreq_avail = false;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01005363 if (intel_crtc->pch_pll) {
Jesse Barnes4b645f12011-10-12 09:51:31 -07005364 if (is_lvds && has_reduced_clock && i915_powersave) {
Jesse Barnesee7b9f92012-04-20 17:11:53 +01005365 I915_WRITE(intel_crtc->pch_pll->fp1_reg, fp2);
Jesse Barnes4b645f12011-10-12 09:51:31 -07005366 intel_crtc->lowfreq_avail = true;
Jesse Barnes4b645f12011-10-12 09:51:31 -07005367 } else {
Jesse Barnesee7b9f92012-04-20 17:11:53 +01005368 I915_WRITE(intel_crtc->pch_pll->fp1_reg, fp);
Jesse Barnes652c3932009-08-17 13:31:43 -07005369 }
5370 }
5371
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005372 intel_set_pipe_timings(intel_crtc, mode, adjusted_mode);
Zhenyu Wang2c072452009-06-05 15:38:42 +08005373
Paulo Zanonif48d8f22012-09-20 18:36:04 -03005374 ironlake_set_m_n(crtc, mode, adjusted_mode);
Zhenyu Wang2c072452009-06-05 15:38:42 +08005375
Jesse Barnese3aef172012-04-10 11:58:03 -07005376 if (is_cpu_edp)
Eric Anholt8febb292011-03-30 13:01:07 -07005377 ironlake_set_pll_edp(crtc, adjusted_mode->clock);
Zhenyu Wang2c072452009-06-05 15:38:42 +08005378
Paulo Zanonic8203562012-09-12 10:06:29 -03005379 ironlake_set_pipeconf(crtc, adjusted_mode, dither);
Jesse Barnes79e53942008-11-07 14:24:08 -08005380
Jesse Barnes9d0498a2010-08-18 13:20:54 -07005381 intel_wait_for_vblank(dev, pipe);
Jesse Barnes79e53942008-11-07 14:24:08 -08005382
Paulo Zanonia1f9e772012-09-12 10:06:32 -03005383 /* Set up the display plane register */
5384 I915_WRITE(DSPCNTR(plane), DISPPLANE_GAMMA_ENABLE);
Jesse Barnesb24e7172011-01-04 15:09:30 -08005385 POSTING_READ(DSPCNTR(plane));
Jesse Barnes79e53942008-11-07 14:24:08 -08005386
Daniel Vetter94352cf2012-07-05 22:51:56 +02005387 ret = intel_pipe_set_base(crtc, x, y, fb);
Shaohua Li7662c8b2009-06-26 11:23:55 +08005388
5389 intel_update_watermarks(dev);
5390
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03005391 intel_update_linetime_watermarks(dev, pipe, adjusted_mode);
5392
Chris Wilson1f803ee2009-06-06 09:45:59 +01005393 return ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08005394}
5395
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03005396static int haswell_crtc_mode_set(struct drm_crtc *crtc,
5397 struct drm_display_mode *mode,
5398 struct drm_display_mode *adjusted_mode,
5399 int x, int y,
5400 struct drm_framebuffer *fb)
5401{
5402 struct drm_device *dev = crtc->dev;
5403 struct drm_i915_private *dev_priv = dev->dev_private;
5404 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5405 int pipe = intel_crtc->pipe;
5406 int plane = intel_crtc->plane;
5407 int num_connectors = 0;
5408 intel_clock_t clock, reduced_clock;
Paulo Zanoni5dc52982012-10-05 12:05:56 -03005409 u32 dpll = 0, fp = 0, fp2 = 0;
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03005410 bool ok, has_reduced_clock = false;
5411 bool is_lvds = false, is_dp = false, is_cpu_edp = false;
5412 struct intel_encoder *encoder;
5413 u32 temp;
5414 int ret;
5415 bool dither;
5416
5417 for_each_encoder_on_crtc(dev, crtc, encoder) {
5418 switch (encoder->type) {
5419 case INTEL_OUTPUT_LVDS:
5420 is_lvds = true;
5421 break;
5422 case INTEL_OUTPUT_DISPLAYPORT:
5423 is_dp = true;
5424 break;
5425 case INTEL_OUTPUT_EDP:
5426 is_dp = true;
5427 if (!intel_encoder_is_pch_edp(&encoder->base))
5428 is_cpu_edp = true;
5429 break;
5430 }
5431
5432 num_connectors++;
5433 }
5434
Paulo Zanoni5dc52982012-10-05 12:05:56 -03005435 /* We are not sure yet this won't happen. */
5436 WARN(!HAS_PCH_LPT(dev), "Unexpected PCH type %d\n",
5437 INTEL_PCH_TYPE(dev));
5438
5439 WARN(num_connectors != 1, "%d connectors attached to pipe %c\n",
5440 num_connectors, pipe_name(pipe));
5441
Paulo Zanoni1ce42922012-10-05 12:06:01 -03005442 WARN_ON(I915_READ(PIPECONF(pipe)) &
5443 (PIPECONF_ENABLE | I965_PIPECONF_ACTIVE));
5444
5445 WARN_ON(I915_READ(DSPCNTR(plane)) & DISPLAY_PLANE_ENABLE);
5446
Paulo Zanoni6441ab52012-10-05 12:05:58 -03005447 if (!intel_ddi_pll_mode_set(crtc, adjusted_mode->clock))
5448 return -EINVAL;
5449
Paulo Zanoni5dc52982012-10-05 12:05:56 -03005450 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev)) {
5451 ok = ironlake_compute_clocks(crtc, adjusted_mode, &clock,
5452 &has_reduced_clock,
5453 &reduced_clock);
5454 if (!ok) {
5455 DRM_ERROR("Couldn't find PLL settings for mode!\n");
5456 return -EINVAL;
5457 }
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03005458 }
5459
5460 /* Ensure that the cursor is valid for the new mode before changing... */
5461 intel_crtc_update_cursor(crtc, true);
5462
5463 /* determine panel color depth */
5464 dither = intel_choose_pipe_bpp_dither(crtc, fb, &intel_crtc->bpp, mode);
5465 if (is_lvds && dev_priv->lvds_dither)
5466 dither = true;
5467
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03005468 DRM_DEBUG_KMS("Mode for pipe %d:\n", pipe);
5469 drm_mode_debug_printmodeline(mode);
5470
Paulo Zanoni5dc52982012-10-05 12:05:56 -03005471 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev)) {
5472 fp = clock.n << 16 | clock.m1 << 8 | clock.m2;
5473 if (has_reduced_clock)
5474 fp2 = reduced_clock.n << 16 | reduced_clock.m1 << 8 |
5475 reduced_clock.m2;
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03005476
Paulo Zanoni5dc52982012-10-05 12:05:56 -03005477 dpll = ironlake_compute_dpll(intel_crtc, adjusted_mode, &clock,
5478 fp);
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03005479
Paulo Zanoni5dc52982012-10-05 12:05:56 -03005480 /* CPU eDP is the only output that doesn't need a PCH PLL of its
5481 * own on pre-Haswell/LPT generation */
5482 if (!is_cpu_edp) {
5483 struct intel_pch_pll *pll;
5484
5485 pll = intel_get_pch_pll(intel_crtc, dpll, fp);
5486 if (pll == NULL) {
5487 DRM_DEBUG_DRIVER("failed to find PLL for pipe %d\n",
5488 pipe);
5489 return -EINVAL;
5490 }
5491 } else
5492 intel_put_pch_pll(intel_crtc);
5493
5494 /* The LVDS pin pair needs to be on before the DPLLs are
5495 * enabled. This is an exception to the general rule that
5496 * mode_set doesn't turn things on.
5497 */
5498 if (is_lvds) {
5499 temp = I915_READ(PCH_LVDS);
5500 temp |= LVDS_PORT_EN | LVDS_A0A2_CLKA_POWER_UP;
5501 if (HAS_PCH_CPT(dev)) {
5502 temp &= ~PORT_TRANS_SEL_MASK;
5503 temp |= PORT_TRANS_SEL_CPT(pipe);
5504 } else {
5505 if (pipe == 1)
5506 temp |= LVDS_PIPEB_SELECT;
5507 else
5508 temp &= ~LVDS_PIPEB_SELECT;
5509 }
5510
5511 /* set the corresponsding LVDS_BORDER bit */
5512 temp |= dev_priv->lvds_border_bits;
5513 /* Set the B0-B3 data pairs corresponding to whether
5514 * we're going to set the DPLLs for dual-channel mode or
5515 * not.
5516 */
5517 if (clock.p2 == 7)
5518 temp |= LVDS_B0B3_POWER_UP | LVDS_CLKB_POWER_UP;
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03005519 else
Paulo Zanoni5dc52982012-10-05 12:05:56 -03005520 temp &= ~(LVDS_B0B3_POWER_UP |
5521 LVDS_CLKB_POWER_UP);
5522
5523 /* It would be nice to set 24 vs 18-bit mode
5524 * (LVDS_A3_POWER_UP) appropriately here, but we need to
5525 * look more thoroughly into how panels behave in the
5526 * two modes.
5527 */
5528 temp &= ~(LVDS_HSYNC_POLARITY | LVDS_VSYNC_POLARITY);
5529 if (adjusted_mode->flags & DRM_MODE_FLAG_NHSYNC)
5530 temp |= LVDS_HSYNC_POLARITY;
5531 if (adjusted_mode->flags & DRM_MODE_FLAG_NVSYNC)
5532 temp |= LVDS_VSYNC_POLARITY;
5533 I915_WRITE(PCH_LVDS, temp);
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03005534 }
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03005535 }
5536
5537 if (is_dp && !is_cpu_edp) {
5538 intel_dp_set_m_n(crtc, mode, adjusted_mode);
5539 } else {
Paulo Zanoni5dc52982012-10-05 12:05:56 -03005540 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev)) {
5541 /* For non-DP output, clear any trans DP clock recovery
5542 * setting.*/
5543 I915_WRITE(TRANSDATA_M1(pipe), 0);
5544 I915_WRITE(TRANSDATA_N1(pipe), 0);
5545 I915_WRITE(TRANSDPLINK_M1(pipe), 0);
5546 I915_WRITE(TRANSDPLINK_N1(pipe), 0);
5547 }
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03005548 }
5549
5550 intel_crtc->lowfreq_avail = false;
Paulo Zanoni5dc52982012-10-05 12:05:56 -03005551 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev)) {
5552 if (intel_crtc->pch_pll) {
5553 I915_WRITE(intel_crtc->pch_pll->pll_reg, dpll);
5554
5555 /* Wait for the clocks to stabilize. */
5556 POSTING_READ(intel_crtc->pch_pll->pll_reg);
5557 udelay(150);
5558
5559 /* The pixel multiplier can only be updated once the
5560 * DPLL is enabled and the clocks are stable.
5561 *
5562 * So write it again.
5563 */
5564 I915_WRITE(intel_crtc->pch_pll->pll_reg, dpll);
5565 }
5566
5567 if (intel_crtc->pch_pll) {
5568 if (is_lvds && has_reduced_clock && i915_powersave) {
5569 I915_WRITE(intel_crtc->pch_pll->fp1_reg, fp2);
5570 intel_crtc->lowfreq_avail = true;
5571 } else {
5572 I915_WRITE(intel_crtc->pch_pll->fp1_reg, fp);
5573 }
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03005574 }
5575 }
5576
5577 intel_set_pipe_timings(intel_crtc, mode, adjusted_mode);
5578
Paulo Zanoni1eb8dfe2012-10-18 12:42:10 -03005579 if (!is_dp || is_cpu_edp)
5580 ironlake_set_m_n(crtc, mode, adjusted_mode);
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03005581
Paulo Zanoni5dc52982012-10-05 12:05:56 -03005582 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev))
5583 if (is_cpu_edp)
5584 ironlake_set_pll_edp(crtc, adjusted_mode->clock);
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03005585
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03005586 haswell_set_pipeconf(crtc, adjusted_mode, dither);
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03005587
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03005588 /* Set up the display plane register */
5589 I915_WRITE(DSPCNTR(plane), DISPPLANE_GAMMA_ENABLE);
5590 POSTING_READ(DSPCNTR(plane));
5591
5592 ret = intel_pipe_set_base(crtc, x, y, fb);
5593
5594 intel_update_watermarks(dev);
5595
5596 intel_update_linetime_watermarks(dev, pipe, adjusted_mode);
5597
5598 return ret;
5599}
5600
Eric Anholtf564048e2011-03-30 13:01:02 -07005601static int intel_crtc_mode_set(struct drm_crtc *crtc,
5602 struct drm_display_mode *mode,
5603 struct drm_display_mode *adjusted_mode,
5604 int x, int y,
Daniel Vetter94352cf2012-07-05 22:51:56 +02005605 struct drm_framebuffer *fb)
Eric Anholtf564048e2011-03-30 13:01:02 -07005606{
5607 struct drm_device *dev = crtc->dev;
5608 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholt0b701d22011-03-30 13:01:03 -07005609 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5610 int pipe = intel_crtc->pipe;
Eric Anholtf564048e2011-03-30 13:01:02 -07005611 int ret;
5612
Eric Anholt0b701d22011-03-30 13:01:03 -07005613 drm_vblank_pre_modeset(dev, pipe);
5614
Eric Anholtf564048e2011-03-30 13:01:02 -07005615 ret = dev_priv->display.crtc_mode_set(crtc, mode, adjusted_mode,
Daniel Vetter94352cf2012-07-05 22:51:56 +02005616 x, y, fb);
Jesse Barnes79e53942008-11-07 14:24:08 -08005617 drm_vblank_post_modeset(dev, pipe);
5618
5619 return ret;
5620}
5621
Wu Fengguang3a9627f2011-12-09 20:42:19 +08005622static bool intel_eld_uptodate(struct drm_connector *connector,
5623 int reg_eldv, uint32_t bits_eldv,
5624 int reg_elda, uint32_t bits_elda,
5625 int reg_edid)
5626{
5627 struct drm_i915_private *dev_priv = connector->dev->dev_private;
5628 uint8_t *eld = connector->eld;
5629 uint32_t i;
5630
5631 i = I915_READ(reg_eldv);
5632 i &= bits_eldv;
5633
5634 if (!eld[0])
5635 return !i;
5636
5637 if (!i)
5638 return false;
5639
5640 i = I915_READ(reg_elda);
5641 i &= ~bits_elda;
5642 I915_WRITE(reg_elda, i);
5643
5644 for (i = 0; i < eld[2]; i++)
5645 if (I915_READ(reg_edid) != *((uint32_t *)eld + i))
5646 return false;
5647
5648 return true;
5649}
5650
Wu Fengguange0dac652011-09-05 14:25:34 +08005651static void g4x_write_eld(struct drm_connector *connector,
5652 struct drm_crtc *crtc)
5653{
5654 struct drm_i915_private *dev_priv = connector->dev->dev_private;
5655 uint8_t *eld = connector->eld;
5656 uint32_t eldv;
5657 uint32_t len;
5658 uint32_t i;
5659
5660 i = I915_READ(G4X_AUD_VID_DID);
5661
5662 if (i == INTEL_AUDIO_DEVBLC || i == INTEL_AUDIO_DEVCL)
5663 eldv = G4X_ELDV_DEVCL_DEVBLC;
5664 else
5665 eldv = G4X_ELDV_DEVCTG;
5666
Wu Fengguang3a9627f2011-12-09 20:42:19 +08005667 if (intel_eld_uptodate(connector,
5668 G4X_AUD_CNTL_ST, eldv,
5669 G4X_AUD_CNTL_ST, G4X_ELD_ADDR,
5670 G4X_HDMIW_HDMIEDID))
5671 return;
5672
Wu Fengguange0dac652011-09-05 14:25:34 +08005673 i = I915_READ(G4X_AUD_CNTL_ST);
5674 i &= ~(eldv | G4X_ELD_ADDR);
5675 len = (i >> 9) & 0x1f; /* ELD buffer size */
5676 I915_WRITE(G4X_AUD_CNTL_ST, i);
5677
5678 if (!eld[0])
5679 return;
5680
5681 len = min_t(uint8_t, eld[2], len);
5682 DRM_DEBUG_DRIVER("ELD size %d\n", len);
5683 for (i = 0; i < len; i++)
5684 I915_WRITE(G4X_HDMIW_HDMIEDID, *((uint32_t *)eld + i));
5685
5686 i = I915_READ(G4X_AUD_CNTL_ST);
5687 i |= eldv;
5688 I915_WRITE(G4X_AUD_CNTL_ST, i);
5689}
5690
Wang Xingchao83358c852012-08-16 22:43:37 +08005691static void haswell_write_eld(struct drm_connector *connector,
5692 struct drm_crtc *crtc)
5693{
5694 struct drm_i915_private *dev_priv = connector->dev->dev_private;
5695 uint8_t *eld = connector->eld;
5696 struct drm_device *dev = crtc->dev;
5697 uint32_t eldv;
5698 uint32_t i;
5699 int len;
5700 int pipe = to_intel_crtc(crtc)->pipe;
5701 int tmp;
5702
5703 int hdmiw_hdmiedid = HSW_AUD_EDID_DATA(pipe);
5704 int aud_cntl_st = HSW_AUD_DIP_ELD_CTRL(pipe);
5705 int aud_config = HSW_AUD_CFG(pipe);
5706 int aud_cntrl_st2 = HSW_AUD_PIN_ELD_CP_VLD;
5707
5708
5709 DRM_DEBUG_DRIVER("HDMI: Haswell Audio initialize....\n");
5710
5711 /* Audio output enable */
5712 DRM_DEBUG_DRIVER("HDMI audio: enable codec\n");
5713 tmp = I915_READ(aud_cntrl_st2);
5714 tmp |= (AUDIO_OUTPUT_ENABLE_A << (pipe * 4));
5715 I915_WRITE(aud_cntrl_st2, tmp);
5716
5717 /* Wait for 1 vertical blank */
5718 intel_wait_for_vblank(dev, pipe);
5719
5720 /* Set ELD valid state */
5721 tmp = I915_READ(aud_cntrl_st2);
5722 DRM_DEBUG_DRIVER("HDMI audio: pin eld vld status=0x%8x\n", tmp);
5723 tmp |= (AUDIO_ELD_VALID_A << (pipe * 4));
5724 I915_WRITE(aud_cntrl_st2, tmp);
5725 tmp = I915_READ(aud_cntrl_st2);
5726 DRM_DEBUG_DRIVER("HDMI audio: eld vld status=0x%8x\n", tmp);
5727
5728 /* Enable HDMI mode */
5729 tmp = I915_READ(aud_config);
5730 DRM_DEBUG_DRIVER("HDMI audio: audio conf: 0x%8x\n", tmp);
5731 /* clear N_programing_enable and N_value_index */
5732 tmp &= ~(AUD_CONFIG_N_VALUE_INDEX | AUD_CONFIG_N_PROG_ENABLE);
5733 I915_WRITE(aud_config, tmp);
5734
5735 DRM_DEBUG_DRIVER("ELD on pipe %c\n", pipe_name(pipe));
5736
5737 eldv = AUDIO_ELD_VALID_A << (pipe * 4);
5738
5739 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT)) {
5740 DRM_DEBUG_DRIVER("ELD: DisplayPort detected\n");
5741 eld[5] |= (1 << 2); /* Conn_Type, 0x1 = DisplayPort */
5742 I915_WRITE(aud_config, AUD_CONFIG_N_VALUE_INDEX); /* 0x1 = DP */
5743 } else
5744 I915_WRITE(aud_config, 0);
5745
5746 if (intel_eld_uptodate(connector,
5747 aud_cntrl_st2, eldv,
5748 aud_cntl_st, IBX_ELD_ADDRESS,
5749 hdmiw_hdmiedid))
5750 return;
5751
5752 i = I915_READ(aud_cntrl_st2);
5753 i &= ~eldv;
5754 I915_WRITE(aud_cntrl_st2, i);
5755
5756 if (!eld[0])
5757 return;
5758
5759 i = I915_READ(aud_cntl_st);
5760 i &= ~IBX_ELD_ADDRESS;
5761 I915_WRITE(aud_cntl_st, i);
5762 i = (i >> 29) & DIP_PORT_SEL_MASK; /* DIP_Port_Select, 0x1 = PortB */
5763 DRM_DEBUG_DRIVER("port num:%d\n", i);
5764
5765 len = min_t(uint8_t, eld[2], 21); /* 84 bytes of hw ELD buffer */
5766 DRM_DEBUG_DRIVER("ELD size %d\n", len);
5767 for (i = 0; i < len; i++)
5768 I915_WRITE(hdmiw_hdmiedid, *((uint32_t *)eld + i));
5769
5770 i = I915_READ(aud_cntrl_st2);
5771 i |= eldv;
5772 I915_WRITE(aud_cntrl_st2, i);
5773
5774}
5775
Wu Fengguange0dac652011-09-05 14:25:34 +08005776static void ironlake_write_eld(struct drm_connector *connector,
5777 struct drm_crtc *crtc)
5778{
5779 struct drm_i915_private *dev_priv = connector->dev->dev_private;
5780 uint8_t *eld = connector->eld;
5781 uint32_t eldv;
5782 uint32_t i;
5783 int len;
5784 int hdmiw_hdmiedid;
Wu Fengguangb6daa022012-01-06 14:41:31 -06005785 int aud_config;
Wu Fengguange0dac652011-09-05 14:25:34 +08005786 int aud_cntl_st;
5787 int aud_cntrl_st2;
Wang Xingchao9b138a82012-08-09 16:52:18 +08005788 int pipe = to_intel_crtc(crtc)->pipe;
Wu Fengguange0dac652011-09-05 14:25:34 +08005789
Wu Fengguangb3f33cb2011-12-09 20:42:17 +08005790 if (HAS_PCH_IBX(connector->dev)) {
Wang Xingchao9b138a82012-08-09 16:52:18 +08005791 hdmiw_hdmiedid = IBX_HDMIW_HDMIEDID(pipe);
5792 aud_config = IBX_AUD_CFG(pipe);
5793 aud_cntl_st = IBX_AUD_CNTL_ST(pipe);
Wu Fengguang1202b4c62011-12-09 20:42:18 +08005794 aud_cntrl_st2 = IBX_AUD_CNTL_ST2;
Wu Fengguange0dac652011-09-05 14:25:34 +08005795 } else {
Wang Xingchao9b138a82012-08-09 16:52:18 +08005796 hdmiw_hdmiedid = CPT_HDMIW_HDMIEDID(pipe);
5797 aud_config = CPT_AUD_CFG(pipe);
5798 aud_cntl_st = CPT_AUD_CNTL_ST(pipe);
Wu Fengguang1202b4c62011-12-09 20:42:18 +08005799 aud_cntrl_st2 = CPT_AUD_CNTRL_ST2;
Wu Fengguange0dac652011-09-05 14:25:34 +08005800 }
5801
Wang Xingchao9b138a82012-08-09 16:52:18 +08005802 DRM_DEBUG_DRIVER("ELD on pipe %c\n", pipe_name(pipe));
Wu Fengguange0dac652011-09-05 14:25:34 +08005803
5804 i = I915_READ(aud_cntl_st);
Wang Xingchao9b138a82012-08-09 16:52:18 +08005805 i = (i >> 29) & DIP_PORT_SEL_MASK; /* DIP_Port_Select, 0x1 = PortB */
Wu Fengguange0dac652011-09-05 14:25:34 +08005806 if (!i) {
5807 DRM_DEBUG_DRIVER("Audio directed to unknown port\n");
5808 /* operate blindly on all ports */
Wu Fengguang1202b4c62011-12-09 20:42:18 +08005809 eldv = IBX_ELD_VALIDB;
5810 eldv |= IBX_ELD_VALIDB << 4;
5811 eldv |= IBX_ELD_VALIDB << 8;
Wu Fengguange0dac652011-09-05 14:25:34 +08005812 } else {
5813 DRM_DEBUG_DRIVER("ELD on port %c\n", 'A' + i);
Wu Fengguang1202b4c62011-12-09 20:42:18 +08005814 eldv = IBX_ELD_VALIDB << ((i - 1) * 4);
Wu Fengguange0dac652011-09-05 14:25:34 +08005815 }
5816
Wu Fengguang3a9627f2011-12-09 20:42:19 +08005817 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT)) {
5818 DRM_DEBUG_DRIVER("ELD: DisplayPort detected\n");
5819 eld[5] |= (1 << 2); /* Conn_Type, 0x1 = DisplayPort */
Wu Fengguangb6daa022012-01-06 14:41:31 -06005820 I915_WRITE(aud_config, AUD_CONFIG_N_VALUE_INDEX); /* 0x1 = DP */
5821 } else
5822 I915_WRITE(aud_config, 0);
Wu Fengguang3a9627f2011-12-09 20:42:19 +08005823
5824 if (intel_eld_uptodate(connector,
5825 aud_cntrl_st2, eldv,
5826 aud_cntl_st, IBX_ELD_ADDRESS,
5827 hdmiw_hdmiedid))
5828 return;
5829
Wu Fengguange0dac652011-09-05 14:25:34 +08005830 i = I915_READ(aud_cntrl_st2);
5831 i &= ~eldv;
5832 I915_WRITE(aud_cntrl_st2, i);
5833
5834 if (!eld[0])
5835 return;
5836
Wu Fengguange0dac652011-09-05 14:25:34 +08005837 i = I915_READ(aud_cntl_st);
Wu Fengguang1202b4c62011-12-09 20:42:18 +08005838 i &= ~IBX_ELD_ADDRESS;
Wu Fengguange0dac652011-09-05 14:25:34 +08005839 I915_WRITE(aud_cntl_st, i);
5840
5841 len = min_t(uint8_t, eld[2], 21); /* 84 bytes of hw ELD buffer */
5842 DRM_DEBUG_DRIVER("ELD size %d\n", len);
5843 for (i = 0; i < len; i++)
5844 I915_WRITE(hdmiw_hdmiedid, *((uint32_t *)eld + i));
5845
5846 i = I915_READ(aud_cntrl_st2);
5847 i |= eldv;
5848 I915_WRITE(aud_cntrl_st2, i);
5849}
5850
5851void intel_write_eld(struct drm_encoder *encoder,
5852 struct drm_display_mode *mode)
5853{
5854 struct drm_crtc *crtc = encoder->crtc;
5855 struct drm_connector *connector;
5856 struct drm_device *dev = encoder->dev;
5857 struct drm_i915_private *dev_priv = dev->dev_private;
5858
5859 connector = drm_select_eld(encoder, mode);
5860 if (!connector)
5861 return;
5862
5863 DRM_DEBUG_DRIVER("ELD on [CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
5864 connector->base.id,
5865 drm_get_connector_name(connector),
5866 connector->encoder->base.id,
5867 drm_get_encoder_name(connector->encoder));
5868
5869 connector->eld[6] = drm_av_sync_delay(connector, mode) / 2;
5870
5871 if (dev_priv->display.write_eld)
5872 dev_priv->display.write_eld(connector, crtc);
5873}
5874
Jesse Barnes79e53942008-11-07 14:24:08 -08005875/** Loads the palette/gamma unit for the CRTC with the prepared values */
5876void intel_crtc_load_lut(struct drm_crtc *crtc)
5877{
5878 struct drm_device *dev = crtc->dev;
5879 struct drm_i915_private *dev_priv = dev->dev_private;
5880 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08005881 int palreg = PALETTE(intel_crtc->pipe);
Jesse Barnes79e53942008-11-07 14:24:08 -08005882 int i;
5883
5884 /* The clocks have to be on to load the palette. */
Alban Browaeysaed3f092012-02-24 17:12:45 +00005885 if (!crtc->enabled || !intel_crtc->active)
Jesse Barnes79e53942008-11-07 14:24:08 -08005886 return;
5887
Adam Jacksonf2b115e2009-12-03 17:14:42 -05005888 /* use legacy palette for Ironlake */
Eric Anholtbad720f2009-10-22 16:11:14 -07005889 if (HAS_PCH_SPLIT(dev))
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08005890 palreg = LGC_PALETTE(intel_crtc->pipe);
Zhenyu Wang2c072452009-06-05 15:38:42 +08005891
Jesse Barnes79e53942008-11-07 14:24:08 -08005892 for (i = 0; i < 256; i++) {
5893 I915_WRITE(palreg + 4 * i,
5894 (intel_crtc->lut_r[i] << 16) |
5895 (intel_crtc->lut_g[i] << 8) |
5896 intel_crtc->lut_b[i]);
5897 }
5898}
5899
Chris Wilson560b85b2010-08-07 11:01:38 +01005900static void i845_update_cursor(struct drm_crtc *crtc, u32 base)
5901{
5902 struct drm_device *dev = crtc->dev;
5903 struct drm_i915_private *dev_priv = dev->dev_private;
5904 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5905 bool visible = base != 0;
5906 u32 cntl;
5907
5908 if (intel_crtc->cursor_visible == visible)
5909 return;
5910
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08005911 cntl = I915_READ(_CURACNTR);
Chris Wilson560b85b2010-08-07 11:01:38 +01005912 if (visible) {
5913 /* On these chipsets we can only modify the base whilst
5914 * the cursor is disabled.
5915 */
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08005916 I915_WRITE(_CURABASE, base);
Chris Wilson560b85b2010-08-07 11:01:38 +01005917
5918 cntl &= ~(CURSOR_FORMAT_MASK);
5919 /* XXX width must be 64, stride 256 => 0x00 << 28 */
5920 cntl |= CURSOR_ENABLE |
5921 CURSOR_GAMMA_ENABLE |
5922 CURSOR_FORMAT_ARGB;
5923 } else
5924 cntl &= ~(CURSOR_ENABLE | CURSOR_GAMMA_ENABLE);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08005925 I915_WRITE(_CURACNTR, cntl);
Chris Wilson560b85b2010-08-07 11:01:38 +01005926
5927 intel_crtc->cursor_visible = visible;
5928}
5929
5930static void i9xx_update_cursor(struct drm_crtc *crtc, u32 base)
5931{
5932 struct drm_device *dev = crtc->dev;
5933 struct drm_i915_private *dev_priv = dev->dev_private;
5934 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5935 int pipe = intel_crtc->pipe;
5936 bool visible = base != 0;
5937
5938 if (intel_crtc->cursor_visible != visible) {
Jesse Barnes548f2452011-02-17 10:40:53 -08005939 uint32_t cntl = I915_READ(CURCNTR(pipe));
Chris Wilson560b85b2010-08-07 11:01:38 +01005940 if (base) {
5941 cntl &= ~(CURSOR_MODE | MCURSOR_PIPE_SELECT);
5942 cntl |= CURSOR_MODE_64_ARGB_AX | MCURSOR_GAMMA_ENABLE;
5943 cntl |= pipe << 28; /* Connect to correct pipe */
5944 } else {
5945 cntl &= ~(CURSOR_MODE | MCURSOR_GAMMA_ENABLE);
5946 cntl |= CURSOR_MODE_DISABLE;
5947 }
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08005948 I915_WRITE(CURCNTR(pipe), cntl);
Chris Wilson560b85b2010-08-07 11:01:38 +01005949
5950 intel_crtc->cursor_visible = visible;
5951 }
5952 /* and commit changes on next vblank */
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08005953 I915_WRITE(CURBASE(pipe), base);
Chris Wilson560b85b2010-08-07 11:01:38 +01005954}
5955
Jesse Barnes65a21cd2011-10-12 11:10:21 -07005956static void ivb_update_cursor(struct drm_crtc *crtc, u32 base)
5957{
5958 struct drm_device *dev = crtc->dev;
5959 struct drm_i915_private *dev_priv = dev->dev_private;
5960 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5961 int pipe = intel_crtc->pipe;
5962 bool visible = base != 0;
5963
5964 if (intel_crtc->cursor_visible != visible) {
5965 uint32_t cntl = I915_READ(CURCNTR_IVB(pipe));
5966 if (base) {
5967 cntl &= ~CURSOR_MODE;
5968 cntl |= CURSOR_MODE_64_ARGB_AX | MCURSOR_GAMMA_ENABLE;
5969 } else {
5970 cntl &= ~(CURSOR_MODE | MCURSOR_GAMMA_ENABLE);
5971 cntl |= CURSOR_MODE_DISABLE;
5972 }
5973 I915_WRITE(CURCNTR_IVB(pipe), cntl);
5974
5975 intel_crtc->cursor_visible = visible;
5976 }
5977 /* and commit changes on next vblank */
5978 I915_WRITE(CURBASE_IVB(pipe), base);
5979}
5980
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01005981/* If no-part of the cursor is visible on the framebuffer, then the GPU may hang... */
Chris Wilson6b383a72010-09-13 13:54:26 +01005982static void intel_crtc_update_cursor(struct drm_crtc *crtc,
5983 bool on)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01005984{
5985 struct drm_device *dev = crtc->dev;
5986 struct drm_i915_private *dev_priv = dev->dev_private;
5987 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5988 int pipe = intel_crtc->pipe;
5989 int x = intel_crtc->cursor_x;
5990 int y = intel_crtc->cursor_y;
Chris Wilson560b85b2010-08-07 11:01:38 +01005991 u32 base, pos;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01005992 bool visible;
5993
5994 pos = 0;
5995
Chris Wilson6b383a72010-09-13 13:54:26 +01005996 if (on && crtc->enabled && crtc->fb) {
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01005997 base = intel_crtc->cursor_addr;
5998 if (x > (int) crtc->fb->width)
5999 base = 0;
6000
6001 if (y > (int) crtc->fb->height)
6002 base = 0;
6003 } else
6004 base = 0;
6005
6006 if (x < 0) {
6007 if (x + intel_crtc->cursor_width < 0)
6008 base = 0;
6009
6010 pos |= CURSOR_POS_SIGN << CURSOR_X_SHIFT;
6011 x = -x;
6012 }
6013 pos |= x << CURSOR_X_SHIFT;
6014
6015 if (y < 0) {
6016 if (y + intel_crtc->cursor_height < 0)
6017 base = 0;
6018
6019 pos |= CURSOR_POS_SIGN << CURSOR_Y_SHIFT;
6020 y = -y;
6021 }
6022 pos |= y << CURSOR_Y_SHIFT;
6023
6024 visible = base != 0;
Chris Wilson560b85b2010-08-07 11:01:38 +01006025 if (!visible && !intel_crtc->cursor_visible)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01006026 return;
6027
Eugeni Dodonov0cd83aa2012-04-13 17:08:48 -03006028 if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev)) {
Jesse Barnes65a21cd2011-10-12 11:10:21 -07006029 I915_WRITE(CURPOS_IVB(pipe), pos);
6030 ivb_update_cursor(crtc, base);
6031 } else {
6032 I915_WRITE(CURPOS(pipe), pos);
6033 if (IS_845G(dev) || IS_I865G(dev))
6034 i845_update_cursor(crtc, base);
6035 else
6036 i9xx_update_cursor(crtc, base);
6037 }
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01006038}
6039
Jesse Barnes79e53942008-11-07 14:24:08 -08006040static int intel_crtc_cursor_set(struct drm_crtc *crtc,
Chris Wilson05394f32010-11-08 19:18:58 +00006041 struct drm_file *file,
Jesse Barnes79e53942008-11-07 14:24:08 -08006042 uint32_t handle,
6043 uint32_t width, uint32_t height)
6044{
6045 struct drm_device *dev = crtc->dev;
6046 struct drm_i915_private *dev_priv = dev->dev_private;
6047 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Chris Wilson05394f32010-11-08 19:18:58 +00006048 struct drm_i915_gem_object *obj;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01006049 uint32_t addr;
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05006050 int ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08006051
Jesse Barnes79e53942008-11-07 14:24:08 -08006052 /* if we want to turn off the cursor ignore width and height */
6053 if (!handle) {
Zhao Yakui28c97732009-10-09 11:39:41 +08006054 DRM_DEBUG_KMS("cursor off\n");
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05006055 addr = 0;
Chris Wilson05394f32010-11-08 19:18:58 +00006056 obj = NULL;
Pierre Willenbrock50044172009-02-23 10:12:15 +10006057 mutex_lock(&dev->struct_mutex);
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05006058 goto finish;
Jesse Barnes79e53942008-11-07 14:24:08 -08006059 }
6060
6061 /* Currently we only support 64x64 cursors */
6062 if (width != 64 || height != 64) {
6063 DRM_ERROR("we currently only support 64x64 cursors\n");
6064 return -EINVAL;
6065 }
6066
Chris Wilson05394f32010-11-08 19:18:58 +00006067 obj = to_intel_bo(drm_gem_object_lookup(dev, file, handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00006068 if (&obj->base == NULL)
Jesse Barnes79e53942008-11-07 14:24:08 -08006069 return -ENOENT;
6070
Chris Wilson05394f32010-11-08 19:18:58 +00006071 if (obj->base.size < width * height * 4) {
Jesse Barnes79e53942008-11-07 14:24:08 -08006072 DRM_ERROR("buffer is to small\n");
Dave Airlie34b8686e2009-01-15 14:03:07 +10006073 ret = -ENOMEM;
6074 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -08006075 }
6076
Dave Airlie71acb5e2008-12-30 20:31:46 +10006077 /* we only need to pin inside GTT if cursor is non-phy */
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05006078 mutex_lock(&dev->struct_mutex);
Kristian Høgsbergb295d1b2009-12-16 15:16:17 -05006079 if (!dev_priv->info->cursor_needs_physical) {
Chris Wilsond9e86c02010-11-10 16:40:20 +00006080 if (obj->tiling_mode) {
6081 DRM_ERROR("cursor cannot be tiled\n");
6082 ret = -EINVAL;
6083 goto fail_locked;
6084 }
6085
Chris Wilson2da3b9b2011-04-14 09:41:17 +01006086 ret = i915_gem_object_pin_to_display_plane(obj, 0, NULL);
Chris Wilsone7b526b2010-06-02 08:30:48 +01006087 if (ret) {
6088 DRM_ERROR("failed to move cursor bo into the GTT\n");
Chris Wilson2da3b9b2011-04-14 09:41:17 +01006089 goto fail_locked;
Chris Wilsone7b526b2010-06-02 08:30:48 +01006090 }
6091
Chris Wilsond9e86c02010-11-10 16:40:20 +00006092 ret = i915_gem_object_put_fence(obj);
6093 if (ret) {
Chris Wilson2da3b9b2011-04-14 09:41:17 +01006094 DRM_ERROR("failed to release fence for cursor");
Chris Wilsond9e86c02010-11-10 16:40:20 +00006095 goto fail_unpin;
6096 }
6097
Chris Wilson05394f32010-11-08 19:18:58 +00006098 addr = obj->gtt_offset;
Dave Airlie71acb5e2008-12-30 20:31:46 +10006099 } else {
Chris Wilson6eeefaf2010-08-07 11:01:39 +01006100 int align = IS_I830(dev) ? 16 * 1024 : 256;
Chris Wilson05394f32010-11-08 19:18:58 +00006101 ret = i915_gem_attach_phys_object(dev, obj,
Chris Wilson6eeefaf2010-08-07 11:01:39 +01006102 (intel_crtc->pipe == 0) ? I915_GEM_PHYS_CURSOR_0 : I915_GEM_PHYS_CURSOR_1,
6103 align);
Dave Airlie71acb5e2008-12-30 20:31:46 +10006104 if (ret) {
6105 DRM_ERROR("failed to attach phys object\n");
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05006106 goto fail_locked;
Dave Airlie71acb5e2008-12-30 20:31:46 +10006107 }
Chris Wilson05394f32010-11-08 19:18:58 +00006108 addr = obj->phys_obj->handle->busaddr;
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05006109 }
6110
Chris Wilsona6c45cf2010-09-17 00:32:17 +01006111 if (IS_GEN2(dev))
Jesse Barnes14b603912009-05-20 16:47:08 -04006112 I915_WRITE(CURSIZE, (height << 12) | width);
6113
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05006114 finish:
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05006115 if (intel_crtc->cursor_bo) {
Kristian Høgsbergb295d1b2009-12-16 15:16:17 -05006116 if (dev_priv->info->cursor_needs_physical) {
Chris Wilson05394f32010-11-08 19:18:58 +00006117 if (intel_crtc->cursor_bo != obj)
Dave Airlie71acb5e2008-12-30 20:31:46 +10006118 i915_gem_detach_phys_object(dev, intel_crtc->cursor_bo);
6119 } else
6120 i915_gem_object_unpin(intel_crtc->cursor_bo);
Chris Wilson05394f32010-11-08 19:18:58 +00006121 drm_gem_object_unreference(&intel_crtc->cursor_bo->base);
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05006122 }
Jesse Barnes80824002009-09-10 15:28:06 -07006123
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05006124 mutex_unlock(&dev->struct_mutex);
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05006125
6126 intel_crtc->cursor_addr = addr;
Chris Wilson05394f32010-11-08 19:18:58 +00006127 intel_crtc->cursor_bo = obj;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01006128 intel_crtc->cursor_width = width;
6129 intel_crtc->cursor_height = height;
6130
Chris Wilson6b383a72010-09-13 13:54:26 +01006131 intel_crtc_update_cursor(crtc, true);
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05006132
Jesse Barnes79e53942008-11-07 14:24:08 -08006133 return 0;
Chris Wilsone7b526b2010-06-02 08:30:48 +01006134fail_unpin:
Chris Wilson05394f32010-11-08 19:18:58 +00006135 i915_gem_object_unpin(obj);
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05006136fail_locked:
Dave Airlie34b8686e2009-01-15 14:03:07 +10006137 mutex_unlock(&dev->struct_mutex);
Luca Barbieribc9025b2010-02-09 05:49:12 +00006138fail:
Chris Wilson05394f32010-11-08 19:18:58 +00006139 drm_gem_object_unreference_unlocked(&obj->base);
Dave Airlie34b8686e2009-01-15 14:03:07 +10006140 return ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08006141}
6142
6143static int intel_crtc_cursor_move(struct drm_crtc *crtc, int x, int y)
6144{
Jesse Barnes79e53942008-11-07 14:24:08 -08006145 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08006146
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01006147 intel_crtc->cursor_x = x;
6148 intel_crtc->cursor_y = y;
Jesse Barnes652c3932009-08-17 13:31:43 -07006149
Chris Wilson6b383a72010-09-13 13:54:26 +01006150 intel_crtc_update_cursor(crtc, true);
Jesse Barnes79e53942008-11-07 14:24:08 -08006151
6152 return 0;
6153}
6154
6155/** Sets the color ramps on behalf of RandR */
6156void intel_crtc_fb_gamma_set(struct drm_crtc *crtc, u16 red, u16 green,
6157 u16 blue, int regno)
6158{
6159 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6160
6161 intel_crtc->lut_r[regno] = red >> 8;
6162 intel_crtc->lut_g[regno] = green >> 8;
6163 intel_crtc->lut_b[regno] = blue >> 8;
6164}
6165
Dave Airlieb8c00ac2009-10-06 13:54:01 +10006166void intel_crtc_fb_gamma_get(struct drm_crtc *crtc, u16 *red, u16 *green,
6167 u16 *blue, int regno)
6168{
6169 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6170
6171 *red = intel_crtc->lut_r[regno] << 8;
6172 *green = intel_crtc->lut_g[regno] << 8;
6173 *blue = intel_crtc->lut_b[regno] << 8;
6174}
6175
Jesse Barnes79e53942008-11-07 14:24:08 -08006176static void intel_crtc_gamma_set(struct drm_crtc *crtc, u16 *red, u16 *green,
James Simmons72034252010-08-03 01:33:19 +01006177 u16 *blue, uint32_t start, uint32_t size)
Jesse Barnes79e53942008-11-07 14:24:08 -08006178{
James Simmons72034252010-08-03 01:33:19 +01006179 int end = (start + size > 256) ? 256 : start + size, i;
Jesse Barnes79e53942008-11-07 14:24:08 -08006180 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08006181
James Simmons72034252010-08-03 01:33:19 +01006182 for (i = start; i < end; i++) {
Jesse Barnes79e53942008-11-07 14:24:08 -08006183 intel_crtc->lut_r[i] = red[i] >> 8;
6184 intel_crtc->lut_g[i] = green[i] >> 8;
6185 intel_crtc->lut_b[i] = blue[i] >> 8;
6186 }
6187
6188 intel_crtc_load_lut(crtc);
6189}
6190
6191/**
6192 * Get a pipe with a simple mode set on it for doing load-based monitor
6193 * detection.
6194 *
6195 * It will be up to the load-detect code to adjust the pipe as appropriate for
Eric Anholtc751ce42010-03-25 11:48:48 -07006196 * its requirements. The pipe will be connected to no other encoders.
Jesse Barnes79e53942008-11-07 14:24:08 -08006197 *
Eric Anholtc751ce42010-03-25 11:48:48 -07006198 * Currently this code will only succeed if there is a pipe with no encoders
Jesse Barnes79e53942008-11-07 14:24:08 -08006199 * configured for it. In the future, it could choose to temporarily disable
6200 * some outputs to free up a pipe for its use.
6201 *
6202 * \return crtc, or NULL if no pipes are available.
6203 */
6204
6205/* VESA 640x480x72Hz mode to set on the pipe */
6206static struct drm_display_mode load_detect_mode = {
6207 DRM_MODE("640x480", DRM_MODE_TYPE_DEFAULT, 31500, 640, 664,
6208 704, 832, 0, 480, 489, 491, 520, 0, DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
6209};
6210
Chris Wilsond2dff872011-04-19 08:36:26 +01006211static struct drm_framebuffer *
6212intel_framebuffer_create(struct drm_device *dev,
Jesse Barnes308e5bc2011-11-14 14:51:28 -08006213 struct drm_mode_fb_cmd2 *mode_cmd,
Chris Wilsond2dff872011-04-19 08:36:26 +01006214 struct drm_i915_gem_object *obj)
6215{
6216 struct intel_framebuffer *intel_fb;
6217 int ret;
6218
6219 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
6220 if (!intel_fb) {
6221 drm_gem_object_unreference_unlocked(&obj->base);
6222 return ERR_PTR(-ENOMEM);
6223 }
6224
6225 ret = intel_framebuffer_init(dev, intel_fb, mode_cmd, obj);
6226 if (ret) {
6227 drm_gem_object_unreference_unlocked(&obj->base);
6228 kfree(intel_fb);
6229 return ERR_PTR(ret);
6230 }
6231
6232 return &intel_fb->base;
6233}
6234
6235static u32
6236intel_framebuffer_pitch_for_width(int width, int bpp)
6237{
6238 u32 pitch = DIV_ROUND_UP(width * bpp, 8);
6239 return ALIGN(pitch, 64);
6240}
6241
6242static u32
6243intel_framebuffer_size_for_mode(struct drm_display_mode *mode, int bpp)
6244{
6245 u32 pitch = intel_framebuffer_pitch_for_width(mode->hdisplay, bpp);
6246 return ALIGN(pitch * mode->vdisplay, PAGE_SIZE);
6247}
6248
6249static struct drm_framebuffer *
6250intel_framebuffer_create_for_mode(struct drm_device *dev,
6251 struct drm_display_mode *mode,
6252 int depth, int bpp)
6253{
6254 struct drm_i915_gem_object *obj;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08006255 struct drm_mode_fb_cmd2 mode_cmd;
Chris Wilsond2dff872011-04-19 08:36:26 +01006256
6257 obj = i915_gem_alloc_object(dev,
6258 intel_framebuffer_size_for_mode(mode, bpp));
6259 if (obj == NULL)
6260 return ERR_PTR(-ENOMEM);
6261
6262 mode_cmd.width = mode->hdisplay;
6263 mode_cmd.height = mode->vdisplay;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08006264 mode_cmd.pitches[0] = intel_framebuffer_pitch_for_width(mode_cmd.width,
6265 bpp);
Dave Airlie5ca0c342012-02-23 15:33:40 +00006266 mode_cmd.pixel_format = drm_mode_legacy_fb_format(bpp, depth);
Chris Wilsond2dff872011-04-19 08:36:26 +01006267
6268 return intel_framebuffer_create(dev, &mode_cmd, obj);
6269}
6270
6271static struct drm_framebuffer *
6272mode_fits_in_fbdev(struct drm_device *dev,
6273 struct drm_display_mode *mode)
6274{
6275 struct drm_i915_private *dev_priv = dev->dev_private;
6276 struct drm_i915_gem_object *obj;
6277 struct drm_framebuffer *fb;
6278
6279 if (dev_priv->fbdev == NULL)
6280 return NULL;
6281
6282 obj = dev_priv->fbdev->ifb.obj;
6283 if (obj == NULL)
6284 return NULL;
6285
6286 fb = &dev_priv->fbdev->ifb.base;
Ville Syrjälä01f2c772011-12-20 00:06:49 +02006287 if (fb->pitches[0] < intel_framebuffer_pitch_for_width(mode->hdisplay,
6288 fb->bits_per_pixel))
Chris Wilsond2dff872011-04-19 08:36:26 +01006289 return NULL;
6290
Ville Syrjälä01f2c772011-12-20 00:06:49 +02006291 if (obj->base.size < mode->vdisplay * fb->pitches[0])
Chris Wilsond2dff872011-04-19 08:36:26 +01006292 return NULL;
6293
6294 return fb;
6295}
6296
Daniel Vetterd2434ab2012-08-12 21:20:10 +02006297bool intel_get_load_detect_pipe(struct drm_connector *connector,
Chris Wilson71731882011-04-19 23:10:58 +01006298 struct drm_display_mode *mode,
Chris Wilson8261b192011-04-19 23:18:09 +01006299 struct intel_load_detect_pipe *old)
Jesse Barnes79e53942008-11-07 14:24:08 -08006300{
6301 struct intel_crtc *intel_crtc;
Daniel Vetterd2434ab2012-08-12 21:20:10 +02006302 struct intel_encoder *intel_encoder =
6303 intel_attached_encoder(connector);
Jesse Barnes79e53942008-11-07 14:24:08 -08006304 struct drm_crtc *possible_crtc;
Chris Wilson4ef69c72010-09-09 15:14:28 +01006305 struct drm_encoder *encoder = &intel_encoder->base;
Jesse Barnes79e53942008-11-07 14:24:08 -08006306 struct drm_crtc *crtc = NULL;
6307 struct drm_device *dev = encoder->dev;
Daniel Vetter94352cf2012-07-05 22:51:56 +02006308 struct drm_framebuffer *fb;
Jesse Barnes79e53942008-11-07 14:24:08 -08006309 int i = -1;
6310
Chris Wilsond2dff872011-04-19 08:36:26 +01006311 DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
6312 connector->base.id, drm_get_connector_name(connector),
6313 encoder->base.id, drm_get_encoder_name(encoder));
6314
Jesse Barnes79e53942008-11-07 14:24:08 -08006315 /*
6316 * Algorithm gets a little messy:
Chris Wilson7a5e4802011-04-19 23:21:12 +01006317 *
Jesse Barnes79e53942008-11-07 14:24:08 -08006318 * - if the connector already has an assigned crtc, use it (but make
6319 * sure it's on first)
Chris Wilson7a5e4802011-04-19 23:21:12 +01006320 *
Jesse Barnes79e53942008-11-07 14:24:08 -08006321 * - try to find the first unused crtc that can drive this connector,
6322 * and use that if we find one
Jesse Barnes79e53942008-11-07 14:24:08 -08006323 */
6324
6325 /* See if we already have a CRTC for this connector */
6326 if (encoder->crtc) {
6327 crtc = encoder->crtc;
Chris Wilson8261b192011-04-19 23:18:09 +01006328
Daniel Vetter24218aa2012-08-12 19:27:11 +02006329 old->dpms_mode = connector->dpms;
Chris Wilson8261b192011-04-19 23:18:09 +01006330 old->load_detect_temp = false;
6331
6332 /* Make sure the crtc and connector are running */
Daniel Vetter24218aa2012-08-12 19:27:11 +02006333 if (connector->dpms != DRM_MODE_DPMS_ON)
6334 connector->funcs->dpms(connector, DRM_MODE_DPMS_ON);
Chris Wilson8261b192011-04-19 23:18:09 +01006335
Chris Wilson71731882011-04-19 23:10:58 +01006336 return true;
Jesse Barnes79e53942008-11-07 14:24:08 -08006337 }
6338
6339 /* Find an unused one (if possible) */
6340 list_for_each_entry(possible_crtc, &dev->mode_config.crtc_list, head) {
6341 i++;
6342 if (!(encoder->possible_crtcs & (1 << i)))
6343 continue;
6344 if (!possible_crtc->enabled) {
6345 crtc = possible_crtc;
6346 break;
6347 }
Jesse Barnes79e53942008-11-07 14:24:08 -08006348 }
6349
6350 /*
6351 * If we didn't find an unused CRTC, don't use any.
6352 */
6353 if (!crtc) {
Chris Wilson71731882011-04-19 23:10:58 +01006354 DRM_DEBUG_KMS("no pipe available for load-detect\n");
6355 return false;
Jesse Barnes79e53942008-11-07 14:24:08 -08006356 }
6357
Daniel Vetterfc303102012-07-09 10:40:58 +02006358 intel_encoder->new_crtc = to_intel_crtc(crtc);
6359 to_intel_connector(connector)->new_encoder = intel_encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08006360
6361 intel_crtc = to_intel_crtc(crtc);
Daniel Vetter24218aa2012-08-12 19:27:11 +02006362 old->dpms_mode = connector->dpms;
Chris Wilson8261b192011-04-19 23:18:09 +01006363 old->load_detect_temp = true;
Chris Wilsond2dff872011-04-19 08:36:26 +01006364 old->release_fb = NULL;
Jesse Barnes79e53942008-11-07 14:24:08 -08006365
Chris Wilson64927112011-04-20 07:25:26 +01006366 if (!mode)
6367 mode = &load_detect_mode;
Jesse Barnes79e53942008-11-07 14:24:08 -08006368
Chris Wilsond2dff872011-04-19 08:36:26 +01006369 /* We need a framebuffer large enough to accommodate all accesses
6370 * that the plane may generate whilst we perform load detection.
6371 * We can not rely on the fbcon either being present (we get called
6372 * during its initialisation to detect all boot displays, or it may
6373 * not even exist) or that it is large enough to satisfy the
6374 * requested mode.
6375 */
Daniel Vetter94352cf2012-07-05 22:51:56 +02006376 fb = mode_fits_in_fbdev(dev, mode);
6377 if (fb == NULL) {
Chris Wilsond2dff872011-04-19 08:36:26 +01006378 DRM_DEBUG_KMS("creating tmp fb for load-detection\n");
Daniel Vetter94352cf2012-07-05 22:51:56 +02006379 fb = intel_framebuffer_create_for_mode(dev, mode, 24, 32);
6380 old->release_fb = fb;
Chris Wilsond2dff872011-04-19 08:36:26 +01006381 } else
6382 DRM_DEBUG_KMS("reusing fbdev for load-detection framebuffer\n");
Daniel Vetter94352cf2012-07-05 22:51:56 +02006383 if (IS_ERR(fb)) {
Chris Wilsond2dff872011-04-19 08:36:26 +01006384 DRM_DEBUG_KMS("failed to allocate framebuffer for load-detection\n");
Daniel Vetter24218aa2012-08-12 19:27:11 +02006385 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -08006386 }
Chris Wilsond2dff872011-04-19 08:36:26 +01006387
Daniel Vetter94352cf2012-07-05 22:51:56 +02006388 if (!intel_set_mode(crtc, mode, 0, 0, fb)) {
Chris Wilson64927112011-04-20 07:25:26 +01006389 DRM_DEBUG_KMS("failed to set mode on load-detect pipe\n");
Chris Wilsond2dff872011-04-19 08:36:26 +01006390 if (old->release_fb)
6391 old->release_fb->funcs->destroy(old->release_fb);
Daniel Vetter24218aa2012-08-12 19:27:11 +02006392 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -08006393 }
Chris Wilson71731882011-04-19 23:10:58 +01006394
Jesse Barnes79e53942008-11-07 14:24:08 -08006395 /* let the connector get through one full cycle before testing */
Jesse Barnes9d0498a2010-08-18 13:20:54 -07006396 intel_wait_for_vblank(dev, intel_crtc->pipe);
Jesse Barnes79e53942008-11-07 14:24:08 -08006397
Chris Wilson71731882011-04-19 23:10:58 +01006398 return true;
Daniel Vetter24218aa2012-08-12 19:27:11 +02006399fail:
6400 connector->encoder = NULL;
6401 encoder->crtc = NULL;
Daniel Vetter24218aa2012-08-12 19:27:11 +02006402 return false;
Jesse Barnes79e53942008-11-07 14:24:08 -08006403}
6404
Daniel Vetterd2434ab2012-08-12 21:20:10 +02006405void intel_release_load_detect_pipe(struct drm_connector *connector,
Chris Wilson8261b192011-04-19 23:18:09 +01006406 struct intel_load_detect_pipe *old)
Jesse Barnes79e53942008-11-07 14:24:08 -08006407{
Daniel Vetterd2434ab2012-08-12 21:20:10 +02006408 struct intel_encoder *intel_encoder =
6409 intel_attached_encoder(connector);
Chris Wilson4ef69c72010-09-09 15:14:28 +01006410 struct drm_encoder *encoder = &intel_encoder->base;
Jesse Barnes79e53942008-11-07 14:24:08 -08006411
Chris Wilsond2dff872011-04-19 08:36:26 +01006412 DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
6413 connector->base.id, drm_get_connector_name(connector),
6414 encoder->base.id, drm_get_encoder_name(encoder));
6415
Chris Wilson8261b192011-04-19 23:18:09 +01006416 if (old->load_detect_temp) {
Daniel Vetterfc303102012-07-09 10:40:58 +02006417 struct drm_crtc *crtc = encoder->crtc;
6418
6419 to_intel_connector(connector)->new_encoder = NULL;
6420 intel_encoder->new_crtc = NULL;
6421 intel_set_mode(crtc, NULL, 0, 0, NULL);
Chris Wilsond2dff872011-04-19 08:36:26 +01006422
6423 if (old->release_fb)
6424 old->release_fb->funcs->destroy(old->release_fb);
6425
Chris Wilson0622a532011-04-21 09:32:11 +01006426 return;
Jesse Barnes79e53942008-11-07 14:24:08 -08006427 }
6428
Eric Anholtc751ce42010-03-25 11:48:48 -07006429 /* Switch crtc and encoder back off if necessary */
Daniel Vetter24218aa2012-08-12 19:27:11 +02006430 if (old->dpms_mode != DRM_MODE_DPMS_ON)
6431 connector->funcs->dpms(connector, old->dpms_mode);
Jesse Barnes79e53942008-11-07 14:24:08 -08006432}
6433
6434/* Returns the clock of the currently programmed mode of the given pipe. */
6435static int intel_crtc_clock_get(struct drm_device *dev, struct drm_crtc *crtc)
6436{
6437 struct drm_i915_private *dev_priv = dev->dev_private;
6438 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6439 int pipe = intel_crtc->pipe;
Jesse Barnes548f2452011-02-17 10:40:53 -08006440 u32 dpll = I915_READ(DPLL(pipe));
Jesse Barnes79e53942008-11-07 14:24:08 -08006441 u32 fp;
6442 intel_clock_t clock;
6443
6444 if ((dpll & DISPLAY_RATE_SELECT_FPA1) == 0)
Chris Wilson39adb7a2011-04-22 22:17:21 +01006445 fp = I915_READ(FP0(pipe));
Jesse Barnes79e53942008-11-07 14:24:08 -08006446 else
Chris Wilson39adb7a2011-04-22 22:17:21 +01006447 fp = I915_READ(FP1(pipe));
Jesse Barnes79e53942008-11-07 14:24:08 -08006448
6449 clock.m1 = (fp & FP_M1_DIV_MASK) >> FP_M1_DIV_SHIFT;
Adam Jacksonf2b115e2009-12-03 17:14:42 -05006450 if (IS_PINEVIEW(dev)) {
6451 clock.n = ffs((fp & FP_N_PINEVIEW_DIV_MASK) >> FP_N_DIV_SHIFT) - 1;
6452 clock.m2 = (fp & FP_M2_PINEVIEW_DIV_MASK) >> FP_M2_DIV_SHIFT;
Shaohua Li21778322009-02-23 15:19:16 +08006453 } else {
6454 clock.n = (fp & FP_N_DIV_MASK) >> FP_N_DIV_SHIFT;
6455 clock.m2 = (fp & FP_M2_DIV_MASK) >> FP_M2_DIV_SHIFT;
6456 }
6457
Chris Wilsona6c45cf2010-09-17 00:32:17 +01006458 if (!IS_GEN2(dev)) {
Adam Jacksonf2b115e2009-12-03 17:14:42 -05006459 if (IS_PINEVIEW(dev))
6460 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_PINEVIEW) >>
6461 DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW);
Shaohua Li21778322009-02-23 15:19:16 +08006462 else
6463 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK) >>
Jesse Barnes79e53942008-11-07 14:24:08 -08006464 DPLL_FPA01_P1_POST_DIV_SHIFT);
6465
6466 switch (dpll & DPLL_MODE_MASK) {
6467 case DPLLB_MODE_DAC_SERIAL:
6468 clock.p2 = dpll & DPLL_DAC_SERIAL_P2_CLOCK_DIV_5 ?
6469 5 : 10;
6470 break;
6471 case DPLLB_MODE_LVDS:
6472 clock.p2 = dpll & DPLLB_LVDS_P2_CLOCK_DIV_7 ?
6473 7 : 14;
6474 break;
6475 default:
Zhao Yakui28c97732009-10-09 11:39:41 +08006476 DRM_DEBUG_KMS("Unknown DPLL mode %08x in programmed "
Jesse Barnes79e53942008-11-07 14:24:08 -08006477 "mode\n", (int)(dpll & DPLL_MODE_MASK));
6478 return 0;
6479 }
6480
6481 /* XXX: Handle the 100Mhz refclk */
Shaohua Li21778322009-02-23 15:19:16 +08006482 intel_clock(dev, 96000, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08006483 } else {
6484 bool is_lvds = (pipe == 1) && (I915_READ(LVDS) & LVDS_PORT_EN);
6485
6486 if (is_lvds) {
6487 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830_LVDS) >>
6488 DPLL_FPA01_P1_POST_DIV_SHIFT);
6489 clock.p2 = 14;
6490
6491 if ((dpll & PLL_REF_INPUT_MASK) ==
6492 PLLB_REF_INPUT_SPREADSPECTRUMIN) {
6493 /* XXX: might not be 66MHz */
Shaohua Li21778322009-02-23 15:19:16 +08006494 intel_clock(dev, 66000, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08006495 } else
Shaohua Li21778322009-02-23 15:19:16 +08006496 intel_clock(dev, 48000, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08006497 } else {
6498 if (dpll & PLL_P1_DIVIDE_BY_TWO)
6499 clock.p1 = 2;
6500 else {
6501 clock.p1 = ((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830) >>
6502 DPLL_FPA01_P1_POST_DIV_SHIFT) + 2;
6503 }
6504 if (dpll & PLL_P2_DIVIDE_BY_4)
6505 clock.p2 = 4;
6506 else
6507 clock.p2 = 2;
6508
Shaohua Li21778322009-02-23 15:19:16 +08006509 intel_clock(dev, 48000, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08006510 }
6511 }
6512
6513 /* XXX: It would be nice to validate the clocks, but we can't reuse
6514 * i830PllIsValid() because it relies on the xf86_config connector
6515 * configuration being accurate, which it isn't necessarily.
6516 */
6517
6518 return clock.dot;
6519}
6520
6521/** Returns the currently programmed mode of the given pipe. */
6522struct drm_display_mode *intel_crtc_mode_get(struct drm_device *dev,
6523 struct drm_crtc *crtc)
6524{
Jesse Barnes548f2452011-02-17 10:40:53 -08006525 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -08006526 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6527 int pipe = intel_crtc->pipe;
6528 struct drm_display_mode *mode;
Jesse Barnes548f2452011-02-17 10:40:53 -08006529 int htot = I915_READ(HTOTAL(pipe));
6530 int hsync = I915_READ(HSYNC(pipe));
6531 int vtot = I915_READ(VTOTAL(pipe));
6532 int vsync = I915_READ(VSYNC(pipe));
Jesse Barnes79e53942008-11-07 14:24:08 -08006533
6534 mode = kzalloc(sizeof(*mode), GFP_KERNEL);
6535 if (!mode)
6536 return NULL;
6537
6538 mode->clock = intel_crtc_clock_get(dev, crtc);
6539 mode->hdisplay = (htot & 0xffff) + 1;
6540 mode->htotal = ((htot & 0xffff0000) >> 16) + 1;
6541 mode->hsync_start = (hsync & 0xffff) + 1;
6542 mode->hsync_end = ((hsync & 0xffff0000) >> 16) + 1;
6543 mode->vdisplay = (vtot & 0xffff) + 1;
6544 mode->vtotal = ((vtot & 0xffff0000) >> 16) + 1;
6545 mode->vsync_start = (vsync & 0xffff) + 1;
6546 mode->vsync_end = ((vsync & 0xffff0000) >> 16) + 1;
6547
6548 drm_mode_set_name(mode);
Jesse Barnes79e53942008-11-07 14:24:08 -08006549
6550 return mode;
6551}
6552
Daniel Vetter3dec0092010-08-20 21:40:52 +02006553static void intel_increase_pllclock(struct drm_crtc *crtc)
Jesse Barnes652c3932009-08-17 13:31:43 -07006554{
6555 struct drm_device *dev = crtc->dev;
6556 drm_i915_private_t *dev_priv = dev->dev_private;
6557 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6558 int pipe = intel_crtc->pipe;
Jesse Barnesdbdc6472010-12-30 09:36:39 -08006559 int dpll_reg = DPLL(pipe);
6560 int dpll;
Jesse Barnes652c3932009-08-17 13:31:43 -07006561
Eric Anholtbad720f2009-10-22 16:11:14 -07006562 if (HAS_PCH_SPLIT(dev))
Jesse Barnes652c3932009-08-17 13:31:43 -07006563 return;
6564
6565 if (!dev_priv->lvds_downclock_avail)
6566 return;
6567
Jesse Barnesdbdc6472010-12-30 09:36:39 -08006568 dpll = I915_READ(dpll_reg);
Jesse Barnes652c3932009-08-17 13:31:43 -07006569 if (!HAS_PIPE_CXSR(dev) && (dpll & DISPLAY_RATE_SELECT_FPA1)) {
Zhao Yakui44d98a62009-10-09 11:39:40 +08006570 DRM_DEBUG_DRIVER("upclocking LVDS\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07006571
Sean Paul8ac5a6d2012-02-13 13:14:51 -05006572 assert_panel_unlocked(dev_priv, pipe);
Jesse Barnes652c3932009-08-17 13:31:43 -07006573
6574 dpll &= ~DISPLAY_RATE_SELECT_FPA1;
6575 I915_WRITE(dpll_reg, dpll);
Jesse Barnes9d0498a2010-08-18 13:20:54 -07006576 intel_wait_for_vblank(dev, pipe);
Jesse Barnesdbdc6472010-12-30 09:36:39 -08006577
Jesse Barnes652c3932009-08-17 13:31:43 -07006578 dpll = I915_READ(dpll_reg);
6579 if (dpll & DISPLAY_RATE_SELECT_FPA1)
Zhao Yakui44d98a62009-10-09 11:39:40 +08006580 DRM_DEBUG_DRIVER("failed to upclock LVDS!\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07006581 }
Jesse Barnes652c3932009-08-17 13:31:43 -07006582}
6583
6584static void intel_decrease_pllclock(struct drm_crtc *crtc)
6585{
6586 struct drm_device *dev = crtc->dev;
6587 drm_i915_private_t *dev_priv = dev->dev_private;
6588 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes652c3932009-08-17 13:31:43 -07006589
Eric Anholtbad720f2009-10-22 16:11:14 -07006590 if (HAS_PCH_SPLIT(dev))
Jesse Barnes652c3932009-08-17 13:31:43 -07006591 return;
6592
6593 if (!dev_priv->lvds_downclock_avail)
6594 return;
6595
6596 /*
6597 * Since this is called by a timer, we should never get here in
6598 * the manual case.
6599 */
6600 if (!HAS_PIPE_CXSR(dev) && intel_crtc->lowfreq_avail) {
Chris Wilson074b5e12012-05-02 12:07:06 +01006601 int pipe = intel_crtc->pipe;
6602 int dpll_reg = DPLL(pipe);
Daniel Vetterdc257cf2012-05-07 11:30:46 +02006603 int dpll;
Chris Wilson074b5e12012-05-02 12:07:06 +01006604
Zhao Yakui44d98a62009-10-09 11:39:40 +08006605 DRM_DEBUG_DRIVER("downclocking LVDS\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07006606
Sean Paul8ac5a6d2012-02-13 13:14:51 -05006607 assert_panel_unlocked(dev_priv, pipe);
Jesse Barnes652c3932009-08-17 13:31:43 -07006608
Chris Wilson074b5e12012-05-02 12:07:06 +01006609 dpll = I915_READ(dpll_reg);
Jesse Barnes652c3932009-08-17 13:31:43 -07006610 dpll |= DISPLAY_RATE_SELECT_FPA1;
6611 I915_WRITE(dpll_reg, dpll);
Jesse Barnes9d0498a2010-08-18 13:20:54 -07006612 intel_wait_for_vblank(dev, pipe);
Jesse Barnes652c3932009-08-17 13:31:43 -07006613 dpll = I915_READ(dpll_reg);
6614 if (!(dpll & DISPLAY_RATE_SELECT_FPA1))
Zhao Yakui44d98a62009-10-09 11:39:40 +08006615 DRM_DEBUG_DRIVER("failed to downclock LVDS!\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07006616 }
6617
6618}
6619
Chris Wilsonf047e392012-07-21 12:31:41 +01006620void intel_mark_busy(struct drm_device *dev)
Jesse Barnes652c3932009-08-17 13:31:43 -07006621{
Chris Wilsonf047e392012-07-21 12:31:41 +01006622 i915_update_gfx_val(dev->dev_private);
6623}
6624
6625void intel_mark_idle(struct drm_device *dev)
6626{
Chris Wilsonf047e392012-07-21 12:31:41 +01006627}
6628
6629void intel_mark_fb_busy(struct drm_i915_gem_object *obj)
6630{
6631 struct drm_device *dev = obj->base.dev;
Jesse Barnes652c3932009-08-17 13:31:43 -07006632 struct drm_crtc *crtc;
Jesse Barnes652c3932009-08-17 13:31:43 -07006633
6634 if (!i915_powersave)
6635 return;
6636
Jesse Barnes652c3932009-08-17 13:31:43 -07006637 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
Jesse Barnes652c3932009-08-17 13:31:43 -07006638 if (!crtc->fb)
6639 continue;
6640
Chris Wilsonf047e392012-07-21 12:31:41 +01006641 if (to_intel_framebuffer(crtc->fb)->obj == obj)
6642 intel_increase_pllclock(crtc);
Jesse Barnes652c3932009-08-17 13:31:43 -07006643 }
Jesse Barnes652c3932009-08-17 13:31:43 -07006644}
6645
Chris Wilsonf047e392012-07-21 12:31:41 +01006646void intel_mark_fb_idle(struct drm_i915_gem_object *obj)
Jesse Barnes652c3932009-08-17 13:31:43 -07006647{
Chris Wilsonf047e392012-07-21 12:31:41 +01006648 struct drm_device *dev = obj->base.dev;
6649 struct drm_crtc *crtc;
Jesse Barnes652c3932009-08-17 13:31:43 -07006650
Chris Wilsonf047e392012-07-21 12:31:41 +01006651 if (!i915_powersave)
Chris Wilsonacb87df2012-05-03 15:47:57 +01006652 return;
6653
Jesse Barnes652c3932009-08-17 13:31:43 -07006654 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
6655 if (!crtc->fb)
6656 continue;
6657
Chris Wilsonf047e392012-07-21 12:31:41 +01006658 if (to_intel_framebuffer(crtc->fb)->obj == obj)
6659 intel_decrease_pllclock(crtc);
Jesse Barnes652c3932009-08-17 13:31:43 -07006660 }
6661}
6662
Jesse Barnes79e53942008-11-07 14:24:08 -08006663static void intel_crtc_destroy(struct drm_crtc *crtc)
6664{
6665 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter67e77c52010-08-20 22:26:30 +02006666 struct drm_device *dev = crtc->dev;
6667 struct intel_unpin_work *work;
6668 unsigned long flags;
6669
6670 spin_lock_irqsave(&dev->event_lock, flags);
6671 work = intel_crtc->unpin_work;
6672 intel_crtc->unpin_work = NULL;
6673 spin_unlock_irqrestore(&dev->event_lock, flags);
6674
6675 if (work) {
6676 cancel_work_sync(&work->work);
6677 kfree(work);
6678 }
Jesse Barnes79e53942008-11-07 14:24:08 -08006679
6680 drm_crtc_cleanup(crtc);
Daniel Vetter67e77c52010-08-20 22:26:30 +02006681
Jesse Barnes79e53942008-11-07 14:24:08 -08006682 kfree(intel_crtc);
6683}
6684
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006685static void intel_unpin_work_fn(struct work_struct *__work)
6686{
6687 struct intel_unpin_work *work =
6688 container_of(__work, struct intel_unpin_work, work);
6689
6690 mutex_lock(&work->dev->struct_mutex);
Chris Wilson1690e1e2011-12-14 13:57:08 +01006691 intel_unpin_fb_obj(work->old_fb_obj);
Chris Wilson05394f32010-11-08 19:18:58 +00006692 drm_gem_object_unreference(&work->pending_flip_obj->base);
6693 drm_gem_object_unreference(&work->old_fb_obj->base);
Chris Wilsond9e86c02010-11-10 16:40:20 +00006694
Chris Wilson7782de32011-07-08 12:22:41 +01006695 intel_update_fbc(work->dev);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006696 mutex_unlock(&work->dev->struct_mutex);
6697 kfree(work);
6698}
6699
Jesse Barnes1afe3e92010-03-26 10:35:20 -07006700static void do_intel_finish_page_flip(struct drm_device *dev,
Mario Kleiner49b14a52010-12-09 07:00:07 +01006701 struct drm_crtc *crtc)
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006702{
6703 drm_i915_private_t *dev_priv = dev->dev_private;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006704 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6705 struct intel_unpin_work *work;
Chris Wilson05394f32010-11-08 19:18:58 +00006706 struct drm_i915_gem_object *obj;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006707 struct drm_pending_vblank_event *e;
Daniel Vetter95cb1b02012-10-02 20:10:37 +02006708 struct timeval tvbl;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006709 unsigned long flags;
6710
6711 /* Ignore early vblank irqs */
6712 if (intel_crtc == NULL)
6713 return;
6714
6715 spin_lock_irqsave(&dev->event_lock, flags);
6716 work = intel_crtc->unpin_work;
6717 if (work == NULL || !work->pending) {
6718 spin_unlock_irqrestore(&dev->event_lock, flags);
6719 return;
6720 }
6721
6722 intel_crtc->unpin_work = NULL;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006723
6724 if (work->event) {
6725 e = work->event;
Mario Kleiner49b14a52010-12-09 07:00:07 +01006726 e->event.sequence = drm_vblank_count_and_time(dev, intel_crtc->pipe, &tvbl);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +01006727
Mario Kleiner49b14a52010-12-09 07:00:07 +01006728 e->event.tv_sec = tvbl.tv_sec;
6729 e->event.tv_usec = tvbl.tv_usec;
Mario Kleiner0af7e4d2010-12-08 04:07:19 +01006730
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006731 list_add_tail(&e->base.link,
6732 &e->base.file_priv->event_list);
6733 wake_up_interruptible(&e->base.file_priv->event_wait);
6734 }
6735
Mario Kleiner0af7e4d2010-12-08 04:07:19 +01006736 drm_vblank_put(dev, intel_crtc->pipe);
6737
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006738 spin_unlock_irqrestore(&dev->event_lock, flags);
6739
Chris Wilson05394f32010-11-08 19:18:58 +00006740 obj = work->old_fb_obj;
Chris Wilsond9e86c02010-11-10 16:40:20 +00006741
Chris Wilsone59f2ba2010-10-07 17:28:15 +01006742 atomic_clear_mask(1 << intel_crtc->plane,
Chris Wilson05394f32010-11-08 19:18:58 +00006743 &obj->pending_flip.counter);
Chris Wilsond9e86c02010-11-10 16:40:20 +00006744
Chris Wilson5bb61642012-09-27 21:25:58 +01006745 wake_up(&dev_priv->pending_flip_queue);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006746 schedule_work(&work->work);
Jesse Barnese5510fa2010-07-01 16:48:37 -07006747
6748 trace_i915_flip_complete(intel_crtc->plane, work->pending_flip_obj);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006749}
6750
Jesse Barnes1afe3e92010-03-26 10:35:20 -07006751void intel_finish_page_flip(struct drm_device *dev, int pipe)
6752{
6753 drm_i915_private_t *dev_priv = dev->dev_private;
6754 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
6755
Mario Kleiner49b14a52010-12-09 07:00:07 +01006756 do_intel_finish_page_flip(dev, crtc);
Jesse Barnes1afe3e92010-03-26 10:35:20 -07006757}
6758
6759void intel_finish_page_flip_plane(struct drm_device *dev, int plane)
6760{
6761 drm_i915_private_t *dev_priv = dev->dev_private;
6762 struct drm_crtc *crtc = dev_priv->plane_to_crtc_mapping[plane];
6763
Mario Kleiner49b14a52010-12-09 07:00:07 +01006764 do_intel_finish_page_flip(dev, crtc);
Jesse Barnes1afe3e92010-03-26 10:35:20 -07006765}
6766
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006767void intel_prepare_page_flip(struct drm_device *dev, int plane)
6768{
6769 drm_i915_private_t *dev_priv = dev->dev_private;
6770 struct intel_crtc *intel_crtc =
6771 to_intel_crtc(dev_priv->plane_to_crtc_mapping[plane]);
6772 unsigned long flags;
6773
6774 spin_lock_irqsave(&dev->event_lock, flags);
Jesse Barnesde3f4402010-01-14 13:18:02 -08006775 if (intel_crtc->unpin_work) {
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01006776 if ((++intel_crtc->unpin_work->pending) > 1)
6777 DRM_ERROR("Prepared flip multiple times\n");
Jesse Barnesde3f4402010-01-14 13:18:02 -08006778 } else {
6779 DRM_DEBUG_DRIVER("preparing flip with no unpin work?\n");
6780 }
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006781 spin_unlock_irqrestore(&dev->event_lock, flags);
6782}
6783
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006784static int intel_gen2_queue_flip(struct drm_device *dev,
6785 struct drm_crtc *crtc,
6786 struct drm_framebuffer *fb,
6787 struct drm_i915_gem_object *obj)
6788{
6789 struct drm_i915_private *dev_priv = dev->dev_private;
6790 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006791 u32 flip_mask;
Daniel Vetter6d90c952012-04-26 23:28:05 +02006792 struct intel_ring_buffer *ring = &dev_priv->ring[RCS];
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006793 int ret;
6794
Daniel Vetter6d90c952012-04-26 23:28:05 +02006795 ret = intel_pin_and_fence_fb_obj(dev, obj, ring);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006796 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01006797 goto err;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006798
Daniel Vetter6d90c952012-04-26 23:28:05 +02006799 ret = intel_ring_begin(ring, 6);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006800 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01006801 goto err_unpin;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006802
6803 /* Can't queue multiple flips, so wait for the previous
6804 * one to finish before executing the next.
6805 */
6806 if (intel_crtc->plane)
6807 flip_mask = MI_WAIT_FOR_PLANE_B_FLIP;
6808 else
6809 flip_mask = MI_WAIT_FOR_PLANE_A_FLIP;
Daniel Vetter6d90c952012-04-26 23:28:05 +02006810 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | flip_mask);
6811 intel_ring_emit(ring, MI_NOOP);
6812 intel_ring_emit(ring, MI_DISPLAY_FLIP |
6813 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
6814 intel_ring_emit(ring, fb->pitches[0]);
Daniel Vettere506a0c2012-07-05 12:17:29 +02006815 intel_ring_emit(ring, obj->gtt_offset + intel_crtc->dspaddr_offset);
Daniel Vetter6d90c952012-04-26 23:28:05 +02006816 intel_ring_emit(ring, 0); /* aux display base address, unused */
6817 intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01006818 return 0;
6819
6820err_unpin:
6821 intel_unpin_fb_obj(obj);
6822err:
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006823 return ret;
6824}
6825
6826static int intel_gen3_queue_flip(struct drm_device *dev,
6827 struct drm_crtc *crtc,
6828 struct drm_framebuffer *fb,
6829 struct drm_i915_gem_object *obj)
6830{
6831 struct drm_i915_private *dev_priv = dev->dev_private;
6832 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006833 u32 flip_mask;
Daniel Vetter6d90c952012-04-26 23:28:05 +02006834 struct intel_ring_buffer *ring = &dev_priv->ring[RCS];
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006835 int ret;
6836
Daniel Vetter6d90c952012-04-26 23:28:05 +02006837 ret = intel_pin_and_fence_fb_obj(dev, obj, ring);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006838 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01006839 goto err;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006840
Daniel Vetter6d90c952012-04-26 23:28:05 +02006841 ret = intel_ring_begin(ring, 6);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006842 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01006843 goto err_unpin;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006844
6845 if (intel_crtc->plane)
6846 flip_mask = MI_WAIT_FOR_PLANE_B_FLIP;
6847 else
6848 flip_mask = MI_WAIT_FOR_PLANE_A_FLIP;
Daniel Vetter6d90c952012-04-26 23:28:05 +02006849 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | flip_mask);
6850 intel_ring_emit(ring, MI_NOOP);
6851 intel_ring_emit(ring, MI_DISPLAY_FLIP_I915 |
6852 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
6853 intel_ring_emit(ring, fb->pitches[0]);
Daniel Vettere506a0c2012-07-05 12:17:29 +02006854 intel_ring_emit(ring, obj->gtt_offset + intel_crtc->dspaddr_offset);
Daniel Vetter6d90c952012-04-26 23:28:05 +02006855 intel_ring_emit(ring, MI_NOOP);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006856
Daniel Vetter6d90c952012-04-26 23:28:05 +02006857 intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01006858 return 0;
6859
6860err_unpin:
6861 intel_unpin_fb_obj(obj);
6862err:
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006863 return ret;
6864}
6865
6866static int intel_gen4_queue_flip(struct drm_device *dev,
6867 struct drm_crtc *crtc,
6868 struct drm_framebuffer *fb,
6869 struct drm_i915_gem_object *obj)
6870{
6871 struct drm_i915_private *dev_priv = dev->dev_private;
6872 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6873 uint32_t pf, pipesrc;
Daniel Vetter6d90c952012-04-26 23:28:05 +02006874 struct intel_ring_buffer *ring = &dev_priv->ring[RCS];
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006875 int ret;
6876
Daniel Vetter6d90c952012-04-26 23:28:05 +02006877 ret = intel_pin_and_fence_fb_obj(dev, obj, ring);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006878 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01006879 goto err;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006880
Daniel Vetter6d90c952012-04-26 23:28:05 +02006881 ret = intel_ring_begin(ring, 4);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006882 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01006883 goto err_unpin;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006884
6885 /* i965+ uses the linear or tiled offsets from the
6886 * Display Registers (which do not change across a page-flip)
6887 * so we need only reprogram the base address.
6888 */
Daniel Vetter6d90c952012-04-26 23:28:05 +02006889 intel_ring_emit(ring, MI_DISPLAY_FLIP |
6890 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
6891 intel_ring_emit(ring, fb->pitches[0]);
Daniel Vetterc2c75132012-07-05 12:17:30 +02006892 intel_ring_emit(ring,
6893 (obj->gtt_offset + intel_crtc->dspaddr_offset) |
6894 obj->tiling_mode);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006895
6896 /* XXX Enabling the panel-fitter across page-flip is so far
6897 * untested on non-native modes, so ignore it for now.
6898 * pf = I915_READ(pipe == 0 ? PFA_CTL_1 : PFB_CTL_1) & PF_ENABLE;
6899 */
6900 pf = 0;
6901 pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff;
Daniel Vetter6d90c952012-04-26 23:28:05 +02006902 intel_ring_emit(ring, pf | pipesrc);
6903 intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01006904 return 0;
6905
6906err_unpin:
6907 intel_unpin_fb_obj(obj);
6908err:
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006909 return ret;
6910}
6911
6912static int intel_gen6_queue_flip(struct drm_device *dev,
6913 struct drm_crtc *crtc,
6914 struct drm_framebuffer *fb,
6915 struct drm_i915_gem_object *obj)
6916{
6917 struct drm_i915_private *dev_priv = dev->dev_private;
6918 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter6d90c952012-04-26 23:28:05 +02006919 struct intel_ring_buffer *ring = &dev_priv->ring[RCS];
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006920 uint32_t pf, pipesrc;
6921 int ret;
6922
Daniel Vetter6d90c952012-04-26 23:28:05 +02006923 ret = intel_pin_and_fence_fb_obj(dev, obj, ring);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006924 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01006925 goto err;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006926
Daniel Vetter6d90c952012-04-26 23:28:05 +02006927 ret = intel_ring_begin(ring, 4);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006928 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01006929 goto err_unpin;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006930
Daniel Vetter6d90c952012-04-26 23:28:05 +02006931 intel_ring_emit(ring, MI_DISPLAY_FLIP |
6932 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
6933 intel_ring_emit(ring, fb->pitches[0] | obj->tiling_mode);
Daniel Vetterc2c75132012-07-05 12:17:30 +02006934 intel_ring_emit(ring, obj->gtt_offset + intel_crtc->dspaddr_offset);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006935
Chris Wilson99d9acd2012-04-17 20:37:00 +01006936 /* Contrary to the suggestions in the documentation,
6937 * "Enable Panel Fitter" does not seem to be required when page
6938 * flipping with a non-native mode, and worse causes a normal
6939 * modeset to fail.
6940 * pf = I915_READ(PF_CTL(intel_crtc->pipe)) & PF_ENABLE;
6941 */
6942 pf = 0;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006943 pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff;
Daniel Vetter6d90c952012-04-26 23:28:05 +02006944 intel_ring_emit(ring, pf | pipesrc);
6945 intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01006946 return 0;
6947
6948err_unpin:
6949 intel_unpin_fb_obj(obj);
6950err:
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006951 return ret;
6952}
6953
Jesse Barnes7c9017e2011-06-16 12:18:54 -07006954/*
6955 * On gen7 we currently use the blit ring because (in early silicon at least)
6956 * the render ring doesn't give us interrpts for page flip completion, which
6957 * means clients will hang after the first flip is queued. Fortunately the
6958 * blit ring generates interrupts properly, so use it instead.
6959 */
6960static int intel_gen7_queue_flip(struct drm_device *dev,
6961 struct drm_crtc *crtc,
6962 struct drm_framebuffer *fb,
6963 struct drm_i915_gem_object *obj)
6964{
6965 struct drm_i915_private *dev_priv = dev->dev_private;
6966 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6967 struct intel_ring_buffer *ring = &dev_priv->ring[BCS];
Daniel Vettercb05d8d2012-05-23 14:02:00 +02006968 uint32_t plane_bit = 0;
Jesse Barnes7c9017e2011-06-16 12:18:54 -07006969 int ret;
6970
6971 ret = intel_pin_and_fence_fb_obj(dev, obj, ring);
6972 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01006973 goto err;
Jesse Barnes7c9017e2011-06-16 12:18:54 -07006974
Daniel Vettercb05d8d2012-05-23 14:02:00 +02006975 switch(intel_crtc->plane) {
6976 case PLANE_A:
6977 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_A;
6978 break;
6979 case PLANE_B:
6980 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_B;
6981 break;
6982 case PLANE_C:
6983 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_C;
6984 break;
6985 default:
6986 WARN_ONCE(1, "unknown plane in flip command\n");
6987 ret = -ENODEV;
Eugeni Dodonovab3951e2012-06-18 19:03:38 -03006988 goto err_unpin;
Daniel Vettercb05d8d2012-05-23 14:02:00 +02006989 }
6990
Jesse Barnes7c9017e2011-06-16 12:18:54 -07006991 ret = intel_ring_begin(ring, 4);
6992 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01006993 goto err_unpin;
Jesse Barnes7c9017e2011-06-16 12:18:54 -07006994
Daniel Vettercb05d8d2012-05-23 14:02:00 +02006995 intel_ring_emit(ring, MI_DISPLAY_FLIP_I915 | plane_bit);
Ville Syrjälä01f2c772011-12-20 00:06:49 +02006996 intel_ring_emit(ring, (fb->pitches[0] | obj->tiling_mode));
Daniel Vetterc2c75132012-07-05 12:17:30 +02006997 intel_ring_emit(ring, obj->gtt_offset + intel_crtc->dspaddr_offset);
Jesse Barnes7c9017e2011-06-16 12:18:54 -07006998 intel_ring_emit(ring, (MI_NOOP));
6999 intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01007000 return 0;
7001
7002err_unpin:
7003 intel_unpin_fb_obj(obj);
7004err:
Jesse Barnes7c9017e2011-06-16 12:18:54 -07007005 return ret;
7006}
7007
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07007008static int intel_default_queue_flip(struct drm_device *dev,
7009 struct drm_crtc *crtc,
7010 struct drm_framebuffer *fb,
7011 struct drm_i915_gem_object *obj)
7012{
7013 return -ENODEV;
7014}
7015
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007016static int intel_crtc_page_flip(struct drm_crtc *crtc,
7017 struct drm_framebuffer *fb,
7018 struct drm_pending_vblank_event *event)
7019{
7020 struct drm_device *dev = crtc->dev;
7021 struct drm_i915_private *dev_priv = dev->dev_private;
7022 struct intel_framebuffer *intel_fb;
Chris Wilson05394f32010-11-08 19:18:58 +00007023 struct drm_i915_gem_object *obj;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007024 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
7025 struct intel_unpin_work *work;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07007026 unsigned long flags;
Chris Wilson52e68632010-08-08 10:15:59 +01007027 int ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007028
Ville Syrjäläe6a595d2012-05-24 21:08:59 +03007029 /* Can't change pixel format via MI display flips. */
7030 if (fb->pixel_format != crtc->fb->pixel_format)
7031 return -EINVAL;
7032
7033 /*
7034 * TILEOFF/LINOFF registers can't be changed via MI display flips.
7035 * Note that pitch changes could also affect these register.
7036 */
7037 if (INTEL_INFO(dev)->gen > 3 &&
7038 (fb->offsets[0] != crtc->fb->offsets[0] ||
7039 fb->pitches[0] != crtc->fb->pitches[0]))
7040 return -EINVAL;
7041
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007042 work = kzalloc(sizeof *work, GFP_KERNEL);
7043 if (work == NULL)
7044 return -ENOMEM;
7045
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007046 work->event = event;
7047 work->dev = crtc->dev;
7048 intel_fb = to_intel_framebuffer(crtc->fb);
Jesse Barnesb1b87f62010-01-26 14:40:05 -08007049 work->old_fb_obj = intel_fb->obj;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007050 INIT_WORK(&work->work, intel_unpin_work_fn);
7051
Jesse Barnes7317c75e62011-08-29 09:45:28 -07007052 ret = drm_vblank_get(dev, intel_crtc->pipe);
7053 if (ret)
7054 goto free_work;
7055
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007056 /* We borrow the event spin lock for protecting unpin_work */
7057 spin_lock_irqsave(&dev->event_lock, flags);
7058 if (intel_crtc->unpin_work) {
7059 spin_unlock_irqrestore(&dev->event_lock, flags);
7060 kfree(work);
Jesse Barnes7317c75e62011-08-29 09:45:28 -07007061 drm_vblank_put(dev, intel_crtc->pipe);
Chris Wilson468f0b42010-05-27 13:18:13 +01007062
7063 DRM_DEBUG_DRIVER("flip queue: crtc already busy\n");
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007064 return -EBUSY;
7065 }
7066 intel_crtc->unpin_work = work;
7067 spin_unlock_irqrestore(&dev->event_lock, flags);
7068
7069 intel_fb = to_intel_framebuffer(fb);
7070 obj = intel_fb->obj;
7071
Chris Wilson79158102012-05-23 11:13:58 +01007072 ret = i915_mutex_lock_interruptible(dev);
7073 if (ret)
7074 goto cleanup;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007075
Jesse Barnes75dfca82010-02-10 15:09:44 -08007076 /* Reference the objects for the scheduled work. */
Chris Wilson05394f32010-11-08 19:18:58 +00007077 drm_gem_object_reference(&work->old_fb_obj->base);
7078 drm_gem_object_reference(&obj->base);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007079
7080 crtc->fb = fb;
Chris Wilson96b099f2010-06-07 14:03:04 +01007081
Chris Wilsone1f99ce2010-10-27 12:45:26 +01007082 work->pending_flip_obj = obj;
Chris Wilsone1f99ce2010-10-27 12:45:26 +01007083
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01007084 work->enable_stall_check = true;
7085
Chris Wilsone1f99ce2010-10-27 12:45:26 +01007086 /* Block clients from rendering to the new back buffer until
7087 * the flip occurs and the object is no longer visible.
7088 */
Chris Wilson05394f32010-11-08 19:18:58 +00007089 atomic_add(1 << intel_crtc->plane, &work->old_fb_obj->pending_flip);
Chris Wilsone1f99ce2010-10-27 12:45:26 +01007090
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07007091 ret = dev_priv->display.queue_flip(dev, crtc, fb, obj);
7092 if (ret)
7093 goto cleanup_pending;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007094
Chris Wilson7782de32011-07-08 12:22:41 +01007095 intel_disable_fbc(dev);
Chris Wilsonf047e392012-07-21 12:31:41 +01007096 intel_mark_fb_busy(obj);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007097 mutex_unlock(&dev->struct_mutex);
7098
Jesse Barnese5510fa2010-07-01 16:48:37 -07007099 trace_i915_flip_request(intel_crtc->plane, obj);
7100
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007101 return 0;
Chris Wilson96b099f2010-06-07 14:03:04 +01007102
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07007103cleanup_pending:
7104 atomic_sub(1 << intel_crtc->plane, &work->old_fb_obj->pending_flip);
Chris Wilson05394f32010-11-08 19:18:58 +00007105 drm_gem_object_unreference(&work->old_fb_obj->base);
7106 drm_gem_object_unreference(&obj->base);
Chris Wilson96b099f2010-06-07 14:03:04 +01007107 mutex_unlock(&dev->struct_mutex);
7108
Chris Wilson79158102012-05-23 11:13:58 +01007109cleanup:
Chris Wilson96b099f2010-06-07 14:03:04 +01007110 spin_lock_irqsave(&dev->event_lock, flags);
7111 intel_crtc->unpin_work = NULL;
7112 spin_unlock_irqrestore(&dev->event_lock, flags);
7113
Jesse Barnes7317c75e62011-08-29 09:45:28 -07007114 drm_vblank_put(dev, intel_crtc->pipe);
7115free_work:
Chris Wilson96b099f2010-06-07 14:03:04 +01007116 kfree(work);
7117
7118 return ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007119}
7120
Chris Wilsonf6e5b162011-04-12 18:06:51 +01007121static struct drm_crtc_helper_funcs intel_helper_funcs = {
Chris Wilsonf6e5b162011-04-12 18:06:51 +01007122 .mode_set_base_atomic = intel_pipe_set_base_atomic,
7123 .load_lut = intel_crtc_load_lut,
Daniel Vetter976f8a22012-07-08 22:34:21 +02007124 .disable = intel_crtc_noop,
Chris Wilsonf6e5b162011-04-12 18:06:51 +01007125};
7126
Daniel Vetter6ed0f792012-07-08 19:41:43 +02007127bool intel_encoder_check_is_cloned(struct intel_encoder *encoder)
7128{
7129 struct intel_encoder *other_encoder;
7130 struct drm_crtc *crtc = &encoder->new_crtc->base;
7131
7132 if (WARN_ON(!crtc))
7133 return false;
7134
7135 list_for_each_entry(other_encoder,
7136 &crtc->dev->mode_config.encoder_list,
7137 base.head) {
7138
7139 if (&other_encoder->new_crtc->base != crtc ||
7140 encoder == other_encoder)
7141 continue;
7142 else
7143 return true;
7144 }
7145
7146 return false;
7147}
7148
Daniel Vetter50f56112012-07-02 09:35:43 +02007149static bool intel_encoder_crtc_ok(struct drm_encoder *encoder,
7150 struct drm_crtc *crtc)
7151{
7152 struct drm_device *dev;
7153 struct drm_crtc *tmp;
7154 int crtc_mask = 1;
7155
7156 WARN(!crtc, "checking null crtc?\n");
7157
7158 dev = crtc->dev;
7159
7160 list_for_each_entry(tmp, &dev->mode_config.crtc_list, head) {
7161 if (tmp == crtc)
7162 break;
7163 crtc_mask <<= 1;
7164 }
7165
7166 if (encoder->possible_crtcs & crtc_mask)
7167 return true;
7168 return false;
7169}
7170
Daniel Vetter9a935852012-07-05 22:34:27 +02007171/**
7172 * intel_modeset_update_staged_output_state
7173 *
7174 * Updates the staged output configuration state, e.g. after we've read out the
7175 * current hw state.
7176 */
7177static void intel_modeset_update_staged_output_state(struct drm_device *dev)
7178{
7179 struct intel_encoder *encoder;
7180 struct intel_connector *connector;
7181
7182 list_for_each_entry(connector, &dev->mode_config.connector_list,
7183 base.head) {
7184 connector->new_encoder =
7185 to_intel_encoder(connector->base.encoder);
7186 }
7187
7188 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
7189 base.head) {
7190 encoder->new_crtc =
7191 to_intel_crtc(encoder->base.crtc);
7192 }
7193}
7194
7195/**
7196 * intel_modeset_commit_output_state
7197 *
7198 * This function copies the stage display pipe configuration to the real one.
7199 */
7200static void intel_modeset_commit_output_state(struct drm_device *dev)
7201{
7202 struct intel_encoder *encoder;
7203 struct intel_connector *connector;
7204
7205 list_for_each_entry(connector, &dev->mode_config.connector_list,
7206 base.head) {
7207 connector->base.encoder = &connector->new_encoder->base;
7208 }
7209
7210 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
7211 base.head) {
7212 encoder->base.crtc = &encoder->new_crtc->base;
7213 }
7214}
7215
Daniel Vetter7758a112012-07-08 19:40:39 +02007216static struct drm_display_mode *
7217intel_modeset_adjusted_mode(struct drm_crtc *crtc,
7218 struct drm_display_mode *mode)
7219{
7220 struct drm_device *dev = crtc->dev;
7221 struct drm_display_mode *adjusted_mode;
7222 struct drm_encoder_helper_funcs *encoder_funcs;
7223 struct intel_encoder *encoder;
7224
7225 adjusted_mode = drm_mode_duplicate(dev, mode);
7226 if (!adjusted_mode)
7227 return ERR_PTR(-ENOMEM);
7228
7229 /* Pass our mode to the connectors and the CRTC to give them a chance to
7230 * adjust it according to limitations or connector properties, and also
7231 * a chance to reject the mode entirely.
7232 */
7233 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
7234 base.head) {
7235
7236 if (&encoder->new_crtc->base != crtc)
7237 continue;
7238 encoder_funcs = encoder->base.helper_private;
7239 if (!(encoder_funcs->mode_fixup(&encoder->base, mode,
7240 adjusted_mode))) {
7241 DRM_DEBUG_KMS("Encoder fixup failed\n");
7242 goto fail;
7243 }
7244 }
7245
7246 if (!(intel_crtc_mode_fixup(crtc, mode, adjusted_mode))) {
7247 DRM_DEBUG_KMS("CRTC fixup failed\n");
7248 goto fail;
7249 }
7250 DRM_DEBUG_KMS("[CRTC:%d]\n", crtc->base.id);
7251
7252 return adjusted_mode;
7253fail:
7254 drm_mode_destroy(dev, adjusted_mode);
7255 return ERR_PTR(-EINVAL);
7256}
7257
Daniel Vettere2e1ed42012-07-08 21:14:38 +02007258/* Computes which crtcs are affected and sets the relevant bits in the mask. For
7259 * simplicity we use the crtc's pipe number (because it's easier to obtain). */
7260static void
7261intel_modeset_affected_pipes(struct drm_crtc *crtc, unsigned *modeset_pipes,
7262 unsigned *prepare_pipes, unsigned *disable_pipes)
7263{
7264 struct intel_crtc *intel_crtc;
7265 struct drm_device *dev = crtc->dev;
7266 struct intel_encoder *encoder;
7267 struct intel_connector *connector;
7268 struct drm_crtc *tmp_crtc;
7269
7270 *disable_pipes = *modeset_pipes = *prepare_pipes = 0;
7271
7272 /* Check which crtcs have changed outputs connected to them, these need
7273 * to be part of the prepare_pipes mask. We don't (yet) support global
7274 * modeset across multiple crtcs, so modeset_pipes will only have one
7275 * bit set at most. */
7276 list_for_each_entry(connector, &dev->mode_config.connector_list,
7277 base.head) {
7278 if (connector->base.encoder == &connector->new_encoder->base)
7279 continue;
7280
7281 if (connector->base.encoder) {
7282 tmp_crtc = connector->base.encoder->crtc;
7283
7284 *prepare_pipes |= 1 << to_intel_crtc(tmp_crtc)->pipe;
7285 }
7286
7287 if (connector->new_encoder)
7288 *prepare_pipes |=
7289 1 << connector->new_encoder->new_crtc->pipe;
7290 }
7291
7292 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
7293 base.head) {
7294 if (encoder->base.crtc == &encoder->new_crtc->base)
7295 continue;
7296
7297 if (encoder->base.crtc) {
7298 tmp_crtc = encoder->base.crtc;
7299
7300 *prepare_pipes |= 1 << to_intel_crtc(tmp_crtc)->pipe;
7301 }
7302
7303 if (encoder->new_crtc)
7304 *prepare_pipes |= 1 << encoder->new_crtc->pipe;
7305 }
7306
7307 /* Check for any pipes that will be fully disabled ... */
7308 list_for_each_entry(intel_crtc, &dev->mode_config.crtc_list,
7309 base.head) {
7310 bool used = false;
7311
7312 /* Don't try to disable disabled crtcs. */
7313 if (!intel_crtc->base.enabled)
7314 continue;
7315
7316 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
7317 base.head) {
7318 if (encoder->new_crtc == intel_crtc)
7319 used = true;
7320 }
7321
7322 if (!used)
7323 *disable_pipes |= 1 << intel_crtc->pipe;
7324 }
7325
7326
7327 /* set_mode is also used to update properties on life display pipes. */
7328 intel_crtc = to_intel_crtc(crtc);
7329 if (crtc->enabled)
7330 *prepare_pipes |= 1 << intel_crtc->pipe;
7331
7332 /* We only support modeset on one single crtc, hence we need to do that
7333 * only for the passed in crtc iff we change anything else than just
7334 * disable crtcs.
7335 *
7336 * This is actually not true, to be fully compatible with the old crtc
7337 * helper we automatically disable _any_ output (i.e. doesn't need to be
7338 * connected to the crtc we're modesetting on) if it's disconnected.
7339 * Which is a rather nutty api (since changed the output configuration
7340 * without userspace's explicit request can lead to confusion), but
7341 * alas. Hence we currently need to modeset on all pipes we prepare. */
7342 if (*prepare_pipes)
7343 *modeset_pipes = *prepare_pipes;
7344
7345 /* ... and mask these out. */
7346 *modeset_pipes &= ~(*disable_pipes);
7347 *prepare_pipes &= ~(*disable_pipes);
7348}
7349
Daniel Vetterea9d7582012-07-10 10:42:52 +02007350static bool intel_crtc_in_use(struct drm_crtc *crtc)
7351{
7352 struct drm_encoder *encoder;
7353 struct drm_device *dev = crtc->dev;
7354
7355 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head)
7356 if (encoder->crtc == crtc)
7357 return true;
7358
7359 return false;
7360}
7361
7362static void
7363intel_modeset_update_state(struct drm_device *dev, unsigned prepare_pipes)
7364{
7365 struct intel_encoder *intel_encoder;
7366 struct intel_crtc *intel_crtc;
7367 struct drm_connector *connector;
7368
7369 list_for_each_entry(intel_encoder, &dev->mode_config.encoder_list,
7370 base.head) {
7371 if (!intel_encoder->base.crtc)
7372 continue;
7373
7374 intel_crtc = to_intel_crtc(intel_encoder->base.crtc);
7375
7376 if (prepare_pipes & (1 << intel_crtc->pipe))
7377 intel_encoder->connectors_active = false;
7378 }
7379
7380 intel_modeset_commit_output_state(dev);
7381
7382 /* Update computed state. */
7383 list_for_each_entry(intel_crtc, &dev->mode_config.crtc_list,
7384 base.head) {
7385 intel_crtc->base.enabled = intel_crtc_in_use(&intel_crtc->base);
7386 }
7387
7388 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
7389 if (!connector->encoder || !connector->encoder->crtc)
7390 continue;
7391
7392 intel_crtc = to_intel_crtc(connector->encoder->crtc);
7393
7394 if (prepare_pipes & (1 << intel_crtc->pipe)) {
Daniel Vetter68d34722012-09-06 22:08:35 +02007395 struct drm_property *dpms_property =
7396 dev->mode_config.dpms_property;
7397
Daniel Vetterea9d7582012-07-10 10:42:52 +02007398 connector->dpms = DRM_MODE_DPMS_ON;
Daniel Vetter68d34722012-09-06 22:08:35 +02007399 drm_connector_property_set_value(connector,
7400 dpms_property,
7401 DRM_MODE_DPMS_ON);
Daniel Vetterea9d7582012-07-10 10:42:52 +02007402
7403 intel_encoder = to_intel_encoder(connector->encoder);
7404 intel_encoder->connectors_active = true;
7405 }
7406 }
7407
7408}
7409
Daniel Vetter25c5b262012-07-08 22:08:04 +02007410#define for_each_intel_crtc_masked(dev, mask, intel_crtc) \
7411 list_for_each_entry((intel_crtc), \
7412 &(dev)->mode_config.crtc_list, \
7413 base.head) \
7414 if (mask & (1 <<(intel_crtc)->pipe)) \
7415
Daniel Vetterb9805142012-08-31 17:37:33 +02007416void
Daniel Vetter8af6cf82012-07-10 09:50:11 +02007417intel_modeset_check_state(struct drm_device *dev)
7418{
7419 struct intel_crtc *crtc;
7420 struct intel_encoder *encoder;
7421 struct intel_connector *connector;
7422
7423 list_for_each_entry(connector, &dev->mode_config.connector_list,
7424 base.head) {
7425 /* This also checks the encoder/connector hw state with the
7426 * ->get_hw_state callbacks. */
7427 intel_connector_check_state(connector);
7428
7429 WARN(&connector->new_encoder->base != connector->base.encoder,
7430 "connector's staged encoder doesn't match current encoder\n");
7431 }
7432
7433 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
7434 base.head) {
7435 bool enabled = false;
7436 bool active = false;
7437 enum pipe pipe, tracked_pipe;
7438
7439 DRM_DEBUG_KMS("[ENCODER:%d:%s]\n",
7440 encoder->base.base.id,
7441 drm_get_encoder_name(&encoder->base));
7442
7443 WARN(&encoder->new_crtc->base != encoder->base.crtc,
7444 "encoder's stage crtc doesn't match current crtc\n");
7445 WARN(encoder->connectors_active && !encoder->base.crtc,
7446 "encoder's active_connectors set, but no crtc\n");
7447
7448 list_for_each_entry(connector, &dev->mode_config.connector_list,
7449 base.head) {
7450 if (connector->base.encoder != &encoder->base)
7451 continue;
7452 enabled = true;
7453 if (connector->base.dpms != DRM_MODE_DPMS_OFF)
7454 active = true;
7455 }
7456 WARN(!!encoder->base.crtc != enabled,
7457 "encoder's enabled state mismatch "
7458 "(expected %i, found %i)\n",
7459 !!encoder->base.crtc, enabled);
7460 WARN(active && !encoder->base.crtc,
7461 "active encoder with no crtc\n");
7462
7463 WARN(encoder->connectors_active != active,
7464 "encoder's computed active state doesn't match tracked active state "
7465 "(expected %i, found %i)\n", active, encoder->connectors_active);
7466
7467 active = encoder->get_hw_state(encoder, &pipe);
7468 WARN(active != encoder->connectors_active,
7469 "encoder's hw state doesn't match sw tracking "
7470 "(expected %i, found %i)\n",
7471 encoder->connectors_active, active);
7472
7473 if (!encoder->base.crtc)
7474 continue;
7475
7476 tracked_pipe = to_intel_crtc(encoder->base.crtc)->pipe;
7477 WARN(active && pipe != tracked_pipe,
7478 "active encoder's pipe doesn't match"
7479 "(expected %i, found %i)\n",
7480 tracked_pipe, pipe);
7481
7482 }
7483
7484 list_for_each_entry(crtc, &dev->mode_config.crtc_list,
7485 base.head) {
7486 bool enabled = false;
7487 bool active = false;
7488
7489 DRM_DEBUG_KMS("[CRTC:%d]\n",
7490 crtc->base.base.id);
7491
7492 WARN(crtc->active && !crtc->base.enabled,
7493 "active crtc, but not enabled in sw tracking\n");
7494
7495 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
7496 base.head) {
7497 if (encoder->base.crtc != &crtc->base)
7498 continue;
7499 enabled = true;
7500 if (encoder->connectors_active)
7501 active = true;
7502 }
7503 WARN(active != crtc->active,
7504 "crtc's computed active state doesn't match tracked active state "
7505 "(expected %i, found %i)\n", active, crtc->active);
7506 WARN(enabled != crtc->base.enabled,
7507 "crtc's computed enabled state doesn't match tracked enabled state "
7508 "(expected %i, found %i)\n", enabled, crtc->base.enabled);
7509
7510 assert_pipe(dev->dev_private, crtc->pipe, crtc->active);
7511 }
7512}
7513
Daniel Vettera6778b32012-07-02 09:56:42 +02007514bool intel_set_mode(struct drm_crtc *crtc,
7515 struct drm_display_mode *mode,
Daniel Vetter94352cf2012-07-05 22:51:56 +02007516 int x, int y, struct drm_framebuffer *fb)
Daniel Vettera6778b32012-07-02 09:56:42 +02007517{
7518 struct drm_device *dev = crtc->dev;
Daniel Vetterdbf2b54e2012-07-02 11:18:29 +02007519 drm_i915_private_t *dev_priv = dev->dev_private;
Daniel Vettera6778b32012-07-02 09:56:42 +02007520 struct drm_display_mode *adjusted_mode, saved_mode, saved_hwmode;
Daniel Vettera6778b32012-07-02 09:56:42 +02007521 struct drm_encoder_helper_funcs *encoder_funcs;
Daniel Vettera6778b32012-07-02 09:56:42 +02007522 struct drm_encoder *encoder;
Daniel Vetter25c5b262012-07-08 22:08:04 +02007523 struct intel_crtc *intel_crtc;
7524 unsigned disable_pipes, prepare_pipes, modeset_pipes;
Daniel Vettera6778b32012-07-02 09:56:42 +02007525 bool ret = true;
7526
Daniel Vettere2e1ed42012-07-08 21:14:38 +02007527 intel_modeset_affected_pipes(crtc, &modeset_pipes,
Daniel Vetter25c5b262012-07-08 22:08:04 +02007528 &prepare_pipes, &disable_pipes);
7529
7530 DRM_DEBUG_KMS("set mode pipe masks: modeset: %x, prepare: %x, disable: %x\n",
7531 modeset_pipes, prepare_pipes, disable_pipes);
Daniel Vettere2e1ed42012-07-08 21:14:38 +02007532
Daniel Vetter976f8a22012-07-08 22:34:21 +02007533 for_each_intel_crtc_masked(dev, disable_pipes, intel_crtc)
7534 intel_crtc_disable(&intel_crtc->base);
7535
Daniel Vettera6778b32012-07-02 09:56:42 +02007536 saved_hwmode = crtc->hwmode;
7537 saved_mode = crtc->mode;
Daniel Vettera6778b32012-07-02 09:56:42 +02007538
Daniel Vetter25c5b262012-07-08 22:08:04 +02007539 /* Hack: Because we don't (yet) support global modeset on multiple
7540 * crtcs, we don't keep track of the new mode for more than one crtc.
7541 * Hence simply check whether any bit is set in modeset_pipes in all the
7542 * pieces of code that are not yet converted to deal with mutliple crtcs
7543 * changing their mode at the same time. */
7544 adjusted_mode = NULL;
7545 if (modeset_pipes) {
7546 adjusted_mode = intel_modeset_adjusted_mode(crtc, mode);
7547 if (IS_ERR(adjusted_mode)) {
7548 return false;
7549 }
Daniel Vettera6778b32012-07-02 09:56:42 +02007550 }
7551
Daniel Vetterea9d7582012-07-10 10:42:52 +02007552 for_each_intel_crtc_masked(dev, prepare_pipes, intel_crtc) {
7553 if (intel_crtc->base.enabled)
7554 dev_priv->display.crtc_disable(&intel_crtc->base);
7555 }
Daniel Vettera6778b32012-07-02 09:56:42 +02007556
Daniel Vetter6c4c86f2012-09-10 21:58:30 +02007557 /* crtc->mode is already used by the ->mode_set callbacks, hence we need
7558 * to set it here already despite that we pass it down the callchain.
7559 */
7560 if (modeset_pipes)
Daniel Vetter25c5b262012-07-08 22:08:04 +02007561 crtc->mode = *mode;
Daniel Vetter7758a112012-07-08 19:40:39 +02007562
Daniel Vetterea9d7582012-07-10 10:42:52 +02007563 /* Only after disabling all output pipelines that will be changed can we
7564 * update the the output configuration. */
7565 intel_modeset_update_state(dev, prepare_pipes);
7566
Daniel Vettera6778b32012-07-02 09:56:42 +02007567 /* Set up the DPLL and any encoders state that needs to adjust or depend
7568 * on the DPLL.
7569 */
Daniel Vetter25c5b262012-07-08 22:08:04 +02007570 for_each_intel_crtc_masked(dev, modeset_pipes, intel_crtc) {
7571 ret = !intel_crtc_mode_set(&intel_crtc->base,
7572 mode, adjusted_mode,
7573 x, y, fb);
7574 if (!ret)
7575 goto done;
Daniel Vettera6778b32012-07-02 09:56:42 +02007576
Daniel Vetter25c5b262012-07-08 22:08:04 +02007577 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
Daniel Vettera6778b32012-07-02 09:56:42 +02007578
Daniel Vetter25c5b262012-07-08 22:08:04 +02007579 if (encoder->crtc != &intel_crtc->base)
7580 continue;
Daniel Vettera6778b32012-07-02 09:56:42 +02007581
Daniel Vetter25c5b262012-07-08 22:08:04 +02007582 DRM_DEBUG_KMS("[ENCODER:%d:%s] set [MODE:%d:%s]\n",
7583 encoder->base.id, drm_get_encoder_name(encoder),
7584 mode->base.id, mode->name);
7585 encoder_funcs = encoder->helper_private;
7586 encoder_funcs->mode_set(encoder, mode, adjusted_mode);
7587 }
Daniel Vettera6778b32012-07-02 09:56:42 +02007588 }
7589
7590 /* Now enable the clocks, plane, pipe, and connectors that we set up. */
Daniel Vetter25c5b262012-07-08 22:08:04 +02007591 for_each_intel_crtc_masked(dev, prepare_pipes, intel_crtc)
7592 dev_priv->display.crtc_enable(&intel_crtc->base);
Daniel Vettera6778b32012-07-02 09:56:42 +02007593
Daniel Vetter25c5b262012-07-08 22:08:04 +02007594 if (modeset_pipes) {
7595 /* Store real post-adjustment hardware mode. */
7596 crtc->hwmode = *adjusted_mode;
Daniel Vettera6778b32012-07-02 09:56:42 +02007597
Daniel Vetter25c5b262012-07-08 22:08:04 +02007598 /* Calculate and store various constants which
7599 * are later needed by vblank and swap-completion
7600 * timestamping. They are derived from true hwmode.
7601 */
7602 drm_calc_timestamping_constants(crtc);
7603 }
Daniel Vettera6778b32012-07-02 09:56:42 +02007604
7605 /* FIXME: add subpixel order */
7606done:
7607 drm_mode_destroy(dev, adjusted_mode);
Daniel Vetter25c5b262012-07-08 22:08:04 +02007608 if (!ret && crtc->enabled) {
Daniel Vettera6778b32012-07-02 09:56:42 +02007609 crtc->hwmode = saved_hwmode;
7610 crtc->mode = saved_mode;
Daniel Vetter8af6cf82012-07-10 09:50:11 +02007611 } else {
7612 intel_modeset_check_state(dev);
Daniel Vettera6778b32012-07-02 09:56:42 +02007613 }
7614
7615 return ret;
7616}
7617
Daniel Vetter25c5b262012-07-08 22:08:04 +02007618#undef for_each_intel_crtc_masked
7619
Daniel Vetterd9e55602012-07-04 22:16:09 +02007620static void intel_set_config_free(struct intel_set_config *config)
7621{
7622 if (!config)
7623 return;
7624
Daniel Vetter1aa4b622012-07-05 16:20:48 +02007625 kfree(config->save_connector_encoders);
7626 kfree(config->save_encoder_crtcs);
Daniel Vetterd9e55602012-07-04 22:16:09 +02007627 kfree(config);
7628}
7629
Daniel Vetter85f9eb72012-07-04 22:24:08 +02007630static int intel_set_config_save_state(struct drm_device *dev,
7631 struct intel_set_config *config)
7632{
Daniel Vetter85f9eb72012-07-04 22:24:08 +02007633 struct drm_encoder *encoder;
7634 struct drm_connector *connector;
7635 int count;
7636
Daniel Vetter1aa4b622012-07-05 16:20:48 +02007637 config->save_encoder_crtcs =
7638 kcalloc(dev->mode_config.num_encoder,
7639 sizeof(struct drm_crtc *), GFP_KERNEL);
7640 if (!config->save_encoder_crtcs)
Daniel Vetter85f9eb72012-07-04 22:24:08 +02007641 return -ENOMEM;
7642
Daniel Vetter1aa4b622012-07-05 16:20:48 +02007643 config->save_connector_encoders =
7644 kcalloc(dev->mode_config.num_connector,
7645 sizeof(struct drm_encoder *), GFP_KERNEL);
7646 if (!config->save_connector_encoders)
Daniel Vetter85f9eb72012-07-04 22:24:08 +02007647 return -ENOMEM;
7648
7649 /* Copy data. Note that driver private data is not affected.
7650 * Should anything bad happen only the expected state is
7651 * restored, not the drivers personal bookkeeping.
7652 */
7653 count = 0;
Daniel Vetter85f9eb72012-07-04 22:24:08 +02007654 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
Daniel Vetter1aa4b622012-07-05 16:20:48 +02007655 config->save_encoder_crtcs[count++] = encoder->crtc;
Daniel Vetter85f9eb72012-07-04 22:24:08 +02007656 }
7657
7658 count = 0;
7659 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
Daniel Vetter1aa4b622012-07-05 16:20:48 +02007660 config->save_connector_encoders[count++] = connector->encoder;
Daniel Vetter85f9eb72012-07-04 22:24:08 +02007661 }
7662
7663 return 0;
7664}
7665
7666static void intel_set_config_restore_state(struct drm_device *dev,
7667 struct intel_set_config *config)
7668{
Daniel Vetter9a935852012-07-05 22:34:27 +02007669 struct intel_encoder *encoder;
7670 struct intel_connector *connector;
Daniel Vetter85f9eb72012-07-04 22:24:08 +02007671 int count;
7672
7673 count = 0;
Daniel Vetter9a935852012-07-05 22:34:27 +02007674 list_for_each_entry(encoder, &dev->mode_config.encoder_list, base.head) {
7675 encoder->new_crtc =
7676 to_intel_crtc(config->save_encoder_crtcs[count++]);
Daniel Vetter85f9eb72012-07-04 22:24:08 +02007677 }
7678
7679 count = 0;
Daniel Vetter9a935852012-07-05 22:34:27 +02007680 list_for_each_entry(connector, &dev->mode_config.connector_list, base.head) {
7681 connector->new_encoder =
7682 to_intel_encoder(config->save_connector_encoders[count++]);
Daniel Vetter85f9eb72012-07-04 22:24:08 +02007683 }
7684}
7685
Daniel Vetter5e2b5842012-07-04 22:41:29 +02007686static void
7687intel_set_config_compute_mode_changes(struct drm_mode_set *set,
7688 struct intel_set_config *config)
7689{
7690
7691 /* We should be able to check here if the fb has the same properties
7692 * and then just flip_or_move it */
7693 if (set->crtc->fb != set->fb) {
7694 /* If we have no fb then treat it as a full mode set */
7695 if (set->crtc->fb == NULL) {
7696 DRM_DEBUG_KMS("crtc has no fb, full mode set\n");
7697 config->mode_changed = true;
7698 } else if (set->fb == NULL) {
7699 config->mode_changed = true;
7700 } else if (set->fb->depth != set->crtc->fb->depth) {
7701 config->mode_changed = true;
7702 } else if (set->fb->bits_per_pixel !=
7703 set->crtc->fb->bits_per_pixel) {
7704 config->mode_changed = true;
7705 } else
7706 config->fb_changed = true;
7707 }
7708
Daniel Vetter835c5872012-07-10 18:11:08 +02007709 if (set->fb && (set->x != set->crtc->x || set->y != set->crtc->y))
Daniel Vetter5e2b5842012-07-04 22:41:29 +02007710 config->fb_changed = true;
7711
7712 if (set->mode && !drm_mode_equal(set->mode, &set->crtc->mode)) {
7713 DRM_DEBUG_KMS("modes are different, full mode set\n");
7714 drm_mode_debug_printmodeline(&set->crtc->mode);
7715 drm_mode_debug_printmodeline(set->mode);
7716 config->mode_changed = true;
7717 }
7718}
7719
Daniel Vetter2e431052012-07-04 22:42:15 +02007720static int
Daniel Vetter9a935852012-07-05 22:34:27 +02007721intel_modeset_stage_output_state(struct drm_device *dev,
7722 struct drm_mode_set *set,
7723 struct intel_set_config *config)
Daniel Vetter50f56112012-07-02 09:35:43 +02007724{
Daniel Vetter85f9eb72012-07-04 22:24:08 +02007725 struct drm_crtc *new_crtc;
Daniel Vetter9a935852012-07-05 22:34:27 +02007726 struct intel_connector *connector;
7727 struct intel_encoder *encoder;
Daniel Vetter2e431052012-07-04 22:42:15 +02007728 int count, ro;
Daniel Vetter50f56112012-07-02 09:35:43 +02007729
Daniel Vetter9a935852012-07-05 22:34:27 +02007730 /* The upper layers ensure that we either disabl a crtc or have a list
7731 * of connectors. For paranoia, double-check this. */
7732 WARN_ON(!set->fb && (set->num_connectors != 0));
7733 WARN_ON(set->fb && (set->num_connectors == 0));
7734
Daniel Vetter50f56112012-07-02 09:35:43 +02007735 count = 0;
Daniel Vetter9a935852012-07-05 22:34:27 +02007736 list_for_each_entry(connector, &dev->mode_config.connector_list,
7737 base.head) {
7738 /* Otherwise traverse passed in connector list and get encoders
7739 * for them. */
Daniel Vetter50f56112012-07-02 09:35:43 +02007740 for (ro = 0; ro < set->num_connectors; ro++) {
Daniel Vetter9a935852012-07-05 22:34:27 +02007741 if (set->connectors[ro] == &connector->base) {
7742 connector->new_encoder = connector->encoder;
Daniel Vetter50f56112012-07-02 09:35:43 +02007743 break;
7744 }
7745 }
7746
Daniel Vetter9a935852012-07-05 22:34:27 +02007747 /* If we disable the crtc, disable all its connectors. Also, if
7748 * the connector is on the changing crtc but not on the new
7749 * connector list, disable it. */
7750 if ((!set->fb || ro == set->num_connectors) &&
7751 connector->base.encoder &&
7752 connector->base.encoder->crtc == set->crtc) {
7753 connector->new_encoder = NULL;
7754
7755 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] to [NOCRTC]\n",
7756 connector->base.base.id,
7757 drm_get_connector_name(&connector->base));
7758 }
7759
7760
7761 if (&connector->new_encoder->base != connector->base.encoder) {
Daniel Vetter50f56112012-07-02 09:35:43 +02007762 DRM_DEBUG_KMS("encoder changed, full mode switch\n");
Daniel Vetter5e2b5842012-07-04 22:41:29 +02007763 config->mode_changed = true;
Daniel Vetter50f56112012-07-02 09:35:43 +02007764 }
Daniel Vetter50f56112012-07-02 09:35:43 +02007765
Daniel Vetter9a935852012-07-05 22:34:27 +02007766 /* Disable all disconnected encoders. */
7767 if (connector->base.status == connector_status_disconnected)
7768 connector->new_encoder = NULL;
7769 }
7770 /* connector->new_encoder is now updated for all connectors. */
7771
7772 /* Update crtc of enabled connectors. */
Daniel Vetter50f56112012-07-02 09:35:43 +02007773 count = 0;
Daniel Vetter9a935852012-07-05 22:34:27 +02007774 list_for_each_entry(connector, &dev->mode_config.connector_list,
7775 base.head) {
7776 if (!connector->new_encoder)
Daniel Vetter50f56112012-07-02 09:35:43 +02007777 continue;
7778
Daniel Vetter9a935852012-07-05 22:34:27 +02007779 new_crtc = connector->new_encoder->base.crtc;
Daniel Vetter50f56112012-07-02 09:35:43 +02007780
7781 for (ro = 0; ro < set->num_connectors; ro++) {
Daniel Vetter9a935852012-07-05 22:34:27 +02007782 if (set->connectors[ro] == &connector->base)
Daniel Vetter50f56112012-07-02 09:35:43 +02007783 new_crtc = set->crtc;
7784 }
7785
7786 /* Make sure the new CRTC will work with the encoder */
Daniel Vetter9a935852012-07-05 22:34:27 +02007787 if (!intel_encoder_crtc_ok(&connector->new_encoder->base,
7788 new_crtc)) {
Daniel Vetter5e2b5842012-07-04 22:41:29 +02007789 return -EINVAL;
Daniel Vetter50f56112012-07-02 09:35:43 +02007790 }
Daniel Vetter9a935852012-07-05 22:34:27 +02007791 connector->encoder->new_crtc = to_intel_crtc(new_crtc);
7792
7793 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] to [CRTC:%d]\n",
7794 connector->base.base.id,
7795 drm_get_connector_name(&connector->base),
7796 new_crtc->base.id);
7797 }
7798
7799 /* Check for any encoders that needs to be disabled. */
7800 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
7801 base.head) {
7802 list_for_each_entry(connector,
7803 &dev->mode_config.connector_list,
7804 base.head) {
7805 if (connector->new_encoder == encoder) {
7806 WARN_ON(!connector->new_encoder->new_crtc);
7807
7808 goto next_encoder;
7809 }
7810 }
7811 encoder->new_crtc = NULL;
7812next_encoder:
7813 /* Only now check for crtc changes so we don't miss encoders
7814 * that will be disabled. */
7815 if (&encoder->new_crtc->base != encoder->base.crtc) {
Daniel Vetter50f56112012-07-02 09:35:43 +02007816 DRM_DEBUG_KMS("crtc changed, full mode switch\n");
Daniel Vetter5e2b5842012-07-04 22:41:29 +02007817 config->mode_changed = true;
Daniel Vetter50f56112012-07-02 09:35:43 +02007818 }
7819 }
Daniel Vetter9a935852012-07-05 22:34:27 +02007820 /* Now we've also updated encoder->new_crtc for all encoders. */
Daniel Vetter50f56112012-07-02 09:35:43 +02007821
Daniel Vetter2e431052012-07-04 22:42:15 +02007822 return 0;
7823}
7824
7825static int intel_crtc_set_config(struct drm_mode_set *set)
7826{
7827 struct drm_device *dev;
Daniel Vetter2e431052012-07-04 22:42:15 +02007828 struct drm_mode_set save_set;
7829 struct intel_set_config *config;
7830 int ret;
Daniel Vetter2e431052012-07-04 22:42:15 +02007831
Daniel Vetter8d3e3752012-07-05 16:09:09 +02007832 BUG_ON(!set);
7833 BUG_ON(!set->crtc);
7834 BUG_ON(!set->crtc->helper_private);
Daniel Vetter2e431052012-07-04 22:42:15 +02007835
7836 if (!set->mode)
7837 set->fb = NULL;
7838
Daniel Vetter431e50f2012-07-10 17:53:42 +02007839 /* The fb helper likes to play gross jokes with ->mode_set_config.
7840 * Unfortunately the crtc helper doesn't do much at all for this case,
7841 * so we have to cope with this madness until the fb helper is fixed up. */
7842 if (set->fb && set->num_connectors == 0)
7843 return 0;
7844
Daniel Vetter2e431052012-07-04 22:42:15 +02007845 if (set->fb) {
7846 DRM_DEBUG_KMS("[CRTC:%d] [FB:%d] #connectors=%d (x y) (%i %i)\n",
7847 set->crtc->base.id, set->fb->base.id,
7848 (int)set->num_connectors, set->x, set->y);
7849 } else {
7850 DRM_DEBUG_KMS("[CRTC:%d] [NOFB]\n", set->crtc->base.id);
Daniel Vetter2e431052012-07-04 22:42:15 +02007851 }
7852
7853 dev = set->crtc->dev;
7854
7855 ret = -ENOMEM;
7856 config = kzalloc(sizeof(*config), GFP_KERNEL);
7857 if (!config)
7858 goto out_config;
7859
7860 ret = intel_set_config_save_state(dev, config);
7861 if (ret)
7862 goto out_config;
7863
7864 save_set.crtc = set->crtc;
7865 save_set.mode = &set->crtc->mode;
7866 save_set.x = set->crtc->x;
7867 save_set.y = set->crtc->y;
7868 save_set.fb = set->crtc->fb;
7869
7870 /* Compute whether we need a full modeset, only an fb base update or no
7871 * change at all. In the future we might also check whether only the
7872 * mode changed, e.g. for LVDS where we only change the panel fitter in
7873 * such cases. */
7874 intel_set_config_compute_mode_changes(set, config);
7875
Daniel Vetter9a935852012-07-05 22:34:27 +02007876 ret = intel_modeset_stage_output_state(dev, set, config);
Daniel Vetter2e431052012-07-04 22:42:15 +02007877 if (ret)
7878 goto fail;
7879
Daniel Vetter5e2b5842012-07-04 22:41:29 +02007880 if (config->mode_changed) {
Daniel Vetter87f1faa62012-07-05 23:36:17 +02007881 if (set->mode) {
Daniel Vetter50f56112012-07-02 09:35:43 +02007882 DRM_DEBUG_KMS("attempting to set mode from"
7883 " userspace\n");
7884 drm_mode_debug_printmodeline(set->mode);
Daniel Vetter87f1faa62012-07-05 23:36:17 +02007885 }
7886
7887 if (!intel_set_mode(set->crtc, set->mode,
7888 set->x, set->y, set->fb)) {
7889 DRM_ERROR("failed to set mode on [CRTC:%d]\n",
7890 set->crtc->base.id);
7891 ret = -EINVAL;
7892 goto fail;
7893 }
Daniel Vetter5e2b5842012-07-04 22:41:29 +02007894 } else if (config->fb_changed) {
Daniel Vetter4f660f42012-07-02 09:47:37 +02007895 ret = intel_pipe_set_base(set->crtc,
Daniel Vetter94352cf2012-07-05 22:51:56 +02007896 set->x, set->y, set->fb);
Daniel Vetter50f56112012-07-02 09:35:43 +02007897 }
7898
Daniel Vetterd9e55602012-07-04 22:16:09 +02007899 intel_set_config_free(config);
7900
Daniel Vetter50f56112012-07-02 09:35:43 +02007901 return 0;
7902
7903fail:
Daniel Vetter85f9eb72012-07-04 22:24:08 +02007904 intel_set_config_restore_state(dev, config);
Daniel Vetter50f56112012-07-02 09:35:43 +02007905
7906 /* Try to restore the config */
Daniel Vetter5e2b5842012-07-04 22:41:29 +02007907 if (config->mode_changed &&
Daniel Vettera6778b32012-07-02 09:56:42 +02007908 !intel_set_mode(save_set.crtc, save_set.mode,
7909 save_set.x, save_set.y, save_set.fb))
Daniel Vetter50f56112012-07-02 09:35:43 +02007910 DRM_ERROR("failed to restore config after modeset failure\n");
7911
Daniel Vetterd9e55602012-07-04 22:16:09 +02007912out_config:
7913 intel_set_config_free(config);
Daniel Vetter50f56112012-07-02 09:35:43 +02007914 return ret;
7915}
7916
Chris Wilsonf6e5b162011-04-12 18:06:51 +01007917static const struct drm_crtc_funcs intel_crtc_funcs = {
Chris Wilsonf6e5b162011-04-12 18:06:51 +01007918 .cursor_set = intel_crtc_cursor_set,
7919 .cursor_move = intel_crtc_cursor_move,
7920 .gamma_set = intel_crtc_gamma_set,
Daniel Vetter50f56112012-07-02 09:35:43 +02007921 .set_config = intel_crtc_set_config,
Chris Wilsonf6e5b162011-04-12 18:06:51 +01007922 .destroy = intel_crtc_destroy,
7923 .page_flip = intel_crtc_page_flip,
7924};
7925
Paulo Zanoni79f689a2012-10-05 12:05:52 -03007926static void intel_cpu_pll_init(struct drm_device *dev)
7927{
7928 if (IS_HASWELL(dev))
7929 intel_ddi_pll_init(dev);
7930}
7931
Jesse Barnesee7b9f92012-04-20 17:11:53 +01007932static void intel_pch_pll_init(struct drm_device *dev)
7933{
7934 drm_i915_private_t *dev_priv = dev->dev_private;
7935 int i;
7936
7937 if (dev_priv->num_pch_pll == 0) {
7938 DRM_DEBUG_KMS("No PCH PLLs on this hardware, skipping initialisation\n");
7939 return;
7940 }
7941
7942 for (i = 0; i < dev_priv->num_pch_pll; i++) {
7943 dev_priv->pch_plls[i].pll_reg = _PCH_DPLL(i);
7944 dev_priv->pch_plls[i].fp0_reg = _PCH_FP0(i);
7945 dev_priv->pch_plls[i].fp1_reg = _PCH_FP1(i);
7946 }
7947}
7948
Hannes Ederb358d0a2008-12-18 21:18:47 +01007949static void intel_crtc_init(struct drm_device *dev, int pipe)
Jesse Barnes79e53942008-11-07 14:24:08 -08007950{
Jesse Barnes22fd0fa2009-12-02 13:42:53 -08007951 drm_i915_private_t *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -08007952 struct intel_crtc *intel_crtc;
7953 int i;
7954
7955 intel_crtc = kzalloc(sizeof(struct intel_crtc) + (INTELFB_CONN_LIMIT * sizeof(struct drm_connector *)), GFP_KERNEL);
7956 if (intel_crtc == NULL)
7957 return;
7958
7959 drm_crtc_init(dev, &intel_crtc->base, &intel_crtc_funcs);
7960
7961 drm_mode_crtc_set_gamma_size(&intel_crtc->base, 256);
Jesse Barnes79e53942008-11-07 14:24:08 -08007962 for (i = 0; i < 256; i++) {
7963 intel_crtc->lut_r[i] = i;
7964 intel_crtc->lut_g[i] = i;
7965 intel_crtc->lut_b[i] = i;
7966 }
7967
Jesse Barnes80824002009-09-10 15:28:06 -07007968 /* Swap pipes & planes for FBC on pre-965 */
7969 intel_crtc->pipe = pipe;
7970 intel_crtc->plane = pipe;
Chris Wilsone2e767a2010-09-13 16:53:12 +01007971 if (IS_MOBILE(dev) && IS_GEN3(dev)) {
Zhao Yakui28c97732009-10-09 11:39:41 +08007972 DRM_DEBUG_KMS("swapping pipes & planes for FBC\n");
Chris Wilsone2e767a2010-09-13 16:53:12 +01007973 intel_crtc->plane = !pipe;
Jesse Barnes80824002009-09-10 15:28:06 -07007974 }
7975
Jesse Barnes22fd0fa2009-12-02 13:42:53 -08007976 BUG_ON(pipe >= ARRAY_SIZE(dev_priv->plane_to_crtc_mapping) ||
7977 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] != NULL);
7978 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] = &intel_crtc->base;
7979 dev_priv->pipe_to_crtc_mapping[intel_crtc->pipe] = &intel_crtc->base;
7980
Jesse Barnes5a354202011-06-24 12:19:22 -07007981 intel_crtc->bpp = 24; /* default for pre-Ironlake */
Jesse Barnes7e7d76c2010-09-10 10:47:20 -07007982
Jesse Barnes79e53942008-11-07 14:24:08 -08007983 drm_crtc_helper_add(&intel_crtc->base, &intel_helper_funcs);
Jesse Barnes79e53942008-11-07 14:24:08 -08007984}
7985
Carl Worth08d7b3d2009-04-29 14:43:54 -07007986int intel_get_pipe_from_crtc_id(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00007987 struct drm_file *file)
Carl Worth08d7b3d2009-04-29 14:43:54 -07007988{
Carl Worth08d7b3d2009-04-29 14:43:54 -07007989 struct drm_i915_get_pipe_from_crtc_id *pipe_from_crtc_id = data;
Daniel Vetterc05422d2009-08-11 16:05:30 +02007990 struct drm_mode_object *drmmode_obj;
7991 struct intel_crtc *crtc;
Carl Worth08d7b3d2009-04-29 14:43:54 -07007992
Daniel Vetter1cff8f62012-04-24 09:55:08 +02007993 if (!drm_core_check_feature(dev, DRIVER_MODESET))
7994 return -ENODEV;
Carl Worth08d7b3d2009-04-29 14:43:54 -07007995
Daniel Vetterc05422d2009-08-11 16:05:30 +02007996 drmmode_obj = drm_mode_object_find(dev, pipe_from_crtc_id->crtc_id,
7997 DRM_MODE_OBJECT_CRTC);
Carl Worth08d7b3d2009-04-29 14:43:54 -07007998
Daniel Vetterc05422d2009-08-11 16:05:30 +02007999 if (!drmmode_obj) {
Carl Worth08d7b3d2009-04-29 14:43:54 -07008000 DRM_ERROR("no such CRTC id\n");
8001 return -EINVAL;
8002 }
8003
Daniel Vetterc05422d2009-08-11 16:05:30 +02008004 crtc = to_intel_crtc(obj_to_crtc(drmmode_obj));
8005 pipe_from_crtc_id->pipe = crtc->pipe;
Carl Worth08d7b3d2009-04-29 14:43:54 -07008006
Daniel Vetterc05422d2009-08-11 16:05:30 +02008007 return 0;
Carl Worth08d7b3d2009-04-29 14:43:54 -07008008}
8009
Daniel Vetter66a92782012-07-12 20:08:18 +02008010static int intel_encoder_clones(struct intel_encoder *encoder)
Jesse Barnes79e53942008-11-07 14:24:08 -08008011{
Daniel Vetter66a92782012-07-12 20:08:18 +02008012 struct drm_device *dev = encoder->base.dev;
8013 struct intel_encoder *source_encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08008014 int index_mask = 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08008015 int entry = 0;
8016
Daniel Vetter66a92782012-07-12 20:08:18 +02008017 list_for_each_entry(source_encoder,
8018 &dev->mode_config.encoder_list, base.head) {
8019
8020 if (encoder == source_encoder)
Jesse Barnes79e53942008-11-07 14:24:08 -08008021 index_mask |= (1 << entry);
Daniel Vetter66a92782012-07-12 20:08:18 +02008022
8023 /* Intel hw has only one MUX where enocoders could be cloned. */
8024 if (encoder->cloneable && source_encoder->cloneable)
8025 index_mask |= (1 << entry);
8026
Jesse Barnes79e53942008-11-07 14:24:08 -08008027 entry++;
8028 }
Chris Wilson4ef69c72010-09-09 15:14:28 +01008029
Jesse Barnes79e53942008-11-07 14:24:08 -08008030 return index_mask;
8031}
8032
Chris Wilson4d302442010-12-14 19:21:29 +00008033static bool has_edp_a(struct drm_device *dev)
8034{
8035 struct drm_i915_private *dev_priv = dev->dev_private;
8036
8037 if (!IS_MOBILE(dev))
8038 return false;
8039
8040 if ((I915_READ(DP_A) & DP_DETECTED) == 0)
8041 return false;
8042
8043 if (IS_GEN5(dev) &&
8044 (I915_READ(ILK_DISPLAY_CHICKEN_FUSES) & ILK_eDP_A_DISABLE))
8045 return false;
8046
8047 return true;
8048}
8049
Jesse Barnes79e53942008-11-07 14:24:08 -08008050static void intel_setup_outputs(struct drm_device *dev)
8051{
Eric Anholt725e30a2009-01-22 13:01:02 -08008052 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson4ef69c72010-09-09 15:14:28 +01008053 struct intel_encoder *encoder;
Adam Jacksoncb0953d2010-07-16 14:46:29 -04008054 bool dpd_is_edp = false;
Chris Wilsonf3cfcba2012-02-09 09:35:53 +00008055 bool has_lvds;
Jesse Barnes79e53942008-11-07 14:24:08 -08008056
Chris Wilsonf3cfcba2012-02-09 09:35:53 +00008057 has_lvds = intel_lvds_init(dev);
Chris Wilsonc5d1b512010-11-29 18:00:23 +00008058 if (!has_lvds && !HAS_PCH_SPLIT(dev)) {
8059 /* disable the panel fitter on everything but LVDS */
8060 I915_WRITE(PFIT_CONTROL, 0);
8061 }
Jesse Barnes79e53942008-11-07 14:24:08 -08008062
Eric Anholtbad720f2009-10-22 16:11:14 -07008063 if (HAS_PCH_SPLIT(dev)) {
Adam Jacksoncb0953d2010-07-16 14:46:29 -04008064 dpd_is_edp = intel_dpd_is_edp(dev);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +08008065
Chris Wilson4d302442010-12-14 19:21:29 +00008066 if (has_edp_a(dev))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03008067 intel_dp_init(dev, DP_A, PORT_A);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08008068
Adam Jacksoncb0953d2010-07-16 14:46:29 -04008069 if (dpd_is_edp && (I915_READ(PCH_DP_D) & DP_DETECTED))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03008070 intel_dp_init(dev, PCH_DP_D, PORT_D);
Adam Jacksoncb0953d2010-07-16 14:46:29 -04008071 }
8072
8073 intel_crt_init(dev);
8074
Eugeni Dodonov0e72a5b2012-05-09 15:37:27 -03008075 if (IS_HASWELL(dev)) {
8076 int found;
8077
8078 /* Haswell uses DDI functions to detect digital outputs */
8079 found = I915_READ(DDI_BUF_CTL_A) & DDI_INIT_DISPLAY_DETECTED;
8080 /* DDI A only supports eDP */
8081 if (found)
8082 intel_ddi_init(dev, PORT_A);
8083
8084 /* DDI B, C and D detection is indicated by the SFUSE_STRAP
8085 * register */
8086 found = I915_READ(SFUSE_STRAP);
8087
8088 if (found & SFUSE_STRAP_DDIB_DETECTED)
8089 intel_ddi_init(dev, PORT_B);
8090 if (found & SFUSE_STRAP_DDIC_DETECTED)
8091 intel_ddi_init(dev, PORT_C);
8092 if (found & SFUSE_STRAP_DDID_DETECTED)
8093 intel_ddi_init(dev, PORT_D);
8094 } else if (HAS_PCH_SPLIT(dev)) {
Adam Jacksoncb0953d2010-07-16 14:46:29 -04008095 int found;
8096
Zhenyu Wang30ad48b2009-06-05 15:38:43 +08008097 if (I915_READ(HDMIB) & PORT_DETECTED) {
Zhao Yakui461ed3c2010-03-30 15:11:33 +08008098 /* PCH SDVOB multiplex with HDMIB */
Daniel Vettereef4eac2012-03-23 23:43:35 +01008099 found = intel_sdvo_init(dev, PCH_SDVOB, true);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +08008100 if (!found)
Daniel Vetter08d644a2012-07-12 20:19:59 +02008101 intel_hdmi_init(dev, HDMIB, PORT_B);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08008102 if (!found && (I915_READ(PCH_DP_B) & DP_DETECTED))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03008103 intel_dp_init(dev, PCH_DP_B, PORT_B);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +08008104 }
8105
8106 if (I915_READ(HDMIC) & PORT_DETECTED)
Daniel Vetter08d644a2012-07-12 20:19:59 +02008107 intel_hdmi_init(dev, HDMIC, PORT_C);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +08008108
Jesse Barnesb708a1d2012-06-11 14:39:56 -04008109 if (!dpd_is_edp && I915_READ(HDMID) & PORT_DETECTED)
Daniel Vetter08d644a2012-07-12 20:19:59 +02008110 intel_hdmi_init(dev, HDMID, PORT_D);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +08008111
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08008112 if (I915_READ(PCH_DP_C) & DP_DETECTED)
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03008113 intel_dp_init(dev, PCH_DP_C, PORT_C);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08008114
Adam Jacksoncb0953d2010-07-16 14:46:29 -04008115 if (!dpd_is_edp && (I915_READ(PCH_DP_D) & DP_DETECTED))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03008116 intel_dp_init(dev, PCH_DP_D, PORT_D);
Jesse Barnes4a87d652012-06-15 11:55:16 -07008117 } else if (IS_VALLEYVIEW(dev)) {
8118 int found;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08008119
Gajanan Bhat19c03922012-09-27 19:13:07 +05308120 /* Check for built-in panel first. Shares lanes with HDMI on SDVOC */
8121 if (I915_READ(DP_C) & DP_DETECTED)
8122 intel_dp_init(dev, DP_C, PORT_C);
8123
Jesse Barnes4a87d652012-06-15 11:55:16 -07008124 if (I915_READ(SDVOB) & PORT_DETECTED) {
8125 /* SDVOB multiplex with HDMIB */
8126 found = intel_sdvo_init(dev, SDVOB, true);
8127 if (!found)
Daniel Vetter08d644a2012-07-12 20:19:59 +02008128 intel_hdmi_init(dev, SDVOB, PORT_B);
Jesse Barnes4a87d652012-06-15 11:55:16 -07008129 if (!found && (I915_READ(DP_B) & DP_DETECTED))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03008130 intel_dp_init(dev, DP_B, PORT_B);
Jesse Barnes4a87d652012-06-15 11:55:16 -07008131 }
8132
8133 if (I915_READ(SDVOC) & PORT_DETECTED)
Daniel Vetter08d644a2012-07-12 20:19:59 +02008134 intel_hdmi_init(dev, SDVOC, PORT_C);
Jesse Barnes4a87d652012-06-15 11:55:16 -07008135
Zhenyu Wang103a1962009-11-27 11:44:36 +08008136 } else if (SUPPORTS_DIGITAL_OUTPUTS(dev)) {
Ma Ling27185ae2009-08-24 13:50:23 +08008137 bool found = false;
Eric Anholt7d573822009-01-02 13:33:00 -08008138
Eric Anholt725e30a2009-01-22 13:01:02 -08008139 if (I915_READ(SDVOB) & SDVO_DETECTED) {
Jesse Barnesb01f2c32009-12-11 11:07:17 -08008140 DRM_DEBUG_KMS("probing SDVOB\n");
Daniel Vettereef4eac2012-03-23 23:43:35 +01008141 found = intel_sdvo_init(dev, SDVOB, true);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08008142 if (!found && SUPPORTS_INTEGRATED_HDMI(dev)) {
8143 DRM_DEBUG_KMS("probing HDMI on SDVOB\n");
Daniel Vetter08d644a2012-07-12 20:19:59 +02008144 intel_hdmi_init(dev, SDVOB, PORT_B);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08008145 }
Ma Ling27185ae2009-08-24 13:50:23 +08008146
Jesse Barnesb01f2c32009-12-11 11:07:17 -08008147 if (!found && SUPPORTS_INTEGRATED_DP(dev)) {
8148 DRM_DEBUG_KMS("probing DP_B\n");
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03008149 intel_dp_init(dev, DP_B, PORT_B);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08008150 }
Eric Anholt725e30a2009-01-22 13:01:02 -08008151 }
Kristian Høgsberg13520b02009-03-13 15:42:14 -04008152
8153 /* Before G4X SDVOC doesn't have its own detect register */
Kristian Høgsberg13520b02009-03-13 15:42:14 -04008154
Jesse Barnesb01f2c32009-12-11 11:07:17 -08008155 if (I915_READ(SDVOB) & SDVO_DETECTED) {
8156 DRM_DEBUG_KMS("probing SDVOC\n");
Daniel Vettereef4eac2012-03-23 23:43:35 +01008157 found = intel_sdvo_init(dev, SDVOC, false);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08008158 }
Ma Ling27185ae2009-08-24 13:50:23 +08008159
8160 if (!found && (I915_READ(SDVOC) & SDVO_DETECTED)) {
8161
Jesse Barnesb01f2c32009-12-11 11:07:17 -08008162 if (SUPPORTS_INTEGRATED_HDMI(dev)) {
8163 DRM_DEBUG_KMS("probing HDMI on SDVOC\n");
Daniel Vetter08d644a2012-07-12 20:19:59 +02008164 intel_hdmi_init(dev, SDVOC, PORT_C);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08008165 }
8166 if (SUPPORTS_INTEGRATED_DP(dev)) {
8167 DRM_DEBUG_KMS("probing DP_C\n");
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03008168 intel_dp_init(dev, DP_C, PORT_C);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08008169 }
Eric Anholt725e30a2009-01-22 13:01:02 -08008170 }
Ma Ling27185ae2009-08-24 13:50:23 +08008171
Jesse Barnesb01f2c32009-12-11 11:07:17 -08008172 if (SUPPORTS_INTEGRATED_DP(dev) &&
8173 (I915_READ(DP_D) & DP_DETECTED)) {
8174 DRM_DEBUG_KMS("probing DP_D\n");
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03008175 intel_dp_init(dev, DP_D, PORT_D);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08008176 }
Eric Anholtbad720f2009-10-22 16:11:14 -07008177 } else if (IS_GEN2(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -08008178 intel_dvo_init(dev);
8179
Zhenyu Wang103a1962009-11-27 11:44:36 +08008180 if (SUPPORTS_TV(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -08008181 intel_tv_init(dev);
8182
Chris Wilson4ef69c72010-09-09 15:14:28 +01008183 list_for_each_entry(encoder, &dev->mode_config.encoder_list, base.head) {
8184 encoder->base.possible_crtcs = encoder->crtc_mask;
8185 encoder->base.possible_clones =
Daniel Vetter66a92782012-07-12 20:08:18 +02008186 intel_encoder_clones(encoder);
Jesse Barnes79e53942008-11-07 14:24:08 -08008187 }
Chris Wilson47356eb2011-01-11 17:06:04 +00008188
Paulo Zanoni40579ab2012-07-03 15:57:33 -03008189 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev))
Keith Packard9fb526d2011-09-26 22:24:57 -07008190 ironlake_init_pch_refclk(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08008191}
8192
8193static void intel_user_framebuffer_destroy(struct drm_framebuffer *fb)
8194{
8195 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
Jesse Barnes79e53942008-11-07 14:24:08 -08008196
8197 drm_framebuffer_cleanup(fb);
Chris Wilson05394f32010-11-08 19:18:58 +00008198 drm_gem_object_unreference_unlocked(&intel_fb->obj->base);
Jesse Barnes79e53942008-11-07 14:24:08 -08008199
8200 kfree(intel_fb);
8201}
8202
8203static int intel_user_framebuffer_create_handle(struct drm_framebuffer *fb,
Chris Wilson05394f32010-11-08 19:18:58 +00008204 struct drm_file *file,
Jesse Barnes79e53942008-11-07 14:24:08 -08008205 unsigned int *handle)
8206{
8207 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
Chris Wilson05394f32010-11-08 19:18:58 +00008208 struct drm_i915_gem_object *obj = intel_fb->obj;
Jesse Barnes79e53942008-11-07 14:24:08 -08008209
Chris Wilson05394f32010-11-08 19:18:58 +00008210 return drm_gem_handle_create(file, &obj->base, handle);
Jesse Barnes79e53942008-11-07 14:24:08 -08008211}
8212
8213static const struct drm_framebuffer_funcs intel_fb_funcs = {
8214 .destroy = intel_user_framebuffer_destroy,
8215 .create_handle = intel_user_framebuffer_create_handle,
8216};
8217
Dave Airlie38651672010-03-30 05:34:13 +00008218int intel_framebuffer_init(struct drm_device *dev,
8219 struct intel_framebuffer *intel_fb,
Jesse Barnes308e5bc2011-11-14 14:51:28 -08008220 struct drm_mode_fb_cmd2 *mode_cmd,
Chris Wilson05394f32010-11-08 19:18:58 +00008221 struct drm_i915_gem_object *obj)
Jesse Barnes79e53942008-11-07 14:24:08 -08008222{
Jesse Barnes79e53942008-11-07 14:24:08 -08008223 int ret;
8224
Chris Wilson05394f32010-11-08 19:18:58 +00008225 if (obj->tiling_mode == I915_TILING_Y)
Chris Wilson57cd6502010-08-08 12:34:44 +01008226 return -EINVAL;
8227
Jesse Barnes308e5bc2011-11-14 14:51:28 -08008228 if (mode_cmd->pitches[0] & 63)
Chris Wilson57cd6502010-08-08 12:34:44 +01008229 return -EINVAL;
8230
Jesse Barnes308e5bc2011-11-14 14:51:28 -08008231 switch (mode_cmd->pixel_format) {
Ville Syrjälä04b39242011-11-17 18:05:13 +02008232 case DRM_FORMAT_RGB332:
8233 case DRM_FORMAT_RGB565:
8234 case DRM_FORMAT_XRGB8888:
Jesse Barnesb250da72012-03-07 08:49:29 -08008235 case DRM_FORMAT_XBGR8888:
Ville Syrjälä04b39242011-11-17 18:05:13 +02008236 case DRM_FORMAT_ARGB8888:
8237 case DRM_FORMAT_XRGB2101010:
8238 case DRM_FORMAT_ARGB2101010:
Jesse Barnes308e5bc2011-11-14 14:51:28 -08008239 /* RGB formats are common across chipsets */
Jesse Barnesb5626742011-06-24 12:19:27 -07008240 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +02008241 case DRM_FORMAT_YUYV:
8242 case DRM_FORMAT_UYVY:
8243 case DRM_FORMAT_YVYU:
8244 case DRM_FORMAT_VYUY:
Chris Wilson57cd6502010-08-08 12:34:44 +01008245 break;
8246 default:
Eugeni Dodonovaca25842012-01-17 15:25:45 -02008247 DRM_DEBUG_KMS("unsupported pixel format %u\n",
8248 mode_cmd->pixel_format);
Chris Wilson57cd6502010-08-08 12:34:44 +01008249 return -EINVAL;
8250 }
8251
Jesse Barnes79e53942008-11-07 14:24:08 -08008252 ret = drm_framebuffer_init(dev, &intel_fb->base, &intel_fb_funcs);
8253 if (ret) {
8254 DRM_ERROR("framebuffer init failed %d\n", ret);
8255 return ret;
8256 }
8257
8258 drm_helper_mode_fill_fb_struct(&intel_fb->base, mode_cmd);
Jesse Barnes79e53942008-11-07 14:24:08 -08008259 intel_fb->obj = obj;
Jesse Barnes79e53942008-11-07 14:24:08 -08008260 return 0;
8261}
8262
Jesse Barnes79e53942008-11-07 14:24:08 -08008263static struct drm_framebuffer *
8264intel_user_framebuffer_create(struct drm_device *dev,
8265 struct drm_file *filp,
Jesse Barnes308e5bc2011-11-14 14:51:28 -08008266 struct drm_mode_fb_cmd2 *mode_cmd)
Jesse Barnes79e53942008-11-07 14:24:08 -08008267{
Chris Wilson05394f32010-11-08 19:18:58 +00008268 struct drm_i915_gem_object *obj;
Jesse Barnes79e53942008-11-07 14:24:08 -08008269
Jesse Barnes308e5bc2011-11-14 14:51:28 -08008270 obj = to_intel_bo(drm_gem_object_lookup(dev, filp,
8271 mode_cmd->handles[0]));
Chris Wilsonc8725222011-02-19 11:31:06 +00008272 if (&obj->base == NULL)
Chris Wilsoncce13ff2010-08-08 13:36:38 +01008273 return ERR_PTR(-ENOENT);
Jesse Barnes79e53942008-11-07 14:24:08 -08008274
Chris Wilsond2dff872011-04-19 08:36:26 +01008275 return intel_framebuffer_create(dev, mode_cmd, obj);
Jesse Barnes79e53942008-11-07 14:24:08 -08008276}
8277
Jesse Barnes79e53942008-11-07 14:24:08 -08008278static const struct drm_mode_config_funcs intel_mode_funcs = {
Jesse Barnes79e53942008-11-07 14:24:08 -08008279 .fb_create = intel_user_framebuffer_create,
Dave Airlieeb1f8e42010-05-07 06:42:51 +00008280 .output_poll_changed = intel_fb_output_poll_changed,
Jesse Barnes79e53942008-11-07 14:24:08 -08008281};
8282
Jesse Barnese70236a2009-09-21 10:42:27 -07008283/* Set up chip specific display functions */
8284static void intel_init_display(struct drm_device *dev)
8285{
8286 struct drm_i915_private *dev_priv = dev->dev_private;
8287
8288 /* We always want a DPMS function */
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03008289 if (IS_HASWELL(dev)) {
8290 dev_priv->display.crtc_mode_set = haswell_crtc_mode_set;
Paulo Zanoni4f771f12012-10-23 18:29:51 -02008291 dev_priv->display.crtc_enable = haswell_crtc_enable;
8292 dev_priv->display.crtc_disable = haswell_crtc_disable;
Paulo Zanoni6441ab52012-10-05 12:05:58 -03008293 dev_priv->display.off = haswell_crtc_off;
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03008294 dev_priv->display.update_plane = ironlake_update_plane;
8295 } else if (HAS_PCH_SPLIT(dev)) {
Eric Anholtf564048e2011-03-30 13:01:02 -07008296 dev_priv->display.crtc_mode_set = ironlake_crtc_mode_set;
Daniel Vetter76e5a892012-06-29 22:39:33 +02008297 dev_priv->display.crtc_enable = ironlake_crtc_enable;
8298 dev_priv->display.crtc_disable = ironlake_crtc_disable;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01008299 dev_priv->display.off = ironlake_crtc_off;
Jesse Barnes17638cd2011-06-24 12:19:23 -07008300 dev_priv->display.update_plane = ironlake_update_plane;
Eric Anholtf564048e2011-03-30 13:01:02 -07008301 } else {
Eric Anholtf564048e2011-03-30 13:01:02 -07008302 dev_priv->display.crtc_mode_set = i9xx_crtc_mode_set;
Daniel Vetter76e5a892012-06-29 22:39:33 +02008303 dev_priv->display.crtc_enable = i9xx_crtc_enable;
8304 dev_priv->display.crtc_disable = i9xx_crtc_disable;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01008305 dev_priv->display.off = i9xx_crtc_off;
Jesse Barnes17638cd2011-06-24 12:19:23 -07008306 dev_priv->display.update_plane = i9xx_update_plane;
Eric Anholtf564048e2011-03-30 13:01:02 -07008307 }
Jesse Barnese70236a2009-09-21 10:42:27 -07008308
Jesse Barnese70236a2009-09-21 10:42:27 -07008309 /* Returns the core display clock speed */
Jesse Barnes25eb05fc2012-03-28 13:39:23 -07008310 if (IS_VALLEYVIEW(dev))
8311 dev_priv->display.get_display_clock_speed =
8312 valleyview_get_display_clock_speed;
8313 else if (IS_I945G(dev) || (IS_G33(dev) && !IS_PINEVIEW_M(dev)))
Jesse Barnese70236a2009-09-21 10:42:27 -07008314 dev_priv->display.get_display_clock_speed =
8315 i945_get_display_clock_speed;
8316 else if (IS_I915G(dev))
8317 dev_priv->display.get_display_clock_speed =
8318 i915_get_display_clock_speed;
Adam Jacksonf2b115e2009-12-03 17:14:42 -05008319 else if (IS_I945GM(dev) || IS_845G(dev) || IS_PINEVIEW_M(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -07008320 dev_priv->display.get_display_clock_speed =
8321 i9xx_misc_get_display_clock_speed;
8322 else if (IS_I915GM(dev))
8323 dev_priv->display.get_display_clock_speed =
8324 i915gm_get_display_clock_speed;
8325 else if (IS_I865G(dev))
8326 dev_priv->display.get_display_clock_speed =
8327 i865_get_display_clock_speed;
Daniel Vetterf0f8a9c2009-09-15 22:57:33 +02008328 else if (IS_I85X(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -07008329 dev_priv->display.get_display_clock_speed =
8330 i855_get_display_clock_speed;
8331 else /* 852, 830 */
8332 dev_priv->display.get_display_clock_speed =
8333 i830_get_display_clock_speed;
8334
Zhenyu Wang7f8a8562010-04-01 13:07:53 +08008335 if (HAS_PCH_SPLIT(dev)) {
Chris Wilsonf00a3dd2010-10-21 14:57:17 +01008336 if (IS_GEN5(dev)) {
Jesse Barnes674cf962011-04-28 14:27:04 -07008337 dev_priv->display.fdi_link_train = ironlake_fdi_link_train;
Wu Fengguange0dac652011-09-05 14:25:34 +08008338 dev_priv->display.write_eld = ironlake_write_eld;
Yuanhan Liu13982612010-12-15 15:42:31 +08008339 } else if (IS_GEN6(dev)) {
Jesse Barnes674cf962011-04-28 14:27:04 -07008340 dev_priv->display.fdi_link_train = gen6_fdi_link_train;
Wu Fengguange0dac652011-09-05 14:25:34 +08008341 dev_priv->display.write_eld = ironlake_write_eld;
Jesse Barnes357555c2011-04-28 15:09:55 -07008342 } else if (IS_IVYBRIDGE(dev)) {
8343 /* FIXME: detect B0+ stepping and use auto training */
8344 dev_priv->display.fdi_link_train = ivb_manual_fdi_link_train;
Wu Fengguange0dac652011-09-05 14:25:34 +08008345 dev_priv->display.write_eld = ironlake_write_eld;
Eugeni Dodonovc82e4d22012-05-09 15:37:21 -03008346 } else if (IS_HASWELL(dev)) {
8347 dev_priv->display.fdi_link_train = hsw_fdi_link_train;
Wang Xingchao83358c852012-08-16 22:43:37 +08008348 dev_priv->display.write_eld = haswell_write_eld;
Zhenyu Wang7f8a8562010-04-01 13:07:53 +08008349 } else
8350 dev_priv->display.update_wm = NULL;
Jesse Barnes6067aae2011-04-28 15:04:31 -07008351 } else if (IS_G4X(dev)) {
Wu Fengguange0dac652011-09-05 14:25:34 +08008352 dev_priv->display.write_eld = g4x_write_eld;
Jesse Barnese70236a2009-09-21 10:42:27 -07008353 }
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008354
8355 /* Default just returns -ENODEV to indicate unsupported */
8356 dev_priv->display.queue_flip = intel_default_queue_flip;
8357
8358 switch (INTEL_INFO(dev)->gen) {
8359 case 2:
8360 dev_priv->display.queue_flip = intel_gen2_queue_flip;
8361 break;
8362
8363 case 3:
8364 dev_priv->display.queue_flip = intel_gen3_queue_flip;
8365 break;
8366
8367 case 4:
8368 case 5:
8369 dev_priv->display.queue_flip = intel_gen4_queue_flip;
8370 break;
8371
8372 case 6:
8373 dev_priv->display.queue_flip = intel_gen6_queue_flip;
8374 break;
Jesse Barnes7c9017e2011-06-16 12:18:54 -07008375 case 7:
8376 dev_priv->display.queue_flip = intel_gen7_queue_flip;
8377 break;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008378 }
Jesse Barnese70236a2009-09-21 10:42:27 -07008379}
8380
Jesse Barnesb690e962010-07-19 13:53:12 -07008381/*
8382 * Some BIOSes insist on assuming the GPU's pipe A is enabled at suspend,
8383 * resume, or other times. This quirk makes sure that's the case for
8384 * affected systems.
8385 */
Akshay Joshi0206e352011-08-16 15:34:10 -04008386static void quirk_pipea_force(struct drm_device *dev)
Jesse Barnesb690e962010-07-19 13:53:12 -07008387{
8388 struct drm_i915_private *dev_priv = dev->dev_private;
8389
8390 dev_priv->quirks |= QUIRK_PIPEA_FORCE;
Daniel Vetterbc0daf42012-04-01 13:16:49 +02008391 DRM_INFO("applying pipe a force quirk\n");
Jesse Barnesb690e962010-07-19 13:53:12 -07008392}
8393
Keith Packard435793d2011-07-12 14:56:22 -07008394/*
8395 * Some machines (Lenovo U160) do not work with SSC on LVDS for some reason
8396 */
8397static void quirk_ssc_force_disable(struct drm_device *dev)
8398{
8399 struct drm_i915_private *dev_priv = dev->dev_private;
8400 dev_priv->quirks |= QUIRK_LVDS_SSC_DISABLE;
Daniel Vetterbc0daf42012-04-01 13:16:49 +02008401 DRM_INFO("applying lvds SSC disable quirk\n");
Keith Packard435793d2011-07-12 14:56:22 -07008402}
8403
Carsten Emde4dca20e2012-03-15 15:56:26 +01008404/*
Carsten Emde5a15ab52012-03-15 15:56:27 +01008405 * A machine (e.g. Acer Aspire 5734Z) may need to invert the panel backlight
8406 * brightness value
Carsten Emde4dca20e2012-03-15 15:56:26 +01008407 */
8408static void quirk_invert_brightness(struct drm_device *dev)
8409{
8410 struct drm_i915_private *dev_priv = dev->dev_private;
8411 dev_priv->quirks |= QUIRK_INVERT_BRIGHTNESS;
Daniel Vetterbc0daf42012-04-01 13:16:49 +02008412 DRM_INFO("applying inverted panel brightness quirk\n");
Jesse Barnesb690e962010-07-19 13:53:12 -07008413}
8414
8415struct intel_quirk {
8416 int device;
8417 int subsystem_vendor;
8418 int subsystem_device;
8419 void (*hook)(struct drm_device *dev);
8420};
8421
Ben Widawskyc43b5632012-04-16 14:07:40 -07008422static struct intel_quirk intel_quirks[] = {
Jesse Barnesb690e962010-07-19 13:53:12 -07008423 /* HP Mini needs pipe A force quirk (LP: #322104) */
Akshay Joshi0206e352011-08-16 15:34:10 -04008424 { 0x27ae, 0x103c, 0x361a, quirk_pipea_force },
Jesse Barnesb690e962010-07-19 13:53:12 -07008425
Jesse Barnesb690e962010-07-19 13:53:12 -07008426 /* Toshiba Protege R-205, S-209 needs pipe A force quirk */
8427 { 0x2592, 0x1179, 0x0001, quirk_pipea_force },
8428
Jesse Barnesb690e962010-07-19 13:53:12 -07008429 /* ThinkPad T60 needs pipe A force quirk (bug #16494) */
8430 { 0x2782, 0x17aa, 0x201a, quirk_pipea_force },
8431
Daniel Vetterccd0d362012-10-10 23:13:59 +02008432 /* 830/845 need to leave pipe A & dpll A up */
Jesse Barnesb690e962010-07-19 13:53:12 -07008433 { 0x2562, PCI_ANY_ID, PCI_ANY_ID, quirk_pipea_force },
Daniel Vetterdcdaed62012-08-12 21:19:34 +02008434 { 0x3577, PCI_ANY_ID, PCI_ANY_ID, quirk_pipea_force },
Keith Packard435793d2011-07-12 14:56:22 -07008435
8436 /* Lenovo U160 cannot use SSC on LVDS */
8437 { 0x0046, 0x17aa, 0x3920, quirk_ssc_force_disable },
Michel Alexandre Salim070d3292011-07-28 18:52:06 +02008438
8439 /* Sony Vaio Y cannot use SSC on LVDS */
8440 { 0x0046, 0x104d, 0x9076, quirk_ssc_force_disable },
Carsten Emde5a15ab52012-03-15 15:56:27 +01008441
8442 /* Acer Aspire 5734Z must invert backlight brightness */
8443 { 0x2a42, 0x1025, 0x0459, quirk_invert_brightness },
Jesse Barnesb690e962010-07-19 13:53:12 -07008444};
8445
8446static void intel_init_quirks(struct drm_device *dev)
8447{
8448 struct pci_dev *d = dev->pdev;
8449 int i;
8450
8451 for (i = 0; i < ARRAY_SIZE(intel_quirks); i++) {
8452 struct intel_quirk *q = &intel_quirks[i];
8453
8454 if (d->device == q->device &&
8455 (d->subsystem_vendor == q->subsystem_vendor ||
8456 q->subsystem_vendor == PCI_ANY_ID) &&
8457 (d->subsystem_device == q->subsystem_device ||
8458 q->subsystem_device == PCI_ANY_ID))
8459 q->hook(dev);
8460 }
8461}
8462
Jesse Barnes9cce37f2010-08-13 15:11:26 -07008463/* Disable the VGA plane that we never use */
8464static void i915_disable_vga(struct drm_device *dev)
8465{
8466 struct drm_i915_private *dev_priv = dev->dev_private;
8467 u8 sr1;
8468 u32 vga_reg;
8469
8470 if (HAS_PCH_SPLIT(dev))
8471 vga_reg = CPU_VGACNTRL;
8472 else
8473 vga_reg = VGACNTRL;
8474
8475 vga_get_uninterruptible(dev->pdev, VGA_RSRC_LEGACY_IO);
Jesse Barnes3fdcf432012-04-06 11:46:27 -07008476 outb(SR01, VGA_SR_INDEX);
Jesse Barnes9cce37f2010-08-13 15:11:26 -07008477 sr1 = inb(VGA_SR_DATA);
8478 outb(sr1 | 1<<5, VGA_SR_DATA);
8479 vga_put(dev->pdev, VGA_RSRC_LEGACY_IO);
8480 udelay(300);
8481
8482 I915_WRITE(vga_reg, VGA_DISP_DISABLE);
8483 POSTING_READ(vga_reg);
8484}
8485
Daniel Vetterf8175862012-04-10 15:50:11 +02008486void intel_modeset_init_hw(struct drm_device *dev)
8487{
Eugeni Dodonov0232e922012-07-06 15:42:36 -03008488 /* We attempt to init the necessary power wells early in the initialization
8489 * time, so the subsystems that expect power to be enabled can work.
8490 */
8491 intel_init_power_wells(dev);
8492
Eugeni Dodonova8f78b52012-06-28 15:55:35 -03008493 intel_prepare_ddi(dev);
8494
Daniel Vetterf8175862012-04-10 15:50:11 +02008495 intel_init_clock_gating(dev);
8496
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02008497 mutex_lock(&dev->struct_mutex);
Daniel Vetter8090c6b2012-06-24 16:42:32 +02008498 intel_enable_gt_powersave(dev);
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02008499 mutex_unlock(&dev->struct_mutex);
Daniel Vetterf8175862012-04-10 15:50:11 +02008500}
8501
Jesse Barnes79e53942008-11-07 14:24:08 -08008502void intel_modeset_init(struct drm_device *dev)
8503{
Jesse Barnes652c3932009-08-17 13:31:43 -07008504 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesb840d907f2011-12-13 13:19:38 -08008505 int i, ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08008506
8507 drm_mode_config_init(dev);
8508
8509 dev->mode_config.min_width = 0;
8510 dev->mode_config.min_height = 0;
8511
Dave Airlie019d96c2011-09-29 16:20:42 +01008512 dev->mode_config.preferred_depth = 24;
8513 dev->mode_config.prefer_shadow = 1;
8514
Laurent Pincharte6ecefa2012-05-17 13:27:23 +02008515 dev->mode_config.funcs = &intel_mode_funcs;
Jesse Barnes79e53942008-11-07 14:24:08 -08008516
Jesse Barnesb690e962010-07-19 13:53:12 -07008517 intel_init_quirks(dev);
8518
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03008519 intel_init_pm(dev);
8520
Jesse Barnese70236a2009-09-21 10:42:27 -07008521 intel_init_display(dev);
8522
Chris Wilsona6c45cf2010-09-17 00:32:17 +01008523 if (IS_GEN2(dev)) {
8524 dev->mode_config.max_width = 2048;
8525 dev->mode_config.max_height = 2048;
8526 } else if (IS_GEN3(dev)) {
Keith Packard5e4d6fa2009-07-12 23:53:17 -07008527 dev->mode_config.max_width = 4096;
8528 dev->mode_config.max_height = 4096;
Jesse Barnes79e53942008-11-07 14:24:08 -08008529 } else {
Chris Wilsona6c45cf2010-09-17 00:32:17 +01008530 dev->mode_config.max_width = 8192;
8531 dev->mode_config.max_height = 8192;
Jesse Barnes79e53942008-11-07 14:24:08 -08008532 }
Daniel Vetterdd2757f2012-06-07 15:55:57 +02008533 dev->mode_config.fb_base = dev_priv->mm.gtt_base_addr;
Jesse Barnes79e53942008-11-07 14:24:08 -08008534
Zhao Yakui28c97732009-10-09 11:39:41 +08008535 DRM_DEBUG_KMS("%d display pipe%s available.\n",
Dave Airliea3524f12010-06-06 18:59:41 +10008536 dev_priv->num_pipe, dev_priv->num_pipe > 1 ? "s" : "");
Jesse Barnes79e53942008-11-07 14:24:08 -08008537
Dave Airliea3524f12010-06-06 18:59:41 +10008538 for (i = 0; i < dev_priv->num_pipe; i++) {
Jesse Barnes79e53942008-11-07 14:24:08 -08008539 intel_crtc_init(dev, i);
Jesse Barnes00c2064b2012-01-13 15:48:39 -08008540 ret = intel_plane_init(dev, i);
8541 if (ret)
8542 DRM_DEBUG_KMS("plane %d init failed: %d\n", i, ret);
Jesse Barnes79e53942008-11-07 14:24:08 -08008543 }
8544
Paulo Zanoni79f689a2012-10-05 12:05:52 -03008545 intel_cpu_pll_init(dev);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01008546 intel_pch_pll_init(dev);
8547
Jesse Barnes9cce37f2010-08-13 15:11:26 -07008548 /* Just disable it once at startup */
8549 i915_disable_vga(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08008550 intel_setup_outputs(dev);
Chris Wilson2c7111d2011-03-29 10:40:27 +01008551}
8552
Daniel Vetter24929352012-07-02 20:28:59 +02008553static void
8554intel_connector_break_all_links(struct intel_connector *connector)
8555{
8556 connector->base.dpms = DRM_MODE_DPMS_OFF;
8557 connector->base.encoder = NULL;
8558 connector->encoder->connectors_active = false;
8559 connector->encoder->base.crtc = NULL;
8560}
8561
Daniel Vetter7fad7982012-07-04 17:51:47 +02008562static void intel_enable_pipe_a(struct drm_device *dev)
8563{
8564 struct intel_connector *connector;
8565 struct drm_connector *crt = NULL;
8566 struct intel_load_detect_pipe load_detect_temp;
8567
8568 /* We can't just switch on the pipe A, we need to set things up with a
8569 * proper mode and output configuration. As a gross hack, enable pipe A
8570 * by enabling the load detect pipe once. */
8571 list_for_each_entry(connector,
8572 &dev->mode_config.connector_list,
8573 base.head) {
8574 if (connector->encoder->type == INTEL_OUTPUT_ANALOG) {
8575 crt = &connector->base;
8576 break;
8577 }
8578 }
8579
8580 if (!crt)
8581 return;
8582
8583 if (intel_get_load_detect_pipe(crt, NULL, &load_detect_temp))
8584 intel_release_load_detect_pipe(crt, &load_detect_temp);
8585
8586
8587}
8588
Daniel Vetterfa555832012-10-10 23:14:00 +02008589static bool
8590intel_check_plane_mapping(struct intel_crtc *crtc)
8591{
8592 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
8593 u32 reg, val;
8594
8595 if (dev_priv->num_pipe == 1)
8596 return true;
8597
8598 reg = DSPCNTR(!crtc->plane);
8599 val = I915_READ(reg);
8600
8601 if ((val & DISPLAY_PLANE_ENABLE) &&
8602 (!!(val & DISPPLANE_SEL_PIPE_MASK) == crtc->pipe))
8603 return false;
8604
8605 return true;
8606}
8607
Daniel Vetter24929352012-07-02 20:28:59 +02008608static void intel_sanitize_crtc(struct intel_crtc *crtc)
8609{
8610 struct drm_device *dev = crtc->base.dev;
8611 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterfa555832012-10-10 23:14:00 +02008612 u32 reg;
Daniel Vetter24929352012-07-02 20:28:59 +02008613
Daniel Vetter24929352012-07-02 20:28:59 +02008614 /* Clear any frame start delays used for debugging left by the BIOS */
8615 reg = PIPECONF(crtc->pipe);
8616 I915_WRITE(reg, I915_READ(reg) & ~PIPECONF_FRAME_START_DELAY_MASK);
8617
8618 /* We need to sanitize the plane -> pipe mapping first because this will
Daniel Vetterfa555832012-10-10 23:14:00 +02008619 * disable the crtc (and hence change the state) if it is wrong. Note
8620 * that gen4+ has a fixed plane -> pipe mapping. */
8621 if (INTEL_INFO(dev)->gen < 4 && !intel_check_plane_mapping(crtc)) {
Daniel Vetter24929352012-07-02 20:28:59 +02008622 struct intel_connector *connector;
8623 bool plane;
8624
Daniel Vetter24929352012-07-02 20:28:59 +02008625 DRM_DEBUG_KMS("[CRTC:%d] wrong plane connection detected!\n",
8626 crtc->base.base.id);
8627
8628 /* Pipe has the wrong plane attached and the plane is active.
8629 * Temporarily change the plane mapping and disable everything
8630 * ... */
8631 plane = crtc->plane;
8632 crtc->plane = !plane;
8633 dev_priv->display.crtc_disable(&crtc->base);
8634 crtc->plane = plane;
8635
8636 /* ... and break all links. */
8637 list_for_each_entry(connector, &dev->mode_config.connector_list,
8638 base.head) {
8639 if (connector->encoder->base.crtc != &crtc->base)
8640 continue;
8641
8642 intel_connector_break_all_links(connector);
8643 }
8644
8645 WARN_ON(crtc->active);
8646 crtc->base.enabled = false;
8647 }
Daniel Vetter24929352012-07-02 20:28:59 +02008648
Daniel Vetter7fad7982012-07-04 17:51:47 +02008649 if (dev_priv->quirks & QUIRK_PIPEA_FORCE &&
8650 crtc->pipe == PIPE_A && !crtc->active) {
8651 /* BIOS forgot to enable pipe A, this mostly happens after
8652 * resume. Force-enable the pipe to fix this, the update_dpms
8653 * call below we restore the pipe to the right state, but leave
8654 * the required bits on. */
8655 intel_enable_pipe_a(dev);
8656 }
8657
Daniel Vetter24929352012-07-02 20:28:59 +02008658 /* Adjust the state of the output pipe according to whether we
8659 * have active connectors/encoders. */
8660 intel_crtc_update_dpms(&crtc->base);
8661
8662 if (crtc->active != crtc->base.enabled) {
8663 struct intel_encoder *encoder;
8664
8665 /* This can happen either due to bugs in the get_hw_state
8666 * functions or because the pipe is force-enabled due to the
8667 * pipe A quirk. */
8668 DRM_DEBUG_KMS("[CRTC:%d] hw state adjusted, was %s, now %s\n",
8669 crtc->base.base.id,
8670 crtc->base.enabled ? "enabled" : "disabled",
8671 crtc->active ? "enabled" : "disabled");
8672
8673 crtc->base.enabled = crtc->active;
8674
8675 /* Because we only establish the connector -> encoder ->
8676 * crtc links if something is active, this means the
8677 * crtc is now deactivated. Break the links. connector
8678 * -> encoder links are only establish when things are
8679 * actually up, hence no need to break them. */
8680 WARN_ON(crtc->active);
8681
8682 for_each_encoder_on_crtc(dev, &crtc->base, encoder) {
8683 WARN_ON(encoder->connectors_active);
8684 encoder->base.crtc = NULL;
8685 }
8686 }
8687}
8688
8689static void intel_sanitize_encoder(struct intel_encoder *encoder)
8690{
8691 struct intel_connector *connector;
8692 struct drm_device *dev = encoder->base.dev;
8693
8694 /* We need to check both for a crtc link (meaning that the
8695 * encoder is active and trying to read from a pipe) and the
8696 * pipe itself being active. */
8697 bool has_active_crtc = encoder->base.crtc &&
8698 to_intel_crtc(encoder->base.crtc)->active;
8699
8700 if (encoder->connectors_active && !has_active_crtc) {
8701 DRM_DEBUG_KMS("[ENCODER:%d:%s] has active connectors but no active pipe!\n",
8702 encoder->base.base.id,
8703 drm_get_encoder_name(&encoder->base));
8704
8705 /* Connector is active, but has no active pipe. This is
8706 * fallout from our resume register restoring. Disable
8707 * the encoder manually again. */
8708 if (encoder->base.crtc) {
8709 DRM_DEBUG_KMS("[ENCODER:%d:%s] manually disabled\n",
8710 encoder->base.base.id,
8711 drm_get_encoder_name(&encoder->base));
8712 encoder->disable(encoder);
8713 }
8714
8715 /* Inconsistent output/port/pipe state happens presumably due to
8716 * a bug in one of the get_hw_state functions. Or someplace else
8717 * in our code, like the register restore mess on resume. Clamp
8718 * things to off as a safer default. */
8719 list_for_each_entry(connector,
8720 &dev->mode_config.connector_list,
8721 base.head) {
8722 if (connector->encoder != encoder)
8723 continue;
8724
8725 intel_connector_break_all_links(connector);
8726 }
8727 }
8728 /* Enabled encoders without active connectors will be fixed in
8729 * the crtc fixup. */
8730}
8731
8732/* Scan out the current hw modeset state, sanitizes it and maps it into the drm
8733 * and i915 state tracking structures. */
8734void intel_modeset_setup_hw_state(struct drm_device *dev)
8735{
8736 struct drm_i915_private *dev_priv = dev->dev_private;
8737 enum pipe pipe;
8738 u32 tmp;
8739 struct intel_crtc *crtc;
8740 struct intel_encoder *encoder;
8741 struct intel_connector *connector;
8742
8743 for_each_pipe(pipe) {
8744 crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
8745
8746 tmp = I915_READ(PIPECONF(pipe));
8747 if (tmp & PIPECONF_ENABLE)
8748 crtc->active = true;
8749 else
8750 crtc->active = false;
8751
8752 crtc->base.enabled = crtc->active;
8753
8754 DRM_DEBUG_KMS("[CRTC:%d] hw state readout: %s\n",
8755 crtc->base.base.id,
8756 crtc->active ? "enabled" : "disabled");
8757 }
8758
Paulo Zanoni6441ab52012-10-05 12:05:58 -03008759 if (IS_HASWELL(dev))
8760 intel_ddi_setup_hw_pll_state(dev);
8761
Daniel Vetter24929352012-07-02 20:28:59 +02008762 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
8763 base.head) {
8764 pipe = 0;
8765
8766 if (encoder->get_hw_state(encoder, &pipe)) {
8767 encoder->base.crtc =
8768 dev_priv->pipe_to_crtc_mapping[pipe];
8769 } else {
8770 encoder->base.crtc = NULL;
8771 }
8772
8773 encoder->connectors_active = false;
8774 DRM_DEBUG_KMS("[ENCODER:%d:%s] hw state readout: %s, pipe=%i\n",
8775 encoder->base.base.id,
8776 drm_get_encoder_name(&encoder->base),
8777 encoder->base.crtc ? "enabled" : "disabled",
8778 pipe);
8779 }
8780
8781 list_for_each_entry(connector, &dev->mode_config.connector_list,
8782 base.head) {
8783 if (connector->get_hw_state(connector)) {
8784 connector->base.dpms = DRM_MODE_DPMS_ON;
8785 connector->encoder->connectors_active = true;
8786 connector->base.encoder = &connector->encoder->base;
8787 } else {
8788 connector->base.dpms = DRM_MODE_DPMS_OFF;
8789 connector->base.encoder = NULL;
8790 }
8791 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] hw state readout: %s\n",
8792 connector->base.base.id,
8793 drm_get_connector_name(&connector->base),
8794 connector->base.encoder ? "enabled" : "disabled");
8795 }
8796
8797 /* HW state is read out, now we need to sanitize this mess. */
8798 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
8799 base.head) {
8800 intel_sanitize_encoder(encoder);
8801 }
8802
8803 for_each_pipe(pipe) {
8804 crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
8805 intel_sanitize_crtc(crtc);
8806 }
Daniel Vetter9a935852012-07-05 22:34:27 +02008807
8808 intel_modeset_update_staged_output_state(dev);
Daniel Vetter8af6cf82012-07-10 09:50:11 +02008809
8810 intel_modeset_check_state(dev);
Daniel Vetter2e938892012-10-11 20:08:24 +02008811
8812 drm_mode_config_reset(dev);
Daniel Vetter24929352012-07-02 20:28:59 +02008813}
8814
Chris Wilson2c7111d2011-03-29 10:40:27 +01008815void intel_modeset_gem_init(struct drm_device *dev)
8816{
Chris Wilson1833b132012-05-09 11:56:28 +01008817 intel_modeset_init_hw(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +02008818
8819 intel_setup_overlay(dev);
Daniel Vetter24929352012-07-02 20:28:59 +02008820
8821 intel_modeset_setup_hw_state(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08008822}
8823
8824void intel_modeset_cleanup(struct drm_device *dev)
8825{
Jesse Barnes652c3932009-08-17 13:31:43 -07008826 struct drm_i915_private *dev_priv = dev->dev_private;
8827 struct drm_crtc *crtc;
8828 struct intel_crtc *intel_crtc;
8829
Keith Packardf87ea762010-10-03 19:36:26 -07008830 drm_kms_helper_poll_fini(dev);
Jesse Barnes652c3932009-08-17 13:31:43 -07008831 mutex_lock(&dev->struct_mutex);
8832
Jesse Barnes723bfd72010-10-07 16:01:13 -07008833 intel_unregister_dsm_handler();
8834
8835
Jesse Barnes652c3932009-08-17 13:31:43 -07008836 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
8837 /* Skip inactive CRTCs */
8838 if (!crtc->fb)
8839 continue;
8840
8841 intel_crtc = to_intel_crtc(crtc);
Daniel Vetter3dec0092010-08-20 21:40:52 +02008842 intel_increase_pllclock(crtc);
Jesse Barnes652c3932009-08-17 13:31:43 -07008843 }
8844
Chris Wilson973d04f2011-07-08 12:22:37 +01008845 intel_disable_fbc(dev);
Jesse Barnese70236a2009-09-21 10:42:27 -07008846
Daniel Vetter8090c6b2012-06-24 16:42:32 +02008847 intel_disable_gt_powersave(dev);
Chris Wilson0cdab212010-12-05 17:27:06 +00008848
Daniel Vetter930ebb42012-06-29 23:32:16 +02008849 ironlake_teardown_rc6(dev);
8850
Jesse Barnes57f350b2012-03-28 13:39:25 -07008851 if (IS_VALLEYVIEW(dev))
8852 vlv_init_dpio(dev);
8853
Kristian Høgsberg69341a52009-11-11 12:19:17 -05008854 mutex_unlock(&dev->struct_mutex);
8855
Daniel Vetter6c0d93502010-08-20 18:26:46 +02008856 /* Disable the irq before mode object teardown, for the irq might
8857 * enqueue unpin/hotplug work. */
8858 drm_irq_uninstall(dev);
8859 cancel_work_sync(&dev_priv->hotplug_work);
Daniel Vetterc6a828d2012-08-08 23:35:35 +02008860 cancel_work_sync(&dev_priv->rps.work);
Daniel Vetter6c0d93502010-08-20 18:26:46 +02008861
Chris Wilson1630fe72011-07-08 12:22:42 +01008862 /* flush any delayed tasks or pending work */
8863 flush_scheduled_work();
8864
Jesse Barnes79e53942008-11-07 14:24:08 -08008865 drm_mode_config_cleanup(dev);
8866}
8867
Dave Airlie28d52042009-09-21 14:33:58 +10008868/*
Zhenyu Wangf1c79df2010-03-30 14:39:29 +08008869 * Return which encoder is currently attached for connector.
8870 */
Chris Wilsondf0e9242010-09-09 16:20:55 +01008871struct drm_encoder *intel_best_encoder(struct drm_connector *connector)
Jesse Barnes79e53942008-11-07 14:24:08 -08008872{
Chris Wilsondf0e9242010-09-09 16:20:55 +01008873 return &intel_attached_encoder(connector)->base;
8874}
Jesse Barnes79e53942008-11-07 14:24:08 -08008875
Chris Wilsondf0e9242010-09-09 16:20:55 +01008876void intel_connector_attach_encoder(struct intel_connector *connector,
8877 struct intel_encoder *encoder)
8878{
8879 connector->encoder = encoder;
8880 drm_mode_connector_attach_encoder(&connector->base,
8881 &encoder->base);
Jesse Barnes79e53942008-11-07 14:24:08 -08008882}
Dave Airlie28d52042009-09-21 14:33:58 +10008883
8884/*
8885 * set vga decode state - true == enable VGA decode
8886 */
8887int intel_modeset_vga_set_state(struct drm_device *dev, bool state)
8888{
8889 struct drm_i915_private *dev_priv = dev->dev_private;
8890 u16 gmch_ctrl;
8891
8892 pci_read_config_word(dev_priv->bridge_dev, INTEL_GMCH_CTRL, &gmch_ctrl);
8893 if (state)
8894 gmch_ctrl &= ~INTEL_GMCH_VGA_DISABLE;
8895 else
8896 gmch_ctrl |= INTEL_GMCH_VGA_DISABLE;
8897 pci_write_config_word(dev_priv->bridge_dev, INTEL_GMCH_CTRL, gmch_ctrl);
8898 return 0;
8899}
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00008900
8901#ifdef CONFIG_DEBUG_FS
8902#include <linux/seq_file.h>
8903
8904struct intel_display_error_state {
8905 struct intel_cursor_error_state {
8906 u32 control;
8907 u32 position;
8908 u32 base;
8909 u32 size;
Damien Lespiau52331302012-08-15 19:23:25 +01008910 } cursor[I915_MAX_PIPES];
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00008911
8912 struct intel_pipe_error_state {
8913 u32 conf;
8914 u32 source;
8915
8916 u32 htotal;
8917 u32 hblank;
8918 u32 hsync;
8919 u32 vtotal;
8920 u32 vblank;
8921 u32 vsync;
Damien Lespiau52331302012-08-15 19:23:25 +01008922 } pipe[I915_MAX_PIPES];
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00008923
8924 struct intel_plane_error_state {
8925 u32 control;
8926 u32 stride;
8927 u32 size;
8928 u32 pos;
8929 u32 addr;
8930 u32 surface;
8931 u32 tile_offset;
Damien Lespiau52331302012-08-15 19:23:25 +01008932 } plane[I915_MAX_PIPES];
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00008933};
8934
8935struct intel_display_error_state *
8936intel_display_capture_error_state(struct drm_device *dev)
8937{
Akshay Joshi0206e352011-08-16 15:34:10 -04008938 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00008939 struct intel_display_error_state *error;
8940 int i;
8941
8942 error = kmalloc(sizeof(*error), GFP_ATOMIC);
8943 if (error == NULL)
8944 return NULL;
8945
Damien Lespiau52331302012-08-15 19:23:25 +01008946 for_each_pipe(i) {
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00008947 error->cursor[i].control = I915_READ(CURCNTR(i));
8948 error->cursor[i].position = I915_READ(CURPOS(i));
8949 error->cursor[i].base = I915_READ(CURBASE(i));
8950
8951 error->plane[i].control = I915_READ(DSPCNTR(i));
8952 error->plane[i].stride = I915_READ(DSPSTRIDE(i));
8953 error->plane[i].size = I915_READ(DSPSIZE(i));
Akshay Joshi0206e352011-08-16 15:34:10 -04008954 error->plane[i].pos = I915_READ(DSPPOS(i));
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00008955 error->plane[i].addr = I915_READ(DSPADDR(i));
8956 if (INTEL_INFO(dev)->gen >= 4) {
8957 error->plane[i].surface = I915_READ(DSPSURF(i));
8958 error->plane[i].tile_offset = I915_READ(DSPTILEOFF(i));
8959 }
8960
8961 error->pipe[i].conf = I915_READ(PIPECONF(i));
8962 error->pipe[i].source = I915_READ(PIPESRC(i));
8963 error->pipe[i].htotal = I915_READ(HTOTAL(i));
8964 error->pipe[i].hblank = I915_READ(HBLANK(i));
8965 error->pipe[i].hsync = I915_READ(HSYNC(i));
8966 error->pipe[i].vtotal = I915_READ(VTOTAL(i));
8967 error->pipe[i].vblank = I915_READ(VBLANK(i));
8968 error->pipe[i].vsync = I915_READ(VSYNC(i));
8969 }
8970
8971 return error;
8972}
8973
8974void
8975intel_display_print_error_state(struct seq_file *m,
8976 struct drm_device *dev,
8977 struct intel_display_error_state *error)
8978{
Damien Lespiau52331302012-08-15 19:23:25 +01008979 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00008980 int i;
8981
Damien Lespiau52331302012-08-15 19:23:25 +01008982 seq_printf(m, "Num Pipes: %d\n", dev_priv->num_pipe);
8983 for_each_pipe(i) {
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00008984 seq_printf(m, "Pipe [%d]:\n", i);
8985 seq_printf(m, " CONF: %08x\n", error->pipe[i].conf);
8986 seq_printf(m, " SRC: %08x\n", error->pipe[i].source);
8987 seq_printf(m, " HTOTAL: %08x\n", error->pipe[i].htotal);
8988 seq_printf(m, " HBLANK: %08x\n", error->pipe[i].hblank);
8989 seq_printf(m, " HSYNC: %08x\n", error->pipe[i].hsync);
8990 seq_printf(m, " VTOTAL: %08x\n", error->pipe[i].vtotal);
8991 seq_printf(m, " VBLANK: %08x\n", error->pipe[i].vblank);
8992 seq_printf(m, " VSYNC: %08x\n", error->pipe[i].vsync);
8993
8994 seq_printf(m, "Plane [%d]:\n", i);
8995 seq_printf(m, " CNTR: %08x\n", error->plane[i].control);
8996 seq_printf(m, " STRIDE: %08x\n", error->plane[i].stride);
8997 seq_printf(m, " SIZE: %08x\n", error->plane[i].size);
8998 seq_printf(m, " POS: %08x\n", error->plane[i].pos);
8999 seq_printf(m, " ADDR: %08x\n", error->plane[i].addr);
9000 if (INTEL_INFO(dev)->gen >= 4) {
9001 seq_printf(m, " SURF: %08x\n", error->plane[i].surface);
9002 seq_printf(m, " TILEOFF: %08x\n", error->plane[i].tile_offset);
9003 }
9004
9005 seq_printf(m, "Cursor [%d]:\n", i);
9006 seq_printf(m, " CNTR: %08x\n", error->cursor[i].control);
9007 seq_printf(m, " POS: %08x\n", error->cursor[i].position);
9008 seq_printf(m, " BASE: %08x\n", error->cursor[i].base);
9009 }
9010}
9011#endif