blob: 74e7625b19dc41744b6b3a2083a4fc43fcce1ca0 [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 Purushothaman17dc9252012-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 Zanonia5c961d2012-10-24 15:59:34 -0200940enum transcoder intel_pipe_to_cpu_transcoder(struct drm_i915_private *dev_priv,
941 enum pipe pipe)
942{
943 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
944 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
945
946 return intel_crtc->cpu_transcoder;
947}
948
Paulo Zanonia928d532012-05-04 17:18:15 -0300949static void ironlake_wait_for_vblank(struct drm_device *dev, int pipe)
950{
951 struct drm_i915_private *dev_priv = dev->dev_private;
952 u32 frame, frame_reg = PIPEFRAME(pipe);
953
954 frame = I915_READ(frame_reg);
955
956 if (wait_for(I915_READ_NOTRACE(frame_reg) != frame, 50))
957 DRM_DEBUG_KMS("vblank wait timed out\n");
958}
959
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700960/**
961 * intel_wait_for_vblank - wait for vblank on a given pipe
962 * @dev: drm device
963 * @pipe: pipe to wait for
964 *
965 * Wait for vblank to occur on a given pipe. Needed for various bits of
966 * mode setting code.
967 */
968void intel_wait_for_vblank(struct drm_device *dev, int pipe)
Jesse Barnes79e53942008-11-07 14:24:08 -0800969{
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700970 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800971 int pipestat_reg = PIPESTAT(pipe);
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700972
Paulo Zanonia928d532012-05-04 17:18:15 -0300973 if (INTEL_INFO(dev)->gen >= 5) {
974 ironlake_wait_for_vblank(dev, pipe);
975 return;
976 }
977
Chris Wilson300387c2010-09-05 20:25:43 +0100978 /* Clear existing vblank status. Note this will clear any other
979 * sticky status fields as well.
980 *
981 * This races with i915_driver_irq_handler() with the result
982 * that either function could miss a vblank event. Here it is not
983 * fatal, as we will either wait upon the next vblank interrupt or
984 * timeout. Generally speaking intel_wait_for_vblank() is only
985 * called during modeset at which time the GPU should be idle and
986 * should *not* be performing page flips and thus not waiting on
987 * vblanks...
988 * Currently, the result of us stealing a vblank from the irq
989 * handler is that a single frame will be skipped during swapbuffers.
990 */
991 I915_WRITE(pipestat_reg,
992 I915_READ(pipestat_reg) | PIPE_VBLANK_INTERRUPT_STATUS);
993
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700994 /* Wait for vblank interrupt bit to set */
Chris Wilson481b6af2010-08-23 17:43:35 +0100995 if (wait_for(I915_READ(pipestat_reg) &
996 PIPE_VBLANK_INTERRUPT_STATUS,
997 50))
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700998 DRM_DEBUG_KMS("vblank wait timed out\n");
999}
1000
Keith Packardab7ad7f2010-10-03 00:33:06 -07001001/*
1002 * intel_wait_for_pipe_off - wait for pipe to turn off
Jesse Barnes9d0498a2010-08-18 13:20:54 -07001003 * @dev: drm device
1004 * @pipe: pipe to wait for
1005 *
1006 * After disabling a pipe, we can't wait for vblank in the usual way,
1007 * spinning on the vblank interrupt status bit, since we won't actually
1008 * see an interrupt when the pipe is disabled.
1009 *
Keith Packardab7ad7f2010-10-03 00:33:06 -07001010 * On Gen4 and above:
1011 * wait for the pipe register state bit to turn off
1012 *
1013 * Otherwise:
1014 * wait for the display line value to settle (it usually
1015 * ends up stopping at the start of the next frame).
Chris Wilson58e10eb2010-10-03 10:56:11 +01001016 *
Jesse Barnes9d0498a2010-08-18 13:20:54 -07001017 */
Chris Wilson58e10eb2010-10-03 10:56:11 +01001018void intel_wait_for_pipe_off(struct drm_device *dev, int pipe)
Jesse Barnes9d0498a2010-08-18 13:20:54 -07001019{
1020 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes9d0498a2010-08-18 13:20:54 -07001021
Keith Packardab7ad7f2010-10-03 00:33:06 -07001022 if (INTEL_INFO(dev)->gen >= 4) {
Chris Wilson58e10eb2010-10-03 10:56:11 +01001023 int reg = PIPECONF(pipe);
Jesse Barnes9d0498a2010-08-18 13:20:54 -07001024
Keith Packardab7ad7f2010-10-03 00:33:06 -07001025 /* Wait for the Pipe State to go off */
Chris Wilson58e10eb2010-10-03 10:56:11 +01001026 if (wait_for((I915_READ(reg) & I965_PIPECONF_ACTIVE) == 0,
1027 100))
Daniel Vetter284637d2012-07-09 09:51:57 +02001028 WARN(1, "pipe_off wait timed out\n");
Keith Packardab7ad7f2010-10-03 00:33:06 -07001029 } else {
Paulo Zanoni837ba002012-05-04 17:18:14 -03001030 u32 last_line, line_mask;
Chris Wilson58e10eb2010-10-03 10:56:11 +01001031 int reg = PIPEDSL(pipe);
Keith Packardab7ad7f2010-10-03 00:33:06 -07001032 unsigned long timeout = jiffies + msecs_to_jiffies(100);
1033
Paulo Zanoni837ba002012-05-04 17:18:14 -03001034 if (IS_GEN2(dev))
1035 line_mask = DSL_LINEMASK_GEN2;
1036 else
1037 line_mask = DSL_LINEMASK_GEN3;
1038
Keith Packardab7ad7f2010-10-03 00:33:06 -07001039 /* Wait for the display line to settle */
1040 do {
Paulo Zanoni837ba002012-05-04 17:18:14 -03001041 last_line = I915_READ(reg) & line_mask;
Keith Packardab7ad7f2010-10-03 00:33:06 -07001042 mdelay(5);
Paulo Zanoni837ba002012-05-04 17:18:14 -03001043 } while (((I915_READ(reg) & line_mask) != last_line) &&
Keith Packardab7ad7f2010-10-03 00:33:06 -07001044 time_after(timeout, jiffies));
1045 if (time_after(jiffies, timeout))
Daniel Vetter284637d2012-07-09 09:51:57 +02001046 WARN(1, "pipe_off wait timed out\n");
Keith Packardab7ad7f2010-10-03 00:33:06 -07001047 }
Jesse Barnes79e53942008-11-07 14:24:08 -08001048}
1049
Jesse Barnesb24e7172011-01-04 15:09:30 -08001050static const char *state_string(bool enabled)
1051{
1052 return enabled ? "on" : "off";
1053}
1054
1055/* Only for pre-ILK configs */
1056static void assert_pll(struct drm_i915_private *dev_priv,
1057 enum pipe pipe, bool state)
1058{
1059 int reg;
1060 u32 val;
1061 bool cur_state;
1062
1063 reg = DPLL(pipe);
1064 val = I915_READ(reg);
1065 cur_state = !!(val & DPLL_VCO_ENABLE);
1066 WARN(cur_state != state,
1067 "PLL state assertion failure (expected %s, current %s)\n",
1068 state_string(state), state_string(cur_state));
1069}
1070#define assert_pll_enabled(d, p) assert_pll(d, p, true)
1071#define assert_pll_disabled(d, p) assert_pll(d, p, false)
1072
Jesse Barnes040484a2011-01-03 12:14:26 -08001073/* For ILK+ */
1074static void assert_pch_pll(struct drm_i915_private *dev_priv,
Chris Wilson92b27b02012-05-20 18:10:50 +01001075 struct intel_pch_pll *pll,
1076 struct intel_crtc *crtc,
1077 bool state)
Jesse Barnes040484a2011-01-03 12:14:26 -08001078{
Jesse Barnes040484a2011-01-03 12:14:26 -08001079 u32 val;
1080 bool cur_state;
1081
Eugeni Dodonov9d82aa12012-05-09 15:37:17 -03001082 if (HAS_PCH_LPT(dev_priv->dev)) {
1083 DRM_DEBUG_DRIVER("LPT detected: skipping PCH PLL test\n");
1084 return;
1085 }
1086
Chris Wilson92b27b02012-05-20 18:10:50 +01001087 if (WARN (!pll,
1088 "asserting PCH PLL %s with no PLL\n", state_string(state)))
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001089 return;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001090
Chris Wilson92b27b02012-05-20 18:10:50 +01001091 val = I915_READ(pll->pll_reg);
1092 cur_state = !!(val & DPLL_VCO_ENABLE);
1093 WARN(cur_state != state,
1094 "PCH PLL state for reg %x assertion failure (expected %s, current %s), val=%08x\n",
1095 pll->pll_reg, state_string(state), state_string(cur_state), val);
1096
1097 /* Make sure the selected PLL is correctly attached to the transcoder */
1098 if (crtc && HAS_PCH_CPT(dev_priv->dev)) {
Jesse Barnesd3ccbe82011-10-12 09:27:42 -07001099 u32 pch_dpll;
1100
1101 pch_dpll = I915_READ(PCH_DPLL_SEL);
Chris Wilson92b27b02012-05-20 18:10:50 +01001102 cur_state = pll->pll_reg == _PCH_DPLL_B;
1103 if (!WARN(((pch_dpll >> (4 * crtc->pipe)) & 1) != cur_state,
1104 "PLL[%d] not attached to this transcoder %d: %08x\n",
1105 cur_state, crtc->pipe, pch_dpll)) {
1106 cur_state = !!(val >> (4*crtc->pipe + 3));
1107 WARN(cur_state != state,
1108 "PLL[%d] not %s on this transcoder %d: %08x\n",
1109 pll->pll_reg == _PCH_DPLL_B,
1110 state_string(state),
1111 crtc->pipe,
1112 val);
1113 }
Jesse Barnesd3ccbe82011-10-12 09:27:42 -07001114 }
Jesse Barnes040484a2011-01-03 12:14:26 -08001115}
Chris Wilson92b27b02012-05-20 18:10:50 +01001116#define assert_pch_pll_enabled(d, p, c) assert_pch_pll(d, p, c, true)
1117#define assert_pch_pll_disabled(d, p, c) assert_pch_pll(d, p, c, false)
Jesse Barnes040484a2011-01-03 12:14:26 -08001118
1119static void assert_fdi_tx(struct drm_i915_private *dev_priv,
1120 enum pipe pipe, bool state)
1121{
1122 int reg;
1123 u32 val;
1124 bool cur_state;
1125
Eugeni Dodonovbf507ef2012-05-09 15:37:18 -03001126 if (IS_HASWELL(dev_priv->dev)) {
1127 /* On Haswell, DDI is used instead of FDI_TX_CTL */
1128 reg = DDI_FUNC_CTL(pipe);
1129 val = I915_READ(reg);
1130 cur_state = !!(val & PIPE_DDI_FUNC_ENABLE);
1131 } else {
1132 reg = FDI_TX_CTL(pipe);
1133 val = I915_READ(reg);
1134 cur_state = !!(val & FDI_TX_ENABLE);
1135 }
Jesse Barnes040484a2011-01-03 12:14:26 -08001136 WARN(cur_state != state,
1137 "FDI TX state assertion failure (expected %s, current %s)\n",
1138 state_string(state), state_string(cur_state));
1139}
1140#define assert_fdi_tx_enabled(d, p) assert_fdi_tx(d, p, true)
1141#define assert_fdi_tx_disabled(d, p) assert_fdi_tx(d, p, false)
1142
1143static void assert_fdi_rx(struct drm_i915_private *dev_priv,
1144 enum pipe pipe, bool state)
1145{
1146 int reg;
1147 u32 val;
1148 bool cur_state;
1149
Eugeni Dodonov59c859d2012-05-09 15:37:19 -03001150 if (IS_HASWELL(dev_priv->dev) && pipe > 0) {
1151 DRM_ERROR("Attempting to enable FDI_RX on Haswell pipe > 0\n");
1152 return;
1153 } else {
1154 reg = FDI_RX_CTL(pipe);
1155 val = I915_READ(reg);
1156 cur_state = !!(val & FDI_RX_ENABLE);
1157 }
Jesse Barnes040484a2011-01-03 12:14:26 -08001158 WARN(cur_state != state,
1159 "FDI RX state assertion failure (expected %s, current %s)\n",
1160 state_string(state), state_string(cur_state));
1161}
1162#define assert_fdi_rx_enabled(d, p) assert_fdi_rx(d, p, true)
1163#define assert_fdi_rx_disabled(d, p) assert_fdi_rx(d, p, false)
1164
1165static void assert_fdi_tx_pll_enabled(struct drm_i915_private *dev_priv,
1166 enum pipe pipe)
1167{
1168 int reg;
1169 u32 val;
1170
1171 /* ILK FDI PLL is always enabled */
1172 if (dev_priv->info->gen == 5)
1173 return;
1174
Eugeni Dodonovbf507ef2012-05-09 15:37:18 -03001175 /* On Haswell, DDI ports are responsible for the FDI PLL setup */
1176 if (IS_HASWELL(dev_priv->dev))
1177 return;
1178
Jesse Barnes040484a2011-01-03 12:14:26 -08001179 reg = FDI_TX_CTL(pipe);
1180 val = I915_READ(reg);
1181 WARN(!(val & FDI_TX_PLL_ENABLE), "FDI TX PLL assertion failure, should be active but is disabled\n");
1182}
1183
1184static void assert_fdi_rx_pll_enabled(struct drm_i915_private *dev_priv,
1185 enum pipe pipe)
1186{
1187 int reg;
1188 u32 val;
1189
Eugeni Dodonov59c859d2012-05-09 15:37:19 -03001190 if (IS_HASWELL(dev_priv->dev) && pipe > 0) {
1191 DRM_ERROR("Attempting to enable FDI on Haswell with pipe > 0\n");
1192 return;
1193 }
Jesse Barnes040484a2011-01-03 12:14:26 -08001194 reg = FDI_RX_CTL(pipe);
1195 val = I915_READ(reg);
1196 WARN(!(val & FDI_RX_PLL_ENABLE), "FDI RX PLL assertion failure, should be active but is disabled\n");
1197}
1198
Jesse Barnesea0760c2011-01-04 15:09:32 -08001199static void assert_panel_unlocked(struct drm_i915_private *dev_priv,
1200 enum pipe pipe)
1201{
1202 int pp_reg, lvds_reg;
1203 u32 val;
1204 enum pipe panel_pipe = PIPE_A;
Thomas Jarosch0de3b482011-08-25 15:37:45 +02001205 bool locked = true;
Jesse Barnesea0760c2011-01-04 15:09:32 -08001206
1207 if (HAS_PCH_SPLIT(dev_priv->dev)) {
1208 pp_reg = PCH_PP_CONTROL;
1209 lvds_reg = PCH_LVDS;
1210 } else {
1211 pp_reg = PP_CONTROL;
1212 lvds_reg = LVDS;
1213 }
1214
1215 val = I915_READ(pp_reg);
1216 if (!(val & PANEL_POWER_ON) ||
1217 ((val & PANEL_UNLOCK_REGS) == PANEL_UNLOCK_REGS))
1218 locked = false;
1219
1220 if (I915_READ(lvds_reg) & LVDS_PIPEB_SELECT)
1221 panel_pipe = PIPE_B;
1222
1223 WARN(panel_pipe == pipe && locked,
1224 "panel assertion failure, pipe %c regs locked\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001225 pipe_name(pipe));
Jesse Barnesea0760c2011-01-04 15:09:32 -08001226}
1227
Jesse Barnesb840d907f2011-12-13 13:19:38 -08001228void assert_pipe(struct drm_i915_private *dev_priv,
1229 enum pipe pipe, bool state)
Jesse Barnesb24e7172011-01-04 15:09:30 -08001230{
1231 int reg;
1232 u32 val;
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001233 bool cur_state;
Jesse Barnesb24e7172011-01-04 15:09:30 -08001234
Daniel Vetter8e636782012-01-22 01:36:48 +01001235 /* if we need the pipe A quirk it must be always on */
1236 if (pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE)
1237 state = true;
1238
Jesse Barnesb24e7172011-01-04 15:09:30 -08001239 reg = PIPECONF(pipe);
1240 val = I915_READ(reg);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001241 cur_state = !!(val & PIPECONF_ENABLE);
1242 WARN(cur_state != state,
1243 "pipe %c assertion failure (expected %s, current %s)\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001244 pipe_name(pipe), state_string(state), state_string(cur_state));
Jesse Barnesb24e7172011-01-04 15:09:30 -08001245}
1246
Chris Wilson931872f2012-01-16 23:01:13 +00001247static void assert_plane(struct drm_i915_private *dev_priv,
1248 enum plane plane, bool state)
Jesse Barnesb24e7172011-01-04 15:09:30 -08001249{
1250 int reg;
1251 u32 val;
Chris Wilson931872f2012-01-16 23:01:13 +00001252 bool cur_state;
Jesse Barnesb24e7172011-01-04 15:09:30 -08001253
1254 reg = DSPCNTR(plane);
1255 val = I915_READ(reg);
Chris Wilson931872f2012-01-16 23:01:13 +00001256 cur_state = !!(val & DISPLAY_PLANE_ENABLE);
1257 WARN(cur_state != state,
1258 "plane %c assertion failure (expected %s, current %s)\n",
1259 plane_name(plane), state_string(state), state_string(cur_state));
Jesse Barnesb24e7172011-01-04 15:09:30 -08001260}
1261
Chris Wilson931872f2012-01-16 23:01:13 +00001262#define assert_plane_enabled(d, p) assert_plane(d, p, true)
1263#define assert_plane_disabled(d, p) assert_plane(d, p, false)
1264
Jesse Barnesb24e7172011-01-04 15:09:30 -08001265static void assert_planes_disabled(struct drm_i915_private *dev_priv,
1266 enum pipe pipe)
1267{
1268 int reg, i;
1269 u32 val;
1270 int cur_pipe;
1271
Jesse Barnes19ec1352011-02-02 12:28:02 -08001272 /* Planes are fixed to pipes on ILK+ */
Adam Jackson28c057942011-10-07 14:38:42 -04001273 if (HAS_PCH_SPLIT(dev_priv->dev)) {
1274 reg = DSPCNTR(pipe);
1275 val = I915_READ(reg);
1276 WARN((val & DISPLAY_PLANE_ENABLE),
1277 "plane %c assertion failure, should be disabled but not\n",
1278 plane_name(pipe));
Jesse Barnes19ec1352011-02-02 12:28:02 -08001279 return;
Adam Jackson28c057942011-10-07 14:38:42 -04001280 }
Jesse Barnes19ec1352011-02-02 12:28:02 -08001281
Jesse Barnesb24e7172011-01-04 15:09:30 -08001282 /* Need to check both planes against the pipe */
1283 for (i = 0; i < 2; i++) {
1284 reg = DSPCNTR(i);
1285 val = I915_READ(reg);
1286 cur_pipe = (val & DISPPLANE_SEL_PIPE_MASK) >>
1287 DISPPLANE_SEL_PIPE_SHIFT;
1288 WARN((val & DISPLAY_PLANE_ENABLE) && pipe == cur_pipe,
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001289 "plane %c assertion failure, should be off on pipe %c but is still active\n",
1290 plane_name(i), pipe_name(pipe));
Jesse Barnesb24e7172011-01-04 15:09:30 -08001291 }
1292}
1293
Jesse Barnes92f25842011-01-04 15:09:34 -08001294static void assert_pch_refclk_enabled(struct drm_i915_private *dev_priv)
1295{
1296 u32 val;
1297 bool enabled;
1298
Eugeni Dodonov9d82aa12012-05-09 15:37:17 -03001299 if (HAS_PCH_LPT(dev_priv->dev)) {
1300 DRM_DEBUG_DRIVER("LPT does not has PCH refclk, skipping check\n");
1301 return;
1302 }
1303
Jesse Barnes92f25842011-01-04 15:09:34 -08001304 val = I915_READ(PCH_DREF_CONTROL);
1305 enabled = !!(val & (DREF_SSC_SOURCE_MASK | DREF_NONSPREAD_SOURCE_MASK |
1306 DREF_SUPERSPREAD_SOURCE_MASK));
1307 WARN(!enabled, "PCH refclk assertion failure, should be active but is disabled\n");
1308}
1309
1310static void assert_transcoder_disabled(struct drm_i915_private *dev_priv,
1311 enum pipe pipe)
1312{
1313 int reg;
1314 u32 val;
1315 bool enabled;
1316
1317 reg = TRANSCONF(pipe);
1318 val = I915_READ(reg);
1319 enabled = !!(val & TRANS_ENABLE);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001320 WARN(enabled,
1321 "transcoder assertion failed, should be off on pipe %c but is still active\n",
1322 pipe_name(pipe));
Jesse Barnes92f25842011-01-04 15:09:34 -08001323}
1324
Keith Packard4e634382011-08-06 10:39:45 -07001325static bool dp_pipe_enabled(struct drm_i915_private *dev_priv,
1326 enum pipe pipe, u32 port_sel, u32 val)
Keith Packardf0575e92011-07-25 22:12:43 -07001327{
1328 if ((val & DP_PORT_EN) == 0)
1329 return false;
1330
1331 if (HAS_PCH_CPT(dev_priv->dev)) {
1332 u32 trans_dp_ctl_reg = TRANS_DP_CTL(pipe);
1333 u32 trans_dp_ctl = I915_READ(trans_dp_ctl_reg);
1334 if ((trans_dp_ctl & TRANS_DP_PORT_SEL_MASK) != port_sel)
1335 return false;
1336 } else {
1337 if ((val & DP_PIPE_MASK) != (pipe << 30))
1338 return false;
1339 }
1340 return true;
1341}
1342
Keith Packard1519b992011-08-06 10:35:34 -07001343static bool hdmi_pipe_enabled(struct drm_i915_private *dev_priv,
1344 enum pipe pipe, u32 val)
1345{
1346 if ((val & PORT_ENABLE) == 0)
1347 return false;
1348
1349 if (HAS_PCH_CPT(dev_priv->dev)) {
1350 if ((val & PORT_TRANS_SEL_MASK) != PORT_TRANS_SEL_CPT(pipe))
1351 return false;
1352 } else {
1353 if ((val & TRANSCODER_MASK) != TRANSCODER(pipe))
1354 return false;
1355 }
1356 return true;
1357}
1358
1359static bool lvds_pipe_enabled(struct drm_i915_private *dev_priv,
1360 enum pipe pipe, u32 val)
1361{
1362 if ((val & LVDS_PORT_EN) == 0)
1363 return false;
1364
1365 if (HAS_PCH_CPT(dev_priv->dev)) {
1366 if ((val & PORT_TRANS_SEL_MASK) != PORT_TRANS_SEL_CPT(pipe))
1367 return false;
1368 } else {
1369 if ((val & LVDS_PIPE_MASK) != LVDS_PIPE(pipe))
1370 return false;
1371 }
1372 return true;
1373}
1374
1375static bool adpa_pipe_enabled(struct drm_i915_private *dev_priv,
1376 enum pipe pipe, u32 val)
1377{
1378 if ((val & ADPA_DAC_ENABLE) == 0)
1379 return false;
1380 if (HAS_PCH_CPT(dev_priv->dev)) {
1381 if ((val & PORT_TRANS_SEL_MASK) != PORT_TRANS_SEL_CPT(pipe))
1382 return false;
1383 } else {
1384 if ((val & ADPA_PIPE_SELECT_MASK) != ADPA_PIPE_SELECT(pipe))
1385 return false;
1386 }
1387 return true;
1388}
1389
Jesse Barnes291906f2011-02-02 12:28:03 -08001390static void assert_pch_dp_disabled(struct drm_i915_private *dev_priv,
Keith Packardf0575e92011-07-25 22:12:43 -07001391 enum pipe pipe, int reg, u32 port_sel)
Jesse Barnes291906f2011-02-02 12:28:03 -08001392{
Jesse Barnes47a05ec2011-02-07 13:46:40 -08001393 u32 val = I915_READ(reg);
Keith Packard4e634382011-08-06 10:39:45 -07001394 WARN(dp_pipe_enabled(dev_priv, pipe, port_sel, val),
Jesse Barnes291906f2011-02-02 12:28:03 -08001395 "PCH DP (0x%08x) enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001396 reg, pipe_name(pipe));
Daniel Vetterde9a35a2012-06-05 11:03:40 +02001397
Daniel Vetter75c5da22012-09-10 21:58:29 +02001398 WARN(HAS_PCH_IBX(dev_priv->dev) && (val & DP_PORT_EN) == 0
1399 && (val & DP_PIPEB_SELECT),
Daniel Vetterde9a35a2012-06-05 11:03:40 +02001400 "IBX PCH dp port still using transcoder B\n");
Jesse Barnes291906f2011-02-02 12:28:03 -08001401}
1402
1403static void assert_pch_hdmi_disabled(struct drm_i915_private *dev_priv,
1404 enum pipe pipe, int reg)
1405{
Jesse Barnes47a05ec2011-02-07 13:46:40 -08001406 u32 val = I915_READ(reg);
Xu, Anhuae9a851e2012-08-13 03:08:33 +00001407 WARN(hdmi_pipe_enabled(dev_priv, pipe, val),
Adam Jackson23c99e72011-10-07 14:38:43 -04001408 "PCH HDMI (0x%08x) enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001409 reg, pipe_name(pipe));
Daniel Vetterde9a35a2012-06-05 11:03:40 +02001410
Daniel Vetter75c5da22012-09-10 21:58:29 +02001411 WARN(HAS_PCH_IBX(dev_priv->dev) && (val & PORT_ENABLE) == 0
1412 && (val & SDVO_PIPE_B_SELECT),
Daniel Vetterde9a35a2012-06-05 11:03:40 +02001413 "IBX PCH hdmi port still using transcoder B\n");
Jesse Barnes291906f2011-02-02 12:28:03 -08001414}
1415
1416static void assert_pch_ports_disabled(struct drm_i915_private *dev_priv,
1417 enum pipe pipe)
1418{
1419 int reg;
1420 u32 val;
Jesse Barnes291906f2011-02-02 12:28:03 -08001421
Keith Packardf0575e92011-07-25 22:12:43 -07001422 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_B, TRANS_DP_PORT_SEL_B);
1423 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_C, TRANS_DP_PORT_SEL_C);
1424 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_D, TRANS_DP_PORT_SEL_D);
Jesse Barnes291906f2011-02-02 12:28:03 -08001425
1426 reg = PCH_ADPA;
1427 val = I915_READ(reg);
Xu, Anhuae9a851e2012-08-13 03:08:33 +00001428 WARN(adpa_pipe_enabled(dev_priv, pipe, val),
Jesse Barnes291906f2011-02-02 12:28:03 -08001429 "PCH VGA enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001430 pipe_name(pipe));
Jesse Barnes291906f2011-02-02 12:28:03 -08001431
1432 reg = PCH_LVDS;
1433 val = I915_READ(reg);
Xu, Anhuae9a851e2012-08-13 03:08:33 +00001434 WARN(lvds_pipe_enabled(dev_priv, pipe, val),
Jesse Barnes291906f2011-02-02 12:28:03 -08001435 "PCH LVDS enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001436 pipe_name(pipe));
Jesse Barnes291906f2011-02-02 12:28:03 -08001437
1438 assert_pch_hdmi_disabled(dev_priv, pipe, HDMIB);
1439 assert_pch_hdmi_disabled(dev_priv, pipe, HDMIC);
1440 assert_pch_hdmi_disabled(dev_priv, pipe, HDMID);
1441}
1442
Jesse Barnesb24e7172011-01-04 15:09:30 -08001443/**
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001444 * intel_enable_pll - enable a PLL
1445 * @dev_priv: i915 private structure
1446 * @pipe: pipe PLL to enable
1447 *
1448 * Enable @pipe's PLL so we can start pumping pixels from a plane. Check to
1449 * make sure the PLL reg is writable first though, since the panel write
1450 * protect mechanism may be enabled.
1451 *
1452 * Note! This is for pre-ILK only.
Thomas Richter7434a252012-07-18 19:22:30 +02001453 *
1454 * Unfortunately needed by dvo_ns2501 since the dvo depends on it running.
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001455 */
Daniel Vettera37b9b32012-08-12 19:27:09 +02001456static void intel_enable_pll(struct drm_i915_private *dev_priv, enum pipe pipe)
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001457{
1458 int reg;
1459 u32 val;
1460
1461 /* No really, not for ILK+ */
Jesse Barnesa0c4da242012-06-15 11:55:13 -07001462 BUG_ON(!IS_VALLEYVIEW(dev_priv->dev) && dev_priv->info->gen >= 5);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001463
1464 /* PLL is protected by panel, make sure we can write it */
1465 if (IS_MOBILE(dev_priv->dev) && !IS_I830(dev_priv->dev))
1466 assert_panel_unlocked(dev_priv, pipe);
1467
1468 reg = DPLL(pipe);
1469 val = I915_READ(reg);
1470 val |= DPLL_VCO_ENABLE;
1471
1472 /* We do this three times for luck */
1473 I915_WRITE(reg, val);
1474 POSTING_READ(reg);
1475 udelay(150); /* wait for warmup */
1476 I915_WRITE(reg, val);
1477 POSTING_READ(reg);
1478 udelay(150); /* wait for warmup */
1479 I915_WRITE(reg, val);
1480 POSTING_READ(reg);
1481 udelay(150); /* wait for warmup */
1482}
1483
1484/**
1485 * intel_disable_pll - disable a PLL
1486 * @dev_priv: i915 private structure
1487 * @pipe: pipe PLL to disable
1488 *
1489 * Disable the PLL for @pipe, making sure the pipe is off first.
1490 *
1491 * Note! This is for pre-ILK only.
1492 */
1493static void intel_disable_pll(struct drm_i915_private *dev_priv, enum pipe pipe)
1494{
1495 int reg;
1496 u32 val;
1497
1498 /* Don't disable pipe A or pipe A PLLs if needed */
1499 if (pipe == PIPE_A && (dev_priv->quirks & QUIRK_PIPEA_FORCE))
1500 return;
1501
1502 /* Make sure the pipe isn't still relying on us */
1503 assert_pipe_disabled(dev_priv, pipe);
1504
1505 reg = DPLL(pipe);
1506 val = I915_READ(reg);
1507 val &= ~DPLL_VCO_ENABLE;
1508 I915_WRITE(reg, val);
1509 POSTING_READ(reg);
1510}
1511
Eugeni Dodonova416ede2012-05-09 15:37:10 -03001512/* SBI access */
1513static void
1514intel_sbi_write(struct drm_i915_private *dev_priv, u16 reg, u32 value)
1515{
1516 unsigned long flags;
1517
1518 spin_lock_irqsave(&dev_priv->dpio_lock, flags);
Eugeni Dodonov39fb50f2012-06-08 16:43:19 -03001519 if (wait_for((I915_READ(SBI_CTL_STAT) & SBI_BUSY) == 0,
Eugeni Dodonova416ede2012-05-09 15:37:10 -03001520 100)) {
1521 DRM_ERROR("timeout waiting for SBI to become ready\n");
1522 goto out_unlock;
1523 }
1524
1525 I915_WRITE(SBI_ADDR,
1526 (reg << 16));
1527 I915_WRITE(SBI_DATA,
1528 value);
1529 I915_WRITE(SBI_CTL_STAT,
1530 SBI_BUSY |
1531 SBI_CTL_OP_CRWR);
1532
Eugeni Dodonov39fb50f2012-06-08 16:43:19 -03001533 if (wait_for((I915_READ(SBI_CTL_STAT) & (SBI_BUSY | SBI_RESPONSE_FAIL)) == 0,
Eugeni Dodonova416ede2012-05-09 15:37:10 -03001534 100)) {
1535 DRM_ERROR("timeout waiting for SBI to complete write transaction\n");
1536 goto out_unlock;
1537 }
1538
1539out_unlock:
1540 spin_unlock_irqrestore(&dev_priv->dpio_lock, flags);
1541}
1542
1543static u32
1544intel_sbi_read(struct drm_i915_private *dev_priv, u16 reg)
1545{
1546 unsigned long flags;
Eugeni Dodonov39fb50f2012-06-08 16:43:19 -03001547 u32 value = 0;
Eugeni Dodonova416ede2012-05-09 15:37:10 -03001548
1549 spin_lock_irqsave(&dev_priv->dpio_lock, flags);
Eugeni Dodonov39fb50f2012-06-08 16:43:19 -03001550 if (wait_for((I915_READ(SBI_CTL_STAT) & SBI_BUSY) == 0,
Eugeni Dodonova416ede2012-05-09 15:37:10 -03001551 100)) {
1552 DRM_ERROR("timeout waiting for SBI to become ready\n");
1553 goto out_unlock;
1554 }
1555
1556 I915_WRITE(SBI_ADDR,
1557 (reg << 16));
1558 I915_WRITE(SBI_CTL_STAT,
1559 SBI_BUSY |
1560 SBI_CTL_OP_CRRD);
1561
Eugeni Dodonov39fb50f2012-06-08 16:43:19 -03001562 if (wait_for((I915_READ(SBI_CTL_STAT) & (SBI_BUSY | SBI_RESPONSE_FAIL)) == 0,
Eugeni Dodonova416ede2012-05-09 15:37:10 -03001563 100)) {
1564 DRM_ERROR("timeout waiting for SBI to complete read transaction\n");
1565 goto out_unlock;
1566 }
1567
1568 value = I915_READ(SBI_DATA);
1569
1570out_unlock:
1571 spin_unlock_irqrestore(&dev_priv->dpio_lock, flags);
1572 return value;
1573}
1574
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001575/**
Jesse Barnes92f25842011-01-04 15:09:34 -08001576 * intel_enable_pch_pll - enable PCH PLL
1577 * @dev_priv: i915 private structure
1578 * @pipe: pipe PLL to enable
1579 *
1580 * The PCH PLL needs to be enabled before the PCH transcoder, since it
1581 * drives the transcoder clock.
1582 */
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001583static void intel_enable_pch_pll(struct intel_crtc *intel_crtc)
Jesse Barnes92f25842011-01-04 15:09:34 -08001584{
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001585 struct drm_i915_private *dev_priv = intel_crtc->base.dev->dev_private;
Chris Wilson48da64a2012-05-13 20:16:12 +01001586 struct intel_pch_pll *pll;
Jesse Barnes92f25842011-01-04 15:09:34 -08001587 int reg;
1588 u32 val;
1589
Chris Wilson48da64a2012-05-13 20:16:12 +01001590 /* PCH PLLs only available on ILK, SNB and IVB */
Jesse Barnes92f25842011-01-04 15:09:34 -08001591 BUG_ON(dev_priv->info->gen < 5);
Chris Wilson48da64a2012-05-13 20:16:12 +01001592 pll = intel_crtc->pch_pll;
1593 if (pll == NULL)
1594 return;
1595
1596 if (WARN_ON(pll->refcount == 0))
1597 return;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001598
1599 DRM_DEBUG_KMS("enable PCH PLL %x (active %d, on? %d)for crtc %d\n",
1600 pll->pll_reg, pll->active, pll->on,
1601 intel_crtc->base.base.id);
Jesse Barnes92f25842011-01-04 15:09:34 -08001602
1603 /* PCH refclock must be enabled first */
1604 assert_pch_refclk_enabled(dev_priv);
1605
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001606 if (pll->active++ && pll->on) {
Chris Wilson92b27b02012-05-20 18:10:50 +01001607 assert_pch_pll_enabled(dev_priv, pll, NULL);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001608 return;
1609 }
1610
1611 DRM_DEBUG_KMS("enabling PCH PLL %x\n", pll->pll_reg);
1612
1613 reg = pll->pll_reg;
Jesse Barnes92f25842011-01-04 15:09:34 -08001614 val = I915_READ(reg);
1615 val |= DPLL_VCO_ENABLE;
1616 I915_WRITE(reg, val);
1617 POSTING_READ(reg);
1618 udelay(200);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001619
1620 pll->on = true;
Jesse Barnes92f25842011-01-04 15:09:34 -08001621}
1622
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001623static void intel_disable_pch_pll(struct intel_crtc *intel_crtc)
Jesse Barnes92f25842011-01-04 15:09:34 -08001624{
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001625 struct drm_i915_private *dev_priv = intel_crtc->base.dev->dev_private;
1626 struct intel_pch_pll *pll = intel_crtc->pch_pll;
Jesse Barnes92f25842011-01-04 15:09:34 -08001627 int reg;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001628 u32 val;
Jesse Barnes4c609cb2011-09-02 12:52:11 -07001629
Jesse Barnes92f25842011-01-04 15:09:34 -08001630 /* PCH only available on ILK+ */
1631 BUG_ON(dev_priv->info->gen < 5);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001632 if (pll == NULL)
1633 return;
1634
Chris Wilson48da64a2012-05-13 20:16:12 +01001635 if (WARN_ON(pll->refcount == 0))
1636 return;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001637
1638 DRM_DEBUG_KMS("disable PCH PLL %x (active %d, on? %d) for crtc %d\n",
1639 pll->pll_reg, pll->active, pll->on,
1640 intel_crtc->base.base.id);
1641
Chris Wilson48da64a2012-05-13 20:16:12 +01001642 if (WARN_ON(pll->active == 0)) {
Chris Wilson92b27b02012-05-20 18:10:50 +01001643 assert_pch_pll_disabled(dev_priv, pll, NULL);
Chris Wilson48da64a2012-05-13 20:16:12 +01001644 return;
1645 }
1646
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001647 if (--pll->active) {
Chris Wilson92b27b02012-05-20 18:10:50 +01001648 assert_pch_pll_enabled(dev_priv, pll, NULL);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001649 return;
1650 }
1651
1652 DRM_DEBUG_KMS("disabling PCH PLL %x\n", pll->pll_reg);
Jesse Barnes92f25842011-01-04 15:09:34 -08001653
1654 /* Make sure transcoder isn't still depending on us */
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001655 assert_transcoder_disabled(dev_priv, intel_crtc->pipe);
Jesse Barnes92f25842011-01-04 15:09:34 -08001656
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001657 reg = pll->pll_reg;
Jesse Barnes92f25842011-01-04 15:09:34 -08001658 val = I915_READ(reg);
1659 val &= ~DPLL_VCO_ENABLE;
1660 I915_WRITE(reg, val);
1661 POSTING_READ(reg);
1662 udelay(200);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001663
1664 pll->on = false;
Jesse Barnes92f25842011-01-04 15:09:34 -08001665}
1666
Jesse Barnes040484a2011-01-03 12:14:26 -08001667static void intel_enable_transcoder(struct drm_i915_private *dev_priv,
1668 enum pipe pipe)
1669{
1670 int reg;
Paulo Zanoni5f7f7262012-02-03 17:47:15 -02001671 u32 val, pipeconf_val;
Paulo Zanoni7c26e5c2012-02-14 17:07:09 -02001672 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
Jesse Barnes040484a2011-01-03 12:14:26 -08001673
1674 /* PCH only available on ILK+ */
1675 BUG_ON(dev_priv->info->gen < 5);
1676
1677 /* Make sure PCH DPLL is enabled */
Chris Wilson92b27b02012-05-20 18:10:50 +01001678 assert_pch_pll_enabled(dev_priv,
1679 to_intel_crtc(crtc)->pch_pll,
1680 to_intel_crtc(crtc));
Jesse Barnes040484a2011-01-03 12:14:26 -08001681
1682 /* FDI must be feeding us bits for PCH ports */
1683 assert_fdi_tx_enabled(dev_priv, pipe);
1684 assert_fdi_rx_enabled(dev_priv, pipe);
1685
Eugeni Dodonov59c859d2012-05-09 15:37:19 -03001686 if (IS_HASWELL(dev_priv->dev) && pipe > 0) {
1687 DRM_ERROR("Attempting to enable transcoder on Haswell with pipe > 0\n");
1688 return;
1689 }
Jesse Barnes040484a2011-01-03 12:14:26 -08001690 reg = TRANSCONF(pipe);
1691 val = I915_READ(reg);
Paulo Zanoni5f7f7262012-02-03 17:47:15 -02001692 pipeconf_val = I915_READ(PIPECONF(pipe));
Jesse Barnese9bcff52011-06-24 12:19:20 -07001693
1694 if (HAS_PCH_IBX(dev_priv->dev)) {
1695 /*
1696 * make the BPC in transcoder be consistent with
1697 * that in pipeconf reg.
1698 */
1699 val &= ~PIPE_BPC_MASK;
Paulo Zanoni5f7f7262012-02-03 17:47:15 -02001700 val |= pipeconf_val & PIPE_BPC_MASK;
Jesse Barnese9bcff52011-06-24 12:19:20 -07001701 }
Paulo Zanoni5f7f7262012-02-03 17:47:15 -02001702
1703 val &= ~TRANS_INTERLACE_MASK;
1704 if ((pipeconf_val & PIPECONF_INTERLACE_MASK) == PIPECONF_INTERLACED_ILK)
Paulo Zanoni7c26e5c2012-02-14 17:07:09 -02001705 if (HAS_PCH_IBX(dev_priv->dev) &&
1706 intel_pipe_has_type(crtc, INTEL_OUTPUT_SDVO))
1707 val |= TRANS_LEGACY_INTERLACED_ILK;
1708 else
1709 val |= TRANS_INTERLACED;
Paulo Zanoni5f7f7262012-02-03 17:47:15 -02001710 else
1711 val |= TRANS_PROGRESSIVE;
1712
Jesse Barnes040484a2011-01-03 12:14:26 -08001713 I915_WRITE(reg, val | TRANS_ENABLE);
1714 if (wait_for(I915_READ(reg) & TRANS_STATE_ENABLE, 100))
1715 DRM_ERROR("failed to enable transcoder %d\n", pipe);
1716}
1717
1718static void intel_disable_transcoder(struct drm_i915_private *dev_priv,
1719 enum pipe pipe)
1720{
1721 int reg;
1722 u32 val;
1723
1724 /* FDI relies on the transcoder */
1725 assert_fdi_tx_disabled(dev_priv, pipe);
1726 assert_fdi_rx_disabled(dev_priv, pipe);
1727
Jesse Barnes291906f2011-02-02 12:28:03 -08001728 /* Ports must be off as well */
1729 assert_pch_ports_disabled(dev_priv, pipe);
1730
Jesse Barnes040484a2011-01-03 12:14:26 -08001731 reg = TRANSCONF(pipe);
1732 val = I915_READ(reg);
1733 val &= ~TRANS_ENABLE;
1734 I915_WRITE(reg, val);
1735 /* wait for PCH transcoder off, transcoder state */
1736 if (wait_for((I915_READ(reg) & TRANS_STATE_ENABLE) == 0, 50))
Jesse Barnes4c9c18c2011-10-13 09:46:32 -07001737 DRM_ERROR("failed to disable transcoder %d\n", pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08001738}
1739
Jesse Barnes92f25842011-01-04 15:09:34 -08001740/**
Chris Wilson309cfea2011-01-28 13:54:53 +00001741 * intel_enable_pipe - enable a pipe, asserting requirements
Jesse Barnesb24e7172011-01-04 15:09:30 -08001742 * @dev_priv: i915 private structure
1743 * @pipe: pipe to enable
Jesse Barnes040484a2011-01-03 12:14:26 -08001744 * @pch_port: on ILK+, is this pipe driving a PCH port or not
Jesse Barnesb24e7172011-01-04 15:09:30 -08001745 *
1746 * Enable @pipe, making sure that various hardware specific requirements
1747 * are met, if applicable, e.g. PLL enabled, LVDS pairs enabled, etc.
1748 *
1749 * @pipe should be %PIPE_A or %PIPE_B.
1750 *
1751 * Will wait until the pipe is actually running (i.e. first vblank) before
1752 * returning.
1753 */
Jesse Barnes040484a2011-01-03 12:14:26 -08001754static void intel_enable_pipe(struct drm_i915_private *dev_priv, enum pipe pipe,
1755 bool pch_port)
Jesse Barnesb24e7172011-01-04 15:09:30 -08001756{
1757 int reg;
1758 u32 val;
1759
1760 /*
1761 * A pipe without a PLL won't actually be able to drive bits from
1762 * a plane. On ILK+ the pipe PLLs are integrated, so we don't
1763 * need the check.
1764 */
1765 if (!HAS_PCH_SPLIT(dev_priv->dev))
1766 assert_pll_enabled(dev_priv, pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08001767 else {
1768 if (pch_port) {
1769 /* if driving the PCH, we need FDI enabled */
1770 assert_fdi_rx_pll_enabled(dev_priv, pipe);
1771 assert_fdi_tx_pll_enabled(dev_priv, pipe);
1772 }
1773 /* FIXME: assert CPU port conditions for SNB+ */
1774 }
Jesse Barnesb24e7172011-01-04 15:09:30 -08001775
1776 reg = PIPECONF(pipe);
1777 val = I915_READ(reg);
Chris Wilson00d70b12011-03-17 07:18:29 +00001778 if (val & PIPECONF_ENABLE)
1779 return;
1780
1781 I915_WRITE(reg, val | PIPECONF_ENABLE);
Jesse Barnesb24e7172011-01-04 15:09:30 -08001782 intel_wait_for_vblank(dev_priv->dev, pipe);
1783}
1784
1785/**
Chris Wilson309cfea2011-01-28 13:54:53 +00001786 * intel_disable_pipe - disable a pipe, asserting requirements
Jesse Barnesb24e7172011-01-04 15:09:30 -08001787 * @dev_priv: i915 private structure
1788 * @pipe: pipe to disable
1789 *
1790 * Disable @pipe, making sure that various hardware specific requirements
1791 * are met, if applicable, e.g. plane disabled, panel fitter off, etc.
1792 *
1793 * @pipe should be %PIPE_A or %PIPE_B.
1794 *
1795 * Will wait until the pipe has shut down before returning.
1796 */
1797static void intel_disable_pipe(struct drm_i915_private *dev_priv,
1798 enum pipe pipe)
1799{
1800 int reg;
1801 u32 val;
1802
1803 /*
1804 * Make sure planes won't keep trying to pump pixels to us,
1805 * or we might hang the display.
1806 */
1807 assert_planes_disabled(dev_priv, pipe);
1808
1809 /* Don't disable pipe A or pipe A PLLs if needed */
1810 if (pipe == PIPE_A && (dev_priv->quirks & QUIRK_PIPEA_FORCE))
1811 return;
1812
1813 reg = PIPECONF(pipe);
1814 val = I915_READ(reg);
Chris Wilson00d70b12011-03-17 07:18:29 +00001815 if ((val & PIPECONF_ENABLE) == 0)
1816 return;
1817
1818 I915_WRITE(reg, val & ~PIPECONF_ENABLE);
Jesse Barnesb24e7172011-01-04 15:09:30 -08001819 intel_wait_for_pipe_off(dev_priv->dev, pipe);
1820}
1821
Keith Packardd74362c2011-07-28 14:47:14 -07001822/*
1823 * Plane regs are double buffered, going from enabled->disabled needs a
1824 * trigger in order to latch. The display address reg provides this.
1825 */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03001826void intel_flush_display_plane(struct drm_i915_private *dev_priv,
Keith Packardd74362c2011-07-28 14:47:14 -07001827 enum plane plane)
1828{
1829 I915_WRITE(DSPADDR(plane), I915_READ(DSPADDR(plane)));
1830 I915_WRITE(DSPSURF(plane), I915_READ(DSPSURF(plane)));
1831}
1832
Jesse Barnesb24e7172011-01-04 15:09:30 -08001833/**
1834 * intel_enable_plane - enable a display plane on a given pipe
1835 * @dev_priv: i915 private structure
1836 * @plane: plane to enable
1837 * @pipe: pipe being fed
1838 *
1839 * Enable @plane on @pipe, making sure that @pipe is running first.
1840 */
1841static void intel_enable_plane(struct drm_i915_private *dev_priv,
1842 enum plane plane, enum pipe pipe)
1843{
1844 int reg;
1845 u32 val;
1846
1847 /* If the pipe isn't enabled, we can't pump pixels and may hang */
1848 assert_pipe_enabled(dev_priv, pipe);
1849
1850 reg = DSPCNTR(plane);
1851 val = I915_READ(reg);
Chris Wilson00d70b12011-03-17 07:18:29 +00001852 if (val & DISPLAY_PLANE_ENABLE)
1853 return;
1854
1855 I915_WRITE(reg, val | DISPLAY_PLANE_ENABLE);
Keith Packardd74362c2011-07-28 14:47:14 -07001856 intel_flush_display_plane(dev_priv, plane);
Jesse Barnesb24e7172011-01-04 15:09:30 -08001857 intel_wait_for_vblank(dev_priv->dev, pipe);
1858}
1859
Jesse Barnesb24e7172011-01-04 15:09:30 -08001860/**
1861 * intel_disable_plane - disable a display plane
1862 * @dev_priv: i915 private structure
1863 * @plane: plane to disable
1864 * @pipe: pipe consuming the data
1865 *
1866 * Disable @plane; should be an independent operation.
1867 */
1868static void intel_disable_plane(struct drm_i915_private *dev_priv,
1869 enum plane plane, enum pipe pipe)
1870{
1871 int reg;
1872 u32 val;
1873
1874 reg = DSPCNTR(plane);
1875 val = I915_READ(reg);
Chris Wilson00d70b12011-03-17 07:18:29 +00001876 if ((val & DISPLAY_PLANE_ENABLE) == 0)
1877 return;
1878
1879 I915_WRITE(reg, val & ~DISPLAY_PLANE_ENABLE);
Jesse Barnesb24e7172011-01-04 15:09:30 -08001880 intel_flush_display_plane(dev_priv, plane);
1881 intel_wait_for_vblank(dev_priv->dev, pipe);
1882}
1883
Chris Wilson127bd2a2010-07-23 23:32:05 +01001884int
Chris Wilson48b956c2010-09-14 12:50:34 +01001885intel_pin_and_fence_fb_obj(struct drm_device *dev,
Chris Wilson05394f32010-11-08 19:18:58 +00001886 struct drm_i915_gem_object *obj,
Chris Wilson919926a2010-11-12 13:42:53 +00001887 struct intel_ring_buffer *pipelined)
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001888{
Chris Wilsonce453d82011-02-21 14:43:56 +00001889 struct drm_i915_private *dev_priv = dev->dev_private;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001890 u32 alignment;
1891 int ret;
1892
Chris Wilson05394f32010-11-08 19:18:58 +00001893 switch (obj->tiling_mode) {
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001894 case I915_TILING_NONE:
Chris Wilson534843d2010-07-05 18:01:46 +01001895 if (IS_BROADWATER(dev) || IS_CRESTLINE(dev))
1896 alignment = 128 * 1024;
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001897 else if (INTEL_INFO(dev)->gen >= 4)
Chris Wilson534843d2010-07-05 18:01:46 +01001898 alignment = 4 * 1024;
1899 else
1900 alignment = 64 * 1024;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001901 break;
1902 case I915_TILING_X:
1903 /* pin() will align the object as required by fence */
1904 alignment = 0;
1905 break;
1906 case I915_TILING_Y:
1907 /* FIXME: Is this true? */
1908 DRM_ERROR("Y tiled not allowed for scan out buffers\n");
1909 return -EINVAL;
1910 default:
1911 BUG();
1912 }
1913
Chris Wilsonce453d82011-02-21 14:43:56 +00001914 dev_priv->mm.interruptible = false;
Chris Wilson2da3b9b2011-04-14 09:41:17 +01001915 ret = i915_gem_object_pin_to_display_plane(obj, alignment, pipelined);
Chris Wilson48b956c2010-09-14 12:50:34 +01001916 if (ret)
Chris Wilsonce453d82011-02-21 14:43:56 +00001917 goto err_interruptible;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001918
1919 /* Install a fence for tiled scan-out. Pre-i965 always needs a
1920 * fence, whereas 965+ only requires a fence if using
1921 * framebuffer compression. For simplicity, we always install
1922 * a fence as the cost is not that onerous.
1923 */
Chris Wilson06d98132012-04-17 15:31:24 +01001924 ret = i915_gem_object_get_fence(obj);
Chris Wilson9a5a53b2012-03-22 15:10:00 +00001925 if (ret)
1926 goto err_unpin;
Chris Wilson1690e1e2011-12-14 13:57:08 +01001927
Chris Wilson9a5a53b2012-03-22 15:10:00 +00001928 i915_gem_object_pin_fence(obj);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001929
Chris Wilsonce453d82011-02-21 14:43:56 +00001930 dev_priv->mm.interruptible = true;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001931 return 0;
Chris Wilson48b956c2010-09-14 12:50:34 +01001932
1933err_unpin:
1934 i915_gem_object_unpin(obj);
Chris Wilsonce453d82011-02-21 14:43:56 +00001935err_interruptible:
1936 dev_priv->mm.interruptible = true;
Chris Wilson48b956c2010-09-14 12:50:34 +01001937 return ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001938}
1939
Chris Wilson1690e1e2011-12-14 13:57:08 +01001940void intel_unpin_fb_obj(struct drm_i915_gem_object *obj)
1941{
1942 i915_gem_object_unpin_fence(obj);
1943 i915_gem_object_unpin(obj);
1944}
1945
Daniel Vetterc2c75132012-07-05 12:17:30 +02001946/* Computes the linear offset to the base tile and adjusts x, y. bytes per pixel
1947 * is assumed to be a power-of-two. */
1948static unsigned long gen4_compute_dspaddr_offset_xtiled(int *x, int *y,
1949 unsigned int bpp,
1950 unsigned int pitch)
1951{
1952 int tile_rows, tiles;
1953
1954 tile_rows = *y / 8;
1955 *y %= 8;
1956 tiles = *x / (512/bpp);
1957 *x %= 512/bpp;
1958
1959 return tile_rows * pitch * 8 + tiles * 4096;
1960}
1961
Jesse Barnes17638cd2011-06-24 12:19:23 -07001962static int i9xx_update_plane(struct drm_crtc *crtc, struct drm_framebuffer *fb,
1963 int x, int y)
Jesse Barnes81255562010-08-02 12:07:50 -07001964{
1965 struct drm_device *dev = crtc->dev;
1966 struct drm_i915_private *dev_priv = dev->dev_private;
1967 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1968 struct intel_framebuffer *intel_fb;
Chris Wilson05394f32010-11-08 19:18:58 +00001969 struct drm_i915_gem_object *obj;
Jesse Barnes81255562010-08-02 12:07:50 -07001970 int plane = intel_crtc->plane;
Daniel Vettere506a0c2012-07-05 12:17:29 +02001971 unsigned long linear_offset;
Jesse Barnes81255562010-08-02 12:07:50 -07001972 u32 dspcntr;
Chris Wilson5eddb702010-09-11 13:48:45 +01001973 u32 reg;
Jesse Barnes81255562010-08-02 12:07:50 -07001974
1975 switch (plane) {
1976 case 0:
1977 case 1:
1978 break;
1979 default:
1980 DRM_ERROR("Can't update plane %d in SAREA\n", plane);
1981 return -EINVAL;
1982 }
1983
1984 intel_fb = to_intel_framebuffer(fb);
1985 obj = intel_fb->obj;
Jesse Barnes81255562010-08-02 12:07:50 -07001986
Chris Wilson5eddb702010-09-11 13:48:45 +01001987 reg = DSPCNTR(plane);
1988 dspcntr = I915_READ(reg);
Jesse Barnes81255562010-08-02 12:07:50 -07001989 /* Mask out pixel format bits in case we change it */
1990 dspcntr &= ~DISPPLANE_PIXFORMAT_MASK;
1991 switch (fb->bits_per_pixel) {
1992 case 8:
1993 dspcntr |= DISPPLANE_8BPP;
1994 break;
1995 case 16:
1996 if (fb->depth == 15)
1997 dspcntr |= DISPPLANE_15_16BPP;
1998 else
1999 dspcntr |= DISPPLANE_16BPP;
2000 break;
2001 case 24:
2002 case 32:
2003 dspcntr |= DISPPLANE_32BPP_NO_ALPHA;
2004 break;
2005 default:
Jesse Barnes17638cd2011-06-24 12:19:23 -07002006 DRM_ERROR("Unknown color depth %d\n", fb->bits_per_pixel);
Jesse Barnes81255562010-08-02 12:07:50 -07002007 return -EINVAL;
2008 }
Chris Wilsona6c45cf2010-09-17 00:32:17 +01002009 if (INTEL_INFO(dev)->gen >= 4) {
Chris Wilson05394f32010-11-08 19:18:58 +00002010 if (obj->tiling_mode != I915_TILING_NONE)
Jesse Barnes81255562010-08-02 12:07:50 -07002011 dspcntr |= DISPPLANE_TILED;
2012 else
2013 dspcntr &= ~DISPPLANE_TILED;
2014 }
2015
Chris Wilson5eddb702010-09-11 13:48:45 +01002016 I915_WRITE(reg, dspcntr);
Jesse Barnes81255562010-08-02 12:07:50 -07002017
Daniel Vettere506a0c2012-07-05 12:17:29 +02002018 linear_offset = y * fb->pitches[0] + x * (fb->bits_per_pixel / 8);
Jesse Barnes81255562010-08-02 12:07:50 -07002019
Daniel Vetterc2c75132012-07-05 12:17:30 +02002020 if (INTEL_INFO(dev)->gen >= 4) {
2021 intel_crtc->dspaddr_offset =
2022 gen4_compute_dspaddr_offset_xtiled(&x, &y,
2023 fb->bits_per_pixel / 8,
2024 fb->pitches[0]);
2025 linear_offset -= intel_crtc->dspaddr_offset;
2026 } else {
Daniel Vettere506a0c2012-07-05 12:17:29 +02002027 intel_crtc->dspaddr_offset = linear_offset;
Daniel Vetterc2c75132012-07-05 12:17:30 +02002028 }
Daniel Vettere506a0c2012-07-05 12:17:29 +02002029
2030 DRM_DEBUG_KMS("Writing base %08X %08lX %d %d %d\n",
2031 obj->gtt_offset, linear_offset, x, y, fb->pitches[0]);
Ville Syrjälä01f2c772011-12-20 00:06:49 +02002032 I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]);
Chris Wilsona6c45cf2010-09-17 00:32:17 +01002033 if (INTEL_INFO(dev)->gen >= 4) {
Daniel Vetterc2c75132012-07-05 12:17:30 +02002034 I915_MODIFY_DISPBASE(DSPSURF(plane),
2035 obj->gtt_offset + intel_crtc->dspaddr_offset);
Chris Wilson5eddb702010-09-11 13:48:45 +01002036 I915_WRITE(DSPTILEOFF(plane), (y << 16) | x);
Daniel Vettere506a0c2012-07-05 12:17:29 +02002037 I915_WRITE(DSPLINOFF(plane), linear_offset);
Chris Wilson5eddb702010-09-11 13:48:45 +01002038 } else
Daniel Vettere506a0c2012-07-05 12:17:29 +02002039 I915_WRITE(DSPADDR(plane), obj->gtt_offset + linear_offset);
Chris Wilson5eddb702010-09-11 13:48:45 +01002040 POSTING_READ(reg);
Jesse Barnes81255562010-08-02 12:07:50 -07002041
Jesse Barnes17638cd2011-06-24 12:19:23 -07002042 return 0;
2043}
2044
2045static int ironlake_update_plane(struct drm_crtc *crtc,
2046 struct drm_framebuffer *fb, int x, int y)
2047{
2048 struct drm_device *dev = crtc->dev;
2049 struct drm_i915_private *dev_priv = dev->dev_private;
2050 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2051 struct intel_framebuffer *intel_fb;
2052 struct drm_i915_gem_object *obj;
2053 int plane = intel_crtc->plane;
Daniel Vettere506a0c2012-07-05 12:17:29 +02002054 unsigned long linear_offset;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002055 u32 dspcntr;
2056 u32 reg;
2057
2058 switch (plane) {
2059 case 0:
2060 case 1:
Jesse Barnes27f82272011-09-02 12:54:37 -07002061 case 2:
Jesse Barnes17638cd2011-06-24 12:19:23 -07002062 break;
2063 default:
2064 DRM_ERROR("Can't update plane %d in SAREA\n", plane);
2065 return -EINVAL;
2066 }
2067
2068 intel_fb = to_intel_framebuffer(fb);
2069 obj = intel_fb->obj;
2070
2071 reg = DSPCNTR(plane);
2072 dspcntr = I915_READ(reg);
2073 /* Mask out pixel format bits in case we change it */
2074 dspcntr &= ~DISPPLANE_PIXFORMAT_MASK;
2075 switch (fb->bits_per_pixel) {
2076 case 8:
2077 dspcntr |= DISPPLANE_8BPP;
2078 break;
2079 case 16:
2080 if (fb->depth != 16)
2081 return -EINVAL;
2082
2083 dspcntr |= DISPPLANE_16BPP;
2084 break;
2085 case 24:
2086 case 32:
2087 if (fb->depth == 24)
2088 dspcntr |= DISPPLANE_32BPP_NO_ALPHA;
2089 else if (fb->depth == 30)
2090 dspcntr |= DISPPLANE_32BPP_30BIT_NO_ALPHA;
2091 else
2092 return -EINVAL;
2093 break;
2094 default:
2095 DRM_ERROR("Unknown color depth %d\n", fb->bits_per_pixel);
2096 return -EINVAL;
2097 }
2098
2099 if (obj->tiling_mode != I915_TILING_NONE)
2100 dspcntr |= DISPPLANE_TILED;
2101 else
2102 dspcntr &= ~DISPPLANE_TILED;
2103
2104 /* must disable */
2105 dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE;
2106
2107 I915_WRITE(reg, dspcntr);
2108
Daniel Vettere506a0c2012-07-05 12:17:29 +02002109 linear_offset = y * fb->pitches[0] + x * (fb->bits_per_pixel / 8);
Daniel Vetterc2c75132012-07-05 12:17:30 +02002110 intel_crtc->dspaddr_offset =
2111 gen4_compute_dspaddr_offset_xtiled(&x, &y,
2112 fb->bits_per_pixel / 8,
2113 fb->pitches[0]);
2114 linear_offset -= intel_crtc->dspaddr_offset;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002115
Daniel Vettere506a0c2012-07-05 12:17:29 +02002116 DRM_DEBUG_KMS("Writing base %08X %08lX %d %d %d\n",
2117 obj->gtt_offset, linear_offset, x, y, fb->pitches[0]);
Ville Syrjälä01f2c772011-12-20 00:06:49 +02002118 I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]);
Daniel Vetterc2c75132012-07-05 12:17:30 +02002119 I915_MODIFY_DISPBASE(DSPSURF(plane),
2120 obj->gtt_offset + intel_crtc->dspaddr_offset);
Jesse Barnes17638cd2011-06-24 12:19:23 -07002121 I915_WRITE(DSPTILEOFF(plane), (y << 16) | x);
Daniel Vettere506a0c2012-07-05 12:17:29 +02002122 I915_WRITE(DSPLINOFF(plane), linear_offset);
Jesse Barnes17638cd2011-06-24 12:19:23 -07002123 POSTING_READ(reg);
2124
2125 return 0;
2126}
2127
2128/* Assume fb object is pinned & idle & fenced and just update base pointers */
2129static int
2130intel_pipe_set_base_atomic(struct drm_crtc *crtc, struct drm_framebuffer *fb,
2131 int x, int y, enum mode_set_atomic state)
2132{
2133 struct drm_device *dev = crtc->dev;
2134 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002135
Chris Wilson6b8e6ed2012-04-17 15:08:19 +01002136 if (dev_priv->display.disable_fbc)
2137 dev_priv->display.disable_fbc(dev);
Daniel Vetter3dec0092010-08-20 21:40:52 +02002138 intel_increase_pllclock(crtc);
Jesse Barnes81255562010-08-02 12:07:50 -07002139
Chris Wilson6b8e6ed2012-04-17 15:08:19 +01002140 return dev_priv->display.update_plane(crtc, fb, x, y);
Jesse Barnes81255562010-08-02 12:07:50 -07002141}
2142
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002143static int
Chris Wilson14667a42012-04-03 17:58:35 +01002144intel_finish_fb(struct drm_framebuffer *old_fb)
2145{
2146 struct drm_i915_gem_object *obj = to_intel_framebuffer(old_fb)->obj;
2147 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
2148 bool was_interruptible = dev_priv->mm.interruptible;
2149 int ret;
2150
2151 wait_event(dev_priv->pending_flip_queue,
2152 atomic_read(&dev_priv->mm.wedged) ||
2153 atomic_read(&obj->pending_flip) == 0);
2154
2155 /* Big Hammer, we also need to ensure that any pending
2156 * MI_WAIT_FOR_EVENT inside a user batch buffer on the
2157 * current scanout is retired before unpinning the old
2158 * framebuffer.
2159 *
2160 * This should only fail upon a hung GPU, in which case we
2161 * can safely continue.
2162 */
2163 dev_priv->mm.interruptible = false;
2164 ret = i915_gem_object_finish_gpu(obj);
2165 dev_priv->mm.interruptible = was_interruptible;
2166
2167 return ret;
2168}
2169
2170static int
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -05002171intel_pipe_set_base(struct drm_crtc *crtc, int x, int y,
Daniel Vetter94352cf2012-07-05 22:51:56 +02002172 struct drm_framebuffer *fb)
Jesse Barnes79e53942008-11-07 14:24:08 -08002173{
2174 struct drm_device *dev = crtc->dev;
Chris Wilson6b8e6ed2012-04-17 15:08:19 +01002175 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -08002176 struct drm_i915_master_private *master_priv;
2177 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter94352cf2012-07-05 22:51:56 +02002178 struct drm_framebuffer *old_fb;
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002179 int ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08002180
2181 /* no fb bound */
Daniel Vetter94352cf2012-07-05 22:51:56 +02002182 if (!fb) {
Jesse Barnesa5071c22011-07-19 15:38:56 -07002183 DRM_ERROR("No FB bound\n");
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002184 return 0;
2185 }
2186
Eugeni Dodonov5826eca2012-05-09 15:37:12 -03002187 if(intel_crtc->plane > dev_priv->num_pipe) {
2188 DRM_ERROR("no plane for crtc: plane %d, num_pipes %d\n",
2189 intel_crtc->plane,
2190 dev_priv->num_pipe);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002191 return -EINVAL;
Jesse Barnes79e53942008-11-07 14:24:08 -08002192 }
2193
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002194 mutex_lock(&dev->struct_mutex);
Chris Wilson265db952010-09-20 15:41:01 +01002195 ret = intel_pin_and_fence_fb_obj(dev,
Daniel Vetter94352cf2012-07-05 22:51:56 +02002196 to_intel_framebuffer(fb)->obj,
Chris Wilson919926a2010-11-12 13:42:53 +00002197 NULL);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002198 if (ret != 0) {
2199 mutex_unlock(&dev->struct_mutex);
Jesse Barnesa5071c22011-07-19 15:38:56 -07002200 DRM_ERROR("pin & fence failed\n");
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002201 return ret;
2202 }
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -05002203
Daniel Vetter94352cf2012-07-05 22:51:56 +02002204 if (crtc->fb)
2205 intel_finish_fb(crtc->fb);
Chris Wilson265db952010-09-20 15:41:01 +01002206
Daniel Vetter94352cf2012-07-05 22:51:56 +02002207 ret = dev_priv->display.update_plane(crtc, fb, x, y);
Chris Wilson4e6cfef2010-08-08 13:20:19 +01002208 if (ret) {
Daniel Vetter94352cf2012-07-05 22:51:56 +02002209 intel_unpin_fb_obj(to_intel_framebuffer(fb)->obj);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002210 mutex_unlock(&dev->struct_mutex);
Jesse Barnesa5071c22011-07-19 15:38:56 -07002211 DRM_ERROR("failed to update base address\n");
Chris Wilson4e6cfef2010-08-08 13:20:19 +01002212 return ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08002213 }
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -05002214
Daniel Vetter94352cf2012-07-05 22:51:56 +02002215 old_fb = crtc->fb;
2216 crtc->fb = fb;
Daniel Vetter6c4c86f2012-09-10 21:58:30 +02002217 crtc->x = x;
2218 crtc->y = y;
Daniel Vetter94352cf2012-07-05 22:51:56 +02002219
Chris Wilsonb7f1de22010-12-14 16:09:31 +00002220 if (old_fb) {
2221 intel_wait_for_vblank(dev, intel_crtc->pipe);
Chris Wilson1690e1e2011-12-14 13:57:08 +01002222 intel_unpin_fb_obj(to_intel_framebuffer(old_fb)->obj);
Chris Wilsonb7f1de22010-12-14 16:09:31 +00002223 }
Jesse Barnes652c3932009-08-17 13:31:43 -07002224
Chris Wilson6b8e6ed2012-04-17 15:08:19 +01002225 intel_update_fbc(dev);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002226 mutex_unlock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -08002227
2228 if (!dev->primary->master)
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002229 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08002230
2231 master_priv = dev->primary->master->driver_priv;
2232 if (!master_priv->sarea_priv)
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002233 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08002234
Chris Wilson265db952010-09-20 15:41:01 +01002235 if (intel_crtc->pipe) {
Jesse Barnes79e53942008-11-07 14:24:08 -08002236 master_priv->sarea_priv->pipeB_x = x;
2237 master_priv->sarea_priv->pipeB_y = y;
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002238 } else {
2239 master_priv->sarea_priv->pipeA_x = x;
2240 master_priv->sarea_priv->pipeA_y = y;
Jesse Barnes79e53942008-11-07 14:24:08 -08002241 }
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002242
2243 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08002244}
2245
Chris Wilson5eddb702010-09-11 13:48:45 +01002246static void ironlake_set_pll_edp(struct drm_crtc *crtc, int clock)
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002247{
2248 struct drm_device *dev = crtc->dev;
2249 struct drm_i915_private *dev_priv = dev->dev_private;
2250 u32 dpa_ctl;
2251
Zhao Yakui28c97732009-10-09 11:39:41 +08002252 DRM_DEBUG_KMS("eDP PLL enable for clock %d\n", clock);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002253 dpa_ctl = I915_READ(DP_A);
2254 dpa_ctl &= ~DP_PLL_FREQ_MASK;
2255
2256 if (clock < 200000) {
2257 u32 temp;
2258 dpa_ctl |= DP_PLL_FREQ_160MHZ;
2259 /* workaround for 160Mhz:
2260 1) program 0x4600c bits 15:0 = 0x8124
2261 2) program 0x46010 bit 0 = 1
2262 3) program 0x46034 bit 24 = 1
2263 4) program 0x64000 bit 14 = 1
2264 */
2265 temp = I915_READ(0x4600c);
2266 temp &= 0xffff0000;
2267 I915_WRITE(0x4600c, temp | 0x8124);
2268
2269 temp = I915_READ(0x46010);
2270 I915_WRITE(0x46010, temp | 1);
2271
2272 temp = I915_READ(0x46034);
2273 I915_WRITE(0x46034, temp | (1 << 24));
2274 } else {
2275 dpa_ctl |= DP_PLL_FREQ_270MHZ;
2276 }
2277 I915_WRITE(DP_A, dpa_ctl);
2278
Chris Wilson5eddb702010-09-11 13:48:45 +01002279 POSTING_READ(DP_A);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002280 udelay(500);
2281}
2282
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08002283static void intel_fdi_normal_train(struct drm_crtc *crtc)
2284{
2285 struct drm_device *dev = crtc->dev;
2286 struct drm_i915_private *dev_priv = dev->dev_private;
2287 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2288 int pipe = intel_crtc->pipe;
2289 u32 reg, temp;
2290
2291 /* enable normal train */
2292 reg = FDI_TX_CTL(pipe);
2293 temp = I915_READ(reg);
Keith Packard61e499b2011-05-17 16:13:52 -07002294 if (IS_IVYBRIDGE(dev)) {
Jesse Barnes357555c2011-04-28 15:09:55 -07002295 temp &= ~FDI_LINK_TRAIN_NONE_IVB;
2296 temp |= FDI_LINK_TRAIN_NONE_IVB | FDI_TX_ENHANCE_FRAME_ENABLE;
Keith Packard61e499b2011-05-17 16:13:52 -07002297 } else {
2298 temp &= ~FDI_LINK_TRAIN_NONE;
2299 temp |= FDI_LINK_TRAIN_NONE | FDI_TX_ENHANCE_FRAME_ENABLE;
Jesse Barnes357555c2011-04-28 15:09:55 -07002300 }
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08002301 I915_WRITE(reg, temp);
2302
2303 reg = FDI_RX_CTL(pipe);
2304 temp = I915_READ(reg);
2305 if (HAS_PCH_CPT(dev)) {
2306 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2307 temp |= FDI_LINK_TRAIN_NORMAL_CPT;
2308 } else {
2309 temp &= ~FDI_LINK_TRAIN_NONE;
2310 temp |= FDI_LINK_TRAIN_NONE;
2311 }
2312 I915_WRITE(reg, temp | FDI_RX_ENHANCE_FRAME_ENABLE);
2313
2314 /* wait one idle pattern time */
2315 POSTING_READ(reg);
2316 udelay(1000);
Jesse Barnes357555c2011-04-28 15:09:55 -07002317
2318 /* IVB wants error correction enabled */
2319 if (IS_IVYBRIDGE(dev))
2320 I915_WRITE(reg, I915_READ(reg) | FDI_FS_ERRC_ENABLE |
2321 FDI_FE_ERRC_ENABLE);
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08002322}
2323
Jesse Barnes291427f2011-07-29 12:42:37 -07002324static void cpt_phase_pointer_enable(struct drm_device *dev, int pipe)
2325{
2326 struct drm_i915_private *dev_priv = dev->dev_private;
2327 u32 flags = I915_READ(SOUTH_CHICKEN1);
2328
2329 flags |= FDI_PHASE_SYNC_OVR(pipe);
2330 I915_WRITE(SOUTH_CHICKEN1, flags); /* once to unlock... */
2331 flags |= FDI_PHASE_SYNC_EN(pipe);
2332 I915_WRITE(SOUTH_CHICKEN1, flags); /* then again to enable */
2333 POSTING_READ(SOUTH_CHICKEN1);
2334}
2335
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002336/* The FDI link training functions for ILK/Ibexpeak. */
2337static void ironlake_fdi_link_train(struct drm_crtc *crtc)
2338{
2339 struct drm_device *dev = crtc->dev;
2340 struct drm_i915_private *dev_priv = dev->dev_private;
2341 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2342 int pipe = intel_crtc->pipe;
Jesse Barnes0fc932b2011-01-04 15:09:37 -08002343 int plane = intel_crtc->plane;
Chris Wilson5eddb702010-09-11 13:48:45 +01002344 u32 reg, temp, tries;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002345
Jesse Barnes0fc932b2011-01-04 15:09:37 -08002346 /* FDI needs bits from pipe & plane first */
2347 assert_pipe_enabled(dev_priv, pipe);
2348 assert_plane_enabled(dev_priv, plane);
2349
Adam Jacksone1a44742010-06-25 15:32:14 -04002350 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
2351 for train result */
Chris Wilson5eddb702010-09-11 13:48:45 +01002352 reg = FDI_RX_IMR(pipe);
2353 temp = I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04002354 temp &= ~FDI_RX_SYMBOL_LOCK;
2355 temp &= ~FDI_RX_BIT_LOCK;
Chris Wilson5eddb702010-09-11 13:48:45 +01002356 I915_WRITE(reg, temp);
2357 I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04002358 udelay(150);
2359
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002360 /* enable CPU FDI TX and PCH FDI RX */
Chris Wilson5eddb702010-09-11 13:48:45 +01002361 reg = FDI_TX_CTL(pipe);
2362 temp = I915_READ(reg);
Adam Jackson77ffb592010-04-12 11:38:44 -04002363 temp &= ~(7 << 19);
2364 temp |= (intel_crtc->fdi_lanes - 1) << 19;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002365 temp &= ~FDI_LINK_TRAIN_NONE;
2366 temp |= FDI_LINK_TRAIN_PATTERN_1;
Chris Wilson5eddb702010-09-11 13:48:45 +01002367 I915_WRITE(reg, temp | FDI_TX_ENABLE);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002368
Chris Wilson5eddb702010-09-11 13:48:45 +01002369 reg = FDI_RX_CTL(pipe);
2370 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002371 temp &= ~FDI_LINK_TRAIN_NONE;
2372 temp |= FDI_LINK_TRAIN_PATTERN_1;
Chris Wilson5eddb702010-09-11 13:48:45 +01002373 I915_WRITE(reg, temp | FDI_RX_ENABLE);
2374
2375 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002376 udelay(150);
2377
Jesse Barnes5b2adf82010-10-07 16:01:15 -07002378 /* Ironlake workaround, enable clock pointer after FDI enable*/
Jesse Barnes6f06ce12011-01-04 15:09:38 -08002379 if (HAS_PCH_IBX(dev)) {
2380 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR);
2381 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR |
2382 FDI_RX_PHASE_SYNC_POINTER_EN);
2383 }
Jesse Barnes5b2adf82010-10-07 16:01:15 -07002384
Chris Wilson5eddb702010-09-11 13:48:45 +01002385 reg = FDI_RX_IIR(pipe);
Adam Jacksone1a44742010-06-25 15:32:14 -04002386 for (tries = 0; tries < 5; tries++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002387 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002388 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2389
2390 if ((temp & FDI_RX_BIT_LOCK)) {
2391 DRM_DEBUG_KMS("FDI train 1 done.\n");
Chris Wilson5eddb702010-09-11 13:48:45 +01002392 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002393 break;
2394 }
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002395 }
Adam Jacksone1a44742010-06-25 15:32:14 -04002396 if (tries == 5)
Chris Wilson5eddb702010-09-11 13:48:45 +01002397 DRM_ERROR("FDI train 1 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002398
2399 /* Train 2 */
Chris Wilson5eddb702010-09-11 13:48:45 +01002400 reg = FDI_TX_CTL(pipe);
2401 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002402 temp &= ~FDI_LINK_TRAIN_NONE;
2403 temp |= FDI_LINK_TRAIN_PATTERN_2;
Chris Wilson5eddb702010-09-11 13:48:45 +01002404 I915_WRITE(reg, temp);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002405
Chris Wilson5eddb702010-09-11 13:48:45 +01002406 reg = FDI_RX_CTL(pipe);
2407 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002408 temp &= ~FDI_LINK_TRAIN_NONE;
2409 temp |= FDI_LINK_TRAIN_PATTERN_2;
Chris Wilson5eddb702010-09-11 13:48:45 +01002410 I915_WRITE(reg, temp);
2411
2412 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002413 udelay(150);
2414
Chris Wilson5eddb702010-09-11 13:48:45 +01002415 reg = FDI_RX_IIR(pipe);
Adam Jacksone1a44742010-06-25 15:32:14 -04002416 for (tries = 0; tries < 5; tries++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002417 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002418 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2419
2420 if (temp & FDI_RX_SYMBOL_LOCK) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002421 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002422 DRM_DEBUG_KMS("FDI train 2 done.\n");
2423 break;
2424 }
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002425 }
Adam Jacksone1a44742010-06-25 15:32:14 -04002426 if (tries == 5)
Chris Wilson5eddb702010-09-11 13:48:45 +01002427 DRM_ERROR("FDI train 2 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002428
2429 DRM_DEBUG_KMS("FDI train done\n");
Jesse Barnes5c5313c2010-10-07 16:01:11 -07002430
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002431}
2432
Akshay Joshi0206e352011-08-16 15:34:10 -04002433static const int snb_b_fdi_train_param[] = {
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002434 FDI_LINK_TRAIN_400MV_0DB_SNB_B,
2435 FDI_LINK_TRAIN_400MV_6DB_SNB_B,
2436 FDI_LINK_TRAIN_600MV_3_5DB_SNB_B,
2437 FDI_LINK_TRAIN_800MV_0DB_SNB_B,
2438};
2439
2440/* The FDI link training functions for SNB/Cougarpoint. */
2441static void gen6_fdi_link_train(struct drm_crtc *crtc)
2442{
2443 struct drm_device *dev = crtc->dev;
2444 struct drm_i915_private *dev_priv = dev->dev_private;
2445 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2446 int pipe = intel_crtc->pipe;
Sean Paulfa37d392012-03-02 12:53:39 -05002447 u32 reg, temp, i, retry;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002448
Adam Jacksone1a44742010-06-25 15:32:14 -04002449 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
2450 for train result */
Chris Wilson5eddb702010-09-11 13:48:45 +01002451 reg = FDI_RX_IMR(pipe);
2452 temp = I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04002453 temp &= ~FDI_RX_SYMBOL_LOCK;
2454 temp &= ~FDI_RX_BIT_LOCK;
Chris Wilson5eddb702010-09-11 13:48:45 +01002455 I915_WRITE(reg, temp);
2456
2457 POSTING_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04002458 udelay(150);
2459
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002460 /* enable CPU FDI TX and PCH FDI RX */
Chris Wilson5eddb702010-09-11 13:48:45 +01002461 reg = FDI_TX_CTL(pipe);
2462 temp = I915_READ(reg);
Adam Jackson77ffb592010-04-12 11:38:44 -04002463 temp &= ~(7 << 19);
2464 temp |= (intel_crtc->fdi_lanes - 1) << 19;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002465 temp &= ~FDI_LINK_TRAIN_NONE;
2466 temp |= FDI_LINK_TRAIN_PATTERN_1;
2467 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2468 /* SNB-B */
2469 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
Chris Wilson5eddb702010-09-11 13:48:45 +01002470 I915_WRITE(reg, temp | FDI_TX_ENABLE);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002471
Chris Wilson5eddb702010-09-11 13:48:45 +01002472 reg = FDI_RX_CTL(pipe);
2473 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002474 if (HAS_PCH_CPT(dev)) {
2475 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2476 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
2477 } else {
2478 temp &= ~FDI_LINK_TRAIN_NONE;
2479 temp |= FDI_LINK_TRAIN_PATTERN_1;
2480 }
Chris Wilson5eddb702010-09-11 13:48:45 +01002481 I915_WRITE(reg, temp | FDI_RX_ENABLE);
2482
2483 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002484 udelay(150);
2485
Jesse Barnes291427f2011-07-29 12:42:37 -07002486 if (HAS_PCH_CPT(dev))
2487 cpt_phase_pointer_enable(dev, pipe);
2488
Akshay Joshi0206e352011-08-16 15:34:10 -04002489 for (i = 0; i < 4; i++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002490 reg = FDI_TX_CTL(pipe);
2491 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002492 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2493 temp |= snb_b_fdi_train_param[i];
Chris Wilson5eddb702010-09-11 13:48:45 +01002494 I915_WRITE(reg, temp);
2495
2496 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002497 udelay(500);
2498
Sean Paulfa37d392012-03-02 12:53:39 -05002499 for (retry = 0; retry < 5; retry++) {
2500 reg = FDI_RX_IIR(pipe);
2501 temp = I915_READ(reg);
2502 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2503 if (temp & FDI_RX_BIT_LOCK) {
2504 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
2505 DRM_DEBUG_KMS("FDI train 1 done.\n");
2506 break;
2507 }
2508 udelay(50);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002509 }
Sean Paulfa37d392012-03-02 12:53:39 -05002510 if (retry < 5)
2511 break;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002512 }
2513 if (i == 4)
Chris Wilson5eddb702010-09-11 13:48:45 +01002514 DRM_ERROR("FDI train 1 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002515
2516 /* Train 2 */
Chris Wilson5eddb702010-09-11 13:48:45 +01002517 reg = FDI_TX_CTL(pipe);
2518 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002519 temp &= ~FDI_LINK_TRAIN_NONE;
2520 temp |= FDI_LINK_TRAIN_PATTERN_2;
2521 if (IS_GEN6(dev)) {
2522 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2523 /* SNB-B */
2524 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
2525 }
Chris Wilson5eddb702010-09-11 13:48:45 +01002526 I915_WRITE(reg, temp);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002527
Chris Wilson5eddb702010-09-11 13:48:45 +01002528 reg = FDI_RX_CTL(pipe);
2529 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002530 if (HAS_PCH_CPT(dev)) {
2531 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2532 temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
2533 } else {
2534 temp &= ~FDI_LINK_TRAIN_NONE;
2535 temp |= FDI_LINK_TRAIN_PATTERN_2;
2536 }
Chris Wilson5eddb702010-09-11 13:48:45 +01002537 I915_WRITE(reg, temp);
2538
2539 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002540 udelay(150);
2541
Akshay Joshi0206e352011-08-16 15:34:10 -04002542 for (i = 0; i < 4; i++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002543 reg = FDI_TX_CTL(pipe);
2544 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002545 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2546 temp |= snb_b_fdi_train_param[i];
Chris Wilson5eddb702010-09-11 13:48:45 +01002547 I915_WRITE(reg, temp);
2548
2549 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002550 udelay(500);
2551
Sean Paulfa37d392012-03-02 12:53:39 -05002552 for (retry = 0; retry < 5; retry++) {
2553 reg = FDI_RX_IIR(pipe);
2554 temp = I915_READ(reg);
2555 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2556 if (temp & FDI_RX_SYMBOL_LOCK) {
2557 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
2558 DRM_DEBUG_KMS("FDI train 2 done.\n");
2559 break;
2560 }
2561 udelay(50);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002562 }
Sean Paulfa37d392012-03-02 12:53:39 -05002563 if (retry < 5)
2564 break;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002565 }
2566 if (i == 4)
Chris Wilson5eddb702010-09-11 13:48:45 +01002567 DRM_ERROR("FDI train 2 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002568
2569 DRM_DEBUG_KMS("FDI train done.\n");
2570}
2571
Jesse Barnes357555c2011-04-28 15:09:55 -07002572/* Manual link training for Ivy Bridge A0 parts */
2573static void ivb_manual_fdi_link_train(struct drm_crtc *crtc)
2574{
2575 struct drm_device *dev = crtc->dev;
2576 struct drm_i915_private *dev_priv = dev->dev_private;
2577 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2578 int pipe = intel_crtc->pipe;
2579 u32 reg, temp, i;
2580
2581 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
2582 for train result */
2583 reg = FDI_RX_IMR(pipe);
2584 temp = I915_READ(reg);
2585 temp &= ~FDI_RX_SYMBOL_LOCK;
2586 temp &= ~FDI_RX_BIT_LOCK;
2587 I915_WRITE(reg, temp);
2588
2589 POSTING_READ(reg);
2590 udelay(150);
2591
2592 /* enable CPU FDI TX and PCH FDI RX */
2593 reg = FDI_TX_CTL(pipe);
2594 temp = I915_READ(reg);
2595 temp &= ~(7 << 19);
2596 temp |= (intel_crtc->fdi_lanes - 1) << 19;
2597 temp &= ~(FDI_LINK_TRAIN_AUTO | FDI_LINK_TRAIN_NONE_IVB);
2598 temp |= FDI_LINK_TRAIN_PATTERN_1_IVB;
2599 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2600 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
Jesse Barnesc4f9c4c2011-10-10 14:28:52 -07002601 temp |= FDI_COMPOSITE_SYNC;
Jesse Barnes357555c2011-04-28 15:09:55 -07002602 I915_WRITE(reg, temp | FDI_TX_ENABLE);
2603
2604 reg = FDI_RX_CTL(pipe);
2605 temp = I915_READ(reg);
2606 temp &= ~FDI_LINK_TRAIN_AUTO;
2607 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2608 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
Jesse Barnesc4f9c4c2011-10-10 14:28:52 -07002609 temp |= FDI_COMPOSITE_SYNC;
Jesse Barnes357555c2011-04-28 15:09:55 -07002610 I915_WRITE(reg, temp | FDI_RX_ENABLE);
2611
2612 POSTING_READ(reg);
2613 udelay(150);
2614
Jesse Barnes291427f2011-07-29 12:42:37 -07002615 if (HAS_PCH_CPT(dev))
2616 cpt_phase_pointer_enable(dev, pipe);
2617
Akshay Joshi0206e352011-08-16 15:34:10 -04002618 for (i = 0; i < 4; i++) {
Jesse Barnes357555c2011-04-28 15:09:55 -07002619 reg = FDI_TX_CTL(pipe);
2620 temp = I915_READ(reg);
2621 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2622 temp |= snb_b_fdi_train_param[i];
2623 I915_WRITE(reg, temp);
2624
2625 POSTING_READ(reg);
2626 udelay(500);
2627
2628 reg = FDI_RX_IIR(pipe);
2629 temp = I915_READ(reg);
2630 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2631
2632 if (temp & FDI_RX_BIT_LOCK ||
2633 (I915_READ(reg) & FDI_RX_BIT_LOCK)) {
2634 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
2635 DRM_DEBUG_KMS("FDI train 1 done.\n");
2636 break;
2637 }
2638 }
2639 if (i == 4)
2640 DRM_ERROR("FDI train 1 fail!\n");
2641
2642 /* Train 2 */
2643 reg = FDI_TX_CTL(pipe);
2644 temp = I915_READ(reg);
2645 temp &= ~FDI_LINK_TRAIN_NONE_IVB;
2646 temp |= FDI_LINK_TRAIN_PATTERN_2_IVB;
2647 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2648 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
2649 I915_WRITE(reg, temp);
2650
2651 reg = FDI_RX_CTL(pipe);
2652 temp = I915_READ(reg);
2653 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2654 temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
2655 I915_WRITE(reg, temp);
2656
2657 POSTING_READ(reg);
2658 udelay(150);
2659
Akshay Joshi0206e352011-08-16 15:34:10 -04002660 for (i = 0; i < 4; i++) {
Jesse Barnes357555c2011-04-28 15:09:55 -07002661 reg = FDI_TX_CTL(pipe);
2662 temp = I915_READ(reg);
2663 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2664 temp |= snb_b_fdi_train_param[i];
2665 I915_WRITE(reg, temp);
2666
2667 POSTING_READ(reg);
2668 udelay(500);
2669
2670 reg = FDI_RX_IIR(pipe);
2671 temp = I915_READ(reg);
2672 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2673
2674 if (temp & FDI_RX_SYMBOL_LOCK) {
2675 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
2676 DRM_DEBUG_KMS("FDI train 2 done.\n");
2677 break;
2678 }
2679 }
2680 if (i == 4)
2681 DRM_ERROR("FDI train 2 fail!\n");
2682
2683 DRM_DEBUG_KMS("FDI train done.\n");
2684}
2685
Daniel Vetter88cefb62012-08-12 19:27:14 +02002686static void ironlake_fdi_pll_enable(struct intel_crtc *intel_crtc)
Jesse Barnes0e23b992010-09-10 11:10:00 -07002687{
Daniel Vetter88cefb62012-08-12 19:27:14 +02002688 struct drm_device *dev = intel_crtc->base.dev;
Jesse Barnes0e23b992010-09-10 11:10:00 -07002689 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes0e23b992010-09-10 11:10:00 -07002690 int pipe = intel_crtc->pipe;
Chris Wilson5eddb702010-09-11 13:48:45 +01002691 u32 reg, temp;
Jesse Barnes0e23b992010-09-10 11:10:00 -07002692
Jesse Barnesc64e3112010-09-10 11:27:03 -07002693 /* Write the TU size bits so error detection works */
Chris Wilson5eddb702010-09-11 13:48:45 +01002694 I915_WRITE(FDI_RX_TUSIZE1(pipe),
2695 I915_READ(PIPE_DATA_M1(pipe)) & TU_SIZE_MASK);
Jesse Barnesc64e3112010-09-10 11:27:03 -07002696
Jesse Barnes0e23b992010-09-10 11:10:00 -07002697 /* enable PCH FDI RX PLL, wait warmup plus DMI latency */
Chris Wilson5eddb702010-09-11 13:48:45 +01002698 reg = FDI_RX_CTL(pipe);
2699 temp = I915_READ(reg);
2700 temp &= ~((0x7 << 19) | (0x7 << 16));
Jesse Barnes0e23b992010-09-10 11:10:00 -07002701 temp |= (intel_crtc->fdi_lanes - 1) << 19;
Chris Wilson5eddb702010-09-11 13:48:45 +01002702 temp |= (I915_READ(PIPECONF(pipe)) & PIPE_BPC_MASK) << 11;
2703 I915_WRITE(reg, temp | FDI_RX_PLL_ENABLE);
2704
2705 POSTING_READ(reg);
Jesse Barnes0e23b992010-09-10 11:10:00 -07002706 udelay(200);
2707
2708 /* Switch from Rawclk to PCDclk */
Chris Wilson5eddb702010-09-11 13:48:45 +01002709 temp = I915_READ(reg);
2710 I915_WRITE(reg, temp | FDI_PCDCLK);
2711
2712 POSTING_READ(reg);
Jesse Barnes0e23b992010-09-10 11:10:00 -07002713 udelay(200);
2714
Eugeni Dodonovbf507ef2012-05-09 15:37:18 -03002715 /* On Haswell, the PLL configuration for ports and pipes is handled
2716 * separately, as part of DDI setup */
2717 if (!IS_HASWELL(dev)) {
2718 /* Enable CPU FDI TX PLL, always on for Ironlake */
2719 reg = FDI_TX_CTL(pipe);
2720 temp = I915_READ(reg);
2721 if ((temp & FDI_TX_PLL_ENABLE) == 0) {
2722 I915_WRITE(reg, temp | FDI_TX_PLL_ENABLE);
Chris Wilson5eddb702010-09-11 13:48:45 +01002723
Eugeni Dodonovbf507ef2012-05-09 15:37:18 -03002724 POSTING_READ(reg);
2725 udelay(100);
2726 }
Jesse Barnes0e23b992010-09-10 11:10:00 -07002727 }
2728}
2729
Daniel Vetter88cefb62012-08-12 19:27:14 +02002730static void ironlake_fdi_pll_disable(struct intel_crtc *intel_crtc)
2731{
2732 struct drm_device *dev = intel_crtc->base.dev;
2733 struct drm_i915_private *dev_priv = dev->dev_private;
2734 int pipe = intel_crtc->pipe;
2735 u32 reg, temp;
2736
2737 /* Switch from PCDclk to Rawclk */
2738 reg = FDI_RX_CTL(pipe);
2739 temp = I915_READ(reg);
2740 I915_WRITE(reg, temp & ~FDI_PCDCLK);
2741
2742 /* Disable CPU FDI TX PLL */
2743 reg = FDI_TX_CTL(pipe);
2744 temp = I915_READ(reg);
2745 I915_WRITE(reg, temp & ~FDI_TX_PLL_ENABLE);
2746
2747 POSTING_READ(reg);
2748 udelay(100);
2749
2750 reg = FDI_RX_CTL(pipe);
2751 temp = I915_READ(reg);
2752 I915_WRITE(reg, temp & ~FDI_RX_PLL_ENABLE);
2753
2754 /* Wait for the clocks to turn off. */
2755 POSTING_READ(reg);
2756 udelay(100);
2757}
2758
Jesse Barnes291427f2011-07-29 12:42:37 -07002759static void cpt_phase_pointer_disable(struct drm_device *dev, int pipe)
2760{
2761 struct drm_i915_private *dev_priv = dev->dev_private;
2762 u32 flags = I915_READ(SOUTH_CHICKEN1);
2763
2764 flags &= ~(FDI_PHASE_SYNC_EN(pipe));
2765 I915_WRITE(SOUTH_CHICKEN1, flags); /* once to disable... */
2766 flags &= ~(FDI_PHASE_SYNC_OVR(pipe));
2767 I915_WRITE(SOUTH_CHICKEN1, flags); /* then again to lock */
2768 POSTING_READ(SOUTH_CHICKEN1);
2769}
Jesse Barnes0fc932b2011-01-04 15:09:37 -08002770static void ironlake_fdi_disable(struct drm_crtc *crtc)
2771{
2772 struct drm_device *dev = crtc->dev;
2773 struct drm_i915_private *dev_priv = dev->dev_private;
2774 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2775 int pipe = intel_crtc->pipe;
2776 u32 reg, temp;
2777
2778 /* disable CPU FDI tx and PCH FDI rx */
2779 reg = FDI_TX_CTL(pipe);
2780 temp = I915_READ(reg);
2781 I915_WRITE(reg, temp & ~FDI_TX_ENABLE);
2782 POSTING_READ(reg);
2783
2784 reg = FDI_RX_CTL(pipe);
2785 temp = I915_READ(reg);
2786 temp &= ~(0x7 << 16);
2787 temp |= (I915_READ(PIPECONF(pipe)) & PIPE_BPC_MASK) << 11;
2788 I915_WRITE(reg, temp & ~FDI_RX_ENABLE);
2789
2790 POSTING_READ(reg);
2791 udelay(100);
2792
2793 /* Ironlake workaround, disable clock pointer after downing FDI */
Jesse Barnes6f06ce12011-01-04 15:09:38 -08002794 if (HAS_PCH_IBX(dev)) {
2795 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR);
Jesse Barnes0fc932b2011-01-04 15:09:37 -08002796 I915_WRITE(FDI_RX_CHICKEN(pipe),
2797 I915_READ(FDI_RX_CHICKEN(pipe) &
Jesse Barnes6f06ce12011-01-04 15:09:38 -08002798 ~FDI_RX_PHASE_SYNC_POINTER_EN));
Jesse Barnes291427f2011-07-29 12:42:37 -07002799 } else if (HAS_PCH_CPT(dev)) {
2800 cpt_phase_pointer_disable(dev, pipe);
Jesse Barnes6f06ce12011-01-04 15:09:38 -08002801 }
Jesse Barnes0fc932b2011-01-04 15:09:37 -08002802
2803 /* still set train pattern 1 */
2804 reg = FDI_TX_CTL(pipe);
2805 temp = I915_READ(reg);
2806 temp &= ~FDI_LINK_TRAIN_NONE;
2807 temp |= FDI_LINK_TRAIN_PATTERN_1;
2808 I915_WRITE(reg, temp);
2809
2810 reg = FDI_RX_CTL(pipe);
2811 temp = I915_READ(reg);
2812 if (HAS_PCH_CPT(dev)) {
2813 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2814 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
2815 } else {
2816 temp &= ~FDI_LINK_TRAIN_NONE;
2817 temp |= FDI_LINK_TRAIN_PATTERN_1;
2818 }
2819 /* BPC in FDI rx is consistent with that in PIPECONF */
2820 temp &= ~(0x07 << 16);
2821 temp |= (I915_READ(PIPECONF(pipe)) & PIPE_BPC_MASK) << 11;
2822 I915_WRITE(reg, temp);
2823
2824 POSTING_READ(reg);
2825 udelay(100);
2826}
2827
Chris Wilson5bb61642012-09-27 21:25:58 +01002828static bool intel_crtc_has_pending_flip(struct drm_crtc *crtc)
2829{
2830 struct drm_device *dev = crtc->dev;
2831 struct drm_i915_private *dev_priv = dev->dev_private;
2832 unsigned long flags;
2833 bool pending;
2834
2835 if (atomic_read(&dev_priv->mm.wedged))
2836 return false;
2837
2838 spin_lock_irqsave(&dev->event_lock, flags);
2839 pending = to_intel_crtc(crtc)->unpin_work != NULL;
2840 spin_unlock_irqrestore(&dev->event_lock, flags);
2841
2842 return pending;
2843}
2844
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01002845static void intel_crtc_wait_for_pending_flips(struct drm_crtc *crtc)
2846{
Chris Wilson0f911282012-04-17 10:05:38 +01002847 struct drm_device *dev = crtc->dev;
Chris Wilson5bb61642012-09-27 21:25:58 +01002848 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01002849
2850 if (crtc->fb == NULL)
2851 return;
2852
Chris Wilson5bb61642012-09-27 21:25:58 +01002853 wait_event(dev_priv->pending_flip_queue,
2854 !intel_crtc_has_pending_flip(crtc));
2855
Chris Wilson0f911282012-04-17 10:05:38 +01002856 mutex_lock(&dev->struct_mutex);
2857 intel_finish_fb(crtc->fb);
2858 mutex_unlock(&dev->struct_mutex);
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01002859}
2860
Paulo Zanonifc316cb2012-10-25 10:37:43 -02002861static bool ironlake_crtc_driving_pch(struct drm_crtc *crtc)
Jesse Barnes040484a2011-01-03 12:14:26 -08002862{
2863 struct drm_device *dev = crtc->dev;
Paulo Zanoni228d3e32012-08-10 10:05:10 -03002864 struct intel_encoder *intel_encoder;
Jesse Barnes040484a2011-01-03 12:14:26 -08002865
2866 /*
2867 * If there's a non-PCH eDP on this crtc, it must be DP_A, and that
2868 * must be driven by its own crtc; no sharing is possible.
2869 */
Paulo Zanoni228d3e32012-08-10 10:05:10 -03002870 for_each_encoder_on_crtc(dev, crtc, intel_encoder) {
Paulo Zanoni228d3e32012-08-10 10:05:10 -03002871 switch (intel_encoder->type) {
Jesse Barnes040484a2011-01-03 12:14:26 -08002872 case INTEL_OUTPUT_EDP:
Paulo Zanoni228d3e32012-08-10 10:05:10 -03002873 if (!intel_encoder_is_pch_edp(&intel_encoder->base))
Jesse Barnes040484a2011-01-03 12:14:26 -08002874 return false;
2875 continue;
2876 }
2877 }
2878
2879 return true;
2880}
2881
Paulo Zanonifc316cb2012-10-25 10:37:43 -02002882static bool haswell_crtc_driving_pch(struct drm_crtc *crtc)
2883{
2884 return intel_pipe_has_type(crtc, INTEL_OUTPUT_ANALOG);
2885}
2886
Eugeni Dodonove615efe2012-05-09 15:37:26 -03002887/* Program iCLKIP clock to the desired frequency */
2888static void lpt_program_iclkip(struct drm_crtc *crtc)
2889{
2890 struct drm_device *dev = crtc->dev;
2891 struct drm_i915_private *dev_priv = dev->dev_private;
2892 u32 divsel, phaseinc, auxdiv, phasedir = 0;
2893 u32 temp;
2894
2895 /* It is necessary to ungate the pixclk gate prior to programming
2896 * the divisors, and gate it back when it is done.
2897 */
2898 I915_WRITE(PIXCLK_GATE, PIXCLK_GATE_GATE);
2899
2900 /* Disable SSCCTL */
2901 intel_sbi_write(dev_priv, SBI_SSCCTL6,
2902 intel_sbi_read(dev_priv, SBI_SSCCTL6) |
2903 SBI_SSCCTL_DISABLE);
2904
2905 /* 20MHz is a corner case which is out of range for the 7-bit divisor */
2906 if (crtc->mode.clock == 20000) {
2907 auxdiv = 1;
2908 divsel = 0x41;
2909 phaseinc = 0x20;
2910 } else {
2911 /* The iCLK virtual clock root frequency is in MHz,
2912 * but the crtc->mode.clock in in KHz. To get the divisors,
2913 * it is necessary to divide one by another, so we
2914 * convert the virtual clock precision to KHz here for higher
2915 * precision.
2916 */
2917 u32 iclk_virtual_root_freq = 172800 * 1000;
2918 u32 iclk_pi_range = 64;
2919 u32 desired_divisor, msb_divisor_value, pi_value;
2920
2921 desired_divisor = (iclk_virtual_root_freq / crtc->mode.clock);
2922 msb_divisor_value = desired_divisor / iclk_pi_range;
2923 pi_value = desired_divisor % iclk_pi_range;
2924
2925 auxdiv = 0;
2926 divsel = msb_divisor_value - 2;
2927 phaseinc = pi_value;
2928 }
2929
2930 /* This should not happen with any sane values */
2931 WARN_ON(SBI_SSCDIVINTPHASE_DIVSEL(divsel) &
2932 ~SBI_SSCDIVINTPHASE_DIVSEL_MASK);
2933 WARN_ON(SBI_SSCDIVINTPHASE_DIR(phasedir) &
2934 ~SBI_SSCDIVINTPHASE_INCVAL_MASK);
2935
2936 DRM_DEBUG_KMS("iCLKIP clock: found settings for %dKHz refresh rate: auxdiv=%x, divsel=%x, phasedir=%x, phaseinc=%x\n",
2937 crtc->mode.clock,
2938 auxdiv,
2939 divsel,
2940 phasedir,
2941 phaseinc);
2942
2943 /* Program SSCDIVINTPHASE6 */
2944 temp = intel_sbi_read(dev_priv, SBI_SSCDIVINTPHASE6);
2945 temp &= ~SBI_SSCDIVINTPHASE_DIVSEL_MASK;
2946 temp |= SBI_SSCDIVINTPHASE_DIVSEL(divsel);
2947 temp &= ~SBI_SSCDIVINTPHASE_INCVAL_MASK;
2948 temp |= SBI_SSCDIVINTPHASE_INCVAL(phaseinc);
2949 temp |= SBI_SSCDIVINTPHASE_DIR(phasedir);
2950 temp |= SBI_SSCDIVINTPHASE_PROPAGATE;
2951
2952 intel_sbi_write(dev_priv,
2953 SBI_SSCDIVINTPHASE6,
2954 temp);
2955
2956 /* Program SSCAUXDIV */
2957 temp = intel_sbi_read(dev_priv, SBI_SSCAUXDIV6);
2958 temp &= ~SBI_SSCAUXDIV_FINALDIV2SEL(1);
2959 temp |= SBI_SSCAUXDIV_FINALDIV2SEL(auxdiv);
2960 intel_sbi_write(dev_priv,
2961 SBI_SSCAUXDIV6,
2962 temp);
2963
2964
2965 /* Enable modulator and associated divider */
2966 temp = intel_sbi_read(dev_priv, SBI_SSCCTL6);
2967 temp &= ~SBI_SSCCTL_DISABLE;
2968 intel_sbi_write(dev_priv,
2969 SBI_SSCCTL6,
2970 temp);
2971
2972 /* Wait for initialization time */
2973 udelay(24);
2974
2975 I915_WRITE(PIXCLK_GATE, PIXCLK_GATE_UNGATE);
2976}
2977
Jesse Barnesf67a5592011-01-05 10:31:48 -08002978/*
2979 * Enable PCH resources required for PCH ports:
2980 * - PCH PLLs
2981 * - FDI training & RX/TX
2982 * - update transcoder timings
2983 * - DP transcoding bits
2984 * - transcoder
2985 */
2986static void ironlake_pch_enable(struct drm_crtc *crtc)
Jesse Barnes79e53942008-11-07 14:24:08 -08002987{
2988 struct drm_device *dev = crtc->dev;
Zhenyu Wang2c072452009-06-05 15:38:42 +08002989 struct drm_i915_private *dev_priv = dev->dev_private;
2990 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2991 int pipe = intel_crtc->pipe;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01002992 u32 reg, temp;
Jesse Barnes6be4a602010-09-10 10:26:01 -07002993
Chris Wilsone7e164d2012-05-11 09:21:25 +01002994 assert_transcoder_disabled(dev_priv, pipe);
2995
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07002996 /* For PCH output, training FDI link */
Jesse Barnes674cf962011-04-28 14:27:04 -07002997 dev_priv->display.fdi_link_train(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07002998
Chris Wilson6f13b7b2012-05-13 09:54:09 +01002999 intel_enable_pch_pll(intel_crtc);
3000
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003001 if (HAS_PCH_LPT(dev)) {
3002 DRM_DEBUG_KMS("LPT detected: programming iCLKIP\n");
3003 lpt_program_iclkip(crtc);
3004 } else if (HAS_PCH_CPT(dev)) {
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003005 u32 sel;
Jesse Barnes4b645f12011-10-12 09:51:31 -07003006
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003007 temp = I915_READ(PCH_DPLL_SEL);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003008 switch (pipe) {
3009 default:
3010 case 0:
3011 temp |= TRANSA_DPLL_ENABLE;
3012 sel = TRANSA_DPLLB_SEL;
3013 break;
3014 case 1:
3015 temp |= TRANSB_DPLL_ENABLE;
3016 sel = TRANSB_DPLLB_SEL;
3017 break;
3018 case 2:
3019 temp |= TRANSC_DPLL_ENABLE;
3020 sel = TRANSC_DPLLB_SEL;
3021 break;
Jesse Barnesd64311a2011-10-12 15:01:33 -07003022 }
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003023 if (intel_crtc->pch_pll->pll_reg == _PCH_DPLL_B)
3024 temp |= sel;
3025 else
3026 temp &= ~sel;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003027 I915_WRITE(PCH_DPLL_SEL, temp);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003028 }
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003029
Jesse Barnesd9b6cb52011-01-04 15:09:35 -08003030 /* set transcoder timing, panel must allow it */
3031 assert_panel_unlocked(dev_priv, pipe);
Chris Wilson5eddb702010-09-11 13:48:45 +01003032 I915_WRITE(TRANS_HTOTAL(pipe), I915_READ(HTOTAL(pipe)));
3033 I915_WRITE(TRANS_HBLANK(pipe), I915_READ(HBLANK(pipe)));
3034 I915_WRITE(TRANS_HSYNC(pipe), I915_READ(HSYNC(pipe)));
3035
3036 I915_WRITE(TRANS_VTOTAL(pipe), I915_READ(VTOTAL(pipe)));
3037 I915_WRITE(TRANS_VBLANK(pipe), I915_READ(VBLANK(pipe)));
3038 I915_WRITE(TRANS_VSYNC(pipe), I915_READ(VSYNC(pipe)));
Daniel Vetter0529a0d2012-01-28 14:49:24 +01003039 I915_WRITE(TRANS_VSYNCSHIFT(pipe), I915_READ(VSYNCSHIFT(pipe)));
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003040
Eugeni Dodonovf57e1e32012-05-09 15:37:14 -03003041 if (!IS_HASWELL(dev))
3042 intel_fdi_normal_train(crtc);
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08003043
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003044 /* For PCH DP, enable TRANS_DP_CTL */
3045 if (HAS_PCH_CPT(dev) &&
Keith Packard417e8222011-11-01 19:54:11 -07003046 (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT) ||
3047 intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP))) {
Jesse Barnes9325c9f2011-06-24 12:19:21 -07003048 u32 bpc = (I915_READ(PIPECONF(pipe)) & PIPE_BPC_MASK) >> 5;
Chris Wilson5eddb702010-09-11 13:48:45 +01003049 reg = TRANS_DP_CTL(pipe);
3050 temp = I915_READ(reg);
3051 temp &= ~(TRANS_DP_PORT_SEL_MASK |
Eric Anholt220cad32010-11-18 09:32:58 +08003052 TRANS_DP_SYNC_MASK |
3053 TRANS_DP_BPC_MASK);
Chris Wilson5eddb702010-09-11 13:48:45 +01003054 temp |= (TRANS_DP_OUTPUT_ENABLE |
3055 TRANS_DP_ENH_FRAMING);
Jesse Barnes9325c9f2011-06-24 12:19:21 -07003056 temp |= bpc << 9; /* same format but at 11:9 */
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003057
3058 if (crtc->mode.flags & DRM_MODE_FLAG_PHSYNC)
Chris Wilson5eddb702010-09-11 13:48:45 +01003059 temp |= TRANS_DP_HSYNC_ACTIVE_HIGH;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003060 if (crtc->mode.flags & DRM_MODE_FLAG_PVSYNC)
Chris Wilson5eddb702010-09-11 13:48:45 +01003061 temp |= TRANS_DP_VSYNC_ACTIVE_HIGH;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003062
3063 switch (intel_trans_dp_port_sel(crtc)) {
3064 case PCH_DP_B:
Chris Wilson5eddb702010-09-11 13:48:45 +01003065 temp |= TRANS_DP_PORT_SEL_B;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003066 break;
3067 case PCH_DP_C:
Chris Wilson5eddb702010-09-11 13:48:45 +01003068 temp |= TRANS_DP_PORT_SEL_C;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003069 break;
3070 case PCH_DP_D:
Chris Wilson5eddb702010-09-11 13:48:45 +01003071 temp |= TRANS_DP_PORT_SEL_D;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003072 break;
3073 default:
3074 DRM_DEBUG_KMS("Wrong PCH DP port return. Guess port B\n");
Chris Wilson5eddb702010-09-11 13:48:45 +01003075 temp |= TRANS_DP_PORT_SEL_B;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003076 break;
3077 }
3078
Chris Wilson5eddb702010-09-11 13:48:45 +01003079 I915_WRITE(reg, temp);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003080 }
3081
Jesse Barnes040484a2011-01-03 12:14:26 -08003082 intel_enable_transcoder(dev_priv, pipe);
Jesse Barnesf67a5592011-01-05 10:31:48 -08003083}
3084
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003085static void intel_put_pch_pll(struct intel_crtc *intel_crtc)
3086{
3087 struct intel_pch_pll *pll = intel_crtc->pch_pll;
3088
3089 if (pll == NULL)
3090 return;
3091
3092 if (pll->refcount == 0) {
3093 WARN(1, "bad PCH PLL refcount\n");
3094 return;
3095 }
3096
3097 --pll->refcount;
3098 intel_crtc->pch_pll = NULL;
3099}
3100
3101static struct intel_pch_pll *intel_get_pch_pll(struct intel_crtc *intel_crtc, u32 dpll, u32 fp)
3102{
3103 struct drm_i915_private *dev_priv = intel_crtc->base.dev->dev_private;
3104 struct intel_pch_pll *pll;
3105 int i;
3106
3107 pll = intel_crtc->pch_pll;
3108 if (pll) {
3109 DRM_DEBUG_KMS("CRTC:%d reusing existing PCH PLL %x\n",
3110 intel_crtc->base.base.id, pll->pll_reg);
3111 goto prepare;
3112 }
3113
Daniel Vetter98b6bd92012-05-20 20:00:25 +02003114 if (HAS_PCH_IBX(dev_priv->dev)) {
3115 /* Ironlake PCH has a fixed PLL->PCH pipe mapping. */
3116 i = intel_crtc->pipe;
3117 pll = &dev_priv->pch_plls[i];
3118
3119 DRM_DEBUG_KMS("CRTC:%d using pre-allocated PCH PLL %x\n",
3120 intel_crtc->base.base.id, pll->pll_reg);
3121
3122 goto found;
3123 }
3124
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003125 for (i = 0; i < dev_priv->num_pch_pll; i++) {
3126 pll = &dev_priv->pch_plls[i];
3127
3128 /* Only want to check enabled timings first */
3129 if (pll->refcount == 0)
3130 continue;
3131
3132 if (dpll == (I915_READ(pll->pll_reg) & 0x7fffffff) &&
3133 fp == I915_READ(pll->fp0_reg)) {
3134 DRM_DEBUG_KMS("CRTC:%d sharing existing PCH PLL %x (refcount %d, ative %d)\n",
3135 intel_crtc->base.base.id,
3136 pll->pll_reg, pll->refcount, pll->active);
3137
3138 goto found;
3139 }
3140 }
3141
3142 /* Ok no matching timings, maybe there's a free one? */
3143 for (i = 0; i < dev_priv->num_pch_pll; i++) {
3144 pll = &dev_priv->pch_plls[i];
3145 if (pll->refcount == 0) {
3146 DRM_DEBUG_KMS("CRTC:%d allocated PCH PLL %x\n",
3147 intel_crtc->base.base.id, pll->pll_reg);
3148 goto found;
3149 }
3150 }
3151
3152 return NULL;
3153
3154found:
3155 intel_crtc->pch_pll = pll;
3156 pll->refcount++;
3157 DRM_DEBUG_DRIVER("using pll %d for pipe %d\n", i, intel_crtc->pipe);
3158prepare: /* separate function? */
3159 DRM_DEBUG_DRIVER("switching PLL %x off\n", pll->pll_reg);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003160
Chris Wilsone04c7352012-05-02 20:43:56 +01003161 /* Wait for the clocks to stabilize before rewriting the regs */
3162 I915_WRITE(pll->pll_reg, dpll & ~DPLL_VCO_ENABLE);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003163 POSTING_READ(pll->pll_reg);
3164 udelay(150);
Chris Wilsone04c7352012-05-02 20:43:56 +01003165
3166 I915_WRITE(pll->fp0_reg, fp);
3167 I915_WRITE(pll->pll_reg, dpll & ~DPLL_VCO_ENABLE);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003168 pll->on = false;
3169 return pll;
3170}
3171
Jesse Barnesd4270e52011-10-11 10:43:02 -07003172void intel_cpt_verify_modeset(struct drm_device *dev, int pipe)
3173{
3174 struct drm_i915_private *dev_priv = dev->dev_private;
3175 int dslreg = PIPEDSL(pipe), tc2reg = TRANS_CHICKEN2(pipe);
3176 u32 temp;
3177
3178 temp = I915_READ(dslreg);
3179 udelay(500);
3180 if (wait_for(I915_READ(dslreg) != temp, 5)) {
3181 /* Without this, mode sets may fail silently on FDI */
3182 I915_WRITE(tc2reg, TRANS_AUTOTRAIN_GEN_STALL_DIS);
3183 udelay(250);
3184 I915_WRITE(tc2reg, 0);
3185 if (wait_for(I915_READ(dslreg) != temp, 5))
3186 DRM_ERROR("mode set failed: pipe %d stuck\n", pipe);
3187 }
3188}
3189
Jesse Barnesf67a5592011-01-05 10:31:48 -08003190static void ironlake_crtc_enable(struct drm_crtc *crtc)
3191{
3192 struct drm_device *dev = crtc->dev;
3193 struct drm_i915_private *dev_priv = dev->dev_private;
3194 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02003195 struct intel_encoder *encoder;
Jesse Barnesf67a5592011-01-05 10:31:48 -08003196 int pipe = intel_crtc->pipe;
3197 int plane = intel_crtc->plane;
3198 u32 temp;
3199 bool is_pch_port;
3200
Daniel Vetter08a48462012-07-02 11:43:47 +02003201 WARN_ON(!crtc->enabled);
3202
Jesse Barnesf67a5592011-01-05 10:31:48 -08003203 if (intel_crtc->active)
3204 return;
3205
3206 intel_crtc->active = true;
3207 intel_update_watermarks(dev);
3208
3209 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
3210 temp = I915_READ(PCH_LVDS);
3211 if ((temp & LVDS_PORT_EN) == 0)
3212 I915_WRITE(PCH_LVDS, temp | LVDS_PORT_EN);
3213 }
3214
Paulo Zanonifc316cb2012-10-25 10:37:43 -02003215 is_pch_port = ironlake_crtc_driving_pch(crtc);
Jesse Barnesf67a5592011-01-05 10:31:48 -08003216
Daniel Vetter46b6f812012-09-06 22:08:33 +02003217 if (is_pch_port) {
Daniel Vetter88cefb62012-08-12 19:27:14 +02003218 ironlake_fdi_pll_enable(intel_crtc);
Daniel Vetter46b6f812012-09-06 22:08:33 +02003219 } else {
3220 assert_fdi_tx_disabled(dev_priv, pipe);
3221 assert_fdi_rx_disabled(dev_priv, pipe);
3222 }
Jesse Barnesf67a5592011-01-05 10:31:48 -08003223
Daniel Vetterbf49ec82012-09-06 22:15:40 +02003224 for_each_encoder_on_crtc(dev, crtc, encoder)
3225 if (encoder->pre_enable)
3226 encoder->pre_enable(encoder);
3227
Jesse Barnesf67a5592011-01-05 10:31:48 -08003228 /* Enable panel fitting for LVDS */
3229 if (dev_priv->pch_pf_size &&
3230 (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) || HAS_eDP)) {
3231 /* Force use of hard-coded filter coefficients
3232 * as some pre-programmed values are broken,
3233 * e.g. x201.
3234 */
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08003235 I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3);
3236 I915_WRITE(PF_WIN_POS(pipe), dev_priv->pch_pf_pos);
3237 I915_WRITE(PF_WIN_SZ(pipe), dev_priv->pch_pf_size);
Jesse Barnesf67a5592011-01-05 10:31:48 -08003238 }
3239
Jesse Barnes9c54c0d2011-06-15 23:32:33 +02003240 /*
3241 * On ILK+ LUT must be loaded before the pipe is running but with
3242 * clocks enabled
3243 */
3244 intel_crtc_load_lut(crtc);
3245
Jesse Barnesf67a5592011-01-05 10:31:48 -08003246 intel_enable_pipe(dev_priv, pipe, is_pch_port);
3247 intel_enable_plane(dev_priv, plane, pipe);
3248
3249 if (is_pch_port)
3250 ironlake_pch_enable(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003251
Ben Widawskyd1ebd8162011-04-25 20:11:50 +01003252 mutex_lock(&dev->struct_mutex);
Chris Wilsonbed4a672010-09-11 10:47:47 +01003253 intel_update_fbc(dev);
Ben Widawskyd1ebd8162011-04-25 20:11:50 +01003254 mutex_unlock(&dev->struct_mutex);
3255
Chris Wilson6b383a72010-09-13 13:54:26 +01003256 intel_crtc_update_cursor(crtc, true);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02003257
Daniel Vetterfa5c73b2012-07-01 23:24:36 +02003258 for_each_encoder_on_crtc(dev, crtc, encoder)
3259 encoder->enable(encoder);
Daniel Vetter61b77dd2012-07-02 00:16:19 +02003260
3261 if (HAS_PCH_CPT(dev))
3262 intel_cpt_verify_modeset(dev, intel_crtc->pipe);
Daniel Vetter6ce94102012-10-04 19:20:03 +02003263
3264 /*
3265 * There seems to be a race in PCH platform hw (at least on some
3266 * outputs) where an enabled pipe still completes any pageflip right
3267 * away (as if the pipe is off) instead of waiting for vblank. As soon
3268 * as the first vblank happend, everything works as expected. Hence just
3269 * wait for one vblank before returning to avoid strange things
3270 * happening.
3271 */
3272 intel_wait_for_vblank(dev, intel_crtc->pipe);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003273}
3274
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003275static void haswell_crtc_enable(struct drm_crtc *crtc)
3276{
3277 struct drm_device *dev = crtc->dev;
3278 struct drm_i915_private *dev_priv = dev->dev_private;
3279 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3280 struct intel_encoder *encoder;
3281 int pipe = intel_crtc->pipe;
3282 int plane = intel_crtc->plane;
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003283 bool is_pch_port;
3284
3285 WARN_ON(!crtc->enabled);
3286
3287 if (intel_crtc->active)
3288 return;
3289
3290 intel_crtc->active = true;
3291 intel_update_watermarks(dev);
3292
Paulo Zanonifc316cb2012-10-25 10:37:43 -02003293 is_pch_port = haswell_crtc_driving_pch(crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003294
Paulo Zanoni83616632012-10-23 18:29:54 -02003295 if (is_pch_port)
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003296 ironlake_fdi_pll_enable(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003297
3298 for_each_encoder_on_crtc(dev, crtc, encoder)
3299 if (encoder->pre_enable)
3300 encoder->pre_enable(encoder);
3301
Paulo Zanoni1f544382012-10-24 11:32:00 -02003302 intel_ddi_enable_pipe_clock(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003303
Paulo Zanoni1f544382012-10-24 11:32:00 -02003304 /* Enable panel fitting for eDP */
3305 if (dev_priv->pch_pf_size && HAS_eDP) {
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003306 /* Force use of hard-coded filter coefficients
3307 * as some pre-programmed values are broken,
3308 * e.g. x201.
3309 */
3310 I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3);
3311 I915_WRITE(PF_WIN_POS(pipe), dev_priv->pch_pf_pos);
3312 I915_WRITE(PF_WIN_SZ(pipe), dev_priv->pch_pf_size);
3313 }
3314
3315 /*
3316 * On ILK+ LUT must be loaded before the pipe is running but with
3317 * clocks enabled
3318 */
3319 intel_crtc_load_lut(crtc);
3320
Paulo Zanoni1f544382012-10-24 11:32:00 -02003321 intel_ddi_set_pipe_settings(crtc);
3322 intel_ddi_enable_pipe_func(crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003323
3324 intel_enable_pipe(dev_priv, pipe, is_pch_port);
3325 intel_enable_plane(dev_priv, plane, pipe);
3326
3327 if (is_pch_port)
3328 ironlake_pch_enable(crtc);
3329
3330 mutex_lock(&dev->struct_mutex);
3331 intel_update_fbc(dev);
3332 mutex_unlock(&dev->struct_mutex);
3333
3334 intel_crtc_update_cursor(crtc, true);
3335
3336 for_each_encoder_on_crtc(dev, crtc, encoder)
3337 encoder->enable(encoder);
3338
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003339 /*
3340 * There seems to be a race in PCH platform hw (at least on some
3341 * outputs) where an enabled pipe still completes any pageflip right
3342 * away (as if the pipe is off) instead of waiting for vblank. As soon
3343 * as the first vblank happend, everything works as expected. Hence just
3344 * wait for one vblank before returning to avoid strange things
3345 * happening.
3346 */
3347 intel_wait_for_vblank(dev, intel_crtc->pipe);
3348}
3349
Jesse Barnes6be4a602010-09-10 10:26:01 -07003350static void ironlake_crtc_disable(struct drm_crtc *crtc)
3351{
3352 struct drm_device *dev = crtc->dev;
3353 struct drm_i915_private *dev_priv = dev->dev_private;
3354 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02003355 struct intel_encoder *encoder;
Jesse Barnes6be4a602010-09-10 10:26:01 -07003356 int pipe = intel_crtc->pipe;
3357 int plane = intel_crtc->plane;
Chris Wilson5eddb702010-09-11 13:48:45 +01003358 u32 reg, temp;
Jesse Barnes6be4a602010-09-10 10:26:01 -07003359
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02003360
Chris Wilsonf7abfe82010-09-13 14:19:16 +01003361 if (!intel_crtc->active)
3362 return;
3363
Daniel Vetterea9d7582012-07-10 10:42:52 +02003364 for_each_encoder_on_crtc(dev, crtc, encoder)
3365 encoder->disable(encoder);
3366
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01003367 intel_crtc_wait_for_pending_flips(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003368 drm_vblank_off(dev, pipe);
Chris Wilson6b383a72010-09-13 13:54:26 +01003369 intel_crtc_update_cursor(crtc, false);
Chris Wilson5eddb702010-09-11 13:48:45 +01003370
Jesse Barnesb24e7172011-01-04 15:09:30 -08003371 intel_disable_plane(dev_priv, plane, pipe);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003372
Chris Wilson973d04f2011-07-08 12:22:37 +01003373 if (dev_priv->cfb_plane == plane)
3374 intel_disable_fbc(dev);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003375
Jesse Barnesb24e7172011-01-04 15:09:30 -08003376 intel_disable_pipe(dev_priv, pipe);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003377
Jesse Barnes6be4a602010-09-10 10:26:01 -07003378 /* Disable PF */
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08003379 I915_WRITE(PF_CTL(pipe), 0);
3380 I915_WRITE(PF_WIN_SZ(pipe), 0);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003381
Daniel Vetterbf49ec82012-09-06 22:15:40 +02003382 for_each_encoder_on_crtc(dev, crtc, encoder)
3383 if (encoder->post_disable)
3384 encoder->post_disable(encoder);
3385
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003386 ironlake_fdi_disable(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003387
Jesse Barnes040484a2011-01-03 12:14:26 -08003388 intel_disable_transcoder(dev_priv, pipe);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003389
Jesse Barnes6be4a602010-09-10 10:26:01 -07003390 if (HAS_PCH_CPT(dev)) {
3391 /* disable TRANS_DP_CTL */
Chris Wilson5eddb702010-09-11 13:48:45 +01003392 reg = TRANS_DP_CTL(pipe);
3393 temp = I915_READ(reg);
3394 temp &= ~(TRANS_DP_OUTPUT_ENABLE | TRANS_DP_PORT_SEL_MASK);
Eric Anholtcb3543c2011-02-02 12:08:07 -08003395 temp |= TRANS_DP_PORT_SEL_NONE;
Chris Wilson5eddb702010-09-11 13:48:45 +01003396 I915_WRITE(reg, temp);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003397
3398 /* disable DPLL_SEL */
3399 temp = I915_READ(PCH_DPLL_SEL);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08003400 switch (pipe) {
3401 case 0:
Jesse Barnesd64311a2011-10-12 15:01:33 -07003402 temp &= ~(TRANSA_DPLL_ENABLE | TRANSA_DPLLB_SEL);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08003403 break;
3404 case 1:
Jesse Barnes6be4a602010-09-10 10:26:01 -07003405 temp &= ~(TRANSB_DPLL_ENABLE | TRANSB_DPLLB_SEL);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08003406 break;
3407 case 2:
Jesse Barnes4b645f12011-10-12 09:51:31 -07003408 /* C shares PLL A or B */
Jesse Barnesd64311a2011-10-12 15:01:33 -07003409 temp &= ~(TRANSC_DPLL_ENABLE | TRANSC_DPLLB_SEL);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08003410 break;
3411 default:
3412 BUG(); /* wtf */
3413 }
Jesse Barnes6be4a602010-09-10 10:26:01 -07003414 I915_WRITE(PCH_DPLL_SEL, temp);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003415 }
3416
3417 /* disable PCH DPLL */
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003418 intel_disable_pch_pll(intel_crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003419
Daniel Vetter88cefb62012-08-12 19:27:14 +02003420 ironlake_fdi_pll_disable(intel_crtc);
Chris Wilson6b383a72010-09-13 13:54:26 +01003421
Chris Wilsonf7abfe82010-09-13 14:19:16 +01003422 intel_crtc->active = false;
Chris Wilson6b383a72010-09-13 13:54:26 +01003423 intel_update_watermarks(dev);
Ben Widawskyd1ebd8162011-04-25 20:11:50 +01003424
3425 mutex_lock(&dev->struct_mutex);
Chris Wilson6b383a72010-09-13 13:54:26 +01003426 intel_update_fbc(dev);
Ben Widawskyd1ebd8162011-04-25 20:11:50 +01003427 mutex_unlock(&dev->struct_mutex);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003428}
3429
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003430static void haswell_crtc_disable(struct drm_crtc *crtc)
3431{
3432 struct drm_device *dev = crtc->dev;
3433 struct drm_i915_private *dev_priv = dev->dev_private;
3434 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3435 struct intel_encoder *encoder;
3436 int pipe = intel_crtc->pipe;
3437 int plane = intel_crtc->plane;
Paulo Zanoni83616632012-10-23 18:29:54 -02003438 bool is_pch_port;
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003439
3440 if (!intel_crtc->active)
3441 return;
3442
Paulo Zanoni83616632012-10-23 18:29:54 -02003443 is_pch_port = haswell_crtc_driving_pch(crtc);
3444
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003445 for_each_encoder_on_crtc(dev, crtc, encoder)
3446 encoder->disable(encoder);
3447
3448 intel_crtc_wait_for_pending_flips(crtc);
3449 drm_vblank_off(dev, pipe);
3450 intel_crtc_update_cursor(crtc, false);
3451
3452 intel_disable_plane(dev_priv, plane, pipe);
3453
3454 if (dev_priv->cfb_plane == plane)
3455 intel_disable_fbc(dev);
3456
3457 intel_disable_pipe(dev_priv, pipe);
3458
Paulo Zanoni1f544382012-10-24 11:32:00 -02003459 intel_ddi_disable_pipe_func(dev_priv, pipe);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003460
3461 /* Disable PF */
3462 I915_WRITE(PF_CTL(pipe), 0);
3463 I915_WRITE(PF_WIN_SZ(pipe), 0);
3464
Paulo Zanoni1f544382012-10-24 11:32:00 -02003465 intel_ddi_disable_pipe_clock(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003466
3467 for_each_encoder_on_crtc(dev, crtc, encoder)
3468 if (encoder->post_disable)
3469 encoder->post_disable(encoder);
3470
Paulo Zanoni83616632012-10-23 18:29:54 -02003471 if (is_pch_port) {
3472 ironlake_fdi_disable(crtc);
3473 intel_disable_transcoder(dev_priv, pipe);
3474 intel_disable_pch_pll(intel_crtc);
3475 ironlake_fdi_pll_disable(intel_crtc);
3476 }
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003477
3478 intel_crtc->active = false;
3479 intel_update_watermarks(dev);
3480
3481 mutex_lock(&dev->struct_mutex);
3482 intel_update_fbc(dev);
3483 mutex_unlock(&dev->struct_mutex);
3484}
3485
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003486static void ironlake_crtc_off(struct drm_crtc *crtc)
3487{
3488 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3489 intel_put_pch_pll(intel_crtc);
3490}
3491
Paulo Zanoni6441ab52012-10-05 12:05:58 -03003492static void haswell_crtc_off(struct drm_crtc *crtc)
3493{
Paulo Zanonia5c961d2012-10-24 15:59:34 -02003494 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3495
3496 /* Stop saying we're using TRANSCODER_EDP because some other CRTC might
3497 * start using it. */
3498 intel_crtc->cpu_transcoder = intel_crtc->pipe;
3499
Paulo Zanoni6441ab52012-10-05 12:05:58 -03003500 intel_ddi_put_crtc_pll(crtc);
3501}
3502
Daniel Vetter02e792f2009-09-15 22:57:34 +02003503static void intel_crtc_dpms_overlay(struct intel_crtc *intel_crtc, bool enable)
3504{
Daniel Vetter02e792f2009-09-15 22:57:34 +02003505 if (!enable && intel_crtc->overlay) {
Chris Wilson23f09ce2010-08-12 13:53:37 +01003506 struct drm_device *dev = intel_crtc->base.dev;
Chris Wilsonce453d82011-02-21 14:43:56 +00003507 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter03f77ea2009-09-15 22:57:37 +02003508
Chris Wilson23f09ce2010-08-12 13:53:37 +01003509 mutex_lock(&dev->struct_mutex);
Chris Wilsonce453d82011-02-21 14:43:56 +00003510 dev_priv->mm.interruptible = false;
3511 (void) intel_overlay_switch_off(intel_crtc->overlay);
3512 dev_priv->mm.interruptible = true;
Chris Wilson23f09ce2010-08-12 13:53:37 +01003513 mutex_unlock(&dev->struct_mutex);
Daniel Vetter02e792f2009-09-15 22:57:34 +02003514 }
Daniel Vetter02e792f2009-09-15 22:57:34 +02003515
Chris Wilson5dcdbcb2010-08-12 13:50:28 +01003516 /* Let userspace switch the overlay on again. In most cases userspace
3517 * has to recompute where to put it anyway.
3518 */
Daniel Vetter02e792f2009-09-15 22:57:34 +02003519}
3520
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003521static void i9xx_crtc_enable(struct drm_crtc *crtc)
Zhenyu Wang2c072452009-06-05 15:38:42 +08003522{
3523 struct drm_device *dev = crtc->dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08003524 struct drm_i915_private *dev_priv = dev->dev_private;
3525 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02003526 struct intel_encoder *encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08003527 int pipe = intel_crtc->pipe;
Jesse Barnes80824002009-09-10 15:28:06 -07003528 int plane = intel_crtc->plane;
Jesse Barnes79e53942008-11-07 14:24:08 -08003529
Daniel Vetter08a48462012-07-02 11:43:47 +02003530 WARN_ON(!crtc->enabled);
3531
Chris Wilsonf7abfe82010-09-13 14:19:16 +01003532 if (intel_crtc->active)
3533 return;
3534
3535 intel_crtc->active = true;
Chris Wilson6b383a72010-09-13 13:54:26 +01003536 intel_update_watermarks(dev);
3537
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08003538 intel_enable_pll(dev_priv, pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08003539 intel_enable_pipe(dev_priv, pipe, false);
Jesse Barnesb24e7172011-01-04 15:09:30 -08003540 intel_enable_plane(dev_priv, plane, pipe);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003541
3542 intel_crtc_load_lut(crtc);
Chris Wilsonbed4a672010-09-11 10:47:47 +01003543 intel_update_fbc(dev);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003544
3545 /* Give the overlay scaler a chance to enable if it's on this pipe */
3546 intel_crtc_dpms_overlay(intel_crtc, true);
Chris Wilson6b383a72010-09-13 13:54:26 +01003547 intel_crtc_update_cursor(crtc, true);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02003548
Daniel Vetterfa5c73b2012-07-01 23:24:36 +02003549 for_each_encoder_on_crtc(dev, crtc, encoder)
3550 encoder->enable(encoder);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003551}
3552
3553static void i9xx_crtc_disable(struct drm_crtc *crtc)
3554{
3555 struct drm_device *dev = crtc->dev;
3556 struct drm_i915_private *dev_priv = dev->dev_private;
3557 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02003558 struct intel_encoder *encoder;
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003559 int pipe = intel_crtc->pipe;
3560 int plane = intel_crtc->plane;
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003561
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02003562
Chris Wilsonf7abfe82010-09-13 14:19:16 +01003563 if (!intel_crtc->active)
3564 return;
3565
Daniel Vetterea9d7582012-07-10 10:42:52 +02003566 for_each_encoder_on_crtc(dev, crtc, encoder)
3567 encoder->disable(encoder);
3568
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003569 /* Give the overlay scaler a chance to disable if it's on this pipe */
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01003570 intel_crtc_wait_for_pending_flips(crtc);
3571 drm_vblank_off(dev, pipe);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003572 intel_crtc_dpms_overlay(intel_crtc, false);
Chris Wilson6b383a72010-09-13 13:54:26 +01003573 intel_crtc_update_cursor(crtc, false);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003574
Chris Wilson973d04f2011-07-08 12:22:37 +01003575 if (dev_priv->cfb_plane == plane)
3576 intel_disable_fbc(dev);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003577
Jesse Barnesb24e7172011-01-04 15:09:30 -08003578 intel_disable_plane(dev_priv, plane, pipe);
Jesse Barnesb24e7172011-01-04 15:09:30 -08003579 intel_disable_pipe(dev_priv, pipe);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08003580 intel_disable_pll(dev_priv, pipe);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003581
Chris Wilsonf7abfe82010-09-13 14:19:16 +01003582 intel_crtc->active = false;
Chris Wilson6b383a72010-09-13 13:54:26 +01003583 intel_update_fbc(dev);
3584 intel_update_watermarks(dev);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003585}
3586
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003587static void i9xx_crtc_off(struct drm_crtc *crtc)
3588{
3589}
3590
Daniel Vetter976f8a22012-07-08 22:34:21 +02003591static void intel_crtc_update_sarea(struct drm_crtc *crtc,
3592 bool enabled)
Zhenyu Wang2c072452009-06-05 15:38:42 +08003593{
3594 struct drm_device *dev = crtc->dev;
3595 struct drm_i915_master_private *master_priv;
3596 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3597 int pipe = intel_crtc->pipe;
Jesse Barnes79e53942008-11-07 14:24:08 -08003598
3599 if (!dev->primary->master)
3600 return;
3601
3602 master_priv = dev->primary->master->driver_priv;
3603 if (!master_priv->sarea_priv)
3604 return;
3605
Jesse Barnes79e53942008-11-07 14:24:08 -08003606 switch (pipe) {
3607 case 0:
3608 master_priv->sarea_priv->pipeA_w = enabled ? crtc->mode.hdisplay : 0;
3609 master_priv->sarea_priv->pipeA_h = enabled ? crtc->mode.vdisplay : 0;
3610 break;
3611 case 1:
3612 master_priv->sarea_priv->pipeB_w = enabled ? crtc->mode.hdisplay : 0;
3613 master_priv->sarea_priv->pipeB_h = enabled ? crtc->mode.vdisplay : 0;
3614 break;
3615 default:
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08003616 DRM_ERROR("Can't update pipe %c in SAREA\n", pipe_name(pipe));
Jesse Barnes79e53942008-11-07 14:24:08 -08003617 break;
3618 }
Jesse Barnes79e53942008-11-07 14:24:08 -08003619}
3620
Daniel Vetter976f8a22012-07-08 22:34:21 +02003621/**
3622 * Sets the power management mode of the pipe and plane.
3623 */
3624void intel_crtc_update_dpms(struct drm_crtc *crtc)
Chris Wilsoncdd59982010-09-08 16:30:16 +01003625{
Chris Wilsoncdd59982010-09-08 16:30:16 +01003626 struct drm_device *dev = crtc->dev;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003627 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter976f8a22012-07-08 22:34:21 +02003628 struct intel_encoder *intel_encoder;
3629 bool enable = false;
Chris Wilsoncdd59982010-09-08 16:30:16 +01003630
Daniel Vetter976f8a22012-07-08 22:34:21 +02003631 for_each_encoder_on_crtc(dev, crtc, intel_encoder)
3632 enable |= intel_encoder->connectors_active;
3633
3634 if (enable)
3635 dev_priv->display.crtc_enable(crtc);
3636 else
3637 dev_priv->display.crtc_disable(crtc);
3638
3639 intel_crtc_update_sarea(crtc, enable);
3640}
3641
3642static void intel_crtc_noop(struct drm_crtc *crtc)
3643{
3644}
3645
3646static void intel_crtc_disable(struct drm_crtc *crtc)
3647{
3648 struct drm_device *dev = crtc->dev;
3649 struct drm_connector *connector;
3650 struct drm_i915_private *dev_priv = dev->dev_private;
3651
3652 /* crtc should still be enabled when we disable it. */
3653 WARN_ON(!crtc->enabled);
3654
3655 dev_priv->display.crtc_disable(crtc);
3656 intel_crtc_update_sarea(crtc, false);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003657 dev_priv->display.off(crtc);
3658
Chris Wilson931872f2012-01-16 23:01:13 +00003659 assert_plane_disabled(dev->dev_private, to_intel_crtc(crtc)->plane);
3660 assert_pipe_disabled(dev->dev_private, to_intel_crtc(crtc)->pipe);
Chris Wilsoncdd59982010-09-08 16:30:16 +01003661
3662 if (crtc->fb) {
3663 mutex_lock(&dev->struct_mutex);
Chris Wilson1690e1e2011-12-14 13:57:08 +01003664 intel_unpin_fb_obj(to_intel_framebuffer(crtc->fb)->obj);
Chris Wilsoncdd59982010-09-08 16:30:16 +01003665 mutex_unlock(&dev->struct_mutex);
Daniel Vetter976f8a22012-07-08 22:34:21 +02003666 crtc->fb = NULL;
3667 }
3668
3669 /* Update computed state. */
3670 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
3671 if (!connector->encoder || !connector->encoder->crtc)
3672 continue;
3673
3674 if (connector->encoder->crtc != crtc)
3675 continue;
3676
3677 connector->dpms = DRM_MODE_DPMS_OFF;
3678 to_intel_encoder(connector->encoder)->connectors_active = false;
Chris Wilsoncdd59982010-09-08 16:30:16 +01003679 }
3680}
3681
Daniel Vettera261b242012-07-26 19:21:47 +02003682void intel_modeset_disable(struct drm_device *dev)
Jesse Barnes79e53942008-11-07 14:24:08 -08003683{
Daniel Vettera261b242012-07-26 19:21:47 +02003684 struct drm_crtc *crtc;
3685
3686 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
3687 if (crtc->enabled)
3688 intel_crtc_disable(crtc);
3689 }
Jesse Barnes79e53942008-11-07 14:24:08 -08003690}
3691
Daniel Vetter1f703852012-07-11 16:51:39 +02003692void intel_encoder_noop(struct drm_encoder *encoder)
Jesse Barnes79e53942008-11-07 14:24:08 -08003693{
Jesse Barnes79e53942008-11-07 14:24:08 -08003694}
3695
Chris Wilsonea5b2132010-08-04 13:50:23 +01003696void intel_encoder_destroy(struct drm_encoder *encoder)
3697{
Chris Wilson4ef69c72010-09-09 15:14:28 +01003698 struct intel_encoder *intel_encoder = to_intel_encoder(encoder);
Chris Wilsonea5b2132010-08-04 13:50:23 +01003699
Chris Wilsonea5b2132010-08-04 13:50:23 +01003700 drm_encoder_cleanup(encoder);
3701 kfree(intel_encoder);
3702}
3703
Daniel Vetter5ab432e2012-06-30 08:59:56 +02003704/* Simple dpms helper for encodres with just one connector, no cloning and only
3705 * one kind of off state. It clamps all !ON modes to fully OFF and changes the
3706 * state of the entire output pipe. */
3707void intel_encoder_dpms(struct intel_encoder *encoder, int mode)
3708{
3709 if (mode == DRM_MODE_DPMS_ON) {
3710 encoder->connectors_active = true;
3711
Daniel Vetterb2cabb02012-07-01 22:42:24 +02003712 intel_crtc_update_dpms(encoder->base.crtc);
Daniel Vetter5ab432e2012-06-30 08:59:56 +02003713 } else {
3714 encoder->connectors_active = false;
3715
Daniel Vetterb2cabb02012-07-01 22:42:24 +02003716 intel_crtc_update_dpms(encoder->base.crtc);
Daniel Vetter5ab432e2012-06-30 08:59:56 +02003717 }
3718}
3719
Daniel Vetter0a91ca22012-07-02 21:54:27 +02003720/* Cross check the actual hw state with our own modeset state tracking (and it's
3721 * internal consistency). */
Daniel Vetterb9805142012-08-31 17:37:33 +02003722static void intel_connector_check_state(struct intel_connector *connector)
Daniel Vetter0a91ca22012-07-02 21:54:27 +02003723{
3724 if (connector->get_hw_state(connector)) {
3725 struct intel_encoder *encoder = connector->encoder;
3726 struct drm_crtc *crtc;
3727 bool encoder_enabled;
3728 enum pipe pipe;
3729
3730 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
3731 connector->base.base.id,
3732 drm_get_connector_name(&connector->base));
3733
3734 WARN(connector->base.dpms == DRM_MODE_DPMS_OFF,
3735 "wrong connector dpms state\n");
3736 WARN(connector->base.encoder != &encoder->base,
3737 "active connector not linked to encoder\n");
3738 WARN(!encoder->connectors_active,
3739 "encoder->connectors_active not set\n");
3740
3741 encoder_enabled = encoder->get_hw_state(encoder, &pipe);
3742 WARN(!encoder_enabled, "encoder not enabled\n");
3743 if (WARN_ON(!encoder->base.crtc))
3744 return;
3745
3746 crtc = encoder->base.crtc;
3747
3748 WARN(!crtc->enabled, "crtc not enabled\n");
3749 WARN(!to_intel_crtc(crtc)->active, "crtc not active\n");
3750 WARN(pipe != to_intel_crtc(crtc)->pipe,
3751 "encoder active on the wrong pipe\n");
3752 }
3753}
3754
Daniel Vetter5ab432e2012-06-30 08:59:56 +02003755/* Even simpler default implementation, if there's really no special case to
3756 * consider. */
3757void intel_connector_dpms(struct drm_connector *connector, int mode)
3758{
3759 struct intel_encoder *encoder = intel_attached_encoder(connector);
3760
3761 /* All the simple cases only support two dpms states. */
3762 if (mode != DRM_MODE_DPMS_ON)
3763 mode = DRM_MODE_DPMS_OFF;
3764
3765 if (mode == connector->dpms)
3766 return;
3767
3768 connector->dpms = mode;
3769
3770 /* Only need to change hw state when actually enabled */
3771 if (encoder->base.crtc)
3772 intel_encoder_dpms(encoder, mode);
3773 else
Daniel Vetter8af6cf82012-07-10 09:50:11 +02003774 WARN_ON(encoder->connectors_active != false);
Daniel Vetter0a91ca22012-07-02 21:54:27 +02003775
Daniel Vetterb9805142012-08-31 17:37:33 +02003776 intel_modeset_check_state(connector->dev);
Daniel Vetter5ab432e2012-06-30 08:59:56 +02003777}
3778
Daniel Vetterf0947c32012-07-02 13:10:34 +02003779/* Simple connector->get_hw_state implementation for encoders that support only
3780 * one connector and no cloning and hence the encoder state determines the state
3781 * of the connector. */
3782bool intel_connector_get_hw_state(struct intel_connector *connector)
3783{
Daniel Vetter24929352012-07-02 20:28:59 +02003784 enum pipe pipe = 0;
Daniel Vetterf0947c32012-07-02 13:10:34 +02003785 struct intel_encoder *encoder = connector->encoder;
3786
3787 return encoder->get_hw_state(encoder, &pipe);
3788}
3789
Jesse Barnes79e53942008-11-07 14:24:08 -08003790static bool intel_crtc_mode_fixup(struct drm_crtc *crtc,
Daniel Vetter35313cd2012-07-20 10:30:45 +02003791 const struct drm_display_mode *mode,
Jesse Barnes79e53942008-11-07 14:24:08 -08003792 struct drm_display_mode *adjusted_mode)
3793{
Zhenyu Wang2c072452009-06-05 15:38:42 +08003794 struct drm_device *dev = crtc->dev;
Chris Wilson89749352010-09-12 18:25:19 +01003795
Eric Anholtbad720f2009-10-22 16:11:14 -07003796 if (HAS_PCH_SPLIT(dev)) {
Zhenyu Wang2c072452009-06-05 15:38:42 +08003797 /* FDI link clock is fixed at 2.7G */
Jesse Barnes2377b742010-07-07 14:06:43 -07003798 if (mode->clock * 3 > IRONLAKE_FDI_FREQ * 4)
3799 return false;
Zhenyu Wang2c072452009-06-05 15:38:42 +08003800 }
Chris Wilson89749352010-09-12 18:25:19 +01003801
Daniel Vetterf9bef082012-04-15 19:53:19 +02003802 /* All interlaced capable intel hw wants timings in frames. Note though
3803 * that intel_lvds_mode_fixup does some funny tricks with the crtc
3804 * timings, so we need to be careful not to clobber these.*/
3805 if (!(adjusted_mode->private_flags & INTEL_MODE_CRTC_TIMINGS_SET))
3806 drm_mode_set_crtcinfo(adjusted_mode, 0);
Chris Wilson89749352010-09-12 18:25:19 +01003807
Chris Wilson44f46b422012-06-21 13:19:59 +03003808 /* WaPruneModeWithIncorrectHsyncOffset: Cantiga+ cannot handle modes
3809 * with a hsync front porch of 0.
3810 */
3811 if ((INTEL_INFO(dev)->gen > 4 || IS_G4X(dev)) &&
3812 adjusted_mode->hsync_start == adjusted_mode->hdisplay)
3813 return false;
3814
Jesse Barnes79e53942008-11-07 14:24:08 -08003815 return true;
3816}
3817
Jesse Barnes25eb05fc2012-03-28 13:39:23 -07003818static int valleyview_get_display_clock_speed(struct drm_device *dev)
3819{
3820 return 400000; /* FIXME */
3821}
3822
Jesse Barnese70236a2009-09-21 10:42:27 -07003823static int i945_get_display_clock_speed(struct drm_device *dev)
Jesse Barnes79e53942008-11-07 14:24:08 -08003824{
Jesse Barnese70236a2009-09-21 10:42:27 -07003825 return 400000;
3826}
Jesse Barnes79e53942008-11-07 14:24:08 -08003827
Jesse Barnese70236a2009-09-21 10:42:27 -07003828static int i915_get_display_clock_speed(struct drm_device *dev)
3829{
3830 return 333000;
3831}
Jesse Barnes79e53942008-11-07 14:24:08 -08003832
Jesse Barnese70236a2009-09-21 10:42:27 -07003833static int i9xx_misc_get_display_clock_speed(struct drm_device *dev)
3834{
3835 return 200000;
3836}
Jesse Barnes79e53942008-11-07 14:24:08 -08003837
Jesse Barnese70236a2009-09-21 10:42:27 -07003838static int i915gm_get_display_clock_speed(struct drm_device *dev)
3839{
3840 u16 gcfgc = 0;
3841
3842 pci_read_config_word(dev->pdev, GCFGC, &gcfgc);
3843
3844 if (gcfgc & GC_LOW_FREQUENCY_ENABLE)
Jesse Barnes79e53942008-11-07 14:24:08 -08003845 return 133000;
Jesse Barnese70236a2009-09-21 10:42:27 -07003846 else {
3847 switch (gcfgc & GC_DISPLAY_CLOCK_MASK) {
3848 case GC_DISPLAY_CLOCK_333_MHZ:
3849 return 333000;
3850 default:
3851 case GC_DISPLAY_CLOCK_190_200_MHZ:
3852 return 190000;
3853 }
3854 }
3855}
Jesse Barnes79e53942008-11-07 14:24:08 -08003856
Jesse Barnese70236a2009-09-21 10:42:27 -07003857static int i865_get_display_clock_speed(struct drm_device *dev)
3858{
3859 return 266000;
3860}
3861
3862static int i855_get_display_clock_speed(struct drm_device *dev)
3863{
3864 u16 hpllcc = 0;
3865 /* Assume that the hardware is in the high speed state. This
3866 * should be the default.
3867 */
3868 switch (hpllcc & GC_CLOCK_CONTROL_MASK) {
3869 case GC_CLOCK_133_200:
3870 case GC_CLOCK_100_200:
3871 return 200000;
3872 case GC_CLOCK_166_250:
3873 return 250000;
3874 case GC_CLOCK_100_133:
3875 return 133000;
3876 }
3877
3878 /* Shouldn't happen */
3879 return 0;
3880}
3881
3882static int i830_get_display_clock_speed(struct drm_device *dev)
3883{
3884 return 133000;
Jesse Barnes79e53942008-11-07 14:24:08 -08003885}
3886
Zhenyu Wang2c072452009-06-05 15:38:42 +08003887struct fdi_m_n {
3888 u32 tu;
3889 u32 gmch_m;
3890 u32 gmch_n;
3891 u32 link_m;
3892 u32 link_n;
3893};
3894
3895static void
3896fdi_reduce_ratio(u32 *num, u32 *den)
3897{
3898 while (*num > 0xffffff || *den > 0xffffff) {
3899 *num >>= 1;
3900 *den >>= 1;
3901 }
3902}
3903
Zhenyu Wang2c072452009-06-05 15:38:42 +08003904static void
Adam Jacksonf2b115e2009-12-03 17:14:42 -05003905ironlake_compute_m_n(int bits_per_pixel, int nlanes, int pixel_clock,
3906 int link_clock, struct fdi_m_n *m_n)
Zhenyu Wang2c072452009-06-05 15:38:42 +08003907{
Zhenyu Wang2c072452009-06-05 15:38:42 +08003908 m_n->tu = 64; /* default size */
3909
Chris Wilson22ed1112010-12-04 01:01:29 +00003910 /* BUG_ON(pixel_clock > INT_MAX / 36); */
3911 m_n->gmch_m = bits_per_pixel * pixel_clock;
3912 m_n->gmch_n = link_clock * nlanes * 8;
Zhenyu Wang2c072452009-06-05 15:38:42 +08003913 fdi_reduce_ratio(&m_n->gmch_m, &m_n->gmch_n);
3914
Chris Wilson22ed1112010-12-04 01:01:29 +00003915 m_n->link_m = pixel_clock;
3916 m_n->link_n = link_clock;
Zhenyu Wang2c072452009-06-05 15:38:42 +08003917 fdi_reduce_ratio(&m_n->link_m, &m_n->link_n);
3918}
3919
Chris Wilsona7615032011-01-12 17:04:08 +00003920static inline bool intel_panel_use_ssc(struct drm_i915_private *dev_priv)
3921{
Keith Packard72bbe582011-09-26 16:09:45 -07003922 if (i915_panel_use_ssc >= 0)
3923 return i915_panel_use_ssc != 0;
3924 return dev_priv->lvds_use_ssc
Keith Packard435793d2011-07-12 14:56:22 -07003925 && !(dev_priv->quirks & QUIRK_LVDS_SSC_DISABLE);
Chris Wilsona7615032011-01-12 17:04:08 +00003926}
3927
Jesse Barnes5a354202011-06-24 12:19:22 -07003928/**
3929 * intel_choose_pipe_bpp_dither - figure out what color depth the pipe should send
3930 * @crtc: CRTC structure
Adam Jackson3b5c78a2011-12-13 15:41:00 -08003931 * @mode: requested mode
Jesse Barnes5a354202011-06-24 12:19:22 -07003932 *
3933 * A pipe may be connected to one or more outputs. Based on the depth of the
3934 * attached framebuffer, choose a good color depth to use on the pipe.
3935 *
3936 * If possible, match the pipe depth to the fb depth. In some cases, this
3937 * isn't ideal, because the connected output supports a lesser or restricted
3938 * set of depths. Resolve that here:
3939 * LVDS typically supports only 6bpc, so clamp down in that case
3940 * HDMI supports only 8bpc or 12bpc, so clamp to 8bpc with dither for 10bpc
3941 * Displays may support a restricted set as well, check EDID and clamp as
3942 * appropriate.
Adam Jackson3b5c78a2011-12-13 15:41:00 -08003943 * DP may want to dither down to 6bpc to fit larger modes
Jesse Barnes5a354202011-06-24 12:19:22 -07003944 *
3945 * RETURNS:
3946 * Dithering requirement (i.e. false if display bpc and pipe bpc match,
3947 * true if they don't match).
3948 */
3949static bool intel_choose_pipe_bpp_dither(struct drm_crtc *crtc,
Daniel Vetter94352cf2012-07-05 22:51:56 +02003950 struct drm_framebuffer *fb,
Adam Jackson3b5c78a2011-12-13 15:41:00 -08003951 unsigned int *pipe_bpp,
3952 struct drm_display_mode *mode)
Jesse Barnes5a354202011-06-24 12:19:22 -07003953{
3954 struct drm_device *dev = crtc->dev;
3955 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes5a354202011-06-24 12:19:22 -07003956 struct drm_connector *connector;
Daniel Vetter6c2b7c12012-07-05 09:50:24 +02003957 struct intel_encoder *intel_encoder;
Jesse Barnes5a354202011-06-24 12:19:22 -07003958 unsigned int display_bpc = UINT_MAX, bpc;
3959
3960 /* Walk the encoders & connectors on this crtc, get min bpc */
Daniel Vetter6c2b7c12012-07-05 09:50:24 +02003961 for_each_encoder_on_crtc(dev, crtc, intel_encoder) {
Jesse Barnes5a354202011-06-24 12:19:22 -07003962
3963 if (intel_encoder->type == INTEL_OUTPUT_LVDS) {
3964 unsigned int lvds_bpc;
3965
3966 if ((I915_READ(PCH_LVDS) & LVDS_A3_POWER_MASK) ==
3967 LVDS_A3_POWER_UP)
3968 lvds_bpc = 8;
3969 else
3970 lvds_bpc = 6;
3971
3972 if (lvds_bpc < display_bpc) {
Adam Jackson82820492011-10-10 16:33:34 -04003973 DRM_DEBUG_KMS("clamping display bpc (was %d) to LVDS (%d)\n", display_bpc, lvds_bpc);
Jesse Barnes5a354202011-06-24 12:19:22 -07003974 display_bpc = lvds_bpc;
3975 }
3976 continue;
3977 }
3978
Jesse Barnes5a354202011-06-24 12:19:22 -07003979 /* Not one of the known troublemakers, check the EDID */
3980 list_for_each_entry(connector, &dev->mode_config.connector_list,
3981 head) {
Daniel Vetter6c2b7c12012-07-05 09:50:24 +02003982 if (connector->encoder != &intel_encoder->base)
Jesse Barnes5a354202011-06-24 12:19:22 -07003983 continue;
3984
Jesse Barnes62ac41a2011-07-28 12:55:14 -07003985 /* Don't use an invalid EDID bpc value */
3986 if (connector->display_info.bpc &&
3987 connector->display_info.bpc < display_bpc) {
Adam Jackson82820492011-10-10 16:33:34 -04003988 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 -07003989 display_bpc = connector->display_info.bpc;
3990 }
3991 }
3992
3993 /*
3994 * HDMI is either 12 or 8, so if the display lets 10bpc sneak
3995 * through, clamp it down. (Note: >12bpc will be caught below.)
3996 */
3997 if (intel_encoder->type == INTEL_OUTPUT_HDMI) {
3998 if (display_bpc > 8 && display_bpc < 12) {
Adam Jackson82820492011-10-10 16:33:34 -04003999 DRM_DEBUG_KMS("forcing bpc to 12 for HDMI\n");
Jesse Barnes5a354202011-06-24 12:19:22 -07004000 display_bpc = 12;
4001 } else {
Adam Jackson82820492011-10-10 16:33:34 -04004002 DRM_DEBUG_KMS("forcing bpc to 8 for HDMI\n");
Jesse Barnes5a354202011-06-24 12:19:22 -07004003 display_bpc = 8;
4004 }
4005 }
4006 }
4007
Adam Jackson3b5c78a2011-12-13 15:41:00 -08004008 if (mode->private_flags & INTEL_MODE_DP_FORCE_6BPC) {
4009 DRM_DEBUG_KMS("Dithering DP to 6bpc\n");
4010 display_bpc = 6;
4011 }
4012
Jesse Barnes5a354202011-06-24 12:19:22 -07004013 /*
4014 * We could just drive the pipe at the highest bpc all the time and
4015 * enable dithering as needed, but that costs bandwidth. So choose
4016 * the minimum value that expresses the full color range of the fb but
4017 * also stays within the max display bpc discovered above.
4018 */
4019
Daniel Vetter94352cf2012-07-05 22:51:56 +02004020 switch (fb->depth) {
Jesse Barnes5a354202011-06-24 12:19:22 -07004021 case 8:
4022 bpc = 8; /* since we go through a colormap */
4023 break;
4024 case 15:
4025 case 16:
4026 bpc = 6; /* min is 18bpp */
4027 break;
4028 case 24:
Keith Packard578393c2011-09-05 11:53:21 -07004029 bpc = 8;
Jesse Barnes5a354202011-06-24 12:19:22 -07004030 break;
4031 case 30:
Keith Packard578393c2011-09-05 11:53:21 -07004032 bpc = 10;
Jesse Barnes5a354202011-06-24 12:19:22 -07004033 break;
4034 case 48:
Keith Packard578393c2011-09-05 11:53:21 -07004035 bpc = 12;
Jesse Barnes5a354202011-06-24 12:19:22 -07004036 break;
4037 default:
4038 DRM_DEBUG("unsupported depth, assuming 24 bits\n");
4039 bpc = min((unsigned int)8, display_bpc);
4040 break;
4041 }
4042
Keith Packard578393c2011-09-05 11:53:21 -07004043 display_bpc = min(display_bpc, bpc);
4044
Adam Jackson82820492011-10-10 16:33:34 -04004045 DRM_DEBUG_KMS("setting pipe bpc to %d (max display bpc %d)\n",
4046 bpc, display_bpc);
Jesse Barnes5a354202011-06-24 12:19:22 -07004047
Keith Packard578393c2011-09-05 11:53:21 -07004048 *pipe_bpp = display_bpc * 3;
Jesse Barnes5a354202011-06-24 12:19:22 -07004049
4050 return display_bpc != bpc;
4051}
4052
Jesse Barnesa0c4da242012-06-15 11:55:13 -07004053static int vlv_get_refclk(struct drm_crtc *crtc)
4054{
4055 struct drm_device *dev = crtc->dev;
4056 struct drm_i915_private *dev_priv = dev->dev_private;
4057 int refclk = 27000; /* for DP & HDMI */
4058
4059 return 100000; /* only one validated so far */
4060
4061 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_ANALOG)) {
4062 refclk = 96000;
4063 } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
4064 if (intel_panel_use_ssc(dev_priv))
4065 refclk = 100000;
4066 else
4067 refclk = 96000;
4068 } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP)) {
4069 refclk = 100000;
4070 }
4071
4072 return refclk;
4073}
4074
Jesse Barnesc65d77d2011-12-15 12:30:36 -08004075static int i9xx_get_refclk(struct drm_crtc *crtc, int num_connectors)
4076{
4077 struct drm_device *dev = crtc->dev;
4078 struct drm_i915_private *dev_priv = dev->dev_private;
4079 int refclk;
4080
Jesse Barnesa0c4da242012-06-15 11:55:13 -07004081 if (IS_VALLEYVIEW(dev)) {
4082 refclk = vlv_get_refclk(crtc);
4083 } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) &&
Jesse Barnesc65d77d2011-12-15 12:30:36 -08004084 intel_panel_use_ssc(dev_priv) && num_connectors < 2) {
4085 refclk = dev_priv->lvds_ssc_freq * 1000;
4086 DRM_DEBUG_KMS("using SSC reference clock of %d MHz\n",
4087 refclk / 1000);
4088 } else if (!IS_GEN2(dev)) {
4089 refclk = 96000;
4090 } else {
4091 refclk = 48000;
4092 }
4093
4094 return refclk;
4095}
4096
4097static void i9xx_adjust_sdvo_tv_clock(struct drm_display_mode *adjusted_mode,
4098 intel_clock_t *clock)
4099{
4100 /* SDVO TV has fixed PLL values depend on its clock range,
4101 this mirrors vbios setting. */
4102 if (adjusted_mode->clock >= 100000
4103 && adjusted_mode->clock < 140500) {
4104 clock->p1 = 2;
4105 clock->p2 = 10;
4106 clock->n = 3;
4107 clock->m1 = 16;
4108 clock->m2 = 8;
4109 } else if (adjusted_mode->clock >= 140500
4110 && adjusted_mode->clock <= 200000) {
4111 clock->p1 = 1;
4112 clock->p2 = 10;
4113 clock->n = 6;
4114 clock->m1 = 12;
4115 clock->m2 = 8;
4116 }
4117}
4118
Jesse Barnesa7516a02011-12-15 12:30:37 -08004119static void i9xx_update_pll_dividers(struct drm_crtc *crtc,
4120 intel_clock_t *clock,
4121 intel_clock_t *reduced_clock)
4122{
4123 struct drm_device *dev = crtc->dev;
4124 struct drm_i915_private *dev_priv = dev->dev_private;
4125 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4126 int pipe = intel_crtc->pipe;
4127 u32 fp, fp2 = 0;
4128
4129 if (IS_PINEVIEW(dev)) {
4130 fp = (1 << clock->n) << 16 | clock->m1 << 8 | clock->m2;
4131 if (reduced_clock)
4132 fp2 = (1 << reduced_clock->n) << 16 |
4133 reduced_clock->m1 << 8 | reduced_clock->m2;
4134 } else {
4135 fp = clock->n << 16 | clock->m1 << 8 | clock->m2;
4136 if (reduced_clock)
4137 fp2 = reduced_clock->n << 16 | reduced_clock->m1 << 8 |
4138 reduced_clock->m2;
4139 }
4140
4141 I915_WRITE(FP0(pipe), fp);
4142
4143 intel_crtc->lowfreq_avail = false;
4144 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) &&
4145 reduced_clock && i915_powersave) {
4146 I915_WRITE(FP1(pipe), fp2);
4147 intel_crtc->lowfreq_avail = true;
4148 } else {
4149 I915_WRITE(FP1(pipe), fp);
4150 }
4151}
4152
Daniel Vetter93e537a2012-03-28 23:11:26 +02004153static void intel_update_lvds(struct drm_crtc *crtc, intel_clock_t *clock,
4154 struct drm_display_mode *adjusted_mode)
4155{
4156 struct drm_device *dev = crtc->dev;
4157 struct drm_i915_private *dev_priv = dev->dev_private;
4158 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4159 int pipe = intel_crtc->pipe;
Chris Wilson284d5df2012-04-14 17:41:59 +01004160 u32 temp;
Daniel Vetter93e537a2012-03-28 23:11:26 +02004161
4162 temp = I915_READ(LVDS);
4163 temp |= LVDS_PORT_EN | LVDS_A0A2_CLKA_POWER_UP;
4164 if (pipe == 1) {
4165 temp |= LVDS_PIPEB_SELECT;
4166 } else {
4167 temp &= ~LVDS_PIPEB_SELECT;
4168 }
4169 /* set the corresponsding LVDS_BORDER bit */
4170 temp |= dev_priv->lvds_border_bits;
4171 /* Set the B0-B3 data pairs corresponding to whether we're going to
4172 * set the DPLLs for dual-channel mode or not.
4173 */
4174 if (clock->p2 == 7)
4175 temp |= LVDS_B0B3_POWER_UP | LVDS_CLKB_POWER_UP;
4176 else
4177 temp &= ~(LVDS_B0B3_POWER_UP | LVDS_CLKB_POWER_UP);
4178
4179 /* It would be nice to set 24 vs 18-bit mode (LVDS_A3_POWER_UP)
4180 * appropriately here, but we need to look more thoroughly into how
4181 * panels behave in the two modes.
4182 */
4183 /* set the dithering flag on LVDS as needed */
4184 if (INTEL_INFO(dev)->gen >= 4) {
4185 if (dev_priv->lvds_dither)
4186 temp |= LVDS_ENABLE_DITHER;
4187 else
4188 temp &= ~LVDS_ENABLE_DITHER;
4189 }
Chris Wilson284d5df2012-04-14 17:41:59 +01004190 temp &= ~(LVDS_HSYNC_POLARITY | LVDS_VSYNC_POLARITY);
Daniel Vetter93e537a2012-03-28 23:11:26 +02004191 if (adjusted_mode->flags & DRM_MODE_FLAG_NHSYNC)
Chris Wilson284d5df2012-04-14 17:41:59 +01004192 temp |= LVDS_HSYNC_POLARITY;
Daniel Vetter93e537a2012-03-28 23:11:26 +02004193 if (adjusted_mode->flags & DRM_MODE_FLAG_NVSYNC)
Chris Wilson284d5df2012-04-14 17:41:59 +01004194 temp |= LVDS_VSYNC_POLARITY;
Daniel Vetter93e537a2012-03-28 23:11:26 +02004195 I915_WRITE(LVDS, temp);
4196}
4197
Jesse Barnesa0c4da242012-06-15 11:55:13 -07004198static void vlv_update_pll(struct drm_crtc *crtc,
4199 struct drm_display_mode *mode,
4200 struct drm_display_mode *adjusted_mode,
4201 intel_clock_t *clock, intel_clock_t *reduced_clock,
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05304202 int num_connectors)
Jesse Barnesa0c4da242012-06-15 11:55:13 -07004203{
4204 struct drm_device *dev = crtc->dev;
4205 struct drm_i915_private *dev_priv = dev->dev_private;
4206 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4207 int pipe = intel_crtc->pipe;
4208 u32 dpll, mdiv, pdiv;
4209 u32 bestn, bestm1, bestm2, bestp1, bestp2;
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05304210 bool is_sdvo;
4211 u32 temp;
Jesse Barnesa0c4da242012-06-15 11:55:13 -07004212
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05304213 is_sdvo = intel_pipe_has_type(crtc, INTEL_OUTPUT_SDVO) ||
4214 intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI);
4215
4216 dpll = DPLL_VGA_MODE_DIS;
4217 dpll |= DPLL_EXT_BUFFER_ENABLE_VLV;
4218 dpll |= DPLL_REFA_CLK_ENABLE_VLV;
4219 dpll |= DPLL_INTEGRATED_CLOCK_VLV;
4220
4221 I915_WRITE(DPLL(pipe), dpll);
4222 POSTING_READ(DPLL(pipe));
Jesse Barnesa0c4da242012-06-15 11:55:13 -07004223
4224 bestn = clock->n;
4225 bestm1 = clock->m1;
4226 bestm2 = clock->m2;
4227 bestp1 = clock->p1;
4228 bestp2 = clock->p2;
4229
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05304230 /*
4231 * In Valleyview PLL and program lane counter registers are exposed
4232 * through DPIO interface
4233 */
Jesse Barnesa0c4da242012-06-15 11:55:13 -07004234 mdiv = ((bestm1 << DPIO_M1DIV_SHIFT) | (bestm2 & DPIO_M2DIV_MASK));
4235 mdiv |= ((bestp1 << DPIO_P1_SHIFT) | (bestp2 << DPIO_P2_SHIFT));
4236 mdiv |= ((bestn << DPIO_N_SHIFT));
4237 mdiv |= (1 << DPIO_POST_DIV_SHIFT);
4238 mdiv |= (1 << DPIO_K_SHIFT);
4239 mdiv |= DPIO_ENABLE_CALIBRATION;
4240 intel_dpio_write(dev_priv, DPIO_DIV(pipe), mdiv);
4241
4242 intel_dpio_write(dev_priv, DPIO_CORE_CLK(pipe), 0x01000000);
4243
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05304244 pdiv = (1 << DPIO_REFSEL_OVERRIDE) | (5 << DPIO_PLL_MODESEL_SHIFT) |
Jesse Barnesa0c4da242012-06-15 11:55:13 -07004245 (3 << DPIO_BIAS_CURRENT_CTL_SHIFT) | (1<<20) |
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05304246 (7 << DPIO_PLL_REFCLK_SEL_SHIFT) | (8 << DPIO_DRIVER_CTL_SHIFT) |
4247 (5 << DPIO_CLK_BIAS_CTL_SHIFT);
Jesse Barnesa0c4da242012-06-15 11:55:13 -07004248 intel_dpio_write(dev_priv, DPIO_REFSFR(pipe), pdiv);
4249
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05304250 intel_dpio_write(dev_priv, DPIO_LFP_COEFF(pipe), 0x005f003b);
Jesse Barnesa0c4da242012-06-15 11:55:13 -07004251
4252 dpll |= DPLL_VCO_ENABLE;
4253 I915_WRITE(DPLL(pipe), dpll);
4254 POSTING_READ(DPLL(pipe));
4255 if (wait_for(((I915_READ(DPLL(pipe)) & DPLL_LOCK_VLV) == DPLL_LOCK_VLV), 1))
4256 DRM_ERROR("DPLL %d failed to lock\n", pipe);
4257
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05304258 intel_dpio_write(dev_priv, DPIO_FASTCLK_DISABLE, 0x620);
Jesse Barnesa0c4da242012-06-15 11:55:13 -07004259
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05304260 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT))
4261 intel_dp_set_m_n(crtc, mode, adjusted_mode);
4262
4263 I915_WRITE(DPLL(pipe), dpll);
4264
4265 /* Wait for the clocks to stabilize. */
4266 POSTING_READ(DPLL(pipe));
4267 udelay(150);
4268
4269 temp = 0;
4270 if (is_sdvo) {
4271 temp = intel_mode_get_pixel_multiplier(adjusted_mode);
Jesse Barnesa0c4da242012-06-15 11:55:13 -07004272 if (temp > 1)
4273 temp = (temp - 1) << DPLL_MD_UDI_MULTIPLIER_SHIFT;
4274 else
4275 temp = 0;
Jesse Barnesa0c4da242012-06-15 11:55:13 -07004276 }
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05304277 I915_WRITE(DPLL_MD(pipe), temp);
4278 POSTING_READ(DPLL_MD(pipe));
Jesse Barnesa0c4da242012-06-15 11:55:13 -07004279
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05304280 /* Now program lane control registers */
4281 if(intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT)
4282 || intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI))
4283 {
4284 temp = 0x1000C4;
4285 if(pipe == 1)
4286 temp |= (1 << 21);
4287 intel_dpio_write(dev_priv, DPIO_DATA_CHANNEL1, temp);
4288 }
4289 if(intel_pipe_has_type(crtc,INTEL_OUTPUT_EDP))
4290 {
4291 temp = 0x1000C4;
4292 if(pipe == 1)
4293 temp |= (1 << 21);
4294 intel_dpio_write(dev_priv, DPIO_DATA_CHANNEL2, temp);
4295 }
Jesse Barnesa0c4da242012-06-15 11:55:13 -07004296}
4297
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004298static void i9xx_update_pll(struct drm_crtc *crtc,
4299 struct drm_display_mode *mode,
4300 struct drm_display_mode *adjusted_mode,
4301 intel_clock_t *clock, intel_clock_t *reduced_clock,
4302 int num_connectors)
4303{
4304 struct drm_device *dev = crtc->dev;
4305 struct drm_i915_private *dev_priv = dev->dev_private;
4306 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4307 int pipe = intel_crtc->pipe;
4308 u32 dpll;
4309 bool is_sdvo;
4310
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05304311 i9xx_update_pll_dividers(crtc, clock, reduced_clock);
4312
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004313 is_sdvo = intel_pipe_has_type(crtc, INTEL_OUTPUT_SDVO) ||
4314 intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI);
4315
4316 dpll = DPLL_VGA_MODE_DIS;
4317
4318 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS))
4319 dpll |= DPLLB_MODE_LVDS;
4320 else
4321 dpll |= DPLLB_MODE_DAC_SERIAL;
4322 if (is_sdvo) {
4323 int pixel_multiplier = intel_mode_get_pixel_multiplier(adjusted_mode);
4324 if (pixel_multiplier > 1) {
4325 if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev))
4326 dpll |= (pixel_multiplier - 1) << SDVO_MULTIPLIER_SHIFT_HIRES;
4327 }
4328 dpll |= DPLL_DVO_HIGH_SPEED;
4329 }
4330 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT))
4331 dpll |= DPLL_DVO_HIGH_SPEED;
4332
4333 /* compute bitmask from p1 value */
4334 if (IS_PINEVIEW(dev))
4335 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW;
4336 else {
4337 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
4338 if (IS_G4X(dev) && reduced_clock)
4339 dpll |= (1 << (reduced_clock->p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
4340 }
4341 switch (clock->p2) {
4342 case 5:
4343 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
4344 break;
4345 case 7:
4346 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
4347 break;
4348 case 10:
4349 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
4350 break;
4351 case 14:
4352 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
4353 break;
4354 }
4355 if (INTEL_INFO(dev)->gen >= 4)
4356 dpll |= (6 << PLL_LOAD_PULSE_PHASE_SHIFT);
4357
4358 if (is_sdvo && intel_pipe_has_type(crtc, INTEL_OUTPUT_TVOUT))
4359 dpll |= PLL_REF_INPUT_TVCLKINBC;
4360 else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_TVOUT))
4361 /* XXX: just matching BIOS for now */
4362 /* dpll |= PLL_REF_INPUT_TVCLKINBC; */
4363 dpll |= 3;
4364 else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) &&
4365 intel_panel_use_ssc(dev_priv) && num_connectors < 2)
4366 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
4367 else
4368 dpll |= PLL_REF_INPUT_DREFCLK;
4369
4370 dpll |= DPLL_VCO_ENABLE;
4371 I915_WRITE(DPLL(pipe), dpll & ~DPLL_VCO_ENABLE);
4372 POSTING_READ(DPLL(pipe));
4373 udelay(150);
4374
4375 /* The LVDS pin pair needs to be on before the DPLLs are enabled.
4376 * This is an exception to the general rule that mode_set doesn't turn
4377 * things on.
4378 */
4379 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS))
4380 intel_update_lvds(crtc, clock, adjusted_mode);
4381
4382 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT))
4383 intel_dp_set_m_n(crtc, mode, adjusted_mode);
4384
4385 I915_WRITE(DPLL(pipe), dpll);
4386
4387 /* Wait for the clocks to stabilize. */
4388 POSTING_READ(DPLL(pipe));
4389 udelay(150);
4390
4391 if (INTEL_INFO(dev)->gen >= 4) {
4392 u32 temp = 0;
4393 if (is_sdvo) {
4394 temp = intel_mode_get_pixel_multiplier(adjusted_mode);
4395 if (temp > 1)
4396 temp = (temp - 1) << DPLL_MD_UDI_MULTIPLIER_SHIFT;
4397 else
4398 temp = 0;
4399 }
4400 I915_WRITE(DPLL_MD(pipe), temp);
4401 } else {
4402 /* The pixel multiplier can only be updated once the
4403 * DPLL is enabled and the clocks are stable.
4404 *
4405 * So write it again.
4406 */
4407 I915_WRITE(DPLL(pipe), dpll);
4408 }
4409}
4410
4411static void i8xx_update_pll(struct drm_crtc *crtc,
4412 struct drm_display_mode *adjusted_mode,
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05304413 intel_clock_t *clock, intel_clock_t *reduced_clock,
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004414 int num_connectors)
4415{
4416 struct drm_device *dev = crtc->dev;
4417 struct drm_i915_private *dev_priv = dev->dev_private;
4418 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4419 int pipe = intel_crtc->pipe;
4420 u32 dpll;
4421
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05304422 i9xx_update_pll_dividers(crtc, clock, reduced_clock);
4423
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004424 dpll = DPLL_VGA_MODE_DIS;
4425
4426 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
4427 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
4428 } else {
4429 if (clock->p1 == 2)
4430 dpll |= PLL_P1_DIVIDE_BY_TWO;
4431 else
4432 dpll |= (clock->p1 - 2) << DPLL_FPA01_P1_POST_DIV_SHIFT;
4433 if (clock->p2 == 4)
4434 dpll |= PLL_P2_DIVIDE_BY_4;
4435 }
4436
4437 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_TVOUT))
4438 /* XXX: just matching BIOS for now */
4439 /* dpll |= PLL_REF_INPUT_TVCLKINBC; */
4440 dpll |= 3;
4441 else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) &&
4442 intel_panel_use_ssc(dev_priv) && num_connectors < 2)
4443 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
4444 else
4445 dpll |= PLL_REF_INPUT_DREFCLK;
4446
4447 dpll |= DPLL_VCO_ENABLE;
4448 I915_WRITE(DPLL(pipe), dpll & ~DPLL_VCO_ENABLE);
4449 POSTING_READ(DPLL(pipe));
4450 udelay(150);
4451
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004452 /* The LVDS pin pair needs to be on before the DPLLs are enabled.
4453 * This is an exception to the general rule that mode_set doesn't turn
4454 * things on.
4455 */
4456 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS))
4457 intel_update_lvds(crtc, clock, adjusted_mode);
4458
Daniel Vetter5b5896e2012-09-11 12:37:55 +02004459 I915_WRITE(DPLL(pipe), dpll);
4460
4461 /* Wait for the clocks to stabilize. */
4462 POSTING_READ(DPLL(pipe));
4463 udelay(150);
4464
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004465 /* The pixel multiplier can only be updated once the
4466 * DPLL is enabled and the clocks are stable.
4467 *
4468 * So write it again.
4469 */
4470 I915_WRITE(DPLL(pipe), dpll);
4471}
4472
Paulo Zanonib0e77b92012-10-01 18:10:53 -03004473static void intel_set_pipe_timings(struct intel_crtc *intel_crtc,
4474 struct drm_display_mode *mode,
4475 struct drm_display_mode *adjusted_mode)
4476{
4477 struct drm_device *dev = intel_crtc->base.dev;
4478 struct drm_i915_private *dev_priv = dev->dev_private;
4479 enum pipe pipe = intel_crtc->pipe;
4480 uint32_t vsyncshift;
4481
4482 if (!IS_GEN2(dev) && adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE) {
4483 /* the chip adds 2 halflines automatically */
4484 adjusted_mode->crtc_vtotal -= 1;
4485 adjusted_mode->crtc_vblank_end -= 1;
4486 vsyncshift = adjusted_mode->crtc_hsync_start
4487 - adjusted_mode->crtc_htotal / 2;
4488 } else {
4489 vsyncshift = 0;
4490 }
4491
4492 if (INTEL_INFO(dev)->gen > 3)
4493 I915_WRITE(VSYNCSHIFT(pipe), vsyncshift);
4494
4495 I915_WRITE(HTOTAL(pipe),
4496 (adjusted_mode->crtc_hdisplay - 1) |
4497 ((adjusted_mode->crtc_htotal - 1) << 16));
4498 I915_WRITE(HBLANK(pipe),
4499 (adjusted_mode->crtc_hblank_start - 1) |
4500 ((adjusted_mode->crtc_hblank_end - 1) << 16));
4501 I915_WRITE(HSYNC(pipe),
4502 (adjusted_mode->crtc_hsync_start - 1) |
4503 ((adjusted_mode->crtc_hsync_end - 1) << 16));
4504
4505 I915_WRITE(VTOTAL(pipe),
4506 (adjusted_mode->crtc_vdisplay - 1) |
4507 ((adjusted_mode->crtc_vtotal - 1) << 16));
4508 I915_WRITE(VBLANK(pipe),
4509 (adjusted_mode->crtc_vblank_start - 1) |
4510 ((adjusted_mode->crtc_vblank_end - 1) << 16));
4511 I915_WRITE(VSYNC(pipe),
4512 (adjusted_mode->crtc_vsync_start - 1) |
4513 ((adjusted_mode->crtc_vsync_end - 1) << 16));
4514
4515 /* pipesrc controls the size that is scaled from, which should
4516 * always be the user's requested size.
4517 */
4518 I915_WRITE(PIPESRC(pipe),
4519 ((mode->hdisplay - 1) << 16) | (mode->vdisplay - 1));
4520}
4521
Eric Anholtf564048e2011-03-30 13:01:02 -07004522static int i9xx_crtc_mode_set(struct drm_crtc *crtc,
4523 struct drm_display_mode *mode,
4524 struct drm_display_mode *adjusted_mode,
4525 int x, int y,
Daniel Vetter94352cf2012-07-05 22:51:56 +02004526 struct drm_framebuffer *fb)
Jesse Barnes79e53942008-11-07 14:24:08 -08004527{
4528 struct drm_device *dev = crtc->dev;
4529 struct drm_i915_private *dev_priv = dev->dev_private;
4530 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4531 int pipe = intel_crtc->pipe;
Jesse Barnes80824002009-09-10 15:28:06 -07004532 int plane = intel_crtc->plane;
Eric Anholtc751ce42010-03-25 11:48:48 -07004533 int refclk, num_connectors = 0;
Jesse Barnes652c3932009-08-17 13:31:43 -07004534 intel_clock_t clock, reduced_clock;
Paulo Zanonib0e77b92012-10-01 18:10:53 -03004535 u32 dspcntr, pipeconf;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004536 bool ok, has_reduced_clock = false, is_sdvo = false;
4537 bool is_lvds = false, is_tv = false, is_dp = false;
Chris Wilson5eddb702010-09-11 13:48:45 +01004538 struct intel_encoder *encoder;
Ma Lingd4906092009-03-18 20:13:27 +08004539 const intel_limit_t *limit;
Chris Wilson5c3b82e2009-02-11 13:25:09 +00004540 int ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08004541
Daniel Vetter6c2b7c12012-07-05 09:50:24 +02004542 for_each_encoder_on_crtc(dev, crtc, encoder) {
Chris Wilson5eddb702010-09-11 13:48:45 +01004543 switch (encoder->type) {
Jesse Barnes79e53942008-11-07 14:24:08 -08004544 case INTEL_OUTPUT_LVDS:
4545 is_lvds = true;
4546 break;
4547 case INTEL_OUTPUT_SDVO:
Eric Anholt7d573822009-01-02 13:33:00 -08004548 case INTEL_OUTPUT_HDMI:
Jesse Barnes79e53942008-11-07 14:24:08 -08004549 is_sdvo = true;
Chris Wilson5eddb702010-09-11 13:48:45 +01004550 if (encoder->needs_tv_clock)
Jesse Barnese2f0ba92009-02-02 15:11:52 -08004551 is_tv = true;
Jesse Barnes79e53942008-11-07 14:24:08 -08004552 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08004553 case INTEL_OUTPUT_TVOUT:
4554 is_tv = true;
4555 break;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004556 case INTEL_OUTPUT_DISPLAYPORT:
4557 is_dp = true;
4558 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08004559 }
Kristian Høgsberg43565a02009-02-13 20:56:52 -05004560
Eric Anholtc751ce42010-03-25 11:48:48 -07004561 num_connectors++;
Jesse Barnes79e53942008-11-07 14:24:08 -08004562 }
4563
Jesse Barnesc65d77d2011-12-15 12:30:36 -08004564 refclk = i9xx_get_refclk(crtc, num_connectors);
Jesse Barnes79e53942008-11-07 14:24:08 -08004565
Ma Lingd4906092009-03-18 20:13:27 +08004566 /*
4567 * Returns a set of divisors for the desired target clock with the given
4568 * refclk, or FALSE. The returned values represent the clock equation:
4569 * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2.
4570 */
Chris Wilson1b894b52010-12-14 20:04:54 +00004571 limit = intel_limit(crtc, refclk);
Sean Paulcec2f352012-01-10 15:09:36 -08004572 ok = limit->find_pll(limit, crtc, adjusted_mode->clock, refclk, NULL,
4573 &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08004574 if (!ok) {
4575 DRM_ERROR("Couldn't find PLL settings for mode!\n");
Eric Anholtf564048e2011-03-30 13:01:02 -07004576 return -EINVAL;
4577 }
4578
4579 /* Ensure that the cursor is valid for the new mode before changing... */
4580 intel_crtc_update_cursor(crtc, true);
4581
4582 if (is_lvds && dev_priv->lvds_downclock_avail) {
Sean Paulcec2f352012-01-10 15:09:36 -08004583 /*
4584 * Ensure we match the reduced clock's P to the target clock.
4585 * If the clocks don't match, we can't switch the display clock
4586 * by using the FP0/FP1. In such case we will disable the LVDS
4587 * downclock feature.
4588 */
Eric Anholtf564048e2011-03-30 13:01:02 -07004589 has_reduced_clock = limit->find_pll(limit, crtc,
4590 dev_priv->lvds_downclock,
4591 refclk,
Sean Paulcec2f352012-01-10 15:09:36 -08004592 &clock,
Eric Anholtf564048e2011-03-30 13:01:02 -07004593 &reduced_clock);
Eric Anholtf564048e2011-03-30 13:01:02 -07004594 }
4595
Jesse Barnesc65d77d2011-12-15 12:30:36 -08004596 if (is_sdvo && is_tv)
4597 i9xx_adjust_sdvo_tv_clock(adjusted_mode, &clock);
Eric Anholtf564048e2011-03-30 13:01:02 -07004598
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004599 if (IS_GEN2(dev))
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05304600 i8xx_update_pll(crtc, adjusted_mode, &clock,
4601 has_reduced_clock ? &reduced_clock : NULL,
4602 num_connectors);
Jesse Barnesa0c4da242012-06-15 11:55:13 -07004603 else if (IS_VALLEYVIEW(dev))
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05304604 vlv_update_pll(crtc, mode, adjusted_mode, &clock,
4605 has_reduced_clock ? &reduced_clock : NULL,
4606 num_connectors);
Eric Anholtf564048e2011-03-30 13:01:02 -07004607 else
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004608 i9xx_update_pll(crtc, mode, adjusted_mode, &clock,
4609 has_reduced_clock ? &reduced_clock : NULL,
4610 num_connectors);
Eric Anholtf564048e2011-03-30 13:01:02 -07004611
4612 /* setup pipeconf */
4613 pipeconf = I915_READ(PIPECONF(pipe));
4614
4615 /* Set up the display plane register */
4616 dspcntr = DISPPLANE_GAMMA_ENABLE;
4617
Eric Anholt929c77f2011-03-30 13:01:04 -07004618 if (pipe == 0)
4619 dspcntr &= ~DISPPLANE_SEL_PIPE_MASK;
4620 else
4621 dspcntr |= DISPPLANE_SEL_PIPE_B;
Eric Anholtf564048e2011-03-30 13:01:02 -07004622
4623 if (pipe == 0 && INTEL_INFO(dev)->gen < 4) {
4624 /* Enable pixel doubling when the dot clock is > 90% of the (display)
4625 * core speed.
4626 *
4627 * XXX: No double-wide on 915GM pipe B. Is that the only reason for the
4628 * pipe == 0 check?
4629 */
4630 if (mode->clock >
4631 dev_priv->display.get_display_clock_speed(dev) * 9 / 10)
4632 pipeconf |= PIPECONF_DOUBLE_WIDE;
4633 else
4634 pipeconf &= ~PIPECONF_DOUBLE_WIDE;
4635 }
4636
Adam Jackson3b5c78a2011-12-13 15:41:00 -08004637 /* default to 8bpc */
4638 pipeconf &= ~(PIPECONF_BPP_MASK | PIPECONF_DITHER_EN);
4639 if (is_dp) {
Jani Nikula0c96c652012-09-26 18:43:10 +03004640 if (adjusted_mode->private_flags & INTEL_MODE_DP_FORCE_6BPC) {
Adam Jackson3b5c78a2011-12-13 15:41:00 -08004641 pipeconf |= PIPECONF_BPP_6 |
4642 PIPECONF_DITHER_EN |
4643 PIPECONF_DITHER_TYPE_SP;
4644 }
4645 }
4646
Gajanan Bhat19c03922012-09-27 19:13:07 +05304647 if (IS_VALLEYVIEW(dev) && intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP)) {
4648 if (adjusted_mode->private_flags & INTEL_MODE_DP_FORCE_6BPC) {
4649 pipeconf |= PIPECONF_BPP_6 |
4650 PIPECONF_ENABLE |
4651 I965_PIPECONF_ACTIVE;
4652 }
4653 }
4654
Eric Anholtf564048e2011-03-30 13:01:02 -07004655 DRM_DEBUG_KMS("Mode for pipe %c:\n", pipe == 0 ? 'A' : 'B');
4656 drm_mode_debug_printmodeline(mode);
4657
Jesse Barnesa7516a02011-12-15 12:30:37 -08004658 if (HAS_PIPE_CXSR(dev)) {
4659 if (intel_crtc->lowfreq_avail) {
Eric Anholtf564048e2011-03-30 13:01:02 -07004660 DRM_DEBUG_KMS("enabling CxSR downclocking\n");
4661 pipeconf |= PIPECONF_CXSR_DOWNCLOCK;
Jesse Barnesa7516a02011-12-15 12:30:37 -08004662 } else {
Eric Anholtf564048e2011-03-30 13:01:02 -07004663 DRM_DEBUG_KMS("disabling CxSR downclocking\n");
4664 pipeconf &= ~PIPECONF_CXSR_DOWNCLOCK;
4665 }
4666 }
4667
Keith Packard617cf882012-02-08 13:53:38 -08004668 pipeconf &= ~PIPECONF_INTERLACE_MASK;
Daniel Vetterdbb02572012-01-28 14:49:23 +01004669 if (!IS_GEN2(dev) &&
Paulo Zanonib0e77b92012-10-01 18:10:53 -03004670 adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE)
Eric Anholtf564048e2011-03-30 13:01:02 -07004671 pipeconf |= PIPECONF_INTERLACE_W_FIELD_INDICATION;
Paulo Zanonib0e77b92012-10-01 18:10:53 -03004672 else
Keith Packard617cf882012-02-08 13:53:38 -08004673 pipeconf |= PIPECONF_PROGRESSIVE;
Daniel Vetter0529a0d2012-01-28 14:49:24 +01004674
Paulo Zanonib0e77b92012-10-01 18:10:53 -03004675 intel_set_pipe_timings(intel_crtc, mode, adjusted_mode);
Eric Anholtf564048e2011-03-30 13:01:02 -07004676
4677 /* pipesrc and dspsize control the size that is scaled from,
4678 * which should always be the user's requested size.
4679 */
Eric Anholt929c77f2011-03-30 13:01:04 -07004680 I915_WRITE(DSPSIZE(plane),
4681 ((mode->vdisplay - 1) << 16) |
4682 (mode->hdisplay - 1));
4683 I915_WRITE(DSPPOS(plane), 0);
Eric Anholtf564048e2011-03-30 13:01:02 -07004684
Eric Anholtf564048e2011-03-30 13:01:02 -07004685 I915_WRITE(PIPECONF(pipe), pipeconf);
4686 POSTING_READ(PIPECONF(pipe));
Eric Anholt929c77f2011-03-30 13:01:04 -07004687 intel_enable_pipe(dev_priv, pipe, false);
Eric Anholtf564048e2011-03-30 13:01:02 -07004688
4689 intel_wait_for_vblank(dev, pipe);
4690
Eric Anholtf564048e2011-03-30 13:01:02 -07004691 I915_WRITE(DSPCNTR(plane), dspcntr);
4692 POSTING_READ(DSPCNTR(plane));
4693
Daniel Vetter94352cf2012-07-05 22:51:56 +02004694 ret = intel_pipe_set_base(crtc, x, y, fb);
Eric Anholtf564048e2011-03-30 13:01:02 -07004695
4696 intel_update_watermarks(dev);
4697
Eric Anholtf564048e2011-03-30 13:01:02 -07004698 return ret;
4699}
4700
Keith Packard9fb526d2011-09-26 22:24:57 -07004701/*
4702 * Initialize reference clocks when the driver loads
4703 */
4704void ironlake_init_pch_refclk(struct drm_device *dev)
Jesse Barnes13d83a62011-08-03 12:59:20 -07004705{
4706 struct drm_i915_private *dev_priv = dev->dev_private;
4707 struct drm_mode_config *mode_config = &dev->mode_config;
Jesse Barnes13d83a62011-08-03 12:59:20 -07004708 struct intel_encoder *encoder;
Jesse Barnes13d83a62011-08-03 12:59:20 -07004709 u32 temp;
4710 bool has_lvds = false;
Keith Packard199e5d72011-09-22 12:01:57 -07004711 bool has_cpu_edp = false;
4712 bool has_pch_edp = false;
4713 bool has_panel = false;
Keith Packard99eb6a02011-09-26 14:29:12 -07004714 bool has_ck505 = false;
4715 bool can_ssc = false;
Jesse Barnes13d83a62011-08-03 12:59:20 -07004716
4717 /* We need to take the global config into account */
Keith Packard199e5d72011-09-22 12:01:57 -07004718 list_for_each_entry(encoder, &mode_config->encoder_list,
4719 base.head) {
4720 switch (encoder->type) {
4721 case INTEL_OUTPUT_LVDS:
4722 has_panel = true;
4723 has_lvds = true;
4724 break;
4725 case INTEL_OUTPUT_EDP:
4726 has_panel = true;
4727 if (intel_encoder_is_pch_edp(&encoder->base))
4728 has_pch_edp = true;
4729 else
4730 has_cpu_edp = true;
4731 break;
Jesse Barnes13d83a62011-08-03 12:59:20 -07004732 }
4733 }
4734
Keith Packard99eb6a02011-09-26 14:29:12 -07004735 if (HAS_PCH_IBX(dev)) {
4736 has_ck505 = dev_priv->display_clock_mode;
4737 can_ssc = has_ck505;
4738 } else {
4739 has_ck505 = false;
4740 can_ssc = true;
4741 }
4742
4743 DRM_DEBUG_KMS("has_panel %d has_lvds %d has_pch_edp %d has_cpu_edp %d has_ck505 %d\n",
4744 has_panel, has_lvds, has_pch_edp, has_cpu_edp,
4745 has_ck505);
Jesse Barnes13d83a62011-08-03 12:59:20 -07004746
4747 /* Ironlake: try to setup display ref clock before DPLL
4748 * enabling. This is only under driver's control after
4749 * PCH B stepping, previous chipset stepping should be
4750 * ignoring this setting.
4751 */
4752 temp = I915_READ(PCH_DREF_CONTROL);
4753 /* Always enable nonspread source */
4754 temp &= ~DREF_NONSPREAD_SOURCE_MASK;
Jesse Barnes13d83a62011-08-03 12:59:20 -07004755
Keith Packard99eb6a02011-09-26 14:29:12 -07004756 if (has_ck505)
4757 temp |= DREF_NONSPREAD_CK505_ENABLE;
4758 else
4759 temp |= DREF_NONSPREAD_SOURCE_ENABLE;
Jesse Barnes13d83a62011-08-03 12:59:20 -07004760
Keith Packard199e5d72011-09-22 12:01:57 -07004761 if (has_panel) {
4762 temp &= ~DREF_SSC_SOURCE_MASK;
4763 temp |= DREF_SSC_SOURCE_ENABLE;
Jesse Barnes13d83a62011-08-03 12:59:20 -07004764
Keith Packard199e5d72011-09-22 12:01:57 -07004765 /* SSC must be turned on before enabling the CPU output */
Keith Packard99eb6a02011-09-26 14:29:12 -07004766 if (intel_panel_use_ssc(dev_priv) && can_ssc) {
Keith Packard199e5d72011-09-22 12:01:57 -07004767 DRM_DEBUG_KMS("Using SSC on panel\n");
Jesse Barnes13d83a62011-08-03 12:59:20 -07004768 temp |= DREF_SSC1_ENABLE;
Daniel Vettere77166b2012-03-30 22:14:05 +02004769 } else
4770 temp &= ~DREF_SSC1_ENABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07004771
4772 /* Get SSC going before enabling the outputs */
4773 I915_WRITE(PCH_DREF_CONTROL, temp);
4774 POSTING_READ(PCH_DREF_CONTROL);
4775 udelay(200);
4776
Jesse Barnes13d83a62011-08-03 12:59:20 -07004777 temp &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
4778
4779 /* Enable CPU source on CPU attached eDP */
Keith Packard199e5d72011-09-22 12:01:57 -07004780 if (has_cpu_edp) {
Keith Packard99eb6a02011-09-26 14:29:12 -07004781 if (intel_panel_use_ssc(dev_priv) && can_ssc) {
Keith Packard199e5d72011-09-22 12:01:57 -07004782 DRM_DEBUG_KMS("Using SSC on eDP\n");
Jesse Barnes13d83a62011-08-03 12:59:20 -07004783 temp |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD;
Keith Packard199e5d72011-09-22 12:01:57 -07004784 }
Jesse Barnes13d83a62011-08-03 12:59:20 -07004785 else
4786 temp |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD;
Keith Packard199e5d72011-09-22 12:01:57 -07004787 } else
4788 temp |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
4789
4790 I915_WRITE(PCH_DREF_CONTROL, temp);
4791 POSTING_READ(PCH_DREF_CONTROL);
4792 udelay(200);
4793 } else {
4794 DRM_DEBUG_KMS("Disabling SSC entirely\n");
4795
4796 temp &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
4797
4798 /* Turn off CPU output */
4799 temp |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
4800
4801 I915_WRITE(PCH_DREF_CONTROL, temp);
4802 POSTING_READ(PCH_DREF_CONTROL);
4803 udelay(200);
4804
4805 /* Turn off the SSC source */
4806 temp &= ~DREF_SSC_SOURCE_MASK;
4807 temp |= DREF_SSC_SOURCE_DISABLE;
4808
4809 /* Turn off SSC1 */
4810 temp &= ~ DREF_SSC1_ENABLE;
4811
Jesse Barnes13d83a62011-08-03 12:59:20 -07004812 I915_WRITE(PCH_DREF_CONTROL, temp);
4813 POSTING_READ(PCH_DREF_CONTROL);
4814 udelay(200);
4815 }
4816}
4817
Jesse Barnesd9d444c2011-09-02 13:03:05 -07004818static int ironlake_get_refclk(struct drm_crtc *crtc)
4819{
4820 struct drm_device *dev = crtc->dev;
4821 struct drm_i915_private *dev_priv = dev->dev_private;
4822 struct intel_encoder *encoder;
Jesse Barnesd9d444c2011-09-02 13:03:05 -07004823 struct intel_encoder *edp_encoder = NULL;
4824 int num_connectors = 0;
4825 bool is_lvds = false;
4826
Daniel Vetter6c2b7c12012-07-05 09:50:24 +02004827 for_each_encoder_on_crtc(dev, crtc, encoder) {
Jesse Barnesd9d444c2011-09-02 13:03:05 -07004828 switch (encoder->type) {
4829 case INTEL_OUTPUT_LVDS:
4830 is_lvds = true;
4831 break;
4832 case INTEL_OUTPUT_EDP:
4833 edp_encoder = encoder;
4834 break;
4835 }
4836 num_connectors++;
4837 }
4838
4839 if (is_lvds && intel_panel_use_ssc(dev_priv) && num_connectors < 2) {
4840 DRM_DEBUG_KMS("using SSC reference clock of %d MHz\n",
4841 dev_priv->lvds_ssc_freq);
4842 return dev_priv->lvds_ssc_freq * 1000;
4843 }
4844
4845 return 120000;
4846}
4847
Paulo Zanonic8203562012-09-12 10:06:29 -03004848static void ironlake_set_pipeconf(struct drm_crtc *crtc,
4849 struct drm_display_mode *adjusted_mode,
4850 bool dither)
4851{
4852 struct drm_i915_private *dev_priv = crtc->dev->dev_private;
4853 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4854 int pipe = intel_crtc->pipe;
4855 uint32_t val;
4856
4857 val = I915_READ(PIPECONF(pipe));
4858
4859 val &= ~PIPE_BPC_MASK;
4860 switch (intel_crtc->bpp) {
4861 case 18:
4862 val |= PIPE_6BPC;
4863 break;
4864 case 24:
4865 val |= PIPE_8BPC;
4866 break;
4867 case 30:
4868 val |= PIPE_10BPC;
4869 break;
4870 case 36:
4871 val |= PIPE_12BPC;
4872 break;
4873 default:
Paulo Zanonicc769b62012-09-20 18:36:03 -03004874 /* Case prevented by intel_choose_pipe_bpp_dither. */
4875 BUG();
Paulo Zanonic8203562012-09-12 10:06:29 -03004876 }
4877
4878 val &= ~(PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_MASK);
4879 if (dither)
4880 val |= (PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_SP);
4881
4882 val &= ~PIPECONF_INTERLACE_MASK;
4883 if (adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE)
4884 val |= PIPECONF_INTERLACED_ILK;
4885 else
4886 val |= PIPECONF_PROGRESSIVE;
4887
4888 I915_WRITE(PIPECONF(pipe), val);
4889 POSTING_READ(PIPECONF(pipe));
4890}
4891
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03004892static void haswell_set_pipeconf(struct drm_crtc *crtc,
4893 struct drm_display_mode *adjusted_mode,
4894 bool dither)
4895{
4896 struct drm_i915_private *dev_priv = crtc->dev->dev_private;
4897 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4898 int pipe = intel_crtc->pipe;
4899 uint32_t val;
4900
4901 val = I915_READ(PIPECONF(pipe));
4902
4903 val &= ~(PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_MASK);
4904 if (dither)
4905 val |= (PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_SP);
4906
4907 val &= ~PIPECONF_INTERLACE_MASK_HSW;
4908 if (adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE)
4909 val |= PIPECONF_INTERLACED_ILK;
4910 else
4911 val |= PIPECONF_PROGRESSIVE;
4912
4913 I915_WRITE(PIPECONF(pipe), val);
4914 POSTING_READ(PIPECONF(pipe));
4915}
4916
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03004917static bool ironlake_compute_clocks(struct drm_crtc *crtc,
4918 struct drm_display_mode *adjusted_mode,
4919 intel_clock_t *clock,
4920 bool *has_reduced_clock,
4921 intel_clock_t *reduced_clock)
4922{
4923 struct drm_device *dev = crtc->dev;
4924 struct drm_i915_private *dev_priv = dev->dev_private;
4925 struct intel_encoder *intel_encoder;
4926 int refclk;
4927 const intel_limit_t *limit;
4928 bool ret, is_sdvo = false, is_tv = false, is_lvds = false;
4929
4930 for_each_encoder_on_crtc(dev, crtc, intel_encoder) {
4931 switch (intel_encoder->type) {
4932 case INTEL_OUTPUT_LVDS:
4933 is_lvds = true;
4934 break;
4935 case INTEL_OUTPUT_SDVO:
4936 case INTEL_OUTPUT_HDMI:
4937 is_sdvo = true;
4938 if (intel_encoder->needs_tv_clock)
4939 is_tv = true;
4940 break;
4941 case INTEL_OUTPUT_TVOUT:
4942 is_tv = true;
4943 break;
4944 }
4945 }
4946
4947 refclk = ironlake_get_refclk(crtc);
4948
4949 /*
4950 * Returns a set of divisors for the desired target clock with the given
4951 * refclk, or FALSE. The returned values represent the clock equation:
4952 * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2.
4953 */
4954 limit = intel_limit(crtc, refclk);
4955 ret = limit->find_pll(limit, crtc, adjusted_mode->clock, refclk, NULL,
4956 clock);
4957 if (!ret)
4958 return false;
4959
4960 if (is_lvds && dev_priv->lvds_downclock_avail) {
4961 /*
4962 * Ensure we match the reduced clock's P to the target clock.
4963 * If the clocks don't match, we can't switch the display clock
4964 * by using the FP0/FP1. In such case we will disable the LVDS
4965 * downclock feature.
4966 */
4967 *has_reduced_clock = limit->find_pll(limit, crtc,
4968 dev_priv->lvds_downclock,
4969 refclk,
4970 clock,
4971 reduced_clock);
4972 }
4973
4974 if (is_sdvo && is_tv)
4975 i9xx_adjust_sdvo_tv_clock(adjusted_mode, clock);
4976
4977 return true;
4978}
4979
Paulo Zanonif48d8f22012-09-20 18:36:04 -03004980static void ironlake_set_m_n(struct drm_crtc *crtc,
4981 struct drm_display_mode *mode,
4982 struct drm_display_mode *adjusted_mode)
4983{
4984 struct drm_device *dev = crtc->dev;
4985 struct drm_i915_private *dev_priv = dev->dev_private;
4986 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4987 enum pipe pipe = intel_crtc->pipe;
4988 struct intel_encoder *intel_encoder, *edp_encoder = NULL;
4989 struct fdi_m_n m_n = {0};
4990 int target_clock, pixel_multiplier, lane, link_bw;
4991 bool is_dp = false, is_cpu_edp = false;
4992
4993 for_each_encoder_on_crtc(dev, crtc, intel_encoder) {
4994 switch (intel_encoder->type) {
4995 case INTEL_OUTPUT_DISPLAYPORT:
4996 is_dp = true;
4997 break;
4998 case INTEL_OUTPUT_EDP:
4999 is_dp = true;
5000 if (!intel_encoder_is_pch_edp(&intel_encoder->base))
5001 is_cpu_edp = true;
5002 edp_encoder = intel_encoder;
5003 break;
5004 }
5005 }
5006
5007 /* FDI link */
5008 pixel_multiplier = intel_mode_get_pixel_multiplier(adjusted_mode);
5009 lane = 0;
5010 /* CPU eDP doesn't require FDI link, so just set DP M/N
5011 according to current link config */
5012 if (is_cpu_edp) {
5013 intel_edp_link_config(edp_encoder, &lane, &link_bw);
5014 } else {
5015 /* FDI is a binary signal running at ~2.7GHz, encoding
5016 * each output octet as 10 bits. The actual frequency
5017 * is stored as a divider into a 100MHz clock, and the
5018 * mode pixel clock is stored in units of 1KHz.
5019 * Hence the bw of each lane in terms of the mode signal
5020 * is:
5021 */
5022 link_bw = intel_fdi_link_freq(dev) * MHz(100)/KHz(1)/10;
5023 }
5024
5025 /* [e]DP over FDI requires target mode clock instead of link clock. */
5026 if (edp_encoder)
5027 target_clock = intel_edp_target_clock(edp_encoder, mode);
5028 else if (is_dp)
5029 target_clock = mode->clock;
5030 else
5031 target_clock = adjusted_mode->clock;
5032
5033 if (!lane) {
5034 /*
5035 * Account for spread spectrum to avoid
5036 * oversubscribing the link. Max center spread
5037 * is 2.5%; use 5% for safety's sake.
5038 */
5039 u32 bps = target_clock * intel_crtc->bpp * 21 / 20;
5040 lane = bps / (link_bw * 8) + 1;
5041 }
5042
5043 intel_crtc->fdi_lanes = lane;
5044
5045 if (pixel_multiplier > 1)
5046 link_bw *= pixel_multiplier;
5047 ironlake_compute_m_n(intel_crtc->bpp, lane, target_clock, link_bw,
5048 &m_n);
5049
5050 I915_WRITE(PIPE_DATA_M1(pipe), TU_SIZE(m_n.tu) | m_n.gmch_m);
5051 I915_WRITE(PIPE_DATA_N1(pipe), m_n.gmch_n);
5052 I915_WRITE(PIPE_LINK_M1(pipe), m_n.link_m);
5053 I915_WRITE(PIPE_LINK_N1(pipe), m_n.link_n);
5054}
5055
Paulo Zanonide13a2e2012-09-20 18:36:05 -03005056static uint32_t ironlake_compute_dpll(struct intel_crtc *intel_crtc,
5057 struct drm_display_mode *adjusted_mode,
5058 intel_clock_t *clock, u32 fp)
5059{
5060 struct drm_crtc *crtc = &intel_crtc->base;
5061 struct drm_device *dev = crtc->dev;
5062 struct drm_i915_private *dev_priv = dev->dev_private;
5063 struct intel_encoder *intel_encoder;
5064 uint32_t dpll;
5065 int factor, pixel_multiplier, num_connectors = 0;
5066 bool is_lvds = false, is_sdvo = false, is_tv = false;
5067 bool is_dp = false, is_cpu_edp = false;
5068
5069 for_each_encoder_on_crtc(dev, crtc, intel_encoder) {
5070 switch (intel_encoder->type) {
5071 case INTEL_OUTPUT_LVDS:
5072 is_lvds = true;
5073 break;
5074 case INTEL_OUTPUT_SDVO:
5075 case INTEL_OUTPUT_HDMI:
5076 is_sdvo = true;
5077 if (intel_encoder->needs_tv_clock)
5078 is_tv = true;
5079 break;
5080 case INTEL_OUTPUT_TVOUT:
5081 is_tv = true;
5082 break;
5083 case INTEL_OUTPUT_DISPLAYPORT:
5084 is_dp = true;
5085 break;
5086 case INTEL_OUTPUT_EDP:
5087 is_dp = true;
5088 if (!intel_encoder_is_pch_edp(&intel_encoder->base))
5089 is_cpu_edp = true;
5090 break;
5091 }
5092
5093 num_connectors++;
5094 }
5095
5096 /* Enable autotuning of the PLL clock (if permissible) */
5097 factor = 21;
5098 if (is_lvds) {
5099 if ((intel_panel_use_ssc(dev_priv) &&
5100 dev_priv->lvds_ssc_freq == 100) ||
5101 (I915_READ(PCH_LVDS) & LVDS_CLKB_POWER_MASK) == LVDS_CLKB_POWER_UP)
5102 factor = 25;
5103 } else if (is_sdvo && is_tv)
5104 factor = 20;
5105
5106 if (clock->m < factor * clock->n)
5107 fp |= FP_CB_TUNE;
5108
5109 dpll = 0;
5110
5111 if (is_lvds)
5112 dpll |= DPLLB_MODE_LVDS;
5113 else
5114 dpll |= DPLLB_MODE_DAC_SERIAL;
5115 if (is_sdvo) {
5116 pixel_multiplier = intel_mode_get_pixel_multiplier(adjusted_mode);
5117 if (pixel_multiplier > 1) {
5118 dpll |= (pixel_multiplier - 1) << PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT;
5119 }
5120 dpll |= DPLL_DVO_HIGH_SPEED;
5121 }
5122 if (is_dp && !is_cpu_edp)
5123 dpll |= DPLL_DVO_HIGH_SPEED;
5124
5125 /* compute bitmask from p1 value */
5126 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
5127 /* also FPA1 */
5128 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
5129
5130 switch (clock->p2) {
5131 case 5:
5132 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
5133 break;
5134 case 7:
5135 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
5136 break;
5137 case 10:
5138 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
5139 break;
5140 case 14:
5141 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
5142 break;
5143 }
5144
5145 if (is_sdvo && is_tv)
5146 dpll |= PLL_REF_INPUT_TVCLKINBC;
5147 else if (is_tv)
5148 /* XXX: just matching BIOS for now */
5149 /* dpll |= PLL_REF_INPUT_TVCLKINBC; */
5150 dpll |= 3;
5151 else if (is_lvds && intel_panel_use_ssc(dev_priv) && num_connectors < 2)
5152 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
5153 else
5154 dpll |= PLL_REF_INPUT_DREFCLK;
5155
5156 return dpll;
5157}
5158
Eric Anholtf564048e2011-03-30 13:01:02 -07005159static int ironlake_crtc_mode_set(struct drm_crtc *crtc,
5160 struct drm_display_mode *mode,
5161 struct drm_display_mode *adjusted_mode,
5162 int x, int y,
Daniel Vetter94352cf2012-07-05 22:51:56 +02005163 struct drm_framebuffer *fb)
Jesse Barnes79e53942008-11-07 14:24:08 -08005164{
5165 struct drm_device *dev = crtc->dev;
5166 struct drm_i915_private *dev_priv = dev->dev_private;
5167 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5168 int pipe = intel_crtc->pipe;
Chris Wilson5c3b82e2009-02-11 13:25:09 +00005169 int plane = intel_crtc->plane;
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03005170 int num_connectors = 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08005171 intel_clock_t clock, reduced_clock;
Paulo Zanonia1f9e772012-09-12 10:06:32 -03005172 u32 dpll, fp = 0, fp2 = 0;
Paulo Zanonie2f12b02012-09-20 18:36:06 -03005173 bool ok, has_reduced_clock = false;
5174 bool is_lvds = false, is_dp = false, is_cpu_edp = false;
Paulo Zanonif48d8f22012-09-20 18:36:04 -03005175 struct intel_encoder *encoder;
Eric Anholtfae14982011-03-30 13:01:09 -07005176 u32 temp;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03005177 int ret;
Jesse Barnes5a354202011-06-24 12:19:22 -07005178 bool dither;
Jesse Barnes79e53942008-11-07 14:24:08 -08005179
Daniel Vetter6c2b7c12012-07-05 09:50:24 +02005180 for_each_encoder_on_crtc(dev, crtc, encoder) {
Jesse Barnes79e53942008-11-07 14:24:08 -08005181 switch (encoder->type) {
5182 case INTEL_OUTPUT_LVDS:
5183 is_lvds = true;
5184 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08005185 case INTEL_OUTPUT_DISPLAYPORT:
5186 is_dp = true;
5187 break;
5188 case INTEL_OUTPUT_EDP:
Jesse Barnese3aef172012-04-10 11:58:03 -07005189 is_dp = true;
Paulo Zanonie2f12b02012-09-20 18:36:06 -03005190 if (!intel_encoder_is_pch_edp(&encoder->base))
Jesse Barnese3aef172012-04-10 11:58:03 -07005191 is_cpu_edp = true;
Jesse Barnes79e53942008-11-07 14:24:08 -08005192 break;
5193 }
5194
Kristian Høgsberg43565a02009-02-13 20:56:52 -05005195 num_connectors++;
5196 }
5197
Paulo Zanoni5dc52982012-10-05 12:05:56 -03005198 WARN(!(HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev)),
5199 "Unexpected PCH type %d\n", INTEL_PCH_TYPE(dev));
5200
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03005201 ok = ironlake_compute_clocks(crtc, adjusted_mode, &clock,
5202 &has_reduced_clock, &reduced_clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08005203 if (!ok) {
5204 DRM_ERROR("Couldn't find PLL settings for mode!\n");
5205 return -EINVAL;
5206 }
5207
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01005208 /* Ensure that the cursor is valid for the new mode before changing... */
Chris Wilson6b383a72010-09-13 13:54:26 +01005209 intel_crtc_update_cursor(crtc, true);
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01005210
Eric Anholt8febb292011-03-30 13:01:07 -07005211 /* determine panel color depth */
Paulo Zanonicc769b62012-09-20 18:36:03 -03005212 dither = intel_choose_pipe_bpp_dither(crtc, fb, &intel_crtc->bpp, mode);
Paulo Zanonic8203562012-09-12 10:06:29 -03005213 if (is_lvds && dev_priv->lvds_dither)
5214 dither = true;
Eric Anholt8febb292011-03-30 13:01:07 -07005215
Eric Anholta07d6782011-03-30 13:01:08 -07005216 fp = clock.n << 16 | clock.m1 << 8 | clock.m2;
5217 if (has_reduced_clock)
5218 fp2 = reduced_clock.n << 16 | reduced_clock.m1 << 8 |
5219 reduced_clock.m2;
Jesse Barnes79e53942008-11-07 14:24:08 -08005220
Paulo Zanonide13a2e2012-09-20 18:36:05 -03005221 dpll = ironlake_compute_dpll(intel_crtc, adjusted_mode, &clock, fp);
Jesse Barnes79e53942008-11-07 14:24:08 -08005222
Jesse Barnesf7cb34d2011-10-12 10:49:14 -07005223 DRM_DEBUG_KMS("Mode for pipe %d:\n", pipe);
Jesse Barnes79e53942008-11-07 14:24:08 -08005224 drm_mode_debug_printmodeline(mode);
5225
Paulo Zanoni5dc52982012-10-05 12:05:56 -03005226 /* CPU eDP is the only output that doesn't need a PCH PLL of its own. */
5227 if (!is_cpu_edp) {
Jesse Barnesee7b9f92012-04-20 17:11:53 +01005228 struct intel_pch_pll *pll;
Chris Wilson5eddb702010-09-11 13:48:45 +01005229
Jesse Barnesee7b9f92012-04-20 17:11:53 +01005230 pll = intel_get_pch_pll(intel_crtc, dpll, fp);
5231 if (pll == NULL) {
5232 DRM_DEBUG_DRIVER("failed to find PLL for pipe %d\n",
5233 pipe);
Jesse Barnes4b645f12011-10-12 09:51:31 -07005234 return -EINVAL;
5235 }
Jesse Barnesee7b9f92012-04-20 17:11:53 +01005236 } else
5237 intel_put_pch_pll(intel_crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08005238
5239 /* The LVDS pin pair needs to be on before the DPLLs are enabled.
5240 * This is an exception to the general rule that mode_set doesn't turn
5241 * things on.
5242 */
5243 if (is_lvds) {
Eric Anholtfae14982011-03-30 13:01:09 -07005244 temp = I915_READ(PCH_LVDS);
Chris Wilson5eddb702010-09-11 13:48:45 +01005245 temp |= LVDS_PORT_EN | LVDS_A0A2_CLKA_POWER_UP;
Jesse Barnes7885d202012-01-12 14:51:17 -08005246 if (HAS_PCH_CPT(dev)) {
5247 temp &= ~PORT_TRANS_SEL_MASK;
Jesse Barnes4b645f12011-10-12 09:51:31 -07005248 temp |= PORT_TRANS_SEL_CPT(pipe);
Jesse Barnes7885d202012-01-12 14:51:17 -08005249 } else {
5250 if (pipe == 1)
5251 temp |= LVDS_PIPEB_SELECT;
5252 else
5253 temp &= ~LVDS_PIPEB_SELECT;
5254 }
Jesse Barnes4b645f12011-10-12 09:51:31 -07005255
Zhao Yakuia3e17eb2009-10-10 10:42:37 +08005256 /* set the corresponsding LVDS_BORDER bit */
Chris Wilson5eddb702010-09-11 13:48:45 +01005257 temp |= dev_priv->lvds_border_bits;
Jesse Barnes79e53942008-11-07 14:24:08 -08005258 /* Set the B0-B3 data pairs corresponding to whether we're going to
5259 * set the DPLLs for dual-channel mode or not.
5260 */
5261 if (clock.p2 == 7)
Chris Wilson5eddb702010-09-11 13:48:45 +01005262 temp |= LVDS_B0B3_POWER_UP | LVDS_CLKB_POWER_UP;
Jesse Barnes79e53942008-11-07 14:24:08 -08005263 else
Chris Wilson5eddb702010-09-11 13:48:45 +01005264 temp &= ~(LVDS_B0B3_POWER_UP | LVDS_CLKB_POWER_UP);
Jesse Barnes79e53942008-11-07 14:24:08 -08005265
5266 /* It would be nice to set 24 vs 18-bit mode (LVDS_A3_POWER_UP)
5267 * appropriately here, but we need to look more thoroughly into how
5268 * panels behave in the two modes.
5269 */
Chris Wilson284d5df2012-04-14 17:41:59 +01005270 temp &= ~(LVDS_HSYNC_POLARITY | LVDS_VSYNC_POLARITY);
Bryan Freedaa9b5002011-01-12 13:43:19 -08005271 if (adjusted_mode->flags & DRM_MODE_FLAG_NHSYNC)
Chris Wilson284d5df2012-04-14 17:41:59 +01005272 temp |= LVDS_HSYNC_POLARITY;
Bryan Freedaa9b5002011-01-12 13:43:19 -08005273 if (adjusted_mode->flags & DRM_MODE_FLAG_NVSYNC)
Chris Wilson284d5df2012-04-14 17:41:59 +01005274 temp |= LVDS_VSYNC_POLARITY;
Eric Anholtfae14982011-03-30 13:01:09 -07005275 I915_WRITE(PCH_LVDS, temp);
Jesse Barnes79e53942008-11-07 14:24:08 -08005276 }
Jesse Barnes434ed092010-09-07 14:48:06 -07005277
Jesse Barnese3aef172012-04-10 11:58:03 -07005278 if (is_dp && !is_cpu_edp) {
Keith Packarda4fc5ed2009-04-07 16:16:42 -07005279 intel_dp_set_m_n(crtc, mode, adjusted_mode);
Eric Anholt8febb292011-03-30 13:01:07 -07005280 } else {
Zhenyu Wang8db9d772010-04-07 16:15:54 +08005281 /* For non-DP output, clear any trans DP clock recovery setting.*/
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08005282 I915_WRITE(TRANSDATA_M1(pipe), 0);
5283 I915_WRITE(TRANSDATA_N1(pipe), 0);
5284 I915_WRITE(TRANSDPLINK_M1(pipe), 0);
5285 I915_WRITE(TRANSDPLINK_N1(pipe), 0);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08005286 }
Jesse Barnes79e53942008-11-07 14:24:08 -08005287
Jesse Barnesee7b9f92012-04-20 17:11:53 +01005288 if (intel_crtc->pch_pll) {
5289 I915_WRITE(intel_crtc->pch_pll->pll_reg, dpll);
Chris Wilson5eddb702010-09-11 13:48:45 +01005290
Zhenyu Wang32f9d652009-07-24 01:00:32 +08005291 /* Wait for the clocks to stabilize. */
Jesse Barnesee7b9f92012-04-20 17:11:53 +01005292 POSTING_READ(intel_crtc->pch_pll->pll_reg);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08005293 udelay(150);
5294
Eric Anholt8febb292011-03-30 13:01:07 -07005295 /* The pixel multiplier can only be updated once the
5296 * DPLL is enabled and the clocks are stable.
5297 *
5298 * So write it again.
5299 */
Jesse Barnesee7b9f92012-04-20 17:11:53 +01005300 I915_WRITE(intel_crtc->pch_pll->pll_reg, dpll);
Jesse Barnes79e53942008-11-07 14:24:08 -08005301 }
Jesse Barnes79e53942008-11-07 14:24:08 -08005302
Chris Wilson5eddb702010-09-11 13:48:45 +01005303 intel_crtc->lowfreq_avail = false;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01005304 if (intel_crtc->pch_pll) {
Jesse Barnes4b645f12011-10-12 09:51:31 -07005305 if (is_lvds && has_reduced_clock && i915_powersave) {
Jesse Barnesee7b9f92012-04-20 17:11:53 +01005306 I915_WRITE(intel_crtc->pch_pll->fp1_reg, fp2);
Jesse Barnes4b645f12011-10-12 09:51:31 -07005307 intel_crtc->lowfreq_avail = true;
Jesse Barnes4b645f12011-10-12 09:51:31 -07005308 } else {
Jesse Barnesee7b9f92012-04-20 17:11:53 +01005309 I915_WRITE(intel_crtc->pch_pll->fp1_reg, fp);
Jesse Barnes652c3932009-08-17 13:31:43 -07005310 }
5311 }
5312
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005313 intel_set_pipe_timings(intel_crtc, mode, adjusted_mode);
Zhenyu Wang2c072452009-06-05 15:38:42 +08005314
Paulo Zanonif48d8f22012-09-20 18:36:04 -03005315 ironlake_set_m_n(crtc, mode, adjusted_mode);
Zhenyu Wang2c072452009-06-05 15:38:42 +08005316
Jesse Barnese3aef172012-04-10 11:58:03 -07005317 if (is_cpu_edp)
Eric Anholt8febb292011-03-30 13:01:07 -07005318 ironlake_set_pll_edp(crtc, adjusted_mode->clock);
Zhenyu Wang2c072452009-06-05 15:38:42 +08005319
Paulo Zanonic8203562012-09-12 10:06:29 -03005320 ironlake_set_pipeconf(crtc, adjusted_mode, dither);
Jesse Barnes79e53942008-11-07 14:24:08 -08005321
Jesse Barnes9d0498a2010-08-18 13:20:54 -07005322 intel_wait_for_vblank(dev, pipe);
Jesse Barnes79e53942008-11-07 14:24:08 -08005323
Paulo Zanonia1f9e772012-09-12 10:06:32 -03005324 /* Set up the display plane register */
5325 I915_WRITE(DSPCNTR(plane), DISPPLANE_GAMMA_ENABLE);
Jesse Barnesb24e7172011-01-04 15:09:30 -08005326 POSTING_READ(DSPCNTR(plane));
Jesse Barnes79e53942008-11-07 14:24:08 -08005327
Daniel Vetter94352cf2012-07-05 22:51:56 +02005328 ret = intel_pipe_set_base(crtc, x, y, fb);
Shaohua Li7662c8b2009-06-26 11:23:55 +08005329
5330 intel_update_watermarks(dev);
5331
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03005332 intel_update_linetime_watermarks(dev, pipe, adjusted_mode);
5333
Chris Wilson1f803ee2009-06-06 09:45:59 +01005334 return ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08005335}
5336
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03005337static int haswell_crtc_mode_set(struct drm_crtc *crtc,
5338 struct drm_display_mode *mode,
5339 struct drm_display_mode *adjusted_mode,
5340 int x, int y,
5341 struct drm_framebuffer *fb)
5342{
5343 struct drm_device *dev = crtc->dev;
5344 struct drm_i915_private *dev_priv = dev->dev_private;
5345 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5346 int pipe = intel_crtc->pipe;
5347 int plane = intel_crtc->plane;
5348 int num_connectors = 0;
5349 intel_clock_t clock, reduced_clock;
Paulo Zanoni5dc52982012-10-05 12:05:56 -03005350 u32 dpll = 0, fp = 0, fp2 = 0;
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03005351 bool ok, has_reduced_clock = false;
5352 bool is_lvds = false, is_dp = false, is_cpu_edp = false;
5353 struct intel_encoder *encoder;
5354 u32 temp;
5355 int ret;
5356 bool dither;
5357
5358 for_each_encoder_on_crtc(dev, crtc, encoder) {
5359 switch (encoder->type) {
5360 case INTEL_OUTPUT_LVDS:
5361 is_lvds = true;
5362 break;
5363 case INTEL_OUTPUT_DISPLAYPORT:
5364 is_dp = true;
5365 break;
5366 case INTEL_OUTPUT_EDP:
5367 is_dp = true;
5368 if (!intel_encoder_is_pch_edp(&encoder->base))
5369 is_cpu_edp = true;
5370 break;
5371 }
5372
5373 num_connectors++;
5374 }
5375
Paulo Zanonia5c961d2012-10-24 15:59:34 -02005376 if (is_cpu_edp)
5377 intel_crtc->cpu_transcoder = TRANSCODER_EDP;
5378 else
5379 intel_crtc->cpu_transcoder = pipe;
5380
Paulo Zanoni5dc52982012-10-05 12:05:56 -03005381 /* We are not sure yet this won't happen. */
5382 WARN(!HAS_PCH_LPT(dev), "Unexpected PCH type %d\n",
5383 INTEL_PCH_TYPE(dev));
5384
5385 WARN(num_connectors != 1, "%d connectors attached to pipe %c\n",
5386 num_connectors, pipe_name(pipe));
5387
Paulo Zanoni1ce42922012-10-05 12:06:01 -03005388 WARN_ON(I915_READ(PIPECONF(pipe)) &
5389 (PIPECONF_ENABLE | I965_PIPECONF_ACTIVE));
5390
5391 WARN_ON(I915_READ(DSPCNTR(plane)) & DISPLAY_PLANE_ENABLE);
5392
Paulo Zanoni6441ab52012-10-05 12:05:58 -03005393 if (!intel_ddi_pll_mode_set(crtc, adjusted_mode->clock))
5394 return -EINVAL;
5395
Paulo Zanoni5dc52982012-10-05 12:05:56 -03005396 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev)) {
5397 ok = ironlake_compute_clocks(crtc, adjusted_mode, &clock,
5398 &has_reduced_clock,
5399 &reduced_clock);
5400 if (!ok) {
5401 DRM_ERROR("Couldn't find PLL settings for mode!\n");
5402 return -EINVAL;
5403 }
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03005404 }
5405
5406 /* Ensure that the cursor is valid for the new mode before changing... */
5407 intel_crtc_update_cursor(crtc, true);
5408
5409 /* determine panel color depth */
5410 dither = intel_choose_pipe_bpp_dither(crtc, fb, &intel_crtc->bpp, mode);
5411 if (is_lvds && dev_priv->lvds_dither)
5412 dither = true;
5413
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03005414 DRM_DEBUG_KMS("Mode for pipe %d:\n", pipe);
5415 drm_mode_debug_printmodeline(mode);
5416
Paulo Zanoni5dc52982012-10-05 12:05:56 -03005417 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev)) {
5418 fp = clock.n << 16 | clock.m1 << 8 | clock.m2;
5419 if (has_reduced_clock)
5420 fp2 = reduced_clock.n << 16 | reduced_clock.m1 << 8 |
5421 reduced_clock.m2;
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03005422
Paulo Zanoni5dc52982012-10-05 12:05:56 -03005423 dpll = ironlake_compute_dpll(intel_crtc, adjusted_mode, &clock,
5424 fp);
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03005425
Paulo Zanoni5dc52982012-10-05 12:05:56 -03005426 /* CPU eDP is the only output that doesn't need a PCH PLL of its
5427 * own on pre-Haswell/LPT generation */
5428 if (!is_cpu_edp) {
5429 struct intel_pch_pll *pll;
5430
5431 pll = intel_get_pch_pll(intel_crtc, dpll, fp);
5432 if (pll == NULL) {
5433 DRM_DEBUG_DRIVER("failed to find PLL for pipe %d\n",
5434 pipe);
5435 return -EINVAL;
5436 }
5437 } else
5438 intel_put_pch_pll(intel_crtc);
5439
5440 /* The LVDS pin pair needs to be on before the DPLLs are
5441 * enabled. This is an exception to the general rule that
5442 * mode_set doesn't turn things on.
5443 */
5444 if (is_lvds) {
5445 temp = I915_READ(PCH_LVDS);
5446 temp |= LVDS_PORT_EN | LVDS_A0A2_CLKA_POWER_UP;
5447 if (HAS_PCH_CPT(dev)) {
5448 temp &= ~PORT_TRANS_SEL_MASK;
5449 temp |= PORT_TRANS_SEL_CPT(pipe);
5450 } else {
5451 if (pipe == 1)
5452 temp |= LVDS_PIPEB_SELECT;
5453 else
5454 temp &= ~LVDS_PIPEB_SELECT;
5455 }
5456
5457 /* set the corresponsding LVDS_BORDER bit */
5458 temp |= dev_priv->lvds_border_bits;
5459 /* Set the B0-B3 data pairs corresponding to whether
5460 * we're going to set the DPLLs for dual-channel mode or
5461 * not.
5462 */
5463 if (clock.p2 == 7)
5464 temp |= LVDS_B0B3_POWER_UP | LVDS_CLKB_POWER_UP;
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03005465 else
Paulo Zanoni5dc52982012-10-05 12:05:56 -03005466 temp &= ~(LVDS_B0B3_POWER_UP |
5467 LVDS_CLKB_POWER_UP);
5468
5469 /* It would be nice to set 24 vs 18-bit mode
5470 * (LVDS_A3_POWER_UP) appropriately here, but we need to
5471 * look more thoroughly into how panels behave in the
5472 * two modes.
5473 */
5474 temp &= ~(LVDS_HSYNC_POLARITY | LVDS_VSYNC_POLARITY);
5475 if (adjusted_mode->flags & DRM_MODE_FLAG_NHSYNC)
5476 temp |= LVDS_HSYNC_POLARITY;
5477 if (adjusted_mode->flags & DRM_MODE_FLAG_NVSYNC)
5478 temp |= LVDS_VSYNC_POLARITY;
5479 I915_WRITE(PCH_LVDS, temp);
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03005480 }
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03005481 }
5482
5483 if (is_dp && !is_cpu_edp) {
5484 intel_dp_set_m_n(crtc, mode, adjusted_mode);
5485 } else {
Paulo Zanoni5dc52982012-10-05 12:05:56 -03005486 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev)) {
5487 /* For non-DP output, clear any trans DP clock recovery
5488 * setting.*/
5489 I915_WRITE(TRANSDATA_M1(pipe), 0);
5490 I915_WRITE(TRANSDATA_N1(pipe), 0);
5491 I915_WRITE(TRANSDPLINK_M1(pipe), 0);
5492 I915_WRITE(TRANSDPLINK_N1(pipe), 0);
5493 }
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03005494 }
5495
5496 intel_crtc->lowfreq_avail = false;
Paulo Zanoni5dc52982012-10-05 12:05:56 -03005497 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev)) {
5498 if (intel_crtc->pch_pll) {
5499 I915_WRITE(intel_crtc->pch_pll->pll_reg, dpll);
5500
5501 /* Wait for the clocks to stabilize. */
5502 POSTING_READ(intel_crtc->pch_pll->pll_reg);
5503 udelay(150);
5504
5505 /* The pixel multiplier can only be updated once the
5506 * DPLL is enabled and the clocks are stable.
5507 *
5508 * So write it again.
5509 */
5510 I915_WRITE(intel_crtc->pch_pll->pll_reg, dpll);
5511 }
5512
5513 if (intel_crtc->pch_pll) {
5514 if (is_lvds && has_reduced_clock && i915_powersave) {
5515 I915_WRITE(intel_crtc->pch_pll->fp1_reg, fp2);
5516 intel_crtc->lowfreq_avail = true;
5517 } else {
5518 I915_WRITE(intel_crtc->pch_pll->fp1_reg, fp);
5519 }
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03005520 }
5521 }
5522
5523 intel_set_pipe_timings(intel_crtc, mode, adjusted_mode);
5524
Paulo Zanoni1eb8dfe2012-10-18 12:42:10 -03005525 if (!is_dp || is_cpu_edp)
5526 ironlake_set_m_n(crtc, mode, adjusted_mode);
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03005527
Paulo Zanoni5dc52982012-10-05 12:05:56 -03005528 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev))
5529 if (is_cpu_edp)
5530 ironlake_set_pll_edp(crtc, adjusted_mode->clock);
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03005531
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03005532 haswell_set_pipeconf(crtc, adjusted_mode, dither);
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03005533
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03005534 /* Set up the display plane register */
5535 I915_WRITE(DSPCNTR(plane), DISPPLANE_GAMMA_ENABLE);
5536 POSTING_READ(DSPCNTR(plane));
5537
5538 ret = intel_pipe_set_base(crtc, x, y, fb);
5539
5540 intel_update_watermarks(dev);
5541
5542 intel_update_linetime_watermarks(dev, pipe, adjusted_mode);
5543
5544 return ret;
5545}
5546
Eric Anholtf564048e2011-03-30 13:01:02 -07005547static int intel_crtc_mode_set(struct drm_crtc *crtc,
5548 struct drm_display_mode *mode,
5549 struct drm_display_mode *adjusted_mode,
5550 int x, int y,
Daniel Vetter94352cf2012-07-05 22:51:56 +02005551 struct drm_framebuffer *fb)
Eric Anholtf564048e2011-03-30 13:01:02 -07005552{
5553 struct drm_device *dev = crtc->dev;
5554 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholt0b701d22011-03-30 13:01:03 -07005555 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5556 int pipe = intel_crtc->pipe;
Eric Anholtf564048e2011-03-30 13:01:02 -07005557 int ret;
5558
Eric Anholt0b701d22011-03-30 13:01:03 -07005559 drm_vblank_pre_modeset(dev, pipe);
5560
Eric Anholtf564048e2011-03-30 13:01:02 -07005561 ret = dev_priv->display.crtc_mode_set(crtc, mode, adjusted_mode,
Daniel Vetter94352cf2012-07-05 22:51:56 +02005562 x, y, fb);
Jesse Barnes79e53942008-11-07 14:24:08 -08005563 drm_vblank_post_modeset(dev, pipe);
5564
5565 return ret;
5566}
5567
Wu Fengguang3a9627f2011-12-09 20:42:19 +08005568static bool intel_eld_uptodate(struct drm_connector *connector,
5569 int reg_eldv, uint32_t bits_eldv,
5570 int reg_elda, uint32_t bits_elda,
5571 int reg_edid)
5572{
5573 struct drm_i915_private *dev_priv = connector->dev->dev_private;
5574 uint8_t *eld = connector->eld;
5575 uint32_t i;
5576
5577 i = I915_READ(reg_eldv);
5578 i &= bits_eldv;
5579
5580 if (!eld[0])
5581 return !i;
5582
5583 if (!i)
5584 return false;
5585
5586 i = I915_READ(reg_elda);
5587 i &= ~bits_elda;
5588 I915_WRITE(reg_elda, i);
5589
5590 for (i = 0; i < eld[2]; i++)
5591 if (I915_READ(reg_edid) != *((uint32_t *)eld + i))
5592 return false;
5593
5594 return true;
5595}
5596
Wu Fengguange0dac652011-09-05 14:25:34 +08005597static void g4x_write_eld(struct drm_connector *connector,
5598 struct drm_crtc *crtc)
5599{
5600 struct drm_i915_private *dev_priv = connector->dev->dev_private;
5601 uint8_t *eld = connector->eld;
5602 uint32_t eldv;
5603 uint32_t len;
5604 uint32_t i;
5605
5606 i = I915_READ(G4X_AUD_VID_DID);
5607
5608 if (i == INTEL_AUDIO_DEVBLC || i == INTEL_AUDIO_DEVCL)
5609 eldv = G4X_ELDV_DEVCL_DEVBLC;
5610 else
5611 eldv = G4X_ELDV_DEVCTG;
5612
Wu Fengguang3a9627f2011-12-09 20:42:19 +08005613 if (intel_eld_uptodate(connector,
5614 G4X_AUD_CNTL_ST, eldv,
5615 G4X_AUD_CNTL_ST, G4X_ELD_ADDR,
5616 G4X_HDMIW_HDMIEDID))
5617 return;
5618
Wu Fengguange0dac652011-09-05 14:25:34 +08005619 i = I915_READ(G4X_AUD_CNTL_ST);
5620 i &= ~(eldv | G4X_ELD_ADDR);
5621 len = (i >> 9) & 0x1f; /* ELD buffer size */
5622 I915_WRITE(G4X_AUD_CNTL_ST, i);
5623
5624 if (!eld[0])
5625 return;
5626
5627 len = min_t(uint8_t, eld[2], len);
5628 DRM_DEBUG_DRIVER("ELD size %d\n", len);
5629 for (i = 0; i < len; i++)
5630 I915_WRITE(G4X_HDMIW_HDMIEDID, *((uint32_t *)eld + i));
5631
5632 i = I915_READ(G4X_AUD_CNTL_ST);
5633 i |= eldv;
5634 I915_WRITE(G4X_AUD_CNTL_ST, i);
5635}
5636
Wang Xingchao83358c852012-08-16 22:43:37 +08005637static void haswell_write_eld(struct drm_connector *connector,
5638 struct drm_crtc *crtc)
5639{
5640 struct drm_i915_private *dev_priv = connector->dev->dev_private;
5641 uint8_t *eld = connector->eld;
5642 struct drm_device *dev = crtc->dev;
5643 uint32_t eldv;
5644 uint32_t i;
5645 int len;
5646 int pipe = to_intel_crtc(crtc)->pipe;
5647 int tmp;
5648
5649 int hdmiw_hdmiedid = HSW_AUD_EDID_DATA(pipe);
5650 int aud_cntl_st = HSW_AUD_DIP_ELD_CTRL(pipe);
5651 int aud_config = HSW_AUD_CFG(pipe);
5652 int aud_cntrl_st2 = HSW_AUD_PIN_ELD_CP_VLD;
5653
5654
5655 DRM_DEBUG_DRIVER("HDMI: Haswell Audio initialize....\n");
5656
5657 /* Audio output enable */
5658 DRM_DEBUG_DRIVER("HDMI audio: enable codec\n");
5659 tmp = I915_READ(aud_cntrl_st2);
5660 tmp |= (AUDIO_OUTPUT_ENABLE_A << (pipe * 4));
5661 I915_WRITE(aud_cntrl_st2, tmp);
5662
5663 /* Wait for 1 vertical blank */
5664 intel_wait_for_vblank(dev, pipe);
5665
5666 /* Set ELD valid state */
5667 tmp = I915_READ(aud_cntrl_st2);
5668 DRM_DEBUG_DRIVER("HDMI audio: pin eld vld status=0x%8x\n", tmp);
5669 tmp |= (AUDIO_ELD_VALID_A << (pipe * 4));
5670 I915_WRITE(aud_cntrl_st2, tmp);
5671 tmp = I915_READ(aud_cntrl_st2);
5672 DRM_DEBUG_DRIVER("HDMI audio: eld vld status=0x%8x\n", tmp);
5673
5674 /* Enable HDMI mode */
5675 tmp = I915_READ(aud_config);
5676 DRM_DEBUG_DRIVER("HDMI audio: audio conf: 0x%8x\n", tmp);
5677 /* clear N_programing_enable and N_value_index */
5678 tmp &= ~(AUD_CONFIG_N_VALUE_INDEX | AUD_CONFIG_N_PROG_ENABLE);
5679 I915_WRITE(aud_config, tmp);
5680
5681 DRM_DEBUG_DRIVER("ELD on pipe %c\n", pipe_name(pipe));
5682
5683 eldv = AUDIO_ELD_VALID_A << (pipe * 4);
5684
5685 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT)) {
5686 DRM_DEBUG_DRIVER("ELD: DisplayPort detected\n");
5687 eld[5] |= (1 << 2); /* Conn_Type, 0x1 = DisplayPort */
5688 I915_WRITE(aud_config, AUD_CONFIG_N_VALUE_INDEX); /* 0x1 = DP */
5689 } else
5690 I915_WRITE(aud_config, 0);
5691
5692 if (intel_eld_uptodate(connector,
5693 aud_cntrl_st2, eldv,
5694 aud_cntl_st, IBX_ELD_ADDRESS,
5695 hdmiw_hdmiedid))
5696 return;
5697
5698 i = I915_READ(aud_cntrl_st2);
5699 i &= ~eldv;
5700 I915_WRITE(aud_cntrl_st2, i);
5701
5702 if (!eld[0])
5703 return;
5704
5705 i = I915_READ(aud_cntl_st);
5706 i &= ~IBX_ELD_ADDRESS;
5707 I915_WRITE(aud_cntl_st, i);
5708 i = (i >> 29) & DIP_PORT_SEL_MASK; /* DIP_Port_Select, 0x1 = PortB */
5709 DRM_DEBUG_DRIVER("port num:%d\n", i);
5710
5711 len = min_t(uint8_t, eld[2], 21); /* 84 bytes of hw ELD buffer */
5712 DRM_DEBUG_DRIVER("ELD size %d\n", len);
5713 for (i = 0; i < len; i++)
5714 I915_WRITE(hdmiw_hdmiedid, *((uint32_t *)eld + i));
5715
5716 i = I915_READ(aud_cntrl_st2);
5717 i |= eldv;
5718 I915_WRITE(aud_cntrl_st2, i);
5719
5720}
5721
Wu Fengguange0dac652011-09-05 14:25:34 +08005722static void ironlake_write_eld(struct drm_connector *connector,
5723 struct drm_crtc *crtc)
5724{
5725 struct drm_i915_private *dev_priv = connector->dev->dev_private;
5726 uint8_t *eld = connector->eld;
5727 uint32_t eldv;
5728 uint32_t i;
5729 int len;
5730 int hdmiw_hdmiedid;
Wu Fengguangb6daa022012-01-06 14:41:31 -06005731 int aud_config;
Wu Fengguange0dac652011-09-05 14:25:34 +08005732 int aud_cntl_st;
5733 int aud_cntrl_st2;
Wang Xingchao9b138a82012-08-09 16:52:18 +08005734 int pipe = to_intel_crtc(crtc)->pipe;
Wu Fengguange0dac652011-09-05 14:25:34 +08005735
Wu Fengguangb3f33cb2011-12-09 20:42:17 +08005736 if (HAS_PCH_IBX(connector->dev)) {
Wang Xingchao9b138a82012-08-09 16:52:18 +08005737 hdmiw_hdmiedid = IBX_HDMIW_HDMIEDID(pipe);
5738 aud_config = IBX_AUD_CFG(pipe);
5739 aud_cntl_st = IBX_AUD_CNTL_ST(pipe);
Wu Fengguang1202b4c62011-12-09 20:42:18 +08005740 aud_cntrl_st2 = IBX_AUD_CNTL_ST2;
Wu Fengguange0dac652011-09-05 14:25:34 +08005741 } else {
Wang Xingchao9b138a82012-08-09 16:52:18 +08005742 hdmiw_hdmiedid = CPT_HDMIW_HDMIEDID(pipe);
5743 aud_config = CPT_AUD_CFG(pipe);
5744 aud_cntl_st = CPT_AUD_CNTL_ST(pipe);
Wu Fengguang1202b4c62011-12-09 20:42:18 +08005745 aud_cntrl_st2 = CPT_AUD_CNTRL_ST2;
Wu Fengguange0dac652011-09-05 14:25:34 +08005746 }
5747
Wang Xingchao9b138a82012-08-09 16:52:18 +08005748 DRM_DEBUG_DRIVER("ELD on pipe %c\n", pipe_name(pipe));
Wu Fengguange0dac652011-09-05 14:25:34 +08005749
5750 i = I915_READ(aud_cntl_st);
Wang Xingchao9b138a82012-08-09 16:52:18 +08005751 i = (i >> 29) & DIP_PORT_SEL_MASK; /* DIP_Port_Select, 0x1 = PortB */
Wu Fengguange0dac652011-09-05 14:25:34 +08005752 if (!i) {
5753 DRM_DEBUG_DRIVER("Audio directed to unknown port\n");
5754 /* operate blindly on all ports */
Wu Fengguang1202b4c62011-12-09 20:42:18 +08005755 eldv = IBX_ELD_VALIDB;
5756 eldv |= IBX_ELD_VALIDB << 4;
5757 eldv |= IBX_ELD_VALIDB << 8;
Wu Fengguange0dac652011-09-05 14:25:34 +08005758 } else {
5759 DRM_DEBUG_DRIVER("ELD on port %c\n", 'A' + i);
Wu Fengguang1202b4c62011-12-09 20:42:18 +08005760 eldv = IBX_ELD_VALIDB << ((i - 1) * 4);
Wu Fengguange0dac652011-09-05 14:25:34 +08005761 }
5762
Wu Fengguang3a9627f2011-12-09 20:42:19 +08005763 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT)) {
5764 DRM_DEBUG_DRIVER("ELD: DisplayPort detected\n");
5765 eld[5] |= (1 << 2); /* Conn_Type, 0x1 = DisplayPort */
Wu Fengguangb6daa022012-01-06 14:41:31 -06005766 I915_WRITE(aud_config, AUD_CONFIG_N_VALUE_INDEX); /* 0x1 = DP */
5767 } else
5768 I915_WRITE(aud_config, 0);
Wu Fengguang3a9627f2011-12-09 20:42:19 +08005769
5770 if (intel_eld_uptodate(connector,
5771 aud_cntrl_st2, eldv,
5772 aud_cntl_st, IBX_ELD_ADDRESS,
5773 hdmiw_hdmiedid))
5774 return;
5775
Wu Fengguange0dac652011-09-05 14:25:34 +08005776 i = I915_READ(aud_cntrl_st2);
5777 i &= ~eldv;
5778 I915_WRITE(aud_cntrl_st2, i);
5779
5780 if (!eld[0])
5781 return;
5782
Wu Fengguange0dac652011-09-05 14:25:34 +08005783 i = I915_READ(aud_cntl_st);
Wu Fengguang1202b4c62011-12-09 20:42:18 +08005784 i &= ~IBX_ELD_ADDRESS;
Wu Fengguange0dac652011-09-05 14:25:34 +08005785 I915_WRITE(aud_cntl_st, i);
5786
5787 len = min_t(uint8_t, eld[2], 21); /* 84 bytes of hw ELD buffer */
5788 DRM_DEBUG_DRIVER("ELD size %d\n", len);
5789 for (i = 0; i < len; i++)
5790 I915_WRITE(hdmiw_hdmiedid, *((uint32_t *)eld + i));
5791
5792 i = I915_READ(aud_cntrl_st2);
5793 i |= eldv;
5794 I915_WRITE(aud_cntrl_st2, i);
5795}
5796
5797void intel_write_eld(struct drm_encoder *encoder,
5798 struct drm_display_mode *mode)
5799{
5800 struct drm_crtc *crtc = encoder->crtc;
5801 struct drm_connector *connector;
5802 struct drm_device *dev = encoder->dev;
5803 struct drm_i915_private *dev_priv = dev->dev_private;
5804
5805 connector = drm_select_eld(encoder, mode);
5806 if (!connector)
5807 return;
5808
5809 DRM_DEBUG_DRIVER("ELD on [CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
5810 connector->base.id,
5811 drm_get_connector_name(connector),
5812 connector->encoder->base.id,
5813 drm_get_encoder_name(connector->encoder));
5814
5815 connector->eld[6] = drm_av_sync_delay(connector, mode) / 2;
5816
5817 if (dev_priv->display.write_eld)
5818 dev_priv->display.write_eld(connector, crtc);
5819}
5820
Jesse Barnes79e53942008-11-07 14:24:08 -08005821/** Loads the palette/gamma unit for the CRTC with the prepared values */
5822void intel_crtc_load_lut(struct drm_crtc *crtc)
5823{
5824 struct drm_device *dev = crtc->dev;
5825 struct drm_i915_private *dev_priv = dev->dev_private;
5826 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08005827 int palreg = PALETTE(intel_crtc->pipe);
Jesse Barnes79e53942008-11-07 14:24:08 -08005828 int i;
5829
5830 /* The clocks have to be on to load the palette. */
Alban Browaeysaed3f092012-02-24 17:12:45 +00005831 if (!crtc->enabled || !intel_crtc->active)
Jesse Barnes79e53942008-11-07 14:24:08 -08005832 return;
5833
Adam Jacksonf2b115e2009-12-03 17:14:42 -05005834 /* use legacy palette for Ironlake */
Eric Anholtbad720f2009-10-22 16:11:14 -07005835 if (HAS_PCH_SPLIT(dev))
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08005836 palreg = LGC_PALETTE(intel_crtc->pipe);
Zhenyu Wang2c072452009-06-05 15:38:42 +08005837
Jesse Barnes79e53942008-11-07 14:24:08 -08005838 for (i = 0; i < 256; i++) {
5839 I915_WRITE(palreg + 4 * i,
5840 (intel_crtc->lut_r[i] << 16) |
5841 (intel_crtc->lut_g[i] << 8) |
5842 intel_crtc->lut_b[i]);
5843 }
5844}
5845
Chris Wilson560b85b2010-08-07 11:01:38 +01005846static void i845_update_cursor(struct drm_crtc *crtc, u32 base)
5847{
5848 struct drm_device *dev = crtc->dev;
5849 struct drm_i915_private *dev_priv = dev->dev_private;
5850 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5851 bool visible = base != 0;
5852 u32 cntl;
5853
5854 if (intel_crtc->cursor_visible == visible)
5855 return;
5856
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08005857 cntl = I915_READ(_CURACNTR);
Chris Wilson560b85b2010-08-07 11:01:38 +01005858 if (visible) {
5859 /* On these chipsets we can only modify the base whilst
5860 * the cursor is disabled.
5861 */
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08005862 I915_WRITE(_CURABASE, base);
Chris Wilson560b85b2010-08-07 11:01:38 +01005863
5864 cntl &= ~(CURSOR_FORMAT_MASK);
5865 /* XXX width must be 64, stride 256 => 0x00 << 28 */
5866 cntl |= CURSOR_ENABLE |
5867 CURSOR_GAMMA_ENABLE |
5868 CURSOR_FORMAT_ARGB;
5869 } else
5870 cntl &= ~(CURSOR_ENABLE | CURSOR_GAMMA_ENABLE);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08005871 I915_WRITE(_CURACNTR, cntl);
Chris Wilson560b85b2010-08-07 11:01:38 +01005872
5873 intel_crtc->cursor_visible = visible;
5874}
5875
5876static void i9xx_update_cursor(struct drm_crtc *crtc, u32 base)
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);
5881 int pipe = intel_crtc->pipe;
5882 bool visible = base != 0;
5883
5884 if (intel_crtc->cursor_visible != visible) {
Jesse Barnes548f2452011-02-17 10:40:53 -08005885 uint32_t cntl = I915_READ(CURCNTR(pipe));
Chris Wilson560b85b2010-08-07 11:01:38 +01005886 if (base) {
5887 cntl &= ~(CURSOR_MODE | MCURSOR_PIPE_SELECT);
5888 cntl |= CURSOR_MODE_64_ARGB_AX | MCURSOR_GAMMA_ENABLE;
5889 cntl |= pipe << 28; /* Connect to correct pipe */
5890 } else {
5891 cntl &= ~(CURSOR_MODE | MCURSOR_GAMMA_ENABLE);
5892 cntl |= CURSOR_MODE_DISABLE;
5893 }
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08005894 I915_WRITE(CURCNTR(pipe), cntl);
Chris Wilson560b85b2010-08-07 11:01:38 +01005895
5896 intel_crtc->cursor_visible = visible;
5897 }
5898 /* and commit changes on next vblank */
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08005899 I915_WRITE(CURBASE(pipe), base);
Chris Wilson560b85b2010-08-07 11:01:38 +01005900}
5901
Jesse Barnes65a21cd2011-10-12 11:10:21 -07005902static void ivb_update_cursor(struct drm_crtc *crtc, u32 base)
5903{
5904 struct drm_device *dev = crtc->dev;
5905 struct drm_i915_private *dev_priv = dev->dev_private;
5906 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5907 int pipe = intel_crtc->pipe;
5908 bool visible = base != 0;
5909
5910 if (intel_crtc->cursor_visible != visible) {
5911 uint32_t cntl = I915_READ(CURCNTR_IVB(pipe));
5912 if (base) {
5913 cntl &= ~CURSOR_MODE;
5914 cntl |= CURSOR_MODE_64_ARGB_AX | MCURSOR_GAMMA_ENABLE;
5915 } else {
5916 cntl &= ~(CURSOR_MODE | MCURSOR_GAMMA_ENABLE);
5917 cntl |= CURSOR_MODE_DISABLE;
5918 }
5919 I915_WRITE(CURCNTR_IVB(pipe), cntl);
5920
5921 intel_crtc->cursor_visible = visible;
5922 }
5923 /* and commit changes on next vblank */
5924 I915_WRITE(CURBASE_IVB(pipe), base);
5925}
5926
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01005927/* If no-part of the cursor is visible on the framebuffer, then the GPU may hang... */
Chris Wilson6b383a72010-09-13 13:54:26 +01005928static void intel_crtc_update_cursor(struct drm_crtc *crtc,
5929 bool on)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01005930{
5931 struct drm_device *dev = crtc->dev;
5932 struct drm_i915_private *dev_priv = dev->dev_private;
5933 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5934 int pipe = intel_crtc->pipe;
5935 int x = intel_crtc->cursor_x;
5936 int y = intel_crtc->cursor_y;
Chris Wilson560b85b2010-08-07 11:01:38 +01005937 u32 base, pos;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01005938 bool visible;
5939
5940 pos = 0;
5941
Chris Wilson6b383a72010-09-13 13:54:26 +01005942 if (on && crtc->enabled && crtc->fb) {
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01005943 base = intel_crtc->cursor_addr;
5944 if (x > (int) crtc->fb->width)
5945 base = 0;
5946
5947 if (y > (int) crtc->fb->height)
5948 base = 0;
5949 } else
5950 base = 0;
5951
5952 if (x < 0) {
5953 if (x + intel_crtc->cursor_width < 0)
5954 base = 0;
5955
5956 pos |= CURSOR_POS_SIGN << CURSOR_X_SHIFT;
5957 x = -x;
5958 }
5959 pos |= x << CURSOR_X_SHIFT;
5960
5961 if (y < 0) {
5962 if (y + intel_crtc->cursor_height < 0)
5963 base = 0;
5964
5965 pos |= CURSOR_POS_SIGN << CURSOR_Y_SHIFT;
5966 y = -y;
5967 }
5968 pos |= y << CURSOR_Y_SHIFT;
5969
5970 visible = base != 0;
Chris Wilson560b85b2010-08-07 11:01:38 +01005971 if (!visible && !intel_crtc->cursor_visible)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01005972 return;
5973
Eugeni Dodonov0cd83aa2012-04-13 17:08:48 -03005974 if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev)) {
Jesse Barnes65a21cd2011-10-12 11:10:21 -07005975 I915_WRITE(CURPOS_IVB(pipe), pos);
5976 ivb_update_cursor(crtc, base);
5977 } else {
5978 I915_WRITE(CURPOS(pipe), pos);
5979 if (IS_845G(dev) || IS_I865G(dev))
5980 i845_update_cursor(crtc, base);
5981 else
5982 i9xx_update_cursor(crtc, base);
5983 }
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01005984}
5985
Jesse Barnes79e53942008-11-07 14:24:08 -08005986static int intel_crtc_cursor_set(struct drm_crtc *crtc,
Chris Wilson05394f32010-11-08 19:18:58 +00005987 struct drm_file *file,
Jesse Barnes79e53942008-11-07 14:24:08 -08005988 uint32_t handle,
5989 uint32_t width, uint32_t height)
5990{
5991 struct drm_device *dev = crtc->dev;
5992 struct drm_i915_private *dev_priv = dev->dev_private;
5993 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Chris Wilson05394f32010-11-08 19:18:58 +00005994 struct drm_i915_gem_object *obj;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01005995 uint32_t addr;
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05005996 int ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08005997
Jesse Barnes79e53942008-11-07 14:24:08 -08005998 /* if we want to turn off the cursor ignore width and height */
5999 if (!handle) {
Zhao Yakui28c97732009-10-09 11:39:41 +08006000 DRM_DEBUG_KMS("cursor off\n");
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05006001 addr = 0;
Chris Wilson05394f32010-11-08 19:18:58 +00006002 obj = NULL;
Pierre Willenbrock50044172009-02-23 10:12:15 +10006003 mutex_lock(&dev->struct_mutex);
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05006004 goto finish;
Jesse Barnes79e53942008-11-07 14:24:08 -08006005 }
6006
6007 /* Currently we only support 64x64 cursors */
6008 if (width != 64 || height != 64) {
6009 DRM_ERROR("we currently only support 64x64 cursors\n");
6010 return -EINVAL;
6011 }
6012
Chris Wilson05394f32010-11-08 19:18:58 +00006013 obj = to_intel_bo(drm_gem_object_lookup(dev, file, handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00006014 if (&obj->base == NULL)
Jesse Barnes79e53942008-11-07 14:24:08 -08006015 return -ENOENT;
6016
Chris Wilson05394f32010-11-08 19:18:58 +00006017 if (obj->base.size < width * height * 4) {
Jesse Barnes79e53942008-11-07 14:24:08 -08006018 DRM_ERROR("buffer is to small\n");
Dave Airlie34b8686e2009-01-15 14:03:07 +10006019 ret = -ENOMEM;
6020 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -08006021 }
6022
Dave Airlie71acb5e2008-12-30 20:31:46 +10006023 /* we only need to pin inside GTT if cursor is non-phy */
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05006024 mutex_lock(&dev->struct_mutex);
Kristian Høgsbergb295d1b2009-12-16 15:16:17 -05006025 if (!dev_priv->info->cursor_needs_physical) {
Chris Wilsond9e86c02010-11-10 16:40:20 +00006026 if (obj->tiling_mode) {
6027 DRM_ERROR("cursor cannot be tiled\n");
6028 ret = -EINVAL;
6029 goto fail_locked;
6030 }
6031
Chris Wilson2da3b9b2011-04-14 09:41:17 +01006032 ret = i915_gem_object_pin_to_display_plane(obj, 0, NULL);
Chris Wilsone7b526b2010-06-02 08:30:48 +01006033 if (ret) {
6034 DRM_ERROR("failed to move cursor bo into the GTT\n");
Chris Wilson2da3b9b2011-04-14 09:41:17 +01006035 goto fail_locked;
Chris Wilsone7b526b2010-06-02 08:30:48 +01006036 }
6037
Chris Wilsond9e86c02010-11-10 16:40:20 +00006038 ret = i915_gem_object_put_fence(obj);
6039 if (ret) {
Chris Wilson2da3b9b2011-04-14 09:41:17 +01006040 DRM_ERROR("failed to release fence for cursor");
Chris Wilsond9e86c02010-11-10 16:40:20 +00006041 goto fail_unpin;
6042 }
6043
Chris Wilson05394f32010-11-08 19:18:58 +00006044 addr = obj->gtt_offset;
Dave Airlie71acb5e2008-12-30 20:31:46 +10006045 } else {
Chris Wilson6eeefaf2010-08-07 11:01:39 +01006046 int align = IS_I830(dev) ? 16 * 1024 : 256;
Chris Wilson05394f32010-11-08 19:18:58 +00006047 ret = i915_gem_attach_phys_object(dev, obj,
Chris Wilson6eeefaf2010-08-07 11:01:39 +01006048 (intel_crtc->pipe == 0) ? I915_GEM_PHYS_CURSOR_0 : I915_GEM_PHYS_CURSOR_1,
6049 align);
Dave Airlie71acb5e2008-12-30 20:31:46 +10006050 if (ret) {
6051 DRM_ERROR("failed to attach phys object\n");
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05006052 goto fail_locked;
Dave Airlie71acb5e2008-12-30 20:31:46 +10006053 }
Chris Wilson05394f32010-11-08 19:18:58 +00006054 addr = obj->phys_obj->handle->busaddr;
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05006055 }
6056
Chris Wilsona6c45cf2010-09-17 00:32:17 +01006057 if (IS_GEN2(dev))
Jesse Barnes14b60392009-05-20 16:47:08 -04006058 I915_WRITE(CURSIZE, (height << 12) | width);
6059
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05006060 finish:
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05006061 if (intel_crtc->cursor_bo) {
Kristian Høgsbergb295d1b2009-12-16 15:16:17 -05006062 if (dev_priv->info->cursor_needs_physical) {
Chris Wilson05394f32010-11-08 19:18:58 +00006063 if (intel_crtc->cursor_bo != obj)
Dave Airlie71acb5e2008-12-30 20:31:46 +10006064 i915_gem_detach_phys_object(dev, intel_crtc->cursor_bo);
6065 } else
6066 i915_gem_object_unpin(intel_crtc->cursor_bo);
Chris Wilson05394f32010-11-08 19:18:58 +00006067 drm_gem_object_unreference(&intel_crtc->cursor_bo->base);
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05006068 }
Jesse Barnes80824002009-09-10 15:28:06 -07006069
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05006070 mutex_unlock(&dev->struct_mutex);
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05006071
6072 intel_crtc->cursor_addr = addr;
Chris Wilson05394f32010-11-08 19:18:58 +00006073 intel_crtc->cursor_bo = obj;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01006074 intel_crtc->cursor_width = width;
6075 intel_crtc->cursor_height = height;
6076
Chris Wilson6b383a72010-09-13 13:54:26 +01006077 intel_crtc_update_cursor(crtc, true);
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05006078
Jesse Barnes79e53942008-11-07 14:24:08 -08006079 return 0;
Chris Wilsone7b526b2010-06-02 08:30:48 +01006080fail_unpin:
Chris Wilson05394f32010-11-08 19:18:58 +00006081 i915_gem_object_unpin(obj);
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05006082fail_locked:
Dave Airlie34b8686e2009-01-15 14:03:07 +10006083 mutex_unlock(&dev->struct_mutex);
Luca Barbieribc9025b2010-02-09 05:49:12 +00006084fail:
Chris Wilson05394f32010-11-08 19:18:58 +00006085 drm_gem_object_unreference_unlocked(&obj->base);
Dave Airlie34b8686e2009-01-15 14:03:07 +10006086 return ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08006087}
6088
6089static int intel_crtc_cursor_move(struct drm_crtc *crtc, int x, int y)
6090{
Jesse Barnes79e53942008-11-07 14:24:08 -08006091 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08006092
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01006093 intel_crtc->cursor_x = x;
6094 intel_crtc->cursor_y = y;
Jesse Barnes652c3932009-08-17 13:31:43 -07006095
Chris Wilson6b383a72010-09-13 13:54:26 +01006096 intel_crtc_update_cursor(crtc, true);
Jesse Barnes79e53942008-11-07 14:24:08 -08006097
6098 return 0;
6099}
6100
6101/** Sets the color ramps on behalf of RandR */
6102void intel_crtc_fb_gamma_set(struct drm_crtc *crtc, u16 red, u16 green,
6103 u16 blue, int regno)
6104{
6105 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6106
6107 intel_crtc->lut_r[regno] = red >> 8;
6108 intel_crtc->lut_g[regno] = green >> 8;
6109 intel_crtc->lut_b[regno] = blue >> 8;
6110}
6111
Dave Airlieb8c00ac2009-10-06 13:54:01 +10006112void intel_crtc_fb_gamma_get(struct drm_crtc *crtc, u16 *red, u16 *green,
6113 u16 *blue, int regno)
6114{
6115 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6116
6117 *red = intel_crtc->lut_r[regno] << 8;
6118 *green = intel_crtc->lut_g[regno] << 8;
6119 *blue = intel_crtc->lut_b[regno] << 8;
6120}
6121
Jesse Barnes79e53942008-11-07 14:24:08 -08006122static void intel_crtc_gamma_set(struct drm_crtc *crtc, u16 *red, u16 *green,
James Simmons72034252010-08-03 01:33:19 +01006123 u16 *blue, uint32_t start, uint32_t size)
Jesse Barnes79e53942008-11-07 14:24:08 -08006124{
James Simmons72034252010-08-03 01:33:19 +01006125 int end = (start + size > 256) ? 256 : start + size, i;
Jesse Barnes79e53942008-11-07 14:24:08 -08006126 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08006127
James Simmons72034252010-08-03 01:33:19 +01006128 for (i = start; i < end; i++) {
Jesse Barnes79e53942008-11-07 14:24:08 -08006129 intel_crtc->lut_r[i] = red[i] >> 8;
6130 intel_crtc->lut_g[i] = green[i] >> 8;
6131 intel_crtc->lut_b[i] = blue[i] >> 8;
6132 }
6133
6134 intel_crtc_load_lut(crtc);
6135}
6136
6137/**
6138 * Get a pipe with a simple mode set on it for doing load-based monitor
6139 * detection.
6140 *
6141 * It will be up to the load-detect code to adjust the pipe as appropriate for
Eric Anholtc751ce42010-03-25 11:48:48 -07006142 * its requirements. The pipe will be connected to no other encoders.
Jesse Barnes79e53942008-11-07 14:24:08 -08006143 *
Eric Anholtc751ce42010-03-25 11:48:48 -07006144 * Currently this code will only succeed if there is a pipe with no encoders
Jesse Barnes79e53942008-11-07 14:24:08 -08006145 * configured for it. In the future, it could choose to temporarily disable
6146 * some outputs to free up a pipe for its use.
6147 *
6148 * \return crtc, or NULL if no pipes are available.
6149 */
6150
6151/* VESA 640x480x72Hz mode to set on the pipe */
6152static struct drm_display_mode load_detect_mode = {
6153 DRM_MODE("640x480", DRM_MODE_TYPE_DEFAULT, 31500, 640, 664,
6154 704, 832, 0, 480, 489, 491, 520, 0, DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
6155};
6156
Chris Wilsond2dff872011-04-19 08:36:26 +01006157static struct drm_framebuffer *
6158intel_framebuffer_create(struct drm_device *dev,
Jesse Barnes308e5bc2011-11-14 14:51:28 -08006159 struct drm_mode_fb_cmd2 *mode_cmd,
Chris Wilsond2dff872011-04-19 08:36:26 +01006160 struct drm_i915_gem_object *obj)
6161{
6162 struct intel_framebuffer *intel_fb;
6163 int ret;
6164
6165 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
6166 if (!intel_fb) {
6167 drm_gem_object_unreference_unlocked(&obj->base);
6168 return ERR_PTR(-ENOMEM);
6169 }
6170
6171 ret = intel_framebuffer_init(dev, intel_fb, mode_cmd, obj);
6172 if (ret) {
6173 drm_gem_object_unreference_unlocked(&obj->base);
6174 kfree(intel_fb);
6175 return ERR_PTR(ret);
6176 }
6177
6178 return &intel_fb->base;
6179}
6180
6181static u32
6182intel_framebuffer_pitch_for_width(int width, int bpp)
6183{
6184 u32 pitch = DIV_ROUND_UP(width * bpp, 8);
6185 return ALIGN(pitch, 64);
6186}
6187
6188static u32
6189intel_framebuffer_size_for_mode(struct drm_display_mode *mode, int bpp)
6190{
6191 u32 pitch = intel_framebuffer_pitch_for_width(mode->hdisplay, bpp);
6192 return ALIGN(pitch * mode->vdisplay, PAGE_SIZE);
6193}
6194
6195static struct drm_framebuffer *
6196intel_framebuffer_create_for_mode(struct drm_device *dev,
6197 struct drm_display_mode *mode,
6198 int depth, int bpp)
6199{
6200 struct drm_i915_gem_object *obj;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08006201 struct drm_mode_fb_cmd2 mode_cmd;
Chris Wilsond2dff872011-04-19 08:36:26 +01006202
6203 obj = i915_gem_alloc_object(dev,
6204 intel_framebuffer_size_for_mode(mode, bpp));
6205 if (obj == NULL)
6206 return ERR_PTR(-ENOMEM);
6207
6208 mode_cmd.width = mode->hdisplay;
6209 mode_cmd.height = mode->vdisplay;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08006210 mode_cmd.pitches[0] = intel_framebuffer_pitch_for_width(mode_cmd.width,
6211 bpp);
Dave Airlie5ca0c342012-02-23 15:33:40 +00006212 mode_cmd.pixel_format = drm_mode_legacy_fb_format(bpp, depth);
Chris Wilsond2dff872011-04-19 08:36:26 +01006213
6214 return intel_framebuffer_create(dev, &mode_cmd, obj);
6215}
6216
6217static struct drm_framebuffer *
6218mode_fits_in_fbdev(struct drm_device *dev,
6219 struct drm_display_mode *mode)
6220{
6221 struct drm_i915_private *dev_priv = dev->dev_private;
6222 struct drm_i915_gem_object *obj;
6223 struct drm_framebuffer *fb;
6224
6225 if (dev_priv->fbdev == NULL)
6226 return NULL;
6227
6228 obj = dev_priv->fbdev->ifb.obj;
6229 if (obj == NULL)
6230 return NULL;
6231
6232 fb = &dev_priv->fbdev->ifb.base;
Ville Syrjälä01f2c772011-12-20 00:06:49 +02006233 if (fb->pitches[0] < intel_framebuffer_pitch_for_width(mode->hdisplay,
6234 fb->bits_per_pixel))
Chris Wilsond2dff872011-04-19 08:36:26 +01006235 return NULL;
6236
Ville Syrjälä01f2c772011-12-20 00:06:49 +02006237 if (obj->base.size < mode->vdisplay * fb->pitches[0])
Chris Wilsond2dff872011-04-19 08:36:26 +01006238 return NULL;
6239
6240 return fb;
6241}
6242
Daniel Vetterd2434ab2012-08-12 21:20:10 +02006243bool intel_get_load_detect_pipe(struct drm_connector *connector,
Chris Wilson71731882011-04-19 23:10:58 +01006244 struct drm_display_mode *mode,
Chris Wilson8261b192011-04-19 23:18:09 +01006245 struct intel_load_detect_pipe *old)
Jesse Barnes79e53942008-11-07 14:24:08 -08006246{
6247 struct intel_crtc *intel_crtc;
Daniel Vetterd2434ab2012-08-12 21:20:10 +02006248 struct intel_encoder *intel_encoder =
6249 intel_attached_encoder(connector);
Jesse Barnes79e53942008-11-07 14:24:08 -08006250 struct drm_crtc *possible_crtc;
Chris Wilson4ef69c72010-09-09 15:14:28 +01006251 struct drm_encoder *encoder = &intel_encoder->base;
Jesse Barnes79e53942008-11-07 14:24:08 -08006252 struct drm_crtc *crtc = NULL;
6253 struct drm_device *dev = encoder->dev;
Daniel Vetter94352cf2012-07-05 22:51:56 +02006254 struct drm_framebuffer *fb;
Jesse Barnes79e53942008-11-07 14:24:08 -08006255 int i = -1;
6256
Chris Wilsond2dff872011-04-19 08:36:26 +01006257 DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
6258 connector->base.id, drm_get_connector_name(connector),
6259 encoder->base.id, drm_get_encoder_name(encoder));
6260
Jesse Barnes79e53942008-11-07 14:24:08 -08006261 /*
6262 * Algorithm gets a little messy:
Chris Wilson7a5e4802011-04-19 23:21:12 +01006263 *
Jesse Barnes79e53942008-11-07 14:24:08 -08006264 * - if the connector already has an assigned crtc, use it (but make
6265 * sure it's on first)
Chris Wilson7a5e4802011-04-19 23:21:12 +01006266 *
Jesse Barnes79e53942008-11-07 14:24:08 -08006267 * - try to find the first unused crtc that can drive this connector,
6268 * and use that if we find one
Jesse Barnes79e53942008-11-07 14:24:08 -08006269 */
6270
6271 /* See if we already have a CRTC for this connector */
6272 if (encoder->crtc) {
6273 crtc = encoder->crtc;
Chris Wilson8261b192011-04-19 23:18:09 +01006274
Daniel Vetter24218aa2012-08-12 19:27:11 +02006275 old->dpms_mode = connector->dpms;
Chris Wilson8261b192011-04-19 23:18:09 +01006276 old->load_detect_temp = false;
6277
6278 /* Make sure the crtc and connector are running */
Daniel Vetter24218aa2012-08-12 19:27:11 +02006279 if (connector->dpms != DRM_MODE_DPMS_ON)
6280 connector->funcs->dpms(connector, DRM_MODE_DPMS_ON);
Chris Wilson8261b192011-04-19 23:18:09 +01006281
Chris Wilson71731882011-04-19 23:10:58 +01006282 return true;
Jesse Barnes79e53942008-11-07 14:24:08 -08006283 }
6284
6285 /* Find an unused one (if possible) */
6286 list_for_each_entry(possible_crtc, &dev->mode_config.crtc_list, head) {
6287 i++;
6288 if (!(encoder->possible_crtcs & (1 << i)))
6289 continue;
6290 if (!possible_crtc->enabled) {
6291 crtc = possible_crtc;
6292 break;
6293 }
Jesse Barnes79e53942008-11-07 14:24:08 -08006294 }
6295
6296 /*
6297 * If we didn't find an unused CRTC, don't use any.
6298 */
6299 if (!crtc) {
Chris Wilson71731882011-04-19 23:10:58 +01006300 DRM_DEBUG_KMS("no pipe available for load-detect\n");
6301 return false;
Jesse Barnes79e53942008-11-07 14:24:08 -08006302 }
6303
Daniel Vetterfc303102012-07-09 10:40:58 +02006304 intel_encoder->new_crtc = to_intel_crtc(crtc);
6305 to_intel_connector(connector)->new_encoder = intel_encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08006306
6307 intel_crtc = to_intel_crtc(crtc);
Daniel Vetter24218aa2012-08-12 19:27:11 +02006308 old->dpms_mode = connector->dpms;
Chris Wilson8261b192011-04-19 23:18:09 +01006309 old->load_detect_temp = true;
Chris Wilsond2dff872011-04-19 08:36:26 +01006310 old->release_fb = NULL;
Jesse Barnes79e53942008-11-07 14:24:08 -08006311
Chris Wilson64927112011-04-20 07:25:26 +01006312 if (!mode)
6313 mode = &load_detect_mode;
Jesse Barnes79e53942008-11-07 14:24:08 -08006314
Chris Wilsond2dff872011-04-19 08:36:26 +01006315 /* We need a framebuffer large enough to accommodate all accesses
6316 * that the plane may generate whilst we perform load detection.
6317 * We can not rely on the fbcon either being present (we get called
6318 * during its initialisation to detect all boot displays, or it may
6319 * not even exist) or that it is large enough to satisfy the
6320 * requested mode.
6321 */
Daniel Vetter94352cf2012-07-05 22:51:56 +02006322 fb = mode_fits_in_fbdev(dev, mode);
6323 if (fb == NULL) {
Chris Wilsond2dff872011-04-19 08:36:26 +01006324 DRM_DEBUG_KMS("creating tmp fb for load-detection\n");
Daniel Vetter94352cf2012-07-05 22:51:56 +02006325 fb = intel_framebuffer_create_for_mode(dev, mode, 24, 32);
6326 old->release_fb = fb;
Chris Wilsond2dff872011-04-19 08:36:26 +01006327 } else
6328 DRM_DEBUG_KMS("reusing fbdev for load-detection framebuffer\n");
Daniel Vetter94352cf2012-07-05 22:51:56 +02006329 if (IS_ERR(fb)) {
Chris Wilsond2dff872011-04-19 08:36:26 +01006330 DRM_DEBUG_KMS("failed to allocate framebuffer for load-detection\n");
Daniel Vetter24218aa2012-08-12 19:27:11 +02006331 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -08006332 }
Chris Wilsond2dff872011-04-19 08:36:26 +01006333
Daniel Vetter94352cf2012-07-05 22:51:56 +02006334 if (!intel_set_mode(crtc, mode, 0, 0, fb)) {
Chris Wilson64927112011-04-20 07:25:26 +01006335 DRM_DEBUG_KMS("failed to set mode on load-detect pipe\n");
Chris Wilsond2dff872011-04-19 08:36:26 +01006336 if (old->release_fb)
6337 old->release_fb->funcs->destroy(old->release_fb);
Daniel Vetter24218aa2012-08-12 19:27:11 +02006338 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -08006339 }
Chris Wilson71731882011-04-19 23:10:58 +01006340
Jesse Barnes79e53942008-11-07 14:24:08 -08006341 /* let the connector get through one full cycle before testing */
Jesse Barnes9d0498a2010-08-18 13:20:54 -07006342 intel_wait_for_vblank(dev, intel_crtc->pipe);
Jesse Barnes79e53942008-11-07 14:24:08 -08006343
Chris Wilson71731882011-04-19 23:10:58 +01006344 return true;
Daniel Vetter24218aa2012-08-12 19:27:11 +02006345fail:
6346 connector->encoder = NULL;
6347 encoder->crtc = NULL;
Daniel Vetter24218aa2012-08-12 19:27:11 +02006348 return false;
Jesse Barnes79e53942008-11-07 14:24:08 -08006349}
6350
Daniel Vetterd2434ab2012-08-12 21:20:10 +02006351void intel_release_load_detect_pipe(struct drm_connector *connector,
Chris Wilson8261b192011-04-19 23:18:09 +01006352 struct intel_load_detect_pipe *old)
Jesse Barnes79e53942008-11-07 14:24:08 -08006353{
Daniel Vetterd2434ab2012-08-12 21:20:10 +02006354 struct intel_encoder *intel_encoder =
6355 intel_attached_encoder(connector);
Chris Wilson4ef69c72010-09-09 15:14:28 +01006356 struct drm_encoder *encoder = &intel_encoder->base;
Jesse Barnes79e53942008-11-07 14:24:08 -08006357
Chris Wilsond2dff872011-04-19 08:36:26 +01006358 DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
6359 connector->base.id, drm_get_connector_name(connector),
6360 encoder->base.id, drm_get_encoder_name(encoder));
6361
Chris Wilson8261b192011-04-19 23:18:09 +01006362 if (old->load_detect_temp) {
Daniel Vetterfc303102012-07-09 10:40:58 +02006363 struct drm_crtc *crtc = encoder->crtc;
6364
6365 to_intel_connector(connector)->new_encoder = NULL;
6366 intel_encoder->new_crtc = NULL;
6367 intel_set_mode(crtc, NULL, 0, 0, NULL);
Chris Wilsond2dff872011-04-19 08:36:26 +01006368
6369 if (old->release_fb)
6370 old->release_fb->funcs->destroy(old->release_fb);
6371
Chris Wilson0622a532011-04-21 09:32:11 +01006372 return;
Jesse Barnes79e53942008-11-07 14:24:08 -08006373 }
6374
Eric Anholtc751ce42010-03-25 11:48:48 -07006375 /* Switch crtc and encoder back off if necessary */
Daniel Vetter24218aa2012-08-12 19:27:11 +02006376 if (old->dpms_mode != DRM_MODE_DPMS_ON)
6377 connector->funcs->dpms(connector, old->dpms_mode);
Jesse Barnes79e53942008-11-07 14:24:08 -08006378}
6379
6380/* Returns the clock of the currently programmed mode of the given pipe. */
6381static int intel_crtc_clock_get(struct drm_device *dev, struct drm_crtc *crtc)
6382{
6383 struct drm_i915_private *dev_priv = dev->dev_private;
6384 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6385 int pipe = intel_crtc->pipe;
Jesse Barnes548f2452011-02-17 10:40:53 -08006386 u32 dpll = I915_READ(DPLL(pipe));
Jesse Barnes79e53942008-11-07 14:24:08 -08006387 u32 fp;
6388 intel_clock_t clock;
6389
6390 if ((dpll & DISPLAY_RATE_SELECT_FPA1) == 0)
Chris Wilson39adb7a2011-04-22 22:17:21 +01006391 fp = I915_READ(FP0(pipe));
Jesse Barnes79e53942008-11-07 14:24:08 -08006392 else
Chris Wilson39adb7a2011-04-22 22:17:21 +01006393 fp = I915_READ(FP1(pipe));
Jesse Barnes79e53942008-11-07 14:24:08 -08006394
6395 clock.m1 = (fp & FP_M1_DIV_MASK) >> FP_M1_DIV_SHIFT;
Adam Jacksonf2b115e2009-12-03 17:14:42 -05006396 if (IS_PINEVIEW(dev)) {
6397 clock.n = ffs((fp & FP_N_PINEVIEW_DIV_MASK) >> FP_N_DIV_SHIFT) - 1;
6398 clock.m2 = (fp & FP_M2_PINEVIEW_DIV_MASK) >> FP_M2_DIV_SHIFT;
Shaohua Li21778322009-02-23 15:19:16 +08006399 } else {
6400 clock.n = (fp & FP_N_DIV_MASK) >> FP_N_DIV_SHIFT;
6401 clock.m2 = (fp & FP_M2_DIV_MASK) >> FP_M2_DIV_SHIFT;
6402 }
6403
Chris Wilsona6c45cf2010-09-17 00:32:17 +01006404 if (!IS_GEN2(dev)) {
Adam Jacksonf2b115e2009-12-03 17:14:42 -05006405 if (IS_PINEVIEW(dev))
6406 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_PINEVIEW) >>
6407 DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW);
Shaohua Li21778322009-02-23 15:19:16 +08006408 else
6409 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK) >>
Jesse Barnes79e53942008-11-07 14:24:08 -08006410 DPLL_FPA01_P1_POST_DIV_SHIFT);
6411
6412 switch (dpll & DPLL_MODE_MASK) {
6413 case DPLLB_MODE_DAC_SERIAL:
6414 clock.p2 = dpll & DPLL_DAC_SERIAL_P2_CLOCK_DIV_5 ?
6415 5 : 10;
6416 break;
6417 case DPLLB_MODE_LVDS:
6418 clock.p2 = dpll & DPLLB_LVDS_P2_CLOCK_DIV_7 ?
6419 7 : 14;
6420 break;
6421 default:
Zhao Yakui28c97732009-10-09 11:39:41 +08006422 DRM_DEBUG_KMS("Unknown DPLL mode %08x in programmed "
Jesse Barnes79e53942008-11-07 14:24:08 -08006423 "mode\n", (int)(dpll & DPLL_MODE_MASK));
6424 return 0;
6425 }
6426
6427 /* XXX: Handle the 100Mhz refclk */
Shaohua Li21778322009-02-23 15:19:16 +08006428 intel_clock(dev, 96000, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08006429 } else {
6430 bool is_lvds = (pipe == 1) && (I915_READ(LVDS) & LVDS_PORT_EN);
6431
6432 if (is_lvds) {
6433 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830_LVDS) >>
6434 DPLL_FPA01_P1_POST_DIV_SHIFT);
6435 clock.p2 = 14;
6436
6437 if ((dpll & PLL_REF_INPUT_MASK) ==
6438 PLLB_REF_INPUT_SPREADSPECTRUMIN) {
6439 /* XXX: might not be 66MHz */
Shaohua Li21778322009-02-23 15:19:16 +08006440 intel_clock(dev, 66000, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08006441 } else
Shaohua Li21778322009-02-23 15:19:16 +08006442 intel_clock(dev, 48000, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08006443 } else {
6444 if (dpll & PLL_P1_DIVIDE_BY_TWO)
6445 clock.p1 = 2;
6446 else {
6447 clock.p1 = ((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830) >>
6448 DPLL_FPA01_P1_POST_DIV_SHIFT) + 2;
6449 }
6450 if (dpll & PLL_P2_DIVIDE_BY_4)
6451 clock.p2 = 4;
6452 else
6453 clock.p2 = 2;
6454
Shaohua Li21778322009-02-23 15:19:16 +08006455 intel_clock(dev, 48000, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08006456 }
6457 }
6458
6459 /* XXX: It would be nice to validate the clocks, but we can't reuse
6460 * i830PllIsValid() because it relies on the xf86_config connector
6461 * configuration being accurate, which it isn't necessarily.
6462 */
6463
6464 return clock.dot;
6465}
6466
6467/** Returns the currently programmed mode of the given pipe. */
6468struct drm_display_mode *intel_crtc_mode_get(struct drm_device *dev,
6469 struct drm_crtc *crtc)
6470{
Jesse Barnes548f2452011-02-17 10:40:53 -08006471 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -08006472 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6473 int pipe = intel_crtc->pipe;
6474 struct drm_display_mode *mode;
Jesse Barnes548f2452011-02-17 10:40:53 -08006475 int htot = I915_READ(HTOTAL(pipe));
6476 int hsync = I915_READ(HSYNC(pipe));
6477 int vtot = I915_READ(VTOTAL(pipe));
6478 int vsync = I915_READ(VSYNC(pipe));
Jesse Barnes79e53942008-11-07 14:24:08 -08006479
6480 mode = kzalloc(sizeof(*mode), GFP_KERNEL);
6481 if (!mode)
6482 return NULL;
6483
6484 mode->clock = intel_crtc_clock_get(dev, crtc);
6485 mode->hdisplay = (htot & 0xffff) + 1;
6486 mode->htotal = ((htot & 0xffff0000) >> 16) + 1;
6487 mode->hsync_start = (hsync & 0xffff) + 1;
6488 mode->hsync_end = ((hsync & 0xffff0000) >> 16) + 1;
6489 mode->vdisplay = (vtot & 0xffff) + 1;
6490 mode->vtotal = ((vtot & 0xffff0000) >> 16) + 1;
6491 mode->vsync_start = (vsync & 0xffff) + 1;
6492 mode->vsync_end = ((vsync & 0xffff0000) >> 16) + 1;
6493
6494 drm_mode_set_name(mode);
Jesse Barnes79e53942008-11-07 14:24:08 -08006495
6496 return mode;
6497}
6498
Daniel Vetter3dec0092010-08-20 21:40:52 +02006499static void intel_increase_pllclock(struct drm_crtc *crtc)
Jesse Barnes652c3932009-08-17 13:31:43 -07006500{
6501 struct drm_device *dev = crtc->dev;
6502 drm_i915_private_t *dev_priv = dev->dev_private;
6503 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6504 int pipe = intel_crtc->pipe;
Jesse Barnesdbdc6472010-12-30 09:36:39 -08006505 int dpll_reg = DPLL(pipe);
6506 int dpll;
Jesse Barnes652c3932009-08-17 13:31:43 -07006507
Eric Anholtbad720f2009-10-22 16:11:14 -07006508 if (HAS_PCH_SPLIT(dev))
Jesse Barnes652c3932009-08-17 13:31:43 -07006509 return;
6510
6511 if (!dev_priv->lvds_downclock_avail)
6512 return;
6513
Jesse Barnesdbdc6472010-12-30 09:36:39 -08006514 dpll = I915_READ(dpll_reg);
Jesse Barnes652c3932009-08-17 13:31:43 -07006515 if (!HAS_PIPE_CXSR(dev) && (dpll & DISPLAY_RATE_SELECT_FPA1)) {
Zhao Yakui44d98a62009-10-09 11:39:40 +08006516 DRM_DEBUG_DRIVER("upclocking LVDS\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07006517
Sean Paul8ac5a6d2012-02-13 13:14:51 -05006518 assert_panel_unlocked(dev_priv, pipe);
Jesse Barnes652c3932009-08-17 13:31:43 -07006519
6520 dpll &= ~DISPLAY_RATE_SELECT_FPA1;
6521 I915_WRITE(dpll_reg, dpll);
Jesse Barnes9d0498a2010-08-18 13:20:54 -07006522 intel_wait_for_vblank(dev, pipe);
Jesse Barnesdbdc6472010-12-30 09:36:39 -08006523
Jesse Barnes652c3932009-08-17 13:31:43 -07006524 dpll = I915_READ(dpll_reg);
6525 if (dpll & DISPLAY_RATE_SELECT_FPA1)
Zhao Yakui44d98a62009-10-09 11:39:40 +08006526 DRM_DEBUG_DRIVER("failed to upclock LVDS!\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07006527 }
Jesse Barnes652c3932009-08-17 13:31:43 -07006528}
6529
6530static void intel_decrease_pllclock(struct drm_crtc *crtc)
6531{
6532 struct drm_device *dev = crtc->dev;
6533 drm_i915_private_t *dev_priv = dev->dev_private;
6534 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes652c3932009-08-17 13:31:43 -07006535
Eric Anholtbad720f2009-10-22 16:11:14 -07006536 if (HAS_PCH_SPLIT(dev))
Jesse Barnes652c3932009-08-17 13:31:43 -07006537 return;
6538
6539 if (!dev_priv->lvds_downclock_avail)
6540 return;
6541
6542 /*
6543 * Since this is called by a timer, we should never get here in
6544 * the manual case.
6545 */
6546 if (!HAS_PIPE_CXSR(dev) && intel_crtc->lowfreq_avail) {
Chris Wilson074b5e12012-05-02 12:07:06 +01006547 int pipe = intel_crtc->pipe;
6548 int dpll_reg = DPLL(pipe);
Daniel Vetterdc257cf2012-05-07 11:30:46 +02006549 int dpll;
Chris Wilson074b5e12012-05-02 12:07:06 +01006550
Zhao Yakui44d98a62009-10-09 11:39:40 +08006551 DRM_DEBUG_DRIVER("downclocking LVDS\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07006552
Sean Paul8ac5a6d2012-02-13 13:14:51 -05006553 assert_panel_unlocked(dev_priv, pipe);
Jesse Barnes652c3932009-08-17 13:31:43 -07006554
Chris Wilson074b5e12012-05-02 12:07:06 +01006555 dpll = I915_READ(dpll_reg);
Jesse Barnes652c3932009-08-17 13:31:43 -07006556 dpll |= DISPLAY_RATE_SELECT_FPA1;
6557 I915_WRITE(dpll_reg, dpll);
Jesse Barnes9d0498a2010-08-18 13:20:54 -07006558 intel_wait_for_vblank(dev, pipe);
Jesse Barnes652c3932009-08-17 13:31:43 -07006559 dpll = I915_READ(dpll_reg);
6560 if (!(dpll & DISPLAY_RATE_SELECT_FPA1))
Zhao Yakui44d98a62009-10-09 11:39:40 +08006561 DRM_DEBUG_DRIVER("failed to downclock LVDS!\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07006562 }
6563
6564}
6565
Chris Wilsonf047e392012-07-21 12:31:41 +01006566void intel_mark_busy(struct drm_device *dev)
Jesse Barnes652c3932009-08-17 13:31:43 -07006567{
Chris Wilsonf047e392012-07-21 12:31:41 +01006568 i915_update_gfx_val(dev->dev_private);
6569}
6570
6571void intel_mark_idle(struct drm_device *dev)
6572{
Chris Wilsonf047e392012-07-21 12:31:41 +01006573}
6574
6575void intel_mark_fb_busy(struct drm_i915_gem_object *obj)
6576{
6577 struct drm_device *dev = obj->base.dev;
Jesse Barnes652c3932009-08-17 13:31:43 -07006578 struct drm_crtc *crtc;
Jesse Barnes652c3932009-08-17 13:31:43 -07006579
6580 if (!i915_powersave)
6581 return;
6582
Jesse Barnes652c3932009-08-17 13:31:43 -07006583 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
Jesse Barnes652c3932009-08-17 13:31:43 -07006584 if (!crtc->fb)
6585 continue;
6586
Chris Wilsonf047e392012-07-21 12:31:41 +01006587 if (to_intel_framebuffer(crtc->fb)->obj == obj)
6588 intel_increase_pllclock(crtc);
Jesse Barnes652c3932009-08-17 13:31:43 -07006589 }
Jesse Barnes652c3932009-08-17 13:31:43 -07006590}
6591
Chris Wilsonf047e392012-07-21 12:31:41 +01006592void intel_mark_fb_idle(struct drm_i915_gem_object *obj)
Jesse Barnes652c3932009-08-17 13:31:43 -07006593{
Chris Wilsonf047e392012-07-21 12:31:41 +01006594 struct drm_device *dev = obj->base.dev;
6595 struct drm_crtc *crtc;
Jesse Barnes652c3932009-08-17 13:31:43 -07006596
Chris Wilsonf047e392012-07-21 12:31:41 +01006597 if (!i915_powersave)
Chris Wilsonacb87df2012-05-03 15:47:57 +01006598 return;
6599
Jesse Barnes652c3932009-08-17 13:31:43 -07006600 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
6601 if (!crtc->fb)
6602 continue;
6603
Chris Wilsonf047e392012-07-21 12:31:41 +01006604 if (to_intel_framebuffer(crtc->fb)->obj == obj)
6605 intel_decrease_pllclock(crtc);
Jesse Barnes652c3932009-08-17 13:31:43 -07006606 }
6607}
6608
Jesse Barnes79e53942008-11-07 14:24:08 -08006609static void intel_crtc_destroy(struct drm_crtc *crtc)
6610{
6611 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter67e77c52010-08-20 22:26:30 +02006612 struct drm_device *dev = crtc->dev;
6613 struct intel_unpin_work *work;
6614 unsigned long flags;
6615
6616 spin_lock_irqsave(&dev->event_lock, flags);
6617 work = intel_crtc->unpin_work;
6618 intel_crtc->unpin_work = NULL;
6619 spin_unlock_irqrestore(&dev->event_lock, flags);
6620
6621 if (work) {
6622 cancel_work_sync(&work->work);
6623 kfree(work);
6624 }
Jesse Barnes79e53942008-11-07 14:24:08 -08006625
6626 drm_crtc_cleanup(crtc);
Daniel Vetter67e77c52010-08-20 22:26:30 +02006627
Jesse Barnes79e53942008-11-07 14:24:08 -08006628 kfree(intel_crtc);
6629}
6630
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006631static void intel_unpin_work_fn(struct work_struct *__work)
6632{
6633 struct intel_unpin_work *work =
6634 container_of(__work, struct intel_unpin_work, work);
6635
6636 mutex_lock(&work->dev->struct_mutex);
Chris Wilson1690e1e2011-12-14 13:57:08 +01006637 intel_unpin_fb_obj(work->old_fb_obj);
Chris Wilson05394f32010-11-08 19:18:58 +00006638 drm_gem_object_unreference(&work->pending_flip_obj->base);
6639 drm_gem_object_unreference(&work->old_fb_obj->base);
Chris Wilsond9e86c02010-11-10 16:40:20 +00006640
Chris Wilson7782de32011-07-08 12:22:41 +01006641 intel_update_fbc(work->dev);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006642 mutex_unlock(&work->dev->struct_mutex);
6643 kfree(work);
6644}
6645
Jesse Barnes1afe3e92010-03-26 10:35:20 -07006646static void do_intel_finish_page_flip(struct drm_device *dev,
Mario Kleiner49b14a52010-12-09 07:00:07 +01006647 struct drm_crtc *crtc)
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006648{
6649 drm_i915_private_t *dev_priv = dev->dev_private;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006650 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6651 struct intel_unpin_work *work;
Chris Wilson05394f32010-11-08 19:18:58 +00006652 struct drm_i915_gem_object *obj;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006653 struct drm_pending_vblank_event *e;
Daniel Vetter95cb1b02012-10-02 20:10:37 +02006654 struct timeval tvbl;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006655 unsigned long flags;
6656
6657 /* Ignore early vblank irqs */
6658 if (intel_crtc == NULL)
6659 return;
6660
6661 spin_lock_irqsave(&dev->event_lock, flags);
6662 work = intel_crtc->unpin_work;
6663 if (work == NULL || !work->pending) {
6664 spin_unlock_irqrestore(&dev->event_lock, flags);
6665 return;
6666 }
6667
6668 intel_crtc->unpin_work = NULL;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006669
6670 if (work->event) {
6671 e = work->event;
Mario Kleiner49b14a52010-12-09 07:00:07 +01006672 e->event.sequence = drm_vblank_count_and_time(dev, intel_crtc->pipe, &tvbl);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +01006673
Mario Kleiner49b14a52010-12-09 07:00:07 +01006674 e->event.tv_sec = tvbl.tv_sec;
6675 e->event.tv_usec = tvbl.tv_usec;
Mario Kleiner0af7e4d2010-12-08 04:07:19 +01006676
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006677 list_add_tail(&e->base.link,
6678 &e->base.file_priv->event_list);
6679 wake_up_interruptible(&e->base.file_priv->event_wait);
6680 }
6681
Mario Kleiner0af7e4d2010-12-08 04:07:19 +01006682 drm_vblank_put(dev, intel_crtc->pipe);
6683
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006684 spin_unlock_irqrestore(&dev->event_lock, flags);
6685
Chris Wilson05394f32010-11-08 19:18:58 +00006686 obj = work->old_fb_obj;
Chris Wilsond9e86c02010-11-10 16:40:20 +00006687
Chris Wilsone59f2ba2010-10-07 17:28:15 +01006688 atomic_clear_mask(1 << intel_crtc->plane,
Chris Wilson05394f32010-11-08 19:18:58 +00006689 &obj->pending_flip.counter);
Chris Wilsond9e86c02010-11-10 16:40:20 +00006690
Chris Wilson5bb61642012-09-27 21:25:58 +01006691 wake_up(&dev_priv->pending_flip_queue);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006692 schedule_work(&work->work);
Jesse Barnese5510fa2010-07-01 16:48:37 -07006693
6694 trace_i915_flip_complete(intel_crtc->plane, work->pending_flip_obj);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006695}
6696
Jesse Barnes1afe3e92010-03-26 10:35:20 -07006697void intel_finish_page_flip(struct drm_device *dev, int pipe)
6698{
6699 drm_i915_private_t *dev_priv = dev->dev_private;
6700 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
6701
Mario Kleiner49b14a52010-12-09 07:00:07 +01006702 do_intel_finish_page_flip(dev, crtc);
Jesse Barnes1afe3e92010-03-26 10:35:20 -07006703}
6704
6705void intel_finish_page_flip_plane(struct drm_device *dev, int plane)
6706{
6707 drm_i915_private_t *dev_priv = dev->dev_private;
6708 struct drm_crtc *crtc = dev_priv->plane_to_crtc_mapping[plane];
6709
Mario Kleiner49b14a52010-12-09 07:00:07 +01006710 do_intel_finish_page_flip(dev, crtc);
Jesse Barnes1afe3e92010-03-26 10:35:20 -07006711}
6712
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006713void intel_prepare_page_flip(struct drm_device *dev, int plane)
6714{
6715 drm_i915_private_t *dev_priv = dev->dev_private;
6716 struct intel_crtc *intel_crtc =
6717 to_intel_crtc(dev_priv->plane_to_crtc_mapping[plane]);
6718 unsigned long flags;
6719
6720 spin_lock_irqsave(&dev->event_lock, flags);
Jesse Barnesde3f4402010-01-14 13:18:02 -08006721 if (intel_crtc->unpin_work) {
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01006722 if ((++intel_crtc->unpin_work->pending) > 1)
6723 DRM_ERROR("Prepared flip multiple times\n");
Jesse Barnesde3f4402010-01-14 13:18:02 -08006724 } else {
6725 DRM_DEBUG_DRIVER("preparing flip with no unpin work?\n");
6726 }
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006727 spin_unlock_irqrestore(&dev->event_lock, flags);
6728}
6729
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006730static int intel_gen2_queue_flip(struct drm_device *dev,
6731 struct drm_crtc *crtc,
6732 struct drm_framebuffer *fb,
6733 struct drm_i915_gem_object *obj)
6734{
6735 struct drm_i915_private *dev_priv = dev->dev_private;
6736 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006737 u32 flip_mask;
Daniel Vetter6d90c952012-04-26 23:28:05 +02006738 struct intel_ring_buffer *ring = &dev_priv->ring[RCS];
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006739 int ret;
6740
Daniel Vetter6d90c952012-04-26 23:28:05 +02006741 ret = intel_pin_and_fence_fb_obj(dev, obj, ring);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006742 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01006743 goto err;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006744
Daniel Vetter6d90c952012-04-26 23:28:05 +02006745 ret = intel_ring_begin(ring, 6);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006746 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01006747 goto err_unpin;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006748
6749 /* Can't queue multiple flips, so wait for the previous
6750 * one to finish before executing the next.
6751 */
6752 if (intel_crtc->plane)
6753 flip_mask = MI_WAIT_FOR_PLANE_B_FLIP;
6754 else
6755 flip_mask = MI_WAIT_FOR_PLANE_A_FLIP;
Daniel Vetter6d90c952012-04-26 23:28:05 +02006756 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | flip_mask);
6757 intel_ring_emit(ring, MI_NOOP);
6758 intel_ring_emit(ring, MI_DISPLAY_FLIP |
6759 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
6760 intel_ring_emit(ring, fb->pitches[0]);
Daniel Vettere506a0c2012-07-05 12:17:29 +02006761 intel_ring_emit(ring, obj->gtt_offset + intel_crtc->dspaddr_offset);
Daniel Vetter6d90c952012-04-26 23:28:05 +02006762 intel_ring_emit(ring, 0); /* aux display base address, unused */
6763 intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01006764 return 0;
6765
6766err_unpin:
6767 intel_unpin_fb_obj(obj);
6768err:
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006769 return ret;
6770}
6771
6772static int intel_gen3_queue_flip(struct drm_device *dev,
6773 struct drm_crtc *crtc,
6774 struct drm_framebuffer *fb,
6775 struct drm_i915_gem_object *obj)
6776{
6777 struct drm_i915_private *dev_priv = dev->dev_private;
6778 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006779 u32 flip_mask;
Daniel Vetter6d90c952012-04-26 23:28:05 +02006780 struct intel_ring_buffer *ring = &dev_priv->ring[RCS];
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006781 int ret;
6782
Daniel Vetter6d90c952012-04-26 23:28:05 +02006783 ret = intel_pin_and_fence_fb_obj(dev, obj, ring);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006784 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01006785 goto err;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006786
Daniel Vetter6d90c952012-04-26 23:28:05 +02006787 ret = intel_ring_begin(ring, 6);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006788 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01006789 goto err_unpin;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006790
6791 if (intel_crtc->plane)
6792 flip_mask = MI_WAIT_FOR_PLANE_B_FLIP;
6793 else
6794 flip_mask = MI_WAIT_FOR_PLANE_A_FLIP;
Daniel Vetter6d90c952012-04-26 23:28:05 +02006795 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | flip_mask);
6796 intel_ring_emit(ring, MI_NOOP);
6797 intel_ring_emit(ring, MI_DISPLAY_FLIP_I915 |
6798 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
6799 intel_ring_emit(ring, fb->pitches[0]);
Daniel Vettere506a0c2012-07-05 12:17:29 +02006800 intel_ring_emit(ring, obj->gtt_offset + intel_crtc->dspaddr_offset);
Daniel Vetter6d90c952012-04-26 23:28:05 +02006801 intel_ring_emit(ring, MI_NOOP);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006802
Daniel Vetter6d90c952012-04-26 23:28:05 +02006803 intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01006804 return 0;
6805
6806err_unpin:
6807 intel_unpin_fb_obj(obj);
6808err:
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006809 return ret;
6810}
6811
6812static int intel_gen4_queue_flip(struct drm_device *dev,
6813 struct drm_crtc *crtc,
6814 struct drm_framebuffer *fb,
6815 struct drm_i915_gem_object *obj)
6816{
6817 struct drm_i915_private *dev_priv = dev->dev_private;
6818 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6819 uint32_t pf, pipesrc;
Daniel Vetter6d90c952012-04-26 23:28:05 +02006820 struct intel_ring_buffer *ring = &dev_priv->ring[RCS];
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006821 int ret;
6822
Daniel Vetter6d90c952012-04-26 23:28:05 +02006823 ret = intel_pin_and_fence_fb_obj(dev, obj, ring);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006824 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01006825 goto err;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006826
Daniel Vetter6d90c952012-04-26 23:28:05 +02006827 ret = intel_ring_begin(ring, 4);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006828 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01006829 goto err_unpin;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006830
6831 /* i965+ uses the linear or tiled offsets from the
6832 * Display Registers (which do not change across a page-flip)
6833 * so we need only reprogram the base address.
6834 */
Daniel Vetter6d90c952012-04-26 23:28:05 +02006835 intel_ring_emit(ring, MI_DISPLAY_FLIP |
6836 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
6837 intel_ring_emit(ring, fb->pitches[0]);
Daniel Vetterc2c75132012-07-05 12:17:30 +02006838 intel_ring_emit(ring,
6839 (obj->gtt_offset + intel_crtc->dspaddr_offset) |
6840 obj->tiling_mode);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006841
6842 /* XXX Enabling the panel-fitter across page-flip is so far
6843 * untested on non-native modes, so ignore it for now.
6844 * pf = I915_READ(pipe == 0 ? PFA_CTL_1 : PFB_CTL_1) & PF_ENABLE;
6845 */
6846 pf = 0;
6847 pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff;
Daniel Vetter6d90c952012-04-26 23:28:05 +02006848 intel_ring_emit(ring, pf | pipesrc);
6849 intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01006850 return 0;
6851
6852err_unpin:
6853 intel_unpin_fb_obj(obj);
6854err:
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006855 return ret;
6856}
6857
6858static int intel_gen6_queue_flip(struct drm_device *dev,
6859 struct drm_crtc *crtc,
6860 struct drm_framebuffer *fb,
6861 struct drm_i915_gem_object *obj)
6862{
6863 struct drm_i915_private *dev_priv = dev->dev_private;
6864 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter6d90c952012-04-26 23:28:05 +02006865 struct intel_ring_buffer *ring = &dev_priv->ring[RCS];
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006866 uint32_t pf, pipesrc;
6867 int ret;
6868
Daniel Vetter6d90c952012-04-26 23:28:05 +02006869 ret = intel_pin_and_fence_fb_obj(dev, obj, ring);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006870 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01006871 goto err;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006872
Daniel Vetter6d90c952012-04-26 23:28:05 +02006873 ret = intel_ring_begin(ring, 4);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006874 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01006875 goto err_unpin;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006876
Daniel Vetter6d90c952012-04-26 23:28:05 +02006877 intel_ring_emit(ring, MI_DISPLAY_FLIP |
6878 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
6879 intel_ring_emit(ring, fb->pitches[0] | obj->tiling_mode);
Daniel Vetterc2c75132012-07-05 12:17:30 +02006880 intel_ring_emit(ring, obj->gtt_offset + intel_crtc->dspaddr_offset);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006881
Chris Wilson99d9acd2012-04-17 20:37:00 +01006882 /* Contrary to the suggestions in the documentation,
6883 * "Enable Panel Fitter" does not seem to be required when page
6884 * flipping with a non-native mode, and worse causes a normal
6885 * modeset to fail.
6886 * pf = I915_READ(PF_CTL(intel_crtc->pipe)) & PF_ENABLE;
6887 */
6888 pf = 0;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006889 pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff;
Daniel Vetter6d90c952012-04-26 23:28:05 +02006890 intel_ring_emit(ring, pf | pipesrc);
6891 intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01006892 return 0;
6893
6894err_unpin:
6895 intel_unpin_fb_obj(obj);
6896err:
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006897 return ret;
6898}
6899
Jesse Barnes7c9017e2011-06-16 12:18:54 -07006900/*
6901 * On gen7 we currently use the blit ring because (in early silicon at least)
6902 * the render ring doesn't give us interrpts for page flip completion, which
6903 * means clients will hang after the first flip is queued. Fortunately the
6904 * blit ring generates interrupts properly, so use it instead.
6905 */
6906static int intel_gen7_queue_flip(struct drm_device *dev,
6907 struct drm_crtc *crtc,
6908 struct drm_framebuffer *fb,
6909 struct drm_i915_gem_object *obj)
6910{
6911 struct drm_i915_private *dev_priv = dev->dev_private;
6912 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6913 struct intel_ring_buffer *ring = &dev_priv->ring[BCS];
Daniel Vettercb05d8d2012-05-23 14:02:00 +02006914 uint32_t plane_bit = 0;
Jesse Barnes7c9017e2011-06-16 12:18:54 -07006915 int ret;
6916
6917 ret = intel_pin_and_fence_fb_obj(dev, obj, ring);
6918 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01006919 goto err;
Jesse Barnes7c9017e2011-06-16 12:18:54 -07006920
Daniel Vettercb05d8d2012-05-23 14:02:00 +02006921 switch(intel_crtc->plane) {
6922 case PLANE_A:
6923 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_A;
6924 break;
6925 case PLANE_B:
6926 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_B;
6927 break;
6928 case PLANE_C:
6929 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_C;
6930 break;
6931 default:
6932 WARN_ONCE(1, "unknown plane in flip command\n");
6933 ret = -ENODEV;
Eugeni Dodonovab3951e2012-06-18 19:03:38 -03006934 goto err_unpin;
Daniel Vettercb05d8d2012-05-23 14:02:00 +02006935 }
6936
Jesse Barnes7c9017e2011-06-16 12:18:54 -07006937 ret = intel_ring_begin(ring, 4);
6938 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01006939 goto err_unpin;
Jesse Barnes7c9017e2011-06-16 12:18:54 -07006940
Daniel Vettercb05d8d2012-05-23 14:02:00 +02006941 intel_ring_emit(ring, MI_DISPLAY_FLIP_I915 | plane_bit);
Ville Syrjälä01f2c772011-12-20 00:06:49 +02006942 intel_ring_emit(ring, (fb->pitches[0] | obj->tiling_mode));
Daniel Vetterc2c75132012-07-05 12:17:30 +02006943 intel_ring_emit(ring, obj->gtt_offset + intel_crtc->dspaddr_offset);
Jesse Barnes7c9017e2011-06-16 12:18:54 -07006944 intel_ring_emit(ring, (MI_NOOP));
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 Barnes7c9017e2011-06-16 12:18:54 -07006951 return ret;
6952}
6953
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006954static int intel_default_queue_flip(struct drm_device *dev,
6955 struct drm_crtc *crtc,
6956 struct drm_framebuffer *fb,
6957 struct drm_i915_gem_object *obj)
6958{
6959 return -ENODEV;
6960}
6961
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006962static int intel_crtc_page_flip(struct drm_crtc *crtc,
6963 struct drm_framebuffer *fb,
6964 struct drm_pending_vblank_event *event)
6965{
6966 struct drm_device *dev = crtc->dev;
6967 struct drm_i915_private *dev_priv = dev->dev_private;
6968 struct intel_framebuffer *intel_fb;
Chris Wilson05394f32010-11-08 19:18:58 +00006969 struct drm_i915_gem_object *obj;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006970 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6971 struct intel_unpin_work *work;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006972 unsigned long flags;
Chris Wilson52e68632010-08-08 10:15:59 +01006973 int ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006974
Ville Syrjäläe6a595d2012-05-24 21:08:59 +03006975 /* Can't change pixel format via MI display flips. */
6976 if (fb->pixel_format != crtc->fb->pixel_format)
6977 return -EINVAL;
6978
6979 /*
6980 * TILEOFF/LINOFF registers can't be changed via MI display flips.
6981 * Note that pitch changes could also affect these register.
6982 */
6983 if (INTEL_INFO(dev)->gen > 3 &&
6984 (fb->offsets[0] != crtc->fb->offsets[0] ||
6985 fb->pitches[0] != crtc->fb->pitches[0]))
6986 return -EINVAL;
6987
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006988 work = kzalloc(sizeof *work, GFP_KERNEL);
6989 if (work == NULL)
6990 return -ENOMEM;
6991
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006992 work->event = event;
6993 work->dev = crtc->dev;
6994 intel_fb = to_intel_framebuffer(crtc->fb);
Jesse Barnesb1b87f62010-01-26 14:40:05 -08006995 work->old_fb_obj = intel_fb->obj;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006996 INIT_WORK(&work->work, intel_unpin_work_fn);
6997
Jesse Barnes7317c75e62011-08-29 09:45:28 -07006998 ret = drm_vblank_get(dev, intel_crtc->pipe);
6999 if (ret)
7000 goto free_work;
7001
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007002 /* We borrow the event spin lock for protecting unpin_work */
7003 spin_lock_irqsave(&dev->event_lock, flags);
7004 if (intel_crtc->unpin_work) {
7005 spin_unlock_irqrestore(&dev->event_lock, flags);
7006 kfree(work);
Jesse Barnes7317c75e62011-08-29 09:45:28 -07007007 drm_vblank_put(dev, intel_crtc->pipe);
Chris Wilson468f0b42010-05-27 13:18:13 +01007008
7009 DRM_DEBUG_DRIVER("flip queue: crtc already busy\n");
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007010 return -EBUSY;
7011 }
7012 intel_crtc->unpin_work = work;
7013 spin_unlock_irqrestore(&dev->event_lock, flags);
7014
7015 intel_fb = to_intel_framebuffer(fb);
7016 obj = intel_fb->obj;
7017
Chris Wilson79158102012-05-23 11:13:58 +01007018 ret = i915_mutex_lock_interruptible(dev);
7019 if (ret)
7020 goto cleanup;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007021
Jesse Barnes75dfca82010-02-10 15:09:44 -08007022 /* Reference the objects for the scheduled work. */
Chris Wilson05394f32010-11-08 19:18:58 +00007023 drm_gem_object_reference(&work->old_fb_obj->base);
7024 drm_gem_object_reference(&obj->base);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007025
7026 crtc->fb = fb;
Chris Wilson96b099f2010-06-07 14:03:04 +01007027
Chris Wilsone1f99ce2010-10-27 12:45:26 +01007028 work->pending_flip_obj = obj;
Chris Wilsone1f99ce2010-10-27 12:45:26 +01007029
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01007030 work->enable_stall_check = true;
7031
Chris Wilsone1f99ce2010-10-27 12:45:26 +01007032 /* Block clients from rendering to the new back buffer until
7033 * the flip occurs and the object is no longer visible.
7034 */
Chris Wilson05394f32010-11-08 19:18:58 +00007035 atomic_add(1 << intel_crtc->plane, &work->old_fb_obj->pending_flip);
Chris Wilsone1f99ce2010-10-27 12:45:26 +01007036
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07007037 ret = dev_priv->display.queue_flip(dev, crtc, fb, obj);
7038 if (ret)
7039 goto cleanup_pending;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007040
Chris Wilson7782de32011-07-08 12:22:41 +01007041 intel_disable_fbc(dev);
Chris Wilsonf047e392012-07-21 12:31:41 +01007042 intel_mark_fb_busy(obj);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007043 mutex_unlock(&dev->struct_mutex);
7044
Jesse Barnese5510fa2010-07-01 16:48:37 -07007045 trace_i915_flip_request(intel_crtc->plane, obj);
7046
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007047 return 0;
Chris Wilson96b099f2010-06-07 14:03:04 +01007048
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07007049cleanup_pending:
7050 atomic_sub(1 << intel_crtc->plane, &work->old_fb_obj->pending_flip);
Chris Wilson05394f32010-11-08 19:18:58 +00007051 drm_gem_object_unreference(&work->old_fb_obj->base);
7052 drm_gem_object_unreference(&obj->base);
Chris Wilson96b099f2010-06-07 14:03:04 +01007053 mutex_unlock(&dev->struct_mutex);
7054
Chris Wilson79158102012-05-23 11:13:58 +01007055cleanup:
Chris Wilson96b099f2010-06-07 14:03:04 +01007056 spin_lock_irqsave(&dev->event_lock, flags);
7057 intel_crtc->unpin_work = NULL;
7058 spin_unlock_irqrestore(&dev->event_lock, flags);
7059
Jesse Barnes7317c75e62011-08-29 09:45:28 -07007060 drm_vblank_put(dev, intel_crtc->pipe);
7061free_work:
Chris Wilson96b099f2010-06-07 14:03:04 +01007062 kfree(work);
7063
7064 return ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007065}
7066
Chris Wilsonf6e5b162011-04-12 18:06:51 +01007067static struct drm_crtc_helper_funcs intel_helper_funcs = {
Chris Wilsonf6e5b162011-04-12 18:06:51 +01007068 .mode_set_base_atomic = intel_pipe_set_base_atomic,
7069 .load_lut = intel_crtc_load_lut,
Daniel Vetter976f8a22012-07-08 22:34:21 +02007070 .disable = intel_crtc_noop,
Chris Wilsonf6e5b162011-04-12 18:06:51 +01007071};
7072
Daniel Vetter6ed0f792012-07-08 19:41:43 +02007073bool intel_encoder_check_is_cloned(struct intel_encoder *encoder)
7074{
7075 struct intel_encoder *other_encoder;
7076 struct drm_crtc *crtc = &encoder->new_crtc->base;
7077
7078 if (WARN_ON(!crtc))
7079 return false;
7080
7081 list_for_each_entry(other_encoder,
7082 &crtc->dev->mode_config.encoder_list,
7083 base.head) {
7084
7085 if (&other_encoder->new_crtc->base != crtc ||
7086 encoder == other_encoder)
7087 continue;
7088 else
7089 return true;
7090 }
7091
7092 return false;
7093}
7094
Daniel Vetter50f56112012-07-02 09:35:43 +02007095static bool intel_encoder_crtc_ok(struct drm_encoder *encoder,
7096 struct drm_crtc *crtc)
7097{
7098 struct drm_device *dev;
7099 struct drm_crtc *tmp;
7100 int crtc_mask = 1;
7101
7102 WARN(!crtc, "checking null crtc?\n");
7103
7104 dev = crtc->dev;
7105
7106 list_for_each_entry(tmp, &dev->mode_config.crtc_list, head) {
7107 if (tmp == crtc)
7108 break;
7109 crtc_mask <<= 1;
7110 }
7111
7112 if (encoder->possible_crtcs & crtc_mask)
7113 return true;
7114 return false;
7115}
7116
Daniel Vetter9a935852012-07-05 22:34:27 +02007117/**
7118 * intel_modeset_update_staged_output_state
7119 *
7120 * Updates the staged output configuration state, e.g. after we've read out the
7121 * current hw state.
7122 */
7123static void intel_modeset_update_staged_output_state(struct drm_device *dev)
7124{
7125 struct intel_encoder *encoder;
7126 struct intel_connector *connector;
7127
7128 list_for_each_entry(connector, &dev->mode_config.connector_list,
7129 base.head) {
7130 connector->new_encoder =
7131 to_intel_encoder(connector->base.encoder);
7132 }
7133
7134 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
7135 base.head) {
7136 encoder->new_crtc =
7137 to_intel_crtc(encoder->base.crtc);
7138 }
7139}
7140
7141/**
7142 * intel_modeset_commit_output_state
7143 *
7144 * This function copies the stage display pipe configuration to the real one.
7145 */
7146static void intel_modeset_commit_output_state(struct drm_device *dev)
7147{
7148 struct intel_encoder *encoder;
7149 struct intel_connector *connector;
7150
7151 list_for_each_entry(connector, &dev->mode_config.connector_list,
7152 base.head) {
7153 connector->base.encoder = &connector->new_encoder->base;
7154 }
7155
7156 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
7157 base.head) {
7158 encoder->base.crtc = &encoder->new_crtc->base;
7159 }
7160}
7161
Daniel Vetter7758a112012-07-08 19:40:39 +02007162static struct drm_display_mode *
7163intel_modeset_adjusted_mode(struct drm_crtc *crtc,
7164 struct drm_display_mode *mode)
7165{
7166 struct drm_device *dev = crtc->dev;
7167 struct drm_display_mode *adjusted_mode;
7168 struct drm_encoder_helper_funcs *encoder_funcs;
7169 struct intel_encoder *encoder;
7170
7171 adjusted_mode = drm_mode_duplicate(dev, mode);
7172 if (!adjusted_mode)
7173 return ERR_PTR(-ENOMEM);
7174
7175 /* Pass our mode to the connectors and the CRTC to give them a chance to
7176 * adjust it according to limitations or connector properties, and also
7177 * a chance to reject the mode entirely.
7178 */
7179 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
7180 base.head) {
7181
7182 if (&encoder->new_crtc->base != crtc)
7183 continue;
7184 encoder_funcs = encoder->base.helper_private;
7185 if (!(encoder_funcs->mode_fixup(&encoder->base, mode,
7186 adjusted_mode))) {
7187 DRM_DEBUG_KMS("Encoder fixup failed\n");
7188 goto fail;
7189 }
7190 }
7191
7192 if (!(intel_crtc_mode_fixup(crtc, mode, adjusted_mode))) {
7193 DRM_DEBUG_KMS("CRTC fixup failed\n");
7194 goto fail;
7195 }
7196 DRM_DEBUG_KMS("[CRTC:%d]\n", crtc->base.id);
7197
7198 return adjusted_mode;
7199fail:
7200 drm_mode_destroy(dev, adjusted_mode);
7201 return ERR_PTR(-EINVAL);
7202}
7203
Daniel Vettere2e1ed42012-07-08 21:14:38 +02007204/* Computes which crtcs are affected and sets the relevant bits in the mask. For
7205 * simplicity we use the crtc's pipe number (because it's easier to obtain). */
7206static void
7207intel_modeset_affected_pipes(struct drm_crtc *crtc, unsigned *modeset_pipes,
7208 unsigned *prepare_pipes, unsigned *disable_pipes)
7209{
7210 struct intel_crtc *intel_crtc;
7211 struct drm_device *dev = crtc->dev;
7212 struct intel_encoder *encoder;
7213 struct intel_connector *connector;
7214 struct drm_crtc *tmp_crtc;
7215
7216 *disable_pipes = *modeset_pipes = *prepare_pipes = 0;
7217
7218 /* Check which crtcs have changed outputs connected to them, these need
7219 * to be part of the prepare_pipes mask. We don't (yet) support global
7220 * modeset across multiple crtcs, so modeset_pipes will only have one
7221 * bit set at most. */
7222 list_for_each_entry(connector, &dev->mode_config.connector_list,
7223 base.head) {
7224 if (connector->base.encoder == &connector->new_encoder->base)
7225 continue;
7226
7227 if (connector->base.encoder) {
7228 tmp_crtc = connector->base.encoder->crtc;
7229
7230 *prepare_pipes |= 1 << to_intel_crtc(tmp_crtc)->pipe;
7231 }
7232
7233 if (connector->new_encoder)
7234 *prepare_pipes |=
7235 1 << connector->new_encoder->new_crtc->pipe;
7236 }
7237
7238 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
7239 base.head) {
7240 if (encoder->base.crtc == &encoder->new_crtc->base)
7241 continue;
7242
7243 if (encoder->base.crtc) {
7244 tmp_crtc = encoder->base.crtc;
7245
7246 *prepare_pipes |= 1 << to_intel_crtc(tmp_crtc)->pipe;
7247 }
7248
7249 if (encoder->new_crtc)
7250 *prepare_pipes |= 1 << encoder->new_crtc->pipe;
7251 }
7252
7253 /* Check for any pipes that will be fully disabled ... */
7254 list_for_each_entry(intel_crtc, &dev->mode_config.crtc_list,
7255 base.head) {
7256 bool used = false;
7257
7258 /* Don't try to disable disabled crtcs. */
7259 if (!intel_crtc->base.enabled)
7260 continue;
7261
7262 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
7263 base.head) {
7264 if (encoder->new_crtc == intel_crtc)
7265 used = true;
7266 }
7267
7268 if (!used)
7269 *disable_pipes |= 1 << intel_crtc->pipe;
7270 }
7271
7272
7273 /* set_mode is also used to update properties on life display pipes. */
7274 intel_crtc = to_intel_crtc(crtc);
7275 if (crtc->enabled)
7276 *prepare_pipes |= 1 << intel_crtc->pipe;
7277
7278 /* We only support modeset on one single crtc, hence we need to do that
7279 * only for the passed in crtc iff we change anything else than just
7280 * disable crtcs.
7281 *
7282 * This is actually not true, to be fully compatible with the old crtc
7283 * helper we automatically disable _any_ output (i.e. doesn't need to be
7284 * connected to the crtc we're modesetting on) if it's disconnected.
7285 * Which is a rather nutty api (since changed the output configuration
7286 * without userspace's explicit request can lead to confusion), but
7287 * alas. Hence we currently need to modeset on all pipes we prepare. */
7288 if (*prepare_pipes)
7289 *modeset_pipes = *prepare_pipes;
7290
7291 /* ... and mask these out. */
7292 *modeset_pipes &= ~(*disable_pipes);
7293 *prepare_pipes &= ~(*disable_pipes);
7294}
7295
Daniel Vetterea9d7582012-07-10 10:42:52 +02007296static bool intel_crtc_in_use(struct drm_crtc *crtc)
7297{
7298 struct drm_encoder *encoder;
7299 struct drm_device *dev = crtc->dev;
7300
7301 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head)
7302 if (encoder->crtc == crtc)
7303 return true;
7304
7305 return false;
7306}
7307
7308static void
7309intel_modeset_update_state(struct drm_device *dev, unsigned prepare_pipes)
7310{
7311 struct intel_encoder *intel_encoder;
7312 struct intel_crtc *intel_crtc;
7313 struct drm_connector *connector;
7314
7315 list_for_each_entry(intel_encoder, &dev->mode_config.encoder_list,
7316 base.head) {
7317 if (!intel_encoder->base.crtc)
7318 continue;
7319
7320 intel_crtc = to_intel_crtc(intel_encoder->base.crtc);
7321
7322 if (prepare_pipes & (1 << intel_crtc->pipe))
7323 intel_encoder->connectors_active = false;
7324 }
7325
7326 intel_modeset_commit_output_state(dev);
7327
7328 /* Update computed state. */
7329 list_for_each_entry(intel_crtc, &dev->mode_config.crtc_list,
7330 base.head) {
7331 intel_crtc->base.enabled = intel_crtc_in_use(&intel_crtc->base);
7332 }
7333
7334 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
7335 if (!connector->encoder || !connector->encoder->crtc)
7336 continue;
7337
7338 intel_crtc = to_intel_crtc(connector->encoder->crtc);
7339
7340 if (prepare_pipes & (1 << intel_crtc->pipe)) {
Daniel Vetter68d34722012-09-06 22:08:35 +02007341 struct drm_property *dpms_property =
7342 dev->mode_config.dpms_property;
7343
Daniel Vetterea9d7582012-07-10 10:42:52 +02007344 connector->dpms = DRM_MODE_DPMS_ON;
Daniel Vetter68d34722012-09-06 22:08:35 +02007345 drm_connector_property_set_value(connector,
7346 dpms_property,
7347 DRM_MODE_DPMS_ON);
Daniel Vetterea9d7582012-07-10 10:42:52 +02007348
7349 intel_encoder = to_intel_encoder(connector->encoder);
7350 intel_encoder->connectors_active = true;
7351 }
7352 }
7353
7354}
7355
Daniel Vetter25c5b262012-07-08 22:08:04 +02007356#define for_each_intel_crtc_masked(dev, mask, intel_crtc) \
7357 list_for_each_entry((intel_crtc), \
7358 &(dev)->mode_config.crtc_list, \
7359 base.head) \
7360 if (mask & (1 <<(intel_crtc)->pipe)) \
7361
Daniel Vetterb9805142012-08-31 17:37:33 +02007362void
Daniel Vetter8af6cf82012-07-10 09:50:11 +02007363intel_modeset_check_state(struct drm_device *dev)
7364{
7365 struct intel_crtc *crtc;
7366 struct intel_encoder *encoder;
7367 struct intel_connector *connector;
7368
7369 list_for_each_entry(connector, &dev->mode_config.connector_list,
7370 base.head) {
7371 /* This also checks the encoder/connector hw state with the
7372 * ->get_hw_state callbacks. */
7373 intel_connector_check_state(connector);
7374
7375 WARN(&connector->new_encoder->base != connector->base.encoder,
7376 "connector's staged encoder doesn't match current encoder\n");
7377 }
7378
7379 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
7380 base.head) {
7381 bool enabled = false;
7382 bool active = false;
7383 enum pipe pipe, tracked_pipe;
7384
7385 DRM_DEBUG_KMS("[ENCODER:%d:%s]\n",
7386 encoder->base.base.id,
7387 drm_get_encoder_name(&encoder->base));
7388
7389 WARN(&encoder->new_crtc->base != encoder->base.crtc,
7390 "encoder's stage crtc doesn't match current crtc\n");
7391 WARN(encoder->connectors_active && !encoder->base.crtc,
7392 "encoder's active_connectors set, but no crtc\n");
7393
7394 list_for_each_entry(connector, &dev->mode_config.connector_list,
7395 base.head) {
7396 if (connector->base.encoder != &encoder->base)
7397 continue;
7398 enabled = true;
7399 if (connector->base.dpms != DRM_MODE_DPMS_OFF)
7400 active = true;
7401 }
7402 WARN(!!encoder->base.crtc != enabled,
7403 "encoder's enabled state mismatch "
7404 "(expected %i, found %i)\n",
7405 !!encoder->base.crtc, enabled);
7406 WARN(active && !encoder->base.crtc,
7407 "active encoder with no crtc\n");
7408
7409 WARN(encoder->connectors_active != active,
7410 "encoder's computed active state doesn't match tracked active state "
7411 "(expected %i, found %i)\n", active, encoder->connectors_active);
7412
7413 active = encoder->get_hw_state(encoder, &pipe);
7414 WARN(active != encoder->connectors_active,
7415 "encoder's hw state doesn't match sw tracking "
7416 "(expected %i, found %i)\n",
7417 encoder->connectors_active, active);
7418
7419 if (!encoder->base.crtc)
7420 continue;
7421
7422 tracked_pipe = to_intel_crtc(encoder->base.crtc)->pipe;
7423 WARN(active && pipe != tracked_pipe,
7424 "active encoder's pipe doesn't match"
7425 "(expected %i, found %i)\n",
7426 tracked_pipe, pipe);
7427
7428 }
7429
7430 list_for_each_entry(crtc, &dev->mode_config.crtc_list,
7431 base.head) {
7432 bool enabled = false;
7433 bool active = false;
7434
7435 DRM_DEBUG_KMS("[CRTC:%d]\n",
7436 crtc->base.base.id);
7437
7438 WARN(crtc->active && !crtc->base.enabled,
7439 "active crtc, but not enabled in sw tracking\n");
7440
7441 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
7442 base.head) {
7443 if (encoder->base.crtc != &crtc->base)
7444 continue;
7445 enabled = true;
7446 if (encoder->connectors_active)
7447 active = true;
7448 }
7449 WARN(active != crtc->active,
7450 "crtc's computed active state doesn't match tracked active state "
7451 "(expected %i, found %i)\n", active, crtc->active);
7452 WARN(enabled != crtc->base.enabled,
7453 "crtc's computed enabled state doesn't match tracked enabled state "
7454 "(expected %i, found %i)\n", enabled, crtc->base.enabled);
7455
7456 assert_pipe(dev->dev_private, crtc->pipe, crtc->active);
7457 }
7458}
7459
Daniel Vettera6778b32012-07-02 09:56:42 +02007460bool intel_set_mode(struct drm_crtc *crtc,
7461 struct drm_display_mode *mode,
Daniel Vetter94352cf2012-07-05 22:51:56 +02007462 int x, int y, struct drm_framebuffer *fb)
Daniel Vettera6778b32012-07-02 09:56:42 +02007463{
7464 struct drm_device *dev = crtc->dev;
Daniel Vetterdbf2b54e2012-07-02 11:18:29 +02007465 drm_i915_private_t *dev_priv = dev->dev_private;
Daniel Vettera6778b32012-07-02 09:56:42 +02007466 struct drm_display_mode *adjusted_mode, saved_mode, saved_hwmode;
Daniel Vettera6778b32012-07-02 09:56:42 +02007467 struct drm_encoder_helper_funcs *encoder_funcs;
Daniel Vettera6778b32012-07-02 09:56:42 +02007468 struct drm_encoder *encoder;
Daniel Vetter25c5b262012-07-08 22:08:04 +02007469 struct intel_crtc *intel_crtc;
7470 unsigned disable_pipes, prepare_pipes, modeset_pipes;
Daniel Vettera6778b32012-07-02 09:56:42 +02007471 bool ret = true;
7472
Daniel Vettere2e1ed42012-07-08 21:14:38 +02007473 intel_modeset_affected_pipes(crtc, &modeset_pipes,
Daniel Vetter25c5b262012-07-08 22:08:04 +02007474 &prepare_pipes, &disable_pipes);
7475
7476 DRM_DEBUG_KMS("set mode pipe masks: modeset: %x, prepare: %x, disable: %x\n",
7477 modeset_pipes, prepare_pipes, disable_pipes);
Daniel Vettere2e1ed42012-07-08 21:14:38 +02007478
Daniel Vetter976f8a22012-07-08 22:34:21 +02007479 for_each_intel_crtc_masked(dev, disable_pipes, intel_crtc)
7480 intel_crtc_disable(&intel_crtc->base);
7481
Daniel Vettera6778b32012-07-02 09:56:42 +02007482 saved_hwmode = crtc->hwmode;
7483 saved_mode = crtc->mode;
Daniel Vettera6778b32012-07-02 09:56:42 +02007484
Daniel Vetter25c5b262012-07-08 22:08:04 +02007485 /* Hack: Because we don't (yet) support global modeset on multiple
7486 * crtcs, we don't keep track of the new mode for more than one crtc.
7487 * Hence simply check whether any bit is set in modeset_pipes in all the
7488 * pieces of code that are not yet converted to deal with mutliple crtcs
7489 * changing their mode at the same time. */
7490 adjusted_mode = NULL;
7491 if (modeset_pipes) {
7492 adjusted_mode = intel_modeset_adjusted_mode(crtc, mode);
7493 if (IS_ERR(adjusted_mode)) {
7494 return false;
7495 }
Daniel Vettera6778b32012-07-02 09:56:42 +02007496 }
7497
Daniel Vetterea9d7582012-07-10 10:42:52 +02007498 for_each_intel_crtc_masked(dev, prepare_pipes, intel_crtc) {
7499 if (intel_crtc->base.enabled)
7500 dev_priv->display.crtc_disable(&intel_crtc->base);
7501 }
Daniel Vettera6778b32012-07-02 09:56:42 +02007502
Daniel Vetter6c4c86f2012-09-10 21:58:30 +02007503 /* crtc->mode is already used by the ->mode_set callbacks, hence we need
7504 * to set it here already despite that we pass it down the callchain.
7505 */
7506 if (modeset_pipes)
Daniel Vetter25c5b262012-07-08 22:08:04 +02007507 crtc->mode = *mode;
Daniel Vetter7758a112012-07-08 19:40:39 +02007508
Daniel Vetterea9d7582012-07-10 10:42:52 +02007509 /* Only after disabling all output pipelines that will be changed can we
7510 * update the the output configuration. */
7511 intel_modeset_update_state(dev, prepare_pipes);
7512
Daniel Vettera6778b32012-07-02 09:56:42 +02007513 /* Set up the DPLL and any encoders state that needs to adjust or depend
7514 * on the DPLL.
7515 */
Daniel Vetter25c5b262012-07-08 22:08:04 +02007516 for_each_intel_crtc_masked(dev, modeset_pipes, intel_crtc) {
7517 ret = !intel_crtc_mode_set(&intel_crtc->base,
7518 mode, adjusted_mode,
7519 x, y, fb);
7520 if (!ret)
7521 goto done;
Daniel Vettera6778b32012-07-02 09:56:42 +02007522
Daniel Vetter25c5b262012-07-08 22:08:04 +02007523 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
Daniel Vettera6778b32012-07-02 09:56:42 +02007524
Daniel Vetter25c5b262012-07-08 22:08:04 +02007525 if (encoder->crtc != &intel_crtc->base)
7526 continue;
Daniel Vettera6778b32012-07-02 09:56:42 +02007527
Daniel Vetter25c5b262012-07-08 22:08:04 +02007528 DRM_DEBUG_KMS("[ENCODER:%d:%s] set [MODE:%d:%s]\n",
7529 encoder->base.id, drm_get_encoder_name(encoder),
7530 mode->base.id, mode->name);
7531 encoder_funcs = encoder->helper_private;
7532 encoder_funcs->mode_set(encoder, mode, adjusted_mode);
7533 }
Daniel Vettera6778b32012-07-02 09:56:42 +02007534 }
7535
7536 /* Now enable the clocks, plane, pipe, and connectors that we set up. */
Daniel Vetter25c5b262012-07-08 22:08:04 +02007537 for_each_intel_crtc_masked(dev, prepare_pipes, intel_crtc)
7538 dev_priv->display.crtc_enable(&intel_crtc->base);
Daniel Vettera6778b32012-07-02 09:56:42 +02007539
Daniel Vetter25c5b262012-07-08 22:08:04 +02007540 if (modeset_pipes) {
7541 /* Store real post-adjustment hardware mode. */
7542 crtc->hwmode = *adjusted_mode;
Daniel Vettera6778b32012-07-02 09:56:42 +02007543
Daniel Vetter25c5b262012-07-08 22:08:04 +02007544 /* Calculate and store various constants which
7545 * are later needed by vblank and swap-completion
7546 * timestamping. They are derived from true hwmode.
7547 */
7548 drm_calc_timestamping_constants(crtc);
7549 }
Daniel Vettera6778b32012-07-02 09:56:42 +02007550
7551 /* FIXME: add subpixel order */
7552done:
7553 drm_mode_destroy(dev, adjusted_mode);
Daniel Vetter25c5b262012-07-08 22:08:04 +02007554 if (!ret && crtc->enabled) {
Daniel Vettera6778b32012-07-02 09:56:42 +02007555 crtc->hwmode = saved_hwmode;
7556 crtc->mode = saved_mode;
Daniel Vetter8af6cf82012-07-10 09:50:11 +02007557 } else {
7558 intel_modeset_check_state(dev);
Daniel Vettera6778b32012-07-02 09:56:42 +02007559 }
7560
7561 return ret;
7562}
7563
Daniel Vetter25c5b262012-07-08 22:08:04 +02007564#undef for_each_intel_crtc_masked
7565
Daniel Vetterd9e55602012-07-04 22:16:09 +02007566static void intel_set_config_free(struct intel_set_config *config)
7567{
7568 if (!config)
7569 return;
7570
Daniel Vetter1aa4b622012-07-05 16:20:48 +02007571 kfree(config->save_connector_encoders);
7572 kfree(config->save_encoder_crtcs);
Daniel Vetterd9e55602012-07-04 22:16:09 +02007573 kfree(config);
7574}
7575
Daniel Vetter85f9eb72012-07-04 22:24:08 +02007576static int intel_set_config_save_state(struct drm_device *dev,
7577 struct intel_set_config *config)
7578{
Daniel Vetter85f9eb72012-07-04 22:24:08 +02007579 struct drm_encoder *encoder;
7580 struct drm_connector *connector;
7581 int count;
7582
Daniel Vetter1aa4b622012-07-05 16:20:48 +02007583 config->save_encoder_crtcs =
7584 kcalloc(dev->mode_config.num_encoder,
7585 sizeof(struct drm_crtc *), GFP_KERNEL);
7586 if (!config->save_encoder_crtcs)
Daniel Vetter85f9eb72012-07-04 22:24:08 +02007587 return -ENOMEM;
7588
Daniel Vetter1aa4b622012-07-05 16:20:48 +02007589 config->save_connector_encoders =
7590 kcalloc(dev->mode_config.num_connector,
7591 sizeof(struct drm_encoder *), GFP_KERNEL);
7592 if (!config->save_connector_encoders)
Daniel Vetter85f9eb72012-07-04 22:24:08 +02007593 return -ENOMEM;
7594
7595 /* Copy data. Note that driver private data is not affected.
7596 * Should anything bad happen only the expected state is
7597 * restored, not the drivers personal bookkeeping.
7598 */
7599 count = 0;
Daniel Vetter85f9eb72012-07-04 22:24:08 +02007600 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
Daniel Vetter1aa4b622012-07-05 16:20:48 +02007601 config->save_encoder_crtcs[count++] = encoder->crtc;
Daniel Vetter85f9eb72012-07-04 22:24:08 +02007602 }
7603
7604 count = 0;
7605 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
Daniel Vetter1aa4b622012-07-05 16:20:48 +02007606 config->save_connector_encoders[count++] = connector->encoder;
Daniel Vetter85f9eb72012-07-04 22:24:08 +02007607 }
7608
7609 return 0;
7610}
7611
7612static void intel_set_config_restore_state(struct drm_device *dev,
7613 struct intel_set_config *config)
7614{
Daniel Vetter9a935852012-07-05 22:34:27 +02007615 struct intel_encoder *encoder;
7616 struct intel_connector *connector;
Daniel Vetter85f9eb72012-07-04 22:24:08 +02007617 int count;
7618
7619 count = 0;
Daniel Vetter9a935852012-07-05 22:34:27 +02007620 list_for_each_entry(encoder, &dev->mode_config.encoder_list, base.head) {
7621 encoder->new_crtc =
7622 to_intel_crtc(config->save_encoder_crtcs[count++]);
Daniel Vetter85f9eb72012-07-04 22:24:08 +02007623 }
7624
7625 count = 0;
Daniel Vetter9a935852012-07-05 22:34:27 +02007626 list_for_each_entry(connector, &dev->mode_config.connector_list, base.head) {
7627 connector->new_encoder =
7628 to_intel_encoder(config->save_connector_encoders[count++]);
Daniel Vetter85f9eb72012-07-04 22:24:08 +02007629 }
7630}
7631
Daniel Vetter5e2b5842012-07-04 22:41:29 +02007632static void
7633intel_set_config_compute_mode_changes(struct drm_mode_set *set,
7634 struct intel_set_config *config)
7635{
7636
7637 /* We should be able to check here if the fb has the same properties
7638 * and then just flip_or_move it */
7639 if (set->crtc->fb != set->fb) {
7640 /* If we have no fb then treat it as a full mode set */
7641 if (set->crtc->fb == NULL) {
7642 DRM_DEBUG_KMS("crtc has no fb, full mode set\n");
7643 config->mode_changed = true;
7644 } else if (set->fb == NULL) {
7645 config->mode_changed = true;
7646 } else if (set->fb->depth != set->crtc->fb->depth) {
7647 config->mode_changed = true;
7648 } else if (set->fb->bits_per_pixel !=
7649 set->crtc->fb->bits_per_pixel) {
7650 config->mode_changed = true;
7651 } else
7652 config->fb_changed = true;
7653 }
7654
Daniel Vetter835c5872012-07-10 18:11:08 +02007655 if (set->fb && (set->x != set->crtc->x || set->y != set->crtc->y))
Daniel Vetter5e2b5842012-07-04 22:41:29 +02007656 config->fb_changed = true;
7657
7658 if (set->mode && !drm_mode_equal(set->mode, &set->crtc->mode)) {
7659 DRM_DEBUG_KMS("modes are different, full mode set\n");
7660 drm_mode_debug_printmodeline(&set->crtc->mode);
7661 drm_mode_debug_printmodeline(set->mode);
7662 config->mode_changed = true;
7663 }
7664}
7665
Daniel Vetter2e431052012-07-04 22:42:15 +02007666static int
Daniel Vetter9a935852012-07-05 22:34:27 +02007667intel_modeset_stage_output_state(struct drm_device *dev,
7668 struct drm_mode_set *set,
7669 struct intel_set_config *config)
Daniel Vetter50f56112012-07-02 09:35:43 +02007670{
Daniel Vetter85f9eb72012-07-04 22:24:08 +02007671 struct drm_crtc *new_crtc;
Daniel Vetter9a935852012-07-05 22:34:27 +02007672 struct intel_connector *connector;
7673 struct intel_encoder *encoder;
Daniel Vetter2e431052012-07-04 22:42:15 +02007674 int count, ro;
Daniel Vetter50f56112012-07-02 09:35:43 +02007675
Daniel Vetter9a935852012-07-05 22:34:27 +02007676 /* The upper layers ensure that we either disabl a crtc or have a list
7677 * of connectors. For paranoia, double-check this. */
7678 WARN_ON(!set->fb && (set->num_connectors != 0));
7679 WARN_ON(set->fb && (set->num_connectors == 0));
7680
Daniel Vetter50f56112012-07-02 09:35:43 +02007681 count = 0;
Daniel Vetter9a935852012-07-05 22:34:27 +02007682 list_for_each_entry(connector, &dev->mode_config.connector_list,
7683 base.head) {
7684 /* Otherwise traverse passed in connector list and get encoders
7685 * for them. */
Daniel Vetter50f56112012-07-02 09:35:43 +02007686 for (ro = 0; ro < set->num_connectors; ro++) {
Daniel Vetter9a935852012-07-05 22:34:27 +02007687 if (set->connectors[ro] == &connector->base) {
7688 connector->new_encoder = connector->encoder;
Daniel Vetter50f56112012-07-02 09:35:43 +02007689 break;
7690 }
7691 }
7692
Daniel Vetter9a935852012-07-05 22:34:27 +02007693 /* If we disable the crtc, disable all its connectors. Also, if
7694 * the connector is on the changing crtc but not on the new
7695 * connector list, disable it. */
7696 if ((!set->fb || ro == set->num_connectors) &&
7697 connector->base.encoder &&
7698 connector->base.encoder->crtc == set->crtc) {
7699 connector->new_encoder = NULL;
7700
7701 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] to [NOCRTC]\n",
7702 connector->base.base.id,
7703 drm_get_connector_name(&connector->base));
7704 }
7705
7706
7707 if (&connector->new_encoder->base != connector->base.encoder) {
Daniel Vetter50f56112012-07-02 09:35:43 +02007708 DRM_DEBUG_KMS("encoder changed, full mode switch\n");
Daniel Vetter5e2b5842012-07-04 22:41:29 +02007709 config->mode_changed = true;
Daniel Vetter50f56112012-07-02 09:35:43 +02007710 }
Daniel Vetter50f56112012-07-02 09:35:43 +02007711
Daniel Vetter9a935852012-07-05 22:34:27 +02007712 /* Disable all disconnected encoders. */
7713 if (connector->base.status == connector_status_disconnected)
7714 connector->new_encoder = NULL;
7715 }
7716 /* connector->new_encoder is now updated for all connectors. */
7717
7718 /* Update crtc of enabled connectors. */
Daniel Vetter50f56112012-07-02 09:35:43 +02007719 count = 0;
Daniel Vetter9a935852012-07-05 22:34:27 +02007720 list_for_each_entry(connector, &dev->mode_config.connector_list,
7721 base.head) {
7722 if (!connector->new_encoder)
Daniel Vetter50f56112012-07-02 09:35:43 +02007723 continue;
7724
Daniel Vetter9a935852012-07-05 22:34:27 +02007725 new_crtc = connector->new_encoder->base.crtc;
Daniel Vetter50f56112012-07-02 09:35:43 +02007726
7727 for (ro = 0; ro < set->num_connectors; ro++) {
Daniel Vetter9a935852012-07-05 22:34:27 +02007728 if (set->connectors[ro] == &connector->base)
Daniel Vetter50f56112012-07-02 09:35:43 +02007729 new_crtc = set->crtc;
7730 }
7731
7732 /* Make sure the new CRTC will work with the encoder */
Daniel Vetter9a935852012-07-05 22:34:27 +02007733 if (!intel_encoder_crtc_ok(&connector->new_encoder->base,
7734 new_crtc)) {
Daniel Vetter5e2b5842012-07-04 22:41:29 +02007735 return -EINVAL;
Daniel Vetter50f56112012-07-02 09:35:43 +02007736 }
Daniel Vetter9a935852012-07-05 22:34:27 +02007737 connector->encoder->new_crtc = to_intel_crtc(new_crtc);
7738
7739 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] to [CRTC:%d]\n",
7740 connector->base.base.id,
7741 drm_get_connector_name(&connector->base),
7742 new_crtc->base.id);
7743 }
7744
7745 /* Check for any encoders that needs to be disabled. */
7746 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
7747 base.head) {
7748 list_for_each_entry(connector,
7749 &dev->mode_config.connector_list,
7750 base.head) {
7751 if (connector->new_encoder == encoder) {
7752 WARN_ON(!connector->new_encoder->new_crtc);
7753
7754 goto next_encoder;
7755 }
7756 }
7757 encoder->new_crtc = NULL;
7758next_encoder:
7759 /* Only now check for crtc changes so we don't miss encoders
7760 * that will be disabled. */
7761 if (&encoder->new_crtc->base != encoder->base.crtc) {
Daniel Vetter50f56112012-07-02 09:35:43 +02007762 DRM_DEBUG_KMS("crtc 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 }
7765 }
Daniel Vetter9a935852012-07-05 22:34:27 +02007766 /* Now we've also updated encoder->new_crtc for all encoders. */
Daniel Vetter50f56112012-07-02 09:35:43 +02007767
Daniel Vetter2e431052012-07-04 22:42:15 +02007768 return 0;
7769}
7770
7771static int intel_crtc_set_config(struct drm_mode_set *set)
7772{
7773 struct drm_device *dev;
Daniel Vetter2e431052012-07-04 22:42:15 +02007774 struct drm_mode_set save_set;
7775 struct intel_set_config *config;
7776 int ret;
Daniel Vetter2e431052012-07-04 22:42:15 +02007777
Daniel Vetter8d3e3752012-07-05 16:09:09 +02007778 BUG_ON(!set);
7779 BUG_ON(!set->crtc);
7780 BUG_ON(!set->crtc->helper_private);
Daniel Vetter2e431052012-07-04 22:42:15 +02007781
7782 if (!set->mode)
7783 set->fb = NULL;
7784
Daniel Vetter431e50f2012-07-10 17:53:42 +02007785 /* The fb helper likes to play gross jokes with ->mode_set_config.
7786 * Unfortunately the crtc helper doesn't do much at all for this case,
7787 * so we have to cope with this madness until the fb helper is fixed up. */
7788 if (set->fb && set->num_connectors == 0)
7789 return 0;
7790
Daniel Vetter2e431052012-07-04 22:42:15 +02007791 if (set->fb) {
7792 DRM_DEBUG_KMS("[CRTC:%d] [FB:%d] #connectors=%d (x y) (%i %i)\n",
7793 set->crtc->base.id, set->fb->base.id,
7794 (int)set->num_connectors, set->x, set->y);
7795 } else {
7796 DRM_DEBUG_KMS("[CRTC:%d] [NOFB]\n", set->crtc->base.id);
Daniel Vetter2e431052012-07-04 22:42:15 +02007797 }
7798
7799 dev = set->crtc->dev;
7800
7801 ret = -ENOMEM;
7802 config = kzalloc(sizeof(*config), GFP_KERNEL);
7803 if (!config)
7804 goto out_config;
7805
7806 ret = intel_set_config_save_state(dev, config);
7807 if (ret)
7808 goto out_config;
7809
7810 save_set.crtc = set->crtc;
7811 save_set.mode = &set->crtc->mode;
7812 save_set.x = set->crtc->x;
7813 save_set.y = set->crtc->y;
7814 save_set.fb = set->crtc->fb;
7815
7816 /* Compute whether we need a full modeset, only an fb base update or no
7817 * change at all. In the future we might also check whether only the
7818 * mode changed, e.g. for LVDS where we only change the panel fitter in
7819 * such cases. */
7820 intel_set_config_compute_mode_changes(set, config);
7821
Daniel Vetter9a935852012-07-05 22:34:27 +02007822 ret = intel_modeset_stage_output_state(dev, set, config);
Daniel Vetter2e431052012-07-04 22:42:15 +02007823 if (ret)
7824 goto fail;
7825
Daniel Vetter5e2b5842012-07-04 22:41:29 +02007826 if (config->mode_changed) {
Daniel Vetter87f1faa2012-07-05 23:36:17 +02007827 if (set->mode) {
Daniel Vetter50f56112012-07-02 09:35:43 +02007828 DRM_DEBUG_KMS("attempting to set mode from"
7829 " userspace\n");
7830 drm_mode_debug_printmodeline(set->mode);
Daniel Vetter87f1faa2012-07-05 23:36:17 +02007831 }
7832
7833 if (!intel_set_mode(set->crtc, set->mode,
7834 set->x, set->y, set->fb)) {
7835 DRM_ERROR("failed to set mode on [CRTC:%d]\n",
7836 set->crtc->base.id);
7837 ret = -EINVAL;
7838 goto fail;
7839 }
Daniel Vetter5e2b5842012-07-04 22:41:29 +02007840 } else if (config->fb_changed) {
Daniel Vetter4f660f42012-07-02 09:47:37 +02007841 ret = intel_pipe_set_base(set->crtc,
Daniel Vetter94352cf2012-07-05 22:51:56 +02007842 set->x, set->y, set->fb);
Daniel Vetter50f56112012-07-02 09:35:43 +02007843 }
7844
Daniel Vetterd9e55602012-07-04 22:16:09 +02007845 intel_set_config_free(config);
7846
Daniel Vetter50f56112012-07-02 09:35:43 +02007847 return 0;
7848
7849fail:
Daniel Vetter85f9eb72012-07-04 22:24:08 +02007850 intel_set_config_restore_state(dev, config);
Daniel Vetter50f56112012-07-02 09:35:43 +02007851
7852 /* Try to restore the config */
Daniel Vetter5e2b5842012-07-04 22:41:29 +02007853 if (config->mode_changed &&
Daniel Vettera6778b32012-07-02 09:56:42 +02007854 !intel_set_mode(save_set.crtc, save_set.mode,
7855 save_set.x, save_set.y, save_set.fb))
Daniel Vetter50f56112012-07-02 09:35:43 +02007856 DRM_ERROR("failed to restore config after modeset failure\n");
7857
Daniel Vetterd9e55602012-07-04 22:16:09 +02007858out_config:
7859 intel_set_config_free(config);
Daniel Vetter50f56112012-07-02 09:35:43 +02007860 return ret;
7861}
7862
Chris Wilsonf6e5b162011-04-12 18:06:51 +01007863static const struct drm_crtc_funcs intel_crtc_funcs = {
Chris Wilsonf6e5b162011-04-12 18:06:51 +01007864 .cursor_set = intel_crtc_cursor_set,
7865 .cursor_move = intel_crtc_cursor_move,
7866 .gamma_set = intel_crtc_gamma_set,
Daniel Vetter50f56112012-07-02 09:35:43 +02007867 .set_config = intel_crtc_set_config,
Chris Wilsonf6e5b162011-04-12 18:06:51 +01007868 .destroy = intel_crtc_destroy,
7869 .page_flip = intel_crtc_page_flip,
7870};
7871
Paulo Zanoni79f689a2012-10-05 12:05:52 -03007872static void intel_cpu_pll_init(struct drm_device *dev)
7873{
7874 if (IS_HASWELL(dev))
7875 intel_ddi_pll_init(dev);
7876}
7877
Jesse Barnesee7b9f92012-04-20 17:11:53 +01007878static void intel_pch_pll_init(struct drm_device *dev)
7879{
7880 drm_i915_private_t *dev_priv = dev->dev_private;
7881 int i;
7882
7883 if (dev_priv->num_pch_pll == 0) {
7884 DRM_DEBUG_KMS("No PCH PLLs on this hardware, skipping initialisation\n");
7885 return;
7886 }
7887
7888 for (i = 0; i < dev_priv->num_pch_pll; i++) {
7889 dev_priv->pch_plls[i].pll_reg = _PCH_DPLL(i);
7890 dev_priv->pch_plls[i].fp0_reg = _PCH_FP0(i);
7891 dev_priv->pch_plls[i].fp1_reg = _PCH_FP1(i);
7892 }
7893}
7894
Hannes Ederb358d0a2008-12-18 21:18:47 +01007895static void intel_crtc_init(struct drm_device *dev, int pipe)
Jesse Barnes79e53942008-11-07 14:24:08 -08007896{
Jesse Barnes22fd0fa2009-12-02 13:42:53 -08007897 drm_i915_private_t *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -08007898 struct intel_crtc *intel_crtc;
7899 int i;
7900
7901 intel_crtc = kzalloc(sizeof(struct intel_crtc) + (INTELFB_CONN_LIMIT * sizeof(struct drm_connector *)), GFP_KERNEL);
7902 if (intel_crtc == NULL)
7903 return;
7904
7905 drm_crtc_init(dev, &intel_crtc->base, &intel_crtc_funcs);
7906
7907 drm_mode_crtc_set_gamma_size(&intel_crtc->base, 256);
Jesse Barnes79e53942008-11-07 14:24:08 -08007908 for (i = 0; i < 256; i++) {
7909 intel_crtc->lut_r[i] = i;
7910 intel_crtc->lut_g[i] = i;
7911 intel_crtc->lut_b[i] = i;
7912 }
7913
Jesse Barnes80824002009-09-10 15:28:06 -07007914 /* Swap pipes & planes for FBC on pre-965 */
7915 intel_crtc->pipe = pipe;
7916 intel_crtc->plane = pipe;
Paulo Zanonia5c961d2012-10-24 15:59:34 -02007917 intel_crtc->cpu_transcoder = pipe;
Chris Wilsone2e767a2010-09-13 16:53:12 +01007918 if (IS_MOBILE(dev) && IS_GEN3(dev)) {
Zhao Yakui28c97732009-10-09 11:39:41 +08007919 DRM_DEBUG_KMS("swapping pipes & planes for FBC\n");
Chris Wilsone2e767a2010-09-13 16:53:12 +01007920 intel_crtc->plane = !pipe;
Jesse Barnes80824002009-09-10 15:28:06 -07007921 }
7922
Jesse Barnes22fd0fa2009-12-02 13:42:53 -08007923 BUG_ON(pipe >= ARRAY_SIZE(dev_priv->plane_to_crtc_mapping) ||
7924 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] != NULL);
7925 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] = &intel_crtc->base;
7926 dev_priv->pipe_to_crtc_mapping[intel_crtc->pipe] = &intel_crtc->base;
7927
Jesse Barnes5a354202011-06-24 12:19:22 -07007928 intel_crtc->bpp = 24; /* default for pre-Ironlake */
Jesse Barnes7e7d76c2010-09-10 10:47:20 -07007929
Jesse Barnes79e53942008-11-07 14:24:08 -08007930 drm_crtc_helper_add(&intel_crtc->base, &intel_helper_funcs);
Jesse Barnes79e53942008-11-07 14:24:08 -08007931}
7932
Carl Worth08d7b3d2009-04-29 14:43:54 -07007933int intel_get_pipe_from_crtc_id(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00007934 struct drm_file *file)
Carl Worth08d7b3d2009-04-29 14:43:54 -07007935{
Carl Worth08d7b3d2009-04-29 14:43:54 -07007936 struct drm_i915_get_pipe_from_crtc_id *pipe_from_crtc_id = data;
Daniel Vetterc05422d2009-08-11 16:05:30 +02007937 struct drm_mode_object *drmmode_obj;
7938 struct intel_crtc *crtc;
Carl Worth08d7b3d2009-04-29 14:43:54 -07007939
Daniel Vetter1cff8f62012-04-24 09:55:08 +02007940 if (!drm_core_check_feature(dev, DRIVER_MODESET))
7941 return -ENODEV;
Carl Worth08d7b3d2009-04-29 14:43:54 -07007942
Daniel Vetterc05422d2009-08-11 16:05:30 +02007943 drmmode_obj = drm_mode_object_find(dev, pipe_from_crtc_id->crtc_id,
7944 DRM_MODE_OBJECT_CRTC);
Carl Worth08d7b3d2009-04-29 14:43:54 -07007945
Daniel Vetterc05422d2009-08-11 16:05:30 +02007946 if (!drmmode_obj) {
Carl Worth08d7b3d2009-04-29 14:43:54 -07007947 DRM_ERROR("no such CRTC id\n");
7948 return -EINVAL;
7949 }
7950
Daniel Vetterc05422d2009-08-11 16:05:30 +02007951 crtc = to_intel_crtc(obj_to_crtc(drmmode_obj));
7952 pipe_from_crtc_id->pipe = crtc->pipe;
Carl Worth08d7b3d2009-04-29 14:43:54 -07007953
Daniel Vetterc05422d2009-08-11 16:05:30 +02007954 return 0;
Carl Worth08d7b3d2009-04-29 14:43:54 -07007955}
7956
Daniel Vetter66a92782012-07-12 20:08:18 +02007957static int intel_encoder_clones(struct intel_encoder *encoder)
Jesse Barnes79e53942008-11-07 14:24:08 -08007958{
Daniel Vetter66a92782012-07-12 20:08:18 +02007959 struct drm_device *dev = encoder->base.dev;
7960 struct intel_encoder *source_encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08007961 int index_mask = 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08007962 int entry = 0;
7963
Daniel Vetter66a92782012-07-12 20:08:18 +02007964 list_for_each_entry(source_encoder,
7965 &dev->mode_config.encoder_list, base.head) {
7966
7967 if (encoder == source_encoder)
Jesse Barnes79e53942008-11-07 14:24:08 -08007968 index_mask |= (1 << entry);
Daniel Vetter66a92782012-07-12 20:08:18 +02007969
7970 /* Intel hw has only one MUX where enocoders could be cloned. */
7971 if (encoder->cloneable && source_encoder->cloneable)
7972 index_mask |= (1 << entry);
7973
Jesse Barnes79e53942008-11-07 14:24:08 -08007974 entry++;
7975 }
Chris Wilson4ef69c72010-09-09 15:14:28 +01007976
Jesse Barnes79e53942008-11-07 14:24:08 -08007977 return index_mask;
7978}
7979
Chris Wilson4d302442010-12-14 19:21:29 +00007980static bool has_edp_a(struct drm_device *dev)
7981{
7982 struct drm_i915_private *dev_priv = dev->dev_private;
7983
7984 if (!IS_MOBILE(dev))
7985 return false;
7986
7987 if ((I915_READ(DP_A) & DP_DETECTED) == 0)
7988 return false;
7989
7990 if (IS_GEN5(dev) &&
7991 (I915_READ(ILK_DISPLAY_CHICKEN_FUSES) & ILK_eDP_A_DISABLE))
7992 return false;
7993
7994 return true;
7995}
7996
Jesse Barnes79e53942008-11-07 14:24:08 -08007997static void intel_setup_outputs(struct drm_device *dev)
7998{
Eric Anholt725e30a2009-01-22 13:01:02 -08007999 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson4ef69c72010-09-09 15:14:28 +01008000 struct intel_encoder *encoder;
Adam Jacksoncb0953d2010-07-16 14:46:29 -04008001 bool dpd_is_edp = false;
Chris Wilsonf3cfcba2012-02-09 09:35:53 +00008002 bool has_lvds;
Jesse Barnes79e53942008-11-07 14:24:08 -08008003
Chris Wilsonf3cfcba2012-02-09 09:35:53 +00008004 has_lvds = intel_lvds_init(dev);
Chris Wilsonc5d1b512010-11-29 18:00:23 +00008005 if (!has_lvds && !HAS_PCH_SPLIT(dev)) {
8006 /* disable the panel fitter on everything but LVDS */
8007 I915_WRITE(PFIT_CONTROL, 0);
8008 }
Jesse Barnes79e53942008-11-07 14:24:08 -08008009
Eric Anholtbad720f2009-10-22 16:11:14 -07008010 if (HAS_PCH_SPLIT(dev)) {
Adam Jacksoncb0953d2010-07-16 14:46:29 -04008011 dpd_is_edp = intel_dpd_is_edp(dev);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +08008012
Chris Wilson4d302442010-12-14 19:21:29 +00008013 if (has_edp_a(dev))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03008014 intel_dp_init(dev, DP_A, PORT_A);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08008015
Adam Jacksoncb0953d2010-07-16 14:46:29 -04008016 if (dpd_is_edp && (I915_READ(PCH_DP_D) & DP_DETECTED))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03008017 intel_dp_init(dev, PCH_DP_D, PORT_D);
Adam Jacksoncb0953d2010-07-16 14:46:29 -04008018 }
8019
8020 intel_crt_init(dev);
8021
Eugeni Dodonov0e72a5b2012-05-09 15:37:27 -03008022 if (IS_HASWELL(dev)) {
8023 int found;
8024
8025 /* Haswell uses DDI functions to detect digital outputs */
8026 found = I915_READ(DDI_BUF_CTL_A) & DDI_INIT_DISPLAY_DETECTED;
8027 /* DDI A only supports eDP */
8028 if (found)
8029 intel_ddi_init(dev, PORT_A);
8030
8031 /* DDI B, C and D detection is indicated by the SFUSE_STRAP
8032 * register */
8033 found = I915_READ(SFUSE_STRAP);
8034
8035 if (found & SFUSE_STRAP_DDIB_DETECTED)
8036 intel_ddi_init(dev, PORT_B);
8037 if (found & SFUSE_STRAP_DDIC_DETECTED)
8038 intel_ddi_init(dev, PORT_C);
8039 if (found & SFUSE_STRAP_DDID_DETECTED)
8040 intel_ddi_init(dev, PORT_D);
8041 } else if (HAS_PCH_SPLIT(dev)) {
Adam Jacksoncb0953d2010-07-16 14:46:29 -04008042 int found;
8043
Zhenyu Wang30ad48b2009-06-05 15:38:43 +08008044 if (I915_READ(HDMIB) & PORT_DETECTED) {
Zhao Yakui461ed3c2010-03-30 15:11:33 +08008045 /* PCH SDVOB multiplex with HDMIB */
Daniel Vettereef4eac2012-03-23 23:43:35 +01008046 found = intel_sdvo_init(dev, PCH_SDVOB, true);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +08008047 if (!found)
Daniel Vetter08d644a2012-07-12 20:19:59 +02008048 intel_hdmi_init(dev, HDMIB, PORT_B);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08008049 if (!found && (I915_READ(PCH_DP_B) & DP_DETECTED))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03008050 intel_dp_init(dev, PCH_DP_B, PORT_B);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +08008051 }
8052
8053 if (I915_READ(HDMIC) & PORT_DETECTED)
Daniel Vetter08d644a2012-07-12 20:19:59 +02008054 intel_hdmi_init(dev, HDMIC, PORT_C);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +08008055
Jesse Barnesb708a1d2012-06-11 14:39:56 -04008056 if (!dpd_is_edp && I915_READ(HDMID) & PORT_DETECTED)
Daniel Vetter08d644a2012-07-12 20:19:59 +02008057 intel_hdmi_init(dev, HDMID, PORT_D);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +08008058
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08008059 if (I915_READ(PCH_DP_C) & DP_DETECTED)
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03008060 intel_dp_init(dev, PCH_DP_C, PORT_C);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08008061
Adam Jacksoncb0953d2010-07-16 14:46:29 -04008062 if (!dpd_is_edp && (I915_READ(PCH_DP_D) & DP_DETECTED))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03008063 intel_dp_init(dev, PCH_DP_D, PORT_D);
Jesse Barnes4a87d652012-06-15 11:55:16 -07008064 } else if (IS_VALLEYVIEW(dev)) {
8065 int found;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08008066
Gajanan Bhat19c03922012-09-27 19:13:07 +05308067 /* Check for built-in panel first. Shares lanes with HDMI on SDVOC */
8068 if (I915_READ(DP_C) & DP_DETECTED)
8069 intel_dp_init(dev, DP_C, PORT_C);
8070
Jesse Barnes4a87d652012-06-15 11:55:16 -07008071 if (I915_READ(SDVOB) & PORT_DETECTED) {
8072 /* SDVOB multiplex with HDMIB */
8073 found = intel_sdvo_init(dev, SDVOB, true);
8074 if (!found)
Daniel Vetter08d644a2012-07-12 20:19:59 +02008075 intel_hdmi_init(dev, SDVOB, PORT_B);
Jesse Barnes4a87d652012-06-15 11:55:16 -07008076 if (!found && (I915_READ(DP_B) & DP_DETECTED))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03008077 intel_dp_init(dev, DP_B, PORT_B);
Jesse Barnes4a87d652012-06-15 11:55:16 -07008078 }
8079
8080 if (I915_READ(SDVOC) & PORT_DETECTED)
Daniel Vetter08d644a2012-07-12 20:19:59 +02008081 intel_hdmi_init(dev, SDVOC, PORT_C);
Jesse Barnes4a87d652012-06-15 11:55:16 -07008082
Zhenyu Wang103a1962009-11-27 11:44:36 +08008083 } else if (SUPPORTS_DIGITAL_OUTPUTS(dev)) {
Ma Ling27185ae2009-08-24 13:50:23 +08008084 bool found = false;
Eric Anholt7d573822009-01-02 13:33:00 -08008085
Eric Anholt725e30a2009-01-22 13:01:02 -08008086 if (I915_READ(SDVOB) & SDVO_DETECTED) {
Jesse Barnesb01f2c32009-12-11 11:07:17 -08008087 DRM_DEBUG_KMS("probing SDVOB\n");
Daniel Vettereef4eac2012-03-23 23:43:35 +01008088 found = intel_sdvo_init(dev, SDVOB, true);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08008089 if (!found && SUPPORTS_INTEGRATED_HDMI(dev)) {
8090 DRM_DEBUG_KMS("probing HDMI on SDVOB\n");
Daniel Vetter08d644a2012-07-12 20:19:59 +02008091 intel_hdmi_init(dev, SDVOB, PORT_B);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08008092 }
Ma Ling27185ae2009-08-24 13:50:23 +08008093
Jesse Barnesb01f2c32009-12-11 11:07:17 -08008094 if (!found && SUPPORTS_INTEGRATED_DP(dev)) {
8095 DRM_DEBUG_KMS("probing DP_B\n");
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03008096 intel_dp_init(dev, DP_B, PORT_B);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08008097 }
Eric Anholt725e30a2009-01-22 13:01:02 -08008098 }
Kristian Høgsberg13520b02009-03-13 15:42:14 -04008099
8100 /* Before G4X SDVOC doesn't have its own detect register */
Kristian Høgsberg13520b02009-03-13 15:42:14 -04008101
Jesse Barnesb01f2c32009-12-11 11:07:17 -08008102 if (I915_READ(SDVOB) & SDVO_DETECTED) {
8103 DRM_DEBUG_KMS("probing SDVOC\n");
Daniel Vettereef4eac2012-03-23 23:43:35 +01008104 found = intel_sdvo_init(dev, SDVOC, false);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08008105 }
Ma Ling27185ae2009-08-24 13:50:23 +08008106
8107 if (!found && (I915_READ(SDVOC) & SDVO_DETECTED)) {
8108
Jesse Barnesb01f2c32009-12-11 11:07:17 -08008109 if (SUPPORTS_INTEGRATED_HDMI(dev)) {
8110 DRM_DEBUG_KMS("probing HDMI on SDVOC\n");
Daniel Vetter08d644a2012-07-12 20:19:59 +02008111 intel_hdmi_init(dev, SDVOC, PORT_C);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08008112 }
8113 if (SUPPORTS_INTEGRATED_DP(dev)) {
8114 DRM_DEBUG_KMS("probing DP_C\n");
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03008115 intel_dp_init(dev, DP_C, PORT_C);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08008116 }
Eric Anholt725e30a2009-01-22 13:01:02 -08008117 }
Ma Ling27185ae2009-08-24 13:50:23 +08008118
Jesse Barnesb01f2c32009-12-11 11:07:17 -08008119 if (SUPPORTS_INTEGRATED_DP(dev) &&
8120 (I915_READ(DP_D) & DP_DETECTED)) {
8121 DRM_DEBUG_KMS("probing DP_D\n");
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03008122 intel_dp_init(dev, DP_D, PORT_D);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08008123 }
Eric Anholtbad720f2009-10-22 16:11:14 -07008124 } else if (IS_GEN2(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -08008125 intel_dvo_init(dev);
8126
Zhenyu Wang103a1962009-11-27 11:44:36 +08008127 if (SUPPORTS_TV(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -08008128 intel_tv_init(dev);
8129
Chris Wilson4ef69c72010-09-09 15:14:28 +01008130 list_for_each_entry(encoder, &dev->mode_config.encoder_list, base.head) {
8131 encoder->base.possible_crtcs = encoder->crtc_mask;
8132 encoder->base.possible_clones =
Daniel Vetter66a92782012-07-12 20:08:18 +02008133 intel_encoder_clones(encoder);
Jesse Barnes79e53942008-11-07 14:24:08 -08008134 }
Chris Wilson47356eb2011-01-11 17:06:04 +00008135
Paulo Zanoni40579ab2012-07-03 15:57:33 -03008136 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev))
Keith Packard9fb526d2011-09-26 22:24:57 -07008137 ironlake_init_pch_refclk(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08008138}
8139
8140static void intel_user_framebuffer_destroy(struct drm_framebuffer *fb)
8141{
8142 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
Jesse Barnes79e53942008-11-07 14:24:08 -08008143
8144 drm_framebuffer_cleanup(fb);
Chris Wilson05394f32010-11-08 19:18:58 +00008145 drm_gem_object_unreference_unlocked(&intel_fb->obj->base);
Jesse Barnes79e53942008-11-07 14:24:08 -08008146
8147 kfree(intel_fb);
8148}
8149
8150static int intel_user_framebuffer_create_handle(struct drm_framebuffer *fb,
Chris Wilson05394f32010-11-08 19:18:58 +00008151 struct drm_file *file,
Jesse Barnes79e53942008-11-07 14:24:08 -08008152 unsigned int *handle)
8153{
8154 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
Chris Wilson05394f32010-11-08 19:18:58 +00008155 struct drm_i915_gem_object *obj = intel_fb->obj;
Jesse Barnes79e53942008-11-07 14:24:08 -08008156
Chris Wilson05394f32010-11-08 19:18:58 +00008157 return drm_gem_handle_create(file, &obj->base, handle);
Jesse Barnes79e53942008-11-07 14:24:08 -08008158}
8159
8160static const struct drm_framebuffer_funcs intel_fb_funcs = {
8161 .destroy = intel_user_framebuffer_destroy,
8162 .create_handle = intel_user_framebuffer_create_handle,
8163};
8164
Dave Airlie38651672010-03-30 05:34:13 +00008165int intel_framebuffer_init(struct drm_device *dev,
8166 struct intel_framebuffer *intel_fb,
Jesse Barnes308e5bc2011-11-14 14:51:28 -08008167 struct drm_mode_fb_cmd2 *mode_cmd,
Chris Wilson05394f32010-11-08 19:18:58 +00008168 struct drm_i915_gem_object *obj)
Jesse Barnes79e53942008-11-07 14:24:08 -08008169{
Jesse Barnes79e53942008-11-07 14:24:08 -08008170 int ret;
8171
Chris Wilson05394f32010-11-08 19:18:58 +00008172 if (obj->tiling_mode == I915_TILING_Y)
Chris Wilson57cd6502010-08-08 12:34:44 +01008173 return -EINVAL;
8174
Jesse Barnes308e5bc2011-11-14 14:51:28 -08008175 if (mode_cmd->pitches[0] & 63)
Chris Wilson57cd6502010-08-08 12:34:44 +01008176 return -EINVAL;
8177
Jesse Barnes308e5bc2011-11-14 14:51:28 -08008178 switch (mode_cmd->pixel_format) {
Ville Syrjälä04b39242011-11-17 18:05:13 +02008179 case DRM_FORMAT_RGB332:
8180 case DRM_FORMAT_RGB565:
8181 case DRM_FORMAT_XRGB8888:
Jesse Barnesb250da72012-03-07 08:49:29 -08008182 case DRM_FORMAT_XBGR8888:
Ville Syrjälä04b39242011-11-17 18:05:13 +02008183 case DRM_FORMAT_ARGB8888:
8184 case DRM_FORMAT_XRGB2101010:
8185 case DRM_FORMAT_ARGB2101010:
Jesse Barnes308e5bc2011-11-14 14:51:28 -08008186 /* RGB formats are common across chipsets */
Jesse Barnesb5626742011-06-24 12:19:27 -07008187 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +02008188 case DRM_FORMAT_YUYV:
8189 case DRM_FORMAT_UYVY:
8190 case DRM_FORMAT_YVYU:
8191 case DRM_FORMAT_VYUY:
Chris Wilson57cd6502010-08-08 12:34:44 +01008192 break;
8193 default:
Eugeni Dodonovaca25842012-01-17 15:25:45 -02008194 DRM_DEBUG_KMS("unsupported pixel format %u\n",
8195 mode_cmd->pixel_format);
Chris Wilson57cd6502010-08-08 12:34:44 +01008196 return -EINVAL;
8197 }
8198
Jesse Barnes79e53942008-11-07 14:24:08 -08008199 ret = drm_framebuffer_init(dev, &intel_fb->base, &intel_fb_funcs);
8200 if (ret) {
8201 DRM_ERROR("framebuffer init failed %d\n", ret);
8202 return ret;
8203 }
8204
8205 drm_helper_mode_fill_fb_struct(&intel_fb->base, mode_cmd);
Jesse Barnes79e53942008-11-07 14:24:08 -08008206 intel_fb->obj = obj;
Jesse Barnes79e53942008-11-07 14:24:08 -08008207 return 0;
8208}
8209
Jesse Barnes79e53942008-11-07 14:24:08 -08008210static struct drm_framebuffer *
8211intel_user_framebuffer_create(struct drm_device *dev,
8212 struct drm_file *filp,
Jesse Barnes308e5bc2011-11-14 14:51:28 -08008213 struct drm_mode_fb_cmd2 *mode_cmd)
Jesse Barnes79e53942008-11-07 14:24:08 -08008214{
Chris Wilson05394f32010-11-08 19:18:58 +00008215 struct drm_i915_gem_object *obj;
Jesse Barnes79e53942008-11-07 14:24:08 -08008216
Jesse Barnes308e5bc2011-11-14 14:51:28 -08008217 obj = to_intel_bo(drm_gem_object_lookup(dev, filp,
8218 mode_cmd->handles[0]));
Chris Wilsonc8725222011-02-19 11:31:06 +00008219 if (&obj->base == NULL)
Chris Wilsoncce13ff2010-08-08 13:36:38 +01008220 return ERR_PTR(-ENOENT);
Jesse Barnes79e53942008-11-07 14:24:08 -08008221
Chris Wilsond2dff872011-04-19 08:36:26 +01008222 return intel_framebuffer_create(dev, mode_cmd, obj);
Jesse Barnes79e53942008-11-07 14:24:08 -08008223}
8224
Jesse Barnes79e53942008-11-07 14:24:08 -08008225static const struct drm_mode_config_funcs intel_mode_funcs = {
Jesse Barnes79e53942008-11-07 14:24:08 -08008226 .fb_create = intel_user_framebuffer_create,
Dave Airlieeb1f8e42010-05-07 06:42:51 +00008227 .output_poll_changed = intel_fb_output_poll_changed,
Jesse Barnes79e53942008-11-07 14:24:08 -08008228};
8229
Jesse Barnese70236a2009-09-21 10:42:27 -07008230/* Set up chip specific display functions */
8231static void intel_init_display(struct drm_device *dev)
8232{
8233 struct drm_i915_private *dev_priv = dev->dev_private;
8234
8235 /* We always want a DPMS function */
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03008236 if (IS_HASWELL(dev)) {
8237 dev_priv->display.crtc_mode_set = haswell_crtc_mode_set;
Paulo Zanoni4f771f12012-10-23 18:29:51 -02008238 dev_priv->display.crtc_enable = haswell_crtc_enable;
8239 dev_priv->display.crtc_disable = haswell_crtc_disable;
Paulo Zanoni6441ab52012-10-05 12:05:58 -03008240 dev_priv->display.off = haswell_crtc_off;
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03008241 dev_priv->display.update_plane = ironlake_update_plane;
8242 } else if (HAS_PCH_SPLIT(dev)) {
Eric Anholtf564048e2011-03-30 13:01:02 -07008243 dev_priv->display.crtc_mode_set = ironlake_crtc_mode_set;
Daniel Vetter76e5a892012-06-29 22:39:33 +02008244 dev_priv->display.crtc_enable = ironlake_crtc_enable;
8245 dev_priv->display.crtc_disable = ironlake_crtc_disable;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01008246 dev_priv->display.off = ironlake_crtc_off;
Jesse Barnes17638cd2011-06-24 12:19:23 -07008247 dev_priv->display.update_plane = ironlake_update_plane;
Eric Anholtf564048e2011-03-30 13:01:02 -07008248 } else {
Eric Anholtf564048e2011-03-30 13:01:02 -07008249 dev_priv->display.crtc_mode_set = i9xx_crtc_mode_set;
Daniel Vetter76e5a892012-06-29 22:39:33 +02008250 dev_priv->display.crtc_enable = i9xx_crtc_enable;
8251 dev_priv->display.crtc_disable = i9xx_crtc_disable;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01008252 dev_priv->display.off = i9xx_crtc_off;
Jesse Barnes17638cd2011-06-24 12:19:23 -07008253 dev_priv->display.update_plane = i9xx_update_plane;
Eric Anholtf564048e2011-03-30 13:01:02 -07008254 }
Jesse Barnese70236a2009-09-21 10:42:27 -07008255
Jesse Barnese70236a2009-09-21 10:42:27 -07008256 /* Returns the core display clock speed */
Jesse Barnes25eb05fc2012-03-28 13:39:23 -07008257 if (IS_VALLEYVIEW(dev))
8258 dev_priv->display.get_display_clock_speed =
8259 valleyview_get_display_clock_speed;
8260 else if (IS_I945G(dev) || (IS_G33(dev) && !IS_PINEVIEW_M(dev)))
Jesse Barnese70236a2009-09-21 10:42:27 -07008261 dev_priv->display.get_display_clock_speed =
8262 i945_get_display_clock_speed;
8263 else if (IS_I915G(dev))
8264 dev_priv->display.get_display_clock_speed =
8265 i915_get_display_clock_speed;
Adam Jacksonf2b115e2009-12-03 17:14:42 -05008266 else if (IS_I945GM(dev) || IS_845G(dev) || IS_PINEVIEW_M(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -07008267 dev_priv->display.get_display_clock_speed =
8268 i9xx_misc_get_display_clock_speed;
8269 else if (IS_I915GM(dev))
8270 dev_priv->display.get_display_clock_speed =
8271 i915gm_get_display_clock_speed;
8272 else if (IS_I865G(dev))
8273 dev_priv->display.get_display_clock_speed =
8274 i865_get_display_clock_speed;
Daniel Vetterf0f8a9c2009-09-15 22:57:33 +02008275 else if (IS_I85X(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -07008276 dev_priv->display.get_display_clock_speed =
8277 i855_get_display_clock_speed;
8278 else /* 852, 830 */
8279 dev_priv->display.get_display_clock_speed =
8280 i830_get_display_clock_speed;
8281
Zhenyu Wang7f8a8562010-04-01 13:07:53 +08008282 if (HAS_PCH_SPLIT(dev)) {
Chris Wilsonf00a3dd2010-10-21 14:57:17 +01008283 if (IS_GEN5(dev)) {
Jesse Barnes674cf962011-04-28 14:27:04 -07008284 dev_priv->display.fdi_link_train = ironlake_fdi_link_train;
Wu Fengguange0dac652011-09-05 14:25:34 +08008285 dev_priv->display.write_eld = ironlake_write_eld;
Yuanhan Liu13982612010-12-15 15:42:31 +08008286 } else if (IS_GEN6(dev)) {
Jesse Barnes674cf962011-04-28 14:27:04 -07008287 dev_priv->display.fdi_link_train = gen6_fdi_link_train;
Wu Fengguange0dac652011-09-05 14:25:34 +08008288 dev_priv->display.write_eld = ironlake_write_eld;
Jesse Barnes357555c2011-04-28 15:09:55 -07008289 } else if (IS_IVYBRIDGE(dev)) {
8290 /* FIXME: detect B0+ stepping and use auto training */
8291 dev_priv->display.fdi_link_train = ivb_manual_fdi_link_train;
Wu Fengguange0dac652011-09-05 14:25:34 +08008292 dev_priv->display.write_eld = ironlake_write_eld;
Eugeni Dodonovc82e4d22012-05-09 15:37:21 -03008293 } else if (IS_HASWELL(dev)) {
8294 dev_priv->display.fdi_link_train = hsw_fdi_link_train;
Wang Xingchao83358c852012-08-16 22:43:37 +08008295 dev_priv->display.write_eld = haswell_write_eld;
Zhenyu Wang7f8a8562010-04-01 13:07:53 +08008296 } else
8297 dev_priv->display.update_wm = NULL;
Jesse Barnes6067aae2011-04-28 15:04:31 -07008298 } else if (IS_G4X(dev)) {
Wu Fengguange0dac652011-09-05 14:25:34 +08008299 dev_priv->display.write_eld = g4x_write_eld;
Jesse Barnese70236a2009-09-21 10:42:27 -07008300 }
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008301
8302 /* Default just returns -ENODEV to indicate unsupported */
8303 dev_priv->display.queue_flip = intel_default_queue_flip;
8304
8305 switch (INTEL_INFO(dev)->gen) {
8306 case 2:
8307 dev_priv->display.queue_flip = intel_gen2_queue_flip;
8308 break;
8309
8310 case 3:
8311 dev_priv->display.queue_flip = intel_gen3_queue_flip;
8312 break;
8313
8314 case 4:
8315 case 5:
8316 dev_priv->display.queue_flip = intel_gen4_queue_flip;
8317 break;
8318
8319 case 6:
8320 dev_priv->display.queue_flip = intel_gen6_queue_flip;
8321 break;
Jesse Barnes7c9017e2011-06-16 12:18:54 -07008322 case 7:
8323 dev_priv->display.queue_flip = intel_gen7_queue_flip;
8324 break;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008325 }
Jesse Barnese70236a2009-09-21 10:42:27 -07008326}
8327
Jesse Barnesb690e962010-07-19 13:53:12 -07008328/*
8329 * Some BIOSes insist on assuming the GPU's pipe A is enabled at suspend,
8330 * resume, or other times. This quirk makes sure that's the case for
8331 * affected systems.
8332 */
Akshay Joshi0206e352011-08-16 15:34:10 -04008333static void quirk_pipea_force(struct drm_device *dev)
Jesse Barnesb690e962010-07-19 13:53:12 -07008334{
8335 struct drm_i915_private *dev_priv = dev->dev_private;
8336
8337 dev_priv->quirks |= QUIRK_PIPEA_FORCE;
Daniel Vetterbc0daf42012-04-01 13:16:49 +02008338 DRM_INFO("applying pipe a force quirk\n");
Jesse Barnesb690e962010-07-19 13:53:12 -07008339}
8340
Keith Packard435793d2011-07-12 14:56:22 -07008341/*
8342 * Some machines (Lenovo U160) do not work with SSC on LVDS for some reason
8343 */
8344static void quirk_ssc_force_disable(struct drm_device *dev)
8345{
8346 struct drm_i915_private *dev_priv = dev->dev_private;
8347 dev_priv->quirks |= QUIRK_LVDS_SSC_DISABLE;
Daniel Vetterbc0daf42012-04-01 13:16:49 +02008348 DRM_INFO("applying lvds SSC disable quirk\n");
Keith Packard435793d2011-07-12 14:56:22 -07008349}
8350
Carsten Emde4dca20e2012-03-15 15:56:26 +01008351/*
Carsten Emde5a15ab52012-03-15 15:56:27 +01008352 * A machine (e.g. Acer Aspire 5734Z) may need to invert the panel backlight
8353 * brightness value
Carsten Emde4dca20e2012-03-15 15:56:26 +01008354 */
8355static void quirk_invert_brightness(struct drm_device *dev)
8356{
8357 struct drm_i915_private *dev_priv = dev->dev_private;
8358 dev_priv->quirks |= QUIRK_INVERT_BRIGHTNESS;
Daniel Vetterbc0daf42012-04-01 13:16:49 +02008359 DRM_INFO("applying inverted panel brightness quirk\n");
Jesse Barnesb690e962010-07-19 13:53:12 -07008360}
8361
8362struct intel_quirk {
8363 int device;
8364 int subsystem_vendor;
8365 int subsystem_device;
8366 void (*hook)(struct drm_device *dev);
8367};
8368
Ben Widawskyc43b5632012-04-16 14:07:40 -07008369static struct intel_quirk intel_quirks[] = {
Jesse Barnesb690e962010-07-19 13:53:12 -07008370 /* HP Mini needs pipe A force quirk (LP: #322104) */
Akshay Joshi0206e352011-08-16 15:34:10 -04008371 { 0x27ae, 0x103c, 0x361a, quirk_pipea_force },
Jesse Barnesb690e962010-07-19 13:53:12 -07008372
Jesse Barnesb690e962010-07-19 13:53:12 -07008373 /* Toshiba Protege R-205, S-209 needs pipe A force quirk */
8374 { 0x2592, 0x1179, 0x0001, quirk_pipea_force },
8375
Jesse Barnesb690e962010-07-19 13:53:12 -07008376 /* ThinkPad T60 needs pipe A force quirk (bug #16494) */
8377 { 0x2782, 0x17aa, 0x201a, quirk_pipea_force },
8378
Daniel Vetterccd0d362012-10-10 23:13:59 +02008379 /* 830/845 need to leave pipe A & dpll A up */
Jesse Barnesb690e962010-07-19 13:53:12 -07008380 { 0x2562, PCI_ANY_ID, PCI_ANY_ID, quirk_pipea_force },
Daniel Vetterdcdaed62012-08-12 21:19:34 +02008381 { 0x3577, PCI_ANY_ID, PCI_ANY_ID, quirk_pipea_force },
Keith Packard435793d2011-07-12 14:56:22 -07008382
8383 /* Lenovo U160 cannot use SSC on LVDS */
8384 { 0x0046, 0x17aa, 0x3920, quirk_ssc_force_disable },
Michel Alexandre Salim070d3292011-07-28 18:52:06 +02008385
8386 /* Sony Vaio Y cannot use SSC on LVDS */
8387 { 0x0046, 0x104d, 0x9076, quirk_ssc_force_disable },
Carsten Emde5a15ab52012-03-15 15:56:27 +01008388
8389 /* Acer Aspire 5734Z must invert backlight brightness */
8390 { 0x2a42, 0x1025, 0x0459, quirk_invert_brightness },
Jesse Barnesb690e962010-07-19 13:53:12 -07008391};
8392
8393static void intel_init_quirks(struct drm_device *dev)
8394{
8395 struct pci_dev *d = dev->pdev;
8396 int i;
8397
8398 for (i = 0; i < ARRAY_SIZE(intel_quirks); i++) {
8399 struct intel_quirk *q = &intel_quirks[i];
8400
8401 if (d->device == q->device &&
8402 (d->subsystem_vendor == q->subsystem_vendor ||
8403 q->subsystem_vendor == PCI_ANY_ID) &&
8404 (d->subsystem_device == q->subsystem_device ||
8405 q->subsystem_device == PCI_ANY_ID))
8406 q->hook(dev);
8407 }
8408}
8409
Jesse Barnes9cce37f2010-08-13 15:11:26 -07008410/* Disable the VGA plane that we never use */
8411static void i915_disable_vga(struct drm_device *dev)
8412{
8413 struct drm_i915_private *dev_priv = dev->dev_private;
8414 u8 sr1;
8415 u32 vga_reg;
8416
8417 if (HAS_PCH_SPLIT(dev))
8418 vga_reg = CPU_VGACNTRL;
8419 else
8420 vga_reg = VGACNTRL;
8421
8422 vga_get_uninterruptible(dev->pdev, VGA_RSRC_LEGACY_IO);
Jesse Barnes3fdcf432012-04-06 11:46:27 -07008423 outb(SR01, VGA_SR_INDEX);
Jesse Barnes9cce37f2010-08-13 15:11:26 -07008424 sr1 = inb(VGA_SR_DATA);
8425 outb(sr1 | 1<<5, VGA_SR_DATA);
8426 vga_put(dev->pdev, VGA_RSRC_LEGACY_IO);
8427 udelay(300);
8428
8429 I915_WRITE(vga_reg, VGA_DISP_DISABLE);
8430 POSTING_READ(vga_reg);
8431}
8432
Daniel Vetterf8175862012-04-10 15:50:11 +02008433void intel_modeset_init_hw(struct drm_device *dev)
8434{
Eugeni Dodonov0232e922012-07-06 15:42:36 -03008435 /* We attempt to init the necessary power wells early in the initialization
8436 * time, so the subsystems that expect power to be enabled can work.
8437 */
8438 intel_init_power_wells(dev);
8439
Eugeni Dodonova8f78b52012-06-28 15:55:35 -03008440 intel_prepare_ddi(dev);
8441
Daniel Vetterf8175862012-04-10 15:50:11 +02008442 intel_init_clock_gating(dev);
8443
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02008444 mutex_lock(&dev->struct_mutex);
Daniel Vetter8090c6b2012-06-24 16:42:32 +02008445 intel_enable_gt_powersave(dev);
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02008446 mutex_unlock(&dev->struct_mutex);
Daniel Vetterf8175862012-04-10 15:50:11 +02008447}
8448
Jesse Barnes79e53942008-11-07 14:24:08 -08008449void intel_modeset_init(struct drm_device *dev)
8450{
Jesse Barnes652c3932009-08-17 13:31:43 -07008451 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesb840d907f2011-12-13 13:19:38 -08008452 int i, ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08008453
8454 drm_mode_config_init(dev);
8455
8456 dev->mode_config.min_width = 0;
8457 dev->mode_config.min_height = 0;
8458
Dave Airlie019d96c2011-09-29 16:20:42 +01008459 dev->mode_config.preferred_depth = 24;
8460 dev->mode_config.prefer_shadow = 1;
8461
Laurent Pincharte6ecefa2012-05-17 13:27:23 +02008462 dev->mode_config.funcs = &intel_mode_funcs;
Jesse Barnes79e53942008-11-07 14:24:08 -08008463
Jesse Barnesb690e962010-07-19 13:53:12 -07008464 intel_init_quirks(dev);
8465
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03008466 intel_init_pm(dev);
8467
Jesse Barnese70236a2009-09-21 10:42:27 -07008468 intel_init_display(dev);
8469
Chris Wilsona6c45cf2010-09-17 00:32:17 +01008470 if (IS_GEN2(dev)) {
8471 dev->mode_config.max_width = 2048;
8472 dev->mode_config.max_height = 2048;
8473 } else if (IS_GEN3(dev)) {
Keith Packard5e4d6fa2009-07-12 23:53:17 -07008474 dev->mode_config.max_width = 4096;
8475 dev->mode_config.max_height = 4096;
Jesse Barnes79e53942008-11-07 14:24:08 -08008476 } else {
Chris Wilsona6c45cf2010-09-17 00:32:17 +01008477 dev->mode_config.max_width = 8192;
8478 dev->mode_config.max_height = 8192;
Jesse Barnes79e53942008-11-07 14:24:08 -08008479 }
Daniel Vetterdd2757f2012-06-07 15:55:57 +02008480 dev->mode_config.fb_base = dev_priv->mm.gtt_base_addr;
Jesse Barnes79e53942008-11-07 14:24:08 -08008481
Zhao Yakui28c97732009-10-09 11:39:41 +08008482 DRM_DEBUG_KMS("%d display pipe%s available.\n",
Dave Airliea3524f12010-06-06 18:59:41 +10008483 dev_priv->num_pipe, dev_priv->num_pipe > 1 ? "s" : "");
Jesse Barnes79e53942008-11-07 14:24:08 -08008484
Dave Airliea3524f12010-06-06 18:59:41 +10008485 for (i = 0; i < dev_priv->num_pipe; i++) {
Jesse Barnes79e53942008-11-07 14:24:08 -08008486 intel_crtc_init(dev, i);
Jesse Barnes00c2064b2012-01-13 15:48:39 -08008487 ret = intel_plane_init(dev, i);
8488 if (ret)
8489 DRM_DEBUG_KMS("plane %d init failed: %d\n", i, ret);
Jesse Barnes79e53942008-11-07 14:24:08 -08008490 }
8491
Paulo Zanoni79f689a2012-10-05 12:05:52 -03008492 intel_cpu_pll_init(dev);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01008493 intel_pch_pll_init(dev);
8494
Jesse Barnes9cce37f2010-08-13 15:11:26 -07008495 /* Just disable it once at startup */
8496 i915_disable_vga(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08008497 intel_setup_outputs(dev);
Chris Wilson2c7111d2011-03-29 10:40:27 +01008498}
8499
Daniel Vetter24929352012-07-02 20:28:59 +02008500static void
8501intel_connector_break_all_links(struct intel_connector *connector)
8502{
8503 connector->base.dpms = DRM_MODE_DPMS_OFF;
8504 connector->base.encoder = NULL;
8505 connector->encoder->connectors_active = false;
8506 connector->encoder->base.crtc = NULL;
8507}
8508
Daniel Vetter7fad7982012-07-04 17:51:47 +02008509static void intel_enable_pipe_a(struct drm_device *dev)
8510{
8511 struct intel_connector *connector;
8512 struct drm_connector *crt = NULL;
8513 struct intel_load_detect_pipe load_detect_temp;
8514
8515 /* We can't just switch on the pipe A, we need to set things up with a
8516 * proper mode and output configuration. As a gross hack, enable pipe A
8517 * by enabling the load detect pipe once. */
8518 list_for_each_entry(connector,
8519 &dev->mode_config.connector_list,
8520 base.head) {
8521 if (connector->encoder->type == INTEL_OUTPUT_ANALOG) {
8522 crt = &connector->base;
8523 break;
8524 }
8525 }
8526
8527 if (!crt)
8528 return;
8529
8530 if (intel_get_load_detect_pipe(crt, NULL, &load_detect_temp))
8531 intel_release_load_detect_pipe(crt, &load_detect_temp);
8532
8533
8534}
8535
Daniel Vetterfa555832012-10-10 23:14:00 +02008536static bool
8537intel_check_plane_mapping(struct intel_crtc *crtc)
8538{
8539 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
8540 u32 reg, val;
8541
8542 if (dev_priv->num_pipe == 1)
8543 return true;
8544
8545 reg = DSPCNTR(!crtc->plane);
8546 val = I915_READ(reg);
8547
8548 if ((val & DISPLAY_PLANE_ENABLE) &&
8549 (!!(val & DISPPLANE_SEL_PIPE_MASK) == crtc->pipe))
8550 return false;
8551
8552 return true;
8553}
8554
Daniel Vetter24929352012-07-02 20:28:59 +02008555static void intel_sanitize_crtc(struct intel_crtc *crtc)
8556{
8557 struct drm_device *dev = crtc->base.dev;
8558 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterfa555832012-10-10 23:14:00 +02008559 u32 reg;
Daniel Vetter24929352012-07-02 20:28:59 +02008560
Daniel Vetter24929352012-07-02 20:28:59 +02008561 /* Clear any frame start delays used for debugging left by the BIOS */
8562 reg = PIPECONF(crtc->pipe);
8563 I915_WRITE(reg, I915_READ(reg) & ~PIPECONF_FRAME_START_DELAY_MASK);
8564
8565 /* We need to sanitize the plane -> pipe mapping first because this will
Daniel Vetterfa555832012-10-10 23:14:00 +02008566 * disable the crtc (and hence change the state) if it is wrong. Note
8567 * that gen4+ has a fixed plane -> pipe mapping. */
8568 if (INTEL_INFO(dev)->gen < 4 && !intel_check_plane_mapping(crtc)) {
Daniel Vetter24929352012-07-02 20:28:59 +02008569 struct intel_connector *connector;
8570 bool plane;
8571
Daniel Vetter24929352012-07-02 20:28:59 +02008572 DRM_DEBUG_KMS("[CRTC:%d] wrong plane connection detected!\n",
8573 crtc->base.base.id);
8574
8575 /* Pipe has the wrong plane attached and the plane is active.
8576 * Temporarily change the plane mapping and disable everything
8577 * ... */
8578 plane = crtc->plane;
8579 crtc->plane = !plane;
8580 dev_priv->display.crtc_disable(&crtc->base);
8581 crtc->plane = plane;
8582
8583 /* ... and break all links. */
8584 list_for_each_entry(connector, &dev->mode_config.connector_list,
8585 base.head) {
8586 if (connector->encoder->base.crtc != &crtc->base)
8587 continue;
8588
8589 intel_connector_break_all_links(connector);
8590 }
8591
8592 WARN_ON(crtc->active);
8593 crtc->base.enabled = false;
8594 }
Daniel Vetter24929352012-07-02 20:28:59 +02008595
Daniel Vetter7fad7982012-07-04 17:51:47 +02008596 if (dev_priv->quirks & QUIRK_PIPEA_FORCE &&
8597 crtc->pipe == PIPE_A && !crtc->active) {
8598 /* BIOS forgot to enable pipe A, this mostly happens after
8599 * resume. Force-enable the pipe to fix this, the update_dpms
8600 * call below we restore the pipe to the right state, but leave
8601 * the required bits on. */
8602 intel_enable_pipe_a(dev);
8603 }
8604
Daniel Vetter24929352012-07-02 20:28:59 +02008605 /* Adjust the state of the output pipe according to whether we
8606 * have active connectors/encoders. */
8607 intel_crtc_update_dpms(&crtc->base);
8608
8609 if (crtc->active != crtc->base.enabled) {
8610 struct intel_encoder *encoder;
8611
8612 /* This can happen either due to bugs in the get_hw_state
8613 * functions or because the pipe is force-enabled due to the
8614 * pipe A quirk. */
8615 DRM_DEBUG_KMS("[CRTC:%d] hw state adjusted, was %s, now %s\n",
8616 crtc->base.base.id,
8617 crtc->base.enabled ? "enabled" : "disabled",
8618 crtc->active ? "enabled" : "disabled");
8619
8620 crtc->base.enabled = crtc->active;
8621
8622 /* Because we only establish the connector -> encoder ->
8623 * crtc links if something is active, this means the
8624 * crtc is now deactivated. Break the links. connector
8625 * -> encoder links are only establish when things are
8626 * actually up, hence no need to break them. */
8627 WARN_ON(crtc->active);
8628
8629 for_each_encoder_on_crtc(dev, &crtc->base, encoder) {
8630 WARN_ON(encoder->connectors_active);
8631 encoder->base.crtc = NULL;
8632 }
8633 }
8634}
8635
8636static void intel_sanitize_encoder(struct intel_encoder *encoder)
8637{
8638 struct intel_connector *connector;
8639 struct drm_device *dev = encoder->base.dev;
8640
8641 /* We need to check both for a crtc link (meaning that the
8642 * encoder is active and trying to read from a pipe) and the
8643 * pipe itself being active. */
8644 bool has_active_crtc = encoder->base.crtc &&
8645 to_intel_crtc(encoder->base.crtc)->active;
8646
8647 if (encoder->connectors_active && !has_active_crtc) {
8648 DRM_DEBUG_KMS("[ENCODER:%d:%s] has active connectors but no active pipe!\n",
8649 encoder->base.base.id,
8650 drm_get_encoder_name(&encoder->base));
8651
8652 /* Connector is active, but has no active pipe. This is
8653 * fallout from our resume register restoring. Disable
8654 * the encoder manually again. */
8655 if (encoder->base.crtc) {
8656 DRM_DEBUG_KMS("[ENCODER:%d:%s] manually disabled\n",
8657 encoder->base.base.id,
8658 drm_get_encoder_name(&encoder->base));
8659 encoder->disable(encoder);
8660 }
8661
8662 /* Inconsistent output/port/pipe state happens presumably due to
8663 * a bug in one of the get_hw_state functions. Or someplace else
8664 * in our code, like the register restore mess on resume. Clamp
8665 * things to off as a safer default. */
8666 list_for_each_entry(connector,
8667 &dev->mode_config.connector_list,
8668 base.head) {
8669 if (connector->encoder != encoder)
8670 continue;
8671
8672 intel_connector_break_all_links(connector);
8673 }
8674 }
8675 /* Enabled encoders without active connectors will be fixed in
8676 * the crtc fixup. */
8677}
8678
8679/* Scan out the current hw modeset state, sanitizes it and maps it into the drm
8680 * and i915 state tracking structures. */
8681void intel_modeset_setup_hw_state(struct drm_device *dev)
8682{
8683 struct drm_i915_private *dev_priv = dev->dev_private;
8684 enum pipe pipe;
8685 u32 tmp;
8686 struct intel_crtc *crtc;
8687 struct intel_encoder *encoder;
8688 struct intel_connector *connector;
8689
8690 for_each_pipe(pipe) {
8691 crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
8692
8693 tmp = I915_READ(PIPECONF(pipe));
8694 if (tmp & PIPECONF_ENABLE)
8695 crtc->active = true;
8696 else
8697 crtc->active = false;
8698
8699 crtc->base.enabled = crtc->active;
8700
8701 DRM_DEBUG_KMS("[CRTC:%d] hw state readout: %s\n",
8702 crtc->base.base.id,
8703 crtc->active ? "enabled" : "disabled");
8704 }
8705
Paulo Zanoni6441ab52012-10-05 12:05:58 -03008706 if (IS_HASWELL(dev))
8707 intel_ddi_setup_hw_pll_state(dev);
8708
Daniel Vetter24929352012-07-02 20:28:59 +02008709 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
8710 base.head) {
8711 pipe = 0;
8712
8713 if (encoder->get_hw_state(encoder, &pipe)) {
8714 encoder->base.crtc =
8715 dev_priv->pipe_to_crtc_mapping[pipe];
8716 } else {
8717 encoder->base.crtc = NULL;
8718 }
8719
8720 encoder->connectors_active = false;
8721 DRM_DEBUG_KMS("[ENCODER:%d:%s] hw state readout: %s, pipe=%i\n",
8722 encoder->base.base.id,
8723 drm_get_encoder_name(&encoder->base),
8724 encoder->base.crtc ? "enabled" : "disabled",
8725 pipe);
8726 }
8727
8728 list_for_each_entry(connector, &dev->mode_config.connector_list,
8729 base.head) {
8730 if (connector->get_hw_state(connector)) {
8731 connector->base.dpms = DRM_MODE_DPMS_ON;
8732 connector->encoder->connectors_active = true;
8733 connector->base.encoder = &connector->encoder->base;
8734 } else {
8735 connector->base.dpms = DRM_MODE_DPMS_OFF;
8736 connector->base.encoder = NULL;
8737 }
8738 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] hw state readout: %s\n",
8739 connector->base.base.id,
8740 drm_get_connector_name(&connector->base),
8741 connector->base.encoder ? "enabled" : "disabled");
8742 }
8743
8744 /* HW state is read out, now we need to sanitize this mess. */
8745 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
8746 base.head) {
8747 intel_sanitize_encoder(encoder);
8748 }
8749
8750 for_each_pipe(pipe) {
8751 crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
8752 intel_sanitize_crtc(crtc);
8753 }
Daniel Vetter9a935852012-07-05 22:34:27 +02008754
8755 intel_modeset_update_staged_output_state(dev);
Daniel Vetter8af6cf82012-07-10 09:50:11 +02008756
8757 intel_modeset_check_state(dev);
Daniel Vetter2e938892012-10-11 20:08:24 +02008758
8759 drm_mode_config_reset(dev);
Daniel Vetter24929352012-07-02 20:28:59 +02008760}
8761
Chris Wilson2c7111d2011-03-29 10:40:27 +01008762void intel_modeset_gem_init(struct drm_device *dev)
8763{
Chris Wilson1833b132012-05-09 11:56:28 +01008764 intel_modeset_init_hw(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +02008765
8766 intel_setup_overlay(dev);
Daniel Vetter24929352012-07-02 20:28:59 +02008767
8768 intel_modeset_setup_hw_state(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08008769}
8770
8771void intel_modeset_cleanup(struct drm_device *dev)
8772{
Jesse Barnes652c3932009-08-17 13:31:43 -07008773 struct drm_i915_private *dev_priv = dev->dev_private;
8774 struct drm_crtc *crtc;
8775 struct intel_crtc *intel_crtc;
8776
Keith Packardf87ea762010-10-03 19:36:26 -07008777 drm_kms_helper_poll_fini(dev);
Jesse Barnes652c3932009-08-17 13:31:43 -07008778 mutex_lock(&dev->struct_mutex);
8779
Jesse Barnes723bfd72010-10-07 16:01:13 -07008780 intel_unregister_dsm_handler();
8781
8782
Jesse Barnes652c3932009-08-17 13:31:43 -07008783 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
8784 /* Skip inactive CRTCs */
8785 if (!crtc->fb)
8786 continue;
8787
8788 intel_crtc = to_intel_crtc(crtc);
Daniel Vetter3dec0092010-08-20 21:40:52 +02008789 intel_increase_pllclock(crtc);
Jesse Barnes652c3932009-08-17 13:31:43 -07008790 }
8791
Chris Wilson973d04f2011-07-08 12:22:37 +01008792 intel_disable_fbc(dev);
Jesse Barnese70236a2009-09-21 10:42:27 -07008793
Daniel Vetter8090c6b2012-06-24 16:42:32 +02008794 intel_disable_gt_powersave(dev);
Chris Wilson0cdab212010-12-05 17:27:06 +00008795
Daniel Vetter930ebb42012-06-29 23:32:16 +02008796 ironlake_teardown_rc6(dev);
8797
Jesse Barnes57f350b2012-03-28 13:39:25 -07008798 if (IS_VALLEYVIEW(dev))
8799 vlv_init_dpio(dev);
8800
Kristian Høgsberg69341a52009-11-11 12:19:17 -05008801 mutex_unlock(&dev->struct_mutex);
8802
Daniel Vetter6c0d93502010-08-20 18:26:46 +02008803 /* Disable the irq before mode object teardown, for the irq might
8804 * enqueue unpin/hotplug work. */
8805 drm_irq_uninstall(dev);
8806 cancel_work_sync(&dev_priv->hotplug_work);
Daniel Vetterc6a828d2012-08-08 23:35:35 +02008807 cancel_work_sync(&dev_priv->rps.work);
Daniel Vetter6c0d93502010-08-20 18:26:46 +02008808
Chris Wilson1630fe72011-07-08 12:22:42 +01008809 /* flush any delayed tasks or pending work */
8810 flush_scheduled_work();
8811
Jesse Barnes79e53942008-11-07 14:24:08 -08008812 drm_mode_config_cleanup(dev);
8813}
8814
Dave Airlie28d52042009-09-21 14:33:58 +10008815/*
Zhenyu Wangf1c79df2010-03-30 14:39:29 +08008816 * Return which encoder is currently attached for connector.
8817 */
Chris Wilsondf0e9242010-09-09 16:20:55 +01008818struct drm_encoder *intel_best_encoder(struct drm_connector *connector)
Jesse Barnes79e53942008-11-07 14:24:08 -08008819{
Chris Wilsondf0e9242010-09-09 16:20:55 +01008820 return &intel_attached_encoder(connector)->base;
8821}
Jesse Barnes79e53942008-11-07 14:24:08 -08008822
Chris Wilsondf0e9242010-09-09 16:20:55 +01008823void intel_connector_attach_encoder(struct intel_connector *connector,
8824 struct intel_encoder *encoder)
8825{
8826 connector->encoder = encoder;
8827 drm_mode_connector_attach_encoder(&connector->base,
8828 &encoder->base);
Jesse Barnes79e53942008-11-07 14:24:08 -08008829}
Dave Airlie28d52042009-09-21 14:33:58 +10008830
8831/*
8832 * set vga decode state - true == enable VGA decode
8833 */
8834int intel_modeset_vga_set_state(struct drm_device *dev, bool state)
8835{
8836 struct drm_i915_private *dev_priv = dev->dev_private;
8837 u16 gmch_ctrl;
8838
8839 pci_read_config_word(dev_priv->bridge_dev, INTEL_GMCH_CTRL, &gmch_ctrl);
8840 if (state)
8841 gmch_ctrl &= ~INTEL_GMCH_VGA_DISABLE;
8842 else
8843 gmch_ctrl |= INTEL_GMCH_VGA_DISABLE;
8844 pci_write_config_word(dev_priv->bridge_dev, INTEL_GMCH_CTRL, gmch_ctrl);
8845 return 0;
8846}
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00008847
8848#ifdef CONFIG_DEBUG_FS
8849#include <linux/seq_file.h>
8850
8851struct intel_display_error_state {
8852 struct intel_cursor_error_state {
8853 u32 control;
8854 u32 position;
8855 u32 base;
8856 u32 size;
Damien Lespiau52331302012-08-15 19:23:25 +01008857 } cursor[I915_MAX_PIPES];
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00008858
8859 struct intel_pipe_error_state {
8860 u32 conf;
8861 u32 source;
8862
8863 u32 htotal;
8864 u32 hblank;
8865 u32 hsync;
8866 u32 vtotal;
8867 u32 vblank;
8868 u32 vsync;
Damien Lespiau52331302012-08-15 19:23:25 +01008869 } pipe[I915_MAX_PIPES];
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00008870
8871 struct intel_plane_error_state {
8872 u32 control;
8873 u32 stride;
8874 u32 size;
8875 u32 pos;
8876 u32 addr;
8877 u32 surface;
8878 u32 tile_offset;
Damien Lespiau52331302012-08-15 19:23:25 +01008879 } plane[I915_MAX_PIPES];
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00008880};
8881
8882struct intel_display_error_state *
8883intel_display_capture_error_state(struct drm_device *dev)
8884{
Akshay Joshi0206e352011-08-16 15:34:10 -04008885 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00008886 struct intel_display_error_state *error;
8887 int i;
8888
8889 error = kmalloc(sizeof(*error), GFP_ATOMIC);
8890 if (error == NULL)
8891 return NULL;
8892
Damien Lespiau52331302012-08-15 19:23:25 +01008893 for_each_pipe(i) {
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00008894 error->cursor[i].control = I915_READ(CURCNTR(i));
8895 error->cursor[i].position = I915_READ(CURPOS(i));
8896 error->cursor[i].base = I915_READ(CURBASE(i));
8897
8898 error->plane[i].control = I915_READ(DSPCNTR(i));
8899 error->plane[i].stride = I915_READ(DSPSTRIDE(i));
8900 error->plane[i].size = I915_READ(DSPSIZE(i));
Akshay Joshi0206e352011-08-16 15:34:10 -04008901 error->plane[i].pos = I915_READ(DSPPOS(i));
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00008902 error->plane[i].addr = I915_READ(DSPADDR(i));
8903 if (INTEL_INFO(dev)->gen >= 4) {
8904 error->plane[i].surface = I915_READ(DSPSURF(i));
8905 error->plane[i].tile_offset = I915_READ(DSPTILEOFF(i));
8906 }
8907
8908 error->pipe[i].conf = I915_READ(PIPECONF(i));
8909 error->pipe[i].source = I915_READ(PIPESRC(i));
8910 error->pipe[i].htotal = I915_READ(HTOTAL(i));
8911 error->pipe[i].hblank = I915_READ(HBLANK(i));
8912 error->pipe[i].hsync = I915_READ(HSYNC(i));
8913 error->pipe[i].vtotal = I915_READ(VTOTAL(i));
8914 error->pipe[i].vblank = I915_READ(VBLANK(i));
8915 error->pipe[i].vsync = I915_READ(VSYNC(i));
8916 }
8917
8918 return error;
8919}
8920
8921void
8922intel_display_print_error_state(struct seq_file *m,
8923 struct drm_device *dev,
8924 struct intel_display_error_state *error)
8925{
Damien Lespiau52331302012-08-15 19:23:25 +01008926 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00008927 int i;
8928
Damien Lespiau52331302012-08-15 19:23:25 +01008929 seq_printf(m, "Num Pipes: %d\n", dev_priv->num_pipe);
8930 for_each_pipe(i) {
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00008931 seq_printf(m, "Pipe [%d]:\n", i);
8932 seq_printf(m, " CONF: %08x\n", error->pipe[i].conf);
8933 seq_printf(m, " SRC: %08x\n", error->pipe[i].source);
8934 seq_printf(m, " HTOTAL: %08x\n", error->pipe[i].htotal);
8935 seq_printf(m, " HBLANK: %08x\n", error->pipe[i].hblank);
8936 seq_printf(m, " HSYNC: %08x\n", error->pipe[i].hsync);
8937 seq_printf(m, " VTOTAL: %08x\n", error->pipe[i].vtotal);
8938 seq_printf(m, " VBLANK: %08x\n", error->pipe[i].vblank);
8939 seq_printf(m, " VSYNC: %08x\n", error->pipe[i].vsync);
8940
8941 seq_printf(m, "Plane [%d]:\n", i);
8942 seq_printf(m, " CNTR: %08x\n", error->plane[i].control);
8943 seq_printf(m, " STRIDE: %08x\n", error->plane[i].stride);
8944 seq_printf(m, " SIZE: %08x\n", error->plane[i].size);
8945 seq_printf(m, " POS: %08x\n", error->plane[i].pos);
8946 seq_printf(m, " ADDR: %08x\n", error->plane[i].addr);
8947 if (INTEL_INFO(dev)->gen >= 4) {
8948 seq_printf(m, " SURF: %08x\n", error->plane[i].surface);
8949 seq_printf(m, " TILEOFF: %08x\n", error->plane[i].tile_offset);
8950 }
8951
8952 seq_printf(m, "Cursor [%d]:\n", i);
8953 seq_printf(m, " CNTR: %08x\n", error->cursor[i].control);
8954 seq_printf(m, " POS: %08x\n", error->cursor[i].position);
8955 seq_printf(m, " BASE: %08x\n", error->cursor[i].base);
8956 }
8957}
8958#endif