blob: 34832bc0493160b2bf33ee50355b6992c2f9fe7e [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
Akshay Joshi0206e352011-08-16 15:34:10 -040044bool intel_pipe_has_type(struct drm_crtc *crtc, int type);
Daniel Vetter3dec0092010-08-20 21:40:52 +020045static void intel_increase_pllclock(struct drm_crtc *crtc);
Chris Wilson6b383a72010-09-13 13:54:26 +010046static void intel_crtc_update_cursor(struct drm_crtc *crtc, bool on);
Jesse Barnes79e53942008-11-07 14:24:08 -080047
48typedef struct {
Akshay Joshi0206e352011-08-16 15:34:10 -040049 /* given values */
50 int n;
51 int m1, m2;
52 int p1, p2;
53 /* derived values */
54 int dot;
55 int vco;
56 int m;
57 int p;
Jesse Barnes79e53942008-11-07 14:24:08 -080058} intel_clock_t;
59
60typedef struct {
Akshay Joshi0206e352011-08-16 15:34:10 -040061 int min, max;
Jesse Barnes79e53942008-11-07 14:24:08 -080062} intel_range_t;
63
64typedef struct {
Akshay Joshi0206e352011-08-16 15:34:10 -040065 int dot_limit;
66 int p2_slow, p2_fast;
Jesse Barnes79e53942008-11-07 14:24:08 -080067} intel_p2_t;
68
69#define INTEL_P2_NUM 2
Ma Lingd4906092009-03-18 20:13:27 +080070typedef struct intel_limit intel_limit_t;
71struct intel_limit {
Akshay Joshi0206e352011-08-16 15:34:10 -040072 intel_range_t dot, vco, n, m, m1, m2, p, p1;
73 intel_p2_t p2;
74 bool (* find_pll)(const intel_limit_t *, struct drm_crtc *,
Sean Paulcec2f352012-01-10 15:09:36 -080075 int, int, intel_clock_t *, intel_clock_t *);
Ma Lingd4906092009-03-18 20:13:27 +080076};
Jesse Barnes79e53942008-11-07 14:24:08 -080077
Jesse Barnes2377b742010-07-07 14:06:43 -070078/* FDI */
79#define IRONLAKE_FDI_FREQ 2700000 /* in kHz for mode->clock */
80
Daniel Vetterd2acd212012-10-20 20:57:43 +020081int
82intel_pch_rawclk(struct drm_device *dev)
83{
84 struct drm_i915_private *dev_priv = dev->dev_private;
85
86 WARN_ON(!HAS_PCH_SPLIT(dev));
87
88 return I915_READ(PCH_RAWCLK_FREQ) & RAWCLK_FREQ_MASK;
89}
90
Ma Lingd4906092009-03-18 20:13:27 +080091static bool
92intel_find_best_PLL(const intel_limit_t *limit, struct drm_crtc *crtc,
Sean Paulcec2f352012-01-10 15:09:36 -080093 int target, int refclk, intel_clock_t *match_clock,
94 intel_clock_t *best_clock);
Ma Lingd4906092009-03-18 20:13:27 +080095static bool
96intel_g4x_find_best_PLL(const intel_limit_t *limit, struct drm_crtc *crtc,
Sean Paulcec2f352012-01-10 15:09:36 -080097 int target, int refclk, intel_clock_t *match_clock,
98 intel_clock_t *best_clock);
Jesse Barnes79e53942008-11-07 14:24:08 -080099
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700100static bool
101intel_find_pll_g4x_dp(const intel_limit_t *, struct drm_crtc *crtc,
Sean Paulcec2f352012-01-10 15:09:36 -0800102 int target, int refclk, intel_clock_t *match_clock,
103 intel_clock_t *best_clock);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +0800104static bool
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500105intel_find_pll_ironlake_dp(const intel_limit_t *, struct drm_crtc *crtc,
Sean Paulcec2f352012-01-10 15:09:36 -0800106 int target, int refclk, intel_clock_t *match_clock,
107 intel_clock_t *best_clock);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700108
Jesse Barnesa0c4da22012-06-15 11:55:13 -0700109static bool
110intel_vlv_find_best_pll(const intel_limit_t *limit, struct drm_crtc *crtc,
111 int target, int refclk, intel_clock_t *match_clock,
112 intel_clock_t *best_clock);
113
Chris Wilson021357a2010-09-07 20:54:59 +0100114static inline u32 /* units of 100MHz */
115intel_fdi_link_freq(struct drm_device *dev)
116{
Chris Wilson8b99e682010-10-13 09:59:17 +0100117 if (IS_GEN5(dev)) {
118 struct drm_i915_private *dev_priv = dev->dev_private;
119 return (I915_READ(FDI_PLL_BIOS_0) & FDI_PLL_FB_CLOCK_MASK) + 2;
120 } else
121 return 27;
Chris Wilson021357a2010-09-07 20:54:59 +0100122}
123
Keith Packarde4b36692009-06-05 19:22:17 -0700124static const intel_limit_t intel_limits_i8xx_dvo = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400125 .dot = { .min = 25000, .max = 350000 },
126 .vco = { .min = 930000, .max = 1400000 },
127 .n = { .min = 3, .max = 16 },
128 .m = { .min = 96, .max = 140 },
129 .m1 = { .min = 18, .max = 26 },
130 .m2 = { .min = 6, .max = 16 },
131 .p = { .min = 4, .max = 128 },
132 .p1 = { .min = 2, .max = 33 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700133 .p2 = { .dot_limit = 165000,
134 .p2_slow = 4, .p2_fast = 2 },
Ma Lingd4906092009-03-18 20:13:27 +0800135 .find_pll = intel_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700136};
137
138static const intel_limit_t intel_limits_i8xx_lvds = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400139 .dot = { .min = 25000, .max = 350000 },
140 .vco = { .min = 930000, .max = 1400000 },
141 .n = { .min = 3, .max = 16 },
142 .m = { .min = 96, .max = 140 },
143 .m1 = { .min = 18, .max = 26 },
144 .m2 = { .min = 6, .max = 16 },
145 .p = { .min = 4, .max = 128 },
146 .p1 = { .min = 1, .max = 6 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700147 .p2 = { .dot_limit = 165000,
148 .p2_slow = 14, .p2_fast = 7 },
Ma Lingd4906092009-03-18 20:13:27 +0800149 .find_pll = intel_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700150};
Eric Anholt273e27c2011-03-30 13:01:10 -0700151
Keith Packarde4b36692009-06-05 19:22:17 -0700152static const intel_limit_t intel_limits_i9xx_sdvo = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400153 .dot = { .min = 20000, .max = 400000 },
154 .vco = { .min = 1400000, .max = 2800000 },
155 .n = { .min = 1, .max = 6 },
156 .m = { .min = 70, .max = 120 },
157 .m1 = { .min = 10, .max = 22 },
158 .m2 = { .min = 5, .max = 9 },
159 .p = { .min = 5, .max = 80 },
160 .p1 = { .min = 1, .max = 8 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700161 .p2 = { .dot_limit = 200000,
162 .p2_slow = 10, .p2_fast = 5 },
Ma Lingd4906092009-03-18 20:13:27 +0800163 .find_pll = intel_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700164};
165
166static const intel_limit_t intel_limits_i9xx_lvds = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400167 .dot = { .min = 20000, .max = 400000 },
168 .vco = { .min = 1400000, .max = 2800000 },
169 .n = { .min = 1, .max = 6 },
170 .m = { .min = 70, .max = 120 },
171 .m1 = { .min = 10, .max = 22 },
172 .m2 = { .min = 5, .max = 9 },
173 .p = { .min = 7, .max = 98 },
174 .p1 = { .min = 1, .max = 8 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700175 .p2 = { .dot_limit = 112000,
176 .p2_slow = 14, .p2_fast = 7 },
Ma Lingd4906092009-03-18 20:13:27 +0800177 .find_pll = intel_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700178};
179
Eric Anholt273e27c2011-03-30 13:01:10 -0700180
Keith Packarde4b36692009-06-05 19:22:17 -0700181static const intel_limit_t intel_limits_g4x_sdvo = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700182 .dot = { .min = 25000, .max = 270000 },
183 .vco = { .min = 1750000, .max = 3500000},
184 .n = { .min = 1, .max = 4 },
185 .m = { .min = 104, .max = 138 },
186 .m1 = { .min = 17, .max = 23 },
187 .m2 = { .min = 5, .max = 11 },
188 .p = { .min = 10, .max = 30 },
189 .p1 = { .min = 1, .max = 3},
190 .p2 = { .dot_limit = 270000,
191 .p2_slow = 10,
192 .p2_fast = 10
Ma Ling044c7c42009-03-18 20:13:23 +0800193 },
Ma Lingd4906092009-03-18 20:13:27 +0800194 .find_pll = intel_g4x_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700195};
196
197static const intel_limit_t intel_limits_g4x_hdmi = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700198 .dot = { .min = 22000, .max = 400000 },
199 .vco = { .min = 1750000, .max = 3500000},
200 .n = { .min = 1, .max = 4 },
201 .m = { .min = 104, .max = 138 },
202 .m1 = { .min = 16, .max = 23 },
203 .m2 = { .min = 5, .max = 11 },
204 .p = { .min = 5, .max = 80 },
205 .p1 = { .min = 1, .max = 8},
206 .p2 = { .dot_limit = 165000,
207 .p2_slow = 10, .p2_fast = 5 },
Ma Lingd4906092009-03-18 20:13:27 +0800208 .find_pll = intel_g4x_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700209};
210
211static const intel_limit_t intel_limits_g4x_single_channel_lvds = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700212 .dot = { .min = 20000, .max = 115000 },
213 .vco = { .min = 1750000, .max = 3500000 },
214 .n = { .min = 1, .max = 3 },
215 .m = { .min = 104, .max = 138 },
216 .m1 = { .min = 17, .max = 23 },
217 .m2 = { .min = 5, .max = 11 },
218 .p = { .min = 28, .max = 112 },
219 .p1 = { .min = 2, .max = 8 },
220 .p2 = { .dot_limit = 0,
221 .p2_slow = 14, .p2_fast = 14
Ma Ling044c7c42009-03-18 20:13:23 +0800222 },
Ma Lingd4906092009-03-18 20:13:27 +0800223 .find_pll = intel_g4x_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700224};
225
226static const intel_limit_t intel_limits_g4x_dual_channel_lvds = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700227 .dot = { .min = 80000, .max = 224000 },
228 .vco = { .min = 1750000, .max = 3500000 },
229 .n = { .min = 1, .max = 3 },
230 .m = { .min = 104, .max = 138 },
231 .m1 = { .min = 17, .max = 23 },
232 .m2 = { .min = 5, .max = 11 },
233 .p = { .min = 14, .max = 42 },
234 .p1 = { .min = 2, .max = 6 },
235 .p2 = { .dot_limit = 0,
236 .p2_slow = 7, .p2_fast = 7
Ma Ling044c7c42009-03-18 20:13:23 +0800237 },
Ma Lingd4906092009-03-18 20:13:27 +0800238 .find_pll = intel_g4x_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700239};
240
241static const intel_limit_t intel_limits_g4x_display_port = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400242 .dot = { .min = 161670, .max = 227000 },
243 .vco = { .min = 1750000, .max = 3500000},
244 .n = { .min = 1, .max = 2 },
245 .m = { .min = 97, .max = 108 },
246 .m1 = { .min = 0x10, .max = 0x12 },
247 .m2 = { .min = 0x05, .max = 0x06 },
248 .p = { .min = 10, .max = 20 },
249 .p1 = { .min = 1, .max = 2},
250 .p2 = { .dot_limit = 0,
Eric Anholt273e27c2011-03-30 13:01:10 -0700251 .p2_slow = 10, .p2_fast = 10 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400252 .find_pll = intel_find_pll_g4x_dp,
Keith Packarde4b36692009-06-05 19:22:17 -0700253};
254
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500255static const intel_limit_t intel_limits_pineview_sdvo = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400256 .dot = { .min = 20000, .max = 400000},
257 .vco = { .min = 1700000, .max = 3500000 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700258 /* Pineview's Ncounter is a ring counter */
Akshay Joshi0206e352011-08-16 15:34:10 -0400259 .n = { .min = 3, .max = 6 },
260 .m = { .min = 2, .max = 256 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700261 /* Pineview only has one combined m divider, which we treat as m2. */
Akshay Joshi0206e352011-08-16 15:34:10 -0400262 .m1 = { .min = 0, .max = 0 },
263 .m2 = { .min = 0, .max = 254 },
264 .p = { .min = 5, .max = 80 },
265 .p1 = { .min = 1, .max = 8 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700266 .p2 = { .dot_limit = 200000,
267 .p2_slow = 10, .p2_fast = 5 },
Shaohua Li61157072009-04-03 15:24:43 +0800268 .find_pll = intel_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700269};
270
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500271static const intel_limit_t intel_limits_pineview_lvds = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400272 .dot = { .min = 20000, .max = 400000 },
273 .vco = { .min = 1700000, .max = 3500000 },
274 .n = { .min = 3, .max = 6 },
275 .m = { .min = 2, .max = 256 },
276 .m1 = { .min = 0, .max = 0 },
277 .m2 = { .min = 0, .max = 254 },
278 .p = { .min = 7, .max = 112 },
279 .p1 = { .min = 1, .max = 8 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700280 .p2 = { .dot_limit = 112000,
281 .p2_slow = 14, .p2_fast = 14 },
Shaohua Li61157072009-04-03 15:24:43 +0800282 .find_pll = intel_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700283};
284
Eric Anholt273e27c2011-03-30 13:01:10 -0700285/* Ironlake / Sandybridge
286 *
287 * We calculate clock using (register_value + 2) for N/M1/M2, so here
288 * the range value for them is (actual_value - 2).
289 */
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800290static const intel_limit_t intel_limits_ironlake_dac = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700291 .dot = { .min = 25000, .max = 350000 },
292 .vco = { .min = 1760000, .max = 3510000 },
293 .n = { .min = 1, .max = 5 },
294 .m = { .min = 79, .max = 127 },
295 .m1 = { .min = 12, .max = 22 },
296 .m2 = { .min = 5, .max = 9 },
297 .p = { .min = 5, .max = 80 },
298 .p1 = { .min = 1, .max = 8 },
299 .p2 = { .dot_limit = 225000,
300 .p2_slow = 10, .p2_fast = 5 },
Zhao Yakui45476682009-12-31 16:06:04 +0800301 .find_pll = intel_g4x_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700302};
303
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800304static const intel_limit_t intel_limits_ironlake_single_lvds = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700305 .dot = { .min = 25000, .max = 350000 },
306 .vco = { .min = 1760000, .max = 3510000 },
307 .n = { .min = 1, .max = 3 },
308 .m = { .min = 79, .max = 118 },
309 .m1 = { .min = 12, .max = 22 },
310 .m2 = { .min = 5, .max = 9 },
311 .p = { .min = 28, .max = 112 },
312 .p1 = { .min = 2, .max = 8 },
313 .p2 = { .dot_limit = 225000,
314 .p2_slow = 14, .p2_fast = 14 },
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800315 .find_pll = intel_g4x_find_best_PLL,
316};
317
318static const intel_limit_t intel_limits_ironlake_dual_lvds = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700319 .dot = { .min = 25000, .max = 350000 },
320 .vco = { .min = 1760000, .max = 3510000 },
321 .n = { .min = 1, .max = 3 },
322 .m = { .min = 79, .max = 127 },
323 .m1 = { .min = 12, .max = 22 },
324 .m2 = { .min = 5, .max = 9 },
325 .p = { .min = 14, .max = 56 },
326 .p1 = { .min = 2, .max = 8 },
327 .p2 = { .dot_limit = 225000,
328 .p2_slow = 7, .p2_fast = 7 },
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800329 .find_pll = intel_g4x_find_best_PLL,
330};
331
Eric Anholt273e27c2011-03-30 13:01:10 -0700332/* LVDS 100mhz refclk limits. */
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800333static const intel_limit_t intel_limits_ironlake_single_lvds_100m = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700334 .dot = { .min = 25000, .max = 350000 },
335 .vco = { .min = 1760000, .max = 3510000 },
336 .n = { .min = 1, .max = 2 },
337 .m = { .min = 79, .max = 126 },
338 .m1 = { .min = 12, .max = 22 },
339 .m2 = { .min = 5, .max = 9 },
340 .p = { .min = 28, .max = 112 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400341 .p1 = { .min = 2, .max = 8 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700342 .p2 = { .dot_limit = 225000,
343 .p2_slow = 14, .p2_fast = 14 },
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800344 .find_pll = intel_g4x_find_best_PLL,
345};
346
347static const intel_limit_t intel_limits_ironlake_dual_lvds_100m = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700348 .dot = { .min = 25000, .max = 350000 },
349 .vco = { .min = 1760000, .max = 3510000 },
350 .n = { .min = 1, .max = 3 },
351 .m = { .min = 79, .max = 126 },
352 .m1 = { .min = 12, .max = 22 },
353 .m2 = { .min = 5, .max = 9 },
354 .p = { .min = 14, .max = 42 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400355 .p1 = { .min = 2, .max = 6 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700356 .p2 = { .dot_limit = 225000,
357 .p2_slow = 7, .p2_fast = 7 },
Zhao Yakui45476682009-12-31 16:06:04 +0800358 .find_pll = intel_g4x_find_best_PLL,
359};
360
361static const intel_limit_t intel_limits_ironlake_display_port = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400362 .dot = { .min = 25000, .max = 350000 },
363 .vco = { .min = 1760000, .max = 3510000},
364 .n = { .min = 1, .max = 2 },
365 .m = { .min = 81, .max = 90 },
366 .m1 = { .min = 12, .max = 22 },
367 .m2 = { .min = 5, .max = 9 },
368 .p = { .min = 10, .max = 20 },
369 .p1 = { .min = 1, .max = 2},
370 .p2 = { .dot_limit = 0,
Eric Anholt273e27c2011-03-30 13:01:10 -0700371 .p2_slow = 10, .p2_fast = 10 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400372 .find_pll = intel_find_pll_ironlake_dp,
Jesse Barnes79e53942008-11-07 14:24:08 -0800373};
374
Jesse Barnesa0c4da22012-06-15 11:55:13 -0700375static const intel_limit_t intel_limits_vlv_dac = {
376 .dot = { .min = 25000, .max = 270000 },
377 .vco = { .min = 4000000, .max = 6000000 },
378 .n = { .min = 1, .max = 7 },
379 .m = { .min = 22, .max = 450 }, /* guess */
380 .m1 = { .min = 2, .max = 3 },
381 .m2 = { .min = 11, .max = 156 },
382 .p = { .min = 10, .max = 30 },
383 .p1 = { .min = 2, .max = 3 },
384 .p2 = { .dot_limit = 270000,
385 .p2_slow = 2, .p2_fast = 20 },
386 .find_pll = intel_vlv_find_best_pll,
387};
388
389static const intel_limit_t intel_limits_vlv_hdmi = {
390 .dot = { .min = 20000, .max = 165000 },
Vijay Purushothaman17dc9252012-09-27 19:13:09 +0530391 .vco = { .min = 4000000, .max = 5994000},
Jesse Barnesa0c4da22012-06-15 11:55:13 -0700392 .n = { .min = 1, .max = 7 },
393 .m = { .min = 60, .max = 300 }, /* guess */
394 .m1 = { .min = 2, .max = 3 },
395 .m2 = { .min = 11, .max = 156 },
396 .p = { .min = 10, .max = 30 },
397 .p1 = { .min = 2, .max = 3 },
398 .p2 = { .dot_limit = 270000,
399 .p2_slow = 2, .p2_fast = 20 },
400 .find_pll = intel_vlv_find_best_pll,
401};
402
403static const intel_limit_t intel_limits_vlv_dp = {
Vijay Purushothaman74a4dd22012-09-27 19:13:04 +0530404 .dot = { .min = 25000, .max = 270000 },
405 .vco = { .min = 4000000, .max = 6000000 },
Jesse Barnesa0c4da22012-06-15 11:55:13 -0700406 .n = { .min = 1, .max = 7 },
Vijay Purushothaman74a4dd22012-09-27 19:13:04 +0530407 .m = { .min = 22, .max = 450 },
Jesse Barnesa0c4da22012-06-15 11:55:13 -0700408 .m1 = { .min = 2, .max = 3 },
409 .m2 = { .min = 11, .max = 156 },
410 .p = { .min = 10, .max = 30 },
411 .p1 = { .min = 2, .max = 3 },
412 .p2 = { .dot_limit = 270000,
413 .p2_slow = 2, .p2_fast = 20 },
414 .find_pll = intel_vlv_find_best_pll,
415};
416
Jesse Barnes57f350b2012-03-28 13:39:25 -0700417u32 intel_dpio_read(struct drm_i915_private *dev_priv, int reg)
418{
419 unsigned long flags;
420 u32 val = 0;
421
422 spin_lock_irqsave(&dev_priv->dpio_lock, flags);
423 if (wait_for_atomic_us((I915_READ(DPIO_PKT) & DPIO_BUSY) == 0, 100)) {
424 DRM_ERROR("DPIO idle wait timed out\n");
425 goto out_unlock;
426 }
427
428 I915_WRITE(DPIO_REG, reg);
429 I915_WRITE(DPIO_PKT, DPIO_RID | DPIO_OP_READ | DPIO_PORTID |
430 DPIO_BYTE);
431 if (wait_for_atomic_us((I915_READ(DPIO_PKT) & DPIO_BUSY) == 0, 100)) {
432 DRM_ERROR("DPIO read wait timed out\n");
433 goto out_unlock;
434 }
435 val = I915_READ(DPIO_DATA);
436
437out_unlock:
438 spin_unlock_irqrestore(&dev_priv->dpio_lock, flags);
439 return val;
440}
441
Jesse Barnesa0c4da22012-06-15 11:55:13 -0700442static void intel_dpio_write(struct drm_i915_private *dev_priv, int reg,
443 u32 val)
444{
445 unsigned long flags;
446
447 spin_lock_irqsave(&dev_priv->dpio_lock, flags);
448 if (wait_for_atomic_us((I915_READ(DPIO_PKT) & DPIO_BUSY) == 0, 100)) {
449 DRM_ERROR("DPIO idle wait timed out\n");
450 goto out_unlock;
451 }
452
453 I915_WRITE(DPIO_DATA, val);
454 I915_WRITE(DPIO_REG, reg);
455 I915_WRITE(DPIO_PKT, DPIO_RID | DPIO_OP_WRITE | DPIO_PORTID |
456 DPIO_BYTE);
457 if (wait_for_atomic_us((I915_READ(DPIO_PKT) & DPIO_BUSY) == 0, 100))
458 DRM_ERROR("DPIO write wait timed out\n");
459
460out_unlock:
461 spin_unlock_irqrestore(&dev_priv->dpio_lock, flags);
462}
463
Jesse Barnes57f350b2012-03-28 13:39:25 -0700464static void vlv_init_dpio(struct drm_device *dev)
465{
466 struct drm_i915_private *dev_priv = dev->dev_private;
467
468 /* Reset the DPIO config */
469 I915_WRITE(DPIO_CTL, 0);
470 POSTING_READ(DPIO_CTL);
471 I915_WRITE(DPIO_CTL, 1);
472 POSTING_READ(DPIO_CTL);
473}
474
Chris Wilson1b894b52010-12-14 20:04:54 +0000475static const intel_limit_t *intel_ironlake_limit(struct drm_crtc *crtc,
476 int refclk)
Zhenyu Wang2c072452009-06-05 15:38:42 +0800477{
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800478 struct drm_device *dev = crtc->dev;
Zhenyu Wang2c072452009-06-05 15:38:42 +0800479 const intel_limit_t *limit;
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800480
481 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
Daniel Vetter1974cad2012-11-26 17:22:09 +0100482 if (intel_is_dual_link_lvds(dev)) {
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800483 /* LVDS dual channel */
Chris Wilson1b894b52010-12-14 20:04:54 +0000484 if (refclk == 100000)
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800485 limit = &intel_limits_ironlake_dual_lvds_100m;
486 else
487 limit = &intel_limits_ironlake_dual_lvds;
488 } else {
Chris Wilson1b894b52010-12-14 20:04:54 +0000489 if (refclk == 100000)
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800490 limit = &intel_limits_ironlake_single_lvds_100m;
491 else
492 limit = &intel_limits_ironlake_single_lvds;
493 }
494 } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT) ||
Jani Nikula547dc042012-11-02 11:24:03 +0200495 intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP))
Zhao Yakui45476682009-12-31 16:06:04 +0800496 limit = &intel_limits_ironlake_display_port;
Zhenyu Wang2c072452009-06-05 15:38:42 +0800497 else
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800498 limit = &intel_limits_ironlake_dac;
Zhenyu Wang2c072452009-06-05 15:38:42 +0800499
500 return limit;
501}
502
Ma Ling044c7c42009-03-18 20:13:23 +0800503static const intel_limit_t *intel_g4x_limit(struct drm_crtc *crtc)
504{
505 struct drm_device *dev = crtc->dev;
Ma Ling044c7c42009-03-18 20:13:23 +0800506 const intel_limit_t *limit;
507
508 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
Daniel Vetter1974cad2012-11-26 17:22:09 +0100509 if (intel_is_dual_link_lvds(dev))
Ma Ling044c7c42009-03-18 20:13:23 +0800510 /* LVDS with dual channel */
Keith Packarde4b36692009-06-05 19:22:17 -0700511 limit = &intel_limits_g4x_dual_channel_lvds;
Ma Ling044c7c42009-03-18 20:13:23 +0800512 else
513 /* LVDS with dual channel */
Keith Packarde4b36692009-06-05 19:22:17 -0700514 limit = &intel_limits_g4x_single_channel_lvds;
Ma Ling044c7c42009-03-18 20:13:23 +0800515 } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI) ||
516 intel_pipe_has_type(crtc, INTEL_OUTPUT_ANALOG)) {
Keith Packarde4b36692009-06-05 19:22:17 -0700517 limit = &intel_limits_g4x_hdmi;
Ma Ling044c7c42009-03-18 20:13:23 +0800518 } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_SDVO)) {
Keith Packarde4b36692009-06-05 19:22:17 -0700519 limit = &intel_limits_g4x_sdvo;
Akshay Joshi0206e352011-08-16 15:34:10 -0400520 } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT)) {
Keith Packarde4b36692009-06-05 19:22:17 -0700521 limit = &intel_limits_g4x_display_port;
Ma Ling044c7c42009-03-18 20:13:23 +0800522 } else /* The option is for other outputs */
Keith Packarde4b36692009-06-05 19:22:17 -0700523 limit = &intel_limits_i9xx_sdvo;
Ma Ling044c7c42009-03-18 20:13:23 +0800524
525 return limit;
526}
527
Chris Wilson1b894b52010-12-14 20:04:54 +0000528static const intel_limit_t *intel_limit(struct drm_crtc *crtc, int refclk)
Jesse Barnes79e53942008-11-07 14:24:08 -0800529{
530 struct drm_device *dev = crtc->dev;
531 const intel_limit_t *limit;
532
Eric Anholtbad720f2009-10-22 16:11:14 -0700533 if (HAS_PCH_SPLIT(dev))
Chris Wilson1b894b52010-12-14 20:04:54 +0000534 limit = intel_ironlake_limit(crtc, refclk);
Zhenyu Wang2c072452009-06-05 15:38:42 +0800535 else if (IS_G4X(dev)) {
Ma Ling044c7c42009-03-18 20:13:23 +0800536 limit = intel_g4x_limit(crtc);
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500537 } else if (IS_PINEVIEW(dev)) {
Shaohua Li21778322009-02-23 15:19:16 +0800538 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS))
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500539 limit = &intel_limits_pineview_lvds;
Shaohua Li21778322009-02-23 15:19:16 +0800540 else
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500541 limit = &intel_limits_pineview_sdvo;
Jesse Barnesa0c4da22012-06-15 11:55:13 -0700542 } else if (IS_VALLEYVIEW(dev)) {
543 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_ANALOG))
544 limit = &intel_limits_vlv_dac;
545 else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI))
546 limit = &intel_limits_vlv_hdmi;
547 else
548 limit = &intel_limits_vlv_dp;
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100549 } else if (!IS_GEN2(dev)) {
550 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS))
551 limit = &intel_limits_i9xx_lvds;
552 else
553 limit = &intel_limits_i9xx_sdvo;
Jesse Barnes79e53942008-11-07 14:24:08 -0800554 } else {
555 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS))
Keith Packarde4b36692009-06-05 19:22:17 -0700556 limit = &intel_limits_i8xx_lvds;
Jesse Barnes79e53942008-11-07 14:24:08 -0800557 else
Keith Packarde4b36692009-06-05 19:22:17 -0700558 limit = &intel_limits_i8xx_dvo;
Jesse Barnes79e53942008-11-07 14:24:08 -0800559 }
560 return limit;
561}
562
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500563/* m1 is reserved as 0 in Pineview, n is a ring counter */
564static void pineview_clock(int refclk, intel_clock_t *clock)
Jesse Barnes79e53942008-11-07 14:24:08 -0800565{
Shaohua Li21778322009-02-23 15:19:16 +0800566 clock->m = clock->m2 + 2;
567 clock->p = clock->p1 * clock->p2;
568 clock->vco = refclk * clock->m / clock->n;
569 clock->dot = clock->vco / clock->p;
570}
571
572static void intel_clock(struct drm_device *dev, int refclk, intel_clock_t *clock)
573{
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500574 if (IS_PINEVIEW(dev)) {
575 pineview_clock(refclk, clock);
Shaohua Li21778322009-02-23 15:19:16 +0800576 return;
577 }
Jesse Barnes79e53942008-11-07 14:24:08 -0800578 clock->m = 5 * (clock->m1 + 2) + (clock->m2 + 2);
579 clock->p = clock->p1 * clock->p2;
580 clock->vco = refclk * clock->m / (clock->n + 2);
581 clock->dot = clock->vco / clock->p;
582}
583
Jesse Barnes79e53942008-11-07 14:24:08 -0800584/**
585 * Returns whether any output on the specified pipe is of the specified type
586 */
Chris Wilson4ef69c72010-09-09 15:14:28 +0100587bool intel_pipe_has_type(struct drm_crtc *crtc, int type)
Jesse Barnes79e53942008-11-07 14:24:08 -0800588{
Chris Wilson4ef69c72010-09-09 15:14:28 +0100589 struct drm_device *dev = crtc->dev;
Chris Wilson4ef69c72010-09-09 15:14:28 +0100590 struct intel_encoder *encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -0800591
Daniel Vetter6c2b7c122012-07-05 09:50:24 +0200592 for_each_encoder_on_crtc(dev, crtc, encoder)
593 if (encoder->type == type)
Chris Wilson4ef69c72010-09-09 15:14:28 +0100594 return true;
595
596 return false;
Jesse Barnes79e53942008-11-07 14:24:08 -0800597}
598
Jesse Barnes7c04d1d2009-02-23 15:36:40 -0800599#define INTELPllInvalid(s) do { /* DRM_DEBUG(s); */ return false; } while (0)
Jesse Barnes79e53942008-11-07 14:24:08 -0800600/**
601 * Returns whether the given set of divisors are valid for a given refclk with
602 * the given connectors.
603 */
604
Chris Wilson1b894b52010-12-14 20:04:54 +0000605static bool intel_PLL_is_valid(struct drm_device *dev,
606 const intel_limit_t *limit,
607 const intel_clock_t *clock)
Jesse Barnes79e53942008-11-07 14:24:08 -0800608{
Jesse Barnes79e53942008-11-07 14:24:08 -0800609 if (clock->p1 < limit->p1.min || limit->p1.max < clock->p1)
Akshay Joshi0206e352011-08-16 15:34:10 -0400610 INTELPllInvalid("p1 out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800611 if (clock->p < limit->p.min || limit->p.max < clock->p)
Akshay Joshi0206e352011-08-16 15:34:10 -0400612 INTELPllInvalid("p out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800613 if (clock->m2 < limit->m2.min || limit->m2.max < clock->m2)
Akshay Joshi0206e352011-08-16 15:34:10 -0400614 INTELPllInvalid("m2 out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800615 if (clock->m1 < limit->m1.min || limit->m1.max < clock->m1)
Akshay Joshi0206e352011-08-16 15:34:10 -0400616 INTELPllInvalid("m1 out of range\n");
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500617 if (clock->m1 <= clock->m2 && !IS_PINEVIEW(dev))
Akshay Joshi0206e352011-08-16 15:34:10 -0400618 INTELPllInvalid("m1 <= m2\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800619 if (clock->m < limit->m.min || limit->m.max < clock->m)
Akshay Joshi0206e352011-08-16 15:34:10 -0400620 INTELPllInvalid("m out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800621 if (clock->n < limit->n.min || limit->n.max < clock->n)
Akshay Joshi0206e352011-08-16 15:34:10 -0400622 INTELPllInvalid("n out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800623 if (clock->vco < limit->vco.min || limit->vco.max < clock->vco)
Akshay Joshi0206e352011-08-16 15:34:10 -0400624 INTELPllInvalid("vco out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800625 /* XXX: We may need to be checking "Dot clock" depending on the multiplier,
626 * connector, etc., rather than just a single range.
627 */
628 if (clock->dot < limit->dot.min || limit->dot.max < clock->dot)
Akshay Joshi0206e352011-08-16 15:34:10 -0400629 INTELPllInvalid("dot out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800630
631 return true;
632}
633
Ma Lingd4906092009-03-18 20:13:27 +0800634static bool
635intel_find_best_PLL(const intel_limit_t *limit, struct drm_crtc *crtc,
Sean Paulcec2f352012-01-10 15:09:36 -0800636 int target, int refclk, intel_clock_t *match_clock,
637 intel_clock_t *best_clock)
Ma Lingd4906092009-03-18 20:13:27 +0800638
Jesse Barnes79e53942008-11-07 14:24:08 -0800639{
640 struct drm_device *dev = crtc->dev;
Jesse Barnes79e53942008-11-07 14:24:08 -0800641 intel_clock_t clock;
Jesse Barnes79e53942008-11-07 14:24:08 -0800642 int err = target;
643
Daniel Vettera210b022012-11-26 17:22:08 +0100644 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
Jesse Barnes79e53942008-11-07 14:24:08 -0800645 /*
Daniel Vettera210b022012-11-26 17:22:08 +0100646 * For LVDS just rely on its current settings for dual-channel.
647 * We haven't figured out how to reliably set up different
648 * single/dual channel state, if we even can.
Jesse Barnes79e53942008-11-07 14:24:08 -0800649 */
Daniel Vetter1974cad2012-11-26 17:22:09 +0100650 if (intel_is_dual_link_lvds(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -0800651 clock.p2 = limit->p2.p2_fast;
652 else
653 clock.p2 = limit->p2.p2_slow;
654 } else {
655 if (target < limit->p2.dot_limit)
656 clock.p2 = limit->p2.p2_slow;
657 else
658 clock.p2 = limit->p2.p2_fast;
659 }
660
Akshay Joshi0206e352011-08-16 15:34:10 -0400661 memset(best_clock, 0, sizeof(*best_clock));
Jesse Barnes79e53942008-11-07 14:24:08 -0800662
Zhao Yakui42158662009-11-20 11:24:18 +0800663 for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max;
664 clock.m1++) {
665 for (clock.m2 = limit->m2.min;
666 clock.m2 <= limit->m2.max; clock.m2++) {
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500667 /* m1 is always 0 in Pineview */
668 if (clock.m2 >= clock.m1 && !IS_PINEVIEW(dev))
Zhao Yakui42158662009-11-20 11:24:18 +0800669 break;
670 for (clock.n = limit->n.min;
671 clock.n <= limit->n.max; clock.n++) {
672 for (clock.p1 = limit->p1.min;
673 clock.p1 <= limit->p1.max; clock.p1++) {
Jesse Barnes79e53942008-11-07 14:24:08 -0800674 int this_err;
675
Shaohua Li21778322009-02-23 15:19:16 +0800676 intel_clock(dev, refclk, &clock);
Chris Wilson1b894b52010-12-14 20:04:54 +0000677 if (!intel_PLL_is_valid(dev, limit,
678 &clock))
Jesse Barnes79e53942008-11-07 14:24:08 -0800679 continue;
Sean Paulcec2f352012-01-10 15:09:36 -0800680 if (match_clock &&
681 clock.p != match_clock->p)
682 continue;
Jesse Barnes79e53942008-11-07 14:24:08 -0800683
684 this_err = abs(clock.dot - target);
685 if (this_err < err) {
686 *best_clock = clock;
687 err = this_err;
688 }
689 }
690 }
691 }
692 }
693
694 return (err != target);
695}
696
Ma Lingd4906092009-03-18 20:13:27 +0800697static bool
698intel_g4x_find_best_PLL(const intel_limit_t *limit, struct drm_crtc *crtc,
Sean Paulcec2f352012-01-10 15:09:36 -0800699 int target, int refclk, intel_clock_t *match_clock,
700 intel_clock_t *best_clock)
Ma Lingd4906092009-03-18 20:13:27 +0800701{
702 struct drm_device *dev = crtc->dev;
Ma Lingd4906092009-03-18 20:13:27 +0800703 intel_clock_t clock;
704 int max_n;
705 bool found;
Adam Jackson6ba770d2010-07-02 16:43:30 -0400706 /* approximately equals target * 0.00585 */
707 int err_most = (target >> 8) + (target >> 9);
Ma Lingd4906092009-03-18 20:13:27 +0800708 found = false;
709
710 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
Zhao Yakui45476682009-12-31 16:06:04 +0800711 int lvds_reg;
712
Eric Anholtc619eed2010-01-28 16:45:52 -0800713 if (HAS_PCH_SPLIT(dev))
Zhao Yakui45476682009-12-31 16:06:04 +0800714 lvds_reg = PCH_LVDS;
715 else
716 lvds_reg = LVDS;
Daniel Vetter1974cad2012-11-26 17:22:09 +0100717 if (intel_is_dual_link_lvds(dev))
Ma Lingd4906092009-03-18 20:13:27 +0800718 clock.p2 = limit->p2.p2_fast;
719 else
720 clock.p2 = limit->p2.p2_slow;
721 } else {
722 if (target < limit->p2.dot_limit)
723 clock.p2 = limit->p2.p2_slow;
724 else
725 clock.p2 = limit->p2.p2_fast;
726 }
727
728 memset(best_clock, 0, sizeof(*best_clock));
729 max_n = limit->n.max;
Gilles Espinassef77f13e2010-03-29 15:41:47 +0200730 /* based on hardware requirement, prefer smaller n to precision */
Ma Lingd4906092009-03-18 20:13:27 +0800731 for (clock.n = limit->n.min; clock.n <= max_n; clock.n++) {
Gilles Espinassef77f13e2010-03-29 15:41:47 +0200732 /* based on hardware requirement, prefere larger m1,m2 */
Ma Lingd4906092009-03-18 20:13:27 +0800733 for (clock.m1 = limit->m1.max;
734 clock.m1 >= limit->m1.min; clock.m1--) {
735 for (clock.m2 = limit->m2.max;
736 clock.m2 >= limit->m2.min; clock.m2--) {
737 for (clock.p1 = limit->p1.max;
738 clock.p1 >= limit->p1.min; clock.p1--) {
739 int this_err;
740
Shaohua Li21778322009-02-23 15:19:16 +0800741 intel_clock(dev, refclk, &clock);
Chris Wilson1b894b52010-12-14 20:04:54 +0000742 if (!intel_PLL_is_valid(dev, limit,
743 &clock))
Ma Lingd4906092009-03-18 20:13:27 +0800744 continue;
Sean Paulcec2f352012-01-10 15:09:36 -0800745 if (match_clock &&
746 clock.p != match_clock->p)
747 continue;
Chris Wilson1b894b52010-12-14 20:04:54 +0000748
749 this_err = abs(clock.dot - target);
Ma Lingd4906092009-03-18 20:13:27 +0800750 if (this_err < err_most) {
751 *best_clock = clock;
752 err_most = this_err;
753 max_n = clock.n;
754 found = true;
755 }
756 }
757 }
758 }
759 }
Zhenyu Wang2c072452009-06-05 15:38:42 +0800760 return found;
761}
Ma Lingd4906092009-03-18 20:13:27 +0800762
Zhenyu Wang2c072452009-06-05 15:38:42 +0800763static bool
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500764intel_find_pll_ironlake_dp(const intel_limit_t *limit, struct drm_crtc *crtc,
Sean Paulcec2f352012-01-10 15:09:36 -0800765 int target, int refclk, intel_clock_t *match_clock,
766 intel_clock_t *best_clock)
Zhenyu Wang5eb08b62009-07-24 01:00:31 +0800767{
768 struct drm_device *dev = crtc->dev;
769 intel_clock_t clock;
Zhao Yakui45476682009-12-31 16:06:04 +0800770
Zhenyu Wang5eb08b62009-07-24 01:00:31 +0800771 if (target < 200000) {
772 clock.n = 1;
773 clock.p1 = 2;
774 clock.p2 = 10;
775 clock.m1 = 12;
776 clock.m2 = 9;
777 } else {
778 clock.n = 2;
779 clock.p1 = 1;
780 clock.p2 = 10;
781 clock.m1 = 14;
782 clock.m2 = 8;
783 }
784 intel_clock(dev, refclk, &clock);
785 memcpy(best_clock, &clock, sizeof(intel_clock_t));
786 return true;
787}
788
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700789/* DisplayPort has only two frequencies, 162MHz and 270MHz */
790static bool
791intel_find_pll_g4x_dp(const intel_limit_t *limit, struct drm_crtc *crtc,
Sean Paulcec2f352012-01-10 15:09:36 -0800792 int target, int refclk, intel_clock_t *match_clock,
793 intel_clock_t *best_clock)
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700794{
Chris Wilson5eddb702010-09-11 13:48:45 +0100795 intel_clock_t clock;
796 if (target < 200000) {
797 clock.p1 = 2;
798 clock.p2 = 10;
799 clock.n = 2;
800 clock.m1 = 23;
801 clock.m2 = 8;
802 } else {
803 clock.p1 = 1;
804 clock.p2 = 10;
805 clock.n = 1;
806 clock.m1 = 14;
807 clock.m2 = 2;
808 }
809 clock.m = 5 * (clock.m1 + 2) + (clock.m2 + 2);
810 clock.p = (clock.p1 * clock.p2);
811 clock.dot = 96000 * clock.m / (clock.n + 2) / clock.p;
812 clock.vco = 0;
813 memcpy(best_clock, &clock, sizeof(intel_clock_t));
814 return true;
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700815}
Jesse Barnesa0c4da22012-06-15 11:55:13 -0700816static bool
817intel_vlv_find_best_pll(const intel_limit_t *limit, struct drm_crtc *crtc,
818 int target, int refclk, intel_clock_t *match_clock,
819 intel_clock_t *best_clock)
820{
821 u32 p1, p2, m1, m2, vco, bestn, bestm1, bestm2, bestp1, bestp2;
822 u32 m, n, fastclk;
823 u32 updrate, minupdate, fracbits, p;
824 unsigned long bestppm, ppm, absppm;
825 int dotclk, flag;
826
Alan Coxaf447bd2012-07-25 13:49:18 +0100827 flag = 0;
Jesse Barnesa0c4da22012-06-15 11:55:13 -0700828 dotclk = target * 1000;
829 bestppm = 1000000;
830 ppm = absppm = 0;
831 fastclk = dotclk / (2*100);
832 updrate = 0;
833 minupdate = 19200;
834 fracbits = 1;
835 n = p = p1 = p2 = m = m1 = m2 = vco = bestn = 0;
836 bestm1 = bestm2 = bestp1 = bestp2 = 0;
837
838 /* based on hardware requirement, prefer smaller n to precision */
839 for (n = limit->n.min; n <= ((refclk) / minupdate); n++) {
840 updrate = refclk / n;
841 for (p1 = limit->p1.max; p1 > limit->p1.min; p1--) {
842 for (p2 = limit->p2.p2_fast+1; p2 > 0; p2--) {
843 if (p2 > 10)
844 p2 = p2 - 1;
845 p = p1 * p2;
846 /* based on hardware requirement, prefer bigger m1,m2 values */
847 for (m1 = limit->m1.min; m1 <= limit->m1.max; m1++) {
848 m2 = (((2*(fastclk * p * n / m1 )) +
849 refclk) / (2*refclk));
850 m = m1 * m2;
851 vco = updrate * m;
852 if (vco >= limit->vco.min && vco < limit->vco.max) {
853 ppm = 1000000 * ((vco / p) - fastclk) / fastclk;
854 absppm = (ppm > 0) ? ppm : (-ppm);
855 if (absppm < 100 && ((p1 * p2) > (bestp1 * bestp2))) {
856 bestppm = 0;
857 flag = 1;
858 }
859 if (absppm < bestppm - 10) {
860 bestppm = absppm;
861 flag = 1;
862 }
863 if (flag) {
864 bestn = n;
865 bestm1 = m1;
866 bestm2 = m2;
867 bestp1 = p1;
868 bestp2 = p2;
869 flag = 0;
870 }
871 }
872 }
873 }
874 }
875 }
876 best_clock->n = bestn;
877 best_clock->m1 = bestm1;
878 best_clock->m2 = bestm2;
879 best_clock->p1 = bestp1;
880 best_clock->p2 = bestp2;
881
882 return true;
883}
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700884
Paulo Zanonia5c961d2012-10-24 15:59:34 -0200885enum transcoder intel_pipe_to_cpu_transcoder(struct drm_i915_private *dev_priv,
886 enum pipe pipe)
887{
888 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
889 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
890
891 return intel_crtc->cpu_transcoder;
892}
893
Paulo Zanonia928d532012-05-04 17:18:15 -0300894static void ironlake_wait_for_vblank(struct drm_device *dev, int pipe)
895{
896 struct drm_i915_private *dev_priv = dev->dev_private;
897 u32 frame, frame_reg = PIPEFRAME(pipe);
898
899 frame = I915_READ(frame_reg);
900
901 if (wait_for(I915_READ_NOTRACE(frame_reg) != frame, 50))
902 DRM_DEBUG_KMS("vblank wait timed out\n");
903}
904
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700905/**
906 * intel_wait_for_vblank - wait for vblank on a given pipe
907 * @dev: drm device
908 * @pipe: pipe to wait for
909 *
910 * Wait for vblank to occur on a given pipe. Needed for various bits of
911 * mode setting code.
912 */
913void intel_wait_for_vblank(struct drm_device *dev, int pipe)
Jesse Barnes79e53942008-11-07 14:24:08 -0800914{
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700915 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800916 int pipestat_reg = PIPESTAT(pipe);
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700917
Paulo Zanonia928d532012-05-04 17:18:15 -0300918 if (INTEL_INFO(dev)->gen >= 5) {
919 ironlake_wait_for_vblank(dev, pipe);
920 return;
921 }
922
Chris Wilson300387c2010-09-05 20:25:43 +0100923 /* Clear existing vblank status. Note this will clear any other
924 * sticky status fields as well.
925 *
926 * This races with i915_driver_irq_handler() with the result
927 * that either function could miss a vblank event. Here it is not
928 * fatal, as we will either wait upon the next vblank interrupt or
929 * timeout. Generally speaking intel_wait_for_vblank() is only
930 * called during modeset at which time the GPU should be idle and
931 * should *not* be performing page flips and thus not waiting on
932 * vblanks...
933 * Currently, the result of us stealing a vblank from the irq
934 * handler is that a single frame will be skipped during swapbuffers.
935 */
936 I915_WRITE(pipestat_reg,
937 I915_READ(pipestat_reg) | PIPE_VBLANK_INTERRUPT_STATUS);
938
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700939 /* Wait for vblank interrupt bit to set */
Chris Wilson481b6af2010-08-23 17:43:35 +0100940 if (wait_for(I915_READ(pipestat_reg) &
941 PIPE_VBLANK_INTERRUPT_STATUS,
942 50))
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700943 DRM_DEBUG_KMS("vblank wait timed out\n");
944}
945
Keith Packardab7ad7f2010-10-03 00:33:06 -0700946/*
947 * intel_wait_for_pipe_off - wait for pipe to turn off
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700948 * @dev: drm device
949 * @pipe: pipe to wait for
950 *
951 * After disabling a pipe, we can't wait for vblank in the usual way,
952 * spinning on the vblank interrupt status bit, since we won't actually
953 * see an interrupt when the pipe is disabled.
954 *
Keith Packardab7ad7f2010-10-03 00:33:06 -0700955 * On Gen4 and above:
956 * wait for the pipe register state bit to turn off
957 *
958 * Otherwise:
959 * wait for the display line value to settle (it usually
960 * ends up stopping at the start of the next frame).
Chris Wilson58e10eb2010-10-03 10:56:11 +0100961 *
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700962 */
Chris Wilson58e10eb2010-10-03 10:56:11 +0100963void intel_wait_for_pipe_off(struct drm_device *dev, int pipe)
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700964{
965 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni702e7a52012-10-23 18:29:59 -0200966 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
967 pipe);
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700968
Keith Packardab7ad7f2010-10-03 00:33:06 -0700969 if (INTEL_INFO(dev)->gen >= 4) {
Paulo Zanoni702e7a52012-10-23 18:29:59 -0200970 int reg = PIPECONF(cpu_transcoder);
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700971
Keith Packardab7ad7f2010-10-03 00:33:06 -0700972 /* Wait for the Pipe State to go off */
Chris Wilson58e10eb2010-10-03 10:56:11 +0100973 if (wait_for((I915_READ(reg) & I965_PIPECONF_ACTIVE) == 0,
974 100))
Daniel Vetter284637d2012-07-09 09:51:57 +0200975 WARN(1, "pipe_off wait timed out\n");
Keith Packardab7ad7f2010-10-03 00:33:06 -0700976 } else {
Paulo Zanoni837ba002012-05-04 17:18:14 -0300977 u32 last_line, line_mask;
Chris Wilson58e10eb2010-10-03 10:56:11 +0100978 int reg = PIPEDSL(pipe);
Keith Packardab7ad7f2010-10-03 00:33:06 -0700979 unsigned long timeout = jiffies + msecs_to_jiffies(100);
980
Paulo Zanoni837ba002012-05-04 17:18:14 -0300981 if (IS_GEN2(dev))
982 line_mask = DSL_LINEMASK_GEN2;
983 else
984 line_mask = DSL_LINEMASK_GEN3;
985
Keith Packardab7ad7f2010-10-03 00:33:06 -0700986 /* Wait for the display line to settle */
987 do {
Paulo Zanoni837ba002012-05-04 17:18:14 -0300988 last_line = I915_READ(reg) & line_mask;
Keith Packardab7ad7f2010-10-03 00:33:06 -0700989 mdelay(5);
Paulo Zanoni837ba002012-05-04 17:18:14 -0300990 } while (((I915_READ(reg) & line_mask) != last_line) &&
Keith Packardab7ad7f2010-10-03 00:33:06 -0700991 time_after(timeout, jiffies));
992 if (time_after(jiffies, timeout))
Daniel Vetter284637d2012-07-09 09:51:57 +0200993 WARN(1, "pipe_off wait timed out\n");
Keith Packardab7ad7f2010-10-03 00:33:06 -0700994 }
Jesse Barnes79e53942008-11-07 14:24:08 -0800995}
996
Jesse Barnesb24e7172011-01-04 15:09:30 -0800997static const char *state_string(bool enabled)
998{
999 return enabled ? "on" : "off";
1000}
1001
1002/* Only for pre-ILK configs */
1003static void assert_pll(struct drm_i915_private *dev_priv,
1004 enum pipe pipe, bool state)
1005{
1006 int reg;
1007 u32 val;
1008 bool cur_state;
1009
1010 reg = DPLL(pipe);
1011 val = I915_READ(reg);
1012 cur_state = !!(val & DPLL_VCO_ENABLE);
1013 WARN(cur_state != state,
1014 "PLL state assertion failure (expected %s, current %s)\n",
1015 state_string(state), state_string(cur_state));
1016}
1017#define assert_pll_enabled(d, p) assert_pll(d, p, true)
1018#define assert_pll_disabled(d, p) assert_pll(d, p, false)
1019
Jesse Barnes040484a2011-01-03 12:14:26 -08001020/* For ILK+ */
1021static void assert_pch_pll(struct drm_i915_private *dev_priv,
Chris Wilson92b27b02012-05-20 18:10:50 +01001022 struct intel_pch_pll *pll,
1023 struct intel_crtc *crtc,
1024 bool state)
Jesse Barnes040484a2011-01-03 12:14:26 -08001025{
Jesse Barnes040484a2011-01-03 12:14:26 -08001026 u32 val;
1027 bool cur_state;
1028
Eugeni Dodonov9d82aa12012-05-09 15:37:17 -03001029 if (HAS_PCH_LPT(dev_priv->dev)) {
1030 DRM_DEBUG_DRIVER("LPT detected: skipping PCH PLL test\n");
1031 return;
1032 }
1033
Chris Wilson92b27b02012-05-20 18:10:50 +01001034 if (WARN (!pll,
1035 "asserting PCH PLL %s with no PLL\n", state_string(state)))
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001036 return;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001037
Chris Wilson92b27b02012-05-20 18:10:50 +01001038 val = I915_READ(pll->pll_reg);
1039 cur_state = !!(val & DPLL_VCO_ENABLE);
1040 WARN(cur_state != state,
1041 "PCH PLL state for reg %x assertion failure (expected %s, current %s), val=%08x\n",
1042 pll->pll_reg, state_string(state), state_string(cur_state), val);
1043
1044 /* Make sure the selected PLL is correctly attached to the transcoder */
1045 if (crtc && HAS_PCH_CPT(dev_priv->dev)) {
Jesse Barnesd3ccbe82011-10-12 09:27:42 -07001046 u32 pch_dpll;
1047
1048 pch_dpll = I915_READ(PCH_DPLL_SEL);
Chris Wilson92b27b02012-05-20 18:10:50 +01001049 cur_state = pll->pll_reg == _PCH_DPLL_B;
1050 if (!WARN(((pch_dpll >> (4 * crtc->pipe)) & 1) != cur_state,
1051 "PLL[%d] not attached to this transcoder %d: %08x\n",
1052 cur_state, crtc->pipe, pch_dpll)) {
1053 cur_state = !!(val >> (4*crtc->pipe + 3));
1054 WARN(cur_state != state,
1055 "PLL[%d] not %s on this transcoder %d: %08x\n",
1056 pll->pll_reg == _PCH_DPLL_B,
1057 state_string(state),
1058 crtc->pipe,
1059 val);
1060 }
Jesse Barnesd3ccbe82011-10-12 09:27:42 -07001061 }
Jesse Barnes040484a2011-01-03 12:14:26 -08001062}
Chris Wilson92b27b02012-05-20 18:10:50 +01001063#define assert_pch_pll_enabled(d, p, c) assert_pch_pll(d, p, c, true)
1064#define assert_pch_pll_disabled(d, p, c) assert_pch_pll(d, p, c, false)
Jesse Barnes040484a2011-01-03 12:14:26 -08001065
1066static void assert_fdi_tx(struct drm_i915_private *dev_priv,
1067 enum pipe pipe, bool state)
1068{
1069 int reg;
1070 u32 val;
1071 bool cur_state;
Paulo Zanoniad80a812012-10-24 16:06:19 -02001072 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
1073 pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08001074
Paulo Zanoniaffa9352012-11-23 15:30:39 -02001075 if (HAS_DDI(dev_priv->dev)) {
1076 /* DDI does not have a specific FDI_TX register */
Paulo Zanoniad80a812012-10-24 16:06:19 -02001077 reg = TRANS_DDI_FUNC_CTL(cpu_transcoder);
Eugeni Dodonovbf507ef2012-05-09 15:37:18 -03001078 val = I915_READ(reg);
Paulo Zanoniad80a812012-10-24 16:06:19 -02001079 cur_state = !!(val & TRANS_DDI_FUNC_ENABLE);
Eugeni Dodonovbf507ef2012-05-09 15:37:18 -03001080 } else {
1081 reg = FDI_TX_CTL(pipe);
1082 val = I915_READ(reg);
1083 cur_state = !!(val & FDI_TX_ENABLE);
1084 }
Jesse Barnes040484a2011-01-03 12:14:26 -08001085 WARN(cur_state != state,
1086 "FDI TX state assertion failure (expected %s, current %s)\n",
1087 state_string(state), state_string(cur_state));
1088}
1089#define assert_fdi_tx_enabled(d, p) assert_fdi_tx(d, p, true)
1090#define assert_fdi_tx_disabled(d, p) assert_fdi_tx(d, p, false)
1091
1092static void assert_fdi_rx(struct drm_i915_private *dev_priv,
1093 enum pipe pipe, bool state)
1094{
1095 int reg;
1096 u32 val;
1097 bool cur_state;
1098
Paulo Zanonid63fa0d2012-11-20 13:27:35 -02001099 reg = FDI_RX_CTL(pipe);
1100 val = I915_READ(reg);
1101 cur_state = !!(val & FDI_RX_ENABLE);
Jesse Barnes040484a2011-01-03 12:14:26 -08001102 WARN(cur_state != state,
1103 "FDI RX state assertion failure (expected %s, current %s)\n",
1104 state_string(state), state_string(cur_state));
1105}
1106#define assert_fdi_rx_enabled(d, p) assert_fdi_rx(d, p, true)
1107#define assert_fdi_rx_disabled(d, p) assert_fdi_rx(d, p, false)
1108
1109static void assert_fdi_tx_pll_enabled(struct drm_i915_private *dev_priv,
1110 enum pipe pipe)
1111{
1112 int reg;
1113 u32 val;
1114
1115 /* ILK FDI PLL is always enabled */
1116 if (dev_priv->info->gen == 5)
1117 return;
1118
Eugeni Dodonovbf507ef2012-05-09 15:37:18 -03001119 /* On Haswell, DDI ports are responsible for the FDI PLL setup */
Paulo Zanoniaffa9352012-11-23 15:30:39 -02001120 if (HAS_DDI(dev_priv->dev))
Eugeni Dodonovbf507ef2012-05-09 15:37:18 -03001121 return;
1122
Jesse Barnes040484a2011-01-03 12:14:26 -08001123 reg = FDI_TX_CTL(pipe);
1124 val = I915_READ(reg);
1125 WARN(!(val & FDI_TX_PLL_ENABLE), "FDI TX PLL assertion failure, should be active but is disabled\n");
1126}
1127
1128static void assert_fdi_rx_pll_enabled(struct drm_i915_private *dev_priv,
1129 enum pipe pipe)
1130{
1131 int reg;
1132 u32 val;
1133
1134 reg = FDI_RX_CTL(pipe);
1135 val = I915_READ(reg);
1136 WARN(!(val & FDI_RX_PLL_ENABLE), "FDI RX PLL assertion failure, should be active but is disabled\n");
1137}
1138
Jesse Barnesea0760c2011-01-04 15:09:32 -08001139static void assert_panel_unlocked(struct drm_i915_private *dev_priv,
1140 enum pipe pipe)
1141{
1142 int pp_reg, lvds_reg;
1143 u32 val;
1144 enum pipe panel_pipe = PIPE_A;
Thomas Jarosch0de3b482011-08-25 15:37:45 +02001145 bool locked = true;
Jesse Barnesea0760c2011-01-04 15:09:32 -08001146
1147 if (HAS_PCH_SPLIT(dev_priv->dev)) {
1148 pp_reg = PCH_PP_CONTROL;
1149 lvds_reg = PCH_LVDS;
1150 } else {
1151 pp_reg = PP_CONTROL;
1152 lvds_reg = LVDS;
1153 }
1154
1155 val = I915_READ(pp_reg);
1156 if (!(val & PANEL_POWER_ON) ||
1157 ((val & PANEL_UNLOCK_REGS) == PANEL_UNLOCK_REGS))
1158 locked = false;
1159
1160 if (I915_READ(lvds_reg) & LVDS_PIPEB_SELECT)
1161 panel_pipe = PIPE_B;
1162
1163 WARN(panel_pipe == pipe && locked,
1164 "panel assertion failure, pipe %c regs locked\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001165 pipe_name(pipe));
Jesse Barnesea0760c2011-01-04 15:09:32 -08001166}
1167
Jesse Barnesb840d907f2011-12-13 13:19:38 -08001168void assert_pipe(struct drm_i915_private *dev_priv,
1169 enum pipe pipe, bool state)
Jesse Barnesb24e7172011-01-04 15:09:30 -08001170{
1171 int reg;
1172 u32 val;
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001173 bool cur_state;
Paulo Zanoni702e7a52012-10-23 18:29:59 -02001174 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
1175 pipe);
Jesse Barnesb24e7172011-01-04 15:09:30 -08001176
Daniel Vetter8e636782012-01-22 01:36:48 +01001177 /* if we need the pipe A quirk it must be always on */
1178 if (pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE)
1179 state = true;
1180
Paulo Zanoni702e7a52012-10-23 18:29:59 -02001181 reg = PIPECONF(cpu_transcoder);
Jesse Barnesb24e7172011-01-04 15:09:30 -08001182 val = I915_READ(reg);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001183 cur_state = !!(val & PIPECONF_ENABLE);
1184 WARN(cur_state != state,
1185 "pipe %c assertion failure (expected %s, current %s)\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001186 pipe_name(pipe), state_string(state), state_string(cur_state));
Jesse Barnesb24e7172011-01-04 15:09:30 -08001187}
1188
Chris Wilson931872f2012-01-16 23:01:13 +00001189static void assert_plane(struct drm_i915_private *dev_priv,
1190 enum plane plane, bool state)
Jesse Barnesb24e7172011-01-04 15:09:30 -08001191{
1192 int reg;
1193 u32 val;
Chris Wilson931872f2012-01-16 23:01:13 +00001194 bool cur_state;
Jesse Barnesb24e7172011-01-04 15:09:30 -08001195
1196 reg = DSPCNTR(plane);
1197 val = I915_READ(reg);
Chris Wilson931872f2012-01-16 23:01:13 +00001198 cur_state = !!(val & DISPLAY_PLANE_ENABLE);
1199 WARN(cur_state != state,
1200 "plane %c assertion failure (expected %s, current %s)\n",
1201 plane_name(plane), state_string(state), state_string(cur_state));
Jesse Barnesb24e7172011-01-04 15:09:30 -08001202}
1203
Chris Wilson931872f2012-01-16 23:01:13 +00001204#define assert_plane_enabled(d, p) assert_plane(d, p, true)
1205#define assert_plane_disabled(d, p) assert_plane(d, p, false)
1206
Jesse Barnesb24e7172011-01-04 15:09:30 -08001207static void assert_planes_disabled(struct drm_i915_private *dev_priv,
1208 enum pipe pipe)
1209{
1210 int reg, i;
1211 u32 val;
1212 int cur_pipe;
1213
Jesse Barnes19ec1352011-02-02 12:28:02 -08001214 /* Planes are fixed to pipes on ILK+ */
Adam Jackson28c057942011-10-07 14:38:42 -04001215 if (HAS_PCH_SPLIT(dev_priv->dev)) {
1216 reg = DSPCNTR(pipe);
1217 val = I915_READ(reg);
1218 WARN((val & DISPLAY_PLANE_ENABLE),
1219 "plane %c assertion failure, should be disabled but not\n",
1220 plane_name(pipe));
Jesse Barnes19ec1352011-02-02 12:28:02 -08001221 return;
Adam Jackson28c057942011-10-07 14:38:42 -04001222 }
Jesse Barnes19ec1352011-02-02 12:28:02 -08001223
Jesse Barnesb24e7172011-01-04 15:09:30 -08001224 /* Need to check both planes against the pipe */
1225 for (i = 0; i < 2; i++) {
1226 reg = DSPCNTR(i);
1227 val = I915_READ(reg);
1228 cur_pipe = (val & DISPPLANE_SEL_PIPE_MASK) >>
1229 DISPPLANE_SEL_PIPE_SHIFT;
1230 WARN((val & DISPLAY_PLANE_ENABLE) && pipe == cur_pipe,
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001231 "plane %c assertion failure, should be off on pipe %c but is still active\n",
1232 plane_name(i), pipe_name(pipe));
Jesse Barnesb24e7172011-01-04 15:09:30 -08001233 }
1234}
1235
Jesse Barnes92f25842011-01-04 15:09:34 -08001236static void assert_pch_refclk_enabled(struct drm_i915_private *dev_priv)
1237{
1238 u32 val;
1239 bool enabled;
1240
Eugeni Dodonov9d82aa12012-05-09 15:37:17 -03001241 if (HAS_PCH_LPT(dev_priv->dev)) {
1242 DRM_DEBUG_DRIVER("LPT does not has PCH refclk, skipping check\n");
1243 return;
1244 }
1245
Jesse Barnes92f25842011-01-04 15:09:34 -08001246 val = I915_READ(PCH_DREF_CONTROL);
1247 enabled = !!(val & (DREF_SSC_SOURCE_MASK | DREF_NONSPREAD_SOURCE_MASK |
1248 DREF_SUPERSPREAD_SOURCE_MASK));
1249 WARN(!enabled, "PCH refclk assertion failure, should be active but is disabled\n");
1250}
1251
1252static void assert_transcoder_disabled(struct drm_i915_private *dev_priv,
1253 enum pipe pipe)
1254{
1255 int reg;
1256 u32 val;
1257 bool enabled;
1258
1259 reg = TRANSCONF(pipe);
1260 val = I915_READ(reg);
1261 enabled = !!(val & TRANS_ENABLE);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001262 WARN(enabled,
1263 "transcoder assertion failed, should be off on pipe %c but is still active\n",
1264 pipe_name(pipe));
Jesse Barnes92f25842011-01-04 15:09:34 -08001265}
1266
Keith Packard4e634382011-08-06 10:39:45 -07001267static bool dp_pipe_enabled(struct drm_i915_private *dev_priv,
1268 enum pipe pipe, u32 port_sel, u32 val)
Keith Packardf0575e92011-07-25 22:12:43 -07001269{
1270 if ((val & DP_PORT_EN) == 0)
1271 return false;
1272
1273 if (HAS_PCH_CPT(dev_priv->dev)) {
1274 u32 trans_dp_ctl_reg = TRANS_DP_CTL(pipe);
1275 u32 trans_dp_ctl = I915_READ(trans_dp_ctl_reg);
1276 if ((trans_dp_ctl & TRANS_DP_PORT_SEL_MASK) != port_sel)
1277 return false;
1278 } else {
1279 if ((val & DP_PIPE_MASK) != (pipe << 30))
1280 return false;
1281 }
1282 return true;
1283}
1284
Keith Packard1519b992011-08-06 10:35:34 -07001285static bool hdmi_pipe_enabled(struct drm_i915_private *dev_priv,
1286 enum pipe pipe, u32 val)
1287{
1288 if ((val & PORT_ENABLE) == 0)
1289 return false;
1290
1291 if (HAS_PCH_CPT(dev_priv->dev)) {
1292 if ((val & PORT_TRANS_SEL_MASK) != PORT_TRANS_SEL_CPT(pipe))
1293 return false;
1294 } else {
1295 if ((val & TRANSCODER_MASK) != TRANSCODER(pipe))
1296 return false;
1297 }
1298 return true;
1299}
1300
1301static bool lvds_pipe_enabled(struct drm_i915_private *dev_priv,
1302 enum pipe pipe, u32 val)
1303{
1304 if ((val & LVDS_PORT_EN) == 0)
1305 return false;
1306
1307 if (HAS_PCH_CPT(dev_priv->dev)) {
1308 if ((val & PORT_TRANS_SEL_MASK) != PORT_TRANS_SEL_CPT(pipe))
1309 return false;
1310 } else {
1311 if ((val & LVDS_PIPE_MASK) != LVDS_PIPE(pipe))
1312 return false;
1313 }
1314 return true;
1315}
1316
1317static bool adpa_pipe_enabled(struct drm_i915_private *dev_priv,
1318 enum pipe pipe, u32 val)
1319{
1320 if ((val & ADPA_DAC_ENABLE) == 0)
1321 return false;
1322 if (HAS_PCH_CPT(dev_priv->dev)) {
1323 if ((val & PORT_TRANS_SEL_MASK) != PORT_TRANS_SEL_CPT(pipe))
1324 return false;
1325 } else {
1326 if ((val & ADPA_PIPE_SELECT_MASK) != ADPA_PIPE_SELECT(pipe))
1327 return false;
1328 }
1329 return true;
1330}
1331
Jesse Barnes291906f2011-02-02 12:28:03 -08001332static void assert_pch_dp_disabled(struct drm_i915_private *dev_priv,
Keith Packardf0575e92011-07-25 22:12:43 -07001333 enum pipe pipe, int reg, u32 port_sel)
Jesse Barnes291906f2011-02-02 12:28:03 -08001334{
Jesse Barnes47a05ec2011-02-07 13:46:40 -08001335 u32 val = I915_READ(reg);
Keith Packard4e634382011-08-06 10:39:45 -07001336 WARN(dp_pipe_enabled(dev_priv, pipe, port_sel, val),
Jesse Barnes291906f2011-02-02 12:28:03 -08001337 "PCH DP (0x%08x) enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001338 reg, pipe_name(pipe));
Daniel Vetterde9a35a2012-06-05 11:03:40 +02001339
Daniel Vetter75c5da22012-09-10 21:58:29 +02001340 WARN(HAS_PCH_IBX(dev_priv->dev) && (val & DP_PORT_EN) == 0
1341 && (val & DP_PIPEB_SELECT),
Daniel Vetterde9a35a2012-06-05 11:03:40 +02001342 "IBX PCH dp port still using transcoder B\n");
Jesse Barnes291906f2011-02-02 12:28:03 -08001343}
1344
1345static void assert_pch_hdmi_disabled(struct drm_i915_private *dev_priv,
1346 enum pipe pipe, int reg)
1347{
Jesse Barnes47a05ec2011-02-07 13:46:40 -08001348 u32 val = I915_READ(reg);
Xu, Anhuab70ad582012-08-13 03:08:33 +00001349 WARN(hdmi_pipe_enabled(dev_priv, pipe, val),
Adam Jackson23c99e72011-10-07 14:38:43 -04001350 "PCH HDMI (0x%08x) enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001351 reg, pipe_name(pipe));
Daniel Vetterde9a35a2012-06-05 11:03:40 +02001352
Daniel Vetter75c5da22012-09-10 21:58:29 +02001353 WARN(HAS_PCH_IBX(dev_priv->dev) && (val & PORT_ENABLE) == 0
1354 && (val & SDVO_PIPE_B_SELECT),
Daniel Vetterde9a35a2012-06-05 11:03:40 +02001355 "IBX PCH hdmi port still using transcoder B\n");
Jesse Barnes291906f2011-02-02 12:28:03 -08001356}
1357
1358static void assert_pch_ports_disabled(struct drm_i915_private *dev_priv,
1359 enum pipe pipe)
1360{
1361 int reg;
1362 u32 val;
Jesse Barnes291906f2011-02-02 12:28:03 -08001363
Keith Packardf0575e92011-07-25 22:12:43 -07001364 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_B, TRANS_DP_PORT_SEL_B);
1365 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_C, TRANS_DP_PORT_SEL_C);
1366 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_D, TRANS_DP_PORT_SEL_D);
Jesse Barnes291906f2011-02-02 12:28:03 -08001367
1368 reg = PCH_ADPA;
1369 val = I915_READ(reg);
Xu, Anhuab70ad582012-08-13 03:08:33 +00001370 WARN(adpa_pipe_enabled(dev_priv, pipe, val),
Jesse Barnes291906f2011-02-02 12:28:03 -08001371 "PCH VGA enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001372 pipe_name(pipe));
Jesse Barnes291906f2011-02-02 12:28:03 -08001373
1374 reg = PCH_LVDS;
1375 val = I915_READ(reg);
Xu, Anhuab70ad582012-08-13 03:08:33 +00001376 WARN(lvds_pipe_enabled(dev_priv, pipe, val),
Jesse Barnes291906f2011-02-02 12:28:03 -08001377 "PCH LVDS enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001378 pipe_name(pipe));
Jesse Barnes291906f2011-02-02 12:28:03 -08001379
1380 assert_pch_hdmi_disabled(dev_priv, pipe, HDMIB);
1381 assert_pch_hdmi_disabled(dev_priv, pipe, HDMIC);
1382 assert_pch_hdmi_disabled(dev_priv, pipe, HDMID);
1383}
1384
Jesse Barnesb24e7172011-01-04 15:09:30 -08001385/**
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001386 * intel_enable_pll - enable a PLL
1387 * @dev_priv: i915 private structure
1388 * @pipe: pipe PLL to enable
1389 *
1390 * Enable @pipe's PLL so we can start pumping pixels from a plane. Check to
1391 * make sure the PLL reg is writable first though, since the panel write
1392 * protect mechanism may be enabled.
1393 *
1394 * Note! This is for pre-ILK only.
Thomas Richter7434a252012-07-18 19:22:30 +02001395 *
1396 * Unfortunately needed by dvo_ns2501 since the dvo depends on it running.
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001397 */
1398static void intel_enable_pll(struct drm_i915_private *dev_priv, enum pipe pipe)
1399{
1400 int reg;
1401 u32 val;
1402
1403 /* No really, not for ILK+ */
Jesse Barnesa0c4da22012-06-15 11:55:13 -07001404 BUG_ON(!IS_VALLEYVIEW(dev_priv->dev) && dev_priv->info->gen >= 5);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001405
1406 /* PLL is protected by panel, make sure we can write it */
1407 if (IS_MOBILE(dev_priv->dev) && !IS_I830(dev_priv->dev))
1408 assert_panel_unlocked(dev_priv, pipe);
1409
1410 reg = DPLL(pipe);
1411 val = I915_READ(reg);
1412 val |= DPLL_VCO_ENABLE;
1413
1414 /* We do this three times for luck */
1415 I915_WRITE(reg, val);
1416 POSTING_READ(reg);
1417 udelay(150); /* wait for warmup */
1418 I915_WRITE(reg, val);
1419 POSTING_READ(reg);
1420 udelay(150); /* wait for warmup */
1421 I915_WRITE(reg, val);
1422 POSTING_READ(reg);
1423 udelay(150); /* wait for warmup */
1424}
1425
1426/**
1427 * intel_disable_pll - disable a PLL
1428 * @dev_priv: i915 private structure
1429 * @pipe: pipe PLL to disable
1430 *
1431 * Disable the PLL for @pipe, making sure the pipe is off first.
1432 *
1433 * Note! This is for pre-ILK only.
1434 */
1435static void intel_disable_pll(struct drm_i915_private *dev_priv, enum pipe pipe)
1436{
1437 int reg;
1438 u32 val;
1439
1440 /* Don't disable pipe A or pipe A PLLs if needed */
1441 if (pipe == PIPE_A && (dev_priv->quirks & QUIRK_PIPEA_FORCE))
1442 return;
1443
1444 /* Make sure the pipe isn't still relying on us */
1445 assert_pipe_disabled(dev_priv, pipe);
1446
1447 reg = DPLL(pipe);
1448 val = I915_READ(reg);
1449 val &= ~DPLL_VCO_ENABLE;
1450 I915_WRITE(reg, val);
1451 POSTING_READ(reg);
1452}
1453
Eugeni Dodonova416ede2012-05-09 15:37:10 -03001454/* SBI access */
1455static void
1456intel_sbi_write(struct drm_i915_private *dev_priv, u16 reg, u32 value)
1457{
1458 unsigned long flags;
1459
1460 spin_lock_irqsave(&dev_priv->dpio_lock, flags);
Eugeni Dodonov39fb50f2012-06-08 16:43:19 -03001461 if (wait_for((I915_READ(SBI_CTL_STAT) & SBI_BUSY) == 0,
Eugeni Dodonova416ede2012-05-09 15:37:10 -03001462 100)) {
1463 DRM_ERROR("timeout waiting for SBI to become ready\n");
1464 goto out_unlock;
1465 }
1466
1467 I915_WRITE(SBI_ADDR,
1468 (reg << 16));
1469 I915_WRITE(SBI_DATA,
1470 value);
1471 I915_WRITE(SBI_CTL_STAT,
1472 SBI_BUSY |
1473 SBI_CTL_OP_CRWR);
1474
Eugeni Dodonov39fb50f2012-06-08 16:43:19 -03001475 if (wait_for((I915_READ(SBI_CTL_STAT) & (SBI_BUSY | SBI_RESPONSE_FAIL)) == 0,
Eugeni Dodonova416ede2012-05-09 15:37:10 -03001476 100)) {
1477 DRM_ERROR("timeout waiting for SBI to complete write transaction\n");
1478 goto out_unlock;
1479 }
1480
1481out_unlock:
1482 spin_unlock_irqrestore(&dev_priv->dpio_lock, flags);
1483}
1484
1485static u32
1486intel_sbi_read(struct drm_i915_private *dev_priv, u16 reg)
1487{
1488 unsigned long flags;
Eugeni Dodonov39fb50f2012-06-08 16:43:19 -03001489 u32 value = 0;
Eugeni Dodonova416ede2012-05-09 15:37:10 -03001490
1491 spin_lock_irqsave(&dev_priv->dpio_lock, flags);
Eugeni Dodonov39fb50f2012-06-08 16:43:19 -03001492 if (wait_for((I915_READ(SBI_CTL_STAT) & SBI_BUSY) == 0,
Eugeni Dodonova416ede2012-05-09 15:37:10 -03001493 100)) {
1494 DRM_ERROR("timeout waiting for SBI to become ready\n");
1495 goto out_unlock;
1496 }
1497
1498 I915_WRITE(SBI_ADDR,
1499 (reg << 16));
1500 I915_WRITE(SBI_CTL_STAT,
1501 SBI_BUSY |
1502 SBI_CTL_OP_CRRD);
1503
Eugeni Dodonov39fb50f2012-06-08 16:43:19 -03001504 if (wait_for((I915_READ(SBI_CTL_STAT) & (SBI_BUSY | SBI_RESPONSE_FAIL)) == 0,
Eugeni Dodonova416ede2012-05-09 15:37:10 -03001505 100)) {
1506 DRM_ERROR("timeout waiting for SBI to complete read transaction\n");
1507 goto out_unlock;
1508 }
1509
1510 value = I915_READ(SBI_DATA);
1511
1512out_unlock:
1513 spin_unlock_irqrestore(&dev_priv->dpio_lock, flags);
1514 return value;
1515}
1516
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001517/**
Paulo Zanonib6b4e182012-10-31 18:12:38 -02001518 * ironlake_enable_pch_pll - enable PCH PLL
Jesse Barnes92f25842011-01-04 15:09:34 -08001519 * @dev_priv: i915 private structure
1520 * @pipe: pipe PLL to enable
1521 *
1522 * The PCH PLL needs to be enabled before the PCH transcoder, since it
1523 * drives the transcoder clock.
1524 */
Paulo Zanonib6b4e182012-10-31 18:12:38 -02001525static void ironlake_enable_pch_pll(struct intel_crtc *intel_crtc)
Jesse Barnes92f25842011-01-04 15:09:34 -08001526{
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001527 struct drm_i915_private *dev_priv = intel_crtc->base.dev->dev_private;
Chris Wilson48da64a2012-05-13 20:16:12 +01001528 struct intel_pch_pll *pll;
Jesse Barnes92f25842011-01-04 15:09:34 -08001529 int reg;
1530 u32 val;
1531
Chris Wilson48da64a2012-05-13 20:16:12 +01001532 /* PCH PLLs only available on ILK, SNB and IVB */
Jesse Barnes92f25842011-01-04 15:09:34 -08001533 BUG_ON(dev_priv->info->gen < 5);
Chris Wilson48da64a2012-05-13 20:16:12 +01001534 pll = intel_crtc->pch_pll;
1535 if (pll == NULL)
1536 return;
1537
1538 if (WARN_ON(pll->refcount == 0))
1539 return;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001540
1541 DRM_DEBUG_KMS("enable PCH PLL %x (active %d, on? %d)for crtc %d\n",
1542 pll->pll_reg, pll->active, pll->on,
1543 intel_crtc->base.base.id);
Jesse Barnes92f25842011-01-04 15:09:34 -08001544
1545 /* PCH refclock must be enabled first */
1546 assert_pch_refclk_enabled(dev_priv);
1547
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001548 if (pll->active++ && pll->on) {
Chris Wilson92b27b02012-05-20 18:10:50 +01001549 assert_pch_pll_enabled(dev_priv, pll, NULL);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001550 return;
1551 }
1552
1553 DRM_DEBUG_KMS("enabling PCH PLL %x\n", pll->pll_reg);
1554
1555 reg = pll->pll_reg;
Jesse Barnes92f25842011-01-04 15:09:34 -08001556 val = I915_READ(reg);
1557 val |= DPLL_VCO_ENABLE;
1558 I915_WRITE(reg, val);
1559 POSTING_READ(reg);
1560 udelay(200);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001561
1562 pll->on = true;
Jesse Barnes92f25842011-01-04 15:09:34 -08001563}
1564
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001565static void intel_disable_pch_pll(struct intel_crtc *intel_crtc)
Jesse Barnes92f25842011-01-04 15:09:34 -08001566{
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001567 struct drm_i915_private *dev_priv = intel_crtc->base.dev->dev_private;
1568 struct intel_pch_pll *pll = intel_crtc->pch_pll;
Jesse Barnes92f25842011-01-04 15:09:34 -08001569 int reg;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001570 u32 val;
Jesse Barnes4c609cb2011-09-02 12:52:11 -07001571
Jesse Barnes92f25842011-01-04 15:09:34 -08001572 /* PCH only available on ILK+ */
1573 BUG_ON(dev_priv->info->gen < 5);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001574 if (pll == NULL)
1575 return;
1576
Chris Wilson48da64a2012-05-13 20:16:12 +01001577 if (WARN_ON(pll->refcount == 0))
1578 return;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001579
1580 DRM_DEBUG_KMS("disable PCH PLL %x (active %d, on? %d) for crtc %d\n",
1581 pll->pll_reg, pll->active, pll->on,
1582 intel_crtc->base.base.id);
1583
Chris Wilson48da64a2012-05-13 20:16:12 +01001584 if (WARN_ON(pll->active == 0)) {
Chris Wilson92b27b02012-05-20 18:10:50 +01001585 assert_pch_pll_disabled(dev_priv, pll, NULL);
Chris Wilson48da64a2012-05-13 20:16:12 +01001586 return;
1587 }
1588
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001589 if (--pll->active) {
Chris Wilson92b27b02012-05-20 18:10:50 +01001590 assert_pch_pll_enabled(dev_priv, pll, NULL);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001591 return;
1592 }
1593
1594 DRM_DEBUG_KMS("disabling PCH PLL %x\n", pll->pll_reg);
Jesse Barnes92f25842011-01-04 15:09:34 -08001595
1596 /* Make sure transcoder isn't still depending on us */
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001597 assert_transcoder_disabled(dev_priv, intel_crtc->pipe);
Jesse Barnes92f25842011-01-04 15:09:34 -08001598
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001599 reg = pll->pll_reg;
Jesse Barnes92f25842011-01-04 15:09:34 -08001600 val = I915_READ(reg);
1601 val &= ~DPLL_VCO_ENABLE;
1602 I915_WRITE(reg, val);
1603 POSTING_READ(reg);
1604 udelay(200);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001605
1606 pll->on = false;
Jesse Barnes92f25842011-01-04 15:09:34 -08001607}
1608
Paulo Zanonib8a4f402012-10-31 18:12:42 -02001609static void ironlake_enable_pch_transcoder(struct drm_i915_private *dev_priv,
1610 enum pipe pipe)
Jesse Barnes040484a2011-01-03 12:14:26 -08001611{
Daniel Vetter23670b322012-11-01 09:15:30 +01001612 struct drm_device *dev = dev_priv->dev;
Paulo Zanoni7c26e5c2012-02-14 17:07:09 -02001613 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
Daniel Vetter23670b322012-11-01 09:15:30 +01001614 uint32_t reg, val, pipeconf_val;
Jesse Barnes040484a2011-01-03 12:14:26 -08001615
1616 /* PCH only available on ILK+ */
1617 BUG_ON(dev_priv->info->gen < 5);
1618
1619 /* Make sure PCH DPLL is enabled */
Chris Wilson92b27b02012-05-20 18:10:50 +01001620 assert_pch_pll_enabled(dev_priv,
1621 to_intel_crtc(crtc)->pch_pll,
1622 to_intel_crtc(crtc));
Jesse Barnes040484a2011-01-03 12:14:26 -08001623
1624 /* FDI must be feeding us bits for PCH ports */
1625 assert_fdi_tx_enabled(dev_priv, pipe);
1626 assert_fdi_rx_enabled(dev_priv, pipe);
1627
Daniel Vetter23670b322012-11-01 09:15:30 +01001628 if (HAS_PCH_CPT(dev)) {
1629 /* Workaround: Set the timing override bit before enabling the
1630 * pch transcoder. */
1631 reg = TRANS_CHICKEN2(pipe);
1632 val = I915_READ(reg);
1633 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
1634 I915_WRITE(reg, val);
Eugeni Dodonov59c859d2012-05-09 15:37:19 -03001635 }
Daniel Vetter23670b322012-11-01 09:15:30 +01001636
Jesse Barnes040484a2011-01-03 12:14:26 -08001637 reg = TRANSCONF(pipe);
1638 val = I915_READ(reg);
Paulo Zanoni5f7f7262012-02-03 17:47:15 -02001639 pipeconf_val = I915_READ(PIPECONF(pipe));
Jesse Barnese9bcff52011-06-24 12:19:20 -07001640
1641 if (HAS_PCH_IBX(dev_priv->dev)) {
1642 /*
1643 * make the BPC in transcoder be consistent with
1644 * that in pipeconf reg.
1645 */
1646 val &= ~PIPE_BPC_MASK;
Paulo Zanoni5f7f7262012-02-03 17:47:15 -02001647 val |= pipeconf_val & PIPE_BPC_MASK;
Jesse Barnese9bcff52011-06-24 12:19:20 -07001648 }
Paulo Zanoni5f7f7262012-02-03 17:47:15 -02001649
1650 val &= ~TRANS_INTERLACE_MASK;
1651 if ((pipeconf_val & PIPECONF_INTERLACE_MASK) == PIPECONF_INTERLACED_ILK)
Paulo Zanoni7c26e5c2012-02-14 17:07:09 -02001652 if (HAS_PCH_IBX(dev_priv->dev) &&
1653 intel_pipe_has_type(crtc, INTEL_OUTPUT_SDVO))
1654 val |= TRANS_LEGACY_INTERLACED_ILK;
1655 else
1656 val |= TRANS_INTERLACED;
Paulo Zanoni5f7f7262012-02-03 17:47:15 -02001657 else
1658 val |= TRANS_PROGRESSIVE;
1659
Jesse Barnes040484a2011-01-03 12:14:26 -08001660 I915_WRITE(reg, val | TRANS_ENABLE);
1661 if (wait_for(I915_READ(reg) & TRANS_STATE_ENABLE, 100))
1662 DRM_ERROR("failed to enable transcoder %d\n", pipe);
1663}
1664
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001665static void lpt_enable_pch_transcoder(struct drm_i915_private *dev_priv,
Paulo Zanoni937bb612012-10-31 18:12:47 -02001666 enum transcoder cpu_transcoder)
Jesse Barnes040484a2011-01-03 12:14:26 -08001667{
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001668 u32 val, pipeconf_val;
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001669
1670 /* PCH only available on ILK+ */
1671 BUG_ON(dev_priv->info->gen < 5);
1672
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001673 /* FDI must be feeding us bits for PCH ports */
Daniel Vetter1a240d42012-11-29 22:18:51 +01001674 assert_fdi_tx_enabled(dev_priv, (enum pipe) cpu_transcoder);
Paulo Zanoni937bb612012-10-31 18:12:47 -02001675 assert_fdi_rx_enabled(dev_priv, TRANSCODER_A);
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001676
Paulo Zanoni223a6fd2012-10-31 18:12:52 -02001677 /* Workaround: set timing override bit. */
1678 val = I915_READ(_TRANSA_CHICKEN2);
Daniel Vetter23670b322012-11-01 09:15:30 +01001679 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
Paulo Zanoni223a6fd2012-10-31 18:12:52 -02001680 I915_WRITE(_TRANSA_CHICKEN2, val);
1681
Paulo Zanoni25f3ef12012-10-31 18:12:49 -02001682 val = TRANS_ENABLE;
Paulo Zanoni937bb612012-10-31 18:12:47 -02001683 pipeconf_val = I915_READ(PIPECONF(cpu_transcoder));
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001684
Paulo Zanoni9a76b1c2012-10-31 18:12:48 -02001685 if ((pipeconf_val & PIPECONF_INTERLACE_MASK_HSW) ==
1686 PIPECONF_INTERLACED_ILK)
Paulo Zanonia35f2672012-10-31 18:12:45 -02001687 val |= TRANS_INTERLACED;
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001688 else
1689 val |= TRANS_PROGRESSIVE;
1690
Paulo Zanoni25f3ef12012-10-31 18:12:49 -02001691 I915_WRITE(TRANSCONF(TRANSCODER_A), val);
Paulo Zanoni937bb612012-10-31 18:12:47 -02001692 if (wait_for(I915_READ(_TRANSACONF) & TRANS_STATE_ENABLE, 100))
1693 DRM_ERROR("Failed to enable PCH transcoder\n");
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001694}
1695
Paulo Zanonib8a4f402012-10-31 18:12:42 -02001696static void ironlake_disable_pch_transcoder(struct drm_i915_private *dev_priv,
1697 enum pipe pipe)
Jesse Barnes040484a2011-01-03 12:14:26 -08001698{
Daniel Vetter23670b322012-11-01 09:15:30 +01001699 struct drm_device *dev = dev_priv->dev;
1700 uint32_t reg, val;
Jesse Barnes040484a2011-01-03 12:14:26 -08001701
1702 /* FDI relies on the transcoder */
1703 assert_fdi_tx_disabled(dev_priv, pipe);
1704 assert_fdi_rx_disabled(dev_priv, pipe);
1705
Jesse Barnes291906f2011-02-02 12:28:03 -08001706 /* Ports must be off as well */
1707 assert_pch_ports_disabled(dev_priv, pipe);
1708
Jesse Barnes040484a2011-01-03 12:14:26 -08001709 reg = TRANSCONF(pipe);
1710 val = I915_READ(reg);
1711 val &= ~TRANS_ENABLE;
1712 I915_WRITE(reg, val);
1713 /* wait for PCH transcoder off, transcoder state */
1714 if (wait_for((I915_READ(reg) & TRANS_STATE_ENABLE) == 0, 50))
Jesse Barnes4c9c18c2011-10-13 09:46:32 -07001715 DRM_ERROR("failed to disable transcoder %d\n", pipe);
Daniel Vetter23670b322012-11-01 09:15:30 +01001716
1717 if (!HAS_PCH_IBX(dev)) {
1718 /* Workaround: Clear the timing override chicken bit again. */
1719 reg = TRANS_CHICKEN2(pipe);
1720 val = I915_READ(reg);
1721 val &= ~TRANS_CHICKEN2_TIMING_OVERRIDE;
1722 I915_WRITE(reg, val);
1723 }
Jesse Barnes040484a2011-01-03 12:14:26 -08001724}
1725
Paulo Zanoniab4d9662012-10-31 18:12:55 -02001726static void lpt_disable_pch_transcoder(struct drm_i915_private *dev_priv)
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001727{
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001728 u32 val;
1729
Paulo Zanoni8a52fd92012-10-31 18:12:51 -02001730 val = I915_READ(_TRANSACONF);
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001731 val &= ~TRANS_ENABLE;
Paulo Zanoni8a52fd92012-10-31 18:12:51 -02001732 I915_WRITE(_TRANSACONF, val);
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001733 /* wait for PCH transcoder off, transcoder state */
Paulo Zanoni8a52fd92012-10-31 18:12:51 -02001734 if (wait_for((I915_READ(_TRANSACONF) & TRANS_STATE_ENABLE) == 0, 50))
1735 DRM_ERROR("Failed to disable PCH transcoder\n");
Paulo Zanoni223a6fd2012-10-31 18:12:52 -02001736
1737 /* Workaround: clear timing override bit. */
1738 val = I915_READ(_TRANSA_CHICKEN2);
Daniel Vetter23670b322012-11-01 09:15:30 +01001739 val &= ~TRANS_CHICKEN2_TIMING_OVERRIDE;
Paulo Zanoni223a6fd2012-10-31 18:12:52 -02001740 I915_WRITE(_TRANSA_CHICKEN2, val);
Jesse Barnes92f25842011-01-04 15:09:34 -08001741}
1742
1743/**
Chris Wilson309cfea2011-01-28 13:54:53 +00001744 * intel_enable_pipe - enable a pipe, asserting requirements
Jesse Barnesb24e7172011-01-04 15:09:30 -08001745 * @dev_priv: i915 private structure
1746 * @pipe: pipe to enable
Jesse Barnes040484a2011-01-03 12:14:26 -08001747 * @pch_port: on ILK+, is this pipe driving a PCH port or not
Jesse Barnesb24e7172011-01-04 15:09:30 -08001748 *
1749 * Enable @pipe, making sure that various hardware specific requirements
1750 * are met, if applicable, e.g. PLL enabled, LVDS pairs enabled, etc.
1751 *
1752 * @pipe should be %PIPE_A or %PIPE_B.
1753 *
1754 * Will wait until the pipe is actually running (i.e. first vblank) before
1755 * returning.
1756 */
Jesse Barnes040484a2011-01-03 12:14:26 -08001757static void intel_enable_pipe(struct drm_i915_private *dev_priv, enum pipe pipe,
1758 bool pch_port)
Jesse Barnesb24e7172011-01-04 15:09:30 -08001759{
Paulo Zanoni702e7a52012-10-23 18:29:59 -02001760 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
1761 pipe);
Daniel Vetter1a240d42012-11-29 22:18:51 +01001762 enum pipe pch_transcoder;
Jesse Barnesb24e7172011-01-04 15:09:30 -08001763 int reg;
1764 u32 val;
1765
Paulo Zanonicc391bb2012-11-20 13:27:37 -02001766 if (IS_HASWELL(dev_priv->dev))
1767 pch_transcoder = TRANSCODER_A;
1768 else
1769 pch_transcoder = pipe;
1770
Jesse Barnesb24e7172011-01-04 15:09:30 -08001771 /*
1772 * A pipe without a PLL won't actually be able to drive bits from
1773 * a plane. On ILK+ the pipe PLLs are integrated, so we don't
1774 * need the check.
1775 */
1776 if (!HAS_PCH_SPLIT(dev_priv->dev))
1777 assert_pll_enabled(dev_priv, pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08001778 else {
1779 if (pch_port) {
1780 /* if driving the PCH, we need FDI enabled */
Paulo Zanonicc391bb2012-11-20 13:27:37 -02001781 assert_fdi_rx_pll_enabled(dev_priv, pch_transcoder);
Daniel Vetter1a240d42012-11-29 22:18:51 +01001782 assert_fdi_tx_pll_enabled(dev_priv,
1783 (enum pipe) cpu_transcoder);
Jesse Barnes040484a2011-01-03 12:14:26 -08001784 }
1785 /* FIXME: assert CPU port conditions for SNB+ */
1786 }
Jesse Barnesb24e7172011-01-04 15:09:30 -08001787
Paulo Zanoni702e7a52012-10-23 18:29:59 -02001788 reg = PIPECONF(cpu_transcoder);
Jesse Barnesb24e7172011-01-04 15:09:30 -08001789 val = I915_READ(reg);
Chris Wilson00d70b12011-03-17 07:18:29 +00001790 if (val & PIPECONF_ENABLE)
1791 return;
1792
1793 I915_WRITE(reg, val | PIPECONF_ENABLE);
Jesse Barnesb24e7172011-01-04 15:09:30 -08001794 intel_wait_for_vblank(dev_priv->dev, pipe);
1795}
1796
1797/**
Chris Wilson309cfea2011-01-28 13:54:53 +00001798 * intel_disable_pipe - disable a pipe, asserting requirements
Jesse Barnesb24e7172011-01-04 15:09:30 -08001799 * @dev_priv: i915 private structure
1800 * @pipe: pipe to disable
1801 *
1802 * Disable @pipe, making sure that various hardware specific requirements
1803 * are met, if applicable, e.g. plane disabled, panel fitter off, etc.
1804 *
1805 * @pipe should be %PIPE_A or %PIPE_B.
1806 *
1807 * Will wait until the pipe has shut down before returning.
1808 */
1809static void intel_disable_pipe(struct drm_i915_private *dev_priv,
1810 enum pipe pipe)
1811{
Paulo Zanoni702e7a52012-10-23 18:29:59 -02001812 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
1813 pipe);
Jesse Barnesb24e7172011-01-04 15:09:30 -08001814 int reg;
1815 u32 val;
1816
1817 /*
1818 * Make sure planes won't keep trying to pump pixels to us,
1819 * or we might hang the display.
1820 */
1821 assert_planes_disabled(dev_priv, pipe);
1822
1823 /* Don't disable pipe A or pipe A PLLs if needed */
1824 if (pipe == PIPE_A && (dev_priv->quirks & QUIRK_PIPEA_FORCE))
1825 return;
1826
Paulo Zanoni702e7a52012-10-23 18:29:59 -02001827 reg = PIPECONF(cpu_transcoder);
Jesse Barnesb24e7172011-01-04 15:09:30 -08001828 val = I915_READ(reg);
Chris Wilson00d70b12011-03-17 07:18:29 +00001829 if ((val & PIPECONF_ENABLE) == 0)
1830 return;
1831
1832 I915_WRITE(reg, val & ~PIPECONF_ENABLE);
Jesse Barnesb24e7172011-01-04 15:09:30 -08001833 intel_wait_for_pipe_off(dev_priv->dev, pipe);
1834}
1835
Keith Packardd74362c2011-07-28 14:47:14 -07001836/*
1837 * Plane regs are double buffered, going from enabled->disabled needs a
1838 * trigger in order to latch. The display address reg provides this.
1839 */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03001840void intel_flush_display_plane(struct drm_i915_private *dev_priv,
Keith Packardd74362c2011-07-28 14:47:14 -07001841 enum plane plane)
1842{
Damien Lespiau14f86142012-10-29 15:24:49 +00001843 if (dev_priv->info->gen >= 4)
1844 I915_WRITE(DSPSURF(plane), I915_READ(DSPSURF(plane)));
1845 else
1846 I915_WRITE(DSPADDR(plane), I915_READ(DSPADDR(plane)));
Keith Packardd74362c2011-07-28 14:47:14 -07001847}
1848
Jesse Barnesb24e7172011-01-04 15:09:30 -08001849/**
1850 * intel_enable_plane - enable a display plane on a given pipe
1851 * @dev_priv: i915 private structure
1852 * @plane: plane to enable
1853 * @pipe: pipe being fed
1854 *
1855 * Enable @plane on @pipe, making sure that @pipe is running first.
1856 */
1857static void intel_enable_plane(struct drm_i915_private *dev_priv,
1858 enum plane plane, enum pipe pipe)
1859{
1860 int reg;
1861 u32 val;
1862
1863 /* If the pipe isn't enabled, we can't pump pixels and may hang */
1864 assert_pipe_enabled(dev_priv, pipe);
1865
1866 reg = DSPCNTR(plane);
1867 val = I915_READ(reg);
Chris Wilson00d70b12011-03-17 07:18:29 +00001868 if (val & DISPLAY_PLANE_ENABLE)
1869 return;
1870
1871 I915_WRITE(reg, val | DISPLAY_PLANE_ENABLE);
Keith Packardd74362c2011-07-28 14:47:14 -07001872 intel_flush_display_plane(dev_priv, plane);
Jesse Barnesb24e7172011-01-04 15:09:30 -08001873 intel_wait_for_vblank(dev_priv->dev, pipe);
1874}
1875
Jesse Barnesb24e7172011-01-04 15:09:30 -08001876/**
1877 * intel_disable_plane - disable a display plane
1878 * @dev_priv: i915 private structure
1879 * @plane: plane to disable
1880 * @pipe: pipe consuming the data
1881 *
1882 * Disable @plane; should be an independent operation.
1883 */
1884static void intel_disable_plane(struct drm_i915_private *dev_priv,
1885 enum plane plane, enum pipe pipe)
1886{
1887 int reg;
1888 u32 val;
1889
1890 reg = DSPCNTR(plane);
1891 val = I915_READ(reg);
Chris Wilson00d70b12011-03-17 07:18:29 +00001892 if ((val & DISPLAY_PLANE_ENABLE) == 0)
1893 return;
1894
1895 I915_WRITE(reg, val & ~DISPLAY_PLANE_ENABLE);
Jesse Barnesb24e7172011-01-04 15:09:30 -08001896 intel_flush_display_plane(dev_priv, plane);
1897 intel_wait_for_vblank(dev_priv->dev, pipe);
1898}
1899
Chris Wilson127bd2a2010-07-23 23:32:05 +01001900int
Chris Wilson48b956c2010-09-14 12:50:34 +01001901intel_pin_and_fence_fb_obj(struct drm_device *dev,
Chris Wilson05394f32010-11-08 19:18:58 +00001902 struct drm_i915_gem_object *obj,
Chris Wilson919926a2010-11-12 13:42:53 +00001903 struct intel_ring_buffer *pipelined)
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001904{
Chris Wilsonce453d82011-02-21 14:43:56 +00001905 struct drm_i915_private *dev_priv = dev->dev_private;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001906 u32 alignment;
1907 int ret;
1908
Chris Wilson05394f32010-11-08 19:18:58 +00001909 switch (obj->tiling_mode) {
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001910 case I915_TILING_NONE:
Chris Wilson534843d2010-07-05 18:01:46 +01001911 if (IS_BROADWATER(dev) || IS_CRESTLINE(dev))
1912 alignment = 128 * 1024;
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001913 else if (INTEL_INFO(dev)->gen >= 4)
Chris Wilson534843d2010-07-05 18:01:46 +01001914 alignment = 4 * 1024;
1915 else
1916 alignment = 64 * 1024;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001917 break;
1918 case I915_TILING_X:
1919 /* pin() will align the object as required by fence */
1920 alignment = 0;
1921 break;
1922 case I915_TILING_Y:
1923 /* FIXME: Is this true? */
1924 DRM_ERROR("Y tiled not allowed for scan out buffers\n");
1925 return -EINVAL;
1926 default:
1927 BUG();
1928 }
1929
Chris Wilsonce453d82011-02-21 14:43:56 +00001930 dev_priv->mm.interruptible = false;
Chris Wilson2da3b9b2011-04-14 09:41:17 +01001931 ret = i915_gem_object_pin_to_display_plane(obj, alignment, pipelined);
Chris Wilson48b956c2010-09-14 12:50:34 +01001932 if (ret)
Chris Wilsonce453d82011-02-21 14:43:56 +00001933 goto err_interruptible;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001934
1935 /* Install a fence for tiled scan-out. Pre-i965 always needs a
1936 * fence, whereas 965+ only requires a fence if using
1937 * framebuffer compression. For simplicity, we always install
1938 * a fence as the cost is not that onerous.
1939 */
Chris Wilson06d98132012-04-17 15:31:24 +01001940 ret = i915_gem_object_get_fence(obj);
Chris Wilson9a5a53b2012-03-22 15:10:00 +00001941 if (ret)
1942 goto err_unpin;
Chris Wilson1690e1e2011-12-14 13:57:08 +01001943
Chris Wilson9a5a53b2012-03-22 15:10:00 +00001944 i915_gem_object_pin_fence(obj);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001945
Chris Wilsonce453d82011-02-21 14:43:56 +00001946 dev_priv->mm.interruptible = true;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001947 return 0;
Chris Wilson48b956c2010-09-14 12:50:34 +01001948
1949err_unpin:
1950 i915_gem_object_unpin(obj);
Chris Wilsonce453d82011-02-21 14:43:56 +00001951err_interruptible:
1952 dev_priv->mm.interruptible = true;
Chris Wilson48b956c2010-09-14 12:50:34 +01001953 return ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001954}
1955
Chris Wilson1690e1e2011-12-14 13:57:08 +01001956void intel_unpin_fb_obj(struct drm_i915_gem_object *obj)
1957{
1958 i915_gem_object_unpin_fence(obj);
1959 i915_gem_object_unpin(obj);
1960}
1961
Daniel Vetterc2c75132012-07-05 12:17:30 +02001962/* Computes the linear offset to the base tile and adjusts x, y. bytes per pixel
1963 * is assumed to be a power-of-two. */
Damien Lespiau5a35e992012-10-26 18:20:12 +01001964unsigned long intel_gen4_compute_offset_xtiled(int *x, int *y,
1965 unsigned int bpp,
1966 unsigned int pitch)
Daniel Vetterc2c75132012-07-05 12:17:30 +02001967{
1968 int tile_rows, tiles;
1969
1970 tile_rows = *y / 8;
1971 *y %= 8;
1972 tiles = *x / (512/bpp);
1973 *x %= 512/bpp;
1974
1975 return tile_rows * pitch * 8 + tiles * 4096;
1976}
1977
Jesse Barnes17638cd2011-06-24 12:19:23 -07001978static int i9xx_update_plane(struct drm_crtc *crtc, struct drm_framebuffer *fb,
1979 int x, int y)
Jesse Barnes81255562010-08-02 12:07:50 -07001980{
1981 struct drm_device *dev = crtc->dev;
1982 struct drm_i915_private *dev_priv = dev->dev_private;
1983 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1984 struct intel_framebuffer *intel_fb;
Chris Wilson05394f32010-11-08 19:18:58 +00001985 struct drm_i915_gem_object *obj;
Jesse Barnes81255562010-08-02 12:07:50 -07001986 int plane = intel_crtc->plane;
Daniel Vettere506a0c2012-07-05 12:17:29 +02001987 unsigned long linear_offset;
Jesse Barnes81255562010-08-02 12:07:50 -07001988 u32 dspcntr;
Chris Wilson5eddb702010-09-11 13:48:45 +01001989 u32 reg;
Jesse Barnes81255562010-08-02 12:07:50 -07001990
1991 switch (plane) {
1992 case 0:
1993 case 1:
1994 break;
1995 default:
1996 DRM_ERROR("Can't update plane %d in SAREA\n", plane);
1997 return -EINVAL;
1998 }
1999
2000 intel_fb = to_intel_framebuffer(fb);
2001 obj = intel_fb->obj;
Jesse Barnes81255562010-08-02 12:07:50 -07002002
Chris Wilson5eddb702010-09-11 13:48:45 +01002003 reg = DSPCNTR(plane);
2004 dspcntr = I915_READ(reg);
Jesse Barnes81255562010-08-02 12:07:50 -07002005 /* Mask out pixel format bits in case we change it */
2006 dspcntr &= ~DISPPLANE_PIXFORMAT_MASK;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002007 switch (fb->pixel_format) {
2008 case DRM_FORMAT_C8:
Jesse Barnes81255562010-08-02 12:07:50 -07002009 dspcntr |= DISPPLANE_8BPP;
2010 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002011 case DRM_FORMAT_XRGB1555:
2012 case DRM_FORMAT_ARGB1555:
2013 dspcntr |= DISPPLANE_BGRX555;
Jesse Barnes81255562010-08-02 12:07:50 -07002014 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002015 case DRM_FORMAT_RGB565:
2016 dspcntr |= DISPPLANE_BGRX565;
2017 break;
2018 case DRM_FORMAT_XRGB8888:
2019 case DRM_FORMAT_ARGB8888:
2020 dspcntr |= DISPPLANE_BGRX888;
2021 break;
2022 case DRM_FORMAT_XBGR8888:
2023 case DRM_FORMAT_ABGR8888:
2024 dspcntr |= DISPPLANE_RGBX888;
2025 break;
2026 case DRM_FORMAT_XRGB2101010:
2027 case DRM_FORMAT_ARGB2101010:
2028 dspcntr |= DISPPLANE_BGRX101010;
2029 break;
2030 case DRM_FORMAT_XBGR2101010:
2031 case DRM_FORMAT_ABGR2101010:
2032 dspcntr |= DISPPLANE_RGBX101010;
Jesse Barnes81255562010-08-02 12:07:50 -07002033 break;
2034 default:
Ville Syrjälä57779d02012-10-31 17:50:14 +02002035 DRM_ERROR("Unknown pixel format 0x%08x\n", fb->pixel_format);
Jesse Barnes81255562010-08-02 12:07:50 -07002036 return -EINVAL;
2037 }
Ville Syrjälä57779d02012-10-31 17:50:14 +02002038
Chris Wilsona6c45cf2010-09-17 00:32:17 +01002039 if (INTEL_INFO(dev)->gen >= 4) {
Chris Wilson05394f32010-11-08 19:18:58 +00002040 if (obj->tiling_mode != I915_TILING_NONE)
Jesse Barnes81255562010-08-02 12:07:50 -07002041 dspcntr |= DISPPLANE_TILED;
2042 else
2043 dspcntr &= ~DISPPLANE_TILED;
2044 }
2045
Chris Wilson5eddb702010-09-11 13:48:45 +01002046 I915_WRITE(reg, dspcntr);
Jesse Barnes81255562010-08-02 12:07:50 -07002047
Daniel Vettere506a0c2012-07-05 12:17:29 +02002048 linear_offset = y * fb->pitches[0] + x * (fb->bits_per_pixel / 8);
Jesse Barnes81255562010-08-02 12:07:50 -07002049
Daniel Vetterc2c75132012-07-05 12:17:30 +02002050 if (INTEL_INFO(dev)->gen >= 4) {
2051 intel_crtc->dspaddr_offset =
Damien Lespiau5a35e992012-10-26 18:20:12 +01002052 intel_gen4_compute_offset_xtiled(&x, &y,
2053 fb->bits_per_pixel / 8,
2054 fb->pitches[0]);
Daniel Vetterc2c75132012-07-05 12:17:30 +02002055 linear_offset -= intel_crtc->dspaddr_offset;
2056 } else {
Daniel Vettere506a0c2012-07-05 12:17:29 +02002057 intel_crtc->dspaddr_offset = linear_offset;
Daniel Vetterc2c75132012-07-05 12:17:30 +02002058 }
Daniel Vettere506a0c2012-07-05 12:17:29 +02002059
2060 DRM_DEBUG_KMS("Writing base %08X %08lX %d %d %d\n",
2061 obj->gtt_offset, linear_offset, x, y, fb->pitches[0]);
Ville Syrjälä01f2c772011-12-20 00:06:49 +02002062 I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]);
Chris Wilsona6c45cf2010-09-17 00:32:17 +01002063 if (INTEL_INFO(dev)->gen >= 4) {
Daniel Vetterc2c75132012-07-05 12:17:30 +02002064 I915_MODIFY_DISPBASE(DSPSURF(plane),
2065 obj->gtt_offset + intel_crtc->dspaddr_offset);
Chris Wilson5eddb702010-09-11 13:48:45 +01002066 I915_WRITE(DSPTILEOFF(plane), (y << 16) | x);
Daniel Vettere506a0c2012-07-05 12:17:29 +02002067 I915_WRITE(DSPLINOFF(plane), linear_offset);
Chris Wilson5eddb702010-09-11 13:48:45 +01002068 } else
Daniel Vettere506a0c2012-07-05 12:17:29 +02002069 I915_WRITE(DSPADDR(plane), obj->gtt_offset + linear_offset);
Chris Wilson5eddb702010-09-11 13:48:45 +01002070 POSTING_READ(reg);
Jesse Barnes81255562010-08-02 12:07:50 -07002071
Jesse Barnes17638cd2011-06-24 12:19:23 -07002072 return 0;
2073}
2074
2075static int ironlake_update_plane(struct drm_crtc *crtc,
2076 struct drm_framebuffer *fb, int x, int y)
2077{
2078 struct drm_device *dev = crtc->dev;
2079 struct drm_i915_private *dev_priv = dev->dev_private;
2080 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2081 struct intel_framebuffer *intel_fb;
2082 struct drm_i915_gem_object *obj;
2083 int plane = intel_crtc->plane;
Daniel Vettere506a0c2012-07-05 12:17:29 +02002084 unsigned long linear_offset;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002085 u32 dspcntr;
2086 u32 reg;
2087
2088 switch (plane) {
2089 case 0:
2090 case 1:
Jesse Barnes27f82272011-09-02 12:54:37 -07002091 case 2:
Jesse Barnes17638cd2011-06-24 12:19:23 -07002092 break;
2093 default:
2094 DRM_ERROR("Can't update plane %d in SAREA\n", plane);
2095 return -EINVAL;
2096 }
2097
2098 intel_fb = to_intel_framebuffer(fb);
2099 obj = intel_fb->obj;
2100
2101 reg = DSPCNTR(plane);
2102 dspcntr = I915_READ(reg);
2103 /* Mask out pixel format bits in case we change it */
2104 dspcntr &= ~DISPPLANE_PIXFORMAT_MASK;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002105 switch (fb->pixel_format) {
2106 case DRM_FORMAT_C8:
Jesse Barnes17638cd2011-06-24 12:19:23 -07002107 dspcntr |= DISPPLANE_8BPP;
2108 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002109 case DRM_FORMAT_RGB565:
2110 dspcntr |= DISPPLANE_BGRX565;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002111 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002112 case DRM_FORMAT_XRGB8888:
2113 case DRM_FORMAT_ARGB8888:
2114 dspcntr |= DISPPLANE_BGRX888;
2115 break;
2116 case DRM_FORMAT_XBGR8888:
2117 case DRM_FORMAT_ABGR8888:
2118 dspcntr |= DISPPLANE_RGBX888;
2119 break;
2120 case DRM_FORMAT_XRGB2101010:
2121 case DRM_FORMAT_ARGB2101010:
2122 dspcntr |= DISPPLANE_BGRX101010;
2123 break;
2124 case DRM_FORMAT_XBGR2101010:
2125 case DRM_FORMAT_ABGR2101010:
2126 dspcntr |= DISPPLANE_RGBX101010;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002127 break;
2128 default:
Ville Syrjälä57779d02012-10-31 17:50:14 +02002129 DRM_ERROR("Unknown pixel format 0x%08x\n", fb->pixel_format);
Jesse Barnes17638cd2011-06-24 12:19:23 -07002130 return -EINVAL;
2131 }
2132
2133 if (obj->tiling_mode != I915_TILING_NONE)
2134 dspcntr |= DISPPLANE_TILED;
2135 else
2136 dspcntr &= ~DISPPLANE_TILED;
2137
2138 /* must disable */
2139 dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE;
2140
2141 I915_WRITE(reg, dspcntr);
2142
Daniel Vettere506a0c2012-07-05 12:17:29 +02002143 linear_offset = y * fb->pitches[0] + x * (fb->bits_per_pixel / 8);
Daniel Vetterc2c75132012-07-05 12:17:30 +02002144 intel_crtc->dspaddr_offset =
Damien Lespiau5a35e992012-10-26 18:20:12 +01002145 intel_gen4_compute_offset_xtiled(&x, &y,
2146 fb->bits_per_pixel / 8,
2147 fb->pitches[0]);
Daniel Vetterc2c75132012-07-05 12:17:30 +02002148 linear_offset -= intel_crtc->dspaddr_offset;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002149
Daniel Vettere506a0c2012-07-05 12:17:29 +02002150 DRM_DEBUG_KMS("Writing base %08X %08lX %d %d %d\n",
2151 obj->gtt_offset, linear_offset, x, y, fb->pitches[0]);
Ville Syrjälä01f2c772011-12-20 00:06:49 +02002152 I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]);
Daniel Vetterc2c75132012-07-05 12:17:30 +02002153 I915_MODIFY_DISPBASE(DSPSURF(plane),
2154 obj->gtt_offset + intel_crtc->dspaddr_offset);
Damien Lespiaubc1c91e2012-10-29 12:14:21 +00002155 if (IS_HASWELL(dev)) {
2156 I915_WRITE(DSPOFFSET(plane), (y << 16) | x);
2157 } else {
2158 I915_WRITE(DSPTILEOFF(plane), (y << 16) | x);
2159 I915_WRITE(DSPLINOFF(plane), linear_offset);
2160 }
Jesse Barnes17638cd2011-06-24 12:19:23 -07002161 POSTING_READ(reg);
2162
2163 return 0;
2164}
2165
2166/* Assume fb object is pinned & idle & fenced and just update base pointers */
2167static int
2168intel_pipe_set_base_atomic(struct drm_crtc *crtc, struct drm_framebuffer *fb,
2169 int x, int y, enum mode_set_atomic state)
2170{
2171 struct drm_device *dev = crtc->dev;
2172 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002173
Chris Wilson6b8e6ed2012-04-17 15:08:19 +01002174 if (dev_priv->display.disable_fbc)
2175 dev_priv->display.disable_fbc(dev);
Daniel Vetter3dec0092010-08-20 21:40:52 +02002176 intel_increase_pllclock(crtc);
Jesse Barnes81255562010-08-02 12:07:50 -07002177
Chris Wilson6b8e6ed2012-04-17 15:08:19 +01002178 return dev_priv->display.update_plane(crtc, fb, x, y);
Jesse Barnes81255562010-08-02 12:07:50 -07002179}
2180
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002181static int
Chris Wilson14667a42012-04-03 17:58:35 +01002182intel_finish_fb(struct drm_framebuffer *old_fb)
2183{
2184 struct drm_i915_gem_object *obj = to_intel_framebuffer(old_fb)->obj;
2185 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
2186 bool was_interruptible = dev_priv->mm.interruptible;
2187 int ret;
2188
2189 wait_event(dev_priv->pending_flip_queue,
2190 atomic_read(&dev_priv->mm.wedged) ||
2191 atomic_read(&obj->pending_flip) == 0);
2192
2193 /* Big Hammer, we also need to ensure that any pending
2194 * MI_WAIT_FOR_EVENT inside a user batch buffer on the
2195 * current scanout is retired before unpinning the old
2196 * framebuffer.
2197 *
2198 * This should only fail upon a hung GPU, in which case we
2199 * can safely continue.
2200 */
2201 dev_priv->mm.interruptible = false;
2202 ret = i915_gem_object_finish_gpu(obj);
2203 dev_priv->mm.interruptible = was_interruptible;
2204
2205 return ret;
2206}
2207
Ville Syrjälä198598d2012-10-31 17:50:24 +02002208static void intel_crtc_update_sarea_pos(struct drm_crtc *crtc, int x, int y)
2209{
2210 struct drm_device *dev = crtc->dev;
2211 struct drm_i915_master_private *master_priv;
2212 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2213
2214 if (!dev->primary->master)
2215 return;
2216
2217 master_priv = dev->primary->master->driver_priv;
2218 if (!master_priv->sarea_priv)
2219 return;
2220
2221 switch (intel_crtc->pipe) {
2222 case 0:
2223 master_priv->sarea_priv->pipeA_x = x;
2224 master_priv->sarea_priv->pipeA_y = y;
2225 break;
2226 case 1:
2227 master_priv->sarea_priv->pipeB_x = x;
2228 master_priv->sarea_priv->pipeB_y = y;
2229 break;
2230 default:
2231 break;
2232 }
2233}
2234
Chris Wilson14667a42012-04-03 17:58:35 +01002235static int
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -05002236intel_pipe_set_base(struct drm_crtc *crtc, int x, int y,
Daniel Vetter94352cf2012-07-05 22:51:56 +02002237 struct drm_framebuffer *fb)
Jesse Barnes79e53942008-11-07 14:24:08 -08002238{
2239 struct drm_device *dev = crtc->dev;
Chris Wilson6b8e6ed2012-04-17 15:08:19 +01002240 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -08002241 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter94352cf2012-07-05 22:51:56 +02002242 struct drm_framebuffer *old_fb;
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002243 int ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08002244
2245 /* no fb bound */
Daniel Vetter94352cf2012-07-05 22:51:56 +02002246 if (!fb) {
Jesse Barnesa5071c22011-07-19 15:38:56 -07002247 DRM_ERROR("No FB bound\n");
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002248 return 0;
2249 }
2250
Eugeni Dodonov5826eca2012-05-09 15:37:12 -03002251 if(intel_crtc->plane > dev_priv->num_pipe) {
2252 DRM_ERROR("no plane for crtc: plane %d, num_pipes %d\n",
2253 intel_crtc->plane,
2254 dev_priv->num_pipe);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002255 return -EINVAL;
Jesse Barnes79e53942008-11-07 14:24:08 -08002256 }
2257
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002258 mutex_lock(&dev->struct_mutex);
Chris Wilson265db952010-09-20 15:41:01 +01002259 ret = intel_pin_and_fence_fb_obj(dev,
Daniel Vetter94352cf2012-07-05 22:51:56 +02002260 to_intel_framebuffer(fb)->obj,
Chris Wilson919926a2010-11-12 13:42:53 +00002261 NULL);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002262 if (ret != 0) {
2263 mutex_unlock(&dev->struct_mutex);
Jesse Barnesa5071c22011-07-19 15:38:56 -07002264 DRM_ERROR("pin & fence failed\n");
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002265 return ret;
2266 }
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -05002267
Daniel Vetter94352cf2012-07-05 22:51:56 +02002268 if (crtc->fb)
2269 intel_finish_fb(crtc->fb);
Chris Wilson265db952010-09-20 15:41:01 +01002270
Daniel Vetter94352cf2012-07-05 22:51:56 +02002271 ret = dev_priv->display.update_plane(crtc, fb, x, y);
Chris Wilson4e6cfef2010-08-08 13:20:19 +01002272 if (ret) {
Daniel Vetter94352cf2012-07-05 22:51:56 +02002273 intel_unpin_fb_obj(to_intel_framebuffer(fb)->obj);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002274 mutex_unlock(&dev->struct_mutex);
Jesse Barnesa5071c22011-07-19 15:38:56 -07002275 DRM_ERROR("failed to update base address\n");
Chris Wilson4e6cfef2010-08-08 13:20:19 +01002276 return ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08002277 }
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -05002278
Daniel Vetter94352cf2012-07-05 22:51:56 +02002279 old_fb = crtc->fb;
2280 crtc->fb = fb;
Daniel Vetter6c4c86f2012-09-10 21:58:30 +02002281 crtc->x = x;
2282 crtc->y = y;
Daniel Vetter94352cf2012-07-05 22:51:56 +02002283
Chris Wilsonb7f1de22010-12-14 16:09:31 +00002284 if (old_fb) {
2285 intel_wait_for_vblank(dev, intel_crtc->pipe);
Chris Wilson1690e1e2011-12-14 13:57:08 +01002286 intel_unpin_fb_obj(to_intel_framebuffer(old_fb)->obj);
Chris Wilsonb7f1de22010-12-14 16:09:31 +00002287 }
Jesse Barnes652c3932009-08-17 13:31:43 -07002288
Chris Wilson6b8e6ed2012-04-17 15:08:19 +01002289 intel_update_fbc(dev);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002290 mutex_unlock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -08002291
Ville Syrjälä198598d2012-10-31 17:50:24 +02002292 intel_crtc_update_sarea_pos(crtc, x, y);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002293
2294 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08002295}
2296
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08002297static void intel_fdi_normal_train(struct drm_crtc *crtc)
2298{
2299 struct drm_device *dev = crtc->dev;
2300 struct drm_i915_private *dev_priv = dev->dev_private;
2301 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2302 int pipe = intel_crtc->pipe;
2303 u32 reg, temp;
2304
2305 /* enable normal train */
2306 reg = FDI_TX_CTL(pipe);
2307 temp = I915_READ(reg);
Keith Packard61e499b2011-05-17 16:13:52 -07002308 if (IS_IVYBRIDGE(dev)) {
Jesse Barnes357555c2011-04-28 15:09:55 -07002309 temp &= ~FDI_LINK_TRAIN_NONE_IVB;
2310 temp |= FDI_LINK_TRAIN_NONE_IVB | FDI_TX_ENHANCE_FRAME_ENABLE;
Keith Packard61e499b2011-05-17 16:13:52 -07002311 } else {
2312 temp &= ~FDI_LINK_TRAIN_NONE;
2313 temp |= FDI_LINK_TRAIN_NONE | FDI_TX_ENHANCE_FRAME_ENABLE;
Jesse Barnes357555c2011-04-28 15:09:55 -07002314 }
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08002315 I915_WRITE(reg, temp);
2316
2317 reg = FDI_RX_CTL(pipe);
2318 temp = I915_READ(reg);
2319 if (HAS_PCH_CPT(dev)) {
2320 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2321 temp |= FDI_LINK_TRAIN_NORMAL_CPT;
2322 } else {
2323 temp &= ~FDI_LINK_TRAIN_NONE;
2324 temp |= FDI_LINK_TRAIN_NONE;
2325 }
2326 I915_WRITE(reg, temp | FDI_RX_ENHANCE_FRAME_ENABLE);
2327
2328 /* wait one idle pattern time */
2329 POSTING_READ(reg);
2330 udelay(1000);
Jesse Barnes357555c2011-04-28 15:09:55 -07002331
2332 /* IVB wants error correction enabled */
2333 if (IS_IVYBRIDGE(dev))
2334 I915_WRITE(reg, I915_READ(reg) | FDI_FS_ERRC_ENABLE |
2335 FDI_FE_ERRC_ENABLE);
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08002336}
2337
Jesse Barnes291427f2011-07-29 12:42:37 -07002338static void cpt_phase_pointer_enable(struct drm_device *dev, int pipe)
2339{
2340 struct drm_i915_private *dev_priv = dev->dev_private;
2341 u32 flags = I915_READ(SOUTH_CHICKEN1);
2342
2343 flags |= FDI_PHASE_SYNC_OVR(pipe);
2344 I915_WRITE(SOUTH_CHICKEN1, flags); /* once to unlock... */
2345 flags |= FDI_PHASE_SYNC_EN(pipe);
2346 I915_WRITE(SOUTH_CHICKEN1, flags); /* then again to enable */
2347 POSTING_READ(SOUTH_CHICKEN1);
2348}
2349
Daniel Vetter01a415f2012-10-27 15:58:40 +02002350static void ivb_modeset_global_resources(struct drm_device *dev)
2351{
2352 struct drm_i915_private *dev_priv = dev->dev_private;
2353 struct intel_crtc *pipe_B_crtc =
2354 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[PIPE_B]);
2355 struct intel_crtc *pipe_C_crtc =
2356 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[PIPE_C]);
2357 uint32_t temp;
2358
2359 /* When everything is off disable fdi C so that we could enable fdi B
2360 * with all lanes. XXX: This misses the case where a pipe is not using
2361 * any pch resources and so doesn't need any fdi lanes. */
2362 if (!pipe_B_crtc->base.enabled && !pipe_C_crtc->base.enabled) {
2363 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_B)) & FDI_RX_ENABLE);
2364 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_C)) & FDI_RX_ENABLE);
2365
2366 temp = I915_READ(SOUTH_CHICKEN1);
2367 temp &= ~FDI_BC_BIFURCATION_SELECT;
2368 DRM_DEBUG_KMS("disabling fdi C rx\n");
2369 I915_WRITE(SOUTH_CHICKEN1, temp);
2370 }
2371}
2372
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002373/* The FDI link training functions for ILK/Ibexpeak. */
2374static void ironlake_fdi_link_train(struct drm_crtc *crtc)
2375{
2376 struct drm_device *dev = crtc->dev;
2377 struct drm_i915_private *dev_priv = dev->dev_private;
2378 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2379 int pipe = intel_crtc->pipe;
Jesse Barnes0fc932b2011-01-04 15:09:37 -08002380 int plane = intel_crtc->plane;
Chris Wilson5eddb702010-09-11 13:48:45 +01002381 u32 reg, temp, tries;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002382
Jesse Barnes0fc932b2011-01-04 15:09:37 -08002383 /* FDI needs bits from pipe & plane first */
2384 assert_pipe_enabled(dev_priv, pipe);
2385 assert_plane_enabled(dev_priv, plane);
2386
Adam Jacksone1a44742010-06-25 15:32:14 -04002387 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
2388 for train result */
Chris Wilson5eddb702010-09-11 13:48:45 +01002389 reg = FDI_RX_IMR(pipe);
2390 temp = I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04002391 temp &= ~FDI_RX_SYMBOL_LOCK;
2392 temp &= ~FDI_RX_BIT_LOCK;
Chris Wilson5eddb702010-09-11 13:48:45 +01002393 I915_WRITE(reg, temp);
2394 I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04002395 udelay(150);
2396
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002397 /* enable CPU FDI TX and PCH FDI RX */
Chris Wilson5eddb702010-09-11 13:48:45 +01002398 reg = FDI_TX_CTL(pipe);
2399 temp = I915_READ(reg);
Adam Jackson77ffb592010-04-12 11:38:44 -04002400 temp &= ~(7 << 19);
2401 temp |= (intel_crtc->fdi_lanes - 1) << 19;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002402 temp &= ~FDI_LINK_TRAIN_NONE;
2403 temp |= FDI_LINK_TRAIN_PATTERN_1;
Chris Wilson5eddb702010-09-11 13:48:45 +01002404 I915_WRITE(reg, temp | FDI_TX_ENABLE);
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_1;
Chris Wilson5eddb702010-09-11 13:48:45 +01002410 I915_WRITE(reg, temp | FDI_RX_ENABLE);
2411
2412 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002413 udelay(150);
2414
Jesse Barnes5b2adf82010-10-07 16:01:15 -07002415 /* Ironlake workaround, enable clock pointer after FDI enable*/
Daniel Vetter8f5718a2012-10-31 22:52:28 +01002416 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR);
2417 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR |
2418 FDI_RX_PHASE_SYNC_POINTER_EN);
Jesse Barnes5b2adf82010-10-07 16:01:15 -07002419
Chris Wilson5eddb702010-09-11 13:48:45 +01002420 reg = FDI_RX_IIR(pipe);
Adam Jacksone1a44742010-06-25 15:32:14 -04002421 for (tries = 0; tries < 5; tries++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002422 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002423 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2424
2425 if ((temp & FDI_RX_BIT_LOCK)) {
2426 DRM_DEBUG_KMS("FDI train 1 done.\n");
Chris Wilson5eddb702010-09-11 13:48:45 +01002427 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002428 break;
2429 }
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002430 }
Adam Jacksone1a44742010-06-25 15:32:14 -04002431 if (tries == 5)
Chris Wilson5eddb702010-09-11 13:48:45 +01002432 DRM_ERROR("FDI train 1 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002433
2434 /* Train 2 */
Chris Wilson5eddb702010-09-11 13:48:45 +01002435 reg = FDI_TX_CTL(pipe);
2436 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002437 temp &= ~FDI_LINK_TRAIN_NONE;
2438 temp |= FDI_LINK_TRAIN_PATTERN_2;
Chris Wilson5eddb702010-09-11 13:48:45 +01002439 I915_WRITE(reg, temp);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002440
Chris Wilson5eddb702010-09-11 13:48:45 +01002441 reg = FDI_RX_CTL(pipe);
2442 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002443 temp &= ~FDI_LINK_TRAIN_NONE;
2444 temp |= FDI_LINK_TRAIN_PATTERN_2;
Chris Wilson5eddb702010-09-11 13:48:45 +01002445 I915_WRITE(reg, temp);
2446
2447 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002448 udelay(150);
2449
Chris Wilson5eddb702010-09-11 13:48:45 +01002450 reg = FDI_RX_IIR(pipe);
Adam Jacksone1a44742010-06-25 15:32:14 -04002451 for (tries = 0; tries < 5; tries++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002452 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002453 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2454
2455 if (temp & FDI_RX_SYMBOL_LOCK) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002456 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002457 DRM_DEBUG_KMS("FDI train 2 done.\n");
2458 break;
2459 }
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002460 }
Adam Jacksone1a44742010-06-25 15:32:14 -04002461 if (tries == 5)
Chris Wilson5eddb702010-09-11 13:48:45 +01002462 DRM_ERROR("FDI train 2 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002463
2464 DRM_DEBUG_KMS("FDI train done\n");
Jesse Barnes5c5313c2010-10-07 16:01:11 -07002465
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002466}
2467
Akshay Joshi0206e352011-08-16 15:34:10 -04002468static const int snb_b_fdi_train_param[] = {
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002469 FDI_LINK_TRAIN_400MV_0DB_SNB_B,
2470 FDI_LINK_TRAIN_400MV_6DB_SNB_B,
2471 FDI_LINK_TRAIN_600MV_3_5DB_SNB_B,
2472 FDI_LINK_TRAIN_800MV_0DB_SNB_B,
2473};
2474
2475/* The FDI link training functions for SNB/Cougarpoint. */
2476static void gen6_fdi_link_train(struct drm_crtc *crtc)
2477{
2478 struct drm_device *dev = crtc->dev;
2479 struct drm_i915_private *dev_priv = dev->dev_private;
2480 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2481 int pipe = intel_crtc->pipe;
Sean Paulfa37d392012-03-02 12:53:39 -05002482 u32 reg, temp, i, retry;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002483
Adam Jacksone1a44742010-06-25 15:32:14 -04002484 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
2485 for train result */
Chris Wilson5eddb702010-09-11 13:48:45 +01002486 reg = FDI_RX_IMR(pipe);
2487 temp = I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04002488 temp &= ~FDI_RX_SYMBOL_LOCK;
2489 temp &= ~FDI_RX_BIT_LOCK;
Chris Wilson5eddb702010-09-11 13:48:45 +01002490 I915_WRITE(reg, temp);
2491
2492 POSTING_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04002493 udelay(150);
2494
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002495 /* enable CPU FDI TX and PCH FDI RX */
Chris Wilson5eddb702010-09-11 13:48:45 +01002496 reg = FDI_TX_CTL(pipe);
2497 temp = I915_READ(reg);
Adam Jackson77ffb592010-04-12 11:38:44 -04002498 temp &= ~(7 << 19);
2499 temp |= (intel_crtc->fdi_lanes - 1) << 19;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002500 temp &= ~FDI_LINK_TRAIN_NONE;
2501 temp |= FDI_LINK_TRAIN_PATTERN_1;
2502 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2503 /* SNB-B */
2504 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
Chris Wilson5eddb702010-09-11 13:48:45 +01002505 I915_WRITE(reg, temp | FDI_TX_ENABLE);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002506
Daniel Vetterd74cf322012-10-26 10:58:13 +02002507 I915_WRITE(FDI_RX_MISC(pipe),
2508 FDI_RX_TP1_TO_TP2_48 | FDI_RX_FDI_DELAY_90);
2509
Chris Wilson5eddb702010-09-11 13:48:45 +01002510 reg = FDI_RX_CTL(pipe);
2511 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002512 if (HAS_PCH_CPT(dev)) {
2513 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2514 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
2515 } else {
2516 temp &= ~FDI_LINK_TRAIN_NONE;
2517 temp |= FDI_LINK_TRAIN_PATTERN_1;
2518 }
Chris Wilson5eddb702010-09-11 13:48:45 +01002519 I915_WRITE(reg, temp | FDI_RX_ENABLE);
2520
2521 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002522 udelay(150);
2523
Daniel Vetter8f5718a2012-10-31 22:52:28 +01002524 cpt_phase_pointer_enable(dev, pipe);
Jesse Barnes291427f2011-07-29 12:42:37 -07002525
Akshay Joshi0206e352011-08-16 15:34:10 -04002526 for (i = 0; i < 4; i++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002527 reg = FDI_TX_CTL(pipe);
2528 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002529 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2530 temp |= snb_b_fdi_train_param[i];
Chris Wilson5eddb702010-09-11 13:48:45 +01002531 I915_WRITE(reg, temp);
2532
2533 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002534 udelay(500);
2535
Sean Paulfa37d392012-03-02 12:53:39 -05002536 for (retry = 0; retry < 5; retry++) {
2537 reg = FDI_RX_IIR(pipe);
2538 temp = I915_READ(reg);
2539 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2540 if (temp & FDI_RX_BIT_LOCK) {
2541 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
2542 DRM_DEBUG_KMS("FDI train 1 done.\n");
2543 break;
2544 }
2545 udelay(50);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002546 }
Sean Paulfa37d392012-03-02 12:53:39 -05002547 if (retry < 5)
2548 break;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002549 }
2550 if (i == 4)
Chris Wilson5eddb702010-09-11 13:48:45 +01002551 DRM_ERROR("FDI train 1 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002552
2553 /* Train 2 */
Chris Wilson5eddb702010-09-11 13:48:45 +01002554 reg = FDI_TX_CTL(pipe);
2555 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002556 temp &= ~FDI_LINK_TRAIN_NONE;
2557 temp |= FDI_LINK_TRAIN_PATTERN_2;
2558 if (IS_GEN6(dev)) {
2559 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2560 /* SNB-B */
2561 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
2562 }
Chris Wilson5eddb702010-09-11 13:48:45 +01002563 I915_WRITE(reg, temp);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002564
Chris Wilson5eddb702010-09-11 13:48:45 +01002565 reg = FDI_RX_CTL(pipe);
2566 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002567 if (HAS_PCH_CPT(dev)) {
2568 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2569 temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
2570 } else {
2571 temp &= ~FDI_LINK_TRAIN_NONE;
2572 temp |= FDI_LINK_TRAIN_PATTERN_2;
2573 }
Chris Wilson5eddb702010-09-11 13:48:45 +01002574 I915_WRITE(reg, temp);
2575
2576 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002577 udelay(150);
2578
Akshay Joshi0206e352011-08-16 15:34:10 -04002579 for (i = 0; i < 4; i++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002580 reg = FDI_TX_CTL(pipe);
2581 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002582 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2583 temp |= snb_b_fdi_train_param[i];
Chris Wilson5eddb702010-09-11 13:48:45 +01002584 I915_WRITE(reg, temp);
2585
2586 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002587 udelay(500);
2588
Sean Paulfa37d392012-03-02 12:53:39 -05002589 for (retry = 0; retry < 5; retry++) {
2590 reg = FDI_RX_IIR(pipe);
2591 temp = I915_READ(reg);
2592 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2593 if (temp & FDI_RX_SYMBOL_LOCK) {
2594 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
2595 DRM_DEBUG_KMS("FDI train 2 done.\n");
2596 break;
2597 }
2598 udelay(50);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002599 }
Sean Paulfa37d392012-03-02 12:53:39 -05002600 if (retry < 5)
2601 break;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002602 }
2603 if (i == 4)
Chris Wilson5eddb702010-09-11 13:48:45 +01002604 DRM_ERROR("FDI train 2 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002605
2606 DRM_DEBUG_KMS("FDI train done.\n");
2607}
2608
Jesse Barnes357555c2011-04-28 15:09:55 -07002609/* Manual link training for Ivy Bridge A0 parts */
2610static void ivb_manual_fdi_link_train(struct drm_crtc *crtc)
2611{
2612 struct drm_device *dev = crtc->dev;
2613 struct drm_i915_private *dev_priv = dev->dev_private;
2614 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2615 int pipe = intel_crtc->pipe;
2616 u32 reg, temp, i;
2617
2618 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
2619 for train result */
2620 reg = FDI_RX_IMR(pipe);
2621 temp = I915_READ(reg);
2622 temp &= ~FDI_RX_SYMBOL_LOCK;
2623 temp &= ~FDI_RX_BIT_LOCK;
2624 I915_WRITE(reg, temp);
2625
2626 POSTING_READ(reg);
2627 udelay(150);
2628
Daniel Vetter01a415f2012-10-27 15:58:40 +02002629 DRM_DEBUG_KMS("FDI_RX_IIR before link train 0x%x\n",
2630 I915_READ(FDI_RX_IIR(pipe)));
2631
Jesse Barnes357555c2011-04-28 15:09:55 -07002632 /* enable CPU FDI TX and PCH FDI RX */
2633 reg = FDI_TX_CTL(pipe);
2634 temp = I915_READ(reg);
2635 temp &= ~(7 << 19);
2636 temp |= (intel_crtc->fdi_lanes - 1) << 19;
2637 temp &= ~(FDI_LINK_TRAIN_AUTO | FDI_LINK_TRAIN_NONE_IVB);
2638 temp |= FDI_LINK_TRAIN_PATTERN_1_IVB;
2639 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2640 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
Jesse Barnesc4f9c4c2011-10-10 14:28:52 -07002641 temp |= FDI_COMPOSITE_SYNC;
Jesse Barnes357555c2011-04-28 15:09:55 -07002642 I915_WRITE(reg, temp | FDI_TX_ENABLE);
2643
Daniel Vetterd74cf322012-10-26 10:58:13 +02002644 I915_WRITE(FDI_RX_MISC(pipe),
2645 FDI_RX_TP1_TO_TP2_48 | FDI_RX_FDI_DELAY_90);
2646
Jesse Barnes357555c2011-04-28 15:09:55 -07002647 reg = FDI_RX_CTL(pipe);
2648 temp = I915_READ(reg);
2649 temp &= ~FDI_LINK_TRAIN_AUTO;
2650 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2651 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
Jesse Barnesc4f9c4c2011-10-10 14:28:52 -07002652 temp |= FDI_COMPOSITE_SYNC;
Jesse Barnes357555c2011-04-28 15:09:55 -07002653 I915_WRITE(reg, temp | FDI_RX_ENABLE);
2654
2655 POSTING_READ(reg);
2656 udelay(150);
2657
Daniel Vetter8f5718a2012-10-31 22:52:28 +01002658 cpt_phase_pointer_enable(dev, pipe);
Jesse Barnes291427f2011-07-29 12:42:37 -07002659
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_BIT_LOCK ||
2675 (I915_READ(reg) & FDI_RX_BIT_LOCK)) {
2676 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
Daniel Vetter01a415f2012-10-27 15:58:40 +02002677 DRM_DEBUG_KMS("FDI train 1 done, level %i.\n", i);
Jesse Barnes357555c2011-04-28 15:09:55 -07002678 break;
2679 }
2680 }
2681 if (i == 4)
2682 DRM_ERROR("FDI train 1 fail!\n");
2683
2684 /* Train 2 */
2685 reg = FDI_TX_CTL(pipe);
2686 temp = I915_READ(reg);
2687 temp &= ~FDI_LINK_TRAIN_NONE_IVB;
2688 temp |= FDI_LINK_TRAIN_PATTERN_2_IVB;
2689 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2690 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
2691 I915_WRITE(reg, temp);
2692
2693 reg = FDI_RX_CTL(pipe);
2694 temp = I915_READ(reg);
2695 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2696 temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
2697 I915_WRITE(reg, temp);
2698
2699 POSTING_READ(reg);
2700 udelay(150);
2701
Akshay Joshi0206e352011-08-16 15:34:10 -04002702 for (i = 0; i < 4; i++) {
Jesse Barnes357555c2011-04-28 15:09:55 -07002703 reg = FDI_TX_CTL(pipe);
2704 temp = I915_READ(reg);
2705 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2706 temp |= snb_b_fdi_train_param[i];
2707 I915_WRITE(reg, temp);
2708
2709 POSTING_READ(reg);
2710 udelay(500);
2711
2712 reg = FDI_RX_IIR(pipe);
2713 temp = I915_READ(reg);
2714 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2715
2716 if (temp & FDI_RX_SYMBOL_LOCK) {
2717 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
Daniel Vetter01a415f2012-10-27 15:58:40 +02002718 DRM_DEBUG_KMS("FDI train 2 done, level %i.\n", i);
Jesse Barnes357555c2011-04-28 15:09:55 -07002719 break;
2720 }
2721 }
2722 if (i == 4)
2723 DRM_ERROR("FDI train 2 fail!\n");
2724
2725 DRM_DEBUG_KMS("FDI train done.\n");
2726}
2727
Daniel Vetter88cefb62012-08-12 19:27:14 +02002728static void ironlake_fdi_pll_enable(struct intel_crtc *intel_crtc)
Jesse Barnes0e23b992010-09-10 11:10:00 -07002729{
Daniel Vetter88cefb62012-08-12 19:27:14 +02002730 struct drm_device *dev = intel_crtc->base.dev;
Jesse Barnes0e23b992010-09-10 11:10:00 -07002731 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes0e23b992010-09-10 11:10:00 -07002732 int pipe = intel_crtc->pipe;
Chris Wilson5eddb702010-09-11 13:48:45 +01002733 u32 reg, temp;
Jesse Barnes0e23b992010-09-10 11:10:00 -07002734
Jesse Barnesc64e3112010-09-10 11:27:03 -07002735
Jesse Barnes0e23b992010-09-10 11:10:00 -07002736 /* enable PCH FDI RX PLL, wait warmup plus DMI latency */
Chris Wilson5eddb702010-09-11 13:48:45 +01002737 reg = FDI_RX_CTL(pipe);
2738 temp = I915_READ(reg);
2739 temp &= ~((0x7 << 19) | (0x7 << 16));
Jesse Barnes0e23b992010-09-10 11:10:00 -07002740 temp |= (intel_crtc->fdi_lanes - 1) << 19;
Chris Wilson5eddb702010-09-11 13:48:45 +01002741 temp |= (I915_READ(PIPECONF(pipe)) & PIPE_BPC_MASK) << 11;
2742 I915_WRITE(reg, temp | FDI_RX_PLL_ENABLE);
2743
2744 POSTING_READ(reg);
Jesse Barnes0e23b992010-09-10 11:10:00 -07002745 udelay(200);
2746
2747 /* Switch from Rawclk to PCDclk */
Chris Wilson5eddb702010-09-11 13:48:45 +01002748 temp = I915_READ(reg);
2749 I915_WRITE(reg, temp | FDI_PCDCLK);
2750
2751 POSTING_READ(reg);
Jesse Barnes0e23b992010-09-10 11:10:00 -07002752 udelay(200);
2753
Paulo Zanoni20749732012-11-23 15:30:38 -02002754 /* Enable CPU FDI TX PLL, always on for Ironlake */
2755 reg = FDI_TX_CTL(pipe);
2756 temp = I915_READ(reg);
2757 if ((temp & FDI_TX_PLL_ENABLE) == 0) {
2758 I915_WRITE(reg, temp | FDI_TX_PLL_ENABLE);
Chris Wilson5eddb702010-09-11 13:48:45 +01002759
Paulo Zanoni20749732012-11-23 15:30:38 -02002760 POSTING_READ(reg);
2761 udelay(100);
Jesse Barnes0e23b992010-09-10 11:10:00 -07002762 }
2763}
2764
Daniel Vetter88cefb62012-08-12 19:27:14 +02002765static void ironlake_fdi_pll_disable(struct intel_crtc *intel_crtc)
2766{
2767 struct drm_device *dev = intel_crtc->base.dev;
2768 struct drm_i915_private *dev_priv = dev->dev_private;
2769 int pipe = intel_crtc->pipe;
2770 u32 reg, temp;
2771
2772 /* Switch from PCDclk to Rawclk */
2773 reg = FDI_RX_CTL(pipe);
2774 temp = I915_READ(reg);
2775 I915_WRITE(reg, temp & ~FDI_PCDCLK);
2776
2777 /* Disable CPU FDI TX PLL */
2778 reg = FDI_TX_CTL(pipe);
2779 temp = I915_READ(reg);
2780 I915_WRITE(reg, temp & ~FDI_TX_PLL_ENABLE);
2781
2782 POSTING_READ(reg);
2783 udelay(100);
2784
2785 reg = FDI_RX_CTL(pipe);
2786 temp = I915_READ(reg);
2787 I915_WRITE(reg, temp & ~FDI_RX_PLL_ENABLE);
2788
2789 /* Wait for the clocks to turn off. */
2790 POSTING_READ(reg);
2791 udelay(100);
2792}
2793
Jesse Barnes291427f2011-07-29 12:42:37 -07002794static void cpt_phase_pointer_disable(struct drm_device *dev, int pipe)
2795{
2796 struct drm_i915_private *dev_priv = dev->dev_private;
2797 u32 flags = I915_READ(SOUTH_CHICKEN1);
2798
2799 flags &= ~(FDI_PHASE_SYNC_EN(pipe));
2800 I915_WRITE(SOUTH_CHICKEN1, flags); /* once to disable... */
2801 flags &= ~(FDI_PHASE_SYNC_OVR(pipe));
2802 I915_WRITE(SOUTH_CHICKEN1, flags); /* then again to lock */
2803 POSTING_READ(SOUTH_CHICKEN1);
2804}
Jesse Barnes0fc932b2011-01-04 15:09:37 -08002805static void ironlake_fdi_disable(struct drm_crtc *crtc)
2806{
2807 struct drm_device *dev = crtc->dev;
2808 struct drm_i915_private *dev_priv = dev->dev_private;
2809 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2810 int pipe = intel_crtc->pipe;
2811 u32 reg, temp;
2812
2813 /* disable CPU FDI tx and PCH FDI rx */
2814 reg = FDI_TX_CTL(pipe);
2815 temp = I915_READ(reg);
2816 I915_WRITE(reg, temp & ~FDI_TX_ENABLE);
2817 POSTING_READ(reg);
2818
2819 reg = FDI_RX_CTL(pipe);
2820 temp = I915_READ(reg);
2821 temp &= ~(0x7 << 16);
2822 temp |= (I915_READ(PIPECONF(pipe)) & PIPE_BPC_MASK) << 11;
2823 I915_WRITE(reg, temp & ~FDI_RX_ENABLE);
2824
2825 POSTING_READ(reg);
2826 udelay(100);
2827
2828 /* Ironlake workaround, disable clock pointer after downing FDI */
Jesse Barnes6f06ce12011-01-04 15:09:38 -08002829 if (HAS_PCH_IBX(dev)) {
2830 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR);
Jesse Barnes291427f2011-07-29 12:42:37 -07002831 } else if (HAS_PCH_CPT(dev)) {
2832 cpt_phase_pointer_disable(dev, pipe);
Jesse Barnes6f06ce12011-01-04 15:09:38 -08002833 }
Jesse Barnes0fc932b2011-01-04 15:09:37 -08002834
2835 /* still set train pattern 1 */
2836 reg = FDI_TX_CTL(pipe);
2837 temp = I915_READ(reg);
2838 temp &= ~FDI_LINK_TRAIN_NONE;
2839 temp |= FDI_LINK_TRAIN_PATTERN_1;
2840 I915_WRITE(reg, temp);
2841
2842 reg = FDI_RX_CTL(pipe);
2843 temp = I915_READ(reg);
2844 if (HAS_PCH_CPT(dev)) {
2845 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2846 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
2847 } else {
2848 temp &= ~FDI_LINK_TRAIN_NONE;
2849 temp |= FDI_LINK_TRAIN_PATTERN_1;
2850 }
2851 /* BPC in FDI rx is consistent with that in PIPECONF */
2852 temp &= ~(0x07 << 16);
2853 temp |= (I915_READ(PIPECONF(pipe)) & PIPE_BPC_MASK) << 11;
2854 I915_WRITE(reg, temp);
2855
2856 POSTING_READ(reg);
2857 udelay(100);
2858}
2859
Chris Wilson5bb61642012-09-27 21:25:58 +01002860static bool intel_crtc_has_pending_flip(struct drm_crtc *crtc)
2861{
2862 struct drm_device *dev = crtc->dev;
2863 struct drm_i915_private *dev_priv = dev->dev_private;
2864 unsigned long flags;
2865 bool pending;
2866
2867 if (atomic_read(&dev_priv->mm.wedged))
2868 return false;
2869
2870 spin_lock_irqsave(&dev->event_lock, flags);
2871 pending = to_intel_crtc(crtc)->unpin_work != NULL;
2872 spin_unlock_irqrestore(&dev->event_lock, flags);
2873
2874 return pending;
2875}
2876
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01002877static void intel_crtc_wait_for_pending_flips(struct drm_crtc *crtc)
2878{
Chris Wilson0f911282012-04-17 10:05:38 +01002879 struct drm_device *dev = crtc->dev;
Chris Wilson5bb61642012-09-27 21:25:58 +01002880 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01002881
2882 if (crtc->fb == NULL)
2883 return;
2884
Chris Wilson5bb61642012-09-27 21:25:58 +01002885 wait_event(dev_priv->pending_flip_queue,
2886 !intel_crtc_has_pending_flip(crtc));
2887
Chris Wilson0f911282012-04-17 10:05:38 +01002888 mutex_lock(&dev->struct_mutex);
2889 intel_finish_fb(crtc->fb);
2890 mutex_unlock(&dev->struct_mutex);
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01002891}
2892
Paulo Zanonifc316cb2012-10-25 10:37:43 -02002893static bool ironlake_crtc_driving_pch(struct drm_crtc *crtc)
Jesse Barnes040484a2011-01-03 12:14:26 -08002894{
2895 struct drm_device *dev = crtc->dev;
Paulo Zanoni228d3e32012-08-10 10:05:10 -03002896 struct intel_encoder *intel_encoder;
Jesse Barnes040484a2011-01-03 12:14:26 -08002897
2898 /*
2899 * If there's a non-PCH eDP on this crtc, it must be DP_A, and that
2900 * must be driven by its own crtc; no sharing is possible.
2901 */
Paulo Zanoni228d3e32012-08-10 10:05:10 -03002902 for_each_encoder_on_crtc(dev, crtc, intel_encoder) {
Paulo Zanoni228d3e32012-08-10 10:05:10 -03002903 switch (intel_encoder->type) {
Jesse Barnes040484a2011-01-03 12:14:26 -08002904 case INTEL_OUTPUT_EDP:
Paulo Zanoni228d3e32012-08-10 10:05:10 -03002905 if (!intel_encoder_is_pch_edp(&intel_encoder->base))
Jesse Barnes040484a2011-01-03 12:14:26 -08002906 return false;
2907 continue;
2908 }
2909 }
2910
2911 return true;
2912}
2913
Paulo Zanonifc316cb2012-10-25 10:37:43 -02002914static bool haswell_crtc_driving_pch(struct drm_crtc *crtc)
2915{
2916 return intel_pipe_has_type(crtc, INTEL_OUTPUT_ANALOG);
2917}
2918
Eugeni Dodonove615efe2012-05-09 15:37:26 -03002919/* Program iCLKIP clock to the desired frequency */
2920static void lpt_program_iclkip(struct drm_crtc *crtc)
2921{
2922 struct drm_device *dev = crtc->dev;
2923 struct drm_i915_private *dev_priv = dev->dev_private;
2924 u32 divsel, phaseinc, auxdiv, phasedir = 0;
2925 u32 temp;
2926
2927 /* It is necessary to ungate the pixclk gate prior to programming
2928 * the divisors, and gate it back when it is done.
2929 */
2930 I915_WRITE(PIXCLK_GATE, PIXCLK_GATE_GATE);
2931
2932 /* Disable SSCCTL */
2933 intel_sbi_write(dev_priv, SBI_SSCCTL6,
2934 intel_sbi_read(dev_priv, SBI_SSCCTL6) |
2935 SBI_SSCCTL_DISABLE);
2936
2937 /* 20MHz is a corner case which is out of range for the 7-bit divisor */
2938 if (crtc->mode.clock == 20000) {
2939 auxdiv = 1;
2940 divsel = 0x41;
2941 phaseinc = 0x20;
2942 } else {
2943 /* The iCLK virtual clock root frequency is in MHz,
2944 * but the crtc->mode.clock in in KHz. To get the divisors,
2945 * it is necessary to divide one by another, so we
2946 * convert the virtual clock precision to KHz here for higher
2947 * precision.
2948 */
2949 u32 iclk_virtual_root_freq = 172800 * 1000;
2950 u32 iclk_pi_range = 64;
2951 u32 desired_divisor, msb_divisor_value, pi_value;
2952
2953 desired_divisor = (iclk_virtual_root_freq / crtc->mode.clock);
2954 msb_divisor_value = desired_divisor / iclk_pi_range;
2955 pi_value = desired_divisor % iclk_pi_range;
2956
2957 auxdiv = 0;
2958 divsel = msb_divisor_value - 2;
2959 phaseinc = pi_value;
2960 }
2961
2962 /* This should not happen with any sane values */
2963 WARN_ON(SBI_SSCDIVINTPHASE_DIVSEL(divsel) &
2964 ~SBI_SSCDIVINTPHASE_DIVSEL_MASK);
2965 WARN_ON(SBI_SSCDIVINTPHASE_DIR(phasedir) &
2966 ~SBI_SSCDIVINTPHASE_INCVAL_MASK);
2967
2968 DRM_DEBUG_KMS("iCLKIP clock: found settings for %dKHz refresh rate: auxdiv=%x, divsel=%x, phasedir=%x, phaseinc=%x\n",
2969 crtc->mode.clock,
2970 auxdiv,
2971 divsel,
2972 phasedir,
2973 phaseinc);
2974
2975 /* Program SSCDIVINTPHASE6 */
2976 temp = intel_sbi_read(dev_priv, SBI_SSCDIVINTPHASE6);
2977 temp &= ~SBI_SSCDIVINTPHASE_DIVSEL_MASK;
2978 temp |= SBI_SSCDIVINTPHASE_DIVSEL(divsel);
2979 temp &= ~SBI_SSCDIVINTPHASE_INCVAL_MASK;
2980 temp |= SBI_SSCDIVINTPHASE_INCVAL(phaseinc);
2981 temp |= SBI_SSCDIVINTPHASE_DIR(phasedir);
2982 temp |= SBI_SSCDIVINTPHASE_PROPAGATE;
2983
2984 intel_sbi_write(dev_priv,
2985 SBI_SSCDIVINTPHASE6,
2986 temp);
2987
2988 /* Program SSCAUXDIV */
2989 temp = intel_sbi_read(dev_priv, SBI_SSCAUXDIV6);
2990 temp &= ~SBI_SSCAUXDIV_FINALDIV2SEL(1);
2991 temp |= SBI_SSCAUXDIV_FINALDIV2SEL(auxdiv);
2992 intel_sbi_write(dev_priv,
2993 SBI_SSCAUXDIV6,
2994 temp);
2995
2996
2997 /* Enable modulator and associated divider */
2998 temp = intel_sbi_read(dev_priv, SBI_SSCCTL6);
2999 temp &= ~SBI_SSCCTL_DISABLE;
3000 intel_sbi_write(dev_priv,
3001 SBI_SSCCTL6,
3002 temp);
3003
3004 /* Wait for initialization time */
3005 udelay(24);
3006
3007 I915_WRITE(PIXCLK_GATE, PIXCLK_GATE_UNGATE);
3008}
3009
Jesse Barnesf67a5592011-01-05 10:31:48 -08003010/*
3011 * Enable PCH resources required for PCH ports:
3012 * - PCH PLLs
3013 * - FDI training & RX/TX
3014 * - update transcoder timings
3015 * - DP transcoding bits
3016 * - transcoder
3017 */
3018static void ironlake_pch_enable(struct drm_crtc *crtc)
Jesse Barnes79e53942008-11-07 14:24:08 -08003019{
3020 struct drm_device *dev = crtc->dev;
Zhenyu Wang2c072452009-06-05 15:38:42 +08003021 struct drm_i915_private *dev_priv = dev->dev_private;
3022 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3023 int pipe = intel_crtc->pipe;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003024 u32 reg, temp;
Jesse Barnes6be4a602010-09-10 10:26:01 -07003025
Chris Wilsone7e164d2012-05-11 09:21:25 +01003026 assert_transcoder_disabled(dev_priv, pipe);
3027
Daniel Vettercd986ab2012-10-26 10:58:12 +02003028 /* Write the TU size bits before fdi link training, so that error
3029 * detection works. */
3030 I915_WRITE(FDI_RX_TUSIZE1(pipe),
3031 I915_READ(PIPE_DATA_M1(pipe)) & TU_SIZE_MASK);
3032
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003033 /* For PCH output, training FDI link */
Jesse Barnes674cf962011-04-28 14:27:04 -07003034 dev_priv->display.fdi_link_train(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003035
Daniel Vetter572deb32012-10-27 18:46:14 +02003036 /* XXX: pch pll's can be enabled any time before we enable the PCH
3037 * transcoder, and we actually should do this to not upset any PCH
3038 * transcoder that already use the clock when we share it.
3039 *
3040 * Note that enable_pch_pll tries to do the right thing, but get_pch_pll
3041 * unconditionally resets the pll - we need that to have the right LVDS
3042 * enable sequence. */
Paulo Zanonib6b4e182012-10-31 18:12:38 -02003043 ironlake_enable_pch_pll(intel_crtc);
Chris Wilson6f13b7b2012-05-13 09:54:09 +01003044
Paulo Zanoni303b81e2012-10-31 18:12:23 -02003045 if (HAS_PCH_CPT(dev)) {
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003046 u32 sel;
Jesse Barnes4b645f12011-10-12 09:51:31 -07003047
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003048 temp = I915_READ(PCH_DPLL_SEL);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003049 switch (pipe) {
3050 default:
3051 case 0:
3052 temp |= TRANSA_DPLL_ENABLE;
3053 sel = TRANSA_DPLLB_SEL;
3054 break;
3055 case 1:
3056 temp |= TRANSB_DPLL_ENABLE;
3057 sel = TRANSB_DPLLB_SEL;
3058 break;
3059 case 2:
3060 temp |= TRANSC_DPLL_ENABLE;
3061 sel = TRANSC_DPLLB_SEL;
3062 break;
Jesse Barnesd64311a2011-10-12 15:01:33 -07003063 }
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003064 if (intel_crtc->pch_pll->pll_reg == _PCH_DPLL_B)
3065 temp |= sel;
3066 else
3067 temp &= ~sel;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003068 I915_WRITE(PCH_DPLL_SEL, temp);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003069 }
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003070
Jesse Barnesd9b6cb52011-01-04 15:09:35 -08003071 /* set transcoder timing, panel must allow it */
3072 assert_panel_unlocked(dev_priv, pipe);
Chris Wilson5eddb702010-09-11 13:48:45 +01003073 I915_WRITE(TRANS_HTOTAL(pipe), I915_READ(HTOTAL(pipe)));
3074 I915_WRITE(TRANS_HBLANK(pipe), I915_READ(HBLANK(pipe)));
3075 I915_WRITE(TRANS_HSYNC(pipe), I915_READ(HSYNC(pipe)));
3076
3077 I915_WRITE(TRANS_VTOTAL(pipe), I915_READ(VTOTAL(pipe)));
3078 I915_WRITE(TRANS_VBLANK(pipe), I915_READ(VBLANK(pipe)));
3079 I915_WRITE(TRANS_VSYNC(pipe), I915_READ(VSYNC(pipe)));
Daniel Vetter0529a0d2012-01-28 14:49:24 +01003080 I915_WRITE(TRANS_VSYNCSHIFT(pipe), I915_READ(VSYNCSHIFT(pipe)));
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003081
Paulo Zanoni303b81e2012-10-31 18:12:23 -02003082 intel_fdi_normal_train(crtc);
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08003083
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003084 /* For PCH DP, enable TRANS_DP_CTL */
3085 if (HAS_PCH_CPT(dev) &&
Keith Packard417e8222011-11-01 19:54:11 -07003086 (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT) ||
3087 intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP))) {
Jesse Barnes9325c9f2011-06-24 12:19:21 -07003088 u32 bpc = (I915_READ(PIPECONF(pipe)) & PIPE_BPC_MASK) >> 5;
Chris Wilson5eddb702010-09-11 13:48:45 +01003089 reg = TRANS_DP_CTL(pipe);
3090 temp = I915_READ(reg);
3091 temp &= ~(TRANS_DP_PORT_SEL_MASK |
Eric Anholt220cad32010-11-18 09:32:58 +08003092 TRANS_DP_SYNC_MASK |
3093 TRANS_DP_BPC_MASK);
Chris Wilson5eddb702010-09-11 13:48:45 +01003094 temp |= (TRANS_DP_OUTPUT_ENABLE |
3095 TRANS_DP_ENH_FRAMING);
Jesse Barnes9325c9f2011-06-24 12:19:21 -07003096 temp |= bpc << 9; /* same format but at 11:9 */
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003097
3098 if (crtc->mode.flags & DRM_MODE_FLAG_PHSYNC)
Chris Wilson5eddb702010-09-11 13:48:45 +01003099 temp |= TRANS_DP_HSYNC_ACTIVE_HIGH;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003100 if (crtc->mode.flags & DRM_MODE_FLAG_PVSYNC)
Chris Wilson5eddb702010-09-11 13:48:45 +01003101 temp |= TRANS_DP_VSYNC_ACTIVE_HIGH;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003102
3103 switch (intel_trans_dp_port_sel(crtc)) {
3104 case PCH_DP_B:
Chris Wilson5eddb702010-09-11 13:48:45 +01003105 temp |= TRANS_DP_PORT_SEL_B;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003106 break;
3107 case PCH_DP_C:
Chris Wilson5eddb702010-09-11 13:48:45 +01003108 temp |= TRANS_DP_PORT_SEL_C;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003109 break;
3110 case PCH_DP_D:
Chris Wilson5eddb702010-09-11 13:48:45 +01003111 temp |= TRANS_DP_PORT_SEL_D;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003112 break;
3113 default:
Daniel Vettere95d41e2012-10-26 10:58:16 +02003114 BUG();
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003115 }
3116
Chris Wilson5eddb702010-09-11 13:48:45 +01003117 I915_WRITE(reg, temp);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003118 }
3119
Paulo Zanonib8a4f402012-10-31 18:12:42 -02003120 ironlake_enable_pch_transcoder(dev_priv, pipe);
Jesse Barnesf67a5592011-01-05 10:31:48 -08003121}
3122
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003123static void lpt_pch_enable(struct drm_crtc *crtc)
3124{
3125 struct drm_device *dev = crtc->dev;
3126 struct drm_i915_private *dev_priv = dev->dev_private;
3127 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Paulo Zanonidaed2db2012-10-31 18:12:41 -02003128 enum transcoder cpu_transcoder = intel_crtc->cpu_transcoder;
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003129
Paulo Zanonidaed2db2012-10-31 18:12:41 -02003130 assert_transcoder_disabled(dev_priv, TRANSCODER_A);
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003131
Paulo Zanoni8c52b5e2012-10-31 18:12:24 -02003132 lpt_program_iclkip(crtc);
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003133
Paulo Zanoni0540e482012-10-31 18:12:40 -02003134 /* Set transcoder timing. */
Paulo Zanonidaed2db2012-10-31 18:12:41 -02003135 I915_WRITE(_TRANS_HTOTAL_A, I915_READ(HTOTAL(cpu_transcoder)));
3136 I915_WRITE(_TRANS_HBLANK_A, I915_READ(HBLANK(cpu_transcoder)));
3137 I915_WRITE(_TRANS_HSYNC_A, I915_READ(HSYNC(cpu_transcoder)));
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003138
Paulo Zanonidaed2db2012-10-31 18:12:41 -02003139 I915_WRITE(_TRANS_VTOTAL_A, I915_READ(VTOTAL(cpu_transcoder)));
3140 I915_WRITE(_TRANS_VBLANK_A, I915_READ(VBLANK(cpu_transcoder)));
3141 I915_WRITE(_TRANS_VSYNC_A, I915_READ(VSYNC(cpu_transcoder)));
3142 I915_WRITE(_TRANS_VSYNCSHIFT_A, I915_READ(VSYNCSHIFT(cpu_transcoder)));
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003143
Paulo Zanoni937bb612012-10-31 18:12:47 -02003144 lpt_enable_pch_transcoder(dev_priv, cpu_transcoder);
Jesse Barnesf67a5592011-01-05 10:31:48 -08003145}
3146
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003147static void intel_put_pch_pll(struct intel_crtc *intel_crtc)
3148{
3149 struct intel_pch_pll *pll = intel_crtc->pch_pll;
3150
3151 if (pll == NULL)
3152 return;
3153
3154 if (pll->refcount == 0) {
3155 WARN(1, "bad PCH PLL refcount\n");
3156 return;
3157 }
3158
3159 --pll->refcount;
3160 intel_crtc->pch_pll = NULL;
3161}
3162
3163static struct intel_pch_pll *intel_get_pch_pll(struct intel_crtc *intel_crtc, u32 dpll, u32 fp)
3164{
3165 struct drm_i915_private *dev_priv = intel_crtc->base.dev->dev_private;
3166 struct intel_pch_pll *pll;
3167 int i;
3168
3169 pll = intel_crtc->pch_pll;
3170 if (pll) {
3171 DRM_DEBUG_KMS("CRTC:%d reusing existing PCH PLL %x\n",
3172 intel_crtc->base.base.id, pll->pll_reg);
3173 goto prepare;
3174 }
3175
Daniel Vetter98b6bd92012-05-20 20:00:25 +02003176 if (HAS_PCH_IBX(dev_priv->dev)) {
3177 /* Ironlake PCH has a fixed PLL->PCH pipe mapping. */
3178 i = intel_crtc->pipe;
3179 pll = &dev_priv->pch_plls[i];
3180
3181 DRM_DEBUG_KMS("CRTC:%d using pre-allocated PCH PLL %x\n",
3182 intel_crtc->base.base.id, pll->pll_reg);
3183
3184 goto found;
3185 }
3186
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003187 for (i = 0; i < dev_priv->num_pch_pll; i++) {
3188 pll = &dev_priv->pch_plls[i];
3189
3190 /* Only want to check enabled timings first */
3191 if (pll->refcount == 0)
3192 continue;
3193
3194 if (dpll == (I915_READ(pll->pll_reg) & 0x7fffffff) &&
3195 fp == I915_READ(pll->fp0_reg)) {
3196 DRM_DEBUG_KMS("CRTC:%d sharing existing PCH PLL %x (refcount %d, ative %d)\n",
3197 intel_crtc->base.base.id,
3198 pll->pll_reg, pll->refcount, pll->active);
3199
3200 goto found;
3201 }
3202 }
3203
3204 /* Ok no matching timings, maybe there's a free one? */
3205 for (i = 0; i < dev_priv->num_pch_pll; i++) {
3206 pll = &dev_priv->pch_plls[i];
3207 if (pll->refcount == 0) {
3208 DRM_DEBUG_KMS("CRTC:%d allocated PCH PLL %x\n",
3209 intel_crtc->base.base.id, pll->pll_reg);
3210 goto found;
3211 }
3212 }
3213
3214 return NULL;
3215
3216found:
3217 intel_crtc->pch_pll = pll;
3218 pll->refcount++;
3219 DRM_DEBUG_DRIVER("using pll %d for pipe %d\n", i, intel_crtc->pipe);
3220prepare: /* separate function? */
3221 DRM_DEBUG_DRIVER("switching PLL %x off\n", pll->pll_reg);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003222
Chris Wilsone04c7352012-05-02 20:43:56 +01003223 /* Wait for the clocks to stabilize before rewriting the regs */
3224 I915_WRITE(pll->pll_reg, dpll & ~DPLL_VCO_ENABLE);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003225 POSTING_READ(pll->pll_reg);
3226 udelay(150);
Chris Wilsone04c7352012-05-02 20:43:56 +01003227
3228 I915_WRITE(pll->fp0_reg, fp);
3229 I915_WRITE(pll->pll_reg, dpll & ~DPLL_VCO_ENABLE);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003230 pll->on = false;
3231 return pll;
3232}
3233
Jesse Barnesd4270e52011-10-11 10:43:02 -07003234void intel_cpt_verify_modeset(struct drm_device *dev, int pipe)
3235{
3236 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter23670b322012-11-01 09:15:30 +01003237 int dslreg = PIPEDSL(pipe);
Jesse Barnesd4270e52011-10-11 10:43:02 -07003238 u32 temp;
3239
3240 temp = I915_READ(dslreg);
3241 udelay(500);
3242 if (wait_for(I915_READ(dslreg) != temp, 5)) {
Jesse Barnesd4270e52011-10-11 10:43:02 -07003243 if (wait_for(I915_READ(dslreg) != temp, 5))
3244 DRM_ERROR("mode set failed: pipe %d stuck\n", pipe);
3245 }
3246}
3247
Jesse Barnesf67a5592011-01-05 10:31:48 -08003248static void ironlake_crtc_enable(struct drm_crtc *crtc)
3249{
3250 struct drm_device *dev = crtc->dev;
3251 struct drm_i915_private *dev_priv = dev->dev_private;
3252 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02003253 struct intel_encoder *encoder;
Jesse Barnesf67a5592011-01-05 10:31:48 -08003254 int pipe = intel_crtc->pipe;
3255 int plane = intel_crtc->plane;
3256 u32 temp;
3257 bool is_pch_port;
3258
Daniel Vetter08a48462012-07-02 11:43:47 +02003259 WARN_ON(!crtc->enabled);
3260
Jesse Barnesf67a5592011-01-05 10:31:48 -08003261 if (intel_crtc->active)
3262 return;
3263
3264 intel_crtc->active = true;
3265 intel_update_watermarks(dev);
3266
3267 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
3268 temp = I915_READ(PCH_LVDS);
3269 if ((temp & LVDS_PORT_EN) == 0)
3270 I915_WRITE(PCH_LVDS, temp | LVDS_PORT_EN);
3271 }
3272
Paulo Zanonifc316cb2012-10-25 10:37:43 -02003273 is_pch_port = ironlake_crtc_driving_pch(crtc);
Jesse Barnesf67a5592011-01-05 10:31:48 -08003274
Daniel Vetter46b6f812012-09-06 22:08:33 +02003275 if (is_pch_port) {
Daniel Vetterfff367c2012-10-27 15:50:28 +02003276 /* Note: FDI PLL enabling _must_ be done before we enable the
3277 * cpu pipes, hence this is separate from all the other fdi/pch
3278 * enabling. */
Daniel Vetter88cefb62012-08-12 19:27:14 +02003279 ironlake_fdi_pll_enable(intel_crtc);
Daniel Vetter46b6f812012-09-06 22:08:33 +02003280 } else {
3281 assert_fdi_tx_disabled(dev_priv, pipe);
3282 assert_fdi_rx_disabled(dev_priv, pipe);
3283 }
Jesse Barnesf67a5592011-01-05 10:31:48 -08003284
Daniel Vetterbf49ec82012-09-06 22:15:40 +02003285 for_each_encoder_on_crtc(dev, crtc, encoder)
3286 if (encoder->pre_enable)
3287 encoder->pre_enable(encoder);
Jesse Barnesf67a5592011-01-05 10:31:48 -08003288
3289 /* Enable panel fitting for LVDS */
3290 if (dev_priv->pch_pf_size &&
Jani Nikula547dc042012-11-02 11:24:03 +02003291 (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) ||
3292 intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP))) {
Jesse Barnesf67a5592011-01-05 10:31:48 -08003293 /* Force use of hard-coded filter coefficients
3294 * as some pre-programmed values are broken,
3295 * e.g. x201.
3296 */
Paulo Zanoni13888d72012-11-20 13:27:41 -02003297 if (IS_IVYBRIDGE(dev))
3298 I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3 |
3299 PF_PIPE_SEL_IVB(pipe));
3300 else
3301 I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08003302 I915_WRITE(PF_WIN_POS(pipe), dev_priv->pch_pf_pos);
3303 I915_WRITE(PF_WIN_SZ(pipe), dev_priv->pch_pf_size);
Jesse Barnesf67a5592011-01-05 10:31:48 -08003304 }
3305
Jesse Barnes9c54c0d2011-06-15 23:32:33 +02003306 /*
3307 * On ILK+ LUT must be loaded before the pipe is running but with
3308 * clocks enabled
3309 */
3310 intel_crtc_load_lut(crtc);
3311
Jesse Barnesf67a5592011-01-05 10:31:48 -08003312 intel_enable_pipe(dev_priv, pipe, is_pch_port);
3313 intel_enable_plane(dev_priv, plane, pipe);
3314
3315 if (is_pch_port)
3316 ironlake_pch_enable(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003317
Ben Widawskyd1ebd8162011-04-25 20:11:50 +01003318 mutex_lock(&dev->struct_mutex);
Chris Wilsonbed4a672010-09-11 10:47:47 +01003319 intel_update_fbc(dev);
Ben Widawskyd1ebd8162011-04-25 20:11:50 +01003320 mutex_unlock(&dev->struct_mutex);
3321
Chris Wilson6b383a72010-09-13 13:54:26 +01003322 intel_crtc_update_cursor(crtc, true);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02003323
Daniel Vetterfa5c73b2012-07-01 23:24:36 +02003324 for_each_encoder_on_crtc(dev, crtc, encoder)
3325 encoder->enable(encoder);
Daniel Vetter61b77dd2012-07-02 00:16:19 +02003326
3327 if (HAS_PCH_CPT(dev))
3328 intel_cpt_verify_modeset(dev, intel_crtc->pipe);
Daniel Vetter6ce94102012-10-04 19:20:03 +02003329
3330 /*
3331 * There seems to be a race in PCH platform hw (at least on some
3332 * outputs) where an enabled pipe still completes any pageflip right
3333 * away (as if the pipe is off) instead of waiting for vblank. As soon
3334 * as the first vblank happend, everything works as expected. Hence just
3335 * wait for one vblank before returning to avoid strange things
3336 * happening.
3337 */
3338 intel_wait_for_vblank(dev, intel_crtc->pipe);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003339}
3340
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003341static void haswell_crtc_enable(struct drm_crtc *crtc)
3342{
3343 struct drm_device *dev = crtc->dev;
3344 struct drm_i915_private *dev_priv = dev->dev_private;
3345 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3346 struct intel_encoder *encoder;
3347 int pipe = intel_crtc->pipe;
3348 int plane = intel_crtc->plane;
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003349 bool is_pch_port;
3350
3351 WARN_ON(!crtc->enabled);
3352
3353 if (intel_crtc->active)
3354 return;
3355
3356 intel_crtc->active = true;
3357 intel_update_watermarks(dev);
3358
Paulo Zanonifc316cb2012-10-25 10:37:43 -02003359 is_pch_port = haswell_crtc_driving_pch(crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003360
Paulo Zanoni83616632012-10-23 18:29:54 -02003361 if (is_pch_port)
Paulo Zanoni04945642012-11-01 21:00:59 -02003362 dev_priv->display.fdi_link_train(crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003363
3364 for_each_encoder_on_crtc(dev, crtc, encoder)
3365 if (encoder->pre_enable)
3366 encoder->pre_enable(encoder);
3367
Paulo Zanoni1f544382012-10-24 11:32:00 -02003368 intel_ddi_enable_pipe_clock(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003369
Paulo Zanoni1f544382012-10-24 11:32:00 -02003370 /* Enable panel fitting for eDP */
Jani Nikula547dc042012-11-02 11:24:03 +02003371 if (dev_priv->pch_pf_size &&
3372 intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP)) {
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003373 /* Force use of hard-coded filter coefficients
3374 * as some pre-programmed values are broken,
3375 * e.g. x201.
3376 */
Paulo Zanoni54075a72012-11-20 13:27:42 -02003377 I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3 |
3378 PF_PIPE_SEL_IVB(pipe));
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003379 I915_WRITE(PF_WIN_POS(pipe), dev_priv->pch_pf_pos);
3380 I915_WRITE(PF_WIN_SZ(pipe), dev_priv->pch_pf_size);
3381 }
3382
3383 /*
3384 * On ILK+ LUT must be loaded before the pipe is running but with
3385 * clocks enabled
3386 */
3387 intel_crtc_load_lut(crtc);
3388
Paulo Zanoni1f544382012-10-24 11:32:00 -02003389 intel_ddi_set_pipe_settings(crtc);
3390 intel_ddi_enable_pipe_func(crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003391
3392 intel_enable_pipe(dev_priv, pipe, is_pch_port);
3393 intel_enable_plane(dev_priv, plane, pipe);
3394
3395 if (is_pch_port)
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003396 lpt_pch_enable(crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003397
3398 mutex_lock(&dev->struct_mutex);
3399 intel_update_fbc(dev);
3400 mutex_unlock(&dev->struct_mutex);
3401
3402 intel_crtc_update_cursor(crtc, true);
3403
3404 for_each_encoder_on_crtc(dev, crtc, encoder)
3405 encoder->enable(encoder);
3406
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003407 /*
3408 * There seems to be a race in PCH platform hw (at least on some
3409 * outputs) where an enabled pipe still completes any pageflip right
3410 * away (as if the pipe is off) instead of waiting for vblank. As soon
3411 * as the first vblank happend, everything works as expected. Hence just
3412 * wait for one vblank before returning to avoid strange things
3413 * happening.
3414 */
3415 intel_wait_for_vblank(dev, intel_crtc->pipe);
3416}
3417
Jesse Barnes6be4a602010-09-10 10:26:01 -07003418static void ironlake_crtc_disable(struct drm_crtc *crtc)
3419{
3420 struct drm_device *dev = crtc->dev;
3421 struct drm_i915_private *dev_priv = dev->dev_private;
3422 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02003423 struct intel_encoder *encoder;
Jesse Barnes6be4a602010-09-10 10:26:01 -07003424 int pipe = intel_crtc->pipe;
3425 int plane = intel_crtc->plane;
Chris Wilson5eddb702010-09-11 13:48:45 +01003426 u32 reg, temp;
Jesse Barnes6be4a602010-09-10 10:26:01 -07003427
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02003428
Chris Wilsonf7abfe82010-09-13 14:19:16 +01003429 if (!intel_crtc->active)
3430 return;
3431
Daniel Vetterea9d7582012-07-10 10:42:52 +02003432 for_each_encoder_on_crtc(dev, crtc, encoder)
3433 encoder->disable(encoder);
3434
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01003435 intel_crtc_wait_for_pending_flips(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003436 drm_vblank_off(dev, pipe);
Chris Wilson6b383a72010-09-13 13:54:26 +01003437 intel_crtc_update_cursor(crtc, false);
Chris Wilson5eddb702010-09-11 13:48:45 +01003438
Jesse Barnesb24e7172011-01-04 15:09:30 -08003439 intel_disable_plane(dev_priv, plane, pipe);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003440
Chris Wilson973d04f2011-07-08 12:22:37 +01003441 if (dev_priv->cfb_plane == plane)
3442 intel_disable_fbc(dev);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003443
Jesse Barnesb24e7172011-01-04 15:09:30 -08003444 intel_disable_pipe(dev_priv, pipe);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003445
Jesse Barnes6be4a602010-09-10 10:26:01 -07003446 /* Disable PF */
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08003447 I915_WRITE(PF_CTL(pipe), 0);
3448 I915_WRITE(PF_WIN_SZ(pipe), 0);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003449
Daniel Vetterbf49ec82012-09-06 22:15:40 +02003450 for_each_encoder_on_crtc(dev, crtc, encoder)
3451 if (encoder->post_disable)
3452 encoder->post_disable(encoder);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003453
Chris Wilson5eddb702010-09-11 13:48:45 +01003454 ironlake_fdi_disable(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003455
Paulo Zanonib8a4f402012-10-31 18:12:42 -02003456 ironlake_disable_pch_transcoder(dev_priv, pipe);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003457
3458 if (HAS_PCH_CPT(dev)) {
3459 /* disable TRANS_DP_CTL */
Chris Wilson5eddb702010-09-11 13:48:45 +01003460 reg = TRANS_DP_CTL(pipe);
3461 temp = I915_READ(reg);
3462 temp &= ~(TRANS_DP_OUTPUT_ENABLE | TRANS_DP_PORT_SEL_MASK);
Eric Anholtcb3543c2011-02-02 12:08:07 -08003463 temp |= TRANS_DP_PORT_SEL_NONE;
Chris Wilson5eddb702010-09-11 13:48:45 +01003464 I915_WRITE(reg, temp);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003465
3466 /* disable DPLL_SEL */
3467 temp = I915_READ(PCH_DPLL_SEL);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08003468 switch (pipe) {
3469 case 0:
Jesse Barnesd64311a2011-10-12 15:01:33 -07003470 temp &= ~(TRANSA_DPLL_ENABLE | TRANSA_DPLLB_SEL);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08003471 break;
3472 case 1:
Jesse Barnes6be4a602010-09-10 10:26:01 -07003473 temp &= ~(TRANSB_DPLL_ENABLE | TRANSB_DPLLB_SEL);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08003474 break;
3475 case 2:
Jesse Barnes4b645f12011-10-12 09:51:31 -07003476 /* C shares PLL A or B */
Jesse Barnesd64311a2011-10-12 15:01:33 -07003477 temp &= ~(TRANSC_DPLL_ENABLE | TRANSC_DPLLB_SEL);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08003478 break;
3479 default:
3480 BUG(); /* wtf */
3481 }
Jesse Barnes6be4a602010-09-10 10:26:01 -07003482 I915_WRITE(PCH_DPLL_SEL, temp);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003483 }
3484
3485 /* disable PCH DPLL */
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003486 intel_disable_pch_pll(intel_crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003487
Daniel Vetter88cefb62012-08-12 19:27:14 +02003488 ironlake_fdi_pll_disable(intel_crtc);
Chris Wilson6b383a72010-09-13 13:54:26 +01003489
Chris Wilsonf7abfe82010-09-13 14:19:16 +01003490 intel_crtc->active = false;
Chris Wilson6b383a72010-09-13 13:54:26 +01003491 intel_update_watermarks(dev);
Ben Widawskyd1ebd8162011-04-25 20:11:50 +01003492
3493 mutex_lock(&dev->struct_mutex);
Chris Wilson6b383a72010-09-13 13:54:26 +01003494 intel_update_fbc(dev);
Ben Widawskyd1ebd8162011-04-25 20:11:50 +01003495 mutex_unlock(&dev->struct_mutex);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003496}
3497
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003498static void haswell_crtc_disable(struct drm_crtc *crtc)
3499{
3500 struct drm_device *dev = crtc->dev;
3501 struct drm_i915_private *dev_priv = dev->dev_private;
3502 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3503 struct intel_encoder *encoder;
3504 int pipe = intel_crtc->pipe;
3505 int plane = intel_crtc->plane;
Paulo Zanoniad80a812012-10-24 16:06:19 -02003506 enum transcoder cpu_transcoder = intel_crtc->cpu_transcoder;
Paulo Zanoni83616632012-10-23 18:29:54 -02003507 bool is_pch_port;
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003508
3509 if (!intel_crtc->active)
3510 return;
3511
Paulo Zanoni83616632012-10-23 18:29:54 -02003512 is_pch_port = haswell_crtc_driving_pch(crtc);
3513
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003514 for_each_encoder_on_crtc(dev, crtc, encoder)
3515 encoder->disable(encoder);
3516
3517 intel_crtc_wait_for_pending_flips(crtc);
3518 drm_vblank_off(dev, pipe);
3519 intel_crtc_update_cursor(crtc, false);
3520
3521 intel_disable_plane(dev_priv, plane, pipe);
3522
3523 if (dev_priv->cfb_plane == plane)
3524 intel_disable_fbc(dev);
3525
3526 intel_disable_pipe(dev_priv, pipe);
3527
Paulo Zanoniad80a812012-10-24 16:06:19 -02003528 intel_ddi_disable_transcoder_func(dev_priv, cpu_transcoder);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003529
3530 /* Disable PF */
3531 I915_WRITE(PF_CTL(pipe), 0);
3532 I915_WRITE(PF_WIN_SZ(pipe), 0);
3533
Paulo Zanoni1f544382012-10-24 11:32:00 -02003534 intel_ddi_disable_pipe_clock(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003535
3536 for_each_encoder_on_crtc(dev, crtc, encoder)
3537 if (encoder->post_disable)
3538 encoder->post_disable(encoder);
3539
Paulo Zanoni83616632012-10-23 18:29:54 -02003540 if (is_pch_port) {
Paulo Zanoniab4d9662012-10-31 18:12:55 -02003541 lpt_disable_pch_transcoder(dev_priv);
Paulo Zanoni1ad960f2012-11-01 21:05:05 -02003542 intel_ddi_fdi_disable(crtc);
Paulo Zanoni83616632012-10-23 18:29:54 -02003543 }
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003544
3545 intel_crtc->active = false;
3546 intel_update_watermarks(dev);
3547
3548 mutex_lock(&dev->struct_mutex);
3549 intel_update_fbc(dev);
3550 mutex_unlock(&dev->struct_mutex);
3551}
3552
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003553static void ironlake_crtc_off(struct drm_crtc *crtc)
3554{
3555 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3556 intel_put_pch_pll(intel_crtc);
3557}
3558
Paulo Zanoni6441ab52012-10-05 12:05:58 -03003559static void haswell_crtc_off(struct drm_crtc *crtc)
3560{
Paulo Zanonia5c961d2012-10-24 15:59:34 -02003561 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3562
3563 /* Stop saying we're using TRANSCODER_EDP because some other CRTC might
3564 * start using it. */
Daniel Vetter1a240d42012-11-29 22:18:51 +01003565 intel_crtc->cpu_transcoder = (enum transcoder) intel_crtc->pipe;
Paulo Zanonia5c961d2012-10-24 15:59:34 -02003566
Paulo Zanoni6441ab52012-10-05 12:05:58 -03003567 intel_ddi_put_crtc_pll(crtc);
3568}
3569
Daniel Vetter02e792f2009-09-15 22:57:34 +02003570static void intel_crtc_dpms_overlay(struct intel_crtc *intel_crtc, bool enable)
3571{
Daniel Vetter02e792f2009-09-15 22:57:34 +02003572 if (!enable && intel_crtc->overlay) {
Chris Wilson23f09ce2010-08-12 13:53:37 +01003573 struct drm_device *dev = intel_crtc->base.dev;
Chris Wilsonce453d82011-02-21 14:43:56 +00003574 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter03f77ea2009-09-15 22:57:37 +02003575
Chris Wilson23f09ce2010-08-12 13:53:37 +01003576 mutex_lock(&dev->struct_mutex);
Chris Wilsonce453d82011-02-21 14:43:56 +00003577 dev_priv->mm.interruptible = false;
3578 (void) intel_overlay_switch_off(intel_crtc->overlay);
3579 dev_priv->mm.interruptible = true;
Chris Wilson23f09ce2010-08-12 13:53:37 +01003580 mutex_unlock(&dev->struct_mutex);
Daniel Vetter02e792f2009-09-15 22:57:34 +02003581 }
Daniel Vetter02e792f2009-09-15 22:57:34 +02003582
Chris Wilson5dcdbcb2010-08-12 13:50:28 +01003583 /* Let userspace switch the overlay on again. In most cases userspace
3584 * has to recompute where to put it anyway.
3585 */
Daniel Vetter02e792f2009-09-15 22:57:34 +02003586}
3587
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003588static void i9xx_crtc_enable(struct drm_crtc *crtc)
Zhenyu Wang2c072452009-06-05 15:38:42 +08003589{
3590 struct drm_device *dev = crtc->dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08003591 struct drm_i915_private *dev_priv = dev->dev_private;
3592 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02003593 struct intel_encoder *encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08003594 int pipe = intel_crtc->pipe;
Jesse Barnes80824002009-09-10 15:28:06 -07003595 int plane = intel_crtc->plane;
Jesse Barnes79e53942008-11-07 14:24:08 -08003596
Daniel Vetter08a48462012-07-02 11:43:47 +02003597 WARN_ON(!crtc->enabled);
3598
Chris Wilsonf7abfe82010-09-13 14:19:16 +01003599 if (intel_crtc->active)
3600 return;
3601
3602 intel_crtc->active = true;
Chris Wilson6b383a72010-09-13 13:54:26 +01003603 intel_update_watermarks(dev);
3604
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08003605 intel_enable_pll(dev_priv, pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08003606 intel_enable_pipe(dev_priv, pipe, false);
Jesse Barnesb24e7172011-01-04 15:09:30 -08003607 intel_enable_plane(dev_priv, plane, pipe);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003608
3609 intel_crtc_load_lut(crtc);
Chris Wilsonbed4a672010-09-11 10:47:47 +01003610 intel_update_fbc(dev);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003611
3612 /* Give the overlay scaler a chance to enable if it's on this pipe */
3613 intel_crtc_dpms_overlay(intel_crtc, true);
Chris Wilson6b383a72010-09-13 13:54:26 +01003614 intel_crtc_update_cursor(crtc, true);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02003615
Daniel Vetterfa5c73b2012-07-01 23:24:36 +02003616 for_each_encoder_on_crtc(dev, crtc, encoder)
3617 encoder->enable(encoder);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003618}
3619
3620static void i9xx_crtc_disable(struct drm_crtc *crtc)
3621{
3622 struct drm_device *dev = crtc->dev;
3623 struct drm_i915_private *dev_priv = dev->dev_private;
3624 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02003625 struct intel_encoder *encoder;
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003626 int pipe = intel_crtc->pipe;
3627 int plane = intel_crtc->plane;
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003628
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02003629
Chris Wilsonf7abfe82010-09-13 14:19:16 +01003630 if (!intel_crtc->active)
3631 return;
3632
Daniel Vetterea9d7582012-07-10 10:42:52 +02003633 for_each_encoder_on_crtc(dev, crtc, encoder)
3634 encoder->disable(encoder);
3635
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003636 /* Give the overlay scaler a chance to disable if it's on this pipe */
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01003637 intel_crtc_wait_for_pending_flips(crtc);
3638 drm_vblank_off(dev, pipe);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003639 intel_crtc_dpms_overlay(intel_crtc, false);
Chris Wilson6b383a72010-09-13 13:54:26 +01003640 intel_crtc_update_cursor(crtc, false);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003641
Chris Wilson973d04f2011-07-08 12:22:37 +01003642 if (dev_priv->cfb_plane == plane)
3643 intel_disable_fbc(dev);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003644
Jesse Barnesb24e7172011-01-04 15:09:30 -08003645 intel_disable_plane(dev_priv, plane, pipe);
Jesse Barnesb24e7172011-01-04 15:09:30 -08003646 intel_disable_pipe(dev_priv, pipe);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08003647 intel_disable_pll(dev_priv, pipe);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003648
Chris Wilsonf7abfe82010-09-13 14:19:16 +01003649 intel_crtc->active = false;
Chris Wilson6b383a72010-09-13 13:54:26 +01003650 intel_update_fbc(dev);
3651 intel_update_watermarks(dev);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003652}
3653
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003654static void i9xx_crtc_off(struct drm_crtc *crtc)
3655{
3656}
3657
Daniel Vetter976f8a22012-07-08 22:34:21 +02003658static void intel_crtc_update_sarea(struct drm_crtc *crtc,
3659 bool enabled)
Zhenyu Wang2c072452009-06-05 15:38:42 +08003660{
3661 struct drm_device *dev = crtc->dev;
3662 struct drm_i915_master_private *master_priv;
3663 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3664 int pipe = intel_crtc->pipe;
Jesse Barnes79e53942008-11-07 14:24:08 -08003665
3666 if (!dev->primary->master)
3667 return;
3668
3669 master_priv = dev->primary->master->driver_priv;
3670 if (!master_priv->sarea_priv)
3671 return;
3672
Jesse Barnes79e53942008-11-07 14:24:08 -08003673 switch (pipe) {
3674 case 0:
3675 master_priv->sarea_priv->pipeA_w = enabled ? crtc->mode.hdisplay : 0;
3676 master_priv->sarea_priv->pipeA_h = enabled ? crtc->mode.vdisplay : 0;
3677 break;
3678 case 1:
3679 master_priv->sarea_priv->pipeB_w = enabled ? crtc->mode.hdisplay : 0;
3680 master_priv->sarea_priv->pipeB_h = enabled ? crtc->mode.vdisplay : 0;
3681 break;
3682 default:
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08003683 DRM_ERROR("Can't update pipe %c in SAREA\n", pipe_name(pipe));
Jesse Barnes79e53942008-11-07 14:24:08 -08003684 break;
3685 }
Jesse Barnes79e53942008-11-07 14:24:08 -08003686}
3687
Daniel Vetter976f8a22012-07-08 22:34:21 +02003688/**
3689 * Sets the power management mode of the pipe and plane.
3690 */
3691void intel_crtc_update_dpms(struct drm_crtc *crtc)
Chris Wilsoncdd59982010-09-08 16:30:16 +01003692{
Chris Wilsoncdd59982010-09-08 16:30:16 +01003693 struct drm_device *dev = crtc->dev;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003694 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter976f8a22012-07-08 22:34:21 +02003695 struct intel_encoder *intel_encoder;
3696 bool enable = false;
Chris Wilsoncdd59982010-09-08 16:30:16 +01003697
Daniel Vetter976f8a22012-07-08 22:34:21 +02003698 for_each_encoder_on_crtc(dev, crtc, intel_encoder)
3699 enable |= intel_encoder->connectors_active;
3700
3701 if (enable)
3702 dev_priv->display.crtc_enable(crtc);
3703 else
3704 dev_priv->display.crtc_disable(crtc);
3705
3706 intel_crtc_update_sarea(crtc, enable);
3707}
3708
3709static void intel_crtc_noop(struct drm_crtc *crtc)
3710{
3711}
3712
3713static void intel_crtc_disable(struct drm_crtc *crtc)
3714{
3715 struct drm_device *dev = crtc->dev;
3716 struct drm_connector *connector;
3717 struct drm_i915_private *dev_priv = dev->dev_private;
3718
3719 /* crtc should still be enabled when we disable it. */
3720 WARN_ON(!crtc->enabled);
3721
3722 dev_priv->display.crtc_disable(crtc);
3723 intel_crtc_update_sarea(crtc, false);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003724 dev_priv->display.off(crtc);
3725
Chris Wilson931872f2012-01-16 23:01:13 +00003726 assert_plane_disabled(dev->dev_private, to_intel_crtc(crtc)->plane);
3727 assert_pipe_disabled(dev->dev_private, to_intel_crtc(crtc)->pipe);
Chris Wilsoncdd59982010-09-08 16:30:16 +01003728
3729 if (crtc->fb) {
3730 mutex_lock(&dev->struct_mutex);
Chris Wilson1690e1e2011-12-14 13:57:08 +01003731 intel_unpin_fb_obj(to_intel_framebuffer(crtc->fb)->obj);
Chris Wilsoncdd59982010-09-08 16:30:16 +01003732 mutex_unlock(&dev->struct_mutex);
Daniel Vetter976f8a22012-07-08 22:34:21 +02003733 crtc->fb = NULL;
3734 }
3735
3736 /* Update computed state. */
3737 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
3738 if (!connector->encoder || !connector->encoder->crtc)
3739 continue;
3740
3741 if (connector->encoder->crtc != crtc)
3742 continue;
3743
3744 connector->dpms = DRM_MODE_DPMS_OFF;
3745 to_intel_encoder(connector->encoder)->connectors_active = false;
Chris Wilsoncdd59982010-09-08 16:30:16 +01003746 }
3747}
3748
Daniel Vettera261b242012-07-26 19:21:47 +02003749void intel_modeset_disable(struct drm_device *dev)
Jesse Barnes79e53942008-11-07 14:24:08 -08003750{
Daniel Vettera261b242012-07-26 19:21:47 +02003751 struct drm_crtc *crtc;
3752
3753 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
3754 if (crtc->enabled)
3755 intel_crtc_disable(crtc);
3756 }
Jesse Barnes79e53942008-11-07 14:24:08 -08003757}
3758
Daniel Vetter1f703852012-07-11 16:51:39 +02003759void intel_encoder_noop(struct drm_encoder *encoder)
Jesse Barnes79e53942008-11-07 14:24:08 -08003760{
Jesse Barnes79e53942008-11-07 14:24:08 -08003761}
3762
Chris Wilsonea5b2132010-08-04 13:50:23 +01003763void intel_encoder_destroy(struct drm_encoder *encoder)
3764{
Chris Wilson4ef69c72010-09-09 15:14:28 +01003765 struct intel_encoder *intel_encoder = to_intel_encoder(encoder);
Chris Wilsonea5b2132010-08-04 13:50:23 +01003766
Chris Wilsonea5b2132010-08-04 13:50:23 +01003767 drm_encoder_cleanup(encoder);
3768 kfree(intel_encoder);
3769}
3770
Daniel Vetter5ab432e2012-06-30 08:59:56 +02003771/* Simple dpms helper for encodres with just one connector, no cloning and only
3772 * one kind of off state. It clamps all !ON modes to fully OFF and changes the
3773 * state of the entire output pipe. */
3774void intel_encoder_dpms(struct intel_encoder *encoder, int mode)
3775{
3776 if (mode == DRM_MODE_DPMS_ON) {
3777 encoder->connectors_active = true;
3778
Daniel Vetterb2cabb02012-07-01 22:42:24 +02003779 intel_crtc_update_dpms(encoder->base.crtc);
Daniel Vetter5ab432e2012-06-30 08:59:56 +02003780 } else {
3781 encoder->connectors_active = false;
3782
Daniel Vetterb2cabb02012-07-01 22:42:24 +02003783 intel_crtc_update_dpms(encoder->base.crtc);
Daniel Vetter5ab432e2012-06-30 08:59:56 +02003784 }
3785}
3786
Daniel Vetter0a91ca22012-07-02 21:54:27 +02003787/* Cross check the actual hw state with our own modeset state tracking (and it's
3788 * internal consistency). */
Daniel Vetterb9805142012-08-31 17:37:33 +02003789static void intel_connector_check_state(struct intel_connector *connector)
Daniel Vetter0a91ca22012-07-02 21:54:27 +02003790{
3791 if (connector->get_hw_state(connector)) {
3792 struct intel_encoder *encoder = connector->encoder;
3793 struct drm_crtc *crtc;
3794 bool encoder_enabled;
3795 enum pipe pipe;
3796
3797 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
3798 connector->base.base.id,
3799 drm_get_connector_name(&connector->base));
3800
3801 WARN(connector->base.dpms == DRM_MODE_DPMS_OFF,
3802 "wrong connector dpms state\n");
3803 WARN(connector->base.encoder != &encoder->base,
3804 "active connector not linked to encoder\n");
3805 WARN(!encoder->connectors_active,
3806 "encoder->connectors_active not set\n");
3807
3808 encoder_enabled = encoder->get_hw_state(encoder, &pipe);
3809 WARN(!encoder_enabled, "encoder not enabled\n");
3810 if (WARN_ON(!encoder->base.crtc))
3811 return;
3812
3813 crtc = encoder->base.crtc;
3814
3815 WARN(!crtc->enabled, "crtc not enabled\n");
3816 WARN(!to_intel_crtc(crtc)->active, "crtc not active\n");
3817 WARN(pipe != to_intel_crtc(crtc)->pipe,
3818 "encoder active on the wrong pipe\n");
3819 }
3820}
3821
Daniel Vetter5ab432e2012-06-30 08:59:56 +02003822/* Even simpler default implementation, if there's really no special case to
3823 * consider. */
3824void intel_connector_dpms(struct drm_connector *connector, int mode)
3825{
3826 struct intel_encoder *encoder = intel_attached_encoder(connector);
3827
3828 /* All the simple cases only support two dpms states. */
3829 if (mode != DRM_MODE_DPMS_ON)
3830 mode = DRM_MODE_DPMS_OFF;
3831
3832 if (mode == connector->dpms)
3833 return;
3834
3835 connector->dpms = mode;
3836
3837 /* Only need to change hw state when actually enabled */
3838 if (encoder->base.crtc)
3839 intel_encoder_dpms(encoder, mode);
3840 else
Daniel Vetter8af6cf82012-07-10 09:50:11 +02003841 WARN_ON(encoder->connectors_active != false);
Daniel Vetter0a91ca22012-07-02 21:54:27 +02003842
Daniel Vetterb9805142012-08-31 17:37:33 +02003843 intel_modeset_check_state(connector->dev);
Daniel Vetter5ab432e2012-06-30 08:59:56 +02003844}
3845
Daniel Vetterf0947c32012-07-02 13:10:34 +02003846/* Simple connector->get_hw_state implementation for encoders that support only
3847 * one connector and no cloning and hence the encoder state determines the state
3848 * of the connector. */
3849bool intel_connector_get_hw_state(struct intel_connector *connector)
3850{
Daniel Vetter24929352012-07-02 20:28:59 +02003851 enum pipe pipe = 0;
Daniel Vetterf0947c32012-07-02 13:10:34 +02003852 struct intel_encoder *encoder = connector->encoder;
3853
3854 return encoder->get_hw_state(encoder, &pipe);
3855}
3856
Jesse Barnes79e53942008-11-07 14:24:08 -08003857static bool intel_crtc_mode_fixup(struct drm_crtc *crtc,
Daniel Vetter35313cd2012-07-20 10:30:45 +02003858 const struct drm_display_mode *mode,
Jesse Barnes79e53942008-11-07 14:24:08 -08003859 struct drm_display_mode *adjusted_mode)
3860{
Zhenyu Wang2c072452009-06-05 15:38:42 +08003861 struct drm_device *dev = crtc->dev;
Chris Wilson89749352010-09-12 18:25:19 +01003862
Eric Anholtbad720f2009-10-22 16:11:14 -07003863 if (HAS_PCH_SPLIT(dev)) {
Zhenyu Wang2c072452009-06-05 15:38:42 +08003864 /* FDI link clock is fixed at 2.7G */
Jesse Barnes2377b742010-07-07 14:06:43 -07003865 if (mode->clock * 3 > IRONLAKE_FDI_FREQ * 4)
3866 return false;
Zhenyu Wang2c072452009-06-05 15:38:42 +08003867 }
Chris Wilson89749352010-09-12 18:25:19 +01003868
Daniel Vetterf9bef082012-04-15 19:53:19 +02003869 /* All interlaced capable intel hw wants timings in frames. Note though
3870 * that intel_lvds_mode_fixup does some funny tricks with the crtc
3871 * timings, so we need to be careful not to clobber these.*/
3872 if (!(adjusted_mode->private_flags & INTEL_MODE_CRTC_TIMINGS_SET))
3873 drm_mode_set_crtcinfo(adjusted_mode, 0);
Chris Wilson89749352010-09-12 18:25:19 +01003874
Chris Wilson44f46b422012-06-21 13:19:59 +03003875 /* WaPruneModeWithIncorrectHsyncOffset: Cantiga+ cannot handle modes
3876 * with a hsync front porch of 0.
3877 */
3878 if ((INTEL_INFO(dev)->gen > 4 || IS_G4X(dev)) &&
3879 adjusted_mode->hsync_start == adjusted_mode->hdisplay)
3880 return false;
3881
Jesse Barnes79e53942008-11-07 14:24:08 -08003882 return true;
3883}
3884
Jesse Barnes25eb05fc2012-03-28 13:39:23 -07003885static int valleyview_get_display_clock_speed(struct drm_device *dev)
3886{
3887 return 400000; /* FIXME */
3888}
3889
Jesse Barnese70236a2009-09-21 10:42:27 -07003890static int i945_get_display_clock_speed(struct drm_device *dev)
Jesse Barnes79e53942008-11-07 14:24:08 -08003891{
Jesse Barnese70236a2009-09-21 10:42:27 -07003892 return 400000;
3893}
Jesse Barnes79e53942008-11-07 14:24:08 -08003894
Jesse Barnese70236a2009-09-21 10:42:27 -07003895static int i915_get_display_clock_speed(struct drm_device *dev)
3896{
3897 return 333000;
3898}
Jesse Barnes79e53942008-11-07 14:24:08 -08003899
Jesse Barnese70236a2009-09-21 10:42:27 -07003900static int i9xx_misc_get_display_clock_speed(struct drm_device *dev)
3901{
3902 return 200000;
3903}
Jesse Barnes79e53942008-11-07 14:24:08 -08003904
Jesse Barnese70236a2009-09-21 10:42:27 -07003905static int i915gm_get_display_clock_speed(struct drm_device *dev)
3906{
3907 u16 gcfgc = 0;
3908
3909 pci_read_config_word(dev->pdev, GCFGC, &gcfgc);
3910
3911 if (gcfgc & GC_LOW_FREQUENCY_ENABLE)
Jesse Barnes79e53942008-11-07 14:24:08 -08003912 return 133000;
Jesse Barnese70236a2009-09-21 10:42:27 -07003913 else {
3914 switch (gcfgc & GC_DISPLAY_CLOCK_MASK) {
3915 case GC_DISPLAY_CLOCK_333_MHZ:
3916 return 333000;
3917 default:
3918 case GC_DISPLAY_CLOCK_190_200_MHZ:
3919 return 190000;
3920 }
3921 }
3922}
Jesse Barnes79e53942008-11-07 14:24:08 -08003923
Jesse Barnese70236a2009-09-21 10:42:27 -07003924static int i865_get_display_clock_speed(struct drm_device *dev)
3925{
3926 return 266000;
3927}
3928
3929static int i855_get_display_clock_speed(struct drm_device *dev)
3930{
3931 u16 hpllcc = 0;
3932 /* Assume that the hardware is in the high speed state. This
3933 * should be the default.
3934 */
3935 switch (hpllcc & GC_CLOCK_CONTROL_MASK) {
3936 case GC_CLOCK_133_200:
3937 case GC_CLOCK_100_200:
3938 return 200000;
3939 case GC_CLOCK_166_250:
3940 return 250000;
3941 case GC_CLOCK_100_133:
3942 return 133000;
3943 }
3944
3945 /* Shouldn't happen */
3946 return 0;
3947}
3948
3949static int i830_get_display_clock_speed(struct drm_device *dev)
3950{
3951 return 133000;
Jesse Barnes79e53942008-11-07 14:24:08 -08003952}
3953
Zhenyu Wang2c072452009-06-05 15:38:42 +08003954static void
Daniel Vettere69d0bc2012-11-29 15:59:36 +01003955intel_reduce_ratio(uint32_t *num, uint32_t *den)
Zhenyu Wang2c072452009-06-05 15:38:42 +08003956{
3957 while (*num > 0xffffff || *den > 0xffffff) {
3958 *num >>= 1;
3959 *den >>= 1;
3960 }
3961}
3962
Daniel Vettere69d0bc2012-11-29 15:59:36 +01003963void
3964intel_link_compute_m_n(int bits_per_pixel, int nlanes,
3965 int pixel_clock, int link_clock,
3966 struct intel_link_m_n *m_n)
Zhenyu Wang2c072452009-06-05 15:38:42 +08003967{
Daniel Vettere69d0bc2012-11-29 15:59:36 +01003968 m_n->tu = 64;
Chris Wilson22ed1112010-12-04 01:01:29 +00003969 m_n->gmch_m = bits_per_pixel * pixel_clock;
3970 m_n->gmch_n = link_clock * nlanes * 8;
Daniel Vettere69d0bc2012-11-29 15:59:36 +01003971 intel_reduce_ratio(&m_n->gmch_m, &m_n->gmch_n);
Chris Wilson22ed1112010-12-04 01:01:29 +00003972 m_n->link_m = pixel_clock;
3973 m_n->link_n = link_clock;
Daniel Vettere69d0bc2012-11-29 15:59:36 +01003974 intel_reduce_ratio(&m_n->link_m, &m_n->link_n);
Zhenyu Wang2c072452009-06-05 15:38:42 +08003975}
3976
Chris Wilsona7615032011-01-12 17:04:08 +00003977static inline bool intel_panel_use_ssc(struct drm_i915_private *dev_priv)
3978{
Keith Packard72bbe582011-09-26 16:09:45 -07003979 if (i915_panel_use_ssc >= 0)
3980 return i915_panel_use_ssc != 0;
3981 return dev_priv->lvds_use_ssc
Keith Packard435793d2011-07-12 14:56:22 -07003982 && !(dev_priv->quirks & QUIRK_LVDS_SSC_DISABLE);
Chris Wilsona7615032011-01-12 17:04:08 +00003983}
3984
Jesse Barnes5a354202011-06-24 12:19:22 -07003985/**
3986 * intel_choose_pipe_bpp_dither - figure out what color depth the pipe should send
3987 * @crtc: CRTC structure
Adam Jackson3b5c78a2011-12-13 15:41:00 -08003988 * @mode: requested mode
Jesse Barnes5a354202011-06-24 12:19:22 -07003989 *
3990 * A pipe may be connected to one or more outputs. Based on the depth of the
3991 * attached framebuffer, choose a good color depth to use on the pipe.
3992 *
3993 * If possible, match the pipe depth to the fb depth. In some cases, this
3994 * isn't ideal, because the connected output supports a lesser or restricted
3995 * set of depths. Resolve that here:
3996 * LVDS typically supports only 6bpc, so clamp down in that case
3997 * HDMI supports only 8bpc or 12bpc, so clamp to 8bpc with dither for 10bpc
3998 * Displays may support a restricted set as well, check EDID and clamp as
3999 * appropriate.
Adam Jackson3b5c78a2011-12-13 15:41:00 -08004000 * DP may want to dither down to 6bpc to fit larger modes
Jesse Barnes5a354202011-06-24 12:19:22 -07004001 *
4002 * RETURNS:
4003 * Dithering requirement (i.e. false if display bpc and pipe bpc match,
4004 * true if they don't match).
4005 */
4006static bool intel_choose_pipe_bpp_dither(struct drm_crtc *crtc,
Daniel Vetter94352cf2012-07-05 22:51:56 +02004007 struct drm_framebuffer *fb,
Adam Jackson3b5c78a2011-12-13 15:41:00 -08004008 unsigned int *pipe_bpp,
4009 struct drm_display_mode *mode)
Jesse Barnes5a354202011-06-24 12:19:22 -07004010{
4011 struct drm_device *dev = crtc->dev;
4012 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes5a354202011-06-24 12:19:22 -07004013 struct drm_connector *connector;
Daniel Vetter6c2b7c122012-07-05 09:50:24 +02004014 struct intel_encoder *intel_encoder;
Jesse Barnes5a354202011-06-24 12:19:22 -07004015 unsigned int display_bpc = UINT_MAX, bpc;
4016
4017 /* Walk the encoders & connectors on this crtc, get min bpc */
Daniel Vetter6c2b7c122012-07-05 09:50:24 +02004018 for_each_encoder_on_crtc(dev, crtc, intel_encoder) {
Jesse Barnes5a354202011-06-24 12:19:22 -07004019
4020 if (intel_encoder->type == INTEL_OUTPUT_LVDS) {
4021 unsigned int lvds_bpc;
4022
4023 if ((I915_READ(PCH_LVDS) & LVDS_A3_POWER_MASK) ==
4024 LVDS_A3_POWER_UP)
4025 lvds_bpc = 8;
4026 else
4027 lvds_bpc = 6;
4028
4029 if (lvds_bpc < display_bpc) {
Adam Jackson82820492011-10-10 16:33:34 -04004030 DRM_DEBUG_KMS("clamping display bpc (was %d) to LVDS (%d)\n", display_bpc, lvds_bpc);
Jesse Barnes5a354202011-06-24 12:19:22 -07004031 display_bpc = lvds_bpc;
4032 }
4033 continue;
4034 }
4035
Jesse Barnes5a354202011-06-24 12:19:22 -07004036 /* Not one of the known troublemakers, check the EDID */
4037 list_for_each_entry(connector, &dev->mode_config.connector_list,
4038 head) {
Daniel Vetter6c2b7c122012-07-05 09:50:24 +02004039 if (connector->encoder != &intel_encoder->base)
Jesse Barnes5a354202011-06-24 12:19:22 -07004040 continue;
4041
Jesse Barnes62ac41a2011-07-28 12:55:14 -07004042 /* Don't use an invalid EDID bpc value */
4043 if (connector->display_info.bpc &&
4044 connector->display_info.bpc < display_bpc) {
Adam Jackson82820492011-10-10 16:33:34 -04004045 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 -07004046 display_bpc = connector->display_info.bpc;
4047 }
4048 }
4049
4050 /*
4051 * HDMI is either 12 or 8, so if the display lets 10bpc sneak
4052 * through, clamp it down. (Note: >12bpc will be caught below.)
4053 */
4054 if (intel_encoder->type == INTEL_OUTPUT_HDMI) {
4055 if (display_bpc > 8 && display_bpc < 12) {
Adam Jackson82820492011-10-10 16:33:34 -04004056 DRM_DEBUG_KMS("forcing bpc to 12 for HDMI\n");
Jesse Barnes5a354202011-06-24 12:19:22 -07004057 display_bpc = 12;
4058 } else {
Adam Jackson82820492011-10-10 16:33:34 -04004059 DRM_DEBUG_KMS("forcing bpc to 8 for HDMI\n");
Jesse Barnes5a354202011-06-24 12:19:22 -07004060 display_bpc = 8;
4061 }
4062 }
4063 }
4064
Adam Jackson3b5c78a2011-12-13 15:41:00 -08004065 if (mode->private_flags & INTEL_MODE_DP_FORCE_6BPC) {
4066 DRM_DEBUG_KMS("Dithering DP to 6bpc\n");
4067 display_bpc = 6;
4068 }
4069
Jesse Barnes5a354202011-06-24 12:19:22 -07004070 /*
4071 * We could just drive the pipe at the highest bpc all the time and
4072 * enable dithering as needed, but that costs bandwidth. So choose
4073 * the minimum value that expresses the full color range of the fb but
4074 * also stays within the max display bpc discovered above.
4075 */
4076
Daniel Vetter94352cf2012-07-05 22:51:56 +02004077 switch (fb->depth) {
Jesse Barnes5a354202011-06-24 12:19:22 -07004078 case 8:
4079 bpc = 8; /* since we go through a colormap */
4080 break;
4081 case 15:
4082 case 16:
4083 bpc = 6; /* min is 18bpp */
4084 break;
4085 case 24:
Keith Packard578393c2011-09-05 11:53:21 -07004086 bpc = 8;
Jesse Barnes5a354202011-06-24 12:19:22 -07004087 break;
4088 case 30:
Keith Packard578393c2011-09-05 11:53:21 -07004089 bpc = 10;
Jesse Barnes5a354202011-06-24 12:19:22 -07004090 break;
4091 case 48:
Keith Packard578393c2011-09-05 11:53:21 -07004092 bpc = 12;
Jesse Barnes5a354202011-06-24 12:19:22 -07004093 break;
4094 default:
4095 DRM_DEBUG("unsupported depth, assuming 24 bits\n");
4096 bpc = min((unsigned int)8, display_bpc);
4097 break;
4098 }
4099
Keith Packard578393c2011-09-05 11:53:21 -07004100 display_bpc = min(display_bpc, bpc);
4101
Adam Jackson82820492011-10-10 16:33:34 -04004102 DRM_DEBUG_KMS("setting pipe bpc to %d (max display bpc %d)\n",
4103 bpc, display_bpc);
Jesse Barnes5a354202011-06-24 12:19:22 -07004104
Keith Packard578393c2011-09-05 11:53:21 -07004105 *pipe_bpp = display_bpc * 3;
Jesse Barnes5a354202011-06-24 12:19:22 -07004106
4107 return display_bpc != bpc;
4108}
4109
Jesse Barnesa0c4da22012-06-15 11:55:13 -07004110static int vlv_get_refclk(struct drm_crtc *crtc)
4111{
4112 struct drm_device *dev = crtc->dev;
4113 struct drm_i915_private *dev_priv = dev->dev_private;
4114 int refclk = 27000; /* for DP & HDMI */
4115
4116 return 100000; /* only one validated so far */
4117
4118 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_ANALOG)) {
4119 refclk = 96000;
4120 } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
4121 if (intel_panel_use_ssc(dev_priv))
4122 refclk = 100000;
4123 else
4124 refclk = 96000;
4125 } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP)) {
4126 refclk = 100000;
4127 }
4128
4129 return refclk;
4130}
4131
Jesse Barnesc65d77d2011-12-15 12:30:36 -08004132static int i9xx_get_refclk(struct drm_crtc *crtc, int num_connectors)
4133{
4134 struct drm_device *dev = crtc->dev;
4135 struct drm_i915_private *dev_priv = dev->dev_private;
4136 int refclk;
4137
Jesse Barnesa0c4da22012-06-15 11:55:13 -07004138 if (IS_VALLEYVIEW(dev)) {
4139 refclk = vlv_get_refclk(crtc);
4140 } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) &&
Jesse Barnesc65d77d2011-12-15 12:30:36 -08004141 intel_panel_use_ssc(dev_priv) && num_connectors < 2) {
4142 refclk = dev_priv->lvds_ssc_freq * 1000;
4143 DRM_DEBUG_KMS("using SSC reference clock of %d MHz\n",
4144 refclk / 1000);
4145 } else if (!IS_GEN2(dev)) {
4146 refclk = 96000;
4147 } else {
4148 refclk = 48000;
4149 }
4150
4151 return refclk;
4152}
4153
4154static void i9xx_adjust_sdvo_tv_clock(struct drm_display_mode *adjusted_mode,
4155 intel_clock_t *clock)
4156{
4157 /* SDVO TV has fixed PLL values depend on its clock range,
4158 this mirrors vbios setting. */
4159 if (adjusted_mode->clock >= 100000
4160 && adjusted_mode->clock < 140500) {
4161 clock->p1 = 2;
4162 clock->p2 = 10;
4163 clock->n = 3;
4164 clock->m1 = 16;
4165 clock->m2 = 8;
4166 } else if (adjusted_mode->clock >= 140500
4167 && adjusted_mode->clock <= 200000) {
4168 clock->p1 = 1;
4169 clock->p2 = 10;
4170 clock->n = 6;
4171 clock->m1 = 12;
4172 clock->m2 = 8;
4173 }
4174}
4175
Jesse Barnesa7516a02011-12-15 12:30:37 -08004176static void i9xx_update_pll_dividers(struct drm_crtc *crtc,
4177 intel_clock_t *clock,
4178 intel_clock_t *reduced_clock)
4179{
4180 struct drm_device *dev = crtc->dev;
4181 struct drm_i915_private *dev_priv = dev->dev_private;
4182 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4183 int pipe = intel_crtc->pipe;
4184 u32 fp, fp2 = 0;
4185
4186 if (IS_PINEVIEW(dev)) {
4187 fp = (1 << clock->n) << 16 | clock->m1 << 8 | clock->m2;
4188 if (reduced_clock)
4189 fp2 = (1 << reduced_clock->n) << 16 |
4190 reduced_clock->m1 << 8 | reduced_clock->m2;
4191 } else {
4192 fp = clock->n << 16 | clock->m1 << 8 | clock->m2;
4193 if (reduced_clock)
4194 fp2 = reduced_clock->n << 16 | reduced_clock->m1 << 8 |
4195 reduced_clock->m2;
4196 }
4197
4198 I915_WRITE(FP0(pipe), fp);
4199
4200 intel_crtc->lowfreq_avail = false;
4201 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) &&
4202 reduced_clock && i915_powersave) {
4203 I915_WRITE(FP1(pipe), fp2);
4204 intel_crtc->lowfreq_avail = true;
4205 } else {
4206 I915_WRITE(FP1(pipe), fp);
4207 }
4208}
4209
Jesse Barnesa0c4da22012-06-15 11:55:13 -07004210static void vlv_update_pll(struct drm_crtc *crtc,
4211 struct drm_display_mode *mode,
4212 struct drm_display_mode *adjusted_mode,
4213 intel_clock_t *clock, intel_clock_t *reduced_clock,
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05304214 int num_connectors)
Jesse Barnesa0c4da22012-06-15 11:55:13 -07004215{
4216 struct drm_device *dev = crtc->dev;
4217 struct drm_i915_private *dev_priv = dev->dev_private;
4218 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4219 int pipe = intel_crtc->pipe;
4220 u32 dpll, mdiv, pdiv;
4221 u32 bestn, bestm1, bestm2, bestp1, bestp2;
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05304222 bool is_sdvo;
4223 u32 temp;
Jesse Barnesa0c4da22012-06-15 11:55:13 -07004224
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05304225 is_sdvo = intel_pipe_has_type(crtc, INTEL_OUTPUT_SDVO) ||
4226 intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI);
4227
4228 dpll = DPLL_VGA_MODE_DIS;
4229 dpll |= DPLL_EXT_BUFFER_ENABLE_VLV;
4230 dpll |= DPLL_REFA_CLK_ENABLE_VLV;
4231 dpll |= DPLL_INTEGRATED_CLOCK_VLV;
4232
4233 I915_WRITE(DPLL(pipe), dpll);
4234 POSTING_READ(DPLL(pipe));
Jesse Barnesa0c4da22012-06-15 11:55:13 -07004235
4236 bestn = clock->n;
4237 bestm1 = clock->m1;
4238 bestm2 = clock->m2;
4239 bestp1 = clock->p1;
4240 bestp2 = clock->p2;
4241
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05304242 /*
4243 * In Valleyview PLL and program lane counter registers are exposed
4244 * through DPIO interface
4245 */
Jesse Barnesa0c4da22012-06-15 11:55:13 -07004246 mdiv = ((bestm1 << DPIO_M1DIV_SHIFT) | (bestm2 & DPIO_M2DIV_MASK));
4247 mdiv |= ((bestp1 << DPIO_P1_SHIFT) | (bestp2 << DPIO_P2_SHIFT));
4248 mdiv |= ((bestn << DPIO_N_SHIFT));
4249 mdiv |= (1 << DPIO_POST_DIV_SHIFT);
4250 mdiv |= (1 << DPIO_K_SHIFT);
4251 mdiv |= DPIO_ENABLE_CALIBRATION;
4252 intel_dpio_write(dev_priv, DPIO_DIV(pipe), mdiv);
4253
4254 intel_dpio_write(dev_priv, DPIO_CORE_CLK(pipe), 0x01000000);
4255
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05304256 pdiv = (1 << DPIO_REFSEL_OVERRIDE) | (5 << DPIO_PLL_MODESEL_SHIFT) |
Jesse Barnesa0c4da22012-06-15 11:55:13 -07004257 (3 << DPIO_BIAS_CURRENT_CTL_SHIFT) | (1<<20) |
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05304258 (7 << DPIO_PLL_REFCLK_SEL_SHIFT) | (8 << DPIO_DRIVER_CTL_SHIFT) |
4259 (5 << DPIO_CLK_BIAS_CTL_SHIFT);
Jesse Barnesa0c4da22012-06-15 11:55:13 -07004260 intel_dpio_write(dev_priv, DPIO_REFSFR(pipe), pdiv);
4261
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05304262 intel_dpio_write(dev_priv, DPIO_LFP_COEFF(pipe), 0x005f003b);
Jesse Barnesa0c4da22012-06-15 11:55:13 -07004263
4264 dpll |= DPLL_VCO_ENABLE;
4265 I915_WRITE(DPLL(pipe), dpll);
4266 POSTING_READ(DPLL(pipe));
4267 if (wait_for(((I915_READ(DPLL(pipe)) & DPLL_LOCK_VLV) == DPLL_LOCK_VLV), 1))
4268 DRM_ERROR("DPLL %d failed to lock\n", pipe);
4269
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05304270 intel_dpio_write(dev_priv, DPIO_FASTCLK_DISABLE, 0x620);
Jesse Barnesa0c4da22012-06-15 11:55:13 -07004271
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05304272 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT))
4273 intel_dp_set_m_n(crtc, mode, adjusted_mode);
4274
4275 I915_WRITE(DPLL(pipe), dpll);
4276
4277 /* Wait for the clocks to stabilize. */
4278 POSTING_READ(DPLL(pipe));
4279 udelay(150);
4280
4281 temp = 0;
4282 if (is_sdvo) {
4283 temp = intel_mode_get_pixel_multiplier(adjusted_mode);
Jesse Barnesa0c4da22012-06-15 11:55:13 -07004284 if (temp > 1)
4285 temp = (temp - 1) << DPLL_MD_UDI_MULTIPLIER_SHIFT;
4286 else
4287 temp = 0;
Jesse Barnesa0c4da22012-06-15 11:55:13 -07004288 }
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05304289 I915_WRITE(DPLL_MD(pipe), temp);
4290 POSTING_READ(DPLL_MD(pipe));
Jesse Barnesa0c4da22012-06-15 11:55:13 -07004291
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05304292 /* Now program lane control registers */
4293 if(intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT)
4294 || intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI))
4295 {
4296 temp = 0x1000C4;
4297 if(pipe == 1)
4298 temp |= (1 << 21);
4299 intel_dpio_write(dev_priv, DPIO_DATA_CHANNEL1, temp);
4300 }
4301 if(intel_pipe_has_type(crtc,INTEL_OUTPUT_EDP))
4302 {
4303 temp = 0x1000C4;
4304 if(pipe == 1)
4305 temp |= (1 << 21);
4306 intel_dpio_write(dev_priv, DPIO_DATA_CHANNEL2, temp);
4307 }
Jesse Barnesa0c4da22012-06-15 11:55:13 -07004308}
4309
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004310static void i9xx_update_pll(struct drm_crtc *crtc,
4311 struct drm_display_mode *mode,
4312 struct drm_display_mode *adjusted_mode,
4313 intel_clock_t *clock, intel_clock_t *reduced_clock,
4314 int num_connectors)
4315{
4316 struct drm_device *dev = crtc->dev;
4317 struct drm_i915_private *dev_priv = dev->dev_private;
4318 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetterdafd2262012-11-26 17:22:07 +01004319 struct intel_encoder *encoder;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004320 int pipe = intel_crtc->pipe;
4321 u32 dpll;
4322 bool is_sdvo;
4323
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05304324 i9xx_update_pll_dividers(crtc, clock, reduced_clock);
4325
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004326 is_sdvo = intel_pipe_has_type(crtc, INTEL_OUTPUT_SDVO) ||
4327 intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI);
4328
4329 dpll = DPLL_VGA_MODE_DIS;
4330
4331 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS))
4332 dpll |= DPLLB_MODE_LVDS;
4333 else
4334 dpll |= DPLLB_MODE_DAC_SERIAL;
4335 if (is_sdvo) {
4336 int pixel_multiplier = intel_mode_get_pixel_multiplier(adjusted_mode);
4337 if (pixel_multiplier > 1) {
4338 if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev))
4339 dpll |= (pixel_multiplier - 1) << SDVO_MULTIPLIER_SHIFT_HIRES;
4340 }
4341 dpll |= DPLL_DVO_HIGH_SPEED;
4342 }
4343 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT))
4344 dpll |= DPLL_DVO_HIGH_SPEED;
4345
4346 /* compute bitmask from p1 value */
4347 if (IS_PINEVIEW(dev))
4348 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW;
4349 else {
4350 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
4351 if (IS_G4X(dev) && reduced_clock)
4352 dpll |= (1 << (reduced_clock->p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
4353 }
4354 switch (clock->p2) {
4355 case 5:
4356 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
4357 break;
4358 case 7:
4359 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
4360 break;
4361 case 10:
4362 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
4363 break;
4364 case 14:
4365 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
4366 break;
4367 }
4368 if (INTEL_INFO(dev)->gen >= 4)
4369 dpll |= (6 << PLL_LOAD_PULSE_PHASE_SHIFT);
4370
4371 if (is_sdvo && intel_pipe_has_type(crtc, INTEL_OUTPUT_TVOUT))
4372 dpll |= PLL_REF_INPUT_TVCLKINBC;
4373 else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_TVOUT))
4374 /* XXX: just matching BIOS for now */
4375 /* dpll |= PLL_REF_INPUT_TVCLKINBC; */
4376 dpll |= 3;
4377 else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) &&
4378 intel_panel_use_ssc(dev_priv) && num_connectors < 2)
4379 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
4380 else
4381 dpll |= PLL_REF_INPUT_DREFCLK;
4382
4383 dpll |= DPLL_VCO_ENABLE;
4384 I915_WRITE(DPLL(pipe), dpll & ~DPLL_VCO_ENABLE);
4385 POSTING_READ(DPLL(pipe));
4386 udelay(150);
4387
Daniel Vetterdafd2262012-11-26 17:22:07 +01004388 for_each_encoder_on_crtc(dev, crtc, encoder)
4389 if (encoder->pre_pll_enable)
4390 encoder->pre_pll_enable(encoder);
4391
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004392 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT))
4393 intel_dp_set_m_n(crtc, mode, adjusted_mode);
4394
4395 I915_WRITE(DPLL(pipe), dpll);
4396
4397 /* Wait for the clocks to stabilize. */
4398 POSTING_READ(DPLL(pipe));
4399 udelay(150);
4400
4401 if (INTEL_INFO(dev)->gen >= 4) {
4402 u32 temp = 0;
4403 if (is_sdvo) {
4404 temp = intel_mode_get_pixel_multiplier(adjusted_mode);
4405 if (temp > 1)
4406 temp = (temp - 1) << DPLL_MD_UDI_MULTIPLIER_SHIFT;
4407 else
4408 temp = 0;
4409 }
4410 I915_WRITE(DPLL_MD(pipe), temp);
4411 } else {
4412 /* The pixel multiplier can only be updated once the
4413 * DPLL is enabled and the clocks are stable.
4414 *
4415 * So write it again.
4416 */
4417 I915_WRITE(DPLL(pipe), dpll);
4418 }
4419}
4420
4421static void i8xx_update_pll(struct drm_crtc *crtc,
4422 struct drm_display_mode *adjusted_mode,
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05304423 intel_clock_t *clock, intel_clock_t *reduced_clock,
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004424 int num_connectors)
4425{
4426 struct drm_device *dev = crtc->dev;
4427 struct drm_i915_private *dev_priv = dev->dev_private;
4428 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetterdafd2262012-11-26 17:22:07 +01004429 struct intel_encoder *encoder;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004430 int pipe = intel_crtc->pipe;
4431 u32 dpll;
4432
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05304433 i9xx_update_pll_dividers(crtc, clock, reduced_clock);
4434
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004435 dpll = DPLL_VGA_MODE_DIS;
4436
4437 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
4438 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
4439 } else {
4440 if (clock->p1 == 2)
4441 dpll |= PLL_P1_DIVIDE_BY_TWO;
4442 else
4443 dpll |= (clock->p1 - 2) << DPLL_FPA01_P1_POST_DIV_SHIFT;
4444 if (clock->p2 == 4)
4445 dpll |= PLL_P2_DIVIDE_BY_4;
4446 }
4447
4448 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_TVOUT))
4449 /* XXX: just matching BIOS for now */
4450 /* dpll |= PLL_REF_INPUT_TVCLKINBC; */
4451 dpll |= 3;
4452 else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) &&
4453 intel_panel_use_ssc(dev_priv) && num_connectors < 2)
4454 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
4455 else
4456 dpll |= PLL_REF_INPUT_DREFCLK;
4457
4458 dpll |= DPLL_VCO_ENABLE;
4459 I915_WRITE(DPLL(pipe), dpll & ~DPLL_VCO_ENABLE);
4460 POSTING_READ(DPLL(pipe));
4461 udelay(150);
4462
Daniel Vetterdafd2262012-11-26 17:22:07 +01004463 for_each_encoder_on_crtc(dev, crtc, encoder)
4464 if (encoder->pre_pll_enable)
4465 encoder->pre_pll_enable(encoder);
4466
Daniel Vetter5b5896e2012-09-11 12:37:55 +02004467 I915_WRITE(DPLL(pipe), dpll);
4468
4469 /* Wait for the clocks to stabilize. */
4470 POSTING_READ(DPLL(pipe));
4471 udelay(150);
4472
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004473 /* The pixel multiplier can only be updated once the
4474 * DPLL is enabled and the clocks are stable.
4475 *
4476 * So write it again.
4477 */
4478 I915_WRITE(DPLL(pipe), dpll);
4479}
4480
Paulo Zanonib0e77b92012-10-01 18:10:53 -03004481static void intel_set_pipe_timings(struct intel_crtc *intel_crtc,
4482 struct drm_display_mode *mode,
4483 struct drm_display_mode *adjusted_mode)
4484{
4485 struct drm_device *dev = intel_crtc->base.dev;
4486 struct drm_i915_private *dev_priv = dev->dev_private;
4487 enum pipe pipe = intel_crtc->pipe;
Paulo Zanonife2b8f92012-10-23 18:30:02 -02004488 enum transcoder cpu_transcoder = intel_crtc->cpu_transcoder;
Paulo Zanonib0e77b92012-10-01 18:10:53 -03004489 uint32_t vsyncshift;
4490
4491 if (!IS_GEN2(dev) && adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE) {
4492 /* the chip adds 2 halflines automatically */
4493 adjusted_mode->crtc_vtotal -= 1;
4494 adjusted_mode->crtc_vblank_end -= 1;
4495 vsyncshift = adjusted_mode->crtc_hsync_start
4496 - adjusted_mode->crtc_htotal / 2;
4497 } else {
4498 vsyncshift = 0;
4499 }
4500
4501 if (INTEL_INFO(dev)->gen > 3)
Paulo Zanonife2b8f92012-10-23 18:30:02 -02004502 I915_WRITE(VSYNCSHIFT(cpu_transcoder), vsyncshift);
Paulo Zanonib0e77b92012-10-01 18:10:53 -03004503
Paulo Zanonife2b8f92012-10-23 18:30:02 -02004504 I915_WRITE(HTOTAL(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03004505 (adjusted_mode->crtc_hdisplay - 1) |
4506 ((adjusted_mode->crtc_htotal - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02004507 I915_WRITE(HBLANK(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03004508 (adjusted_mode->crtc_hblank_start - 1) |
4509 ((adjusted_mode->crtc_hblank_end - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02004510 I915_WRITE(HSYNC(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03004511 (adjusted_mode->crtc_hsync_start - 1) |
4512 ((adjusted_mode->crtc_hsync_end - 1) << 16));
4513
Paulo Zanonife2b8f92012-10-23 18:30:02 -02004514 I915_WRITE(VTOTAL(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03004515 (adjusted_mode->crtc_vdisplay - 1) |
4516 ((adjusted_mode->crtc_vtotal - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02004517 I915_WRITE(VBLANK(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03004518 (adjusted_mode->crtc_vblank_start - 1) |
4519 ((adjusted_mode->crtc_vblank_end - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02004520 I915_WRITE(VSYNC(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03004521 (adjusted_mode->crtc_vsync_start - 1) |
4522 ((adjusted_mode->crtc_vsync_end - 1) << 16));
4523
Paulo Zanonib5e508d2012-10-24 11:34:43 -02004524 /* Workaround: when the EDP input selection is B, the VTOTAL_B must be
4525 * programmed with the VTOTAL_EDP value. Same for VTOTAL_C. This is
4526 * documented on the DDI_FUNC_CTL register description, EDP Input Select
4527 * bits. */
4528 if (IS_HASWELL(dev) && cpu_transcoder == TRANSCODER_EDP &&
4529 (pipe == PIPE_B || pipe == PIPE_C))
4530 I915_WRITE(VTOTAL(pipe), I915_READ(VTOTAL(cpu_transcoder)));
4531
Paulo Zanonib0e77b92012-10-01 18:10:53 -03004532 /* pipesrc controls the size that is scaled from, which should
4533 * always be the user's requested size.
4534 */
4535 I915_WRITE(PIPESRC(pipe),
4536 ((mode->hdisplay - 1) << 16) | (mode->vdisplay - 1));
4537}
4538
Eric Anholtf564048e2011-03-30 13:01:02 -07004539static int i9xx_crtc_mode_set(struct drm_crtc *crtc,
4540 struct drm_display_mode *mode,
4541 struct drm_display_mode *adjusted_mode,
4542 int x, int y,
Daniel Vetter94352cf2012-07-05 22:51:56 +02004543 struct drm_framebuffer *fb)
Jesse Barnes79e53942008-11-07 14:24:08 -08004544{
4545 struct drm_device *dev = crtc->dev;
4546 struct drm_i915_private *dev_priv = dev->dev_private;
4547 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4548 int pipe = intel_crtc->pipe;
Jesse Barnes80824002009-09-10 15:28:06 -07004549 int plane = intel_crtc->plane;
Eric Anholtc751ce42010-03-25 11:48:48 -07004550 int refclk, num_connectors = 0;
Jesse Barnes652c3932009-08-17 13:31:43 -07004551 intel_clock_t clock, reduced_clock;
Paulo Zanonib0e77b92012-10-01 18:10:53 -03004552 u32 dspcntr, pipeconf;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004553 bool ok, has_reduced_clock = false, is_sdvo = false;
4554 bool is_lvds = false, is_tv = false, is_dp = false;
Chris Wilson5eddb702010-09-11 13:48:45 +01004555 struct intel_encoder *encoder;
Ma Lingd4906092009-03-18 20:13:27 +08004556 const intel_limit_t *limit;
Chris Wilson5c3b82e2009-02-11 13:25:09 +00004557 int ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08004558
Daniel Vetter6c2b7c122012-07-05 09:50:24 +02004559 for_each_encoder_on_crtc(dev, crtc, encoder) {
Chris Wilson5eddb702010-09-11 13:48:45 +01004560 switch (encoder->type) {
Jesse Barnes79e53942008-11-07 14:24:08 -08004561 case INTEL_OUTPUT_LVDS:
4562 is_lvds = true;
4563 break;
4564 case INTEL_OUTPUT_SDVO:
Eric Anholt7d573822009-01-02 13:33:00 -08004565 case INTEL_OUTPUT_HDMI:
Jesse Barnes79e53942008-11-07 14:24:08 -08004566 is_sdvo = true;
Chris Wilson5eddb702010-09-11 13:48:45 +01004567 if (encoder->needs_tv_clock)
Jesse Barnese2f0ba92009-02-02 15:11:52 -08004568 is_tv = true;
Jesse Barnes79e53942008-11-07 14:24:08 -08004569 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08004570 case INTEL_OUTPUT_TVOUT:
4571 is_tv = true;
4572 break;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004573 case INTEL_OUTPUT_DISPLAYPORT:
4574 is_dp = true;
4575 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08004576 }
Kristian Høgsberg43565a02009-02-13 20:56:52 -05004577
Eric Anholtc751ce42010-03-25 11:48:48 -07004578 num_connectors++;
Jesse Barnes79e53942008-11-07 14:24:08 -08004579 }
4580
Jesse Barnesc65d77d2011-12-15 12:30:36 -08004581 refclk = i9xx_get_refclk(crtc, num_connectors);
Jesse Barnes79e53942008-11-07 14:24:08 -08004582
Ma Lingd4906092009-03-18 20:13:27 +08004583 /*
4584 * Returns a set of divisors for the desired target clock with the given
4585 * refclk, or FALSE. The returned values represent the clock equation:
4586 * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2.
4587 */
Chris Wilson1b894b52010-12-14 20:04:54 +00004588 limit = intel_limit(crtc, refclk);
Sean Paulcec2f352012-01-10 15:09:36 -08004589 ok = limit->find_pll(limit, crtc, adjusted_mode->clock, refclk, NULL,
4590 &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08004591 if (!ok) {
4592 DRM_ERROR("Couldn't find PLL settings for mode!\n");
Eric Anholtf564048e2011-03-30 13:01:02 -07004593 return -EINVAL;
4594 }
4595
4596 /* Ensure that the cursor is valid for the new mode before changing... */
4597 intel_crtc_update_cursor(crtc, true);
4598
4599 if (is_lvds && dev_priv->lvds_downclock_avail) {
Sean Paulcec2f352012-01-10 15:09:36 -08004600 /*
4601 * Ensure we match the reduced clock's P to the target clock.
4602 * If the clocks don't match, we can't switch the display clock
4603 * by using the FP0/FP1. In such case we will disable the LVDS
4604 * downclock feature.
4605 */
Eric Anholtf564048e2011-03-30 13:01:02 -07004606 has_reduced_clock = limit->find_pll(limit, crtc,
4607 dev_priv->lvds_downclock,
4608 refclk,
Sean Paulcec2f352012-01-10 15:09:36 -08004609 &clock,
Eric Anholtf564048e2011-03-30 13:01:02 -07004610 &reduced_clock);
Eric Anholtf564048e2011-03-30 13:01:02 -07004611 }
4612
Jesse Barnesc65d77d2011-12-15 12:30:36 -08004613 if (is_sdvo && is_tv)
4614 i9xx_adjust_sdvo_tv_clock(adjusted_mode, &clock);
Eric Anholtf564048e2011-03-30 13:01:02 -07004615
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004616 if (IS_GEN2(dev))
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05304617 i8xx_update_pll(crtc, adjusted_mode, &clock,
4618 has_reduced_clock ? &reduced_clock : NULL,
4619 num_connectors);
Jesse Barnesa0c4da22012-06-15 11:55:13 -07004620 else if (IS_VALLEYVIEW(dev))
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05304621 vlv_update_pll(crtc, mode, adjusted_mode, &clock,
4622 has_reduced_clock ? &reduced_clock : NULL,
4623 num_connectors);
Eric Anholtf564048e2011-03-30 13:01:02 -07004624 else
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004625 i9xx_update_pll(crtc, mode, adjusted_mode, &clock,
4626 has_reduced_clock ? &reduced_clock : NULL,
4627 num_connectors);
Eric Anholtf564048e2011-03-30 13:01:02 -07004628
4629 /* setup pipeconf */
4630 pipeconf = I915_READ(PIPECONF(pipe));
4631
4632 /* Set up the display plane register */
4633 dspcntr = DISPPLANE_GAMMA_ENABLE;
4634
Eric Anholt929c77f2011-03-30 13:01:04 -07004635 if (pipe == 0)
4636 dspcntr &= ~DISPPLANE_SEL_PIPE_MASK;
4637 else
4638 dspcntr |= DISPPLANE_SEL_PIPE_B;
Eric Anholtf564048e2011-03-30 13:01:02 -07004639
4640 if (pipe == 0 && INTEL_INFO(dev)->gen < 4) {
4641 /* Enable pixel doubling when the dot clock is > 90% of the (display)
4642 * core speed.
4643 *
4644 * XXX: No double-wide on 915GM pipe B. Is that the only reason for the
4645 * pipe == 0 check?
4646 */
4647 if (mode->clock >
4648 dev_priv->display.get_display_clock_speed(dev) * 9 / 10)
4649 pipeconf |= PIPECONF_DOUBLE_WIDE;
4650 else
4651 pipeconf &= ~PIPECONF_DOUBLE_WIDE;
4652 }
4653
Adam Jackson3b5c78a2011-12-13 15:41:00 -08004654 /* default to 8bpc */
4655 pipeconf &= ~(PIPECONF_BPP_MASK | PIPECONF_DITHER_EN);
4656 if (is_dp) {
Jani Nikula0c96c652012-09-26 18:43:10 +03004657 if (adjusted_mode->private_flags & INTEL_MODE_DP_FORCE_6BPC) {
Adam Jackson3b5c78a2011-12-13 15:41:00 -08004658 pipeconf |= PIPECONF_BPP_6 |
4659 PIPECONF_DITHER_EN |
4660 PIPECONF_DITHER_TYPE_SP;
4661 }
4662 }
4663
Gajanan Bhat19c03922012-09-27 19:13:07 +05304664 if (IS_VALLEYVIEW(dev) && intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP)) {
4665 if (adjusted_mode->private_flags & INTEL_MODE_DP_FORCE_6BPC) {
4666 pipeconf |= PIPECONF_BPP_6 |
4667 PIPECONF_ENABLE |
4668 I965_PIPECONF_ACTIVE;
4669 }
4670 }
4671
Eric Anholtf564048e2011-03-30 13:01:02 -07004672 DRM_DEBUG_KMS("Mode for pipe %c:\n", pipe == 0 ? 'A' : 'B');
4673 drm_mode_debug_printmodeline(mode);
4674
Jesse Barnesa7516a02011-12-15 12:30:37 -08004675 if (HAS_PIPE_CXSR(dev)) {
4676 if (intel_crtc->lowfreq_avail) {
Eric Anholtf564048e2011-03-30 13:01:02 -07004677 DRM_DEBUG_KMS("enabling CxSR downclocking\n");
4678 pipeconf |= PIPECONF_CXSR_DOWNCLOCK;
Jesse Barnesa7516a02011-12-15 12:30:37 -08004679 } else {
Eric Anholtf564048e2011-03-30 13:01:02 -07004680 DRM_DEBUG_KMS("disabling CxSR downclocking\n");
4681 pipeconf &= ~PIPECONF_CXSR_DOWNCLOCK;
4682 }
4683 }
4684
Keith Packard617cf882012-02-08 13:53:38 -08004685 pipeconf &= ~PIPECONF_INTERLACE_MASK;
Daniel Vetterdbb02572012-01-28 14:49:23 +01004686 if (!IS_GEN2(dev) &&
Paulo Zanonib0e77b92012-10-01 18:10:53 -03004687 adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE)
Eric Anholtf564048e2011-03-30 13:01:02 -07004688 pipeconf |= PIPECONF_INTERLACE_W_FIELD_INDICATION;
Paulo Zanonib0e77b92012-10-01 18:10:53 -03004689 else
Keith Packard617cf882012-02-08 13:53:38 -08004690 pipeconf |= PIPECONF_PROGRESSIVE;
Daniel Vetter0529a0d2012-01-28 14:49:24 +01004691
Paulo Zanonib0e77b92012-10-01 18:10:53 -03004692 intel_set_pipe_timings(intel_crtc, mode, adjusted_mode);
Eric Anholtf564048e2011-03-30 13:01:02 -07004693
4694 /* pipesrc and dspsize control the size that is scaled from,
4695 * which should always be the user's requested size.
4696 */
Eric Anholt929c77f2011-03-30 13:01:04 -07004697 I915_WRITE(DSPSIZE(plane),
4698 ((mode->vdisplay - 1) << 16) |
4699 (mode->hdisplay - 1));
4700 I915_WRITE(DSPPOS(plane), 0);
Eric Anholtf564048e2011-03-30 13:01:02 -07004701
Eric Anholtf564048e2011-03-30 13:01:02 -07004702 I915_WRITE(PIPECONF(pipe), pipeconf);
4703 POSTING_READ(PIPECONF(pipe));
Eric Anholt929c77f2011-03-30 13:01:04 -07004704 intel_enable_pipe(dev_priv, pipe, false);
Eric Anholtf564048e2011-03-30 13:01:02 -07004705
4706 intel_wait_for_vblank(dev, pipe);
4707
Eric Anholtf564048e2011-03-30 13:01:02 -07004708 I915_WRITE(DSPCNTR(plane), dspcntr);
4709 POSTING_READ(DSPCNTR(plane));
4710
Daniel Vetter94352cf2012-07-05 22:51:56 +02004711 ret = intel_pipe_set_base(crtc, x, y, fb);
Eric Anholtf564048e2011-03-30 13:01:02 -07004712
4713 intel_update_watermarks(dev);
4714
Eric Anholtf564048e2011-03-30 13:01:02 -07004715 return ret;
4716}
4717
Keith Packard9fb526d2011-09-26 22:24:57 -07004718/*
4719 * Initialize reference clocks when the driver loads
4720 */
4721void ironlake_init_pch_refclk(struct drm_device *dev)
Jesse Barnes13d83a62011-08-03 12:59:20 -07004722{
4723 struct drm_i915_private *dev_priv = dev->dev_private;
4724 struct drm_mode_config *mode_config = &dev->mode_config;
Jesse Barnes13d83a62011-08-03 12:59:20 -07004725 struct intel_encoder *encoder;
Jesse Barnes13d83a62011-08-03 12:59:20 -07004726 u32 temp;
4727 bool has_lvds = false;
Keith Packard199e5d72011-09-22 12:01:57 -07004728 bool has_cpu_edp = false;
4729 bool has_pch_edp = false;
4730 bool has_panel = false;
Keith Packard99eb6a02011-09-26 14:29:12 -07004731 bool has_ck505 = false;
4732 bool can_ssc = false;
Jesse Barnes13d83a62011-08-03 12:59:20 -07004733
4734 /* We need to take the global config into account */
Keith Packard199e5d72011-09-22 12:01:57 -07004735 list_for_each_entry(encoder, &mode_config->encoder_list,
4736 base.head) {
4737 switch (encoder->type) {
4738 case INTEL_OUTPUT_LVDS:
4739 has_panel = true;
4740 has_lvds = true;
4741 break;
4742 case INTEL_OUTPUT_EDP:
4743 has_panel = true;
4744 if (intel_encoder_is_pch_edp(&encoder->base))
4745 has_pch_edp = true;
4746 else
4747 has_cpu_edp = true;
4748 break;
Jesse Barnes13d83a62011-08-03 12:59:20 -07004749 }
4750 }
4751
Keith Packard99eb6a02011-09-26 14:29:12 -07004752 if (HAS_PCH_IBX(dev)) {
4753 has_ck505 = dev_priv->display_clock_mode;
4754 can_ssc = has_ck505;
4755 } else {
4756 has_ck505 = false;
4757 can_ssc = true;
4758 }
4759
4760 DRM_DEBUG_KMS("has_panel %d has_lvds %d has_pch_edp %d has_cpu_edp %d has_ck505 %d\n",
4761 has_panel, has_lvds, has_pch_edp, has_cpu_edp,
4762 has_ck505);
Jesse Barnes13d83a62011-08-03 12:59:20 -07004763
4764 /* Ironlake: try to setup display ref clock before DPLL
4765 * enabling. This is only under driver's control after
4766 * PCH B stepping, previous chipset stepping should be
4767 * ignoring this setting.
4768 */
4769 temp = I915_READ(PCH_DREF_CONTROL);
4770 /* Always enable nonspread source */
4771 temp &= ~DREF_NONSPREAD_SOURCE_MASK;
Jesse Barnes13d83a62011-08-03 12:59:20 -07004772
Keith Packard99eb6a02011-09-26 14:29:12 -07004773 if (has_ck505)
4774 temp |= DREF_NONSPREAD_CK505_ENABLE;
4775 else
4776 temp |= DREF_NONSPREAD_SOURCE_ENABLE;
Jesse Barnes13d83a62011-08-03 12:59:20 -07004777
Keith Packard199e5d72011-09-22 12:01:57 -07004778 if (has_panel) {
4779 temp &= ~DREF_SSC_SOURCE_MASK;
4780 temp |= DREF_SSC_SOURCE_ENABLE;
Jesse Barnes13d83a62011-08-03 12:59:20 -07004781
Keith Packard199e5d72011-09-22 12:01:57 -07004782 /* SSC must be turned on before enabling the CPU output */
Keith Packard99eb6a02011-09-26 14:29:12 -07004783 if (intel_panel_use_ssc(dev_priv) && can_ssc) {
Keith Packard199e5d72011-09-22 12:01:57 -07004784 DRM_DEBUG_KMS("Using SSC on panel\n");
Jesse Barnes13d83a62011-08-03 12:59:20 -07004785 temp |= DREF_SSC1_ENABLE;
Daniel Vettere77166b2012-03-30 22:14:05 +02004786 } else
4787 temp &= ~DREF_SSC1_ENABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07004788
4789 /* Get SSC going before enabling the outputs */
4790 I915_WRITE(PCH_DREF_CONTROL, temp);
4791 POSTING_READ(PCH_DREF_CONTROL);
4792 udelay(200);
4793
Jesse Barnes13d83a62011-08-03 12:59:20 -07004794 temp &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
4795
4796 /* Enable CPU source on CPU attached eDP */
Keith Packard199e5d72011-09-22 12:01:57 -07004797 if (has_cpu_edp) {
Keith Packard99eb6a02011-09-26 14:29:12 -07004798 if (intel_panel_use_ssc(dev_priv) && can_ssc) {
Keith Packard199e5d72011-09-22 12:01:57 -07004799 DRM_DEBUG_KMS("Using SSC on eDP\n");
Jesse Barnes13d83a62011-08-03 12:59:20 -07004800 temp |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD;
Keith Packard199e5d72011-09-22 12:01:57 -07004801 }
Jesse Barnes13d83a62011-08-03 12:59:20 -07004802 else
4803 temp |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD;
Keith Packard199e5d72011-09-22 12:01:57 -07004804 } else
4805 temp |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
4806
4807 I915_WRITE(PCH_DREF_CONTROL, temp);
4808 POSTING_READ(PCH_DREF_CONTROL);
4809 udelay(200);
4810 } else {
4811 DRM_DEBUG_KMS("Disabling SSC entirely\n");
4812
4813 temp &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
4814
4815 /* Turn off CPU output */
4816 temp |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
4817
4818 I915_WRITE(PCH_DREF_CONTROL, temp);
4819 POSTING_READ(PCH_DREF_CONTROL);
4820 udelay(200);
4821
4822 /* Turn off the SSC source */
4823 temp &= ~DREF_SSC_SOURCE_MASK;
4824 temp |= DREF_SSC_SOURCE_DISABLE;
4825
4826 /* Turn off SSC1 */
4827 temp &= ~ DREF_SSC1_ENABLE;
4828
Jesse Barnes13d83a62011-08-03 12:59:20 -07004829 I915_WRITE(PCH_DREF_CONTROL, temp);
4830 POSTING_READ(PCH_DREF_CONTROL);
4831 udelay(200);
4832 }
4833}
4834
Jesse Barnesd9d444c2011-09-02 13:03:05 -07004835static int ironlake_get_refclk(struct drm_crtc *crtc)
4836{
4837 struct drm_device *dev = crtc->dev;
4838 struct drm_i915_private *dev_priv = dev->dev_private;
4839 struct intel_encoder *encoder;
Jesse Barnesd9d444c2011-09-02 13:03:05 -07004840 struct intel_encoder *edp_encoder = NULL;
4841 int num_connectors = 0;
4842 bool is_lvds = false;
4843
Daniel Vetter6c2b7c122012-07-05 09:50:24 +02004844 for_each_encoder_on_crtc(dev, crtc, encoder) {
Jesse Barnesd9d444c2011-09-02 13:03:05 -07004845 switch (encoder->type) {
4846 case INTEL_OUTPUT_LVDS:
4847 is_lvds = true;
4848 break;
4849 case INTEL_OUTPUT_EDP:
4850 edp_encoder = encoder;
4851 break;
4852 }
4853 num_connectors++;
4854 }
4855
4856 if (is_lvds && intel_panel_use_ssc(dev_priv) && num_connectors < 2) {
4857 DRM_DEBUG_KMS("using SSC reference clock of %d MHz\n",
4858 dev_priv->lvds_ssc_freq);
4859 return dev_priv->lvds_ssc_freq * 1000;
4860 }
4861
4862 return 120000;
4863}
4864
Paulo Zanonic8203562012-09-12 10:06:29 -03004865static void ironlake_set_pipeconf(struct drm_crtc *crtc,
4866 struct drm_display_mode *adjusted_mode,
4867 bool dither)
4868{
4869 struct drm_i915_private *dev_priv = crtc->dev->dev_private;
4870 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4871 int pipe = intel_crtc->pipe;
4872 uint32_t val;
4873
4874 val = I915_READ(PIPECONF(pipe));
4875
4876 val &= ~PIPE_BPC_MASK;
4877 switch (intel_crtc->bpp) {
4878 case 18:
4879 val |= PIPE_6BPC;
4880 break;
4881 case 24:
4882 val |= PIPE_8BPC;
4883 break;
4884 case 30:
4885 val |= PIPE_10BPC;
4886 break;
4887 case 36:
4888 val |= PIPE_12BPC;
4889 break;
4890 default:
Paulo Zanonicc769b62012-09-20 18:36:03 -03004891 /* Case prevented by intel_choose_pipe_bpp_dither. */
4892 BUG();
Paulo Zanonic8203562012-09-12 10:06:29 -03004893 }
4894
4895 val &= ~(PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_MASK);
4896 if (dither)
4897 val |= (PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_SP);
4898
4899 val &= ~PIPECONF_INTERLACE_MASK;
4900 if (adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE)
4901 val |= PIPECONF_INTERLACED_ILK;
4902 else
4903 val |= PIPECONF_PROGRESSIVE;
4904
4905 I915_WRITE(PIPECONF(pipe), val);
4906 POSTING_READ(PIPECONF(pipe));
4907}
4908
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03004909static void haswell_set_pipeconf(struct drm_crtc *crtc,
4910 struct drm_display_mode *adjusted_mode,
4911 bool dither)
4912{
4913 struct drm_i915_private *dev_priv = crtc->dev->dev_private;
4914 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Paulo Zanoni702e7a52012-10-23 18:29:59 -02004915 enum transcoder cpu_transcoder = intel_crtc->cpu_transcoder;
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03004916 uint32_t val;
4917
Paulo Zanoni702e7a52012-10-23 18:29:59 -02004918 val = I915_READ(PIPECONF(cpu_transcoder));
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03004919
4920 val &= ~(PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_MASK);
4921 if (dither)
4922 val |= (PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_SP);
4923
4924 val &= ~PIPECONF_INTERLACE_MASK_HSW;
4925 if (adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE)
4926 val |= PIPECONF_INTERLACED_ILK;
4927 else
4928 val |= PIPECONF_PROGRESSIVE;
4929
Paulo Zanoni702e7a52012-10-23 18:29:59 -02004930 I915_WRITE(PIPECONF(cpu_transcoder), val);
4931 POSTING_READ(PIPECONF(cpu_transcoder));
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03004932}
4933
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03004934static bool ironlake_compute_clocks(struct drm_crtc *crtc,
4935 struct drm_display_mode *adjusted_mode,
4936 intel_clock_t *clock,
4937 bool *has_reduced_clock,
4938 intel_clock_t *reduced_clock)
4939{
4940 struct drm_device *dev = crtc->dev;
4941 struct drm_i915_private *dev_priv = dev->dev_private;
4942 struct intel_encoder *intel_encoder;
4943 int refclk;
4944 const intel_limit_t *limit;
4945 bool ret, is_sdvo = false, is_tv = false, is_lvds = false;
4946
4947 for_each_encoder_on_crtc(dev, crtc, intel_encoder) {
4948 switch (intel_encoder->type) {
4949 case INTEL_OUTPUT_LVDS:
4950 is_lvds = true;
4951 break;
4952 case INTEL_OUTPUT_SDVO:
4953 case INTEL_OUTPUT_HDMI:
4954 is_sdvo = true;
4955 if (intel_encoder->needs_tv_clock)
4956 is_tv = true;
4957 break;
4958 case INTEL_OUTPUT_TVOUT:
4959 is_tv = true;
4960 break;
4961 }
4962 }
4963
4964 refclk = ironlake_get_refclk(crtc);
4965
4966 /*
4967 * Returns a set of divisors for the desired target clock with the given
4968 * refclk, or FALSE. The returned values represent the clock equation:
4969 * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2.
4970 */
4971 limit = intel_limit(crtc, refclk);
4972 ret = limit->find_pll(limit, crtc, adjusted_mode->clock, refclk, NULL,
4973 clock);
4974 if (!ret)
4975 return false;
4976
4977 if (is_lvds && dev_priv->lvds_downclock_avail) {
4978 /*
4979 * Ensure we match the reduced clock's P to the target clock.
4980 * If the clocks don't match, we can't switch the display clock
4981 * by using the FP0/FP1. In such case we will disable the LVDS
4982 * downclock feature.
4983 */
4984 *has_reduced_clock = limit->find_pll(limit, crtc,
4985 dev_priv->lvds_downclock,
4986 refclk,
4987 clock,
4988 reduced_clock);
4989 }
4990
4991 if (is_sdvo && is_tv)
4992 i9xx_adjust_sdvo_tv_clock(adjusted_mode, clock);
4993
4994 return true;
4995}
4996
Daniel Vetter01a415f2012-10-27 15:58:40 +02004997static void cpt_enable_fdi_bc_bifurcation(struct drm_device *dev)
4998{
4999 struct drm_i915_private *dev_priv = dev->dev_private;
5000 uint32_t temp;
5001
5002 temp = I915_READ(SOUTH_CHICKEN1);
5003 if (temp & FDI_BC_BIFURCATION_SELECT)
5004 return;
5005
5006 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_B)) & FDI_RX_ENABLE);
5007 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_C)) & FDI_RX_ENABLE);
5008
5009 temp |= FDI_BC_BIFURCATION_SELECT;
5010 DRM_DEBUG_KMS("enabling fdi C rx\n");
5011 I915_WRITE(SOUTH_CHICKEN1, temp);
5012 POSTING_READ(SOUTH_CHICKEN1);
5013}
5014
5015static bool ironlake_check_fdi_lanes(struct intel_crtc *intel_crtc)
5016{
5017 struct drm_device *dev = intel_crtc->base.dev;
5018 struct drm_i915_private *dev_priv = dev->dev_private;
5019 struct intel_crtc *pipe_B_crtc =
5020 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[PIPE_B]);
5021
5022 DRM_DEBUG_KMS("checking fdi config on pipe %i, lanes %i\n",
5023 intel_crtc->pipe, intel_crtc->fdi_lanes);
5024 if (intel_crtc->fdi_lanes > 4) {
5025 DRM_DEBUG_KMS("invalid fdi lane config on pipe %i: %i lanes\n",
5026 intel_crtc->pipe, intel_crtc->fdi_lanes);
5027 /* Clamp lanes to avoid programming the hw with bogus values. */
5028 intel_crtc->fdi_lanes = 4;
5029
5030 return false;
5031 }
5032
5033 if (dev_priv->num_pipe == 2)
5034 return true;
5035
5036 switch (intel_crtc->pipe) {
5037 case PIPE_A:
5038 return true;
5039 case PIPE_B:
5040 if (dev_priv->pipe_to_crtc_mapping[PIPE_C]->enabled &&
5041 intel_crtc->fdi_lanes > 2) {
5042 DRM_DEBUG_KMS("invalid shared fdi lane config on pipe %i: %i lanes\n",
5043 intel_crtc->pipe, intel_crtc->fdi_lanes);
5044 /* Clamp lanes to avoid programming the hw with bogus values. */
5045 intel_crtc->fdi_lanes = 2;
5046
5047 return false;
5048 }
5049
5050 if (intel_crtc->fdi_lanes > 2)
5051 WARN_ON(I915_READ(SOUTH_CHICKEN1) & FDI_BC_BIFURCATION_SELECT);
5052 else
5053 cpt_enable_fdi_bc_bifurcation(dev);
5054
5055 return true;
5056 case PIPE_C:
5057 if (!pipe_B_crtc->base.enabled || pipe_B_crtc->fdi_lanes <= 2) {
5058 if (intel_crtc->fdi_lanes > 2) {
5059 DRM_DEBUG_KMS("invalid shared fdi lane config on pipe %i: %i lanes\n",
5060 intel_crtc->pipe, intel_crtc->fdi_lanes);
5061 /* Clamp lanes to avoid programming the hw with bogus values. */
5062 intel_crtc->fdi_lanes = 2;
5063
5064 return false;
5065 }
5066 } else {
5067 DRM_DEBUG_KMS("fdi link B uses too many lanes to enable link C\n");
5068 return false;
5069 }
5070
5071 cpt_enable_fdi_bc_bifurcation(dev);
5072
5073 return true;
5074 default:
5075 BUG();
5076 }
5077}
5078
Paulo Zanonif48d8f22012-09-20 18:36:04 -03005079static void ironlake_set_m_n(struct drm_crtc *crtc,
5080 struct drm_display_mode *mode,
5081 struct drm_display_mode *adjusted_mode)
Jesse Barnes79e53942008-11-07 14:24:08 -08005082{
5083 struct drm_device *dev = crtc->dev;
5084 struct drm_i915_private *dev_priv = dev->dev_private;
5085 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Paulo Zanoniafe2fcf2012-10-23 18:30:01 -02005086 enum transcoder cpu_transcoder = intel_crtc->cpu_transcoder;
Paulo Zanonif48d8f22012-09-20 18:36:04 -03005087 struct intel_encoder *intel_encoder, *edp_encoder = NULL;
Daniel Vettere69d0bc2012-11-29 15:59:36 +01005088 struct intel_link_m_n m_n = {0};
Paulo Zanonif48d8f22012-09-20 18:36:04 -03005089 int target_clock, pixel_multiplier, lane, link_bw;
5090 bool is_dp = false, is_cpu_edp = false;
Jesse Barnes79e53942008-11-07 14:24:08 -08005091
Paulo Zanonif48d8f22012-09-20 18:36:04 -03005092 for_each_encoder_on_crtc(dev, crtc, intel_encoder) {
5093 switch (intel_encoder->type) {
Jesse Barnes79e53942008-11-07 14:24:08 -08005094 case INTEL_OUTPUT_DISPLAYPORT:
5095 is_dp = true;
5096 break;
5097 case INTEL_OUTPUT_EDP:
Jesse Barnese3aef172012-04-10 11:58:03 -07005098 is_dp = true;
Paulo Zanonif48d8f22012-09-20 18:36:04 -03005099 if (!intel_encoder_is_pch_edp(&intel_encoder->base))
Jesse Barnese3aef172012-04-10 11:58:03 -07005100 is_cpu_edp = true;
Paulo Zanonif48d8f22012-09-20 18:36:04 -03005101 edp_encoder = intel_encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08005102 break;
5103 }
Kristian Høgsberg43565a02009-02-13 20:56:52 -05005104 }
5105
Zhenyu Wang2c072452009-06-05 15:38:42 +08005106 /* FDI link */
Eric Anholt8febb292011-03-30 13:01:07 -07005107 pixel_multiplier = intel_mode_get_pixel_multiplier(adjusted_mode);
5108 lane = 0;
5109 /* CPU eDP doesn't require FDI link, so just set DP M/N
5110 according to current link config */
Jesse Barnese3aef172012-04-10 11:58:03 -07005111 if (is_cpu_edp) {
Jesse Barnese3aef172012-04-10 11:58:03 -07005112 intel_edp_link_config(edp_encoder, &lane, &link_bw);
Eric Anholt8febb292011-03-30 13:01:07 -07005113 } else {
Eric Anholt8febb292011-03-30 13:01:07 -07005114 /* FDI is a binary signal running at ~2.7GHz, encoding
5115 * each output octet as 10 bits. The actual frequency
5116 * is stored as a divider into a 100MHz clock, and the
5117 * mode pixel clock is stored in units of 1KHz.
5118 * Hence the bw of each lane in terms of the mode signal
5119 * is:
5120 */
5121 link_bw = intel_fdi_link_freq(dev) * MHz(100)/KHz(1)/10;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08005122 }
Zhenyu Wang2c072452009-06-05 15:38:42 +08005123
Daniel Vetter94bf2ce2012-06-04 18:39:19 +02005124 /* [e]DP over FDI requires target mode clock instead of link clock. */
5125 if (edp_encoder)
5126 target_clock = intel_edp_target_clock(edp_encoder, mode);
5127 else if (is_dp)
5128 target_clock = mode->clock;
5129 else
5130 target_clock = adjusted_mode->clock;
5131
Eric Anholt8febb292011-03-30 13:01:07 -07005132 if (!lane) {
5133 /*
5134 * Account for spread spectrum to avoid
5135 * oversubscribing the link. Max center spread
5136 * is 2.5%; use 5% for safety's sake.
5137 */
Jesse Barnes5a354202011-06-24 12:19:22 -07005138 u32 bps = target_clock * intel_crtc->bpp * 21 / 20;
Eric Anholt8febb292011-03-30 13:01:07 -07005139 lane = bps / (link_bw * 8) + 1;
5140 }
5141
5142 intel_crtc->fdi_lanes = lane;
5143
5144 if (pixel_multiplier > 1)
5145 link_bw *= pixel_multiplier;
Daniel Vettere69d0bc2012-11-29 15:59:36 +01005146 intel_link_compute_m_n(intel_crtc->bpp, lane, target_clock, link_bw, &m_n);
Eric Anholt8febb292011-03-30 13:01:07 -07005147
Paulo Zanoniafe2fcf2012-10-23 18:30:01 -02005148 I915_WRITE(PIPE_DATA_M1(cpu_transcoder), TU_SIZE(m_n.tu) | m_n.gmch_m);
5149 I915_WRITE(PIPE_DATA_N1(cpu_transcoder), m_n.gmch_n);
5150 I915_WRITE(PIPE_LINK_M1(cpu_transcoder), m_n.link_m);
5151 I915_WRITE(PIPE_LINK_N1(cpu_transcoder), m_n.link_n);
Paulo Zanonif48d8f22012-09-20 18:36:04 -03005152}
5153
Paulo Zanonide13a2e2012-09-20 18:36:05 -03005154static uint32_t ironlake_compute_dpll(struct intel_crtc *intel_crtc,
5155 struct drm_display_mode *adjusted_mode,
5156 intel_clock_t *clock, u32 fp)
5157{
5158 struct drm_crtc *crtc = &intel_crtc->base;
5159 struct drm_device *dev = crtc->dev;
5160 struct drm_i915_private *dev_priv = dev->dev_private;
5161 struct intel_encoder *intel_encoder;
5162 uint32_t dpll;
5163 int factor, pixel_multiplier, num_connectors = 0;
5164 bool is_lvds = false, is_sdvo = false, is_tv = false;
5165 bool is_dp = false, is_cpu_edp = false;
5166
5167 for_each_encoder_on_crtc(dev, crtc, intel_encoder) {
5168 switch (intel_encoder->type) {
5169 case INTEL_OUTPUT_LVDS:
5170 is_lvds = true;
5171 break;
5172 case INTEL_OUTPUT_SDVO:
5173 case INTEL_OUTPUT_HDMI:
5174 is_sdvo = true;
5175 if (intel_encoder->needs_tv_clock)
5176 is_tv = true;
5177 break;
5178 case INTEL_OUTPUT_TVOUT:
5179 is_tv = true;
5180 break;
5181 case INTEL_OUTPUT_DISPLAYPORT:
5182 is_dp = true;
5183 break;
5184 case INTEL_OUTPUT_EDP:
5185 is_dp = true;
5186 if (!intel_encoder_is_pch_edp(&intel_encoder->base))
5187 is_cpu_edp = true;
5188 break;
5189 }
5190
5191 num_connectors++;
5192 }
Jesse Barnes79e53942008-11-07 14:24:08 -08005193
Chris Wilsonc1858122010-12-03 21:35:48 +00005194 /* Enable autotuning of the PLL clock (if permissible) */
Eric Anholt8febb292011-03-30 13:01:07 -07005195 factor = 21;
5196 if (is_lvds) {
5197 if ((intel_panel_use_ssc(dev_priv) &&
5198 dev_priv->lvds_ssc_freq == 100) ||
Daniel Vetter1974cad2012-11-26 17:22:09 +01005199 intel_is_dual_link_lvds(dev))
Eric Anholt8febb292011-03-30 13:01:07 -07005200 factor = 25;
5201 } else if (is_sdvo && is_tv)
5202 factor = 20;
Chris Wilsonc1858122010-12-03 21:35:48 +00005203
Paulo Zanonide13a2e2012-09-20 18:36:05 -03005204 if (clock->m < factor * clock->n)
Eric Anholt8febb292011-03-30 13:01:07 -07005205 fp |= FP_CB_TUNE;
Chris Wilsonc1858122010-12-03 21:35:48 +00005206
Chris Wilson5eddb702010-09-11 13:48:45 +01005207 dpll = 0;
Zhenyu Wang2c072452009-06-05 15:38:42 +08005208
Eric Anholta07d6782011-03-30 13:01:08 -07005209 if (is_lvds)
5210 dpll |= DPLLB_MODE_LVDS;
5211 else
5212 dpll |= DPLLB_MODE_DAC_SERIAL;
5213 if (is_sdvo) {
Paulo Zanonide13a2e2012-09-20 18:36:05 -03005214 pixel_multiplier = intel_mode_get_pixel_multiplier(adjusted_mode);
Eric Anholta07d6782011-03-30 13:01:08 -07005215 if (pixel_multiplier > 1) {
5216 dpll |= (pixel_multiplier - 1) << PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT;
Jesse Barnes79e53942008-11-07 14:24:08 -08005217 }
Eric Anholta07d6782011-03-30 13:01:08 -07005218 dpll |= DPLL_DVO_HIGH_SPEED;
5219 }
Jesse Barnese3aef172012-04-10 11:58:03 -07005220 if (is_dp && !is_cpu_edp)
Eric Anholta07d6782011-03-30 13:01:08 -07005221 dpll |= DPLL_DVO_HIGH_SPEED;
Jesse Barnes79e53942008-11-07 14:24:08 -08005222
Eric Anholta07d6782011-03-30 13:01:08 -07005223 /* compute bitmask from p1 value */
Paulo Zanonide13a2e2012-09-20 18:36:05 -03005224 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
Eric Anholta07d6782011-03-30 13:01:08 -07005225 /* also FPA1 */
Paulo Zanonide13a2e2012-09-20 18:36:05 -03005226 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
Eric Anholta07d6782011-03-30 13:01:08 -07005227
Paulo Zanonide13a2e2012-09-20 18:36:05 -03005228 switch (clock->p2) {
Eric Anholta07d6782011-03-30 13:01:08 -07005229 case 5:
5230 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
5231 break;
5232 case 7:
5233 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
5234 break;
5235 case 10:
5236 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
5237 break;
5238 case 14:
5239 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
5240 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08005241 }
5242
5243 if (is_sdvo && is_tv)
5244 dpll |= PLL_REF_INPUT_TVCLKINBC;
5245 else if (is_tv)
5246 /* XXX: just matching BIOS for now */
Kristian Høgsberg43565a02009-02-13 20:56:52 -05005247 /* dpll |= PLL_REF_INPUT_TVCLKINBC; */
Jesse Barnes79e53942008-11-07 14:24:08 -08005248 dpll |= 3;
Chris Wilsona7615032011-01-12 17:04:08 +00005249 else if (is_lvds && intel_panel_use_ssc(dev_priv) && num_connectors < 2)
Kristian Høgsberg43565a02009-02-13 20:56:52 -05005250 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
Jesse Barnes79e53942008-11-07 14:24:08 -08005251 else
5252 dpll |= PLL_REF_INPUT_DREFCLK;
5253
Paulo Zanonide13a2e2012-09-20 18:36:05 -03005254 return dpll;
5255}
5256
Jesse Barnes79e53942008-11-07 14:24:08 -08005257static int ironlake_crtc_mode_set(struct drm_crtc *crtc,
5258 struct drm_display_mode *mode,
5259 struct drm_display_mode *adjusted_mode,
5260 int x, int y,
Daniel Vetter94352cf2012-07-05 22:51:56 +02005261 struct drm_framebuffer *fb)
Jesse Barnes79e53942008-11-07 14:24:08 -08005262{
5263 struct drm_device *dev = crtc->dev;
5264 struct drm_i915_private *dev_priv = dev->dev_private;
5265 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5266 int pipe = intel_crtc->pipe;
5267 int plane = intel_crtc->plane;
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03005268 int num_connectors = 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08005269 intel_clock_t clock, reduced_clock;
Paulo Zanonia1f9e772012-09-12 10:06:32 -03005270 u32 dpll, fp = 0, fp2 = 0;
Paulo Zanonie2f12b02012-09-20 18:36:06 -03005271 bool ok, has_reduced_clock = false;
5272 bool is_lvds = false, is_dp = false, is_cpu_edp = false;
Paulo Zanonif48d8f22012-09-20 18:36:04 -03005273 struct intel_encoder *encoder;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03005274 int ret;
Daniel Vetter01a415f2012-10-27 15:58:40 +02005275 bool dither, fdi_config_ok;
Jesse Barnes79e53942008-11-07 14:24:08 -08005276
5277 for_each_encoder_on_crtc(dev, crtc, encoder) {
5278 switch (encoder->type) {
5279 case INTEL_OUTPUT_LVDS:
5280 is_lvds = true;
5281 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08005282 case INTEL_OUTPUT_DISPLAYPORT:
5283 is_dp = true;
5284 break;
5285 case INTEL_OUTPUT_EDP:
5286 is_dp = true;
Paulo Zanonie2f12b02012-09-20 18:36:06 -03005287 if (!intel_encoder_is_pch_edp(&encoder->base))
Jesse Barnes79e53942008-11-07 14:24:08 -08005288 is_cpu_edp = true;
Jesse Barnes79e53942008-11-07 14:24:08 -08005289 break;
5290 }
5291
5292 num_connectors++;
5293 }
5294
Paulo Zanoni5dc52982012-10-05 12:05:56 -03005295 WARN(!(HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev)),
5296 "Unexpected PCH type %d\n", INTEL_PCH_TYPE(dev));
5297
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03005298 ok = ironlake_compute_clocks(crtc, adjusted_mode, &clock,
5299 &has_reduced_clock, &reduced_clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08005300 if (!ok) {
5301 DRM_ERROR("Couldn't find PLL settings for mode!\n");
5302 return -EINVAL;
5303 }
5304
5305 /* Ensure that the cursor is valid for the new mode before changing... */
5306 intel_crtc_update_cursor(crtc, true);
5307
Jesse Barnes79e53942008-11-07 14:24:08 -08005308 /* determine panel color depth */
Jani Nikulac8241962012-11-02 10:19:55 +02005309 dither = intel_choose_pipe_bpp_dither(crtc, fb, &intel_crtc->bpp,
5310 adjusted_mode);
Paulo Zanonic8203562012-09-12 10:06:29 -03005311 if (is_lvds && dev_priv->lvds_dither)
5312 dither = true;
Jesse Barnes79e53942008-11-07 14:24:08 -08005313
Jesse Barnes79e53942008-11-07 14:24:08 -08005314 fp = clock.n << 16 | clock.m1 << 8 | clock.m2;
5315 if (has_reduced_clock)
5316 fp2 = reduced_clock.n << 16 | reduced_clock.m1 << 8 |
5317 reduced_clock.m2;
5318
Paulo Zanonide13a2e2012-09-20 18:36:05 -03005319 dpll = ironlake_compute_dpll(intel_crtc, adjusted_mode, &clock, fp);
Jesse Barnes79e53942008-11-07 14:24:08 -08005320
Jesse Barnesf7cb34d2011-10-12 10:49:14 -07005321 DRM_DEBUG_KMS("Mode for pipe %d:\n", pipe);
Jesse Barnes79e53942008-11-07 14:24:08 -08005322 drm_mode_debug_printmodeline(mode);
5323
Paulo Zanoni5dc52982012-10-05 12:05:56 -03005324 /* CPU eDP is the only output that doesn't need a PCH PLL of its own. */
5325 if (!is_cpu_edp) {
Jesse Barnesee7b9f92012-04-20 17:11:53 +01005326 struct intel_pch_pll *pll;
Chris Wilson5eddb702010-09-11 13:48:45 +01005327
Jesse Barnesee7b9f92012-04-20 17:11:53 +01005328 pll = intel_get_pch_pll(intel_crtc, dpll, fp);
5329 if (pll == NULL) {
5330 DRM_DEBUG_DRIVER("failed to find PLL for pipe %d\n",
5331 pipe);
Jesse Barnes4b645f12011-10-12 09:51:31 -07005332 return -EINVAL;
5333 }
Jesse Barnesee7b9f92012-04-20 17:11:53 +01005334 } else
5335 intel_put_pch_pll(intel_crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08005336
Daniel Vetter2f0c2ad2012-11-29 15:59:35 +01005337 if (is_dp && !is_cpu_edp)
Keith Packarda4fc5ed2009-04-07 16:16:42 -07005338 intel_dp_set_m_n(crtc, mode, adjusted_mode);
Jesse Barnes79e53942008-11-07 14:24:08 -08005339
Daniel Vetterdafd2262012-11-26 17:22:07 +01005340 for_each_encoder_on_crtc(dev, crtc, encoder)
5341 if (encoder->pre_pll_enable)
5342 encoder->pre_pll_enable(encoder);
5343
Jesse Barnesee7b9f92012-04-20 17:11:53 +01005344 if (intel_crtc->pch_pll) {
5345 I915_WRITE(intel_crtc->pch_pll->pll_reg, dpll);
Chris Wilson5eddb702010-09-11 13:48:45 +01005346
Zhenyu Wang32f9d652009-07-24 01:00:32 +08005347 /* Wait for the clocks to stabilize. */
Jesse Barnesee7b9f92012-04-20 17:11:53 +01005348 POSTING_READ(intel_crtc->pch_pll->pll_reg);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08005349 udelay(150);
5350
Eric Anholt8febb292011-03-30 13:01:07 -07005351 /* The pixel multiplier can only be updated once the
5352 * DPLL is enabled and the clocks are stable.
5353 *
5354 * So write it again.
5355 */
Jesse Barnesee7b9f92012-04-20 17:11:53 +01005356 I915_WRITE(intel_crtc->pch_pll->pll_reg, dpll);
Jesse Barnes79e53942008-11-07 14:24:08 -08005357 }
Jesse Barnes79e53942008-11-07 14:24:08 -08005358
Chris Wilson5eddb702010-09-11 13:48:45 +01005359 intel_crtc->lowfreq_avail = false;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01005360 if (intel_crtc->pch_pll) {
Jesse Barnes4b645f12011-10-12 09:51:31 -07005361 if (is_lvds && has_reduced_clock && i915_powersave) {
Jesse Barnesee7b9f92012-04-20 17:11:53 +01005362 I915_WRITE(intel_crtc->pch_pll->fp1_reg, fp2);
Jesse Barnes4b645f12011-10-12 09:51:31 -07005363 intel_crtc->lowfreq_avail = true;
Jesse Barnes4b645f12011-10-12 09:51:31 -07005364 } else {
Jesse Barnesee7b9f92012-04-20 17:11:53 +01005365 I915_WRITE(intel_crtc->pch_pll->fp1_reg, fp);
Jesse Barnes652c3932009-08-17 13:31:43 -07005366 }
5367 }
5368
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005369 intel_set_pipe_timings(intel_crtc, mode, adjusted_mode);
Krzysztof Halasa734b4152010-05-25 18:41:46 +02005370
Daniel Vetter01a415f2012-10-27 15:58:40 +02005371 /* Note, this also computes intel_crtc->fdi_lanes which is used below in
5372 * ironlake_check_fdi_lanes. */
Paulo Zanonif48d8f22012-09-20 18:36:04 -03005373 ironlake_set_m_n(crtc, mode, adjusted_mode);
Chris Wilson5eddb702010-09-11 13:48:45 +01005374
Daniel Vetter01a415f2012-10-27 15:58:40 +02005375 fdi_config_ok = ironlake_check_fdi_lanes(intel_crtc);
Zhenyu Wang2c072452009-06-05 15:38:42 +08005376
Paulo Zanonic8203562012-09-12 10:06:29 -03005377 ironlake_set_pipeconf(crtc, adjusted_mode, dither);
Jesse Barnes79e53942008-11-07 14:24:08 -08005378
Jesse Barnes9d0498a2010-08-18 13:20:54 -07005379 intel_wait_for_vblank(dev, pipe);
Jesse Barnes79e53942008-11-07 14:24:08 -08005380
Paulo Zanonia1f9e772012-09-12 10:06:32 -03005381 /* Set up the display plane register */
5382 I915_WRITE(DSPCNTR(plane), DISPPLANE_GAMMA_ENABLE);
Jesse Barnesb24e7172011-01-04 15:09:30 -08005383 POSTING_READ(DSPCNTR(plane));
Jesse Barnes79e53942008-11-07 14:24:08 -08005384
Daniel Vetter94352cf2012-07-05 22:51:56 +02005385 ret = intel_pipe_set_base(crtc, x, y, fb);
Shaohua Li7662c8b2009-06-26 11:23:55 +08005386
5387 intel_update_watermarks(dev);
5388
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03005389 intel_update_linetime_watermarks(dev, pipe, adjusted_mode);
5390
Daniel Vetter01a415f2012-10-27 15:58:40 +02005391 return fdi_config_ok ? ret : -EINVAL;
Jesse Barnes79e53942008-11-07 14:24:08 -08005392}
5393
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03005394static int haswell_crtc_mode_set(struct drm_crtc *crtc,
5395 struct drm_display_mode *mode,
5396 struct drm_display_mode *adjusted_mode,
5397 int x, int y,
5398 struct drm_framebuffer *fb)
5399{
5400 struct drm_device *dev = crtc->dev;
5401 struct drm_i915_private *dev_priv = dev->dev_private;
5402 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5403 int pipe = intel_crtc->pipe;
5404 int plane = intel_crtc->plane;
5405 int num_connectors = 0;
Daniel Vettered7ef432012-12-06 14:24:21 +01005406 bool is_dp = false, is_cpu_edp = false;
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03005407 struct intel_encoder *encoder;
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03005408 int ret;
5409 bool dither;
5410
5411 for_each_encoder_on_crtc(dev, crtc, encoder) {
5412 switch (encoder->type) {
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03005413 case INTEL_OUTPUT_DISPLAYPORT:
5414 is_dp = true;
5415 break;
5416 case INTEL_OUTPUT_EDP:
5417 is_dp = true;
5418 if (!intel_encoder_is_pch_edp(&encoder->base))
5419 is_cpu_edp = true;
5420 break;
5421 }
5422
5423 num_connectors++;
5424 }
5425
Paulo Zanonia5c961d2012-10-24 15:59:34 -02005426 if (is_cpu_edp)
5427 intel_crtc->cpu_transcoder = TRANSCODER_EDP;
5428 else
5429 intel_crtc->cpu_transcoder = pipe;
5430
Paulo Zanoni5dc52982012-10-05 12:05:56 -03005431 /* We are not sure yet this won't happen. */
5432 WARN(!HAS_PCH_LPT(dev), "Unexpected PCH type %d\n",
5433 INTEL_PCH_TYPE(dev));
5434
5435 WARN(num_connectors != 1, "%d connectors attached to pipe %c\n",
5436 num_connectors, pipe_name(pipe));
5437
Paulo Zanoni702e7a52012-10-23 18:29:59 -02005438 WARN_ON(I915_READ(PIPECONF(intel_crtc->cpu_transcoder)) &
Paulo Zanoni1ce42922012-10-05 12:06:01 -03005439 (PIPECONF_ENABLE | I965_PIPECONF_ACTIVE));
5440
5441 WARN_ON(I915_READ(DSPCNTR(plane)) & DISPLAY_PLANE_ENABLE);
5442
Paulo Zanoni6441ab52012-10-05 12:05:58 -03005443 if (!intel_ddi_pll_mode_set(crtc, adjusted_mode->clock))
5444 return -EINVAL;
5445
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03005446 /* Ensure that the cursor is valid for the new mode before changing... */
5447 intel_crtc_update_cursor(crtc, true);
5448
5449 /* determine panel color depth */
Jani Nikulac8241962012-11-02 10:19:55 +02005450 dither = intel_choose_pipe_bpp_dither(crtc, fb, &intel_crtc->bpp,
5451 adjusted_mode);
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03005452
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03005453 DRM_DEBUG_KMS("Mode for pipe %d:\n", pipe);
5454 drm_mode_debug_printmodeline(mode);
5455
Daniel Vettered7ef432012-12-06 14:24:21 +01005456 if (is_dp && !is_cpu_edp)
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03005457 intel_dp_set_m_n(crtc, mode, adjusted_mode);
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03005458
5459 intel_crtc->lowfreq_avail = false;
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03005460
5461 intel_set_pipe_timings(intel_crtc, mode, adjusted_mode);
5462
Paulo Zanoni1eb8dfe2012-10-18 12:42:10 -03005463 if (!is_dp || is_cpu_edp)
5464 ironlake_set_m_n(crtc, mode, adjusted_mode);
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03005465
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03005466 haswell_set_pipeconf(crtc, adjusted_mode, dither);
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03005467
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03005468 /* Set up the display plane register */
5469 I915_WRITE(DSPCNTR(plane), DISPPLANE_GAMMA_ENABLE);
5470 POSTING_READ(DSPCNTR(plane));
5471
5472 ret = intel_pipe_set_base(crtc, x, y, fb);
5473
5474 intel_update_watermarks(dev);
5475
5476 intel_update_linetime_watermarks(dev, pipe, adjusted_mode);
5477
Jesse Barnes79e53942008-11-07 14:24:08 -08005478 return ret;
5479}
5480
Eric Anholtf564048e2011-03-30 13:01:02 -07005481static int intel_crtc_mode_set(struct drm_crtc *crtc,
5482 struct drm_display_mode *mode,
5483 struct drm_display_mode *adjusted_mode,
5484 int x, int y,
Daniel Vetter94352cf2012-07-05 22:51:56 +02005485 struct drm_framebuffer *fb)
Eric Anholtf564048e2011-03-30 13:01:02 -07005486{
5487 struct drm_device *dev = crtc->dev;
5488 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter9256aa12012-10-31 19:26:13 +01005489 struct drm_encoder_helper_funcs *encoder_funcs;
5490 struct intel_encoder *encoder;
Eric Anholt0b701d22011-03-30 13:01:03 -07005491 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5492 int pipe = intel_crtc->pipe;
Eric Anholtf564048e2011-03-30 13:01:02 -07005493 int ret;
5494
Eric Anholt0b701d22011-03-30 13:01:03 -07005495 drm_vblank_pre_modeset(dev, pipe);
5496
Eric Anholtf564048e2011-03-30 13:01:02 -07005497 ret = dev_priv->display.crtc_mode_set(crtc, mode, adjusted_mode,
Daniel Vetter94352cf2012-07-05 22:51:56 +02005498 x, y, fb);
Jesse Barnes79e53942008-11-07 14:24:08 -08005499 drm_vblank_post_modeset(dev, pipe);
5500
Daniel Vetter9256aa12012-10-31 19:26:13 +01005501 if (ret != 0)
5502 return ret;
5503
5504 for_each_encoder_on_crtc(dev, crtc, encoder) {
5505 DRM_DEBUG_KMS("[ENCODER:%d:%s] set [MODE:%d:%s]\n",
5506 encoder->base.base.id,
5507 drm_get_encoder_name(&encoder->base),
5508 mode->base.id, mode->name);
5509 encoder_funcs = encoder->base.helper_private;
5510 encoder_funcs->mode_set(&encoder->base, mode, adjusted_mode);
5511 }
5512
5513 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08005514}
5515
Wu Fengguang3a9627f2011-12-09 20:42:19 +08005516static bool intel_eld_uptodate(struct drm_connector *connector,
5517 int reg_eldv, uint32_t bits_eldv,
5518 int reg_elda, uint32_t bits_elda,
5519 int reg_edid)
5520{
5521 struct drm_i915_private *dev_priv = connector->dev->dev_private;
5522 uint8_t *eld = connector->eld;
5523 uint32_t i;
5524
5525 i = I915_READ(reg_eldv);
5526 i &= bits_eldv;
5527
5528 if (!eld[0])
5529 return !i;
5530
5531 if (!i)
5532 return false;
5533
5534 i = I915_READ(reg_elda);
5535 i &= ~bits_elda;
5536 I915_WRITE(reg_elda, i);
5537
5538 for (i = 0; i < eld[2]; i++)
5539 if (I915_READ(reg_edid) != *((uint32_t *)eld + i))
5540 return false;
5541
5542 return true;
5543}
5544
Wu Fengguange0dac652011-09-05 14:25:34 +08005545static void g4x_write_eld(struct drm_connector *connector,
5546 struct drm_crtc *crtc)
5547{
5548 struct drm_i915_private *dev_priv = connector->dev->dev_private;
5549 uint8_t *eld = connector->eld;
5550 uint32_t eldv;
5551 uint32_t len;
5552 uint32_t i;
5553
5554 i = I915_READ(G4X_AUD_VID_DID);
5555
5556 if (i == INTEL_AUDIO_DEVBLC || i == INTEL_AUDIO_DEVCL)
5557 eldv = G4X_ELDV_DEVCL_DEVBLC;
5558 else
5559 eldv = G4X_ELDV_DEVCTG;
5560
Wu Fengguang3a9627f2011-12-09 20:42:19 +08005561 if (intel_eld_uptodate(connector,
5562 G4X_AUD_CNTL_ST, eldv,
5563 G4X_AUD_CNTL_ST, G4X_ELD_ADDR,
5564 G4X_HDMIW_HDMIEDID))
5565 return;
5566
Wu Fengguange0dac652011-09-05 14:25:34 +08005567 i = I915_READ(G4X_AUD_CNTL_ST);
5568 i &= ~(eldv | G4X_ELD_ADDR);
5569 len = (i >> 9) & 0x1f; /* ELD buffer size */
5570 I915_WRITE(G4X_AUD_CNTL_ST, i);
5571
5572 if (!eld[0])
5573 return;
5574
5575 len = min_t(uint8_t, eld[2], len);
5576 DRM_DEBUG_DRIVER("ELD size %d\n", len);
5577 for (i = 0; i < len; i++)
5578 I915_WRITE(G4X_HDMIW_HDMIEDID, *((uint32_t *)eld + i));
5579
5580 i = I915_READ(G4X_AUD_CNTL_ST);
5581 i |= eldv;
5582 I915_WRITE(G4X_AUD_CNTL_ST, i);
5583}
5584
Wang Xingchao83358c852012-08-16 22:43:37 +08005585static void haswell_write_eld(struct drm_connector *connector,
5586 struct drm_crtc *crtc)
5587{
5588 struct drm_i915_private *dev_priv = connector->dev->dev_private;
5589 uint8_t *eld = connector->eld;
5590 struct drm_device *dev = crtc->dev;
5591 uint32_t eldv;
5592 uint32_t i;
5593 int len;
5594 int pipe = to_intel_crtc(crtc)->pipe;
5595 int tmp;
5596
5597 int hdmiw_hdmiedid = HSW_AUD_EDID_DATA(pipe);
5598 int aud_cntl_st = HSW_AUD_DIP_ELD_CTRL(pipe);
5599 int aud_config = HSW_AUD_CFG(pipe);
5600 int aud_cntrl_st2 = HSW_AUD_PIN_ELD_CP_VLD;
5601
5602
5603 DRM_DEBUG_DRIVER("HDMI: Haswell Audio initialize....\n");
5604
5605 /* Audio output enable */
5606 DRM_DEBUG_DRIVER("HDMI audio: enable codec\n");
5607 tmp = I915_READ(aud_cntrl_st2);
5608 tmp |= (AUDIO_OUTPUT_ENABLE_A << (pipe * 4));
5609 I915_WRITE(aud_cntrl_st2, tmp);
5610
5611 /* Wait for 1 vertical blank */
5612 intel_wait_for_vblank(dev, pipe);
5613
5614 /* Set ELD valid state */
5615 tmp = I915_READ(aud_cntrl_st2);
5616 DRM_DEBUG_DRIVER("HDMI audio: pin eld vld status=0x%8x\n", tmp);
5617 tmp |= (AUDIO_ELD_VALID_A << (pipe * 4));
5618 I915_WRITE(aud_cntrl_st2, tmp);
5619 tmp = I915_READ(aud_cntrl_st2);
5620 DRM_DEBUG_DRIVER("HDMI audio: eld vld status=0x%8x\n", tmp);
5621
5622 /* Enable HDMI mode */
5623 tmp = I915_READ(aud_config);
5624 DRM_DEBUG_DRIVER("HDMI audio: audio conf: 0x%8x\n", tmp);
5625 /* clear N_programing_enable and N_value_index */
5626 tmp &= ~(AUD_CONFIG_N_VALUE_INDEX | AUD_CONFIG_N_PROG_ENABLE);
5627 I915_WRITE(aud_config, tmp);
5628
5629 DRM_DEBUG_DRIVER("ELD on pipe %c\n", pipe_name(pipe));
5630
5631 eldv = AUDIO_ELD_VALID_A << (pipe * 4);
5632
5633 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT)) {
5634 DRM_DEBUG_DRIVER("ELD: DisplayPort detected\n");
5635 eld[5] |= (1 << 2); /* Conn_Type, 0x1 = DisplayPort */
5636 I915_WRITE(aud_config, AUD_CONFIG_N_VALUE_INDEX); /* 0x1 = DP */
5637 } else
5638 I915_WRITE(aud_config, 0);
5639
5640 if (intel_eld_uptodate(connector,
5641 aud_cntrl_st2, eldv,
5642 aud_cntl_st, IBX_ELD_ADDRESS,
5643 hdmiw_hdmiedid))
5644 return;
5645
5646 i = I915_READ(aud_cntrl_st2);
5647 i &= ~eldv;
5648 I915_WRITE(aud_cntrl_st2, i);
5649
5650 if (!eld[0])
5651 return;
5652
5653 i = I915_READ(aud_cntl_st);
5654 i &= ~IBX_ELD_ADDRESS;
5655 I915_WRITE(aud_cntl_st, i);
5656 i = (i >> 29) & DIP_PORT_SEL_MASK; /* DIP_Port_Select, 0x1 = PortB */
5657 DRM_DEBUG_DRIVER("port num:%d\n", i);
5658
5659 len = min_t(uint8_t, eld[2], 21); /* 84 bytes of hw ELD buffer */
5660 DRM_DEBUG_DRIVER("ELD size %d\n", len);
5661 for (i = 0; i < len; i++)
5662 I915_WRITE(hdmiw_hdmiedid, *((uint32_t *)eld + i));
5663
5664 i = I915_READ(aud_cntrl_st2);
5665 i |= eldv;
5666 I915_WRITE(aud_cntrl_st2, i);
5667
5668}
5669
Wu Fengguange0dac652011-09-05 14:25:34 +08005670static void ironlake_write_eld(struct drm_connector *connector,
5671 struct drm_crtc *crtc)
5672{
5673 struct drm_i915_private *dev_priv = connector->dev->dev_private;
5674 uint8_t *eld = connector->eld;
5675 uint32_t eldv;
5676 uint32_t i;
5677 int len;
5678 int hdmiw_hdmiedid;
Wu Fengguangb6daa022012-01-06 14:41:31 -06005679 int aud_config;
Wu Fengguange0dac652011-09-05 14:25:34 +08005680 int aud_cntl_st;
5681 int aud_cntrl_st2;
Wang Xingchao9b138a82012-08-09 16:52:18 +08005682 int pipe = to_intel_crtc(crtc)->pipe;
Wu Fengguange0dac652011-09-05 14:25:34 +08005683
Wu Fengguangb3f33cb2011-12-09 20:42:17 +08005684 if (HAS_PCH_IBX(connector->dev)) {
Wang Xingchao9b138a82012-08-09 16:52:18 +08005685 hdmiw_hdmiedid = IBX_HDMIW_HDMIEDID(pipe);
5686 aud_config = IBX_AUD_CFG(pipe);
5687 aud_cntl_st = IBX_AUD_CNTL_ST(pipe);
Wu Fengguang1202b4c62011-12-09 20:42:18 +08005688 aud_cntrl_st2 = IBX_AUD_CNTL_ST2;
Wu Fengguange0dac652011-09-05 14:25:34 +08005689 } else {
Wang Xingchao9b138a82012-08-09 16:52:18 +08005690 hdmiw_hdmiedid = CPT_HDMIW_HDMIEDID(pipe);
5691 aud_config = CPT_AUD_CFG(pipe);
5692 aud_cntl_st = CPT_AUD_CNTL_ST(pipe);
Wu Fengguang1202b4c62011-12-09 20:42:18 +08005693 aud_cntrl_st2 = CPT_AUD_CNTRL_ST2;
Wu Fengguange0dac652011-09-05 14:25:34 +08005694 }
5695
Wang Xingchao9b138a82012-08-09 16:52:18 +08005696 DRM_DEBUG_DRIVER("ELD on pipe %c\n", pipe_name(pipe));
Wu Fengguange0dac652011-09-05 14:25:34 +08005697
5698 i = I915_READ(aud_cntl_st);
Wang Xingchao9b138a82012-08-09 16:52:18 +08005699 i = (i >> 29) & DIP_PORT_SEL_MASK; /* DIP_Port_Select, 0x1 = PortB */
Wu Fengguange0dac652011-09-05 14:25:34 +08005700 if (!i) {
5701 DRM_DEBUG_DRIVER("Audio directed to unknown port\n");
5702 /* operate blindly on all ports */
Wu Fengguang1202b4c62011-12-09 20:42:18 +08005703 eldv = IBX_ELD_VALIDB;
5704 eldv |= IBX_ELD_VALIDB << 4;
5705 eldv |= IBX_ELD_VALIDB << 8;
Wu Fengguange0dac652011-09-05 14:25:34 +08005706 } else {
5707 DRM_DEBUG_DRIVER("ELD on port %c\n", 'A' + i);
Wu Fengguang1202b4c62011-12-09 20:42:18 +08005708 eldv = IBX_ELD_VALIDB << ((i - 1) * 4);
Wu Fengguange0dac652011-09-05 14:25:34 +08005709 }
5710
Wu Fengguang3a9627f2011-12-09 20:42:19 +08005711 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT)) {
5712 DRM_DEBUG_DRIVER("ELD: DisplayPort detected\n");
5713 eld[5] |= (1 << 2); /* Conn_Type, 0x1 = DisplayPort */
Wu Fengguangb6daa022012-01-06 14:41:31 -06005714 I915_WRITE(aud_config, AUD_CONFIG_N_VALUE_INDEX); /* 0x1 = DP */
5715 } else
5716 I915_WRITE(aud_config, 0);
Wu Fengguang3a9627f2011-12-09 20:42:19 +08005717
5718 if (intel_eld_uptodate(connector,
5719 aud_cntrl_st2, eldv,
5720 aud_cntl_st, IBX_ELD_ADDRESS,
5721 hdmiw_hdmiedid))
5722 return;
5723
Wu Fengguange0dac652011-09-05 14:25:34 +08005724 i = I915_READ(aud_cntrl_st2);
5725 i &= ~eldv;
5726 I915_WRITE(aud_cntrl_st2, i);
5727
5728 if (!eld[0])
5729 return;
5730
Wu Fengguange0dac652011-09-05 14:25:34 +08005731 i = I915_READ(aud_cntl_st);
Wu Fengguang1202b4c62011-12-09 20:42:18 +08005732 i &= ~IBX_ELD_ADDRESS;
Wu Fengguange0dac652011-09-05 14:25:34 +08005733 I915_WRITE(aud_cntl_st, i);
5734
5735 len = min_t(uint8_t, eld[2], 21); /* 84 bytes of hw ELD buffer */
5736 DRM_DEBUG_DRIVER("ELD size %d\n", len);
5737 for (i = 0; i < len; i++)
5738 I915_WRITE(hdmiw_hdmiedid, *((uint32_t *)eld + i));
5739
5740 i = I915_READ(aud_cntrl_st2);
5741 i |= eldv;
5742 I915_WRITE(aud_cntrl_st2, i);
5743}
5744
5745void intel_write_eld(struct drm_encoder *encoder,
5746 struct drm_display_mode *mode)
5747{
5748 struct drm_crtc *crtc = encoder->crtc;
5749 struct drm_connector *connector;
5750 struct drm_device *dev = encoder->dev;
5751 struct drm_i915_private *dev_priv = dev->dev_private;
5752
5753 connector = drm_select_eld(encoder, mode);
5754 if (!connector)
5755 return;
5756
5757 DRM_DEBUG_DRIVER("ELD on [CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
5758 connector->base.id,
5759 drm_get_connector_name(connector),
5760 connector->encoder->base.id,
5761 drm_get_encoder_name(connector->encoder));
5762
5763 connector->eld[6] = drm_av_sync_delay(connector, mode) / 2;
5764
5765 if (dev_priv->display.write_eld)
5766 dev_priv->display.write_eld(connector, crtc);
5767}
5768
Jesse Barnes79e53942008-11-07 14:24:08 -08005769/** Loads the palette/gamma unit for the CRTC with the prepared values */
5770void intel_crtc_load_lut(struct drm_crtc *crtc)
5771{
5772 struct drm_device *dev = crtc->dev;
5773 struct drm_i915_private *dev_priv = dev->dev_private;
5774 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08005775 int palreg = PALETTE(intel_crtc->pipe);
Jesse Barnes79e53942008-11-07 14:24:08 -08005776 int i;
5777
5778 /* The clocks have to be on to load the palette. */
Alban Browaeysaed3f092012-02-24 17:12:45 +00005779 if (!crtc->enabled || !intel_crtc->active)
Jesse Barnes79e53942008-11-07 14:24:08 -08005780 return;
5781
Adam Jacksonf2b115e2009-12-03 17:14:42 -05005782 /* use legacy palette for Ironlake */
Eric Anholtbad720f2009-10-22 16:11:14 -07005783 if (HAS_PCH_SPLIT(dev))
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08005784 palreg = LGC_PALETTE(intel_crtc->pipe);
Zhenyu Wang2c072452009-06-05 15:38:42 +08005785
Jesse Barnes79e53942008-11-07 14:24:08 -08005786 for (i = 0; i < 256; i++) {
5787 I915_WRITE(palreg + 4 * i,
5788 (intel_crtc->lut_r[i] << 16) |
5789 (intel_crtc->lut_g[i] << 8) |
5790 intel_crtc->lut_b[i]);
5791 }
5792}
5793
Chris Wilson560b85b2010-08-07 11:01:38 +01005794static void i845_update_cursor(struct drm_crtc *crtc, u32 base)
5795{
5796 struct drm_device *dev = crtc->dev;
5797 struct drm_i915_private *dev_priv = dev->dev_private;
5798 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5799 bool visible = base != 0;
5800 u32 cntl;
5801
5802 if (intel_crtc->cursor_visible == visible)
5803 return;
5804
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08005805 cntl = I915_READ(_CURACNTR);
Chris Wilson560b85b2010-08-07 11:01:38 +01005806 if (visible) {
5807 /* On these chipsets we can only modify the base whilst
5808 * the cursor is disabled.
5809 */
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08005810 I915_WRITE(_CURABASE, base);
Chris Wilson560b85b2010-08-07 11:01:38 +01005811
5812 cntl &= ~(CURSOR_FORMAT_MASK);
5813 /* XXX width must be 64, stride 256 => 0x00 << 28 */
5814 cntl |= CURSOR_ENABLE |
5815 CURSOR_GAMMA_ENABLE |
5816 CURSOR_FORMAT_ARGB;
5817 } else
5818 cntl &= ~(CURSOR_ENABLE | CURSOR_GAMMA_ENABLE);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08005819 I915_WRITE(_CURACNTR, cntl);
Chris Wilson560b85b2010-08-07 11:01:38 +01005820
5821 intel_crtc->cursor_visible = visible;
5822}
5823
5824static void i9xx_update_cursor(struct drm_crtc *crtc, u32 base)
5825{
5826 struct drm_device *dev = crtc->dev;
5827 struct drm_i915_private *dev_priv = dev->dev_private;
5828 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5829 int pipe = intel_crtc->pipe;
5830 bool visible = base != 0;
5831
5832 if (intel_crtc->cursor_visible != visible) {
Jesse Barnes548f2452011-02-17 10:40:53 -08005833 uint32_t cntl = I915_READ(CURCNTR(pipe));
Chris Wilson560b85b2010-08-07 11:01:38 +01005834 if (base) {
5835 cntl &= ~(CURSOR_MODE | MCURSOR_PIPE_SELECT);
5836 cntl |= CURSOR_MODE_64_ARGB_AX | MCURSOR_GAMMA_ENABLE;
5837 cntl |= pipe << 28; /* Connect to correct pipe */
5838 } else {
5839 cntl &= ~(CURSOR_MODE | MCURSOR_GAMMA_ENABLE);
5840 cntl |= CURSOR_MODE_DISABLE;
5841 }
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08005842 I915_WRITE(CURCNTR(pipe), cntl);
Chris Wilson560b85b2010-08-07 11:01:38 +01005843
5844 intel_crtc->cursor_visible = visible;
5845 }
5846 /* and commit changes on next vblank */
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08005847 I915_WRITE(CURBASE(pipe), base);
Chris Wilson560b85b2010-08-07 11:01:38 +01005848}
5849
Jesse Barnes65a21cd2011-10-12 11:10:21 -07005850static void ivb_update_cursor(struct drm_crtc *crtc, u32 base)
5851{
5852 struct drm_device *dev = crtc->dev;
5853 struct drm_i915_private *dev_priv = dev->dev_private;
5854 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5855 int pipe = intel_crtc->pipe;
5856 bool visible = base != 0;
5857
5858 if (intel_crtc->cursor_visible != visible) {
5859 uint32_t cntl = I915_READ(CURCNTR_IVB(pipe));
5860 if (base) {
5861 cntl &= ~CURSOR_MODE;
5862 cntl |= CURSOR_MODE_64_ARGB_AX | MCURSOR_GAMMA_ENABLE;
5863 } else {
5864 cntl &= ~(CURSOR_MODE | MCURSOR_GAMMA_ENABLE);
5865 cntl |= CURSOR_MODE_DISABLE;
5866 }
5867 I915_WRITE(CURCNTR_IVB(pipe), cntl);
5868
5869 intel_crtc->cursor_visible = visible;
5870 }
5871 /* and commit changes on next vblank */
5872 I915_WRITE(CURBASE_IVB(pipe), base);
5873}
5874
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01005875/* If no-part of the cursor is visible on the framebuffer, then the GPU may hang... */
Chris Wilson6b383a72010-09-13 13:54:26 +01005876static void intel_crtc_update_cursor(struct drm_crtc *crtc,
5877 bool on)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01005878{
5879 struct drm_device *dev = crtc->dev;
5880 struct drm_i915_private *dev_priv = dev->dev_private;
5881 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5882 int pipe = intel_crtc->pipe;
5883 int x = intel_crtc->cursor_x;
5884 int y = intel_crtc->cursor_y;
Chris Wilson560b85b2010-08-07 11:01:38 +01005885 u32 base, pos;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01005886 bool visible;
5887
5888 pos = 0;
5889
Chris Wilson6b383a72010-09-13 13:54:26 +01005890 if (on && crtc->enabled && crtc->fb) {
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01005891 base = intel_crtc->cursor_addr;
5892 if (x > (int) crtc->fb->width)
5893 base = 0;
5894
5895 if (y > (int) crtc->fb->height)
5896 base = 0;
5897 } else
5898 base = 0;
5899
5900 if (x < 0) {
5901 if (x + intel_crtc->cursor_width < 0)
5902 base = 0;
5903
5904 pos |= CURSOR_POS_SIGN << CURSOR_X_SHIFT;
5905 x = -x;
5906 }
5907 pos |= x << CURSOR_X_SHIFT;
5908
5909 if (y < 0) {
5910 if (y + intel_crtc->cursor_height < 0)
5911 base = 0;
5912
5913 pos |= CURSOR_POS_SIGN << CURSOR_Y_SHIFT;
5914 y = -y;
5915 }
5916 pos |= y << CURSOR_Y_SHIFT;
5917
5918 visible = base != 0;
Chris Wilson560b85b2010-08-07 11:01:38 +01005919 if (!visible && !intel_crtc->cursor_visible)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01005920 return;
5921
Eugeni Dodonov0cd83aa2012-04-13 17:08:48 -03005922 if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev)) {
Jesse Barnes65a21cd2011-10-12 11:10:21 -07005923 I915_WRITE(CURPOS_IVB(pipe), pos);
5924 ivb_update_cursor(crtc, base);
5925 } else {
5926 I915_WRITE(CURPOS(pipe), pos);
5927 if (IS_845G(dev) || IS_I865G(dev))
5928 i845_update_cursor(crtc, base);
5929 else
5930 i9xx_update_cursor(crtc, base);
5931 }
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01005932}
5933
Jesse Barnes79e53942008-11-07 14:24:08 -08005934static int intel_crtc_cursor_set(struct drm_crtc *crtc,
Chris Wilson05394f32010-11-08 19:18:58 +00005935 struct drm_file *file,
Jesse Barnes79e53942008-11-07 14:24:08 -08005936 uint32_t handle,
5937 uint32_t width, uint32_t height)
5938{
5939 struct drm_device *dev = crtc->dev;
5940 struct drm_i915_private *dev_priv = dev->dev_private;
5941 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Chris Wilson05394f32010-11-08 19:18:58 +00005942 struct drm_i915_gem_object *obj;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01005943 uint32_t addr;
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05005944 int ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08005945
Jesse Barnes79e53942008-11-07 14:24:08 -08005946 /* if we want to turn off the cursor ignore width and height */
5947 if (!handle) {
Zhao Yakui28c97732009-10-09 11:39:41 +08005948 DRM_DEBUG_KMS("cursor off\n");
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05005949 addr = 0;
Chris Wilson05394f32010-11-08 19:18:58 +00005950 obj = NULL;
Pierre Willenbrock50044172009-02-23 10:12:15 +10005951 mutex_lock(&dev->struct_mutex);
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05005952 goto finish;
Jesse Barnes79e53942008-11-07 14:24:08 -08005953 }
5954
5955 /* Currently we only support 64x64 cursors */
5956 if (width != 64 || height != 64) {
5957 DRM_ERROR("we currently only support 64x64 cursors\n");
5958 return -EINVAL;
5959 }
5960
Chris Wilson05394f32010-11-08 19:18:58 +00005961 obj = to_intel_bo(drm_gem_object_lookup(dev, file, handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00005962 if (&obj->base == NULL)
Jesse Barnes79e53942008-11-07 14:24:08 -08005963 return -ENOENT;
5964
Chris Wilson05394f32010-11-08 19:18:58 +00005965 if (obj->base.size < width * height * 4) {
Jesse Barnes79e53942008-11-07 14:24:08 -08005966 DRM_ERROR("buffer is to small\n");
Dave Airlie34b8686e2009-01-15 14:03:07 +10005967 ret = -ENOMEM;
5968 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -08005969 }
5970
Dave Airlie71acb5e2008-12-30 20:31:46 +10005971 /* we only need to pin inside GTT if cursor is non-phy */
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05005972 mutex_lock(&dev->struct_mutex);
Kristian Høgsbergb295d1b2009-12-16 15:16:17 -05005973 if (!dev_priv->info->cursor_needs_physical) {
Chris Wilsond9e86c02010-11-10 16:40:20 +00005974 if (obj->tiling_mode) {
5975 DRM_ERROR("cursor cannot be tiled\n");
5976 ret = -EINVAL;
5977 goto fail_locked;
5978 }
5979
Chris Wilson2da3b9b2011-04-14 09:41:17 +01005980 ret = i915_gem_object_pin_to_display_plane(obj, 0, NULL);
Chris Wilsone7b526b2010-06-02 08:30:48 +01005981 if (ret) {
5982 DRM_ERROR("failed to move cursor bo into the GTT\n");
Chris Wilson2da3b9b2011-04-14 09:41:17 +01005983 goto fail_locked;
Chris Wilsone7b526b2010-06-02 08:30:48 +01005984 }
5985
Chris Wilsond9e86c02010-11-10 16:40:20 +00005986 ret = i915_gem_object_put_fence(obj);
5987 if (ret) {
Chris Wilson2da3b9b2011-04-14 09:41:17 +01005988 DRM_ERROR("failed to release fence for cursor");
Chris Wilsond9e86c02010-11-10 16:40:20 +00005989 goto fail_unpin;
5990 }
5991
Chris Wilson05394f32010-11-08 19:18:58 +00005992 addr = obj->gtt_offset;
Dave Airlie71acb5e2008-12-30 20:31:46 +10005993 } else {
Chris Wilson6eeefaf2010-08-07 11:01:39 +01005994 int align = IS_I830(dev) ? 16 * 1024 : 256;
Chris Wilson05394f32010-11-08 19:18:58 +00005995 ret = i915_gem_attach_phys_object(dev, obj,
Chris Wilson6eeefaf2010-08-07 11:01:39 +01005996 (intel_crtc->pipe == 0) ? I915_GEM_PHYS_CURSOR_0 : I915_GEM_PHYS_CURSOR_1,
5997 align);
Dave Airlie71acb5e2008-12-30 20:31:46 +10005998 if (ret) {
5999 DRM_ERROR("failed to attach phys object\n");
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05006000 goto fail_locked;
Dave Airlie71acb5e2008-12-30 20:31:46 +10006001 }
Chris Wilson05394f32010-11-08 19:18:58 +00006002 addr = obj->phys_obj->handle->busaddr;
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05006003 }
6004
Chris Wilsona6c45cf2010-09-17 00:32:17 +01006005 if (IS_GEN2(dev))
Jesse Barnes14b60392009-05-20 16:47:08 -04006006 I915_WRITE(CURSIZE, (height << 12) | width);
6007
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05006008 finish:
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05006009 if (intel_crtc->cursor_bo) {
Kristian Høgsbergb295d1b2009-12-16 15:16:17 -05006010 if (dev_priv->info->cursor_needs_physical) {
Chris Wilson05394f32010-11-08 19:18:58 +00006011 if (intel_crtc->cursor_bo != obj)
Dave Airlie71acb5e2008-12-30 20:31:46 +10006012 i915_gem_detach_phys_object(dev, intel_crtc->cursor_bo);
6013 } else
6014 i915_gem_object_unpin(intel_crtc->cursor_bo);
Chris Wilson05394f32010-11-08 19:18:58 +00006015 drm_gem_object_unreference(&intel_crtc->cursor_bo->base);
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05006016 }
Jesse Barnes80824002009-09-10 15:28:06 -07006017
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05006018 mutex_unlock(&dev->struct_mutex);
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05006019
6020 intel_crtc->cursor_addr = addr;
Chris Wilson05394f32010-11-08 19:18:58 +00006021 intel_crtc->cursor_bo = obj;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01006022 intel_crtc->cursor_width = width;
6023 intel_crtc->cursor_height = height;
6024
Chris Wilson6b383a72010-09-13 13:54:26 +01006025 intel_crtc_update_cursor(crtc, true);
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05006026
Jesse Barnes79e53942008-11-07 14:24:08 -08006027 return 0;
Chris Wilsone7b526b2010-06-02 08:30:48 +01006028fail_unpin:
Chris Wilson05394f32010-11-08 19:18:58 +00006029 i915_gem_object_unpin(obj);
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05006030fail_locked:
Dave Airlie34b8686e2009-01-15 14:03:07 +10006031 mutex_unlock(&dev->struct_mutex);
Luca Barbieribc9025b2010-02-09 05:49:12 +00006032fail:
Chris Wilson05394f32010-11-08 19:18:58 +00006033 drm_gem_object_unreference_unlocked(&obj->base);
Dave Airlie34b8686e2009-01-15 14:03:07 +10006034 return ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08006035}
6036
6037static int intel_crtc_cursor_move(struct drm_crtc *crtc, int x, int y)
6038{
Jesse Barnes79e53942008-11-07 14:24:08 -08006039 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08006040
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01006041 intel_crtc->cursor_x = x;
6042 intel_crtc->cursor_y = y;
Jesse Barnes652c3932009-08-17 13:31:43 -07006043
Chris Wilson6b383a72010-09-13 13:54:26 +01006044 intel_crtc_update_cursor(crtc, true);
Jesse Barnes79e53942008-11-07 14:24:08 -08006045
6046 return 0;
6047}
6048
6049/** Sets the color ramps on behalf of RandR */
6050void intel_crtc_fb_gamma_set(struct drm_crtc *crtc, u16 red, u16 green,
6051 u16 blue, int regno)
6052{
6053 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6054
6055 intel_crtc->lut_r[regno] = red >> 8;
6056 intel_crtc->lut_g[regno] = green >> 8;
6057 intel_crtc->lut_b[regno] = blue >> 8;
6058}
6059
Dave Airlieb8c00ac2009-10-06 13:54:01 +10006060void intel_crtc_fb_gamma_get(struct drm_crtc *crtc, u16 *red, u16 *green,
6061 u16 *blue, int regno)
6062{
6063 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6064
6065 *red = intel_crtc->lut_r[regno] << 8;
6066 *green = intel_crtc->lut_g[regno] << 8;
6067 *blue = intel_crtc->lut_b[regno] << 8;
6068}
6069
Jesse Barnes79e53942008-11-07 14:24:08 -08006070static void intel_crtc_gamma_set(struct drm_crtc *crtc, u16 *red, u16 *green,
James Simmons72034252010-08-03 01:33:19 +01006071 u16 *blue, uint32_t start, uint32_t size)
Jesse Barnes79e53942008-11-07 14:24:08 -08006072{
James Simmons72034252010-08-03 01:33:19 +01006073 int end = (start + size > 256) ? 256 : start + size, i;
Jesse Barnes79e53942008-11-07 14:24:08 -08006074 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08006075
James Simmons72034252010-08-03 01:33:19 +01006076 for (i = start; i < end; i++) {
Jesse Barnes79e53942008-11-07 14:24:08 -08006077 intel_crtc->lut_r[i] = red[i] >> 8;
6078 intel_crtc->lut_g[i] = green[i] >> 8;
6079 intel_crtc->lut_b[i] = blue[i] >> 8;
6080 }
6081
6082 intel_crtc_load_lut(crtc);
6083}
6084
6085/**
6086 * Get a pipe with a simple mode set on it for doing load-based monitor
6087 * detection.
6088 *
6089 * It will be up to the load-detect code to adjust the pipe as appropriate for
Eric Anholtc751ce42010-03-25 11:48:48 -07006090 * its requirements. The pipe will be connected to no other encoders.
Jesse Barnes79e53942008-11-07 14:24:08 -08006091 *
Eric Anholtc751ce42010-03-25 11:48:48 -07006092 * Currently this code will only succeed if there is a pipe with no encoders
Jesse Barnes79e53942008-11-07 14:24:08 -08006093 * configured for it. In the future, it could choose to temporarily disable
6094 * some outputs to free up a pipe for its use.
6095 *
6096 * \return crtc, or NULL if no pipes are available.
6097 */
6098
6099/* VESA 640x480x72Hz mode to set on the pipe */
6100static struct drm_display_mode load_detect_mode = {
6101 DRM_MODE("640x480", DRM_MODE_TYPE_DEFAULT, 31500, 640, 664,
6102 704, 832, 0, 480, 489, 491, 520, 0, DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
6103};
6104
Chris Wilsond2dff872011-04-19 08:36:26 +01006105static struct drm_framebuffer *
6106intel_framebuffer_create(struct drm_device *dev,
Jesse Barnes308e5bc2011-11-14 14:51:28 -08006107 struct drm_mode_fb_cmd2 *mode_cmd,
Chris Wilsond2dff872011-04-19 08:36:26 +01006108 struct drm_i915_gem_object *obj)
6109{
6110 struct intel_framebuffer *intel_fb;
6111 int ret;
6112
6113 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
6114 if (!intel_fb) {
6115 drm_gem_object_unreference_unlocked(&obj->base);
6116 return ERR_PTR(-ENOMEM);
6117 }
6118
6119 ret = intel_framebuffer_init(dev, intel_fb, mode_cmd, obj);
6120 if (ret) {
6121 drm_gem_object_unreference_unlocked(&obj->base);
6122 kfree(intel_fb);
6123 return ERR_PTR(ret);
6124 }
6125
6126 return &intel_fb->base;
6127}
6128
6129static u32
6130intel_framebuffer_pitch_for_width(int width, int bpp)
6131{
6132 u32 pitch = DIV_ROUND_UP(width * bpp, 8);
6133 return ALIGN(pitch, 64);
6134}
6135
6136static u32
6137intel_framebuffer_size_for_mode(struct drm_display_mode *mode, int bpp)
6138{
6139 u32 pitch = intel_framebuffer_pitch_for_width(mode->hdisplay, bpp);
6140 return ALIGN(pitch * mode->vdisplay, PAGE_SIZE);
6141}
6142
6143static struct drm_framebuffer *
6144intel_framebuffer_create_for_mode(struct drm_device *dev,
6145 struct drm_display_mode *mode,
6146 int depth, int bpp)
6147{
6148 struct drm_i915_gem_object *obj;
Chris Wilson0fed39b2012-11-05 22:25:07 +00006149 struct drm_mode_fb_cmd2 mode_cmd = { 0 };
Chris Wilsond2dff872011-04-19 08:36:26 +01006150
6151 obj = i915_gem_alloc_object(dev,
6152 intel_framebuffer_size_for_mode(mode, bpp));
6153 if (obj == NULL)
6154 return ERR_PTR(-ENOMEM);
6155
6156 mode_cmd.width = mode->hdisplay;
6157 mode_cmd.height = mode->vdisplay;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08006158 mode_cmd.pitches[0] = intel_framebuffer_pitch_for_width(mode_cmd.width,
6159 bpp);
Dave Airlie5ca0c342012-02-23 15:33:40 +00006160 mode_cmd.pixel_format = drm_mode_legacy_fb_format(bpp, depth);
Chris Wilsond2dff872011-04-19 08:36:26 +01006161
6162 return intel_framebuffer_create(dev, &mode_cmd, obj);
6163}
6164
6165static struct drm_framebuffer *
6166mode_fits_in_fbdev(struct drm_device *dev,
6167 struct drm_display_mode *mode)
6168{
6169 struct drm_i915_private *dev_priv = dev->dev_private;
6170 struct drm_i915_gem_object *obj;
6171 struct drm_framebuffer *fb;
6172
6173 if (dev_priv->fbdev == NULL)
6174 return NULL;
6175
6176 obj = dev_priv->fbdev->ifb.obj;
6177 if (obj == NULL)
6178 return NULL;
6179
6180 fb = &dev_priv->fbdev->ifb.base;
Ville Syrjälä01f2c772011-12-20 00:06:49 +02006181 if (fb->pitches[0] < intel_framebuffer_pitch_for_width(mode->hdisplay,
6182 fb->bits_per_pixel))
Chris Wilsond2dff872011-04-19 08:36:26 +01006183 return NULL;
6184
Ville Syrjälä01f2c772011-12-20 00:06:49 +02006185 if (obj->base.size < mode->vdisplay * fb->pitches[0])
Chris Wilsond2dff872011-04-19 08:36:26 +01006186 return NULL;
6187
6188 return fb;
6189}
6190
Daniel Vetterd2434ab2012-08-12 21:20:10 +02006191bool intel_get_load_detect_pipe(struct drm_connector *connector,
Chris Wilson71731882011-04-19 23:10:58 +01006192 struct drm_display_mode *mode,
Chris Wilson8261b192011-04-19 23:18:09 +01006193 struct intel_load_detect_pipe *old)
Jesse Barnes79e53942008-11-07 14:24:08 -08006194{
6195 struct intel_crtc *intel_crtc;
Daniel Vetterd2434ab2012-08-12 21:20:10 +02006196 struct intel_encoder *intel_encoder =
6197 intel_attached_encoder(connector);
Jesse Barnes79e53942008-11-07 14:24:08 -08006198 struct drm_crtc *possible_crtc;
Chris Wilson4ef69c72010-09-09 15:14:28 +01006199 struct drm_encoder *encoder = &intel_encoder->base;
Jesse Barnes79e53942008-11-07 14:24:08 -08006200 struct drm_crtc *crtc = NULL;
6201 struct drm_device *dev = encoder->dev;
Daniel Vetter94352cf2012-07-05 22:51:56 +02006202 struct drm_framebuffer *fb;
Jesse Barnes79e53942008-11-07 14:24:08 -08006203 int i = -1;
6204
Chris Wilsond2dff872011-04-19 08:36:26 +01006205 DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
6206 connector->base.id, drm_get_connector_name(connector),
6207 encoder->base.id, drm_get_encoder_name(encoder));
6208
Jesse Barnes79e53942008-11-07 14:24:08 -08006209 /*
6210 * Algorithm gets a little messy:
Chris Wilson7a5e4802011-04-19 23:21:12 +01006211 *
Jesse Barnes79e53942008-11-07 14:24:08 -08006212 * - if the connector already has an assigned crtc, use it (but make
6213 * sure it's on first)
Chris Wilson7a5e4802011-04-19 23:21:12 +01006214 *
Jesse Barnes79e53942008-11-07 14:24:08 -08006215 * - try to find the first unused crtc that can drive this connector,
6216 * and use that if we find one
Jesse Barnes79e53942008-11-07 14:24:08 -08006217 */
6218
6219 /* See if we already have a CRTC for this connector */
6220 if (encoder->crtc) {
6221 crtc = encoder->crtc;
Chris Wilson8261b192011-04-19 23:18:09 +01006222
Daniel Vetter24218aa2012-08-12 19:27:11 +02006223 old->dpms_mode = connector->dpms;
Chris Wilson8261b192011-04-19 23:18:09 +01006224 old->load_detect_temp = false;
6225
6226 /* Make sure the crtc and connector are running */
Daniel Vetter24218aa2012-08-12 19:27:11 +02006227 if (connector->dpms != DRM_MODE_DPMS_ON)
6228 connector->funcs->dpms(connector, DRM_MODE_DPMS_ON);
Chris Wilson8261b192011-04-19 23:18:09 +01006229
Chris Wilson71731882011-04-19 23:10:58 +01006230 return true;
Jesse Barnes79e53942008-11-07 14:24:08 -08006231 }
6232
6233 /* Find an unused one (if possible) */
6234 list_for_each_entry(possible_crtc, &dev->mode_config.crtc_list, head) {
6235 i++;
6236 if (!(encoder->possible_crtcs & (1 << i)))
6237 continue;
6238 if (!possible_crtc->enabled) {
6239 crtc = possible_crtc;
6240 break;
6241 }
Jesse Barnes79e53942008-11-07 14:24:08 -08006242 }
6243
6244 /*
6245 * If we didn't find an unused CRTC, don't use any.
6246 */
6247 if (!crtc) {
Chris Wilson71731882011-04-19 23:10:58 +01006248 DRM_DEBUG_KMS("no pipe available for load-detect\n");
6249 return false;
Jesse Barnes79e53942008-11-07 14:24:08 -08006250 }
6251
Daniel Vetterfc303102012-07-09 10:40:58 +02006252 intel_encoder->new_crtc = to_intel_crtc(crtc);
6253 to_intel_connector(connector)->new_encoder = intel_encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08006254
6255 intel_crtc = to_intel_crtc(crtc);
Daniel Vetter24218aa2012-08-12 19:27:11 +02006256 old->dpms_mode = connector->dpms;
Chris Wilson8261b192011-04-19 23:18:09 +01006257 old->load_detect_temp = true;
Chris Wilsond2dff872011-04-19 08:36:26 +01006258 old->release_fb = NULL;
Jesse Barnes79e53942008-11-07 14:24:08 -08006259
Chris Wilson64927112011-04-20 07:25:26 +01006260 if (!mode)
6261 mode = &load_detect_mode;
Jesse Barnes79e53942008-11-07 14:24:08 -08006262
Chris Wilsond2dff872011-04-19 08:36:26 +01006263 /* We need a framebuffer large enough to accommodate all accesses
6264 * that the plane may generate whilst we perform load detection.
6265 * We can not rely on the fbcon either being present (we get called
6266 * during its initialisation to detect all boot displays, or it may
6267 * not even exist) or that it is large enough to satisfy the
6268 * requested mode.
6269 */
Daniel Vetter94352cf2012-07-05 22:51:56 +02006270 fb = mode_fits_in_fbdev(dev, mode);
6271 if (fb == NULL) {
Chris Wilsond2dff872011-04-19 08:36:26 +01006272 DRM_DEBUG_KMS("creating tmp fb for load-detection\n");
Daniel Vetter94352cf2012-07-05 22:51:56 +02006273 fb = intel_framebuffer_create_for_mode(dev, mode, 24, 32);
6274 old->release_fb = fb;
Chris Wilsond2dff872011-04-19 08:36:26 +01006275 } else
6276 DRM_DEBUG_KMS("reusing fbdev for load-detection framebuffer\n");
Daniel Vetter94352cf2012-07-05 22:51:56 +02006277 if (IS_ERR(fb)) {
Chris Wilsond2dff872011-04-19 08:36:26 +01006278 DRM_DEBUG_KMS("failed to allocate framebuffer for load-detection\n");
Chris Wilson0e8b3d32012-11-05 22:25:08 +00006279 return false;
Jesse Barnes79e53942008-11-07 14:24:08 -08006280 }
Chris Wilsond2dff872011-04-19 08:36:26 +01006281
Daniel Vetter94352cf2012-07-05 22:51:56 +02006282 if (!intel_set_mode(crtc, mode, 0, 0, fb)) {
Chris Wilson64927112011-04-20 07:25:26 +01006283 DRM_DEBUG_KMS("failed to set mode on load-detect pipe\n");
Chris Wilsond2dff872011-04-19 08:36:26 +01006284 if (old->release_fb)
6285 old->release_fb->funcs->destroy(old->release_fb);
Chris Wilson0e8b3d32012-11-05 22:25:08 +00006286 return false;
Jesse Barnes79e53942008-11-07 14:24:08 -08006287 }
Chris Wilson71731882011-04-19 23:10:58 +01006288
Jesse Barnes79e53942008-11-07 14:24:08 -08006289 /* let the connector get through one full cycle before testing */
Jesse Barnes9d0498a2010-08-18 13:20:54 -07006290 intel_wait_for_vblank(dev, intel_crtc->pipe);
Chris Wilson71731882011-04-19 23:10:58 +01006291 return true;
Jesse Barnes79e53942008-11-07 14:24:08 -08006292}
6293
Daniel Vetterd2434ab2012-08-12 21:20:10 +02006294void intel_release_load_detect_pipe(struct drm_connector *connector,
Chris Wilson8261b192011-04-19 23:18:09 +01006295 struct intel_load_detect_pipe *old)
Jesse Barnes79e53942008-11-07 14:24:08 -08006296{
Daniel Vetterd2434ab2012-08-12 21:20:10 +02006297 struct intel_encoder *intel_encoder =
6298 intel_attached_encoder(connector);
Chris Wilson4ef69c72010-09-09 15:14:28 +01006299 struct drm_encoder *encoder = &intel_encoder->base;
Jesse Barnes79e53942008-11-07 14:24:08 -08006300
Chris Wilsond2dff872011-04-19 08:36:26 +01006301 DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
6302 connector->base.id, drm_get_connector_name(connector),
6303 encoder->base.id, drm_get_encoder_name(encoder));
6304
Chris Wilson8261b192011-04-19 23:18:09 +01006305 if (old->load_detect_temp) {
Daniel Vetterfc303102012-07-09 10:40:58 +02006306 struct drm_crtc *crtc = encoder->crtc;
6307
6308 to_intel_connector(connector)->new_encoder = NULL;
6309 intel_encoder->new_crtc = NULL;
6310 intel_set_mode(crtc, NULL, 0, 0, NULL);
Chris Wilsond2dff872011-04-19 08:36:26 +01006311
6312 if (old->release_fb)
6313 old->release_fb->funcs->destroy(old->release_fb);
6314
Chris Wilson0622a532011-04-21 09:32:11 +01006315 return;
Jesse Barnes79e53942008-11-07 14:24:08 -08006316 }
6317
Eric Anholtc751ce42010-03-25 11:48:48 -07006318 /* Switch crtc and encoder back off if necessary */
Daniel Vetter24218aa2012-08-12 19:27:11 +02006319 if (old->dpms_mode != DRM_MODE_DPMS_ON)
6320 connector->funcs->dpms(connector, old->dpms_mode);
Jesse Barnes79e53942008-11-07 14:24:08 -08006321}
6322
6323/* Returns the clock of the currently programmed mode of the given pipe. */
6324static int intel_crtc_clock_get(struct drm_device *dev, struct drm_crtc *crtc)
6325{
6326 struct drm_i915_private *dev_priv = dev->dev_private;
6327 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6328 int pipe = intel_crtc->pipe;
Jesse Barnes548f2452011-02-17 10:40:53 -08006329 u32 dpll = I915_READ(DPLL(pipe));
Jesse Barnes79e53942008-11-07 14:24:08 -08006330 u32 fp;
6331 intel_clock_t clock;
6332
6333 if ((dpll & DISPLAY_RATE_SELECT_FPA1) == 0)
Chris Wilson39adb7a2011-04-22 22:17:21 +01006334 fp = I915_READ(FP0(pipe));
Jesse Barnes79e53942008-11-07 14:24:08 -08006335 else
Chris Wilson39adb7a2011-04-22 22:17:21 +01006336 fp = I915_READ(FP1(pipe));
Jesse Barnes79e53942008-11-07 14:24:08 -08006337
6338 clock.m1 = (fp & FP_M1_DIV_MASK) >> FP_M1_DIV_SHIFT;
Adam Jacksonf2b115e2009-12-03 17:14:42 -05006339 if (IS_PINEVIEW(dev)) {
6340 clock.n = ffs((fp & FP_N_PINEVIEW_DIV_MASK) >> FP_N_DIV_SHIFT) - 1;
6341 clock.m2 = (fp & FP_M2_PINEVIEW_DIV_MASK) >> FP_M2_DIV_SHIFT;
Shaohua Li21778322009-02-23 15:19:16 +08006342 } else {
6343 clock.n = (fp & FP_N_DIV_MASK) >> FP_N_DIV_SHIFT;
6344 clock.m2 = (fp & FP_M2_DIV_MASK) >> FP_M2_DIV_SHIFT;
6345 }
6346
Chris Wilsona6c45cf2010-09-17 00:32:17 +01006347 if (!IS_GEN2(dev)) {
Adam Jacksonf2b115e2009-12-03 17:14:42 -05006348 if (IS_PINEVIEW(dev))
6349 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_PINEVIEW) >>
6350 DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW);
Shaohua Li21778322009-02-23 15:19:16 +08006351 else
6352 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK) >>
Jesse Barnes79e53942008-11-07 14:24:08 -08006353 DPLL_FPA01_P1_POST_DIV_SHIFT);
6354
6355 switch (dpll & DPLL_MODE_MASK) {
6356 case DPLLB_MODE_DAC_SERIAL:
6357 clock.p2 = dpll & DPLL_DAC_SERIAL_P2_CLOCK_DIV_5 ?
6358 5 : 10;
6359 break;
6360 case DPLLB_MODE_LVDS:
6361 clock.p2 = dpll & DPLLB_LVDS_P2_CLOCK_DIV_7 ?
6362 7 : 14;
6363 break;
6364 default:
Zhao Yakui28c97732009-10-09 11:39:41 +08006365 DRM_DEBUG_KMS("Unknown DPLL mode %08x in programmed "
Jesse Barnes79e53942008-11-07 14:24:08 -08006366 "mode\n", (int)(dpll & DPLL_MODE_MASK));
6367 return 0;
6368 }
6369
6370 /* XXX: Handle the 100Mhz refclk */
Shaohua Li21778322009-02-23 15:19:16 +08006371 intel_clock(dev, 96000, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08006372 } else {
6373 bool is_lvds = (pipe == 1) && (I915_READ(LVDS) & LVDS_PORT_EN);
6374
6375 if (is_lvds) {
6376 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830_LVDS) >>
6377 DPLL_FPA01_P1_POST_DIV_SHIFT);
6378 clock.p2 = 14;
6379
6380 if ((dpll & PLL_REF_INPUT_MASK) ==
6381 PLLB_REF_INPUT_SPREADSPECTRUMIN) {
6382 /* XXX: might not be 66MHz */
Shaohua Li21778322009-02-23 15:19:16 +08006383 intel_clock(dev, 66000, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08006384 } else
Shaohua Li21778322009-02-23 15:19:16 +08006385 intel_clock(dev, 48000, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08006386 } else {
6387 if (dpll & PLL_P1_DIVIDE_BY_TWO)
6388 clock.p1 = 2;
6389 else {
6390 clock.p1 = ((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830) >>
6391 DPLL_FPA01_P1_POST_DIV_SHIFT) + 2;
6392 }
6393 if (dpll & PLL_P2_DIVIDE_BY_4)
6394 clock.p2 = 4;
6395 else
6396 clock.p2 = 2;
6397
Shaohua Li21778322009-02-23 15:19:16 +08006398 intel_clock(dev, 48000, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08006399 }
6400 }
6401
6402 /* XXX: It would be nice to validate the clocks, but we can't reuse
6403 * i830PllIsValid() because it relies on the xf86_config connector
6404 * configuration being accurate, which it isn't necessarily.
6405 */
6406
6407 return clock.dot;
6408}
6409
6410/** Returns the currently programmed mode of the given pipe. */
6411struct drm_display_mode *intel_crtc_mode_get(struct drm_device *dev,
6412 struct drm_crtc *crtc)
6413{
Jesse Barnes548f2452011-02-17 10:40:53 -08006414 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -08006415 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Paulo Zanonife2b8f92012-10-23 18:30:02 -02006416 enum transcoder cpu_transcoder = intel_crtc->cpu_transcoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08006417 struct drm_display_mode *mode;
Paulo Zanonife2b8f92012-10-23 18:30:02 -02006418 int htot = I915_READ(HTOTAL(cpu_transcoder));
6419 int hsync = I915_READ(HSYNC(cpu_transcoder));
6420 int vtot = I915_READ(VTOTAL(cpu_transcoder));
6421 int vsync = I915_READ(VSYNC(cpu_transcoder));
Jesse Barnes79e53942008-11-07 14:24:08 -08006422
6423 mode = kzalloc(sizeof(*mode), GFP_KERNEL);
6424 if (!mode)
6425 return NULL;
6426
6427 mode->clock = intel_crtc_clock_get(dev, crtc);
6428 mode->hdisplay = (htot & 0xffff) + 1;
6429 mode->htotal = ((htot & 0xffff0000) >> 16) + 1;
6430 mode->hsync_start = (hsync & 0xffff) + 1;
6431 mode->hsync_end = ((hsync & 0xffff0000) >> 16) + 1;
6432 mode->vdisplay = (vtot & 0xffff) + 1;
6433 mode->vtotal = ((vtot & 0xffff0000) >> 16) + 1;
6434 mode->vsync_start = (vsync & 0xffff) + 1;
6435 mode->vsync_end = ((vsync & 0xffff0000) >> 16) + 1;
6436
6437 drm_mode_set_name(mode);
Jesse Barnes79e53942008-11-07 14:24:08 -08006438
6439 return mode;
6440}
6441
Daniel Vetter3dec0092010-08-20 21:40:52 +02006442static void intel_increase_pllclock(struct drm_crtc *crtc)
Jesse Barnes652c3932009-08-17 13:31:43 -07006443{
6444 struct drm_device *dev = crtc->dev;
6445 drm_i915_private_t *dev_priv = dev->dev_private;
6446 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6447 int pipe = intel_crtc->pipe;
Jesse Barnesdbdc6472010-12-30 09:36:39 -08006448 int dpll_reg = DPLL(pipe);
6449 int dpll;
Jesse Barnes652c3932009-08-17 13:31:43 -07006450
Eric Anholtbad720f2009-10-22 16:11:14 -07006451 if (HAS_PCH_SPLIT(dev))
Jesse Barnes652c3932009-08-17 13:31:43 -07006452 return;
6453
6454 if (!dev_priv->lvds_downclock_avail)
6455 return;
6456
Jesse Barnesdbdc6472010-12-30 09:36:39 -08006457 dpll = I915_READ(dpll_reg);
Jesse Barnes652c3932009-08-17 13:31:43 -07006458 if (!HAS_PIPE_CXSR(dev) && (dpll & DISPLAY_RATE_SELECT_FPA1)) {
Zhao Yakui44d98a62009-10-09 11:39:40 +08006459 DRM_DEBUG_DRIVER("upclocking LVDS\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07006460
Sean Paul8ac5a6d2012-02-13 13:14:51 -05006461 assert_panel_unlocked(dev_priv, pipe);
Jesse Barnes652c3932009-08-17 13:31:43 -07006462
6463 dpll &= ~DISPLAY_RATE_SELECT_FPA1;
6464 I915_WRITE(dpll_reg, dpll);
Jesse Barnes9d0498a2010-08-18 13:20:54 -07006465 intel_wait_for_vblank(dev, pipe);
Jesse Barnesdbdc6472010-12-30 09:36:39 -08006466
Jesse Barnes652c3932009-08-17 13:31:43 -07006467 dpll = I915_READ(dpll_reg);
6468 if (dpll & DISPLAY_RATE_SELECT_FPA1)
Zhao Yakui44d98a62009-10-09 11:39:40 +08006469 DRM_DEBUG_DRIVER("failed to upclock LVDS!\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07006470 }
Jesse Barnes652c3932009-08-17 13:31:43 -07006471}
6472
6473static void intel_decrease_pllclock(struct drm_crtc *crtc)
6474{
6475 struct drm_device *dev = crtc->dev;
6476 drm_i915_private_t *dev_priv = dev->dev_private;
6477 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes652c3932009-08-17 13:31:43 -07006478
Eric Anholtbad720f2009-10-22 16:11:14 -07006479 if (HAS_PCH_SPLIT(dev))
Jesse Barnes652c3932009-08-17 13:31:43 -07006480 return;
6481
6482 if (!dev_priv->lvds_downclock_avail)
6483 return;
6484
6485 /*
6486 * Since this is called by a timer, we should never get here in
6487 * the manual case.
6488 */
6489 if (!HAS_PIPE_CXSR(dev) && intel_crtc->lowfreq_avail) {
Chris Wilson074b5e12012-05-02 12:07:06 +01006490 int pipe = intel_crtc->pipe;
6491 int dpll_reg = DPLL(pipe);
Daniel Vetterdc257cf2012-05-07 11:30:46 +02006492 int dpll;
Chris Wilson074b5e12012-05-02 12:07:06 +01006493
Zhao Yakui44d98a62009-10-09 11:39:40 +08006494 DRM_DEBUG_DRIVER("downclocking LVDS\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07006495
Sean Paul8ac5a6d2012-02-13 13:14:51 -05006496 assert_panel_unlocked(dev_priv, pipe);
Jesse Barnes652c3932009-08-17 13:31:43 -07006497
Chris Wilson074b5e12012-05-02 12:07:06 +01006498 dpll = I915_READ(dpll_reg);
Jesse Barnes652c3932009-08-17 13:31:43 -07006499 dpll |= DISPLAY_RATE_SELECT_FPA1;
6500 I915_WRITE(dpll_reg, dpll);
Jesse Barnes9d0498a2010-08-18 13:20:54 -07006501 intel_wait_for_vblank(dev, pipe);
Jesse Barnes652c3932009-08-17 13:31:43 -07006502 dpll = I915_READ(dpll_reg);
6503 if (!(dpll & DISPLAY_RATE_SELECT_FPA1))
Zhao Yakui44d98a62009-10-09 11:39:40 +08006504 DRM_DEBUG_DRIVER("failed to downclock LVDS!\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07006505 }
6506
6507}
6508
Chris Wilsonf047e392012-07-21 12:31:41 +01006509void intel_mark_busy(struct drm_device *dev)
Jesse Barnes652c3932009-08-17 13:31:43 -07006510{
Chris Wilsonf047e392012-07-21 12:31:41 +01006511 i915_update_gfx_val(dev->dev_private);
6512}
6513
6514void intel_mark_idle(struct drm_device *dev)
6515{
Chris Wilsonf047e392012-07-21 12:31:41 +01006516}
6517
6518void intel_mark_fb_busy(struct drm_i915_gem_object *obj)
6519{
6520 struct drm_device *dev = obj->base.dev;
Jesse Barnes652c3932009-08-17 13:31:43 -07006521 struct drm_crtc *crtc;
Jesse Barnes652c3932009-08-17 13:31:43 -07006522
6523 if (!i915_powersave)
6524 return;
6525
Jesse Barnes652c3932009-08-17 13:31:43 -07006526 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
Jesse Barnes652c3932009-08-17 13:31:43 -07006527 if (!crtc->fb)
6528 continue;
6529
Chris Wilsonf047e392012-07-21 12:31:41 +01006530 if (to_intel_framebuffer(crtc->fb)->obj == obj)
6531 intel_increase_pllclock(crtc);
Jesse Barnes652c3932009-08-17 13:31:43 -07006532 }
Jesse Barnes652c3932009-08-17 13:31:43 -07006533}
6534
Chris Wilsonf047e392012-07-21 12:31:41 +01006535void intel_mark_fb_idle(struct drm_i915_gem_object *obj)
Jesse Barnes652c3932009-08-17 13:31:43 -07006536{
Chris Wilsonf047e392012-07-21 12:31:41 +01006537 struct drm_device *dev = obj->base.dev;
6538 struct drm_crtc *crtc;
Jesse Barnes652c3932009-08-17 13:31:43 -07006539
Chris Wilsonf047e392012-07-21 12:31:41 +01006540 if (!i915_powersave)
Chris Wilsonacb87df2012-05-03 15:47:57 +01006541 return;
6542
Jesse Barnes652c3932009-08-17 13:31:43 -07006543 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
6544 if (!crtc->fb)
6545 continue;
6546
Chris Wilsonf047e392012-07-21 12:31:41 +01006547 if (to_intel_framebuffer(crtc->fb)->obj == obj)
6548 intel_decrease_pllclock(crtc);
Jesse Barnes652c3932009-08-17 13:31:43 -07006549 }
6550}
6551
Jesse Barnes79e53942008-11-07 14:24:08 -08006552static void intel_crtc_destroy(struct drm_crtc *crtc)
6553{
6554 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter67e77c52010-08-20 22:26:30 +02006555 struct drm_device *dev = crtc->dev;
6556 struct intel_unpin_work *work;
6557 unsigned long flags;
6558
6559 spin_lock_irqsave(&dev->event_lock, flags);
6560 work = intel_crtc->unpin_work;
6561 intel_crtc->unpin_work = NULL;
6562 spin_unlock_irqrestore(&dev->event_lock, flags);
6563
6564 if (work) {
6565 cancel_work_sync(&work->work);
6566 kfree(work);
6567 }
Jesse Barnes79e53942008-11-07 14:24:08 -08006568
6569 drm_crtc_cleanup(crtc);
Daniel Vetter67e77c52010-08-20 22:26:30 +02006570
Jesse Barnes79e53942008-11-07 14:24:08 -08006571 kfree(intel_crtc);
6572}
6573
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006574static void intel_unpin_work_fn(struct work_struct *__work)
6575{
6576 struct intel_unpin_work *work =
6577 container_of(__work, struct intel_unpin_work, work);
Chris Wilsonb4a98e52012-11-01 09:26:26 +00006578 struct drm_device *dev = work->crtc->dev;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006579
Chris Wilsonb4a98e52012-11-01 09:26:26 +00006580 mutex_lock(&dev->struct_mutex);
Chris Wilson1690e1e2011-12-14 13:57:08 +01006581 intel_unpin_fb_obj(work->old_fb_obj);
Chris Wilson05394f32010-11-08 19:18:58 +00006582 drm_gem_object_unreference(&work->pending_flip_obj->base);
6583 drm_gem_object_unreference(&work->old_fb_obj->base);
Chris Wilsond9e86c02010-11-10 16:40:20 +00006584
Chris Wilsonb4a98e52012-11-01 09:26:26 +00006585 intel_update_fbc(dev);
6586 mutex_unlock(&dev->struct_mutex);
6587
6588 BUG_ON(atomic_read(&to_intel_crtc(work->crtc)->unpin_work_count) == 0);
6589 atomic_dec(&to_intel_crtc(work->crtc)->unpin_work_count);
6590
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006591 kfree(work);
6592}
6593
Jesse Barnes1afe3e92010-03-26 10:35:20 -07006594static void do_intel_finish_page_flip(struct drm_device *dev,
Mario Kleiner49b14a52010-12-09 07:00:07 +01006595 struct drm_crtc *crtc)
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006596{
6597 drm_i915_private_t *dev_priv = dev->dev_private;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006598 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6599 struct intel_unpin_work *work;
Chris Wilson05394f32010-11-08 19:18:58 +00006600 struct drm_i915_gem_object *obj;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006601 unsigned long flags;
6602
6603 /* Ignore early vblank irqs */
6604 if (intel_crtc == NULL)
6605 return;
6606
6607 spin_lock_irqsave(&dev->event_lock, flags);
6608 work = intel_crtc->unpin_work;
6609 if (work == NULL || !work->pending) {
6610 spin_unlock_irqrestore(&dev->event_lock, flags);
6611 return;
6612 }
6613
6614 intel_crtc->unpin_work = NULL;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006615
Rob Clark45a066e2012-10-08 14:50:40 -05006616 if (work->event)
6617 drm_send_vblank_event(dev, intel_crtc->pipe, work->event);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006618
Mario Kleiner0af7e4d2010-12-08 04:07:19 +01006619 drm_vblank_put(dev, intel_crtc->pipe);
6620
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006621 spin_unlock_irqrestore(&dev->event_lock, flags);
6622
Chris Wilson05394f32010-11-08 19:18:58 +00006623 obj = work->old_fb_obj;
Chris Wilsond9e86c02010-11-10 16:40:20 +00006624
Chris Wilson5bb61642012-09-27 21:25:58 +01006625 wake_up(&dev_priv->pending_flip_queue);
Chris Wilsonb4a98e52012-11-01 09:26:26 +00006626
6627 queue_work(dev_priv->wq, &work->work);
Jesse Barnese5510fa2010-07-01 16:48:37 -07006628
6629 trace_i915_flip_complete(intel_crtc->plane, work->pending_flip_obj);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006630}
6631
Jesse Barnes1afe3e92010-03-26 10:35:20 -07006632void intel_finish_page_flip(struct drm_device *dev, int pipe)
6633{
6634 drm_i915_private_t *dev_priv = dev->dev_private;
6635 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
6636
Mario Kleiner49b14a52010-12-09 07:00:07 +01006637 do_intel_finish_page_flip(dev, crtc);
Jesse Barnes1afe3e92010-03-26 10:35:20 -07006638}
6639
6640void intel_finish_page_flip_plane(struct drm_device *dev, int plane)
6641{
6642 drm_i915_private_t *dev_priv = dev->dev_private;
6643 struct drm_crtc *crtc = dev_priv->plane_to_crtc_mapping[plane];
6644
Mario Kleiner49b14a52010-12-09 07:00:07 +01006645 do_intel_finish_page_flip(dev, crtc);
Jesse Barnes1afe3e92010-03-26 10:35:20 -07006646}
6647
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006648void intel_prepare_page_flip(struct drm_device *dev, int plane)
6649{
6650 drm_i915_private_t *dev_priv = dev->dev_private;
6651 struct intel_crtc *intel_crtc =
6652 to_intel_crtc(dev_priv->plane_to_crtc_mapping[plane]);
6653 unsigned long flags;
6654
6655 spin_lock_irqsave(&dev->event_lock, flags);
Jesse Barnesde3f4402010-01-14 13:18:02 -08006656 if (intel_crtc->unpin_work) {
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01006657 if ((++intel_crtc->unpin_work->pending) > 1)
6658 DRM_ERROR("Prepared flip multiple times\n");
Jesse Barnesde3f4402010-01-14 13:18:02 -08006659 } else {
6660 DRM_DEBUG_DRIVER("preparing flip with no unpin work?\n");
6661 }
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006662 spin_unlock_irqrestore(&dev->event_lock, flags);
6663}
6664
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006665static int intel_gen2_queue_flip(struct drm_device *dev,
6666 struct drm_crtc *crtc,
6667 struct drm_framebuffer *fb,
6668 struct drm_i915_gem_object *obj)
6669{
6670 struct drm_i915_private *dev_priv = dev->dev_private;
6671 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006672 u32 flip_mask;
Daniel Vetter6d90c952012-04-26 23:28:05 +02006673 struct intel_ring_buffer *ring = &dev_priv->ring[RCS];
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006674 int ret;
6675
Daniel Vetter6d90c952012-04-26 23:28:05 +02006676 ret = intel_pin_and_fence_fb_obj(dev, obj, ring);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006677 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01006678 goto err;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006679
Daniel Vetter6d90c952012-04-26 23:28:05 +02006680 ret = intel_ring_begin(ring, 6);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006681 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01006682 goto err_unpin;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006683
6684 /* Can't queue multiple flips, so wait for the previous
6685 * one to finish before executing the next.
6686 */
6687 if (intel_crtc->plane)
6688 flip_mask = MI_WAIT_FOR_PLANE_B_FLIP;
6689 else
6690 flip_mask = MI_WAIT_FOR_PLANE_A_FLIP;
Daniel Vetter6d90c952012-04-26 23:28:05 +02006691 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | flip_mask);
6692 intel_ring_emit(ring, MI_NOOP);
6693 intel_ring_emit(ring, MI_DISPLAY_FLIP |
6694 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
6695 intel_ring_emit(ring, fb->pitches[0]);
Daniel Vettere506a0c2012-07-05 12:17:29 +02006696 intel_ring_emit(ring, obj->gtt_offset + intel_crtc->dspaddr_offset);
Daniel Vetter6d90c952012-04-26 23:28:05 +02006697 intel_ring_emit(ring, 0); /* aux display base address, unused */
6698 intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01006699 return 0;
6700
6701err_unpin:
6702 intel_unpin_fb_obj(obj);
6703err:
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006704 return ret;
6705}
6706
6707static int intel_gen3_queue_flip(struct drm_device *dev,
6708 struct drm_crtc *crtc,
6709 struct drm_framebuffer *fb,
6710 struct drm_i915_gem_object *obj)
6711{
6712 struct drm_i915_private *dev_priv = dev->dev_private;
6713 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006714 u32 flip_mask;
Daniel Vetter6d90c952012-04-26 23:28:05 +02006715 struct intel_ring_buffer *ring = &dev_priv->ring[RCS];
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006716 int ret;
6717
Daniel Vetter6d90c952012-04-26 23:28:05 +02006718 ret = intel_pin_and_fence_fb_obj(dev, obj, ring);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006719 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01006720 goto err;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006721
Daniel Vetter6d90c952012-04-26 23:28:05 +02006722 ret = intel_ring_begin(ring, 6);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006723 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01006724 goto err_unpin;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006725
6726 if (intel_crtc->plane)
6727 flip_mask = MI_WAIT_FOR_PLANE_B_FLIP;
6728 else
6729 flip_mask = MI_WAIT_FOR_PLANE_A_FLIP;
Daniel Vetter6d90c952012-04-26 23:28:05 +02006730 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | flip_mask);
6731 intel_ring_emit(ring, MI_NOOP);
6732 intel_ring_emit(ring, MI_DISPLAY_FLIP_I915 |
6733 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
6734 intel_ring_emit(ring, fb->pitches[0]);
Daniel Vettere506a0c2012-07-05 12:17:29 +02006735 intel_ring_emit(ring, obj->gtt_offset + intel_crtc->dspaddr_offset);
Daniel Vetter6d90c952012-04-26 23:28:05 +02006736 intel_ring_emit(ring, MI_NOOP);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006737
Daniel Vetter6d90c952012-04-26 23:28:05 +02006738 intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01006739 return 0;
6740
6741err_unpin:
6742 intel_unpin_fb_obj(obj);
6743err:
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006744 return ret;
6745}
6746
6747static int intel_gen4_queue_flip(struct drm_device *dev,
6748 struct drm_crtc *crtc,
6749 struct drm_framebuffer *fb,
6750 struct drm_i915_gem_object *obj)
6751{
6752 struct drm_i915_private *dev_priv = dev->dev_private;
6753 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6754 uint32_t pf, pipesrc;
Daniel Vetter6d90c952012-04-26 23:28:05 +02006755 struct intel_ring_buffer *ring = &dev_priv->ring[RCS];
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006756 int ret;
6757
Daniel Vetter6d90c952012-04-26 23:28:05 +02006758 ret = intel_pin_and_fence_fb_obj(dev, obj, ring);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006759 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01006760 goto err;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006761
Daniel Vetter6d90c952012-04-26 23:28:05 +02006762 ret = intel_ring_begin(ring, 4);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006763 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01006764 goto err_unpin;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006765
6766 /* i965+ uses the linear or tiled offsets from the
6767 * Display Registers (which do not change across a page-flip)
6768 * so we need only reprogram the base address.
6769 */
Daniel Vetter6d90c952012-04-26 23:28:05 +02006770 intel_ring_emit(ring, MI_DISPLAY_FLIP |
6771 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
6772 intel_ring_emit(ring, fb->pitches[0]);
Daniel Vetterc2c75132012-07-05 12:17:30 +02006773 intel_ring_emit(ring,
6774 (obj->gtt_offset + intel_crtc->dspaddr_offset) |
6775 obj->tiling_mode);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006776
6777 /* XXX Enabling the panel-fitter across page-flip is so far
6778 * untested on non-native modes, so ignore it for now.
6779 * pf = I915_READ(pipe == 0 ? PFA_CTL_1 : PFB_CTL_1) & PF_ENABLE;
6780 */
6781 pf = 0;
6782 pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff;
Daniel Vetter6d90c952012-04-26 23:28:05 +02006783 intel_ring_emit(ring, pf | pipesrc);
6784 intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01006785 return 0;
6786
6787err_unpin:
6788 intel_unpin_fb_obj(obj);
6789err:
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006790 return ret;
6791}
6792
6793static int intel_gen6_queue_flip(struct drm_device *dev,
6794 struct drm_crtc *crtc,
6795 struct drm_framebuffer *fb,
6796 struct drm_i915_gem_object *obj)
6797{
6798 struct drm_i915_private *dev_priv = dev->dev_private;
6799 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter6d90c952012-04-26 23:28:05 +02006800 struct intel_ring_buffer *ring = &dev_priv->ring[RCS];
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006801 uint32_t pf, pipesrc;
6802 int ret;
6803
Daniel Vetter6d90c952012-04-26 23:28:05 +02006804 ret = intel_pin_and_fence_fb_obj(dev, obj, ring);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006805 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01006806 goto err;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006807
Daniel Vetter6d90c952012-04-26 23:28:05 +02006808 ret = intel_ring_begin(ring, 4);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006809 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01006810 goto err_unpin;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006811
Daniel Vetter6d90c952012-04-26 23:28:05 +02006812 intel_ring_emit(ring, MI_DISPLAY_FLIP |
6813 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
6814 intel_ring_emit(ring, fb->pitches[0] | obj->tiling_mode);
Daniel Vetterc2c75132012-07-05 12:17:30 +02006815 intel_ring_emit(ring, obj->gtt_offset + intel_crtc->dspaddr_offset);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006816
Chris Wilson99d9acd2012-04-17 20:37:00 +01006817 /* Contrary to the suggestions in the documentation,
6818 * "Enable Panel Fitter" does not seem to be required when page
6819 * flipping with a non-native mode, and worse causes a normal
6820 * modeset to fail.
6821 * pf = I915_READ(PF_CTL(intel_crtc->pipe)) & PF_ENABLE;
6822 */
6823 pf = 0;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006824 pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff;
Daniel Vetter6d90c952012-04-26 23:28:05 +02006825 intel_ring_emit(ring, pf | pipesrc);
6826 intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01006827 return 0;
6828
6829err_unpin:
6830 intel_unpin_fb_obj(obj);
6831err:
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006832 return ret;
6833}
6834
Jesse Barnes7c9017e2011-06-16 12:18:54 -07006835/*
6836 * On gen7 we currently use the blit ring because (in early silicon at least)
6837 * the render ring doesn't give us interrpts for page flip completion, which
6838 * means clients will hang after the first flip is queued. Fortunately the
6839 * blit ring generates interrupts properly, so use it instead.
6840 */
6841static int intel_gen7_queue_flip(struct drm_device *dev,
6842 struct drm_crtc *crtc,
6843 struct drm_framebuffer *fb,
6844 struct drm_i915_gem_object *obj)
6845{
6846 struct drm_i915_private *dev_priv = dev->dev_private;
6847 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6848 struct intel_ring_buffer *ring = &dev_priv->ring[BCS];
Daniel Vettercb05d8d2012-05-23 14:02:00 +02006849 uint32_t plane_bit = 0;
Jesse Barnes7c9017e2011-06-16 12:18:54 -07006850 int ret;
6851
6852 ret = intel_pin_and_fence_fb_obj(dev, obj, ring);
6853 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01006854 goto err;
Jesse Barnes7c9017e2011-06-16 12:18:54 -07006855
Daniel Vettercb05d8d2012-05-23 14:02:00 +02006856 switch(intel_crtc->plane) {
6857 case PLANE_A:
6858 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_A;
6859 break;
6860 case PLANE_B:
6861 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_B;
6862 break;
6863 case PLANE_C:
6864 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_C;
6865 break;
6866 default:
6867 WARN_ONCE(1, "unknown plane in flip command\n");
6868 ret = -ENODEV;
Eugeni Dodonovab3951e2012-06-18 19:03:38 -03006869 goto err_unpin;
Daniel Vettercb05d8d2012-05-23 14:02:00 +02006870 }
6871
Jesse Barnes7c9017e2011-06-16 12:18:54 -07006872 ret = intel_ring_begin(ring, 4);
6873 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01006874 goto err_unpin;
Jesse Barnes7c9017e2011-06-16 12:18:54 -07006875
Daniel Vettercb05d8d2012-05-23 14:02:00 +02006876 intel_ring_emit(ring, MI_DISPLAY_FLIP_I915 | plane_bit);
Ville Syrjälä01f2c772011-12-20 00:06:49 +02006877 intel_ring_emit(ring, (fb->pitches[0] | obj->tiling_mode));
Daniel Vetterc2c75132012-07-05 12:17:30 +02006878 intel_ring_emit(ring, obj->gtt_offset + intel_crtc->dspaddr_offset);
Jesse Barnes7c9017e2011-06-16 12:18:54 -07006879 intel_ring_emit(ring, (MI_NOOP));
6880 intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01006881 return 0;
6882
6883err_unpin:
6884 intel_unpin_fb_obj(obj);
6885err:
Jesse Barnes7c9017e2011-06-16 12:18:54 -07006886 return ret;
6887}
6888
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006889static int intel_default_queue_flip(struct drm_device *dev,
6890 struct drm_crtc *crtc,
6891 struct drm_framebuffer *fb,
6892 struct drm_i915_gem_object *obj)
6893{
6894 return -ENODEV;
6895}
6896
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006897static int intel_crtc_page_flip(struct drm_crtc *crtc,
6898 struct drm_framebuffer *fb,
6899 struct drm_pending_vblank_event *event)
6900{
6901 struct drm_device *dev = crtc->dev;
6902 struct drm_i915_private *dev_priv = dev->dev_private;
6903 struct intel_framebuffer *intel_fb;
Chris Wilson05394f32010-11-08 19:18:58 +00006904 struct drm_i915_gem_object *obj;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006905 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6906 struct intel_unpin_work *work;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006907 unsigned long flags;
Chris Wilson52e68632010-08-08 10:15:59 +01006908 int ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006909
Ville Syrjäläe6a595d2012-05-24 21:08:59 +03006910 /* Can't change pixel format via MI display flips. */
6911 if (fb->pixel_format != crtc->fb->pixel_format)
6912 return -EINVAL;
6913
6914 /*
6915 * TILEOFF/LINOFF registers can't be changed via MI display flips.
6916 * Note that pitch changes could also affect these register.
6917 */
6918 if (INTEL_INFO(dev)->gen > 3 &&
6919 (fb->offsets[0] != crtc->fb->offsets[0] ||
6920 fb->pitches[0] != crtc->fb->pitches[0]))
6921 return -EINVAL;
6922
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006923 work = kzalloc(sizeof *work, GFP_KERNEL);
6924 if (work == NULL)
6925 return -ENOMEM;
6926
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006927 work->event = event;
Chris Wilsonb4a98e52012-11-01 09:26:26 +00006928 work->crtc = crtc;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006929 intel_fb = to_intel_framebuffer(crtc->fb);
Jesse Barnesb1b87f62010-01-26 14:40:05 -08006930 work->old_fb_obj = intel_fb->obj;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006931 INIT_WORK(&work->work, intel_unpin_work_fn);
6932
Jesse Barnes7317c75e62011-08-29 09:45:28 -07006933 ret = drm_vblank_get(dev, intel_crtc->pipe);
6934 if (ret)
6935 goto free_work;
6936
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006937 /* We borrow the event spin lock for protecting unpin_work */
6938 spin_lock_irqsave(&dev->event_lock, flags);
6939 if (intel_crtc->unpin_work) {
6940 spin_unlock_irqrestore(&dev->event_lock, flags);
6941 kfree(work);
Jesse Barnes7317c75e62011-08-29 09:45:28 -07006942 drm_vblank_put(dev, intel_crtc->pipe);
Chris Wilson468f0b42010-05-27 13:18:13 +01006943
6944 DRM_DEBUG_DRIVER("flip queue: crtc already busy\n");
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006945 return -EBUSY;
6946 }
6947 intel_crtc->unpin_work = work;
6948 spin_unlock_irqrestore(&dev->event_lock, flags);
6949
6950 intel_fb = to_intel_framebuffer(fb);
6951 obj = intel_fb->obj;
6952
Chris Wilsonb4a98e52012-11-01 09:26:26 +00006953 if (atomic_read(&intel_crtc->unpin_work_count) >= 2)
6954 flush_workqueue(dev_priv->wq);
6955
Chris Wilson79158102012-05-23 11:13:58 +01006956 ret = i915_mutex_lock_interruptible(dev);
6957 if (ret)
6958 goto cleanup;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006959
Jesse Barnes75dfca82010-02-10 15:09:44 -08006960 /* Reference the objects for the scheduled work. */
Chris Wilson05394f32010-11-08 19:18:58 +00006961 drm_gem_object_reference(&work->old_fb_obj->base);
6962 drm_gem_object_reference(&obj->base);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006963
6964 crtc->fb = fb;
Chris Wilson96b099f2010-06-07 14:03:04 +01006965
Chris Wilsone1f99ce2010-10-27 12:45:26 +01006966 work->pending_flip_obj = obj;
Chris Wilsone1f99ce2010-10-27 12:45:26 +01006967
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01006968 work->enable_stall_check = true;
6969
Chris Wilsonb4a98e52012-11-01 09:26:26 +00006970 atomic_inc(&intel_crtc->unpin_work_count);
Chris Wilsone1f99ce2010-10-27 12:45:26 +01006971
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006972 ret = dev_priv->display.queue_flip(dev, crtc, fb, obj);
6973 if (ret)
6974 goto cleanup_pending;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006975
Chris Wilson7782de32011-07-08 12:22:41 +01006976 intel_disable_fbc(dev);
Chris Wilsonf047e392012-07-21 12:31:41 +01006977 intel_mark_fb_busy(obj);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006978 mutex_unlock(&dev->struct_mutex);
6979
Jesse Barnese5510fa2010-07-01 16:48:37 -07006980 trace_i915_flip_request(intel_crtc->plane, obj);
6981
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006982 return 0;
Chris Wilson96b099f2010-06-07 14:03:04 +01006983
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006984cleanup_pending:
Chris Wilsonb4a98e52012-11-01 09:26:26 +00006985 atomic_dec(&intel_crtc->unpin_work_count);
Chris Wilson05394f32010-11-08 19:18:58 +00006986 drm_gem_object_unreference(&work->old_fb_obj->base);
6987 drm_gem_object_unreference(&obj->base);
Chris Wilson96b099f2010-06-07 14:03:04 +01006988 mutex_unlock(&dev->struct_mutex);
6989
Chris Wilson79158102012-05-23 11:13:58 +01006990cleanup:
Chris Wilson96b099f2010-06-07 14:03:04 +01006991 spin_lock_irqsave(&dev->event_lock, flags);
6992 intel_crtc->unpin_work = NULL;
6993 spin_unlock_irqrestore(&dev->event_lock, flags);
6994
Jesse Barnes7317c75e62011-08-29 09:45:28 -07006995 drm_vblank_put(dev, intel_crtc->pipe);
6996free_work:
Chris Wilson96b099f2010-06-07 14:03:04 +01006997 kfree(work);
6998
6999 return ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007000}
7001
Chris Wilsonf6e5b162011-04-12 18:06:51 +01007002static struct drm_crtc_helper_funcs intel_helper_funcs = {
Chris Wilsonf6e5b162011-04-12 18:06:51 +01007003 .mode_set_base_atomic = intel_pipe_set_base_atomic,
7004 .load_lut = intel_crtc_load_lut,
Daniel Vetter976f8a22012-07-08 22:34:21 +02007005 .disable = intel_crtc_noop,
Chris Wilsonf6e5b162011-04-12 18:06:51 +01007006};
7007
Daniel Vetter6ed0f792012-07-08 19:41:43 +02007008bool intel_encoder_check_is_cloned(struct intel_encoder *encoder)
7009{
7010 struct intel_encoder *other_encoder;
7011 struct drm_crtc *crtc = &encoder->new_crtc->base;
7012
7013 if (WARN_ON(!crtc))
7014 return false;
7015
7016 list_for_each_entry(other_encoder,
7017 &crtc->dev->mode_config.encoder_list,
7018 base.head) {
7019
7020 if (&other_encoder->new_crtc->base != crtc ||
7021 encoder == other_encoder)
7022 continue;
7023 else
7024 return true;
7025 }
7026
7027 return false;
7028}
7029
Daniel Vetter50f56112012-07-02 09:35:43 +02007030static bool intel_encoder_crtc_ok(struct drm_encoder *encoder,
7031 struct drm_crtc *crtc)
7032{
7033 struct drm_device *dev;
7034 struct drm_crtc *tmp;
7035 int crtc_mask = 1;
7036
7037 WARN(!crtc, "checking null crtc?\n");
7038
7039 dev = crtc->dev;
7040
7041 list_for_each_entry(tmp, &dev->mode_config.crtc_list, head) {
7042 if (tmp == crtc)
7043 break;
7044 crtc_mask <<= 1;
7045 }
7046
7047 if (encoder->possible_crtcs & crtc_mask)
7048 return true;
7049 return false;
7050}
7051
Daniel Vetter9a935852012-07-05 22:34:27 +02007052/**
7053 * intel_modeset_update_staged_output_state
7054 *
7055 * Updates the staged output configuration state, e.g. after we've read out the
7056 * current hw state.
7057 */
7058static void intel_modeset_update_staged_output_state(struct drm_device *dev)
7059{
7060 struct intel_encoder *encoder;
7061 struct intel_connector *connector;
7062
7063 list_for_each_entry(connector, &dev->mode_config.connector_list,
7064 base.head) {
7065 connector->new_encoder =
7066 to_intel_encoder(connector->base.encoder);
7067 }
7068
7069 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
7070 base.head) {
7071 encoder->new_crtc =
7072 to_intel_crtc(encoder->base.crtc);
7073 }
7074}
7075
7076/**
7077 * intel_modeset_commit_output_state
7078 *
7079 * This function copies the stage display pipe configuration to the real one.
7080 */
7081static void intel_modeset_commit_output_state(struct drm_device *dev)
7082{
7083 struct intel_encoder *encoder;
7084 struct intel_connector *connector;
7085
7086 list_for_each_entry(connector, &dev->mode_config.connector_list,
7087 base.head) {
7088 connector->base.encoder = &connector->new_encoder->base;
7089 }
7090
7091 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
7092 base.head) {
7093 encoder->base.crtc = &encoder->new_crtc->base;
7094 }
7095}
7096
Daniel Vetter7758a112012-07-08 19:40:39 +02007097static struct drm_display_mode *
7098intel_modeset_adjusted_mode(struct drm_crtc *crtc,
7099 struct drm_display_mode *mode)
7100{
7101 struct drm_device *dev = crtc->dev;
7102 struct drm_display_mode *adjusted_mode;
7103 struct drm_encoder_helper_funcs *encoder_funcs;
7104 struct intel_encoder *encoder;
7105
7106 adjusted_mode = drm_mode_duplicate(dev, mode);
7107 if (!adjusted_mode)
7108 return ERR_PTR(-ENOMEM);
7109
7110 /* Pass our mode to the connectors and the CRTC to give them a chance to
7111 * adjust it according to limitations or connector properties, and also
7112 * a chance to reject the mode entirely.
7113 */
7114 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
7115 base.head) {
7116
7117 if (&encoder->new_crtc->base != crtc)
7118 continue;
7119 encoder_funcs = encoder->base.helper_private;
7120 if (!(encoder_funcs->mode_fixup(&encoder->base, mode,
7121 adjusted_mode))) {
7122 DRM_DEBUG_KMS("Encoder fixup failed\n");
7123 goto fail;
7124 }
7125 }
7126
7127 if (!(intel_crtc_mode_fixup(crtc, mode, adjusted_mode))) {
7128 DRM_DEBUG_KMS("CRTC fixup failed\n");
7129 goto fail;
7130 }
7131 DRM_DEBUG_KMS("[CRTC:%d]\n", crtc->base.id);
7132
7133 return adjusted_mode;
7134fail:
7135 drm_mode_destroy(dev, adjusted_mode);
7136 return ERR_PTR(-EINVAL);
7137}
7138
Daniel Vettere2e1ed42012-07-08 21:14:38 +02007139/* Computes which crtcs are affected and sets the relevant bits in the mask. For
7140 * simplicity we use the crtc's pipe number (because it's easier to obtain). */
7141static void
7142intel_modeset_affected_pipes(struct drm_crtc *crtc, unsigned *modeset_pipes,
7143 unsigned *prepare_pipes, unsigned *disable_pipes)
7144{
7145 struct intel_crtc *intel_crtc;
7146 struct drm_device *dev = crtc->dev;
7147 struct intel_encoder *encoder;
7148 struct intel_connector *connector;
7149 struct drm_crtc *tmp_crtc;
7150
7151 *disable_pipes = *modeset_pipes = *prepare_pipes = 0;
7152
7153 /* Check which crtcs have changed outputs connected to them, these need
7154 * to be part of the prepare_pipes mask. We don't (yet) support global
7155 * modeset across multiple crtcs, so modeset_pipes will only have one
7156 * bit set at most. */
7157 list_for_each_entry(connector, &dev->mode_config.connector_list,
7158 base.head) {
7159 if (connector->base.encoder == &connector->new_encoder->base)
7160 continue;
7161
7162 if (connector->base.encoder) {
7163 tmp_crtc = connector->base.encoder->crtc;
7164
7165 *prepare_pipes |= 1 << to_intel_crtc(tmp_crtc)->pipe;
7166 }
7167
7168 if (connector->new_encoder)
7169 *prepare_pipes |=
7170 1 << connector->new_encoder->new_crtc->pipe;
7171 }
7172
7173 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
7174 base.head) {
7175 if (encoder->base.crtc == &encoder->new_crtc->base)
7176 continue;
7177
7178 if (encoder->base.crtc) {
7179 tmp_crtc = encoder->base.crtc;
7180
7181 *prepare_pipes |= 1 << to_intel_crtc(tmp_crtc)->pipe;
7182 }
7183
7184 if (encoder->new_crtc)
7185 *prepare_pipes |= 1 << encoder->new_crtc->pipe;
7186 }
7187
7188 /* Check for any pipes that will be fully disabled ... */
7189 list_for_each_entry(intel_crtc, &dev->mode_config.crtc_list,
7190 base.head) {
7191 bool used = false;
7192
7193 /* Don't try to disable disabled crtcs. */
7194 if (!intel_crtc->base.enabled)
7195 continue;
7196
7197 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
7198 base.head) {
7199 if (encoder->new_crtc == intel_crtc)
7200 used = true;
7201 }
7202
7203 if (!used)
7204 *disable_pipes |= 1 << intel_crtc->pipe;
7205 }
7206
7207
7208 /* set_mode is also used to update properties on life display pipes. */
7209 intel_crtc = to_intel_crtc(crtc);
7210 if (crtc->enabled)
7211 *prepare_pipes |= 1 << intel_crtc->pipe;
7212
7213 /* We only support modeset on one single crtc, hence we need to do that
7214 * only for the passed in crtc iff we change anything else than just
7215 * disable crtcs.
7216 *
7217 * This is actually not true, to be fully compatible with the old crtc
7218 * helper we automatically disable _any_ output (i.e. doesn't need to be
7219 * connected to the crtc we're modesetting on) if it's disconnected.
7220 * Which is a rather nutty api (since changed the output configuration
7221 * without userspace's explicit request can lead to confusion), but
7222 * alas. Hence we currently need to modeset on all pipes we prepare. */
7223 if (*prepare_pipes)
7224 *modeset_pipes = *prepare_pipes;
7225
7226 /* ... and mask these out. */
7227 *modeset_pipes &= ~(*disable_pipes);
7228 *prepare_pipes &= ~(*disable_pipes);
7229}
7230
Daniel Vetterea9d7582012-07-10 10:42:52 +02007231static bool intel_crtc_in_use(struct drm_crtc *crtc)
7232{
7233 struct drm_encoder *encoder;
7234 struct drm_device *dev = crtc->dev;
7235
7236 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head)
7237 if (encoder->crtc == crtc)
7238 return true;
7239
7240 return false;
7241}
7242
7243static void
7244intel_modeset_update_state(struct drm_device *dev, unsigned prepare_pipes)
7245{
7246 struct intel_encoder *intel_encoder;
7247 struct intel_crtc *intel_crtc;
7248 struct drm_connector *connector;
7249
7250 list_for_each_entry(intel_encoder, &dev->mode_config.encoder_list,
7251 base.head) {
7252 if (!intel_encoder->base.crtc)
7253 continue;
7254
7255 intel_crtc = to_intel_crtc(intel_encoder->base.crtc);
7256
7257 if (prepare_pipes & (1 << intel_crtc->pipe))
7258 intel_encoder->connectors_active = false;
7259 }
7260
7261 intel_modeset_commit_output_state(dev);
7262
7263 /* Update computed state. */
7264 list_for_each_entry(intel_crtc, &dev->mode_config.crtc_list,
7265 base.head) {
7266 intel_crtc->base.enabled = intel_crtc_in_use(&intel_crtc->base);
7267 }
7268
7269 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
7270 if (!connector->encoder || !connector->encoder->crtc)
7271 continue;
7272
7273 intel_crtc = to_intel_crtc(connector->encoder->crtc);
7274
7275 if (prepare_pipes & (1 << intel_crtc->pipe)) {
Daniel Vetter68d34722012-09-06 22:08:35 +02007276 struct drm_property *dpms_property =
7277 dev->mode_config.dpms_property;
7278
Daniel Vetterea9d7582012-07-10 10:42:52 +02007279 connector->dpms = DRM_MODE_DPMS_ON;
Rob Clark662595d2012-10-11 20:36:04 -05007280 drm_object_property_set_value(&connector->base,
Daniel Vetter68d34722012-09-06 22:08:35 +02007281 dpms_property,
7282 DRM_MODE_DPMS_ON);
Daniel Vetterea9d7582012-07-10 10:42:52 +02007283
7284 intel_encoder = to_intel_encoder(connector->encoder);
7285 intel_encoder->connectors_active = true;
7286 }
7287 }
7288
7289}
7290
Daniel Vetter25c5b262012-07-08 22:08:04 +02007291#define for_each_intel_crtc_masked(dev, mask, intel_crtc) \
7292 list_for_each_entry((intel_crtc), \
7293 &(dev)->mode_config.crtc_list, \
7294 base.head) \
7295 if (mask & (1 <<(intel_crtc)->pipe)) \
7296
Daniel Vetterb9805142012-08-31 17:37:33 +02007297void
Daniel Vetter8af6cf82012-07-10 09:50:11 +02007298intel_modeset_check_state(struct drm_device *dev)
7299{
7300 struct intel_crtc *crtc;
7301 struct intel_encoder *encoder;
7302 struct intel_connector *connector;
7303
7304 list_for_each_entry(connector, &dev->mode_config.connector_list,
7305 base.head) {
7306 /* This also checks the encoder/connector hw state with the
7307 * ->get_hw_state callbacks. */
7308 intel_connector_check_state(connector);
7309
7310 WARN(&connector->new_encoder->base != connector->base.encoder,
7311 "connector's staged encoder doesn't match current encoder\n");
7312 }
7313
7314 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
7315 base.head) {
7316 bool enabled = false;
7317 bool active = false;
7318 enum pipe pipe, tracked_pipe;
7319
7320 DRM_DEBUG_KMS("[ENCODER:%d:%s]\n",
7321 encoder->base.base.id,
7322 drm_get_encoder_name(&encoder->base));
7323
7324 WARN(&encoder->new_crtc->base != encoder->base.crtc,
7325 "encoder's stage crtc doesn't match current crtc\n");
7326 WARN(encoder->connectors_active && !encoder->base.crtc,
7327 "encoder's active_connectors set, but no crtc\n");
7328
7329 list_for_each_entry(connector, &dev->mode_config.connector_list,
7330 base.head) {
7331 if (connector->base.encoder != &encoder->base)
7332 continue;
7333 enabled = true;
7334 if (connector->base.dpms != DRM_MODE_DPMS_OFF)
7335 active = true;
7336 }
7337 WARN(!!encoder->base.crtc != enabled,
7338 "encoder's enabled state mismatch "
7339 "(expected %i, found %i)\n",
7340 !!encoder->base.crtc, enabled);
7341 WARN(active && !encoder->base.crtc,
7342 "active encoder with no crtc\n");
7343
7344 WARN(encoder->connectors_active != active,
7345 "encoder's computed active state doesn't match tracked active state "
7346 "(expected %i, found %i)\n", active, encoder->connectors_active);
7347
7348 active = encoder->get_hw_state(encoder, &pipe);
7349 WARN(active != encoder->connectors_active,
7350 "encoder's hw state doesn't match sw tracking "
7351 "(expected %i, found %i)\n",
7352 encoder->connectors_active, active);
7353
7354 if (!encoder->base.crtc)
7355 continue;
7356
7357 tracked_pipe = to_intel_crtc(encoder->base.crtc)->pipe;
7358 WARN(active && pipe != tracked_pipe,
7359 "active encoder's pipe doesn't match"
7360 "(expected %i, found %i)\n",
7361 tracked_pipe, pipe);
7362
7363 }
7364
7365 list_for_each_entry(crtc, &dev->mode_config.crtc_list,
7366 base.head) {
7367 bool enabled = false;
7368 bool active = false;
7369
7370 DRM_DEBUG_KMS("[CRTC:%d]\n",
7371 crtc->base.base.id);
7372
7373 WARN(crtc->active && !crtc->base.enabled,
7374 "active crtc, but not enabled in sw tracking\n");
7375
7376 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
7377 base.head) {
7378 if (encoder->base.crtc != &crtc->base)
7379 continue;
7380 enabled = true;
7381 if (encoder->connectors_active)
7382 active = true;
7383 }
7384 WARN(active != crtc->active,
7385 "crtc's computed active state doesn't match tracked active state "
7386 "(expected %i, found %i)\n", active, crtc->active);
7387 WARN(enabled != crtc->base.enabled,
7388 "crtc's computed enabled state doesn't match tracked enabled state "
7389 "(expected %i, found %i)\n", enabled, crtc->base.enabled);
7390
7391 assert_pipe(dev->dev_private, crtc->pipe, crtc->active);
7392 }
7393}
7394
Daniel Vettera6778b32012-07-02 09:56:42 +02007395bool intel_set_mode(struct drm_crtc *crtc,
7396 struct drm_display_mode *mode,
Daniel Vetter94352cf2012-07-05 22:51:56 +02007397 int x, int y, struct drm_framebuffer *fb)
Daniel Vettera6778b32012-07-02 09:56:42 +02007398{
7399 struct drm_device *dev = crtc->dev;
Daniel Vetterdbf2b54e2012-07-02 11:18:29 +02007400 drm_i915_private_t *dev_priv = dev->dev_private;
Daniel Vettera6778b32012-07-02 09:56:42 +02007401 struct drm_display_mode *adjusted_mode, saved_mode, saved_hwmode;
Daniel Vetter25c5b262012-07-08 22:08:04 +02007402 struct intel_crtc *intel_crtc;
7403 unsigned disable_pipes, prepare_pipes, modeset_pipes;
Daniel Vettera6778b32012-07-02 09:56:42 +02007404 bool ret = true;
7405
Daniel Vettere2e1ed42012-07-08 21:14:38 +02007406 intel_modeset_affected_pipes(crtc, &modeset_pipes,
Daniel Vetter25c5b262012-07-08 22:08:04 +02007407 &prepare_pipes, &disable_pipes);
7408
7409 DRM_DEBUG_KMS("set mode pipe masks: modeset: %x, prepare: %x, disable: %x\n",
7410 modeset_pipes, prepare_pipes, disable_pipes);
Daniel Vettere2e1ed42012-07-08 21:14:38 +02007411
Daniel Vetter976f8a22012-07-08 22:34:21 +02007412 for_each_intel_crtc_masked(dev, disable_pipes, intel_crtc)
7413 intel_crtc_disable(&intel_crtc->base);
7414
Daniel Vettera6778b32012-07-02 09:56:42 +02007415 saved_hwmode = crtc->hwmode;
7416 saved_mode = crtc->mode;
Daniel Vettera6778b32012-07-02 09:56:42 +02007417
Daniel Vetter25c5b262012-07-08 22:08:04 +02007418 /* Hack: Because we don't (yet) support global modeset on multiple
7419 * crtcs, we don't keep track of the new mode for more than one crtc.
7420 * Hence simply check whether any bit is set in modeset_pipes in all the
7421 * pieces of code that are not yet converted to deal with mutliple crtcs
7422 * changing their mode at the same time. */
7423 adjusted_mode = NULL;
7424 if (modeset_pipes) {
7425 adjusted_mode = intel_modeset_adjusted_mode(crtc, mode);
7426 if (IS_ERR(adjusted_mode)) {
7427 return false;
7428 }
Daniel Vettera6778b32012-07-02 09:56:42 +02007429 }
7430
Daniel Vetterea9d7582012-07-10 10:42:52 +02007431 for_each_intel_crtc_masked(dev, prepare_pipes, intel_crtc) {
7432 if (intel_crtc->base.enabled)
7433 dev_priv->display.crtc_disable(&intel_crtc->base);
7434 }
Daniel Vettera6778b32012-07-02 09:56:42 +02007435
Daniel Vetter6c4c86f2012-09-10 21:58:30 +02007436 /* crtc->mode is already used by the ->mode_set callbacks, hence we need
7437 * to set it here already despite that we pass it down the callchain.
7438 */
7439 if (modeset_pipes)
Daniel Vetter25c5b262012-07-08 22:08:04 +02007440 crtc->mode = *mode;
Daniel Vetter7758a112012-07-08 19:40:39 +02007441
Daniel Vetterea9d7582012-07-10 10:42:52 +02007442 /* Only after disabling all output pipelines that will be changed can we
7443 * update the the output configuration. */
7444 intel_modeset_update_state(dev, prepare_pipes);
7445
Daniel Vetter47fab732012-10-26 10:58:18 +02007446 if (dev_priv->display.modeset_global_resources)
7447 dev_priv->display.modeset_global_resources(dev);
7448
Daniel Vettera6778b32012-07-02 09:56:42 +02007449 /* Set up the DPLL and any encoders state that needs to adjust or depend
7450 * on the DPLL.
7451 */
Daniel Vetter25c5b262012-07-08 22:08:04 +02007452 for_each_intel_crtc_masked(dev, modeset_pipes, intel_crtc) {
7453 ret = !intel_crtc_mode_set(&intel_crtc->base,
7454 mode, adjusted_mode,
7455 x, y, fb);
7456 if (!ret)
7457 goto done;
Daniel Vettera6778b32012-07-02 09:56:42 +02007458 }
7459
7460 /* Now enable the clocks, plane, pipe, and connectors that we set up. */
Daniel Vetter25c5b262012-07-08 22:08:04 +02007461 for_each_intel_crtc_masked(dev, prepare_pipes, intel_crtc)
7462 dev_priv->display.crtc_enable(&intel_crtc->base);
Daniel Vettera6778b32012-07-02 09:56:42 +02007463
Daniel Vetter25c5b262012-07-08 22:08:04 +02007464 if (modeset_pipes) {
7465 /* Store real post-adjustment hardware mode. */
7466 crtc->hwmode = *adjusted_mode;
Daniel Vettera6778b32012-07-02 09:56:42 +02007467
Daniel Vetter25c5b262012-07-08 22:08:04 +02007468 /* Calculate and store various constants which
7469 * are later needed by vblank and swap-completion
7470 * timestamping. They are derived from true hwmode.
7471 */
7472 drm_calc_timestamping_constants(crtc);
7473 }
Daniel Vettera6778b32012-07-02 09:56:42 +02007474
7475 /* FIXME: add subpixel order */
7476done:
7477 drm_mode_destroy(dev, adjusted_mode);
Daniel Vetter25c5b262012-07-08 22:08:04 +02007478 if (!ret && crtc->enabled) {
Daniel Vettera6778b32012-07-02 09:56:42 +02007479 crtc->hwmode = saved_hwmode;
7480 crtc->mode = saved_mode;
Daniel Vetter8af6cf82012-07-10 09:50:11 +02007481 } else {
7482 intel_modeset_check_state(dev);
Daniel Vettera6778b32012-07-02 09:56:42 +02007483 }
7484
7485 return ret;
7486}
7487
Daniel Vetter25c5b262012-07-08 22:08:04 +02007488#undef for_each_intel_crtc_masked
7489
Daniel Vetterd9e55602012-07-04 22:16:09 +02007490static void intel_set_config_free(struct intel_set_config *config)
7491{
7492 if (!config)
7493 return;
7494
Daniel Vetter1aa4b622012-07-05 16:20:48 +02007495 kfree(config->save_connector_encoders);
7496 kfree(config->save_encoder_crtcs);
Daniel Vetterd9e55602012-07-04 22:16:09 +02007497 kfree(config);
7498}
7499
Daniel Vetter85f9eb72012-07-04 22:24:08 +02007500static int intel_set_config_save_state(struct drm_device *dev,
7501 struct intel_set_config *config)
7502{
Daniel Vetter85f9eb72012-07-04 22:24:08 +02007503 struct drm_encoder *encoder;
7504 struct drm_connector *connector;
7505 int count;
7506
Daniel Vetter1aa4b622012-07-05 16:20:48 +02007507 config->save_encoder_crtcs =
7508 kcalloc(dev->mode_config.num_encoder,
7509 sizeof(struct drm_crtc *), GFP_KERNEL);
7510 if (!config->save_encoder_crtcs)
Daniel Vetter85f9eb72012-07-04 22:24:08 +02007511 return -ENOMEM;
7512
Daniel Vetter1aa4b622012-07-05 16:20:48 +02007513 config->save_connector_encoders =
7514 kcalloc(dev->mode_config.num_connector,
7515 sizeof(struct drm_encoder *), GFP_KERNEL);
7516 if (!config->save_connector_encoders)
Daniel Vetter85f9eb72012-07-04 22:24:08 +02007517 return -ENOMEM;
7518
7519 /* Copy data. Note that driver private data is not affected.
7520 * Should anything bad happen only the expected state is
7521 * restored, not the drivers personal bookkeeping.
7522 */
7523 count = 0;
Daniel Vetter85f9eb72012-07-04 22:24:08 +02007524 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
Daniel Vetter1aa4b622012-07-05 16:20:48 +02007525 config->save_encoder_crtcs[count++] = encoder->crtc;
Daniel Vetter85f9eb72012-07-04 22:24:08 +02007526 }
7527
7528 count = 0;
7529 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
Daniel Vetter1aa4b622012-07-05 16:20:48 +02007530 config->save_connector_encoders[count++] = connector->encoder;
Daniel Vetter85f9eb72012-07-04 22:24:08 +02007531 }
7532
7533 return 0;
7534}
7535
7536static void intel_set_config_restore_state(struct drm_device *dev,
7537 struct intel_set_config *config)
7538{
Daniel Vetter9a935852012-07-05 22:34:27 +02007539 struct intel_encoder *encoder;
7540 struct intel_connector *connector;
Daniel Vetter85f9eb72012-07-04 22:24:08 +02007541 int count;
7542
7543 count = 0;
Daniel Vetter9a935852012-07-05 22:34:27 +02007544 list_for_each_entry(encoder, &dev->mode_config.encoder_list, base.head) {
7545 encoder->new_crtc =
7546 to_intel_crtc(config->save_encoder_crtcs[count++]);
Daniel Vetter85f9eb72012-07-04 22:24:08 +02007547 }
7548
7549 count = 0;
Daniel Vetter9a935852012-07-05 22:34:27 +02007550 list_for_each_entry(connector, &dev->mode_config.connector_list, base.head) {
7551 connector->new_encoder =
7552 to_intel_encoder(config->save_connector_encoders[count++]);
Daniel Vetter85f9eb72012-07-04 22:24:08 +02007553 }
7554}
7555
Daniel Vetter5e2b5842012-07-04 22:41:29 +02007556static void
7557intel_set_config_compute_mode_changes(struct drm_mode_set *set,
7558 struct intel_set_config *config)
7559{
7560
7561 /* We should be able to check here if the fb has the same properties
7562 * and then just flip_or_move it */
7563 if (set->crtc->fb != set->fb) {
7564 /* If we have no fb then treat it as a full mode set */
7565 if (set->crtc->fb == NULL) {
7566 DRM_DEBUG_KMS("crtc has no fb, full mode set\n");
7567 config->mode_changed = true;
7568 } else if (set->fb == NULL) {
7569 config->mode_changed = true;
7570 } else if (set->fb->depth != set->crtc->fb->depth) {
7571 config->mode_changed = true;
7572 } else if (set->fb->bits_per_pixel !=
7573 set->crtc->fb->bits_per_pixel) {
7574 config->mode_changed = true;
7575 } else
7576 config->fb_changed = true;
7577 }
7578
Daniel Vetter835c5872012-07-10 18:11:08 +02007579 if (set->fb && (set->x != set->crtc->x || set->y != set->crtc->y))
Daniel Vetter5e2b5842012-07-04 22:41:29 +02007580 config->fb_changed = true;
7581
7582 if (set->mode && !drm_mode_equal(set->mode, &set->crtc->mode)) {
7583 DRM_DEBUG_KMS("modes are different, full mode set\n");
7584 drm_mode_debug_printmodeline(&set->crtc->mode);
7585 drm_mode_debug_printmodeline(set->mode);
7586 config->mode_changed = true;
7587 }
7588}
7589
Daniel Vetter2e431052012-07-04 22:42:15 +02007590static int
Daniel Vetter9a935852012-07-05 22:34:27 +02007591intel_modeset_stage_output_state(struct drm_device *dev,
7592 struct drm_mode_set *set,
7593 struct intel_set_config *config)
Daniel Vetter50f56112012-07-02 09:35:43 +02007594{
Daniel Vetter85f9eb72012-07-04 22:24:08 +02007595 struct drm_crtc *new_crtc;
Daniel Vetter9a935852012-07-05 22:34:27 +02007596 struct intel_connector *connector;
7597 struct intel_encoder *encoder;
Daniel Vetter2e431052012-07-04 22:42:15 +02007598 int count, ro;
Daniel Vetter50f56112012-07-02 09:35:43 +02007599
Daniel Vetter9a935852012-07-05 22:34:27 +02007600 /* The upper layers ensure that we either disabl a crtc or have a list
7601 * of connectors. For paranoia, double-check this. */
7602 WARN_ON(!set->fb && (set->num_connectors != 0));
7603 WARN_ON(set->fb && (set->num_connectors == 0));
7604
Daniel Vetter50f56112012-07-02 09:35:43 +02007605 count = 0;
Daniel Vetter9a935852012-07-05 22:34:27 +02007606 list_for_each_entry(connector, &dev->mode_config.connector_list,
7607 base.head) {
7608 /* Otherwise traverse passed in connector list and get encoders
7609 * for them. */
Daniel Vetter50f56112012-07-02 09:35:43 +02007610 for (ro = 0; ro < set->num_connectors; ro++) {
Daniel Vetter9a935852012-07-05 22:34:27 +02007611 if (set->connectors[ro] == &connector->base) {
7612 connector->new_encoder = connector->encoder;
Daniel Vetter50f56112012-07-02 09:35:43 +02007613 break;
7614 }
7615 }
7616
Daniel Vetter9a935852012-07-05 22:34:27 +02007617 /* If we disable the crtc, disable all its connectors. Also, if
7618 * the connector is on the changing crtc but not on the new
7619 * connector list, disable it. */
7620 if ((!set->fb || ro == set->num_connectors) &&
7621 connector->base.encoder &&
7622 connector->base.encoder->crtc == set->crtc) {
7623 connector->new_encoder = NULL;
7624
7625 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] to [NOCRTC]\n",
7626 connector->base.base.id,
7627 drm_get_connector_name(&connector->base));
7628 }
7629
7630
7631 if (&connector->new_encoder->base != connector->base.encoder) {
Daniel Vetter50f56112012-07-02 09:35:43 +02007632 DRM_DEBUG_KMS("encoder changed, full mode switch\n");
Daniel Vetter5e2b5842012-07-04 22:41:29 +02007633 config->mode_changed = true;
Daniel Vetter50f56112012-07-02 09:35:43 +02007634 }
Daniel Vetter50f56112012-07-02 09:35:43 +02007635
Daniel Vetter9a935852012-07-05 22:34:27 +02007636 /* Disable all disconnected encoders. */
7637 if (connector->base.status == connector_status_disconnected)
7638 connector->new_encoder = NULL;
7639 }
7640 /* connector->new_encoder is now updated for all connectors. */
7641
7642 /* Update crtc of enabled connectors. */
Daniel Vetter50f56112012-07-02 09:35:43 +02007643 count = 0;
Daniel Vetter9a935852012-07-05 22:34:27 +02007644 list_for_each_entry(connector, &dev->mode_config.connector_list,
7645 base.head) {
7646 if (!connector->new_encoder)
Daniel Vetter50f56112012-07-02 09:35:43 +02007647 continue;
7648
Daniel Vetter9a935852012-07-05 22:34:27 +02007649 new_crtc = connector->new_encoder->base.crtc;
Daniel Vetter50f56112012-07-02 09:35:43 +02007650
7651 for (ro = 0; ro < set->num_connectors; ro++) {
Daniel Vetter9a935852012-07-05 22:34:27 +02007652 if (set->connectors[ro] == &connector->base)
Daniel Vetter50f56112012-07-02 09:35:43 +02007653 new_crtc = set->crtc;
7654 }
7655
7656 /* Make sure the new CRTC will work with the encoder */
Daniel Vetter9a935852012-07-05 22:34:27 +02007657 if (!intel_encoder_crtc_ok(&connector->new_encoder->base,
7658 new_crtc)) {
Daniel Vetter5e2b5842012-07-04 22:41:29 +02007659 return -EINVAL;
Daniel Vetter50f56112012-07-02 09:35:43 +02007660 }
Daniel Vetter9a935852012-07-05 22:34:27 +02007661 connector->encoder->new_crtc = to_intel_crtc(new_crtc);
7662
7663 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] to [CRTC:%d]\n",
7664 connector->base.base.id,
7665 drm_get_connector_name(&connector->base),
7666 new_crtc->base.id);
7667 }
7668
7669 /* Check for any encoders that needs to be disabled. */
7670 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
7671 base.head) {
7672 list_for_each_entry(connector,
7673 &dev->mode_config.connector_list,
7674 base.head) {
7675 if (connector->new_encoder == encoder) {
7676 WARN_ON(!connector->new_encoder->new_crtc);
7677
7678 goto next_encoder;
7679 }
7680 }
7681 encoder->new_crtc = NULL;
7682next_encoder:
7683 /* Only now check for crtc changes so we don't miss encoders
7684 * that will be disabled. */
7685 if (&encoder->new_crtc->base != encoder->base.crtc) {
Daniel Vetter50f56112012-07-02 09:35:43 +02007686 DRM_DEBUG_KMS("crtc changed, full mode switch\n");
Daniel Vetter5e2b5842012-07-04 22:41:29 +02007687 config->mode_changed = true;
Daniel Vetter50f56112012-07-02 09:35:43 +02007688 }
7689 }
Daniel Vetter9a935852012-07-05 22:34:27 +02007690 /* Now we've also updated encoder->new_crtc for all encoders. */
Daniel Vetter50f56112012-07-02 09:35:43 +02007691
Daniel Vetter2e431052012-07-04 22:42:15 +02007692 return 0;
7693}
7694
7695static int intel_crtc_set_config(struct drm_mode_set *set)
7696{
7697 struct drm_device *dev;
Daniel Vetter2e431052012-07-04 22:42:15 +02007698 struct drm_mode_set save_set;
7699 struct intel_set_config *config;
7700 int ret;
Daniel Vetter2e431052012-07-04 22:42:15 +02007701
Daniel Vetter8d3e3752012-07-05 16:09:09 +02007702 BUG_ON(!set);
7703 BUG_ON(!set->crtc);
7704 BUG_ON(!set->crtc->helper_private);
Daniel Vetter2e431052012-07-04 22:42:15 +02007705
7706 if (!set->mode)
7707 set->fb = NULL;
7708
Daniel Vetter431e50f2012-07-10 17:53:42 +02007709 /* The fb helper likes to play gross jokes with ->mode_set_config.
7710 * Unfortunately the crtc helper doesn't do much at all for this case,
7711 * so we have to cope with this madness until the fb helper is fixed up. */
7712 if (set->fb && set->num_connectors == 0)
7713 return 0;
7714
Daniel Vetter2e431052012-07-04 22:42:15 +02007715 if (set->fb) {
7716 DRM_DEBUG_KMS("[CRTC:%d] [FB:%d] #connectors=%d (x y) (%i %i)\n",
7717 set->crtc->base.id, set->fb->base.id,
7718 (int)set->num_connectors, set->x, set->y);
7719 } else {
7720 DRM_DEBUG_KMS("[CRTC:%d] [NOFB]\n", set->crtc->base.id);
Daniel Vetter2e431052012-07-04 22:42:15 +02007721 }
7722
7723 dev = set->crtc->dev;
7724
7725 ret = -ENOMEM;
7726 config = kzalloc(sizeof(*config), GFP_KERNEL);
7727 if (!config)
7728 goto out_config;
7729
7730 ret = intel_set_config_save_state(dev, config);
7731 if (ret)
7732 goto out_config;
7733
7734 save_set.crtc = set->crtc;
7735 save_set.mode = &set->crtc->mode;
7736 save_set.x = set->crtc->x;
7737 save_set.y = set->crtc->y;
7738 save_set.fb = set->crtc->fb;
7739
7740 /* Compute whether we need a full modeset, only an fb base update or no
7741 * change at all. In the future we might also check whether only the
7742 * mode changed, e.g. for LVDS where we only change the panel fitter in
7743 * such cases. */
7744 intel_set_config_compute_mode_changes(set, config);
7745
Daniel Vetter9a935852012-07-05 22:34:27 +02007746 ret = intel_modeset_stage_output_state(dev, set, config);
Daniel Vetter2e431052012-07-04 22:42:15 +02007747 if (ret)
7748 goto fail;
7749
Daniel Vetter5e2b5842012-07-04 22:41:29 +02007750 if (config->mode_changed) {
Daniel Vetter87f1faa2012-07-05 23:36:17 +02007751 if (set->mode) {
Daniel Vetter50f56112012-07-02 09:35:43 +02007752 DRM_DEBUG_KMS("attempting to set mode from"
7753 " userspace\n");
7754 drm_mode_debug_printmodeline(set->mode);
Daniel Vetter87f1faa2012-07-05 23:36:17 +02007755 }
7756
7757 if (!intel_set_mode(set->crtc, set->mode,
7758 set->x, set->y, set->fb)) {
7759 DRM_ERROR("failed to set mode on [CRTC:%d]\n",
7760 set->crtc->base.id);
7761 ret = -EINVAL;
7762 goto fail;
7763 }
Daniel Vetter5e2b5842012-07-04 22:41:29 +02007764 } else if (config->fb_changed) {
Daniel Vetter4f660f42012-07-02 09:47:37 +02007765 ret = intel_pipe_set_base(set->crtc,
Daniel Vetter94352cf2012-07-05 22:51:56 +02007766 set->x, set->y, set->fb);
Daniel Vetter50f56112012-07-02 09:35:43 +02007767 }
7768
Daniel Vetterd9e55602012-07-04 22:16:09 +02007769 intel_set_config_free(config);
7770
Daniel Vetter50f56112012-07-02 09:35:43 +02007771 return 0;
7772
7773fail:
Daniel Vetter85f9eb72012-07-04 22:24:08 +02007774 intel_set_config_restore_state(dev, config);
Daniel Vetter50f56112012-07-02 09:35:43 +02007775
7776 /* Try to restore the config */
Daniel Vetter5e2b5842012-07-04 22:41:29 +02007777 if (config->mode_changed &&
Daniel Vettera6778b32012-07-02 09:56:42 +02007778 !intel_set_mode(save_set.crtc, save_set.mode,
7779 save_set.x, save_set.y, save_set.fb))
Daniel Vetter50f56112012-07-02 09:35:43 +02007780 DRM_ERROR("failed to restore config after modeset failure\n");
7781
Daniel Vetterd9e55602012-07-04 22:16:09 +02007782out_config:
7783 intel_set_config_free(config);
Daniel Vetter50f56112012-07-02 09:35:43 +02007784 return ret;
7785}
7786
Chris Wilsonf6e5b162011-04-12 18:06:51 +01007787static const struct drm_crtc_funcs intel_crtc_funcs = {
Chris Wilsonf6e5b162011-04-12 18:06:51 +01007788 .cursor_set = intel_crtc_cursor_set,
7789 .cursor_move = intel_crtc_cursor_move,
7790 .gamma_set = intel_crtc_gamma_set,
Daniel Vetter50f56112012-07-02 09:35:43 +02007791 .set_config = intel_crtc_set_config,
Chris Wilsonf6e5b162011-04-12 18:06:51 +01007792 .destroy = intel_crtc_destroy,
7793 .page_flip = intel_crtc_page_flip,
7794};
7795
Paulo Zanoni79f689a2012-10-05 12:05:52 -03007796static void intel_cpu_pll_init(struct drm_device *dev)
7797{
Paulo Zanoniaffa9352012-11-23 15:30:39 -02007798 if (HAS_DDI(dev))
Paulo Zanoni79f689a2012-10-05 12:05:52 -03007799 intel_ddi_pll_init(dev);
7800}
7801
Jesse Barnesee7b9f92012-04-20 17:11:53 +01007802static void intel_pch_pll_init(struct drm_device *dev)
7803{
7804 drm_i915_private_t *dev_priv = dev->dev_private;
7805 int i;
7806
7807 if (dev_priv->num_pch_pll == 0) {
7808 DRM_DEBUG_KMS("No PCH PLLs on this hardware, skipping initialisation\n");
7809 return;
7810 }
7811
7812 for (i = 0; i < dev_priv->num_pch_pll; i++) {
7813 dev_priv->pch_plls[i].pll_reg = _PCH_DPLL(i);
7814 dev_priv->pch_plls[i].fp0_reg = _PCH_FP0(i);
7815 dev_priv->pch_plls[i].fp1_reg = _PCH_FP1(i);
7816 }
7817}
7818
Hannes Ederb358d0a2008-12-18 21:18:47 +01007819static void intel_crtc_init(struct drm_device *dev, int pipe)
Jesse Barnes79e53942008-11-07 14:24:08 -08007820{
Jesse Barnes22fd0fa2009-12-02 13:42:53 -08007821 drm_i915_private_t *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -08007822 struct intel_crtc *intel_crtc;
7823 int i;
7824
7825 intel_crtc = kzalloc(sizeof(struct intel_crtc) + (INTELFB_CONN_LIMIT * sizeof(struct drm_connector *)), GFP_KERNEL);
7826 if (intel_crtc == NULL)
7827 return;
7828
7829 drm_crtc_init(dev, &intel_crtc->base, &intel_crtc_funcs);
7830
7831 drm_mode_crtc_set_gamma_size(&intel_crtc->base, 256);
Jesse Barnes79e53942008-11-07 14:24:08 -08007832 for (i = 0; i < 256; i++) {
7833 intel_crtc->lut_r[i] = i;
7834 intel_crtc->lut_g[i] = i;
7835 intel_crtc->lut_b[i] = i;
7836 }
7837
Jesse Barnes80824002009-09-10 15:28:06 -07007838 /* Swap pipes & planes for FBC on pre-965 */
7839 intel_crtc->pipe = pipe;
7840 intel_crtc->plane = pipe;
Paulo Zanonia5c961d2012-10-24 15:59:34 -02007841 intel_crtc->cpu_transcoder = pipe;
Chris Wilsone2e767a2010-09-13 16:53:12 +01007842 if (IS_MOBILE(dev) && IS_GEN3(dev)) {
Zhao Yakui28c97732009-10-09 11:39:41 +08007843 DRM_DEBUG_KMS("swapping pipes & planes for FBC\n");
Chris Wilsone2e767a2010-09-13 16:53:12 +01007844 intel_crtc->plane = !pipe;
Jesse Barnes80824002009-09-10 15:28:06 -07007845 }
7846
Jesse Barnes22fd0fa2009-12-02 13:42:53 -08007847 BUG_ON(pipe >= ARRAY_SIZE(dev_priv->plane_to_crtc_mapping) ||
7848 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] != NULL);
7849 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] = &intel_crtc->base;
7850 dev_priv->pipe_to_crtc_mapping[intel_crtc->pipe] = &intel_crtc->base;
7851
Jesse Barnes5a354202011-06-24 12:19:22 -07007852 intel_crtc->bpp = 24; /* default for pre-Ironlake */
Jesse Barnes7e7d76c2010-09-10 10:47:20 -07007853
Jesse Barnes79e53942008-11-07 14:24:08 -08007854 drm_crtc_helper_add(&intel_crtc->base, &intel_helper_funcs);
Jesse Barnes79e53942008-11-07 14:24:08 -08007855}
7856
Carl Worth08d7b3d2009-04-29 14:43:54 -07007857int intel_get_pipe_from_crtc_id(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00007858 struct drm_file *file)
Carl Worth08d7b3d2009-04-29 14:43:54 -07007859{
Carl Worth08d7b3d2009-04-29 14:43:54 -07007860 struct drm_i915_get_pipe_from_crtc_id *pipe_from_crtc_id = data;
Daniel Vetterc05422d2009-08-11 16:05:30 +02007861 struct drm_mode_object *drmmode_obj;
7862 struct intel_crtc *crtc;
Carl Worth08d7b3d2009-04-29 14:43:54 -07007863
Daniel Vetter1cff8f62012-04-24 09:55:08 +02007864 if (!drm_core_check_feature(dev, DRIVER_MODESET))
7865 return -ENODEV;
Carl Worth08d7b3d2009-04-29 14:43:54 -07007866
Daniel Vetterc05422d2009-08-11 16:05:30 +02007867 drmmode_obj = drm_mode_object_find(dev, pipe_from_crtc_id->crtc_id,
7868 DRM_MODE_OBJECT_CRTC);
Carl Worth08d7b3d2009-04-29 14:43:54 -07007869
Daniel Vetterc05422d2009-08-11 16:05:30 +02007870 if (!drmmode_obj) {
Carl Worth08d7b3d2009-04-29 14:43:54 -07007871 DRM_ERROR("no such CRTC id\n");
7872 return -EINVAL;
7873 }
7874
Daniel Vetterc05422d2009-08-11 16:05:30 +02007875 crtc = to_intel_crtc(obj_to_crtc(drmmode_obj));
7876 pipe_from_crtc_id->pipe = crtc->pipe;
Carl Worth08d7b3d2009-04-29 14:43:54 -07007877
Daniel Vetterc05422d2009-08-11 16:05:30 +02007878 return 0;
Carl Worth08d7b3d2009-04-29 14:43:54 -07007879}
7880
Daniel Vetter66a92782012-07-12 20:08:18 +02007881static int intel_encoder_clones(struct intel_encoder *encoder)
Jesse Barnes79e53942008-11-07 14:24:08 -08007882{
Daniel Vetter66a92782012-07-12 20:08:18 +02007883 struct drm_device *dev = encoder->base.dev;
7884 struct intel_encoder *source_encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08007885 int index_mask = 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08007886 int entry = 0;
7887
Daniel Vetter66a92782012-07-12 20:08:18 +02007888 list_for_each_entry(source_encoder,
7889 &dev->mode_config.encoder_list, base.head) {
7890
7891 if (encoder == source_encoder)
Jesse Barnes79e53942008-11-07 14:24:08 -08007892 index_mask |= (1 << entry);
Daniel Vetter66a92782012-07-12 20:08:18 +02007893
7894 /* Intel hw has only one MUX where enocoders could be cloned. */
7895 if (encoder->cloneable && source_encoder->cloneable)
7896 index_mask |= (1 << entry);
7897
Jesse Barnes79e53942008-11-07 14:24:08 -08007898 entry++;
7899 }
Chris Wilson4ef69c72010-09-09 15:14:28 +01007900
Jesse Barnes79e53942008-11-07 14:24:08 -08007901 return index_mask;
7902}
7903
Chris Wilson4d302442010-12-14 19:21:29 +00007904static bool has_edp_a(struct drm_device *dev)
7905{
7906 struct drm_i915_private *dev_priv = dev->dev_private;
7907
7908 if (!IS_MOBILE(dev))
7909 return false;
7910
7911 if ((I915_READ(DP_A) & DP_DETECTED) == 0)
7912 return false;
7913
7914 if (IS_GEN5(dev) &&
7915 (I915_READ(ILK_DISPLAY_CHICKEN_FUSES) & ILK_eDP_A_DISABLE))
7916 return false;
7917
7918 return true;
7919}
7920
Jesse Barnes79e53942008-11-07 14:24:08 -08007921static void intel_setup_outputs(struct drm_device *dev)
7922{
Eric Anholt725e30a2009-01-22 13:01:02 -08007923 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson4ef69c72010-09-09 15:14:28 +01007924 struct intel_encoder *encoder;
Adam Jacksoncb0953d2010-07-16 14:46:29 -04007925 bool dpd_is_edp = false;
Chris Wilsonf3cfcba2012-02-09 09:35:53 +00007926 bool has_lvds;
Jesse Barnes79e53942008-11-07 14:24:08 -08007927
Chris Wilsonf3cfcba2012-02-09 09:35:53 +00007928 has_lvds = intel_lvds_init(dev);
Chris Wilsonc5d1b512010-11-29 18:00:23 +00007929 if (!has_lvds && !HAS_PCH_SPLIT(dev)) {
7930 /* disable the panel fitter on everything but LVDS */
7931 I915_WRITE(PFIT_CONTROL, 0);
7932 }
Jesse Barnes79e53942008-11-07 14:24:08 -08007933
Paulo Zanoniaffa9352012-11-23 15:30:39 -02007934 if (!(HAS_DDI(dev) && (I915_READ(DDI_BUF_CTL(PORT_A)) & DDI_A_4_LANES)))
Paulo Zanoni79935fc2012-11-20 13:27:40 -02007935 intel_crt_init(dev);
Adam Jacksoncb0953d2010-07-16 14:46:29 -04007936
Paulo Zanoniaffa9352012-11-23 15:30:39 -02007937 if (HAS_DDI(dev)) {
Eugeni Dodonov0e72a5b2012-05-09 15:37:27 -03007938 int found;
7939
7940 /* Haswell uses DDI functions to detect digital outputs */
7941 found = I915_READ(DDI_BUF_CTL_A) & DDI_INIT_DISPLAY_DETECTED;
7942 /* DDI A only supports eDP */
7943 if (found)
7944 intel_ddi_init(dev, PORT_A);
7945
7946 /* DDI B, C and D detection is indicated by the SFUSE_STRAP
7947 * register */
7948 found = I915_READ(SFUSE_STRAP);
7949
7950 if (found & SFUSE_STRAP_DDIB_DETECTED)
7951 intel_ddi_init(dev, PORT_B);
7952 if (found & SFUSE_STRAP_DDIC_DETECTED)
7953 intel_ddi_init(dev, PORT_C);
7954 if (found & SFUSE_STRAP_DDID_DETECTED)
7955 intel_ddi_init(dev, PORT_D);
7956 } else if (HAS_PCH_SPLIT(dev)) {
Adam Jacksoncb0953d2010-07-16 14:46:29 -04007957 int found;
Daniel Vetter270b3042012-10-27 15:52:05 +02007958 dpd_is_edp = intel_dpd_is_edp(dev);
7959
7960 if (has_edp_a(dev))
7961 intel_dp_init(dev, DP_A, PORT_A);
Adam Jacksoncb0953d2010-07-16 14:46:29 -04007962
Zhenyu Wang30ad48b2009-06-05 15:38:43 +08007963 if (I915_READ(HDMIB) & PORT_DETECTED) {
Zhao Yakui461ed3c2010-03-30 15:11:33 +08007964 /* PCH SDVOB multiplex with HDMIB */
Daniel Vettereef4eac2012-03-23 23:43:35 +01007965 found = intel_sdvo_init(dev, PCH_SDVOB, true);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +08007966 if (!found)
Daniel Vetter08d644a2012-07-12 20:19:59 +02007967 intel_hdmi_init(dev, HDMIB, PORT_B);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08007968 if (!found && (I915_READ(PCH_DP_B) & DP_DETECTED))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03007969 intel_dp_init(dev, PCH_DP_B, PORT_B);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +08007970 }
7971
7972 if (I915_READ(HDMIC) & PORT_DETECTED)
Daniel Vetter08d644a2012-07-12 20:19:59 +02007973 intel_hdmi_init(dev, HDMIC, PORT_C);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +08007974
Jesse Barnesb708a1d2012-06-11 14:39:56 -04007975 if (!dpd_is_edp && I915_READ(HDMID) & PORT_DETECTED)
Daniel Vetter08d644a2012-07-12 20:19:59 +02007976 intel_hdmi_init(dev, HDMID, PORT_D);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +08007977
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08007978 if (I915_READ(PCH_DP_C) & DP_DETECTED)
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03007979 intel_dp_init(dev, PCH_DP_C, PORT_C);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08007980
Daniel Vetter270b3042012-10-27 15:52:05 +02007981 if (I915_READ(PCH_DP_D) & DP_DETECTED)
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03007982 intel_dp_init(dev, PCH_DP_D, PORT_D);
Jesse Barnes4a87d652012-06-15 11:55:16 -07007983 } else if (IS_VALLEYVIEW(dev)) {
7984 int found;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08007985
Gajanan Bhat19c03922012-09-27 19:13:07 +05307986 /* Check for built-in panel first. Shares lanes with HDMI on SDVOC */
7987 if (I915_READ(DP_C) & DP_DETECTED)
7988 intel_dp_init(dev, DP_C, PORT_C);
7989
Jesse Barnes4a87d652012-06-15 11:55:16 -07007990 if (I915_READ(SDVOB) & PORT_DETECTED) {
7991 /* SDVOB multiplex with HDMIB */
7992 found = intel_sdvo_init(dev, SDVOB, true);
7993 if (!found)
Daniel Vetter08d644a2012-07-12 20:19:59 +02007994 intel_hdmi_init(dev, SDVOB, PORT_B);
Jesse Barnes4a87d652012-06-15 11:55:16 -07007995 if (!found && (I915_READ(DP_B) & DP_DETECTED))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03007996 intel_dp_init(dev, DP_B, PORT_B);
Jesse Barnes4a87d652012-06-15 11:55:16 -07007997 }
7998
7999 if (I915_READ(SDVOC) & PORT_DETECTED)
Daniel Vetter08d644a2012-07-12 20:19:59 +02008000 intel_hdmi_init(dev, SDVOC, PORT_C);
Jesse Barnes4a87d652012-06-15 11:55:16 -07008001
Zhenyu Wang103a1962009-11-27 11:44:36 +08008002 } else if (SUPPORTS_DIGITAL_OUTPUTS(dev)) {
Ma Ling27185ae2009-08-24 13:50:23 +08008003 bool found = false;
Eric Anholt7d573822009-01-02 13:33:00 -08008004
Eric Anholt725e30a2009-01-22 13:01:02 -08008005 if (I915_READ(SDVOB) & SDVO_DETECTED) {
Jesse Barnesb01f2c32009-12-11 11:07:17 -08008006 DRM_DEBUG_KMS("probing SDVOB\n");
Daniel Vettereef4eac2012-03-23 23:43:35 +01008007 found = intel_sdvo_init(dev, SDVOB, true);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08008008 if (!found && SUPPORTS_INTEGRATED_HDMI(dev)) {
8009 DRM_DEBUG_KMS("probing HDMI on SDVOB\n");
Daniel Vetter08d644a2012-07-12 20:19:59 +02008010 intel_hdmi_init(dev, SDVOB, PORT_B);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08008011 }
Ma Ling27185ae2009-08-24 13:50:23 +08008012
Jesse Barnesb01f2c32009-12-11 11:07:17 -08008013 if (!found && SUPPORTS_INTEGRATED_DP(dev)) {
8014 DRM_DEBUG_KMS("probing DP_B\n");
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03008015 intel_dp_init(dev, DP_B, PORT_B);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08008016 }
Eric Anholt725e30a2009-01-22 13:01:02 -08008017 }
Kristian Høgsberg13520b02009-03-13 15:42:14 -04008018
8019 /* Before G4X SDVOC doesn't have its own detect register */
Kristian Høgsberg13520b02009-03-13 15:42:14 -04008020
Jesse Barnesb01f2c32009-12-11 11:07:17 -08008021 if (I915_READ(SDVOB) & SDVO_DETECTED) {
8022 DRM_DEBUG_KMS("probing SDVOC\n");
Daniel Vettereef4eac2012-03-23 23:43:35 +01008023 found = intel_sdvo_init(dev, SDVOC, false);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08008024 }
Ma Ling27185ae2009-08-24 13:50:23 +08008025
8026 if (!found && (I915_READ(SDVOC) & SDVO_DETECTED)) {
8027
Jesse Barnesb01f2c32009-12-11 11:07:17 -08008028 if (SUPPORTS_INTEGRATED_HDMI(dev)) {
8029 DRM_DEBUG_KMS("probing HDMI on SDVOC\n");
Daniel Vetter08d644a2012-07-12 20:19:59 +02008030 intel_hdmi_init(dev, SDVOC, PORT_C);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08008031 }
8032 if (SUPPORTS_INTEGRATED_DP(dev)) {
8033 DRM_DEBUG_KMS("probing DP_C\n");
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03008034 intel_dp_init(dev, DP_C, PORT_C);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08008035 }
Eric Anholt725e30a2009-01-22 13:01:02 -08008036 }
Ma Ling27185ae2009-08-24 13:50:23 +08008037
Jesse Barnesb01f2c32009-12-11 11:07:17 -08008038 if (SUPPORTS_INTEGRATED_DP(dev) &&
8039 (I915_READ(DP_D) & DP_DETECTED)) {
8040 DRM_DEBUG_KMS("probing DP_D\n");
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03008041 intel_dp_init(dev, DP_D, PORT_D);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08008042 }
Eric Anholtbad720f2009-10-22 16:11:14 -07008043 } else if (IS_GEN2(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -08008044 intel_dvo_init(dev);
8045
Zhenyu Wang103a1962009-11-27 11:44:36 +08008046 if (SUPPORTS_TV(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -08008047 intel_tv_init(dev);
8048
Chris Wilson4ef69c72010-09-09 15:14:28 +01008049 list_for_each_entry(encoder, &dev->mode_config.encoder_list, base.head) {
8050 encoder->base.possible_crtcs = encoder->crtc_mask;
8051 encoder->base.possible_clones =
Daniel Vetter66a92782012-07-12 20:08:18 +02008052 intel_encoder_clones(encoder);
Jesse Barnes79e53942008-11-07 14:24:08 -08008053 }
Chris Wilson47356eb2011-01-11 17:06:04 +00008054
Paulo Zanoni40579ab2012-07-03 15:57:33 -03008055 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev))
Keith Packard9fb526d2011-09-26 22:24:57 -07008056 ironlake_init_pch_refclk(dev);
Daniel Vetter270b3042012-10-27 15:52:05 +02008057
8058 drm_helper_move_panel_connectors_to_head(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08008059}
8060
8061static void intel_user_framebuffer_destroy(struct drm_framebuffer *fb)
8062{
8063 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
Jesse Barnes79e53942008-11-07 14:24:08 -08008064
8065 drm_framebuffer_cleanup(fb);
Chris Wilson05394f32010-11-08 19:18:58 +00008066 drm_gem_object_unreference_unlocked(&intel_fb->obj->base);
Jesse Barnes79e53942008-11-07 14:24:08 -08008067
8068 kfree(intel_fb);
8069}
8070
8071static int intel_user_framebuffer_create_handle(struct drm_framebuffer *fb,
Chris Wilson05394f32010-11-08 19:18:58 +00008072 struct drm_file *file,
Jesse Barnes79e53942008-11-07 14:24:08 -08008073 unsigned int *handle)
8074{
8075 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
Chris Wilson05394f32010-11-08 19:18:58 +00008076 struct drm_i915_gem_object *obj = intel_fb->obj;
Jesse Barnes79e53942008-11-07 14:24:08 -08008077
Chris Wilson05394f32010-11-08 19:18:58 +00008078 return drm_gem_handle_create(file, &obj->base, handle);
Jesse Barnes79e53942008-11-07 14:24:08 -08008079}
8080
8081static const struct drm_framebuffer_funcs intel_fb_funcs = {
8082 .destroy = intel_user_framebuffer_destroy,
8083 .create_handle = intel_user_framebuffer_create_handle,
8084};
8085
Dave Airlie38651672010-03-30 05:34:13 +00008086int intel_framebuffer_init(struct drm_device *dev,
8087 struct intel_framebuffer *intel_fb,
Jesse Barnes308e5bc2011-11-14 14:51:28 -08008088 struct drm_mode_fb_cmd2 *mode_cmd,
Chris Wilson05394f32010-11-08 19:18:58 +00008089 struct drm_i915_gem_object *obj)
Jesse Barnes79e53942008-11-07 14:24:08 -08008090{
Jesse Barnes79e53942008-11-07 14:24:08 -08008091 int ret;
8092
Chris Wilson05394f32010-11-08 19:18:58 +00008093 if (obj->tiling_mode == I915_TILING_Y)
Chris Wilson57cd6502010-08-08 12:34:44 +01008094 return -EINVAL;
8095
Jesse Barnes308e5bc2011-11-14 14:51:28 -08008096 if (mode_cmd->pitches[0] & 63)
Chris Wilson57cd6502010-08-08 12:34:44 +01008097 return -EINVAL;
8098
Ville Syrjälä5d7bd702012-10-31 17:50:18 +02008099 /* FIXME <= Gen4 stride limits are bit unclear */
8100 if (mode_cmd->pitches[0] > 32768)
8101 return -EINVAL;
8102
8103 if (obj->tiling_mode != I915_TILING_NONE &&
8104 mode_cmd->pitches[0] != obj->stride)
8105 return -EINVAL;
8106
Ville Syrjälä57779d02012-10-31 17:50:14 +02008107 /* Reject formats not supported by any plane early. */
Jesse Barnes308e5bc2011-11-14 14:51:28 -08008108 switch (mode_cmd->pixel_format) {
Ville Syrjälä57779d02012-10-31 17:50:14 +02008109 case DRM_FORMAT_C8:
Ville Syrjälä04b39242011-11-17 18:05:13 +02008110 case DRM_FORMAT_RGB565:
8111 case DRM_FORMAT_XRGB8888:
8112 case DRM_FORMAT_ARGB8888:
Ville Syrjälä57779d02012-10-31 17:50:14 +02008113 break;
8114 case DRM_FORMAT_XRGB1555:
8115 case DRM_FORMAT_ARGB1555:
8116 if (INTEL_INFO(dev)->gen > 3)
8117 return -EINVAL;
8118 break;
8119 case DRM_FORMAT_XBGR8888:
8120 case DRM_FORMAT_ABGR8888:
Ville Syrjälä04b39242011-11-17 18:05:13 +02008121 case DRM_FORMAT_XRGB2101010:
8122 case DRM_FORMAT_ARGB2101010:
Ville Syrjälä57779d02012-10-31 17:50:14 +02008123 case DRM_FORMAT_XBGR2101010:
8124 case DRM_FORMAT_ABGR2101010:
8125 if (INTEL_INFO(dev)->gen < 4)
8126 return -EINVAL;
Jesse Barnesb5626742011-06-24 12:19:27 -07008127 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +02008128 case DRM_FORMAT_YUYV:
8129 case DRM_FORMAT_UYVY:
8130 case DRM_FORMAT_YVYU:
8131 case DRM_FORMAT_VYUY:
Ville Syrjälä57779d02012-10-31 17:50:14 +02008132 if (INTEL_INFO(dev)->gen < 6)
8133 return -EINVAL;
Chris Wilson57cd6502010-08-08 12:34:44 +01008134 break;
8135 default:
Ville Syrjälä57779d02012-10-31 17:50:14 +02008136 DRM_DEBUG_KMS("unsupported pixel format 0x%08x\n", mode_cmd->pixel_format);
Chris Wilson57cd6502010-08-08 12:34:44 +01008137 return -EINVAL;
8138 }
8139
Ville Syrjälä90f9a332012-10-31 17:50:19 +02008140 /* FIXME need to adjust LINOFF/TILEOFF accordingly. */
8141 if (mode_cmd->offsets[0] != 0)
8142 return -EINVAL;
8143
Jesse Barnes79e53942008-11-07 14:24:08 -08008144 ret = drm_framebuffer_init(dev, &intel_fb->base, &intel_fb_funcs);
8145 if (ret) {
8146 DRM_ERROR("framebuffer init failed %d\n", ret);
8147 return ret;
8148 }
8149
8150 drm_helper_mode_fill_fb_struct(&intel_fb->base, mode_cmd);
Jesse Barnes79e53942008-11-07 14:24:08 -08008151 intel_fb->obj = obj;
Jesse Barnes79e53942008-11-07 14:24:08 -08008152 return 0;
8153}
8154
Jesse Barnes79e53942008-11-07 14:24:08 -08008155static struct drm_framebuffer *
8156intel_user_framebuffer_create(struct drm_device *dev,
8157 struct drm_file *filp,
Jesse Barnes308e5bc2011-11-14 14:51:28 -08008158 struct drm_mode_fb_cmd2 *mode_cmd)
Jesse Barnes79e53942008-11-07 14:24:08 -08008159{
Chris Wilson05394f32010-11-08 19:18:58 +00008160 struct drm_i915_gem_object *obj;
Jesse Barnes79e53942008-11-07 14:24:08 -08008161
Jesse Barnes308e5bc2011-11-14 14:51:28 -08008162 obj = to_intel_bo(drm_gem_object_lookup(dev, filp,
8163 mode_cmd->handles[0]));
Chris Wilsonc8725222011-02-19 11:31:06 +00008164 if (&obj->base == NULL)
Chris Wilsoncce13ff2010-08-08 13:36:38 +01008165 return ERR_PTR(-ENOENT);
Jesse Barnes79e53942008-11-07 14:24:08 -08008166
Chris Wilsond2dff872011-04-19 08:36:26 +01008167 return intel_framebuffer_create(dev, mode_cmd, obj);
Jesse Barnes79e53942008-11-07 14:24:08 -08008168}
8169
Jesse Barnes79e53942008-11-07 14:24:08 -08008170static const struct drm_mode_config_funcs intel_mode_funcs = {
Jesse Barnes79e53942008-11-07 14:24:08 -08008171 .fb_create = intel_user_framebuffer_create,
Dave Airlieeb1f8e42010-05-07 06:42:51 +00008172 .output_poll_changed = intel_fb_output_poll_changed,
Jesse Barnes79e53942008-11-07 14:24:08 -08008173};
8174
Jesse Barnese70236a2009-09-21 10:42:27 -07008175/* Set up chip specific display functions */
8176static void intel_init_display(struct drm_device *dev)
8177{
8178 struct drm_i915_private *dev_priv = dev->dev_private;
8179
8180 /* We always want a DPMS function */
Paulo Zanoniaffa9352012-11-23 15:30:39 -02008181 if (HAS_DDI(dev)) {
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03008182 dev_priv->display.crtc_mode_set = haswell_crtc_mode_set;
Paulo Zanoni4f771f12012-10-23 18:29:51 -02008183 dev_priv->display.crtc_enable = haswell_crtc_enable;
8184 dev_priv->display.crtc_disable = haswell_crtc_disable;
Paulo Zanoni6441ab52012-10-05 12:05:58 -03008185 dev_priv->display.off = haswell_crtc_off;
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03008186 dev_priv->display.update_plane = ironlake_update_plane;
8187 } else if (HAS_PCH_SPLIT(dev)) {
Eric Anholtf564048e2011-03-30 13:01:02 -07008188 dev_priv->display.crtc_mode_set = ironlake_crtc_mode_set;
Daniel Vetter76e5a892012-06-29 22:39:33 +02008189 dev_priv->display.crtc_enable = ironlake_crtc_enable;
8190 dev_priv->display.crtc_disable = ironlake_crtc_disable;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01008191 dev_priv->display.off = ironlake_crtc_off;
Jesse Barnes17638cd2011-06-24 12:19:23 -07008192 dev_priv->display.update_plane = ironlake_update_plane;
Eric Anholtf564048e2011-03-30 13:01:02 -07008193 } else {
Eric Anholtf564048e2011-03-30 13:01:02 -07008194 dev_priv->display.crtc_mode_set = i9xx_crtc_mode_set;
Daniel Vetter76e5a892012-06-29 22:39:33 +02008195 dev_priv->display.crtc_enable = i9xx_crtc_enable;
8196 dev_priv->display.crtc_disable = i9xx_crtc_disable;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01008197 dev_priv->display.off = i9xx_crtc_off;
Jesse Barnes17638cd2011-06-24 12:19:23 -07008198 dev_priv->display.update_plane = i9xx_update_plane;
Eric Anholtf564048e2011-03-30 13:01:02 -07008199 }
Jesse Barnese70236a2009-09-21 10:42:27 -07008200
Jesse Barnese70236a2009-09-21 10:42:27 -07008201 /* Returns the core display clock speed */
Jesse Barnes25eb05fc2012-03-28 13:39:23 -07008202 if (IS_VALLEYVIEW(dev))
8203 dev_priv->display.get_display_clock_speed =
8204 valleyview_get_display_clock_speed;
8205 else if (IS_I945G(dev) || (IS_G33(dev) && !IS_PINEVIEW_M(dev)))
Jesse Barnese70236a2009-09-21 10:42:27 -07008206 dev_priv->display.get_display_clock_speed =
8207 i945_get_display_clock_speed;
8208 else if (IS_I915G(dev))
8209 dev_priv->display.get_display_clock_speed =
8210 i915_get_display_clock_speed;
Adam Jacksonf2b115e2009-12-03 17:14:42 -05008211 else if (IS_I945GM(dev) || IS_845G(dev) || IS_PINEVIEW_M(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -07008212 dev_priv->display.get_display_clock_speed =
8213 i9xx_misc_get_display_clock_speed;
8214 else if (IS_I915GM(dev))
8215 dev_priv->display.get_display_clock_speed =
8216 i915gm_get_display_clock_speed;
8217 else if (IS_I865G(dev))
8218 dev_priv->display.get_display_clock_speed =
8219 i865_get_display_clock_speed;
Daniel Vetterf0f8a9c2009-09-15 22:57:33 +02008220 else if (IS_I85X(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -07008221 dev_priv->display.get_display_clock_speed =
8222 i855_get_display_clock_speed;
8223 else /* 852, 830 */
8224 dev_priv->display.get_display_clock_speed =
8225 i830_get_display_clock_speed;
8226
Zhenyu Wang7f8a8562010-04-01 13:07:53 +08008227 if (HAS_PCH_SPLIT(dev)) {
Chris Wilsonf00a3dd2010-10-21 14:57:17 +01008228 if (IS_GEN5(dev)) {
Jesse Barnes674cf962011-04-28 14:27:04 -07008229 dev_priv->display.fdi_link_train = ironlake_fdi_link_train;
Wu Fengguange0dac652011-09-05 14:25:34 +08008230 dev_priv->display.write_eld = ironlake_write_eld;
Yuanhan Liu13982612010-12-15 15:42:31 +08008231 } else if (IS_GEN6(dev)) {
Jesse Barnes674cf962011-04-28 14:27:04 -07008232 dev_priv->display.fdi_link_train = gen6_fdi_link_train;
Wu Fengguange0dac652011-09-05 14:25:34 +08008233 dev_priv->display.write_eld = ironlake_write_eld;
Jesse Barnes357555c2011-04-28 15:09:55 -07008234 } else if (IS_IVYBRIDGE(dev)) {
8235 /* FIXME: detect B0+ stepping and use auto training */
8236 dev_priv->display.fdi_link_train = ivb_manual_fdi_link_train;
Wu Fengguange0dac652011-09-05 14:25:34 +08008237 dev_priv->display.write_eld = ironlake_write_eld;
Daniel Vetter01a415f2012-10-27 15:58:40 +02008238 dev_priv->display.modeset_global_resources =
8239 ivb_modeset_global_resources;
Eugeni Dodonovc82e4d22012-05-09 15:37:21 -03008240 } else if (IS_HASWELL(dev)) {
8241 dev_priv->display.fdi_link_train = hsw_fdi_link_train;
Wang Xingchao83358c852012-08-16 22:43:37 +08008242 dev_priv->display.write_eld = haswell_write_eld;
Zhenyu Wang7f8a8562010-04-01 13:07:53 +08008243 } else
8244 dev_priv->display.update_wm = NULL;
Jesse Barnes6067aae2011-04-28 15:04:31 -07008245 } else if (IS_G4X(dev)) {
Wu Fengguange0dac652011-09-05 14:25:34 +08008246 dev_priv->display.write_eld = g4x_write_eld;
Jesse Barnese70236a2009-09-21 10:42:27 -07008247 }
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008248
8249 /* Default just returns -ENODEV to indicate unsupported */
8250 dev_priv->display.queue_flip = intel_default_queue_flip;
8251
8252 switch (INTEL_INFO(dev)->gen) {
8253 case 2:
8254 dev_priv->display.queue_flip = intel_gen2_queue_flip;
8255 break;
8256
8257 case 3:
8258 dev_priv->display.queue_flip = intel_gen3_queue_flip;
8259 break;
8260
8261 case 4:
8262 case 5:
8263 dev_priv->display.queue_flip = intel_gen4_queue_flip;
8264 break;
8265
8266 case 6:
8267 dev_priv->display.queue_flip = intel_gen6_queue_flip;
8268 break;
Jesse Barnes7c9017e2011-06-16 12:18:54 -07008269 case 7:
8270 dev_priv->display.queue_flip = intel_gen7_queue_flip;
8271 break;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008272 }
Jesse Barnese70236a2009-09-21 10:42:27 -07008273}
8274
Jesse Barnesb690e962010-07-19 13:53:12 -07008275/*
8276 * Some BIOSes insist on assuming the GPU's pipe A is enabled at suspend,
8277 * resume, or other times. This quirk makes sure that's the case for
8278 * affected systems.
8279 */
Akshay Joshi0206e352011-08-16 15:34:10 -04008280static void quirk_pipea_force(struct drm_device *dev)
Jesse Barnesb690e962010-07-19 13:53:12 -07008281{
8282 struct drm_i915_private *dev_priv = dev->dev_private;
8283
8284 dev_priv->quirks |= QUIRK_PIPEA_FORCE;
Daniel Vetterbc0daf42012-04-01 13:16:49 +02008285 DRM_INFO("applying pipe a force quirk\n");
Jesse Barnesb690e962010-07-19 13:53:12 -07008286}
8287
Keith Packard435793d2011-07-12 14:56:22 -07008288/*
8289 * Some machines (Lenovo U160) do not work with SSC on LVDS for some reason
8290 */
8291static void quirk_ssc_force_disable(struct drm_device *dev)
8292{
8293 struct drm_i915_private *dev_priv = dev->dev_private;
8294 dev_priv->quirks |= QUIRK_LVDS_SSC_DISABLE;
Daniel Vetterbc0daf42012-04-01 13:16:49 +02008295 DRM_INFO("applying lvds SSC disable quirk\n");
Keith Packard435793d2011-07-12 14:56:22 -07008296}
8297
Carsten Emde4dca20e2012-03-15 15:56:26 +01008298/*
Carsten Emde5a15ab52012-03-15 15:56:27 +01008299 * A machine (e.g. Acer Aspire 5734Z) may need to invert the panel backlight
8300 * brightness value
Carsten Emde4dca20e2012-03-15 15:56:26 +01008301 */
8302static void quirk_invert_brightness(struct drm_device *dev)
8303{
8304 struct drm_i915_private *dev_priv = dev->dev_private;
8305 dev_priv->quirks |= QUIRK_INVERT_BRIGHTNESS;
Daniel Vetterbc0daf42012-04-01 13:16:49 +02008306 DRM_INFO("applying inverted panel brightness quirk\n");
Jesse Barnesb690e962010-07-19 13:53:12 -07008307}
8308
8309struct intel_quirk {
8310 int device;
8311 int subsystem_vendor;
8312 int subsystem_device;
8313 void (*hook)(struct drm_device *dev);
8314};
8315
Egbert Eich5f85f1762012-10-14 15:46:38 +02008316/* For systems that don't have a meaningful PCI subdevice/subvendor ID */
8317struct intel_dmi_quirk {
8318 void (*hook)(struct drm_device *dev);
8319 const struct dmi_system_id (*dmi_id_list)[];
8320};
8321
8322static int intel_dmi_reverse_brightness(const struct dmi_system_id *id)
8323{
8324 DRM_INFO("Backlight polarity reversed on %s\n", id->ident);
8325 return 1;
8326}
8327
8328static const struct intel_dmi_quirk intel_dmi_quirks[] = {
8329 {
8330 .dmi_id_list = &(const struct dmi_system_id[]) {
8331 {
8332 .callback = intel_dmi_reverse_brightness,
8333 .ident = "NCR Corporation",
8334 .matches = {DMI_MATCH(DMI_SYS_VENDOR, "NCR Corporation"),
8335 DMI_MATCH(DMI_PRODUCT_NAME, ""),
8336 },
8337 },
8338 { } /* terminating entry */
8339 },
8340 .hook = quirk_invert_brightness,
8341 },
8342};
8343
Ben Widawskyc43b5632012-04-16 14:07:40 -07008344static struct intel_quirk intel_quirks[] = {
Jesse Barnesb690e962010-07-19 13:53:12 -07008345 /* HP Mini needs pipe A force quirk (LP: #322104) */
Akshay Joshi0206e352011-08-16 15:34:10 -04008346 { 0x27ae, 0x103c, 0x361a, quirk_pipea_force },
Jesse Barnesb690e962010-07-19 13:53:12 -07008347
Jesse Barnesb690e962010-07-19 13:53:12 -07008348 /* Toshiba Protege R-205, S-209 needs pipe A force quirk */
8349 { 0x2592, 0x1179, 0x0001, quirk_pipea_force },
8350
Jesse Barnesb690e962010-07-19 13:53:12 -07008351 /* ThinkPad T60 needs pipe A force quirk (bug #16494) */
8352 { 0x2782, 0x17aa, 0x201a, quirk_pipea_force },
8353
Daniel Vetterccd0d362012-10-10 23:13:59 +02008354 /* 830/845 need to leave pipe A & dpll A up */
Jesse Barnesb690e962010-07-19 13:53:12 -07008355 { 0x2562, PCI_ANY_ID, PCI_ANY_ID, quirk_pipea_force },
Daniel Vetterdcdaed62012-08-12 21:19:34 +02008356 { 0x3577, PCI_ANY_ID, PCI_ANY_ID, quirk_pipea_force },
Keith Packard435793d2011-07-12 14:56:22 -07008357
8358 /* Lenovo U160 cannot use SSC on LVDS */
8359 { 0x0046, 0x17aa, 0x3920, quirk_ssc_force_disable },
Michel Alexandre Salim070d3292011-07-28 18:52:06 +02008360
8361 /* Sony Vaio Y cannot use SSC on LVDS */
8362 { 0x0046, 0x104d, 0x9076, quirk_ssc_force_disable },
Carsten Emde5a15ab52012-03-15 15:56:27 +01008363
8364 /* Acer Aspire 5734Z must invert backlight brightness */
8365 { 0x2a42, 0x1025, 0x0459, quirk_invert_brightness },
Jesse Barnesb690e962010-07-19 13:53:12 -07008366};
8367
8368static void intel_init_quirks(struct drm_device *dev)
8369{
8370 struct pci_dev *d = dev->pdev;
8371 int i;
8372
8373 for (i = 0; i < ARRAY_SIZE(intel_quirks); i++) {
8374 struct intel_quirk *q = &intel_quirks[i];
8375
8376 if (d->device == q->device &&
8377 (d->subsystem_vendor == q->subsystem_vendor ||
8378 q->subsystem_vendor == PCI_ANY_ID) &&
8379 (d->subsystem_device == q->subsystem_device ||
8380 q->subsystem_device == PCI_ANY_ID))
8381 q->hook(dev);
8382 }
Egbert Eich5f85f1762012-10-14 15:46:38 +02008383 for (i = 0; i < ARRAY_SIZE(intel_dmi_quirks); i++) {
8384 if (dmi_check_system(*intel_dmi_quirks[i].dmi_id_list) != 0)
8385 intel_dmi_quirks[i].hook(dev);
8386 }
Jesse Barnesb690e962010-07-19 13:53:12 -07008387}
8388
Jesse Barnes9cce37f2010-08-13 15:11:26 -07008389/* Disable the VGA plane that we never use */
8390static void i915_disable_vga(struct drm_device *dev)
8391{
8392 struct drm_i915_private *dev_priv = dev->dev_private;
8393 u8 sr1;
8394 u32 vga_reg;
8395
8396 if (HAS_PCH_SPLIT(dev))
8397 vga_reg = CPU_VGACNTRL;
8398 else
8399 vga_reg = VGACNTRL;
8400
8401 vga_get_uninterruptible(dev->pdev, VGA_RSRC_LEGACY_IO);
Jesse Barnes3fdcf432012-04-06 11:46:27 -07008402 outb(SR01, VGA_SR_INDEX);
Jesse Barnes9cce37f2010-08-13 15:11:26 -07008403 sr1 = inb(VGA_SR_DATA);
8404 outb(sr1 | 1<<5, VGA_SR_DATA);
8405 vga_put(dev->pdev, VGA_RSRC_LEGACY_IO);
8406 udelay(300);
8407
8408 I915_WRITE(vga_reg, VGA_DISP_DISABLE);
8409 POSTING_READ(vga_reg);
8410}
8411
Daniel Vetterf8175862012-04-10 15:50:11 +02008412void intel_modeset_init_hw(struct drm_device *dev)
8413{
Eugeni Dodonov0232e922012-07-06 15:42:36 -03008414 /* We attempt to init the necessary power wells early in the initialization
8415 * time, so the subsystems that expect power to be enabled can work.
8416 */
8417 intel_init_power_wells(dev);
8418
Eugeni Dodonova8f78b52012-06-28 15:55:35 -03008419 intel_prepare_ddi(dev);
8420
Daniel Vetterf8175862012-04-10 15:50:11 +02008421 intel_init_clock_gating(dev);
8422
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02008423 mutex_lock(&dev->struct_mutex);
Daniel Vetter8090c6b2012-06-24 16:42:32 +02008424 intel_enable_gt_powersave(dev);
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02008425 mutex_unlock(&dev->struct_mutex);
Daniel Vetterf8175862012-04-10 15:50:11 +02008426}
8427
Jesse Barnes79e53942008-11-07 14:24:08 -08008428void intel_modeset_init(struct drm_device *dev)
8429{
Jesse Barnes652c3932009-08-17 13:31:43 -07008430 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesb840d907f2011-12-13 13:19:38 -08008431 int i, ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08008432
8433 drm_mode_config_init(dev);
8434
8435 dev->mode_config.min_width = 0;
8436 dev->mode_config.min_height = 0;
8437
Dave Airlie019d96c2011-09-29 16:20:42 +01008438 dev->mode_config.preferred_depth = 24;
8439 dev->mode_config.prefer_shadow = 1;
8440
Laurent Pincharte6ecefa2012-05-17 13:27:23 +02008441 dev->mode_config.funcs = &intel_mode_funcs;
Jesse Barnes79e53942008-11-07 14:24:08 -08008442
Jesse Barnesb690e962010-07-19 13:53:12 -07008443 intel_init_quirks(dev);
8444
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03008445 intel_init_pm(dev);
8446
Jesse Barnese70236a2009-09-21 10:42:27 -07008447 intel_init_display(dev);
8448
Chris Wilsona6c45cf2010-09-17 00:32:17 +01008449 if (IS_GEN2(dev)) {
8450 dev->mode_config.max_width = 2048;
8451 dev->mode_config.max_height = 2048;
8452 } else if (IS_GEN3(dev)) {
Keith Packard5e4d6fa2009-07-12 23:53:17 -07008453 dev->mode_config.max_width = 4096;
8454 dev->mode_config.max_height = 4096;
Jesse Barnes79e53942008-11-07 14:24:08 -08008455 } else {
Chris Wilsona6c45cf2010-09-17 00:32:17 +01008456 dev->mode_config.max_width = 8192;
8457 dev->mode_config.max_height = 8192;
Jesse Barnes79e53942008-11-07 14:24:08 -08008458 }
Daniel Vetterdd2757f2012-06-07 15:55:57 +02008459 dev->mode_config.fb_base = dev_priv->mm.gtt_base_addr;
Jesse Barnes79e53942008-11-07 14:24:08 -08008460
Zhao Yakui28c97732009-10-09 11:39:41 +08008461 DRM_DEBUG_KMS("%d display pipe%s available.\n",
Dave Airliea3524f12010-06-06 18:59:41 +10008462 dev_priv->num_pipe, dev_priv->num_pipe > 1 ? "s" : "");
Jesse Barnes79e53942008-11-07 14:24:08 -08008463
Dave Airliea3524f12010-06-06 18:59:41 +10008464 for (i = 0; i < dev_priv->num_pipe; i++) {
Jesse Barnes79e53942008-11-07 14:24:08 -08008465 intel_crtc_init(dev, i);
Jesse Barnes00c2064b2012-01-13 15:48:39 -08008466 ret = intel_plane_init(dev, i);
8467 if (ret)
8468 DRM_DEBUG_KMS("plane %d init failed: %d\n", i, ret);
Jesse Barnes79e53942008-11-07 14:24:08 -08008469 }
8470
Paulo Zanoni79f689a2012-10-05 12:05:52 -03008471 intel_cpu_pll_init(dev);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01008472 intel_pch_pll_init(dev);
8473
Jesse Barnes9cce37f2010-08-13 15:11:26 -07008474 /* Just disable it once at startup */
8475 i915_disable_vga(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08008476 intel_setup_outputs(dev);
Chris Wilson11be49e2012-11-15 11:32:20 +00008477
8478 /* Just in case the BIOS is doing something questionable. */
8479 intel_disable_fbc(dev);
Chris Wilson2c7111d2011-03-29 10:40:27 +01008480}
Jesse Barnesd5bb0812011-01-05 12:01:26 -08008481
Daniel Vetter24929352012-07-02 20:28:59 +02008482static void
8483intel_connector_break_all_links(struct intel_connector *connector)
8484{
8485 connector->base.dpms = DRM_MODE_DPMS_OFF;
8486 connector->base.encoder = NULL;
8487 connector->encoder->connectors_active = false;
8488 connector->encoder->base.crtc = NULL;
8489}
8490
Daniel Vetter7fad7982012-07-04 17:51:47 +02008491static void intel_enable_pipe_a(struct drm_device *dev)
8492{
8493 struct intel_connector *connector;
8494 struct drm_connector *crt = NULL;
8495 struct intel_load_detect_pipe load_detect_temp;
8496
8497 /* We can't just switch on the pipe A, we need to set things up with a
8498 * proper mode and output configuration. As a gross hack, enable pipe A
8499 * by enabling the load detect pipe once. */
8500 list_for_each_entry(connector,
8501 &dev->mode_config.connector_list,
8502 base.head) {
8503 if (connector->encoder->type == INTEL_OUTPUT_ANALOG) {
8504 crt = &connector->base;
8505 break;
8506 }
8507 }
8508
8509 if (!crt)
8510 return;
8511
8512 if (intel_get_load_detect_pipe(crt, NULL, &load_detect_temp))
8513 intel_release_load_detect_pipe(crt, &load_detect_temp);
8514
8515
8516}
8517
Daniel Vetterfa555832012-10-10 23:14:00 +02008518static bool
8519intel_check_plane_mapping(struct intel_crtc *crtc)
8520{
8521 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
8522 u32 reg, val;
8523
8524 if (dev_priv->num_pipe == 1)
8525 return true;
8526
8527 reg = DSPCNTR(!crtc->plane);
8528 val = I915_READ(reg);
8529
8530 if ((val & DISPLAY_PLANE_ENABLE) &&
8531 (!!(val & DISPPLANE_SEL_PIPE_MASK) == crtc->pipe))
8532 return false;
8533
8534 return true;
8535}
8536
Daniel Vetter24929352012-07-02 20:28:59 +02008537static void intel_sanitize_crtc(struct intel_crtc *crtc)
8538{
8539 struct drm_device *dev = crtc->base.dev;
8540 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterfa555832012-10-10 23:14:00 +02008541 u32 reg;
Daniel Vetter24929352012-07-02 20:28:59 +02008542
Daniel Vetter24929352012-07-02 20:28:59 +02008543 /* Clear any frame start delays used for debugging left by the BIOS */
Paulo Zanoni702e7a52012-10-23 18:29:59 -02008544 reg = PIPECONF(crtc->cpu_transcoder);
Daniel Vetter24929352012-07-02 20:28:59 +02008545 I915_WRITE(reg, I915_READ(reg) & ~PIPECONF_FRAME_START_DELAY_MASK);
8546
8547 /* We need to sanitize the plane -> pipe mapping first because this will
Daniel Vetterfa555832012-10-10 23:14:00 +02008548 * disable the crtc (and hence change the state) if it is wrong. Note
8549 * that gen4+ has a fixed plane -> pipe mapping. */
8550 if (INTEL_INFO(dev)->gen < 4 && !intel_check_plane_mapping(crtc)) {
Daniel Vetter24929352012-07-02 20:28:59 +02008551 struct intel_connector *connector;
8552 bool plane;
8553
Daniel Vetter24929352012-07-02 20:28:59 +02008554 DRM_DEBUG_KMS("[CRTC:%d] wrong plane connection detected!\n",
8555 crtc->base.base.id);
8556
8557 /* Pipe has the wrong plane attached and the plane is active.
8558 * Temporarily change the plane mapping and disable everything
8559 * ... */
8560 plane = crtc->plane;
8561 crtc->plane = !plane;
8562 dev_priv->display.crtc_disable(&crtc->base);
8563 crtc->plane = plane;
8564
8565 /* ... and break all links. */
8566 list_for_each_entry(connector, &dev->mode_config.connector_list,
8567 base.head) {
8568 if (connector->encoder->base.crtc != &crtc->base)
8569 continue;
8570
8571 intel_connector_break_all_links(connector);
8572 }
8573
8574 WARN_ON(crtc->active);
8575 crtc->base.enabled = false;
8576 }
Daniel Vetter24929352012-07-02 20:28:59 +02008577
Daniel Vetter7fad7982012-07-04 17:51:47 +02008578 if (dev_priv->quirks & QUIRK_PIPEA_FORCE &&
8579 crtc->pipe == PIPE_A && !crtc->active) {
8580 /* BIOS forgot to enable pipe A, this mostly happens after
8581 * resume. Force-enable the pipe to fix this, the update_dpms
8582 * call below we restore the pipe to the right state, but leave
8583 * the required bits on. */
8584 intel_enable_pipe_a(dev);
8585 }
8586
Daniel Vetter24929352012-07-02 20:28:59 +02008587 /* Adjust the state of the output pipe according to whether we
8588 * have active connectors/encoders. */
8589 intel_crtc_update_dpms(&crtc->base);
8590
8591 if (crtc->active != crtc->base.enabled) {
8592 struct intel_encoder *encoder;
8593
8594 /* This can happen either due to bugs in the get_hw_state
8595 * functions or because the pipe is force-enabled due to the
8596 * pipe A quirk. */
8597 DRM_DEBUG_KMS("[CRTC:%d] hw state adjusted, was %s, now %s\n",
8598 crtc->base.base.id,
8599 crtc->base.enabled ? "enabled" : "disabled",
8600 crtc->active ? "enabled" : "disabled");
8601
8602 crtc->base.enabled = crtc->active;
8603
8604 /* Because we only establish the connector -> encoder ->
8605 * crtc links if something is active, this means the
8606 * crtc is now deactivated. Break the links. connector
8607 * -> encoder links are only establish when things are
8608 * actually up, hence no need to break them. */
8609 WARN_ON(crtc->active);
8610
8611 for_each_encoder_on_crtc(dev, &crtc->base, encoder) {
8612 WARN_ON(encoder->connectors_active);
8613 encoder->base.crtc = NULL;
8614 }
8615 }
8616}
8617
8618static void intel_sanitize_encoder(struct intel_encoder *encoder)
8619{
8620 struct intel_connector *connector;
8621 struct drm_device *dev = encoder->base.dev;
8622
8623 /* We need to check both for a crtc link (meaning that the
8624 * encoder is active and trying to read from a pipe) and the
8625 * pipe itself being active. */
8626 bool has_active_crtc = encoder->base.crtc &&
8627 to_intel_crtc(encoder->base.crtc)->active;
8628
8629 if (encoder->connectors_active && !has_active_crtc) {
8630 DRM_DEBUG_KMS("[ENCODER:%d:%s] has active connectors but no active pipe!\n",
8631 encoder->base.base.id,
8632 drm_get_encoder_name(&encoder->base));
8633
8634 /* Connector is active, but has no active pipe. This is
8635 * fallout from our resume register restoring. Disable
8636 * the encoder manually again. */
8637 if (encoder->base.crtc) {
8638 DRM_DEBUG_KMS("[ENCODER:%d:%s] manually disabled\n",
8639 encoder->base.base.id,
8640 drm_get_encoder_name(&encoder->base));
8641 encoder->disable(encoder);
8642 }
8643
8644 /* Inconsistent output/port/pipe state happens presumably due to
8645 * a bug in one of the get_hw_state functions. Or someplace else
8646 * in our code, like the register restore mess on resume. Clamp
8647 * things to off as a safer default. */
8648 list_for_each_entry(connector,
8649 &dev->mode_config.connector_list,
8650 base.head) {
8651 if (connector->encoder != encoder)
8652 continue;
8653
8654 intel_connector_break_all_links(connector);
8655 }
8656 }
8657 /* Enabled encoders without active connectors will be fixed in
8658 * the crtc fixup. */
8659}
8660
8661/* Scan out the current hw modeset state, sanitizes it and maps it into the drm
8662 * and i915 state tracking structures. */
Daniel Vetter45e2b5f2012-11-23 18:16:34 +01008663void intel_modeset_setup_hw_state(struct drm_device *dev,
8664 bool force_restore)
Daniel Vetter24929352012-07-02 20:28:59 +02008665{
8666 struct drm_i915_private *dev_priv = dev->dev_private;
8667 enum pipe pipe;
8668 u32 tmp;
8669 struct intel_crtc *crtc;
8670 struct intel_encoder *encoder;
8671 struct intel_connector *connector;
8672
Paulo Zanoniaffa9352012-11-23 15:30:39 -02008673 if (HAS_DDI(dev)) {
Paulo Zanonie28d54c2012-10-24 16:09:25 -02008674 tmp = I915_READ(TRANS_DDI_FUNC_CTL(TRANSCODER_EDP));
8675
8676 if (tmp & TRANS_DDI_FUNC_ENABLE) {
8677 switch (tmp & TRANS_DDI_EDP_INPUT_MASK) {
8678 case TRANS_DDI_EDP_INPUT_A_ON:
8679 case TRANS_DDI_EDP_INPUT_A_ONOFF:
8680 pipe = PIPE_A;
8681 break;
8682 case TRANS_DDI_EDP_INPUT_B_ONOFF:
8683 pipe = PIPE_B;
8684 break;
8685 case TRANS_DDI_EDP_INPUT_C_ONOFF:
8686 pipe = PIPE_C;
8687 break;
8688 }
8689
8690 crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
8691 crtc->cpu_transcoder = TRANSCODER_EDP;
8692
8693 DRM_DEBUG_KMS("Pipe %c using transcoder EDP\n",
8694 pipe_name(pipe));
8695 }
8696 }
8697
Daniel Vetter24929352012-07-02 20:28:59 +02008698 for_each_pipe(pipe) {
8699 crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
8700
Paulo Zanoni702e7a52012-10-23 18:29:59 -02008701 tmp = I915_READ(PIPECONF(crtc->cpu_transcoder));
Daniel Vetter24929352012-07-02 20:28:59 +02008702 if (tmp & PIPECONF_ENABLE)
8703 crtc->active = true;
8704 else
8705 crtc->active = false;
8706
8707 crtc->base.enabled = crtc->active;
8708
8709 DRM_DEBUG_KMS("[CRTC:%d] hw state readout: %s\n",
8710 crtc->base.base.id,
8711 crtc->active ? "enabled" : "disabled");
8712 }
8713
Paulo Zanoniaffa9352012-11-23 15:30:39 -02008714 if (HAS_DDI(dev))
Paulo Zanoni6441ab52012-10-05 12:05:58 -03008715 intel_ddi_setup_hw_pll_state(dev);
8716
Daniel Vetter24929352012-07-02 20:28:59 +02008717 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
8718 base.head) {
8719 pipe = 0;
8720
8721 if (encoder->get_hw_state(encoder, &pipe)) {
8722 encoder->base.crtc =
8723 dev_priv->pipe_to_crtc_mapping[pipe];
8724 } else {
8725 encoder->base.crtc = NULL;
8726 }
8727
8728 encoder->connectors_active = false;
8729 DRM_DEBUG_KMS("[ENCODER:%d:%s] hw state readout: %s, pipe=%i\n",
8730 encoder->base.base.id,
8731 drm_get_encoder_name(&encoder->base),
8732 encoder->base.crtc ? "enabled" : "disabled",
8733 pipe);
8734 }
8735
8736 list_for_each_entry(connector, &dev->mode_config.connector_list,
8737 base.head) {
8738 if (connector->get_hw_state(connector)) {
8739 connector->base.dpms = DRM_MODE_DPMS_ON;
8740 connector->encoder->connectors_active = true;
8741 connector->base.encoder = &connector->encoder->base;
8742 } else {
8743 connector->base.dpms = DRM_MODE_DPMS_OFF;
8744 connector->base.encoder = NULL;
8745 }
8746 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] hw state readout: %s\n",
8747 connector->base.base.id,
8748 drm_get_connector_name(&connector->base),
8749 connector->base.encoder ? "enabled" : "disabled");
8750 }
8751
8752 /* HW state is read out, now we need to sanitize this mess. */
8753 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
8754 base.head) {
8755 intel_sanitize_encoder(encoder);
8756 }
8757
8758 for_each_pipe(pipe) {
8759 crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
8760 intel_sanitize_crtc(crtc);
8761 }
Daniel Vetter9a935852012-07-05 22:34:27 +02008762
Daniel Vetter45e2b5f2012-11-23 18:16:34 +01008763 if (force_restore) {
8764 for_each_pipe(pipe) {
8765 crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
8766 intel_set_mode(&crtc->base, &crtc->base.mode,
8767 crtc->base.x, crtc->base.y, crtc->base.fb);
8768 }
8769 } else {
8770 intel_modeset_update_staged_output_state(dev);
8771 }
Daniel Vetter8af6cf82012-07-10 09:50:11 +02008772
8773 intel_modeset_check_state(dev);
Daniel Vetter2e938892012-10-11 20:08:24 +02008774
8775 drm_mode_config_reset(dev);
Chris Wilson2c7111d2011-03-29 10:40:27 +01008776}
8777
8778void intel_modeset_gem_init(struct drm_device *dev)
8779{
Chris Wilson1833b132012-05-09 11:56:28 +01008780 intel_modeset_init_hw(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +02008781
8782 intel_setup_overlay(dev);
Daniel Vetter24929352012-07-02 20:28:59 +02008783
Daniel Vetter45e2b5f2012-11-23 18:16:34 +01008784 intel_modeset_setup_hw_state(dev, false);
Jesse Barnes79e53942008-11-07 14:24:08 -08008785}
8786
8787void intel_modeset_cleanup(struct drm_device *dev)
8788{
Jesse Barnes652c3932009-08-17 13:31:43 -07008789 struct drm_i915_private *dev_priv = dev->dev_private;
8790 struct drm_crtc *crtc;
8791 struct intel_crtc *intel_crtc;
8792
Keith Packardf87ea762010-10-03 19:36:26 -07008793 drm_kms_helper_poll_fini(dev);
Jesse Barnes652c3932009-08-17 13:31:43 -07008794 mutex_lock(&dev->struct_mutex);
8795
Jesse Barnes723bfd72010-10-07 16:01:13 -07008796 intel_unregister_dsm_handler();
8797
8798
Jesse Barnes652c3932009-08-17 13:31:43 -07008799 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
8800 /* Skip inactive CRTCs */
8801 if (!crtc->fb)
8802 continue;
8803
8804 intel_crtc = to_intel_crtc(crtc);
Daniel Vetter3dec0092010-08-20 21:40:52 +02008805 intel_increase_pllclock(crtc);
Jesse Barnes652c3932009-08-17 13:31:43 -07008806 }
8807
Chris Wilson973d04f2011-07-08 12:22:37 +01008808 intel_disable_fbc(dev);
Jesse Barnese70236a2009-09-21 10:42:27 -07008809
Daniel Vetter8090c6b2012-06-24 16:42:32 +02008810 intel_disable_gt_powersave(dev);
Chris Wilson0cdab212010-12-05 17:27:06 +00008811
Daniel Vetter930ebb42012-06-29 23:32:16 +02008812 ironlake_teardown_rc6(dev);
8813
Jesse Barnes57f350b2012-03-28 13:39:25 -07008814 if (IS_VALLEYVIEW(dev))
8815 vlv_init_dpio(dev);
8816
Kristian Høgsberg69341a52009-11-11 12:19:17 -05008817 mutex_unlock(&dev->struct_mutex);
8818
Daniel Vetter6c0d93502010-08-20 18:26:46 +02008819 /* Disable the irq before mode object teardown, for the irq might
8820 * enqueue unpin/hotplug work. */
8821 drm_irq_uninstall(dev);
8822 cancel_work_sync(&dev_priv->hotplug_work);
Daniel Vetterc6a828d2012-08-08 23:35:35 +02008823 cancel_work_sync(&dev_priv->rps.work);
Daniel Vetter6c0d93502010-08-20 18:26:46 +02008824
Chris Wilson1630fe72011-07-08 12:22:42 +01008825 /* flush any delayed tasks or pending work */
8826 flush_scheduled_work();
8827
Jesse Barnes79e53942008-11-07 14:24:08 -08008828 drm_mode_config_cleanup(dev);
8829}
8830
Dave Airlie28d52042009-09-21 14:33:58 +10008831/*
Zhenyu Wangf1c79df2010-03-30 14:39:29 +08008832 * Return which encoder is currently attached for connector.
8833 */
Chris Wilsondf0e9242010-09-09 16:20:55 +01008834struct drm_encoder *intel_best_encoder(struct drm_connector *connector)
Jesse Barnes79e53942008-11-07 14:24:08 -08008835{
Chris Wilsondf0e9242010-09-09 16:20:55 +01008836 return &intel_attached_encoder(connector)->base;
8837}
Jesse Barnes79e53942008-11-07 14:24:08 -08008838
Chris Wilsondf0e9242010-09-09 16:20:55 +01008839void intel_connector_attach_encoder(struct intel_connector *connector,
8840 struct intel_encoder *encoder)
8841{
8842 connector->encoder = encoder;
8843 drm_mode_connector_attach_encoder(&connector->base,
8844 &encoder->base);
Jesse Barnes79e53942008-11-07 14:24:08 -08008845}
Dave Airlie28d52042009-09-21 14:33:58 +10008846
8847/*
8848 * set vga decode state - true == enable VGA decode
8849 */
8850int intel_modeset_vga_set_state(struct drm_device *dev, bool state)
8851{
8852 struct drm_i915_private *dev_priv = dev->dev_private;
8853 u16 gmch_ctrl;
8854
8855 pci_read_config_word(dev_priv->bridge_dev, INTEL_GMCH_CTRL, &gmch_ctrl);
8856 if (state)
8857 gmch_ctrl &= ~INTEL_GMCH_VGA_DISABLE;
8858 else
8859 gmch_ctrl |= INTEL_GMCH_VGA_DISABLE;
8860 pci_write_config_word(dev_priv->bridge_dev, INTEL_GMCH_CTRL, gmch_ctrl);
8861 return 0;
8862}
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00008863
8864#ifdef CONFIG_DEBUG_FS
8865#include <linux/seq_file.h>
8866
8867struct intel_display_error_state {
8868 struct intel_cursor_error_state {
8869 u32 control;
8870 u32 position;
8871 u32 base;
8872 u32 size;
Damien Lespiau52331302012-08-15 19:23:25 +01008873 } cursor[I915_MAX_PIPES];
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00008874
8875 struct intel_pipe_error_state {
8876 u32 conf;
8877 u32 source;
8878
8879 u32 htotal;
8880 u32 hblank;
8881 u32 hsync;
8882 u32 vtotal;
8883 u32 vblank;
8884 u32 vsync;
Damien Lespiau52331302012-08-15 19:23:25 +01008885 } pipe[I915_MAX_PIPES];
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00008886
8887 struct intel_plane_error_state {
8888 u32 control;
8889 u32 stride;
8890 u32 size;
8891 u32 pos;
8892 u32 addr;
8893 u32 surface;
8894 u32 tile_offset;
Damien Lespiau52331302012-08-15 19:23:25 +01008895 } plane[I915_MAX_PIPES];
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00008896};
8897
8898struct intel_display_error_state *
8899intel_display_capture_error_state(struct drm_device *dev)
8900{
Akshay Joshi0206e352011-08-16 15:34:10 -04008901 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00008902 struct intel_display_error_state *error;
Paulo Zanoni702e7a52012-10-23 18:29:59 -02008903 enum transcoder cpu_transcoder;
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00008904 int i;
8905
8906 error = kmalloc(sizeof(*error), GFP_ATOMIC);
8907 if (error == NULL)
8908 return NULL;
8909
Damien Lespiau52331302012-08-15 19:23:25 +01008910 for_each_pipe(i) {
Paulo Zanoni702e7a52012-10-23 18:29:59 -02008911 cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv, i);
8912
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00008913 error->cursor[i].control = I915_READ(CURCNTR(i));
8914 error->cursor[i].position = I915_READ(CURPOS(i));
8915 error->cursor[i].base = I915_READ(CURBASE(i));
8916
8917 error->plane[i].control = I915_READ(DSPCNTR(i));
8918 error->plane[i].stride = I915_READ(DSPSTRIDE(i));
8919 error->plane[i].size = I915_READ(DSPSIZE(i));
Akshay Joshi0206e352011-08-16 15:34:10 -04008920 error->plane[i].pos = I915_READ(DSPPOS(i));
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00008921 error->plane[i].addr = I915_READ(DSPADDR(i));
8922 if (INTEL_INFO(dev)->gen >= 4) {
8923 error->plane[i].surface = I915_READ(DSPSURF(i));
8924 error->plane[i].tile_offset = I915_READ(DSPTILEOFF(i));
8925 }
8926
Paulo Zanoni702e7a52012-10-23 18:29:59 -02008927 error->pipe[i].conf = I915_READ(PIPECONF(cpu_transcoder));
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00008928 error->pipe[i].source = I915_READ(PIPESRC(i));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02008929 error->pipe[i].htotal = I915_READ(HTOTAL(cpu_transcoder));
8930 error->pipe[i].hblank = I915_READ(HBLANK(cpu_transcoder));
8931 error->pipe[i].hsync = I915_READ(HSYNC(cpu_transcoder));
8932 error->pipe[i].vtotal = I915_READ(VTOTAL(cpu_transcoder));
8933 error->pipe[i].vblank = I915_READ(VBLANK(cpu_transcoder));
8934 error->pipe[i].vsync = I915_READ(VSYNC(cpu_transcoder));
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00008935 }
8936
8937 return error;
8938}
8939
8940void
8941intel_display_print_error_state(struct seq_file *m,
8942 struct drm_device *dev,
8943 struct intel_display_error_state *error)
8944{
Damien Lespiau52331302012-08-15 19:23:25 +01008945 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00008946 int i;
8947
Damien Lespiau52331302012-08-15 19:23:25 +01008948 seq_printf(m, "Num Pipes: %d\n", dev_priv->num_pipe);
8949 for_each_pipe(i) {
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00008950 seq_printf(m, "Pipe [%d]:\n", i);
8951 seq_printf(m, " CONF: %08x\n", error->pipe[i].conf);
8952 seq_printf(m, " SRC: %08x\n", error->pipe[i].source);
8953 seq_printf(m, " HTOTAL: %08x\n", error->pipe[i].htotal);
8954 seq_printf(m, " HBLANK: %08x\n", error->pipe[i].hblank);
8955 seq_printf(m, " HSYNC: %08x\n", error->pipe[i].hsync);
8956 seq_printf(m, " VTOTAL: %08x\n", error->pipe[i].vtotal);
8957 seq_printf(m, " VBLANK: %08x\n", error->pipe[i].vblank);
8958 seq_printf(m, " VSYNC: %08x\n", error->pipe[i].vsync);
8959
8960 seq_printf(m, "Plane [%d]:\n", i);
8961 seq_printf(m, " CNTR: %08x\n", error->plane[i].control);
8962 seq_printf(m, " STRIDE: %08x\n", error->plane[i].stride);
8963 seq_printf(m, " SIZE: %08x\n", error->plane[i].size);
8964 seq_printf(m, " POS: %08x\n", error->plane[i].pos);
8965 seq_printf(m, " ADDR: %08x\n", error->plane[i].addr);
8966 if (INTEL_INFO(dev)->gen >= 4) {
8967 seq_printf(m, " SURF: %08x\n", error->plane[i].surface);
8968 seq_printf(m, " TILEOFF: %08x\n", error->plane[i].tile_offset);
8969 }
8970
8971 seq_printf(m, "Cursor [%d]:\n", i);
8972 seq_printf(m, " CNTR: %08x\n", error->cursor[i].control);
8973 seq_printf(m, " POS: %08x\n", error->cursor[i].position);
8974 seq_printf(m, " BASE: %08x\n", error->cursor[i].base);
8975 }
8976}
8977#endif