blob: 52b6b0e811bc4c4ba86096836938b4172b26199f [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 */
Paulo Zanoni937bb612012-10-31 18:12:47 -02001674 assert_fdi_tx_enabled(dev_priv, cpu_transcoder);
1675 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);
Paulo Zanonicc391bb2012-11-20 13:27:37 -02001762 enum transcoder 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);
1782 assert_fdi_tx_pll_enabled(dev_priv, cpu_transcoder);
Jesse Barnes040484a2011-01-03 12:14:26 -08001783 }
1784 /* FIXME: assert CPU port conditions for SNB+ */
1785 }
Jesse Barnesb24e7172011-01-04 15:09:30 -08001786
Paulo Zanoni702e7a52012-10-23 18:29:59 -02001787 reg = PIPECONF(cpu_transcoder);
Jesse Barnesb24e7172011-01-04 15:09:30 -08001788 val = I915_READ(reg);
Chris Wilson00d70b12011-03-17 07:18:29 +00001789 if (val & PIPECONF_ENABLE)
1790 return;
1791
1792 I915_WRITE(reg, val | PIPECONF_ENABLE);
Jesse Barnesb24e7172011-01-04 15:09:30 -08001793 intel_wait_for_vblank(dev_priv->dev, pipe);
1794}
1795
1796/**
Chris Wilson309cfea2011-01-28 13:54:53 +00001797 * intel_disable_pipe - disable a pipe, asserting requirements
Jesse Barnesb24e7172011-01-04 15:09:30 -08001798 * @dev_priv: i915 private structure
1799 * @pipe: pipe to disable
1800 *
1801 * Disable @pipe, making sure that various hardware specific requirements
1802 * are met, if applicable, e.g. plane disabled, panel fitter off, etc.
1803 *
1804 * @pipe should be %PIPE_A or %PIPE_B.
1805 *
1806 * Will wait until the pipe has shut down before returning.
1807 */
1808static void intel_disable_pipe(struct drm_i915_private *dev_priv,
1809 enum pipe pipe)
1810{
Paulo Zanoni702e7a52012-10-23 18:29:59 -02001811 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
1812 pipe);
Jesse Barnesb24e7172011-01-04 15:09:30 -08001813 int reg;
1814 u32 val;
1815
1816 /*
1817 * Make sure planes won't keep trying to pump pixels to us,
1818 * or we might hang the display.
1819 */
1820 assert_planes_disabled(dev_priv, pipe);
1821
1822 /* Don't disable pipe A or pipe A PLLs if needed */
1823 if (pipe == PIPE_A && (dev_priv->quirks & QUIRK_PIPEA_FORCE))
1824 return;
1825
Paulo Zanoni702e7a52012-10-23 18:29:59 -02001826 reg = PIPECONF(cpu_transcoder);
Jesse Barnesb24e7172011-01-04 15:09:30 -08001827 val = I915_READ(reg);
Chris Wilson00d70b12011-03-17 07:18:29 +00001828 if ((val & PIPECONF_ENABLE) == 0)
1829 return;
1830
1831 I915_WRITE(reg, val & ~PIPECONF_ENABLE);
Jesse Barnesb24e7172011-01-04 15:09:30 -08001832 intel_wait_for_pipe_off(dev_priv->dev, pipe);
1833}
1834
Keith Packardd74362c2011-07-28 14:47:14 -07001835/*
1836 * Plane regs are double buffered, going from enabled->disabled needs a
1837 * trigger in order to latch. The display address reg provides this.
1838 */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03001839void intel_flush_display_plane(struct drm_i915_private *dev_priv,
Keith Packardd74362c2011-07-28 14:47:14 -07001840 enum plane plane)
1841{
Damien Lespiau14f86142012-10-29 15:24:49 +00001842 if (dev_priv->info->gen >= 4)
1843 I915_WRITE(DSPSURF(plane), I915_READ(DSPSURF(plane)));
1844 else
1845 I915_WRITE(DSPADDR(plane), I915_READ(DSPADDR(plane)));
Keith Packardd74362c2011-07-28 14:47:14 -07001846}
1847
Jesse Barnesb24e7172011-01-04 15:09:30 -08001848/**
1849 * intel_enable_plane - enable a display plane on a given pipe
1850 * @dev_priv: i915 private structure
1851 * @plane: plane to enable
1852 * @pipe: pipe being fed
1853 *
1854 * Enable @plane on @pipe, making sure that @pipe is running first.
1855 */
1856static void intel_enable_plane(struct drm_i915_private *dev_priv,
1857 enum plane plane, enum pipe pipe)
1858{
1859 int reg;
1860 u32 val;
1861
1862 /* If the pipe isn't enabled, we can't pump pixels and may hang */
1863 assert_pipe_enabled(dev_priv, pipe);
1864
1865 reg = DSPCNTR(plane);
1866 val = I915_READ(reg);
Chris Wilson00d70b12011-03-17 07:18:29 +00001867 if (val & DISPLAY_PLANE_ENABLE)
1868 return;
1869
1870 I915_WRITE(reg, val | DISPLAY_PLANE_ENABLE);
Keith Packardd74362c2011-07-28 14:47:14 -07001871 intel_flush_display_plane(dev_priv, plane);
Jesse Barnesb24e7172011-01-04 15:09:30 -08001872 intel_wait_for_vblank(dev_priv->dev, pipe);
1873}
1874
Jesse Barnesb24e7172011-01-04 15:09:30 -08001875/**
1876 * intel_disable_plane - disable a display plane
1877 * @dev_priv: i915 private structure
1878 * @plane: plane to disable
1879 * @pipe: pipe consuming the data
1880 *
1881 * Disable @plane; should be an independent operation.
1882 */
1883static void intel_disable_plane(struct drm_i915_private *dev_priv,
1884 enum plane plane, enum pipe pipe)
1885{
1886 int reg;
1887 u32 val;
1888
1889 reg = DSPCNTR(plane);
1890 val = I915_READ(reg);
Chris Wilson00d70b12011-03-17 07:18:29 +00001891 if ((val & DISPLAY_PLANE_ENABLE) == 0)
1892 return;
1893
1894 I915_WRITE(reg, val & ~DISPLAY_PLANE_ENABLE);
Jesse Barnesb24e7172011-01-04 15:09:30 -08001895 intel_flush_display_plane(dev_priv, plane);
1896 intel_wait_for_vblank(dev_priv->dev, pipe);
1897}
1898
Chris Wilson127bd2a2010-07-23 23:32:05 +01001899int
Chris Wilson48b956c2010-09-14 12:50:34 +01001900intel_pin_and_fence_fb_obj(struct drm_device *dev,
Chris Wilson05394f32010-11-08 19:18:58 +00001901 struct drm_i915_gem_object *obj,
Chris Wilson919926a2010-11-12 13:42:53 +00001902 struct intel_ring_buffer *pipelined)
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001903{
Chris Wilsonce453d82011-02-21 14:43:56 +00001904 struct drm_i915_private *dev_priv = dev->dev_private;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001905 u32 alignment;
1906 int ret;
1907
Chris Wilson05394f32010-11-08 19:18:58 +00001908 switch (obj->tiling_mode) {
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001909 case I915_TILING_NONE:
Chris Wilson534843d2010-07-05 18:01:46 +01001910 if (IS_BROADWATER(dev) || IS_CRESTLINE(dev))
1911 alignment = 128 * 1024;
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001912 else if (INTEL_INFO(dev)->gen >= 4)
Chris Wilson534843d2010-07-05 18:01:46 +01001913 alignment = 4 * 1024;
1914 else
1915 alignment = 64 * 1024;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001916 break;
1917 case I915_TILING_X:
1918 /* pin() will align the object as required by fence */
1919 alignment = 0;
1920 break;
1921 case I915_TILING_Y:
1922 /* FIXME: Is this true? */
1923 DRM_ERROR("Y tiled not allowed for scan out buffers\n");
1924 return -EINVAL;
1925 default:
1926 BUG();
1927 }
1928
Chris Wilsonce453d82011-02-21 14:43:56 +00001929 dev_priv->mm.interruptible = false;
Chris Wilson2da3b9b2011-04-14 09:41:17 +01001930 ret = i915_gem_object_pin_to_display_plane(obj, alignment, pipelined);
Chris Wilson48b956c2010-09-14 12:50:34 +01001931 if (ret)
Chris Wilsonce453d82011-02-21 14:43:56 +00001932 goto err_interruptible;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001933
1934 /* Install a fence for tiled scan-out. Pre-i965 always needs a
1935 * fence, whereas 965+ only requires a fence if using
1936 * framebuffer compression. For simplicity, we always install
1937 * a fence as the cost is not that onerous.
1938 */
Chris Wilson06d98132012-04-17 15:31:24 +01001939 ret = i915_gem_object_get_fence(obj);
Chris Wilson9a5a53b2012-03-22 15:10:00 +00001940 if (ret)
1941 goto err_unpin;
Chris Wilson1690e1e2011-12-14 13:57:08 +01001942
Chris Wilson9a5a53b2012-03-22 15:10:00 +00001943 i915_gem_object_pin_fence(obj);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001944
Chris Wilsonce453d82011-02-21 14:43:56 +00001945 dev_priv->mm.interruptible = true;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001946 return 0;
Chris Wilson48b956c2010-09-14 12:50:34 +01001947
1948err_unpin:
1949 i915_gem_object_unpin(obj);
Chris Wilsonce453d82011-02-21 14:43:56 +00001950err_interruptible:
1951 dev_priv->mm.interruptible = true;
Chris Wilson48b956c2010-09-14 12:50:34 +01001952 return ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001953}
1954
Chris Wilson1690e1e2011-12-14 13:57:08 +01001955void intel_unpin_fb_obj(struct drm_i915_gem_object *obj)
1956{
1957 i915_gem_object_unpin_fence(obj);
1958 i915_gem_object_unpin(obj);
1959}
1960
Daniel Vetterc2c75132012-07-05 12:17:30 +02001961/* Computes the linear offset to the base tile and adjusts x, y. bytes per pixel
1962 * is assumed to be a power-of-two. */
Damien Lespiau5a35e992012-10-26 18:20:12 +01001963unsigned long intel_gen4_compute_offset_xtiled(int *x, int *y,
1964 unsigned int bpp,
1965 unsigned int pitch)
Daniel Vetterc2c75132012-07-05 12:17:30 +02001966{
1967 int tile_rows, tiles;
1968
1969 tile_rows = *y / 8;
1970 *y %= 8;
1971 tiles = *x / (512/bpp);
1972 *x %= 512/bpp;
1973
1974 return tile_rows * pitch * 8 + tiles * 4096;
1975}
1976
Jesse Barnes17638cd2011-06-24 12:19:23 -07001977static int i9xx_update_plane(struct drm_crtc *crtc, struct drm_framebuffer *fb,
1978 int x, int y)
Jesse Barnes81255562010-08-02 12:07:50 -07001979{
1980 struct drm_device *dev = crtc->dev;
1981 struct drm_i915_private *dev_priv = dev->dev_private;
1982 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1983 struct intel_framebuffer *intel_fb;
Chris Wilson05394f32010-11-08 19:18:58 +00001984 struct drm_i915_gem_object *obj;
Jesse Barnes81255562010-08-02 12:07:50 -07001985 int plane = intel_crtc->plane;
Daniel Vettere506a0c2012-07-05 12:17:29 +02001986 unsigned long linear_offset;
Jesse Barnes81255562010-08-02 12:07:50 -07001987 u32 dspcntr;
Chris Wilson5eddb702010-09-11 13:48:45 +01001988 u32 reg;
Jesse Barnes81255562010-08-02 12:07:50 -07001989
1990 switch (plane) {
1991 case 0:
1992 case 1:
1993 break;
1994 default:
1995 DRM_ERROR("Can't update plane %d in SAREA\n", plane);
1996 return -EINVAL;
1997 }
1998
1999 intel_fb = to_intel_framebuffer(fb);
2000 obj = intel_fb->obj;
Jesse Barnes81255562010-08-02 12:07:50 -07002001
Chris Wilson5eddb702010-09-11 13:48:45 +01002002 reg = DSPCNTR(plane);
2003 dspcntr = I915_READ(reg);
Jesse Barnes81255562010-08-02 12:07:50 -07002004 /* Mask out pixel format bits in case we change it */
2005 dspcntr &= ~DISPPLANE_PIXFORMAT_MASK;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002006 switch (fb->pixel_format) {
2007 case DRM_FORMAT_C8:
Jesse Barnes81255562010-08-02 12:07:50 -07002008 dspcntr |= DISPPLANE_8BPP;
2009 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002010 case DRM_FORMAT_XRGB1555:
2011 case DRM_FORMAT_ARGB1555:
2012 dspcntr |= DISPPLANE_BGRX555;
Jesse Barnes81255562010-08-02 12:07:50 -07002013 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002014 case DRM_FORMAT_RGB565:
2015 dspcntr |= DISPPLANE_BGRX565;
2016 break;
2017 case DRM_FORMAT_XRGB8888:
2018 case DRM_FORMAT_ARGB8888:
2019 dspcntr |= DISPPLANE_BGRX888;
2020 break;
2021 case DRM_FORMAT_XBGR8888:
2022 case DRM_FORMAT_ABGR8888:
2023 dspcntr |= DISPPLANE_RGBX888;
2024 break;
2025 case DRM_FORMAT_XRGB2101010:
2026 case DRM_FORMAT_ARGB2101010:
2027 dspcntr |= DISPPLANE_BGRX101010;
2028 break;
2029 case DRM_FORMAT_XBGR2101010:
2030 case DRM_FORMAT_ABGR2101010:
2031 dspcntr |= DISPPLANE_RGBX101010;
Jesse Barnes81255562010-08-02 12:07:50 -07002032 break;
2033 default:
Ville Syrjälä57779d02012-10-31 17:50:14 +02002034 DRM_ERROR("Unknown pixel format 0x%08x\n", fb->pixel_format);
Jesse Barnes81255562010-08-02 12:07:50 -07002035 return -EINVAL;
2036 }
Ville Syrjälä57779d02012-10-31 17:50:14 +02002037
Chris Wilsona6c45cf2010-09-17 00:32:17 +01002038 if (INTEL_INFO(dev)->gen >= 4) {
Chris Wilson05394f32010-11-08 19:18:58 +00002039 if (obj->tiling_mode != I915_TILING_NONE)
Jesse Barnes81255562010-08-02 12:07:50 -07002040 dspcntr |= DISPPLANE_TILED;
2041 else
2042 dspcntr &= ~DISPPLANE_TILED;
2043 }
2044
Chris Wilson5eddb702010-09-11 13:48:45 +01002045 I915_WRITE(reg, dspcntr);
Jesse Barnes81255562010-08-02 12:07:50 -07002046
Daniel Vettere506a0c2012-07-05 12:17:29 +02002047 linear_offset = y * fb->pitches[0] + x * (fb->bits_per_pixel / 8);
Jesse Barnes81255562010-08-02 12:07:50 -07002048
Daniel Vetterc2c75132012-07-05 12:17:30 +02002049 if (INTEL_INFO(dev)->gen >= 4) {
2050 intel_crtc->dspaddr_offset =
Damien Lespiau5a35e992012-10-26 18:20:12 +01002051 intel_gen4_compute_offset_xtiled(&x, &y,
2052 fb->bits_per_pixel / 8,
2053 fb->pitches[0]);
Daniel Vetterc2c75132012-07-05 12:17:30 +02002054 linear_offset -= intel_crtc->dspaddr_offset;
2055 } else {
Daniel Vettere506a0c2012-07-05 12:17:29 +02002056 intel_crtc->dspaddr_offset = linear_offset;
Daniel Vetterc2c75132012-07-05 12:17:30 +02002057 }
Daniel Vettere506a0c2012-07-05 12:17:29 +02002058
2059 DRM_DEBUG_KMS("Writing base %08X %08lX %d %d %d\n",
2060 obj->gtt_offset, linear_offset, x, y, fb->pitches[0]);
Ville Syrjälä01f2c772011-12-20 00:06:49 +02002061 I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]);
Chris Wilsona6c45cf2010-09-17 00:32:17 +01002062 if (INTEL_INFO(dev)->gen >= 4) {
Daniel Vetterc2c75132012-07-05 12:17:30 +02002063 I915_MODIFY_DISPBASE(DSPSURF(plane),
2064 obj->gtt_offset + intel_crtc->dspaddr_offset);
Chris Wilson5eddb702010-09-11 13:48:45 +01002065 I915_WRITE(DSPTILEOFF(plane), (y << 16) | x);
Daniel Vettere506a0c2012-07-05 12:17:29 +02002066 I915_WRITE(DSPLINOFF(plane), linear_offset);
Chris Wilson5eddb702010-09-11 13:48:45 +01002067 } else
Daniel Vettere506a0c2012-07-05 12:17:29 +02002068 I915_WRITE(DSPADDR(plane), obj->gtt_offset + linear_offset);
Chris Wilson5eddb702010-09-11 13:48:45 +01002069 POSTING_READ(reg);
Jesse Barnes81255562010-08-02 12:07:50 -07002070
Jesse Barnes17638cd2011-06-24 12:19:23 -07002071 return 0;
2072}
2073
2074static int ironlake_update_plane(struct drm_crtc *crtc,
2075 struct drm_framebuffer *fb, int x, int y)
2076{
2077 struct drm_device *dev = crtc->dev;
2078 struct drm_i915_private *dev_priv = dev->dev_private;
2079 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2080 struct intel_framebuffer *intel_fb;
2081 struct drm_i915_gem_object *obj;
2082 int plane = intel_crtc->plane;
Daniel Vettere506a0c2012-07-05 12:17:29 +02002083 unsigned long linear_offset;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002084 u32 dspcntr;
2085 u32 reg;
2086
2087 switch (plane) {
2088 case 0:
2089 case 1:
Jesse Barnes27f82272011-09-02 12:54:37 -07002090 case 2:
Jesse Barnes17638cd2011-06-24 12:19:23 -07002091 break;
2092 default:
2093 DRM_ERROR("Can't update plane %d in SAREA\n", plane);
2094 return -EINVAL;
2095 }
2096
2097 intel_fb = to_intel_framebuffer(fb);
2098 obj = intel_fb->obj;
2099
2100 reg = DSPCNTR(plane);
2101 dspcntr = I915_READ(reg);
2102 /* Mask out pixel format bits in case we change it */
2103 dspcntr &= ~DISPPLANE_PIXFORMAT_MASK;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002104 switch (fb->pixel_format) {
2105 case DRM_FORMAT_C8:
Jesse Barnes17638cd2011-06-24 12:19:23 -07002106 dspcntr |= DISPPLANE_8BPP;
2107 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002108 case DRM_FORMAT_RGB565:
2109 dspcntr |= DISPPLANE_BGRX565;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002110 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002111 case DRM_FORMAT_XRGB8888:
2112 case DRM_FORMAT_ARGB8888:
2113 dspcntr |= DISPPLANE_BGRX888;
2114 break;
2115 case DRM_FORMAT_XBGR8888:
2116 case DRM_FORMAT_ABGR8888:
2117 dspcntr |= DISPPLANE_RGBX888;
2118 break;
2119 case DRM_FORMAT_XRGB2101010:
2120 case DRM_FORMAT_ARGB2101010:
2121 dspcntr |= DISPPLANE_BGRX101010;
2122 break;
2123 case DRM_FORMAT_XBGR2101010:
2124 case DRM_FORMAT_ABGR2101010:
2125 dspcntr |= DISPPLANE_RGBX101010;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002126 break;
2127 default:
Ville Syrjälä57779d02012-10-31 17:50:14 +02002128 DRM_ERROR("Unknown pixel format 0x%08x\n", fb->pixel_format);
Jesse Barnes17638cd2011-06-24 12:19:23 -07002129 return -EINVAL;
2130 }
2131
2132 if (obj->tiling_mode != I915_TILING_NONE)
2133 dspcntr |= DISPPLANE_TILED;
2134 else
2135 dspcntr &= ~DISPPLANE_TILED;
2136
2137 /* must disable */
2138 dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE;
2139
2140 I915_WRITE(reg, dspcntr);
2141
Daniel Vettere506a0c2012-07-05 12:17:29 +02002142 linear_offset = y * fb->pitches[0] + x * (fb->bits_per_pixel / 8);
Daniel Vetterc2c75132012-07-05 12:17:30 +02002143 intel_crtc->dspaddr_offset =
Damien Lespiau5a35e992012-10-26 18:20:12 +01002144 intel_gen4_compute_offset_xtiled(&x, &y,
2145 fb->bits_per_pixel / 8,
2146 fb->pitches[0]);
Daniel Vetterc2c75132012-07-05 12:17:30 +02002147 linear_offset -= intel_crtc->dspaddr_offset;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002148
Daniel Vettere506a0c2012-07-05 12:17:29 +02002149 DRM_DEBUG_KMS("Writing base %08X %08lX %d %d %d\n",
2150 obj->gtt_offset, linear_offset, x, y, fb->pitches[0]);
Ville Syrjälä01f2c772011-12-20 00:06:49 +02002151 I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]);
Daniel Vetterc2c75132012-07-05 12:17:30 +02002152 I915_MODIFY_DISPBASE(DSPSURF(plane),
2153 obj->gtt_offset + intel_crtc->dspaddr_offset);
Damien Lespiaubc1c91e2012-10-29 12:14:21 +00002154 if (IS_HASWELL(dev)) {
2155 I915_WRITE(DSPOFFSET(plane), (y << 16) | x);
2156 } else {
2157 I915_WRITE(DSPTILEOFF(plane), (y << 16) | x);
2158 I915_WRITE(DSPLINOFF(plane), linear_offset);
2159 }
Jesse Barnes17638cd2011-06-24 12:19:23 -07002160 POSTING_READ(reg);
2161
2162 return 0;
2163}
2164
2165/* Assume fb object is pinned & idle & fenced and just update base pointers */
2166static int
2167intel_pipe_set_base_atomic(struct drm_crtc *crtc, struct drm_framebuffer *fb,
2168 int x, int y, enum mode_set_atomic state)
2169{
2170 struct drm_device *dev = crtc->dev;
2171 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002172
Chris Wilson6b8e6ed2012-04-17 15:08:19 +01002173 if (dev_priv->display.disable_fbc)
2174 dev_priv->display.disable_fbc(dev);
Daniel Vetter3dec0092010-08-20 21:40:52 +02002175 intel_increase_pllclock(crtc);
Jesse Barnes81255562010-08-02 12:07:50 -07002176
Chris Wilson6b8e6ed2012-04-17 15:08:19 +01002177 return dev_priv->display.update_plane(crtc, fb, x, y);
Jesse Barnes81255562010-08-02 12:07:50 -07002178}
2179
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002180static int
Chris Wilson14667a42012-04-03 17:58:35 +01002181intel_finish_fb(struct drm_framebuffer *old_fb)
2182{
2183 struct drm_i915_gem_object *obj = to_intel_framebuffer(old_fb)->obj;
2184 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
2185 bool was_interruptible = dev_priv->mm.interruptible;
2186 int ret;
2187
2188 wait_event(dev_priv->pending_flip_queue,
2189 atomic_read(&dev_priv->mm.wedged) ||
2190 atomic_read(&obj->pending_flip) == 0);
2191
2192 /* Big Hammer, we also need to ensure that any pending
2193 * MI_WAIT_FOR_EVENT inside a user batch buffer on the
2194 * current scanout is retired before unpinning the old
2195 * framebuffer.
2196 *
2197 * This should only fail upon a hung GPU, in which case we
2198 * can safely continue.
2199 */
2200 dev_priv->mm.interruptible = false;
2201 ret = i915_gem_object_finish_gpu(obj);
2202 dev_priv->mm.interruptible = was_interruptible;
2203
2204 return ret;
2205}
2206
Ville Syrjälä198598d2012-10-31 17:50:24 +02002207static void intel_crtc_update_sarea_pos(struct drm_crtc *crtc, int x, int y)
2208{
2209 struct drm_device *dev = crtc->dev;
2210 struct drm_i915_master_private *master_priv;
2211 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2212
2213 if (!dev->primary->master)
2214 return;
2215
2216 master_priv = dev->primary->master->driver_priv;
2217 if (!master_priv->sarea_priv)
2218 return;
2219
2220 switch (intel_crtc->pipe) {
2221 case 0:
2222 master_priv->sarea_priv->pipeA_x = x;
2223 master_priv->sarea_priv->pipeA_y = y;
2224 break;
2225 case 1:
2226 master_priv->sarea_priv->pipeB_x = x;
2227 master_priv->sarea_priv->pipeB_y = y;
2228 break;
2229 default:
2230 break;
2231 }
2232}
2233
Chris Wilson14667a42012-04-03 17:58:35 +01002234static int
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -05002235intel_pipe_set_base(struct drm_crtc *crtc, int x, int y,
Daniel Vetter94352cf2012-07-05 22:51:56 +02002236 struct drm_framebuffer *fb)
Jesse Barnes79e53942008-11-07 14:24:08 -08002237{
2238 struct drm_device *dev = crtc->dev;
Chris Wilson6b8e6ed2012-04-17 15:08:19 +01002239 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -08002240 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter94352cf2012-07-05 22:51:56 +02002241 struct drm_framebuffer *old_fb;
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002242 int ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08002243
2244 /* no fb bound */
Daniel Vetter94352cf2012-07-05 22:51:56 +02002245 if (!fb) {
Jesse Barnesa5071c22011-07-19 15:38:56 -07002246 DRM_ERROR("No FB bound\n");
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002247 return 0;
2248 }
2249
Eugeni Dodonov5826eca2012-05-09 15:37:12 -03002250 if(intel_crtc->plane > dev_priv->num_pipe) {
2251 DRM_ERROR("no plane for crtc: plane %d, num_pipes %d\n",
2252 intel_crtc->plane,
2253 dev_priv->num_pipe);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002254 return -EINVAL;
Jesse Barnes79e53942008-11-07 14:24:08 -08002255 }
2256
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002257 mutex_lock(&dev->struct_mutex);
Chris Wilson265db952010-09-20 15:41:01 +01002258 ret = intel_pin_and_fence_fb_obj(dev,
Daniel Vetter94352cf2012-07-05 22:51:56 +02002259 to_intel_framebuffer(fb)->obj,
Chris Wilson919926a2010-11-12 13:42:53 +00002260 NULL);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002261 if (ret != 0) {
2262 mutex_unlock(&dev->struct_mutex);
Jesse Barnesa5071c22011-07-19 15:38:56 -07002263 DRM_ERROR("pin & fence failed\n");
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002264 return ret;
2265 }
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -05002266
Daniel Vetter94352cf2012-07-05 22:51:56 +02002267 if (crtc->fb)
2268 intel_finish_fb(crtc->fb);
Chris Wilson265db952010-09-20 15:41:01 +01002269
Daniel Vetter94352cf2012-07-05 22:51:56 +02002270 ret = dev_priv->display.update_plane(crtc, fb, x, y);
Chris Wilson4e6cfef2010-08-08 13:20:19 +01002271 if (ret) {
Daniel Vetter94352cf2012-07-05 22:51:56 +02002272 intel_unpin_fb_obj(to_intel_framebuffer(fb)->obj);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002273 mutex_unlock(&dev->struct_mutex);
Jesse Barnesa5071c22011-07-19 15:38:56 -07002274 DRM_ERROR("failed to update base address\n");
Chris Wilson4e6cfef2010-08-08 13:20:19 +01002275 return ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08002276 }
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -05002277
Daniel Vetter94352cf2012-07-05 22:51:56 +02002278 old_fb = crtc->fb;
2279 crtc->fb = fb;
Daniel Vetter6c4c86f2012-09-10 21:58:30 +02002280 crtc->x = x;
2281 crtc->y = y;
Daniel Vetter94352cf2012-07-05 22:51:56 +02002282
Chris Wilsonb7f1de22010-12-14 16:09:31 +00002283 if (old_fb) {
2284 intel_wait_for_vblank(dev, intel_crtc->pipe);
Chris Wilson1690e1e2011-12-14 13:57:08 +01002285 intel_unpin_fb_obj(to_intel_framebuffer(old_fb)->obj);
Chris Wilsonb7f1de22010-12-14 16:09:31 +00002286 }
Jesse Barnes652c3932009-08-17 13:31:43 -07002287
Chris Wilson6b8e6ed2012-04-17 15:08:19 +01002288 intel_update_fbc(dev);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002289 mutex_unlock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -08002290
Ville Syrjälä198598d2012-10-31 17:50:24 +02002291 intel_crtc_update_sarea_pos(crtc, x, y);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002292
2293 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08002294}
2295
Chris Wilson5eddb702010-09-11 13:48:45 +01002296static void ironlake_set_pll_edp(struct drm_crtc *crtc, int clock)
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002297{
2298 struct drm_device *dev = crtc->dev;
2299 struct drm_i915_private *dev_priv = dev->dev_private;
2300 u32 dpa_ctl;
2301
Zhao Yakui28c97732009-10-09 11:39:41 +08002302 DRM_DEBUG_KMS("eDP PLL enable for clock %d\n", clock);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002303 dpa_ctl = I915_READ(DP_A);
2304 dpa_ctl &= ~DP_PLL_FREQ_MASK;
2305
2306 if (clock < 200000) {
2307 u32 temp;
2308 dpa_ctl |= DP_PLL_FREQ_160MHZ;
2309 /* workaround for 160Mhz:
2310 1) program 0x4600c bits 15:0 = 0x8124
2311 2) program 0x46010 bit 0 = 1
2312 3) program 0x46034 bit 24 = 1
2313 4) program 0x64000 bit 14 = 1
2314 */
2315 temp = I915_READ(0x4600c);
2316 temp &= 0xffff0000;
2317 I915_WRITE(0x4600c, temp | 0x8124);
2318
2319 temp = I915_READ(0x46010);
2320 I915_WRITE(0x46010, temp | 1);
2321
2322 temp = I915_READ(0x46034);
2323 I915_WRITE(0x46034, temp | (1 << 24));
2324 } else {
2325 dpa_ctl |= DP_PLL_FREQ_270MHZ;
2326 }
2327 I915_WRITE(DP_A, dpa_ctl);
2328
Chris Wilson5eddb702010-09-11 13:48:45 +01002329 POSTING_READ(DP_A);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08002330 udelay(500);
2331}
2332
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08002333static void intel_fdi_normal_train(struct drm_crtc *crtc)
2334{
2335 struct drm_device *dev = crtc->dev;
2336 struct drm_i915_private *dev_priv = dev->dev_private;
2337 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2338 int pipe = intel_crtc->pipe;
2339 u32 reg, temp;
2340
2341 /* enable normal train */
2342 reg = FDI_TX_CTL(pipe);
2343 temp = I915_READ(reg);
Keith Packard61e499b2011-05-17 16:13:52 -07002344 if (IS_IVYBRIDGE(dev)) {
Jesse Barnes357555c2011-04-28 15:09:55 -07002345 temp &= ~FDI_LINK_TRAIN_NONE_IVB;
2346 temp |= FDI_LINK_TRAIN_NONE_IVB | FDI_TX_ENHANCE_FRAME_ENABLE;
Keith Packard61e499b2011-05-17 16:13:52 -07002347 } else {
2348 temp &= ~FDI_LINK_TRAIN_NONE;
2349 temp |= FDI_LINK_TRAIN_NONE | FDI_TX_ENHANCE_FRAME_ENABLE;
Jesse Barnes357555c2011-04-28 15:09:55 -07002350 }
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08002351 I915_WRITE(reg, temp);
2352
2353 reg = FDI_RX_CTL(pipe);
2354 temp = I915_READ(reg);
2355 if (HAS_PCH_CPT(dev)) {
2356 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2357 temp |= FDI_LINK_TRAIN_NORMAL_CPT;
2358 } else {
2359 temp &= ~FDI_LINK_TRAIN_NONE;
2360 temp |= FDI_LINK_TRAIN_NONE;
2361 }
2362 I915_WRITE(reg, temp | FDI_RX_ENHANCE_FRAME_ENABLE);
2363
2364 /* wait one idle pattern time */
2365 POSTING_READ(reg);
2366 udelay(1000);
Jesse Barnes357555c2011-04-28 15:09:55 -07002367
2368 /* IVB wants error correction enabled */
2369 if (IS_IVYBRIDGE(dev))
2370 I915_WRITE(reg, I915_READ(reg) | FDI_FS_ERRC_ENABLE |
2371 FDI_FE_ERRC_ENABLE);
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08002372}
2373
Jesse Barnes291427f2011-07-29 12:42:37 -07002374static void cpt_phase_pointer_enable(struct drm_device *dev, int pipe)
2375{
2376 struct drm_i915_private *dev_priv = dev->dev_private;
2377 u32 flags = I915_READ(SOUTH_CHICKEN1);
2378
2379 flags |= FDI_PHASE_SYNC_OVR(pipe);
2380 I915_WRITE(SOUTH_CHICKEN1, flags); /* once to unlock... */
2381 flags |= FDI_PHASE_SYNC_EN(pipe);
2382 I915_WRITE(SOUTH_CHICKEN1, flags); /* then again to enable */
2383 POSTING_READ(SOUTH_CHICKEN1);
2384}
2385
Daniel Vetter01a415f2012-10-27 15:58:40 +02002386static void ivb_modeset_global_resources(struct drm_device *dev)
2387{
2388 struct drm_i915_private *dev_priv = dev->dev_private;
2389 struct intel_crtc *pipe_B_crtc =
2390 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[PIPE_B]);
2391 struct intel_crtc *pipe_C_crtc =
2392 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[PIPE_C]);
2393 uint32_t temp;
2394
2395 /* When everything is off disable fdi C so that we could enable fdi B
2396 * with all lanes. XXX: This misses the case where a pipe is not using
2397 * any pch resources and so doesn't need any fdi lanes. */
2398 if (!pipe_B_crtc->base.enabled && !pipe_C_crtc->base.enabled) {
2399 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_B)) & FDI_RX_ENABLE);
2400 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_C)) & FDI_RX_ENABLE);
2401
2402 temp = I915_READ(SOUTH_CHICKEN1);
2403 temp &= ~FDI_BC_BIFURCATION_SELECT;
2404 DRM_DEBUG_KMS("disabling fdi C rx\n");
2405 I915_WRITE(SOUTH_CHICKEN1, temp);
2406 }
2407}
2408
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002409/* The FDI link training functions for ILK/Ibexpeak. */
2410static void ironlake_fdi_link_train(struct drm_crtc *crtc)
2411{
2412 struct drm_device *dev = crtc->dev;
2413 struct drm_i915_private *dev_priv = dev->dev_private;
2414 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2415 int pipe = intel_crtc->pipe;
Jesse Barnes0fc932b2011-01-04 15:09:37 -08002416 int plane = intel_crtc->plane;
Chris Wilson5eddb702010-09-11 13:48:45 +01002417 u32 reg, temp, tries;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002418
Jesse Barnes0fc932b2011-01-04 15:09:37 -08002419 /* FDI needs bits from pipe & plane first */
2420 assert_pipe_enabled(dev_priv, pipe);
2421 assert_plane_enabled(dev_priv, plane);
2422
Adam Jacksone1a44742010-06-25 15:32:14 -04002423 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
2424 for train result */
Chris Wilson5eddb702010-09-11 13:48:45 +01002425 reg = FDI_RX_IMR(pipe);
2426 temp = I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04002427 temp &= ~FDI_RX_SYMBOL_LOCK;
2428 temp &= ~FDI_RX_BIT_LOCK;
Chris Wilson5eddb702010-09-11 13:48:45 +01002429 I915_WRITE(reg, temp);
2430 I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04002431 udelay(150);
2432
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002433 /* enable CPU FDI TX and PCH FDI RX */
Chris Wilson5eddb702010-09-11 13:48:45 +01002434 reg = FDI_TX_CTL(pipe);
2435 temp = I915_READ(reg);
Adam Jackson77ffb592010-04-12 11:38:44 -04002436 temp &= ~(7 << 19);
2437 temp |= (intel_crtc->fdi_lanes - 1) << 19;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002438 temp &= ~FDI_LINK_TRAIN_NONE;
2439 temp |= FDI_LINK_TRAIN_PATTERN_1;
Chris Wilson5eddb702010-09-11 13:48:45 +01002440 I915_WRITE(reg, temp | FDI_TX_ENABLE);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002441
Chris Wilson5eddb702010-09-11 13:48:45 +01002442 reg = FDI_RX_CTL(pipe);
2443 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002444 temp &= ~FDI_LINK_TRAIN_NONE;
2445 temp |= FDI_LINK_TRAIN_PATTERN_1;
Chris Wilson5eddb702010-09-11 13:48:45 +01002446 I915_WRITE(reg, temp | FDI_RX_ENABLE);
2447
2448 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002449 udelay(150);
2450
Jesse Barnes5b2adf82010-10-07 16:01:15 -07002451 /* Ironlake workaround, enable clock pointer after FDI enable*/
Daniel Vetter8f5718a2012-10-31 22:52:28 +01002452 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR);
2453 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR |
2454 FDI_RX_PHASE_SYNC_POINTER_EN);
Jesse Barnes5b2adf82010-10-07 16:01:15 -07002455
Chris Wilson5eddb702010-09-11 13:48:45 +01002456 reg = FDI_RX_IIR(pipe);
Adam Jacksone1a44742010-06-25 15:32:14 -04002457 for (tries = 0; tries < 5; tries++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002458 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002459 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2460
2461 if ((temp & FDI_RX_BIT_LOCK)) {
2462 DRM_DEBUG_KMS("FDI train 1 done.\n");
Chris Wilson5eddb702010-09-11 13:48:45 +01002463 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002464 break;
2465 }
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002466 }
Adam Jacksone1a44742010-06-25 15:32:14 -04002467 if (tries == 5)
Chris Wilson5eddb702010-09-11 13:48:45 +01002468 DRM_ERROR("FDI train 1 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002469
2470 /* Train 2 */
Chris Wilson5eddb702010-09-11 13:48:45 +01002471 reg = FDI_TX_CTL(pipe);
2472 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002473 temp &= ~FDI_LINK_TRAIN_NONE;
2474 temp |= FDI_LINK_TRAIN_PATTERN_2;
Chris Wilson5eddb702010-09-11 13:48:45 +01002475 I915_WRITE(reg, temp);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002476
Chris Wilson5eddb702010-09-11 13:48:45 +01002477 reg = FDI_RX_CTL(pipe);
2478 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002479 temp &= ~FDI_LINK_TRAIN_NONE;
2480 temp |= FDI_LINK_TRAIN_PATTERN_2;
Chris Wilson5eddb702010-09-11 13:48:45 +01002481 I915_WRITE(reg, temp);
2482
2483 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002484 udelay(150);
2485
Chris Wilson5eddb702010-09-11 13:48:45 +01002486 reg = FDI_RX_IIR(pipe);
Adam Jacksone1a44742010-06-25 15:32:14 -04002487 for (tries = 0; tries < 5; tries++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002488 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002489 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2490
2491 if (temp & FDI_RX_SYMBOL_LOCK) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002492 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002493 DRM_DEBUG_KMS("FDI train 2 done.\n");
2494 break;
2495 }
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002496 }
Adam Jacksone1a44742010-06-25 15:32:14 -04002497 if (tries == 5)
Chris Wilson5eddb702010-09-11 13:48:45 +01002498 DRM_ERROR("FDI train 2 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002499
2500 DRM_DEBUG_KMS("FDI train done\n");
Jesse Barnes5c5313c2010-10-07 16:01:11 -07002501
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002502}
2503
Akshay Joshi0206e352011-08-16 15:34:10 -04002504static const int snb_b_fdi_train_param[] = {
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002505 FDI_LINK_TRAIN_400MV_0DB_SNB_B,
2506 FDI_LINK_TRAIN_400MV_6DB_SNB_B,
2507 FDI_LINK_TRAIN_600MV_3_5DB_SNB_B,
2508 FDI_LINK_TRAIN_800MV_0DB_SNB_B,
2509};
2510
2511/* The FDI link training functions for SNB/Cougarpoint. */
2512static void gen6_fdi_link_train(struct drm_crtc *crtc)
2513{
2514 struct drm_device *dev = crtc->dev;
2515 struct drm_i915_private *dev_priv = dev->dev_private;
2516 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2517 int pipe = intel_crtc->pipe;
Sean Paulfa37d392012-03-02 12:53:39 -05002518 u32 reg, temp, i, retry;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002519
Adam Jacksone1a44742010-06-25 15:32:14 -04002520 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
2521 for train result */
Chris Wilson5eddb702010-09-11 13:48:45 +01002522 reg = FDI_RX_IMR(pipe);
2523 temp = I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04002524 temp &= ~FDI_RX_SYMBOL_LOCK;
2525 temp &= ~FDI_RX_BIT_LOCK;
Chris Wilson5eddb702010-09-11 13:48:45 +01002526 I915_WRITE(reg, temp);
2527
2528 POSTING_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04002529 udelay(150);
2530
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002531 /* enable CPU FDI TX and PCH FDI RX */
Chris Wilson5eddb702010-09-11 13:48:45 +01002532 reg = FDI_TX_CTL(pipe);
2533 temp = I915_READ(reg);
Adam Jackson77ffb592010-04-12 11:38:44 -04002534 temp &= ~(7 << 19);
2535 temp |= (intel_crtc->fdi_lanes - 1) << 19;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002536 temp &= ~FDI_LINK_TRAIN_NONE;
2537 temp |= FDI_LINK_TRAIN_PATTERN_1;
2538 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2539 /* SNB-B */
2540 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
Chris Wilson5eddb702010-09-11 13:48:45 +01002541 I915_WRITE(reg, temp | FDI_TX_ENABLE);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002542
Daniel Vetterd74cf322012-10-26 10:58:13 +02002543 I915_WRITE(FDI_RX_MISC(pipe),
2544 FDI_RX_TP1_TO_TP2_48 | FDI_RX_FDI_DELAY_90);
2545
Chris Wilson5eddb702010-09-11 13:48:45 +01002546 reg = FDI_RX_CTL(pipe);
2547 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002548 if (HAS_PCH_CPT(dev)) {
2549 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2550 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
2551 } else {
2552 temp &= ~FDI_LINK_TRAIN_NONE;
2553 temp |= FDI_LINK_TRAIN_PATTERN_1;
2554 }
Chris Wilson5eddb702010-09-11 13:48:45 +01002555 I915_WRITE(reg, temp | FDI_RX_ENABLE);
2556
2557 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002558 udelay(150);
2559
Daniel Vetter8f5718a2012-10-31 22:52:28 +01002560 cpt_phase_pointer_enable(dev, pipe);
Jesse Barnes291427f2011-07-29 12:42:37 -07002561
Akshay Joshi0206e352011-08-16 15:34:10 -04002562 for (i = 0; i < 4; i++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002563 reg = FDI_TX_CTL(pipe);
2564 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002565 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2566 temp |= snb_b_fdi_train_param[i];
Chris Wilson5eddb702010-09-11 13:48:45 +01002567 I915_WRITE(reg, temp);
2568
2569 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002570 udelay(500);
2571
Sean Paulfa37d392012-03-02 12:53:39 -05002572 for (retry = 0; retry < 5; retry++) {
2573 reg = FDI_RX_IIR(pipe);
2574 temp = I915_READ(reg);
2575 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2576 if (temp & FDI_RX_BIT_LOCK) {
2577 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
2578 DRM_DEBUG_KMS("FDI train 1 done.\n");
2579 break;
2580 }
2581 udelay(50);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002582 }
Sean Paulfa37d392012-03-02 12:53:39 -05002583 if (retry < 5)
2584 break;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002585 }
2586 if (i == 4)
Chris Wilson5eddb702010-09-11 13:48:45 +01002587 DRM_ERROR("FDI train 1 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002588
2589 /* Train 2 */
Chris Wilson5eddb702010-09-11 13:48:45 +01002590 reg = FDI_TX_CTL(pipe);
2591 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002592 temp &= ~FDI_LINK_TRAIN_NONE;
2593 temp |= FDI_LINK_TRAIN_PATTERN_2;
2594 if (IS_GEN6(dev)) {
2595 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2596 /* SNB-B */
2597 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
2598 }
Chris Wilson5eddb702010-09-11 13:48:45 +01002599 I915_WRITE(reg, temp);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002600
Chris Wilson5eddb702010-09-11 13:48:45 +01002601 reg = FDI_RX_CTL(pipe);
2602 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002603 if (HAS_PCH_CPT(dev)) {
2604 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2605 temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
2606 } else {
2607 temp &= ~FDI_LINK_TRAIN_NONE;
2608 temp |= FDI_LINK_TRAIN_PATTERN_2;
2609 }
Chris Wilson5eddb702010-09-11 13:48:45 +01002610 I915_WRITE(reg, temp);
2611
2612 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002613 udelay(150);
2614
Akshay Joshi0206e352011-08-16 15:34:10 -04002615 for (i = 0; i < 4; i++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002616 reg = FDI_TX_CTL(pipe);
2617 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002618 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2619 temp |= snb_b_fdi_train_param[i];
Chris Wilson5eddb702010-09-11 13:48:45 +01002620 I915_WRITE(reg, temp);
2621
2622 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002623 udelay(500);
2624
Sean Paulfa37d392012-03-02 12:53:39 -05002625 for (retry = 0; retry < 5; retry++) {
2626 reg = FDI_RX_IIR(pipe);
2627 temp = I915_READ(reg);
2628 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2629 if (temp & FDI_RX_SYMBOL_LOCK) {
2630 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
2631 DRM_DEBUG_KMS("FDI train 2 done.\n");
2632 break;
2633 }
2634 udelay(50);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002635 }
Sean Paulfa37d392012-03-02 12:53:39 -05002636 if (retry < 5)
2637 break;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002638 }
2639 if (i == 4)
Chris Wilson5eddb702010-09-11 13:48:45 +01002640 DRM_ERROR("FDI train 2 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002641
2642 DRM_DEBUG_KMS("FDI train done.\n");
2643}
2644
Jesse Barnes357555c2011-04-28 15:09:55 -07002645/* Manual link training for Ivy Bridge A0 parts */
2646static void ivb_manual_fdi_link_train(struct drm_crtc *crtc)
2647{
2648 struct drm_device *dev = crtc->dev;
2649 struct drm_i915_private *dev_priv = dev->dev_private;
2650 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2651 int pipe = intel_crtc->pipe;
2652 u32 reg, temp, i;
2653
2654 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
2655 for train result */
2656 reg = FDI_RX_IMR(pipe);
2657 temp = I915_READ(reg);
2658 temp &= ~FDI_RX_SYMBOL_LOCK;
2659 temp &= ~FDI_RX_BIT_LOCK;
2660 I915_WRITE(reg, temp);
2661
2662 POSTING_READ(reg);
2663 udelay(150);
2664
Daniel Vetter01a415f2012-10-27 15:58:40 +02002665 DRM_DEBUG_KMS("FDI_RX_IIR before link train 0x%x\n",
2666 I915_READ(FDI_RX_IIR(pipe)));
2667
Jesse Barnes357555c2011-04-28 15:09:55 -07002668 /* enable CPU FDI TX and PCH FDI RX */
2669 reg = FDI_TX_CTL(pipe);
2670 temp = I915_READ(reg);
2671 temp &= ~(7 << 19);
2672 temp |= (intel_crtc->fdi_lanes - 1) << 19;
2673 temp &= ~(FDI_LINK_TRAIN_AUTO | FDI_LINK_TRAIN_NONE_IVB);
2674 temp |= FDI_LINK_TRAIN_PATTERN_1_IVB;
2675 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2676 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
Jesse Barnesc4f9c4c2011-10-10 14:28:52 -07002677 temp |= FDI_COMPOSITE_SYNC;
Jesse Barnes357555c2011-04-28 15:09:55 -07002678 I915_WRITE(reg, temp | FDI_TX_ENABLE);
2679
Daniel Vetterd74cf322012-10-26 10:58:13 +02002680 I915_WRITE(FDI_RX_MISC(pipe),
2681 FDI_RX_TP1_TO_TP2_48 | FDI_RX_FDI_DELAY_90);
2682
Jesse Barnes357555c2011-04-28 15:09:55 -07002683 reg = FDI_RX_CTL(pipe);
2684 temp = I915_READ(reg);
2685 temp &= ~FDI_LINK_TRAIN_AUTO;
2686 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2687 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
Jesse Barnesc4f9c4c2011-10-10 14:28:52 -07002688 temp |= FDI_COMPOSITE_SYNC;
Jesse Barnes357555c2011-04-28 15:09:55 -07002689 I915_WRITE(reg, temp | FDI_RX_ENABLE);
2690
2691 POSTING_READ(reg);
2692 udelay(150);
2693
Daniel Vetter8f5718a2012-10-31 22:52:28 +01002694 cpt_phase_pointer_enable(dev, pipe);
Jesse Barnes291427f2011-07-29 12:42:37 -07002695
Akshay Joshi0206e352011-08-16 15:34:10 -04002696 for (i = 0; i < 4; i++) {
Jesse Barnes357555c2011-04-28 15:09:55 -07002697 reg = FDI_TX_CTL(pipe);
2698 temp = I915_READ(reg);
2699 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2700 temp |= snb_b_fdi_train_param[i];
2701 I915_WRITE(reg, temp);
2702
2703 POSTING_READ(reg);
2704 udelay(500);
2705
2706 reg = FDI_RX_IIR(pipe);
2707 temp = I915_READ(reg);
2708 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2709
2710 if (temp & FDI_RX_BIT_LOCK ||
2711 (I915_READ(reg) & FDI_RX_BIT_LOCK)) {
2712 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
Daniel Vetter01a415f2012-10-27 15:58:40 +02002713 DRM_DEBUG_KMS("FDI train 1 done, level %i.\n", i);
Jesse Barnes357555c2011-04-28 15:09:55 -07002714 break;
2715 }
2716 }
2717 if (i == 4)
2718 DRM_ERROR("FDI train 1 fail!\n");
2719
2720 /* Train 2 */
2721 reg = FDI_TX_CTL(pipe);
2722 temp = I915_READ(reg);
2723 temp &= ~FDI_LINK_TRAIN_NONE_IVB;
2724 temp |= FDI_LINK_TRAIN_PATTERN_2_IVB;
2725 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2726 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
2727 I915_WRITE(reg, temp);
2728
2729 reg = FDI_RX_CTL(pipe);
2730 temp = I915_READ(reg);
2731 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2732 temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
2733 I915_WRITE(reg, temp);
2734
2735 POSTING_READ(reg);
2736 udelay(150);
2737
Akshay Joshi0206e352011-08-16 15:34:10 -04002738 for (i = 0; i < 4; i++) {
Jesse Barnes357555c2011-04-28 15:09:55 -07002739 reg = FDI_TX_CTL(pipe);
2740 temp = I915_READ(reg);
2741 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2742 temp |= snb_b_fdi_train_param[i];
2743 I915_WRITE(reg, temp);
2744
2745 POSTING_READ(reg);
2746 udelay(500);
2747
2748 reg = FDI_RX_IIR(pipe);
2749 temp = I915_READ(reg);
2750 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2751
2752 if (temp & FDI_RX_SYMBOL_LOCK) {
2753 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
Daniel Vetter01a415f2012-10-27 15:58:40 +02002754 DRM_DEBUG_KMS("FDI train 2 done, level %i.\n", i);
Jesse Barnes357555c2011-04-28 15:09:55 -07002755 break;
2756 }
2757 }
2758 if (i == 4)
2759 DRM_ERROR("FDI train 2 fail!\n");
2760
2761 DRM_DEBUG_KMS("FDI train done.\n");
2762}
2763
Daniel Vetter88cefb62012-08-12 19:27:14 +02002764static void ironlake_fdi_pll_enable(struct intel_crtc *intel_crtc)
Jesse Barnes0e23b992010-09-10 11:10:00 -07002765{
Daniel Vetter88cefb62012-08-12 19:27:14 +02002766 struct drm_device *dev = intel_crtc->base.dev;
Jesse Barnes0e23b992010-09-10 11:10:00 -07002767 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes0e23b992010-09-10 11:10:00 -07002768 int pipe = intel_crtc->pipe;
Chris Wilson5eddb702010-09-11 13:48:45 +01002769 u32 reg, temp;
Jesse Barnes0e23b992010-09-10 11:10:00 -07002770
Jesse Barnesc64e3112010-09-10 11:27:03 -07002771
Jesse Barnes0e23b992010-09-10 11:10:00 -07002772 /* enable PCH FDI RX PLL, wait warmup plus DMI latency */
Chris Wilson5eddb702010-09-11 13:48:45 +01002773 reg = FDI_RX_CTL(pipe);
2774 temp = I915_READ(reg);
2775 temp &= ~((0x7 << 19) | (0x7 << 16));
Jesse Barnes0e23b992010-09-10 11:10:00 -07002776 temp |= (intel_crtc->fdi_lanes - 1) << 19;
Chris Wilson5eddb702010-09-11 13:48:45 +01002777 temp |= (I915_READ(PIPECONF(pipe)) & PIPE_BPC_MASK) << 11;
2778 I915_WRITE(reg, temp | FDI_RX_PLL_ENABLE);
2779
2780 POSTING_READ(reg);
Jesse Barnes0e23b992010-09-10 11:10:00 -07002781 udelay(200);
2782
2783 /* Switch from Rawclk to PCDclk */
Chris Wilson5eddb702010-09-11 13:48:45 +01002784 temp = I915_READ(reg);
2785 I915_WRITE(reg, temp | FDI_PCDCLK);
2786
2787 POSTING_READ(reg);
Jesse Barnes0e23b992010-09-10 11:10:00 -07002788 udelay(200);
2789
Paulo Zanoni20749732012-11-23 15:30:38 -02002790 /* Enable CPU FDI TX PLL, always on for Ironlake */
2791 reg = FDI_TX_CTL(pipe);
2792 temp = I915_READ(reg);
2793 if ((temp & FDI_TX_PLL_ENABLE) == 0) {
2794 I915_WRITE(reg, temp | FDI_TX_PLL_ENABLE);
Chris Wilson5eddb702010-09-11 13:48:45 +01002795
Paulo Zanoni20749732012-11-23 15:30:38 -02002796 POSTING_READ(reg);
2797 udelay(100);
Jesse Barnes0e23b992010-09-10 11:10:00 -07002798 }
2799}
2800
Daniel Vetter88cefb62012-08-12 19:27:14 +02002801static void ironlake_fdi_pll_disable(struct intel_crtc *intel_crtc)
2802{
2803 struct drm_device *dev = intel_crtc->base.dev;
2804 struct drm_i915_private *dev_priv = dev->dev_private;
2805 int pipe = intel_crtc->pipe;
2806 u32 reg, temp;
2807
2808 /* Switch from PCDclk to Rawclk */
2809 reg = FDI_RX_CTL(pipe);
2810 temp = I915_READ(reg);
2811 I915_WRITE(reg, temp & ~FDI_PCDCLK);
2812
2813 /* Disable CPU FDI TX PLL */
2814 reg = FDI_TX_CTL(pipe);
2815 temp = I915_READ(reg);
2816 I915_WRITE(reg, temp & ~FDI_TX_PLL_ENABLE);
2817
2818 POSTING_READ(reg);
2819 udelay(100);
2820
2821 reg = FDI_RX_CTL(pipe);
2822 temp = I915_READ(reg);
2823 I915_WRITE(reg, temp & ~FDI_RX_PLL_ENABLE);
2824
2825 /* Wait for the clocks to turn off. */
2826 POSTING_READ(reg);
2827 udelay(100);
2828}
2829
Jesse Barnes291427f2011-07-29 12:42:37 -07002830static void cpt_phase_pointer_disable(struct drm_device *dev, int pipe)
2831{
2832 struct drm_i915_private *dev_priv = dev->dev_private;
2833 u32 flags = I915_READ(SOUTH_CHICKEN1);
2834
2835 flags &= ~(FDI_PHASE_SYNC_EN(pipe));
2836 I915_WRITE(SOUTH_CHICKEN1, flags); /* once to disable... */
2837 flags &= ~(FDI_PHASE_SYNC_OVR(pipe));
2838 I915_WRITE(SOUTH_CHICKEN1, flags); /* then again to lock */
2839 POSTING_READ(SOUTH_CHICKEN1);
2840}
Jesse Barnes0fc932b2011-01-04 15:09:37 -08002841static void ironlake_fdi_disable(struct drm_crtc *crtc)
2842{
2843 struct drm_device *dev = crtc->dev;
2844 struct drm_i915_private *dev_priv = dev->dev_private;
2845 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2846 int pipe = intel_crtc->pipe;
2847 u32 reg, temp;
2848
2849 /* disable CPU FDI tx and PCH FDI rx */
2850 reg = FDI_TX_CTL(pipe);
2851 temp = I915_READ(reg);
2852 I915_WRITE(reg, temp & ~FDI_TX_ENABLE);
2853 POSTING_READ(reg);
2854
2855 reg = FDI_RX_CTL(pipe);
2856 temp = I915_READ(reg);
2857 temp &= ~(0x7 << 16);
2858 temp |= (I915_READ(PIPECONF(pipe)) & PIPE_BPC_MASK) << 11;
2859 I915_WRITE(reg, temp & ~FDI_RX_ENABLE);
2860
2861 POSTING_READ(reg);
2862 udelay(100);
2863
2864 /* Ironlake workaround, disable clock pointer after downing FDI */
Jesse Barnes6f06ce12011-01-04 15:09:38 -08002865 if (HAS_PCH_IBX(dev)) {
2866 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR);
Jesse Barnes291427f2011-07-29 12:42:37 -07002867 } else if (HAS_PCH_CPT(dev)) {
2868 cpt_phase_pointer_disable(dev, pipe);
Jesse Barnes6f06ce12011-01-04 15:09:38 -08002869 }
Jesse Barnes0fc932b2011-01-04 15:09:37 -08002870
2871 /* still set train pattern 1 */
2872 reg = FDI_TX_CTL(pipe);
2873 temp = I915_READ(reg);
2874 temp &= ~FDI_LINK_TRAIN_NONE;
2875 temp |= FDI_LINK_TRAIN_PATTERN_1;
2876 I915_WRITE(reg, temp);
2877
2878 reg = FDI_RX_CTL(pipe);
2879 temp = I915_READ(reg);
2880 if (HAS_PCH_CPT(dev)) {
2881 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2882 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
2883 } else {
2884 temp &= ~FDI_LINK_TRAIN_NONE;
2885 temp |= FDI_LINK_TRAIN_PATTERN_1;
2886 }
2887 /* BPC in FDI rx is consistent with that in PIPECONF */
2888 temp &= ~(0x07 << 16);
2889 temp |= (I915_READ(PIPECONF(pipe)) & PIPE_BPC_MASK) << 11;
2890 I915_WRITE(reg, temp);
2891
2892 POSTING_READ(reg);
2893 udelay(100);
2894}
2895
Chris Wilson5bb61642012-09-27 21:25:58 +01002896static bool intel_crtc_has_pending_flip(struct drm_crtc *crtc)
2897{
2898 struct drm_device *dev = crtc->dev;
2899 struct drm_i915_private *dev_priv = dev->dev_private;
2900 unsigned long flags;
2901 bool pending;
2902
2903 if (atomic_read(&dev_priv->mm.wedged))
2904 return false;
2905
2906 spin_lock_irqsave(&dev->event_lock, flags);
2907 pending = to_intel_crtc(crtc)->unpin_work != NULL;
2908 spin_unlock_irqrestore(&dev->event_lock, flags);
2909
2910 return pending;
2911}
2912
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01002913static void intel_crtc_wait_for_pending_flips(struct drm_crtc *crtc)
2914{
Chris Wilson0f911282012-04-17 10:05:38 +01002915 struct drm_device *dev = crtc->dev;
Chris Wilson5bb61642012-09-27 21:25:58 +01002916 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01002917
2918 if (crtc->fb == NULL)
2919 return;
2920
Chris Wilson5bb61642012-09-27 21:25:58 +01002921 wait_event(dev_priv->pending_flip_queue,
2922 !intel_crtc_has_pending_flip(crtc));
2923
Chris Wilson0f911282012-04-17 10:05:38 +01002924 mutex_lock(&dev->struct_mutex);
2925 intel_finish_fb(crtc->fb);
2926 mutex_unlock(&dev->struct_mutex);
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01002927}
2928
Paulo Zanonifc316cb2012-10-25 10:37:43 -02002929static bool ironlake_crtc_driving_pch(struct drm_crtc *crtc)
Jesse Barnes040484a2011-01-03 12:14:26 -08002930{
2931 struct drm_device *dev = crtc->dev;
Paulo Zanoni228d3e32012-08-10 10:05:10 -03002932 struct intel_encoder *intel_encoder;
Jesse Barnes040484a2011-01-03 12:14:26 -08002933
2934 /*
2935 * If there's a non-PCH eDP on this crtc, it must be DP_A, and that
2936 * must be driven by its own crtc; no sharing is possible.
2937 */
Paulo Zanoni228d3e32012-08-10 10:05:10 -03002938 for_each_encoder_on_crtc(dev, crtc, intel_encoder) {
Paulo Zanoni228d3e32012-08-10 10:05:10 -03002939 switch (intel_encoder->type) {
Jesse Barnes040484a2011-01-03 12:14:26 -08002940 case INTEL_OUTPUT_EDP:
Paulo Zanoni228d3e32012-08-10 10:05:10 -03002941 if (!intel_encoder_is_pch_edp(&intel_encoder->base))
Jesse Barnes040484a2011-01-03 12:14:26 -08002942 return false;
2943 continue;
2944 }
2945 }
2946
2947 return true;
2948}
2949
Paulo Zanonifc316cb2012-10-25 10:37:43 -02002950static bool haswell_crtc_driving_pch(struct drm_crtc *crtc)
2951{
2952 return intel_pipe_has_type(crtc, INTEL_OUTPUT_ANALOG);
2953}
2954
Eugeni Dodonove615efe2012-05-09 15:37:26 -03002955/* Program iCLKIP clock to the desired frequency */
2956static void lpt_program_iclkip(struct drm_crtc *crtc)
2957{
2958 struct drm_device *dev = crtc->dev;
2959 struct drm_i915_private *dev_priv = dev->dev_private;
2960 u32 divsel, phaseinc, auxdiv, phasedir = 0;
2961 u32 temp;
2962
2963 /* It is necessary to ungate the pixclk gate prior to programming
2964 * the divisors, and gate it back when it is done.
2965 */
2966 I915_WRITE(PIXCLK_GATE, PIXCLK_GATE_GATE);
2967
2968 /* Disable SSCCTL */
2969 intel_sbi_write(dev_priv, SBI_SSCCTL6,
2970 intel_sbi_read(dev_priv, SBI_SSCCTL6) |
2971 SBI_SSCCTL_DISABLE);
2972
2973 /* 20MHz is a corner case which is out of range for the 7-bit divisor */
2974 if (crtc->mode.clock == 20000) {
2975 auxdiv = 1;
2976 divsel = 0x41;
2977 phaseinc = 0x20;
2978 } else {
2979 /* The iCLK virtual clock root frequency is in MHz,
2980 * but the crtc->mode.clock in in KHz. To get the divisors,
2981 * it is necessary to divide one by another, so we
2982 * convert the virtual clock precision to KHz here for higher
2983 * precision.
2984 */
2985 u32 iclk_virtual_root_freq = 172800 * 1000;
2986 u32 iclk_pi_range = 64;
2987 u32 desired_divisor, msb_divisor_value, pi_value;
2988
2989 desired_divisor = (iclk_virtual_root_freq / crtc->mode.clock);
2990 msb_divisor_value = desired_divisor / iclk_pi_range;
2991 pi_value = desired_divisor % iclk_pi_range;
2992
2993 auxdiv = 0;
2994 divsel = msb_divisor_value - 2;
2995 phaseinc = pi_value;
2996 }
2997
2998 /* This should not happen with any sane values */
2999 WARN_ON(SBI_SSCDIVINTPHASE_DIVSEL(divsel) &
3000 ~SBI_SSCDIVINTPHASE_DIVSEL_MASK);
3001 WARN_ON(SBI_SSCDIVINTPHASE_DIR(phasedir) &
3002 ~SBI_SSCDIVINTPHASE_INCVAL_MASK);
3003
3004 DRM_DEBUG_KMS("iCLKIP clock: found settings for %dKHz refresh rate: auxdiv=%x, divsel=%x, phasedir=%x, phaseinc=%x\n",
3005 crtc->mode.clock,
3006 auxdiv,
3007 divsel,
3008 phasedir,
3009 phaseinc);
3010
3011 /* Program SSCDIVINTPHASE6 */
3012 temp = intel_sbi_read(dev_priv, SBI_SSCDIVINTPHASE6);
3013 temp &= ~SBI_SSCDIVINTPHASE_DIVSEL_MASK;
3014 temp |= SBI_SSCDIVINTPHASE_DIVSEL(divsel);
3015 temp &= ~SBI_SSCDIVINTPHASE_INCVAL_MASK;
3016 temp |= SBI_SSCDIVINTPHASE_INCVAL(phaseinc);
3017 temp |= SBI_SSCDIVINTPHASE_DIR(phasedir);
3018 temp |= SBI_SSCDIVINTPHASE_PROPAGATE;
3019
3020 intel_sbi_write(dev_priv,
3021 SBI_SSCDIVINTPHASE6,
3022 temp);
3023
3024 /* Program SSCAUXDIV */
3025 temp = intel_sbi_read(dev_priv, SBI_SSCAUXDIV6);
3026 temp &= ~SBI_SSCAUXDIV_FINALDIV2SEL(1);
3027 temp |= SBI_SSCAUXDIV_FINALDIV2SEL(auxdiv);
3028 intel_sbi_write(dev_priv,
3029 SBI_SSCAUXDIV6,
3030 temp);
3031
3032
3033 /* Enable modulator and associated divider */
3034 temp = intel_sbi_read(dev_priv, SBI_SSCCTL6);
3035 temp &= ~SBI_SSCCTL_DISABLE;
3036 intel_sbi_write(dev_priv,
3037 SBI_SSCCTL6,
3038 temp);
3039
3040 /* Wait for initialization time */
3041 udelay(24);
3042
3043 I915_WRITE(PIXCLK_GATE, PIXCLK_GATE_UNGATE);
3044}
3045
Jesse Barnesf67a5592011-01-05 10:31:48 -08003046/*
3047 * Enable PCH resources required for PCH ports:
3048 * - PCH PLLs
3049 * - FDI training & RX/TX
3050 * - update transcoder timings
3051 * - DP transcoding bits
3052 * - transcoder
3053 */
3054static void ironlake_pch_enable(struct drm_crtc *crtc)
Jesse Barnes79e53942008-11-07 14:24:08 -08003055{
3056 struct drm_device *dev = crtc->dev;
Zhenyu Wang2c072452009-06-05 15:38:42 +08003057 struct drm_i915_private *dev_priv = dev->dev_private;
3058 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3059 int pipe = intel_crtc->pipe;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003060 u32 reg, temp;
Jesse Barnes6be4a602010-09-10 10:26:01 -07003061
Chris Wilsone7e164d2012-05-11 09:21:25 +01003062 assert_transcoder_disabled(dev_priv, pipe);
3063
Daniel Vettercd986ab2012-10-26 10:58:12 +02003064 /* Write the TU size bits before fdi link training, so that error
3065 * detection works. */
3066 I915_WRITE(FDI_RX_TUSIZE1(pipe),
3067 I915_READ(PIPE_DATA_M1(pipe)) & TU_SIZE_MASK);
3068
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003069 /* For PCH output, training FDI link */
Jesse Barnes674cf962011-04-28 14:27:04 -07003070 dev_priv->display.fdi_link_train(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003071
Daniel Vetter572deb32012-10-27 18:46:14 +02003072 /* XXX: pch pll's can be enabled any time before we enable the PCH
3073 * transcoder, and we actually should do this to not upset any PCH
3074 * transcoder that already use the clock when we share it.
3075 *
3076 * Note that enable_pch_pll tries to do the right thing, but get_pch_pll
3077 * unconditionally resets the pll - we need that to have the right LVDS
3078 * enable sequence. */
Paulo Zanonib6b4e182012-10-31 18:12:38 -02003079 ironlake_enable_pch_pll(intel_crtc);
Chris Wilson6f13b7b2012-05-13 09:54:09 +01003080
Paulo Zanoni303b81e2012-10-31 18:12:23 -02003081 if (HAS_PCH_CPT(dev)) {
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003082 u32 sel;
Jesse Barnes4b645f12011-10-12 09:51:31 -07003083
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003084 temp = I915_READ(PCH_DPLL_SEL);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003085 switch (pipe) {
3086 default:
3087 case 0:
3088 temp |= TRANSA_DPLL_ENABLE;
3089 sel = TRANSA_DPLLB_SEL;
3090 break;
3091 case 1:
3092 temp |= TRANSB_DPLL_ENABLE;
3093 sel = TRANSB_DPLLB_SEL;
3094 break;
3095 case 2:
3096 temp |= TRANSC_DPLL_ENABLE;
3097 sel = TRANSC_DPLLB_SEL;
3098 break;
Jesse Barnesd64311a2011-10-12 15:01:33 -07003099 }
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003100 if (intel_crtc->pch_pll->pll_reg == _PCH_DPLL_B)
3101 temp |= sel;
3102 else
3103 temp &= ~sel;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003104 I915_WRITE(PCH_DPLL_SEL, temp);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003105 }
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003106
Jesse Barnesd9b6cb52011-01-04 15:09:35 -08003107 /* set transcoder timing, panel must allow it */
3108 assert_panel_unlocked(dev_priv, pipe);
Chris Wilson5eddb702010-09-11 13:48:45 +01003109 I915_WRITE(TRANS_HTOTAL(pipe), I915_READ(HTOTAL(pipe)));
3110 I915_WRITE(TRANS_HBLANK(pipe), I915_READ(HBLANK(pipe)));
3111 I915_WRITE(TRANS_HSYNC(pipe), I915_READ(HSYNC(pipe)));
3112
3113 I915_WRITE(TRANS_VTOTAL(pipe), I915_READ(VTOTAL(pipe)));
3114 I915_WRITE(TRANS_VBLANK(pipe), I915_READ(VBLANK(pipe)));
3115 I915_WRITE(TRANS_VSYNC(pipe), I915_READ(VSYNC(pipe)));
Daniel Vetter0529a0d2012-01-28 14:49:24 +01003116 I915_WRITE(TRANS_VSYNCSHIFT(pipe), I915_READ(VSYNCSHIFT(pipe)));
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003117
Paulo Zanoni303b81e2012-10-31 18:12:23 -02003118 intel_fdi_normal_train(crtc);
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08003119
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003120 /* For PCH DP, enable TRANS_DP_CTL */
3121 if (HAS_PCH_CPT(dev) &&
Keith Packard417e8222011-11-01 19:54:11 -07003122 (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT) ||
3123 intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP))) {
Jesse Barnes9325c9f2011-06-24 12:19:21 -07003124 u32 bpc = (I915_READ(PIPECONF(pipe)) & PIPE_BPC_MASK) >> 5;
Chris Wilson5eddb702010-09-11 13:48:45 +01003125 reg = TRANS_DP_CTL(pipe);
3126 temp = I915_READ(reg);
3127 temp &= ~(TRANS_DP_PORT_SEL_MASK |
Eric Anholt220cad32010-11-18 09:32:58 +08003128 TRANS_DP_SYNC_MASK |
3129 TRANS_DP_BPC_MASK);
Chris Wilson5eddb702010-09-11 13:48:45 +01003130 temp |= (TRANS_DP_OUTPUT_ENABLE |
3131 TRANS_DP_ENH_FRAMING);
Jesse Barnes9325c9f2011-06-24 12:19:21 -07003132 temp |= bpc << 9; /* same format but at 11:9 */
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003133
3134 if (crtc->mode.flags & DRM_MODE_FLAG_PHSYNC)
Chris Wilson5eddb702010-09-11 13:48:45 +01003135 temp |= TRANS_DP_HSYNC_ACTIVE_HIGH;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003136 if (crtc->mode.flags & DRM_MODE_FLAG_PVSYNC)
Chris Wilson5eddb702010-09-11 13:48:45 +01003137 temp |= TRANS_DP_VSYNC_ACTIVE_HIGH;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003138
3139 switch (intel_trans_dp_port_sel(crtc)) {
3140 case PCH_DP_B:
Chris Wilson5eddb702010-09-11 13:48:45 +01003141 temp |= TRANS_DP_PORT_SEL_B;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003142 break;
3143 case PCH_DP_C:
Chris Wilson5eddb702010-09-11 13:48:45 +01003144 temp |= TRANS_DP_PORT_SEL_C;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003145 break;
3146 case PCH_DP_D:
Chris Wilson5eddb702010-09-11 13:48:45 +01003147 temp |= TRANS_DP_PORT_SEL_D;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003148 break;
3149 default:
Daniel Vettere95d41e2012-10-26 10:58:16 +02003150 BUG();
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003151 }
3152
Chris Wilson5eddb702010-09-11 13:48:45 +01003153 I915_WRITE(reg, temp);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003154 }
3155
Paulo Zanonib8a4f402012-10-31 18:12:42 -02003156 ironlake_enable_pch_transcoder(dev_priv, pipe);
Jesse Barnesf67a5592011-01-05 10:31:48 -08003157}
3158
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003159static void lpt_pch_enable(struct drm_crtc *crtc)
3160{
3161 struct drm_device *dev = crtc->dev;
3162 struct drm_i915_private *dev_priv = dev->dev_private;
3163 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Paulo Zanonidaed2db2012-10-31 18:12:41 -02003164 enum transcoder cpu_transcoder = intel_crtc->cpu_transcoder;
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003165
Paulo Zanonidaed2db2012-10-31 18:12:41 -02003166 assert_transcoder_disabled(dev_priv, TRANSCODER_A);
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003167
Paulo Zanoni8c52b5e2012-10-31 18:12:24 -02003168 lpt_program_iclkip(crtc);
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003169
Paulo Zanoni0540e482012-10-31 18:12:40 -02003170 /* Set transcoder timing. */
Paulo Zanonidaed2db2012-10-31 18:12:41 -02003171 I915_WRITE(_TRANS_HTOTAL_A, I915_READ(HTOTAL(cpu_transcoder)));
3172 I915_WRITE(_TRANS_HBLANK_A, I915_READ(HBLANK(cpu_transcoder)));
3173 I915_WRITE(_TRANS_HSYNC_A, I915_READ(HSYNC(cpu_transcoder)));
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003174
Paulo Zanonidaed2db2012-10-31 18:12:41 -02003175 I915_WRITE(_TRANS_VTOTAL_A, I915_READ(VTOTAL(cpu_transcoder)));
3176 I915_WRITE(_TRANS_VBLANK_A, I915_READ(VBLANK(cpu_transcoder)));
3177 I915_WRITE(_TRANS_VSYNC_A, I915_READ(VSYNC(cpu_transcoder)));
3178 I915_WRITE(_TRANS_VSYNCSHIFT_A, I915_READ(VSYNCSHIFT(cpu_transcoder)));
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003179
Paulo Zanoni937bb612012-10-31 18:12:47 -02003180 lpt_enable_pch_transcoder(dev_priv, cpu_transcoder);
Jesse Barnesf67a5592011-01-05 10:31:48 -08003181}
3182
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003183static void intel_put_pch_pll(struct intel_crtc *intel_crtc)
3184{
3185 struct intel_pch_pll *pll = intel_crtc->pch_pll;
3186
3187 if (pll == NULL)
3188 return;
3189
3190 if (pll->refcount == 0) {
3191 WARN(1, "bad PCH PLL refcount\n");
3192 return;
3193 }
3194
3195 --pll->refcount;
3196 intel_crtc->pch_pll = NULL;
3197}
3198
3199static struct intel_pch_pll *intel_get_pch_pll(struct intel_crtc *intel_crtc, u32 dpll, u32 fp)
3200{
3201 struct drm_i915_private *dev_priv = intel_crtc->base.dev->dev_private;
3202 struct intel_pch_pll *pll;
3203 int i;
3204
3205 pll = intel_crtc->pch_pll;
3206 if (pll) {
3207 DRM_DEBUG_KMS("CRTC:%d reusing existing PCH PLL %x\n",
3208 intel_crtc->base.base.id, pll->pll_reg);
3209 goto prepare;
3210 }
3211
Daniel Vetter98b6bd92012-05-20 20:00:25 +02003212 if (HAS_PCH_IBX(dev_priv->dev)) {
3213 /* Ironlake PCH has a fixed PLL->PCH pipe mapping. */
3214 i = intel_crtc->pipe;
3215 pll = &dev_priv->pch_plls[i];
3216
3217 DRM_DEBUG_KMS("CRTC:%d using pre-allocated PCH PLL %x\n",
3218 intel_crtc->base.base.id, pll->pll_reg);
3219
3220 goto found;
3221 }
3222
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003223 for (i = 0; i < dev_priv->num_pch_pll; i++) {
3224 pll = &dev_priv->pch_plls[i];
3225
3226 /* Only want to check enabled timings first */
3227 if (pll->refcount == 0)
3228 continue;
3229
3230 if (dpll == (I915_READ(pll->pll_reg) & 0x7fffffff) &&
3231 fp == I915_READ(pll->fp0_reg)) {
3232 DRM_DEBUG_KMS("CRTC:%d sharing existing PCH PLL %x (refcount %d, ative %d)\n",
3233 intel_crtc->base.base.id,
3234 pll->pll_reg, pll->refcount, pll->active);
3235
3236 goto found;
3237 }
3238 }
3239
3240 /* Ok no matching timings, maybe there's a free one? */
3241 for (i = 0; i < dev_priv->num_pch_pll; i++) {
3242 pll = &dev_priv->pch_plls[i];
3243 if (pll->refcount == 0) {
3244 DRM_DEBUG_KMS("CRTC:%d allocated PCH PLL %x\n",
3245 intel_crtc->base.base.id, pll->pll_reg);
3246 goto found;
3247 }
3248 }
3249
3250 return NULL;
3251
3252found:
3253 intel_crtc->pch_pll = pll;
3254 pll->refcount++;
3255 DRM_DEBUG_DRIVER("using pll %d for pipe %d\n", i, intel_crtc->pipe);
3256prepare: /* separate function? */
3257 DRM_DEBUG_DRIVER("switching PLL %x off\n", pll->pll_reg);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003258
Chris Wilsone04c7352012-05-02 20:43:56 +01003259 /* Wait for the clocks to stabilize before rewriting the regs */
3260 I915_WRITE(pll->pll_reg, dpll & ~DPLL_VCO_ENABLE);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003261 POSTING_READ(pll->pll_reg);
3262 udelay(150);
Chris Wilsone04c7352012-05-02 20:43:56 +01003263
3264 I915_WRITE(pll->fp0_reg, fp);
3265 I915_WRITE(pll->pll_reg, dpll & ~DPLL_VCO_ENABLE);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003266 pll->on = false;
3267 return pll;
3268}
3269
Jesse Barnesd4270e52011-10-11 10:43:02 -07003270void intel_cpt_verify_modeset(struct drm_device *dev, int pipe)
3271{
3272 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter23670b322012-11-01 09:15:30 +01003273 int dslreg = PIPEDSL(pipe);
Jesse Barnesd4270e52011-10-11 10:43:02 -07003274 u32 temp;
3275
3276 temp = I915_READ(dslreg);
3277 udelay(500);
3278 if (wait_for(I915_READ(dslreg) != temp, 5)) {
Jesse Barnesd4270e52011-10-11 10:43:02 -07003279 if (wait_for(I915_READ(dslreg) != temp, 5))
3280 DRM_ERROR("mode set failed: pipe %d stuck\n", pipe);
3281 }
3282}
3283
Jesse Barnesf67a5592011-01-05 10:31:48 -08003284static void ironlake_crtc_enable(struct drm_crtc *crtc)
3285{
3286 struct drm_device *dev = crtc->dev;
3287 struct drm_i915_private *dev_priv = dev->dev_private;
3288 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02003289 struct intel_encoder *encoder;
Jesse Barnesf67a5592011-01-05 10:31:48 -08003290 int pipe = intel_crtc->pipe;
3291 int plane = intel_crtc->plane;
3292 u32 temp;
3293 bool is_pch_port;
3294
Daniel Vetter08a48462012-07-02 11:43:47 +02003295 WARN_ON(!crtc->enabled);
3296
Jesse Barnesf67a5592011-01-05 10:31:48 -08003297 if (intel_crtc->active)
3298 return;
3299
3300 intel_crtc->active = true;
3301 intel_update_watermarks(dev);
3302
3303 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
3304 temp = I915_READ(PCH_LVDS);
3305 if ((temp & LVDS_PORT_EN) == 0)
3306 I915_WRITE(PCH_LVDS, temp | LVDS_PORT_EN);
3307 }
3308
Paulo Zanonifc316cb2012-10-25 10:37:43 -02003309 is_pch_port = ironlake_crtc_driving_pch(crtc);
Jesse Barnesf67a5592011-01-05 10:31:48 -08003310
Daniel Vetter46b6f812012-09-06 22:08:33 +02003311 if (is_pch_port) {
Daniel Vetterfff367c2012-10-27 15:50:28 +02003312 /* Note: FDI PLL enabling _must_ be done before we enable the
3313 * cpu pipes, hence this is separate from all the other fdi/pch
3314 * enabling. */
Daniel Vetter88cefb62012-08-12 19:27:14 +02003315 ironlake_fdi_pll_enable(intel_crtc);
Daniel Vetter46b6f812012-09-06 22:08:33 +02003316 } else {
3317 assert_fdi_tx_disabled(dev_priv, pipe);
3318 assert_fdi_rx_disabled(dev_priv, pipe);
3319 }
Jesse Barnesf67a5592011-01-05 10:31:48 -08003320
Daniel Vetterbf49ec82012-09-06 22:15:40 +02003321 for_each_encoder_on_crtc(dev, crtc, encoder)
3322 if (encoder->pre_enable)
3323 encoder->pre_enable(encoder);
Jesse Barnesf67a5592011-01-05 10:31:48 -08003324
3325 /* Enable panel fitting for LVDS */
3326 if (dev_priv->pch_pf_size &&
Jani Nikula547dc042012-11-02 11:24:03 +02003327 (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) ||
3328 intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP))) {
Jesse Barnesf67a5592011-01-05 10:31:48 -08003329 /* Force use of hard-coded filter coefficients
3330 * as some pre-programmed values are broken,
3331 * e.g. x201.
3332 */
Paulo Zanoni13888d72012-11-20 13:27:41 -02003333 if (IS_IVYBRIDGE(dev))
3334 I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3 |
3335 PF_PIPE_SEL_IVB(pipe));
3336 else
3337 I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08003338 I915_WRITE(PF_WIN_POS(pipe), dev_priv->pch_pf_pos);
3339 I915_WRITE(PF_WIN_SZ(pipe), dev_priv->pch_pf_size);
Jesse Barnesf67a5592011-01-05 10:31:48 -08003340 }
3341
Jesse Barnes9c54c0d2011-06-15 23:32:33 +02003342 /*
3343 * On ILK+ LUT must be loaded before the pipe is running but with
3344 * clocks enabled
3345 */
3346 intel_crtc_load_lut(crtc);
3347
Jesse Barnesf67a5592011-01-05 10:31:48 -08003348 intel_enable_pipe(dev_priv, pipe, is_pch_port);
3349 intel_enable_plane(dev_priv, plane, pipe);
3350
3351 if (is_pch_port)
3352 ironlake_pch_enable(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003353
Ben Widawskyd1ebd8162011-04-25 20:11:50 +01003354 mutex_lock(&dev->struct_mutex);
Chris Wilsonbed4a672010-09-11 10:47:47 +01003355 intel_update_fbc(dev);
Ben Widawskyd1ebd8162011-04-25 20:11:50 +01003356 mutex_unlock(&dev->struct_mutex);
3357
Chris Wilson6b383a72010-09-13 13:54:26 +01003358 intel_crtc_update_cursor(crtc, true);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02003359
Daniel Vetterfa5c73b2012-07-01 23:24:36 +02003360 for_each_encoder_on_crtc(dev, crtc, encoder)
3361 encoder->enable(encoder);
Daniel Vetter61b77dd2012-07-02 00:16:19 +02003362
3363 if (HAS_PCH_CPT(dev))
3364 intel_cpt_verify_modeset(dev, intel_crtc->pipe);
Daniel Vetter6ce94102012-10-04 19:20:03 +02003365
3366 /*
3367 * There seems to be a race in PCH platform hw (at least on some
3368 * outputs) where an enabled pipe still completes any pageflip right
3369 * away (as if the pipe is off) instead of waiting for vblank. As soon
3370 * as the first vblank happend, everything works as expected. Hence just
3371 * wait for one vblank before returning to avoid strange things
3372 * happening.
3373 */
3374 intel_wait_for_vblank(dev, intel_crtc->pipe);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003375}
3376
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003377static void haswell_crtc_enable(struct drm_crtc *crtc)
3378{
3379 struct drm_device *dev = crtc->dev;
3380 struct drm_i915_private *dev_priv = dev->dev_private;
3381 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3382 struct intel_encoder *encoder;
3383 int pipe = intel_crtc->pipe;
3384 int plane = intel_crtc->plane;
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003385 bool is_pch_port;
3386
3387 WARN_ON(!crtc->enabled);
3388
3389 if (intel_crtc->active)
3390 return;
3391
3392 intel_crtc->active = true;
3393 intel_update_watermarks(dev);
3394
Paulo Zanonifc316cb2012-10-25 10:37:43 -02003395 is_pch_port = haswell_crtc_driving_pch(crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003396
Paulo Zanoni83616632012-10-23 18:29:54 -02003397 if (is_pch_port)
Paulo Zanoni04945642012-11-01 21:00:59 -02003398 dev_priv->display.fdi_link_train(crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003399
3400 for_each_encoder_on_crtc(dev, crtc, encoder)
3401 if (encoder->pre_enable)
3402 encoder->pre_enable(encoder);
3403
Paulo Zanoni1f544382012-10-24 11:32:00 -02003404 intel_ddi_enable_pipe_clock(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003405
Paulo Zanoni1f544382012-10-24 11:32:00 -02003406 /* Enable panel fitting for eDP */
Jani Nikula547dc042012-11-02 11:24:03 +02003407 if (dev_priv->pch_pf_size &&
3408 intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP)) {
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003409 /* Force use of hard-coded filter coefficients
3410 * as some pre-programmed values are broken,
3411 * e.g. x201.
3412 */
Paulo Zanoni54075a72012-11-20 13:27:42 -02003413 I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3 |
3414 PF_PIPE_SEL_IVB(pipe));
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003415 I915_WRITE(PF_WIN_POS(pipe), dev_priv->pch_pf_pos);
3416 I915_WRITE(PF_WIN_SZ(pipe), dev_priv->pch_pf_size);
3417 }
3418
3419 /*
3420 * On ILK+ LUT must be loaded before the pipe is running but with
3421 * clocks enabled
3422 */
3423 intel_crtc_load_lut(crtc);
3424
Paulo Zanoni1f544382012-10-24 11:32:00 -02003425 intel_ddi_set_pipe_settings(crtc);
3426 intel_ddi_enable_pipe_func(crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003427
3428 intel_enable_pipe(dev_priv, pipe, is_pch_port);
3429 intel_enable_plane(dev_priv, plane, pipe);
3430
3431 if (is_pch_port)
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003432 lpt_pch_enable(crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003433
3434 mutex_lock(&dev->struct_mutex);
3435 intel_update_fbc(dev);
3436 mutex_unlock(&dev->struct_mutex);
3437
3438 intel_crtc_update_cursor(crtc, true);
3439
3440 for_each_encoder_on_crtc(dev, crtc, encoder)
3441 encoder->enable(encoder);
3442
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003443 /*
3444 * There seems to be a race in PCH platform hw (at least on some
3445 * outputs) where an enabled pipe still completes any pageflip right
3446 * away (as if the pipe is off) instead of waiting for vblank. As soon
3447 * as the first vblank happend, everything works as expected. Hence just
3448 * wait for one vblank before returning to avoid strange things
3449 * happening.
3450 */
3451 intel_wait_for_vblank(dev, intel_crtc->pipe);
3452}
3453
Jesse Barnes6be4a602010-09-10 10:26:01 -07003454static void ironlake_crtc_disable(struct drm_crtc *crtc)
3455{
3456 struct drm_device *dev = crtc->dev;
3457 struct drm_i915_private *dev_priv = dev->dev_private;
3458 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02003459 struct intel_encoder *encoder;
Jesse Barnes6be4a602010-09-10 10:26:01 -07003460 int pipe = intel_crtc->pipe;
3461 int plane = intel_crtc->plane;
Chris Wilson5eddb702010-09-11 13:48:45 +01003462 u32 reg, temp;
Jesse Barnes6be4a602010-09-10 10:26:01 -07003463
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02003464
Chris Wilsonf7abfe82010-09-13 14:19:16 +01003465 if (!intel_crtc->active)
3466 return;
3467
Daniel Vetterea9d7582012-07-10 10:42:52 +02003468 for_each_encoder_on_crtc(dev, crtc, encoder)
3469 encoder->disable(encoder);
3470
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01003471 intel_crtc_wait_for_pending_flips(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003472 drm_vblank_off(dev, pipe);
Chris Wilson6b383a72010-09-13 13:54:26 +01003473 intel_crtc_update_cursor(crtc, false);
Chris Wilson5eddb702010-09-11 13:48:45 +01003474
Jesse Barnesb24e7172011-01-04 15:09:30 -08003475 intel_disable_plane(dev_priv, plane, pipe);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003476
Chris Wilson973d04f2011-07-08 12:22:37 +01003477 if (dev_priv->cfb_plane == plane)
3478 intel_disable_fbc(dev);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003479
Jesse Barnesb24e7172011-01-04 15:09:30 -08003480 intel_disable_pipe(dev_priv, pipe);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003481
Jesse Barnes6be4a602010-09-10 10:26:01 -07003482 /* Disable PF */
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08003483 I915_WRITE(PF_CTL(pipe), 0);
3484 I915_WRITE(PF_WIN_SZ(pipe), 0);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003485
Daniel Vetterbf49ec82012-09-06 22:15:40 +02003486 for_each_encoder_on_crtc(dev, crtc, encoder)
3487 if (encoder->post_disable)
3488 encoder->post_disable(encoder);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003489
Chris Wilson5eddb702010-09-11 13:48:45 +01003490 ironlake_fdi_disable(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003491
Paulo Zanonib8a4f402012-10-31 18:12:42 -02003492 ironlake_disable_pch_transcoder(dev_priv, pipe);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003493
3494 if (HAS_PCH_CPT(dev)) {
3495 /* disable TRANS_DP_CTL */
Chris Wilson5eddb702010-09-11 13:48:45 +01003496 reg = TRANS_DP_CTL(pipe);
3497 temp = I915_READ(reg);
3498 temp &= ~(TRANS_DP_OUTPUT_ENABLE | TRANS_DP_PORT_SEL_MASK);
Eric Anholtcb3543c2011-02-02 12:08:07 -08003499 temp |= TRANS_DP_PORT_SEL_NONE;
Chris Wilson5eddb702010-09-11 13:48:45 +01003500 I915_WRITE(reg, temp);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003501
3502 /* disable DPLL_SEL */
3503 temp = I915_READ(PCH_DPLL_SEL);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08003504 switch (pipe) {
3505 case 0:
Jesse Barnesd64311a2011-10-12 15:01:33 -07003506 temp &= ~(TRANSA_DPLL_ENABLE | TRANSA_DPLLB_SEL);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08003507 break;
3508 case 1:
Jesse Barnes6be4a602010-09-10 10:26:01 -07003509 temp &= ~(TRANSB_DPLL_ENABLE | TRANSB_DPLLB_SEL);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08003510 break;
3511 case 2:
Jesse Barnes4b645f12011-10-12 09:51:31 -07003512 /* C shares PLL A or B */
Jesse Barnesd64311a2011-10-12 15:01:33 -07003513 temp &= ~(TRANSC_DPLL_ENABLE | TRANSC_DPLLB_SEL);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08003514 break;
3515 default:
3516 BUG(); /* wtf */
3517 }
Jesse Barnes6be4a602010-09-10 10:26:01 -07003518 I915_WRITE(PCH_DPLL_SEL, temp);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003519 }
3520
3521 /* disable PCH DPLL */
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003522 intel_disable_pch_pll(intel_crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003523
Daniel Vetter88cefb62012-08-12 19:27:14 +02003524 ironlake_fdi_pll_disable(intel_crtc);
Chris Wilson6b383a72010-09-13 13:54:26 +01003525
Chris Wilsonf7abfe82010-09-13 14:19:16 +01003526 intel_crtc->active = false;
Chris Wilson6b383a72010-09-13 13:54:26 +01003527 intel_update_watermarks(dev);
Ben Widawskyd1ebd8162011-04-25 20:11:50 +01003528
3529 mutex_lock(&dev->struct_mutex);
Chris Wilson6b383a72010-09-13 13:54:26 +01003530 intel_update_fbc(dev);
Ben Widawskyd1ebd8162011-04-25 20:11:50 +01003531 mutex_unlock(&dev->struct_mutex);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003532}
3533
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003534static void haswell_crtc_disable(struct drm_crtc *crtc)
3535{
3536 struct drm_device *dev = crtc->dev;
3537 struct drm_i915_private *dev_priv = dev->dev_private;
3538 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3539 struct intel_encoder *encoder;
3540 int pipe = intel_crtc->pipe;
3541 int plane = intel_crtc->plane;
Paulo Zanoniad80a812012-10-24 16:06:19 -02003542 enum transcoder cpu_transcoder = intel_crtc->cpu_transcoder;
Paulo Zanoni83616632012-10-23 18:29:54 -02003543 bool is_pch_port;
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003544
3545 if (!intel_crtc->active)
3546 return;
3547
Paulo Zanoni83616632012-10-23 18:29:54 -02003548 is_pch_port = haswell_crtc_driving_pch(crtc);
3549
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003550 for_each_encoder_on_crtc(dev, crtc, encoder)
3551 encoder->disable(encoder);
3552
3553 intel_crtc_wait_for_pending_flips(crtc);
3554 drm_vblank_off(dev, pipe);
3555 intel_crtc_update_cursor(crtc, false);
3556
3557 intel_disable_plane(dev_priv, plane, pipe);
3558
3559 if (dev_priv->cfb_plane == plane)
3560 intel_disable_fbc(dev);
3561
3562 intel_disable_pipe(dev_priv, pipe);
3563
Paulo Zanoniad80a812012-10-24 16:06:19 -02003564 intel_ddi_disable_transcoder_func(dev_priv, cpu_transcoder);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003565
3566 /* Disable PF */
3567 I915_WRITE(PF_CTL(pipe), 0);
3568 I915_WRITE(PF_WIN_SZ(pipe), 0);
3569
Paulo Zanoni1f544382012-10-24 11:32:00 -02003570 intel_ddi_disable_pipe_clock(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003571
3572 for_each_encoder_on_crtc(dev, crtc, encoder)
3573 if (encoder->post_disable)
3574 encoder->post_disable(encoder);
3575
Paulo Zanoni83616632012-10-23 18:29:54 -02003576 if (is_pch_port) {
Paulo Zanoniab4d9662012-10-31 18:12:55 -02003577 lpt_disable_pch_transcoder(dev_priv);
Paulo Zanoni1ad960f2012-11-01 21:05:05 -02003578 intel_ddi_fdi_disable(crtc);
Paulo Zanoni83616632012-10-23 18:29:54 -02003579 }
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003580
3581 intel_crtc->active = false;
3582 intel_update_watermarks(dev);
3583
3584 mutex_lock(&dev->struct_mutex);
3585 intel_update_fbc(dev);
3586 mutex_unlock(&dev->struct_mutex);
3587}
3588
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003589static void ironlake_crtc_off(struct drm_crtc *crtc)
3590{
3591 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3592 intel_put_pch_pll(intel_crtc);
3593}
3594
Paulo Zanoni6441ab52012-10-05 12:05:58 -03003595static void haswell_crtc_off(struct drm_crtc *crtc)
3596{
Paulo Zanonia5c961d2012-10-24 15:59:34 -02003597 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3598
3599 /* Stop saying we're using TRANSCODER_EDP because some other CRTC might
3600 * start using it. */
3601 intel_crtc->cpu_transcoder = intel_crtc->pipe;
3602
Paulo Zanoni6441ab52012-10-05 12:05:58 -03003603 intel_ddi_put_crtc_pll(crtc);
3604}
3605
Daniel Vetter02e792f2009-09-15 22:57:34 +02003606static void intel_crtc_dpms_overlay(struct intel_crtc *intel_crtc, bool enable)
3607{
Daniel Vetter02e792f2009-09-15 22:57:34 +02003608 if (!enable && intel_crtc->overlay) {
Chris Wilson23f09ce2010-08-12 13:53:37 +01003609 struct drm_device *dev = intel_crtc->base.dev;
Chris Wilsonce453d82011-02-21 14:43:56 +00003610 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter03f77ea2009-09-15 22:57:37 +02003611
Chris Wilson23f09ce2010-08-12 13:53:37 +01003612 mutex_lock(&dev->struct_mutex);
Chris Wilsonce453d82011-02-21 14:43:56 +00003613 dev_priv->mm.interruptible = false;
3614 (void) intel_overlay_switch_off(intel_crtc->overlay);
3615 dev_priv->mm.interruptible = true;
Chris Wilson23f09ce2010-08-12 13:53:37 +01003616 mutex_unlock(&dev->struct_mutex);
Daniel Vetter02e792f2009-09-15 22:57:34 +02003617 }
Daniel Vetter02e792f2009-09-15 22:57:34 +02003618
Chris Wilson5dcdbcb2010-08-12 13:50:28 +01003619 /* Let userspace switch the overlay on again. In most cases userspace
3620 * has to recompute where to put it anyway.
3621 */
Daniel Vetter02e792f2009-09-15 22:57:34 +02003622}
3623
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003624static void i9xx_crtc_enable(struct drm_crtc *crtc)
Zhenyu Wang2c072452009-06-05 15:38:42 +08003625{
3626 struct drm_device *dev = crtc->dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08003627 struct drm_i915_private *dev_priv = dev->dev_private;
3628 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02003629 struct intel_encoder *encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08003630 int pipe = intel_crtc->pipe;
Jesse Barnes80824002009-09-10 15:28:06 -07003631 int plane = intel_crtc->plane;
Jesse Barnes79e53942008-11-07 14:24:08 -08003632
Daniel Vetter08a48462012-07-02 11:43:47 +02003633 WARN_ON(!crtc->enabled);
3634
Chris Wilsonf7abfe82010-09-13 14:19:16 +01003635 if (intel_crtc->active)
3636 return;
3637
3638 intel_crtc->active = true;
Chris Wilson6b383a72010-09-13 13:54:26 +01003639 intel_update_watermarks(dev);
3640
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08003641 intel_enable_pll(dev_priv, pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08003642 intel_enable_pipe(dev_priv, pipe, false);
Jesse Barnesb24e7172011-01-04 15:09:30 -08003643 intel_enable_plane(dev_priv, plane, pipe);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003644
3645 intel_crtc_load_lut(crtc);
Chris Wilsonbed4a672010-09-11 10:47:47 +01003646 intel_update_fbc(dev);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003647
3648 /* Give the overlay scaler a chance to enable if it's on this pipe */
3649 intel_crtc_dpms_overlay(intel_crtc, true);
Chris Wilson6b383a72010-09-13 13:54:26 +01003650 intel_crtc_update_cursor(crtc, true);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02003651
Daniel Vetterfa5c73b2012-07-01 23:24:36 +02003652 for_each_encoder_on_crtc(dev, crtc, encoder)
3653 encoder->enable(encoder);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003654}
3655
3656static void i9xx_crtc_disable(struct drm_crtc *crtc)
3657{
3658 struct drm_device *dev = crtc->dev;
3659 struct drm_i915_private *dev_priv = dev->dev_private;
3660 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02003661 struct intel_encoder *encoder;
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003662 int pipe = intel_crtc->pipe;
3663 int plane = intel_crtc->plane;
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003664
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02003665
Chris Wilsonf7abfe82010-09-13 14:19:16 +01003666 if (!intel_crtc->active)
3667 return;
3668
Daniel Vetterea9d7582012-07-10 10:42:52 +02003669 for_each_encoder_on_crtc(dev, crtc, encoder)
3670 encoder->disable(encoder);
3671
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003672 /* Give the overlay scaler a chance to disable if it's on this pipe */
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01003673 intel_crtc_wait_for_pending_flips(crtc);
3674 drm_vblank_off(dev, pipe);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003675 intel_crtc_dpms_overlay(intel_crtc, false);
Chris Wilson6b383a72010-09-13 13:54:26 +01003676 intel_crtc_update_cursor(crtc, false);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003677
Chris Wilson973d04f2011-07-08 12:22:37 +01003678 if (dev_priv->cfb_plane == plane)
3679 intel_disable_fbc(dev);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003680
Jesse Barnesb24e7172011-01-04 15:09:30 -08003681 intel_disable_plane(dev_priv, plane, pipe);
Jesse Barnesb24e7172011-01-04 15:09:30 -08003682 intel_disable_pipe(dev_priv, pipe);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08003683 intel_disable_pll(dev_priv, pipe);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003684
Chris Wilsonf7abfe82010-09-13 14:19:16 +01003685 intel_crtc->active = false;
Chris Wilson6b383a72010-09-13 13:54:26 +01003686 intel_update_fbc(dev);
3687 intel_update_watermarks(dev);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003688}
3689
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003690static void i9xx_crtc_off(struct drm_crtc *crtc)
3691{
3692}
3693
Daniel Vetter976f8a22012-07-08 22:34:21 +02003694static void intel_crtc_update_sarea(struct drm_crtc *crtc,
3695 bool enabled)
Zhenyu Wang2c072452009-06-05 15:38:42 +08003696{
3697 struct drm_device *dev = crtc->dev;
3698 struct drm_i915_master_private *master_priv;
3699 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3700 int pipe = intel_crtc->pipe;
Jesse Barnes79e53942008-11-07 14:24:08 -08003701
3702 if (!dev->primary->master)
3703 return;
3704
3705 master_priv = dev->primary->master->driver_priv;
3706 if (!master_priv->sarea_priv)
3707 return;
3708
Jesse Barnes79e53942008-11-07 14:24:08 -08003709 switch (pipe) {
3710 case 0:
3711 master_priv->sarea_priv->pipeA_w = enabled ? crtc->mode.hdisplay : 0;
3712 master_priv->sarea_priv->pipeA_h = enabled ? crtc->mode.vdisplay : 0;
3713 break;
3714 case 1:
3715 master_priv->sarea_priv->pipeB_w = enabled ? crtc->mode.hdisplay : 0;
3716 master_priv->sarea_priv->pipeB_h = enabled ? crtc->mode.vdisplay : 0;
3717 break;
3718 default:
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08003719 DRM_ERROR("Can't update pipe %c in SAREA\n", pipe_name(pipe));
Jesse Barnes79e53942008-11-07 14:24:08 -08003720 break;
3721 }
Jesse Barnes79e53942008-11-07 14:24:08 -08003722}
3723
Daniel Vetter976f8a22012-07-08 22:34:21 +02003724/**
3725 * Sets the power management mode of the pipe and plane.
3726 */
3727void intel_crtc_update_dpms(struct drm_crtc *crtc)
Chris Wilsoncdd59982010-09-08 16:30:16 +01003728{
Chris Wilsoncdd59982010-09-08 16:30:16 +01003729 struct drm_device *dev = crtc->dev;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003730 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter976f8a22012-07-08 22:34:21 +02003731 struct intel_encoder *intel_encoder;
3732 bool enable = false;
Chris Wilsoncdd59982010-09-08 16:30:16 +01003733
Daniel Vetter976f8a22012-07-08 22:34:21 +02003734 for_each_encoder_on_crtc(dev, crtc, intel_encoder)
3735 enable |= intel_encoder->connectors_active;
3736
3737 if (enable)
3738 dev_priv->display.crtc_enable(crtc);
3739 else
3740 dev_priv->display.crtc_disable(crtc);
3741
3742 intel_crtc_update_sarea(crtc, enable);
3743}
3744
3745static void intel_crtc_noop(struct drm_crtc *crtc)
3746{
3747}
3748
3749static void intel_crtc_disable(struct drm_crtc *crtc)
3750{
3751 struct drm_device *dev = crtc->dev;
3752 struct drm_connector *connector;
3753 struct drm_i915_private *dev_priv = dev->dev_private;
3754
3755 /* crtc should still be enabled when we disable it. */
3756 WARN_ON(!crtc->enabled);
3757
3758 dev_priv->display.crtc_disable(crtc);
3759 intel_crtc_update_sarea(crtc, false);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003760 dev_priv->display.off(crtc);
3761
Chris Wilson931872f2012-01-16 23:01:13 +00003762 assert_plane_disabled(dev->dev_private, to_intel_crtc(crtc)->plane);
3763 assert_pipe_disabled(dev->dev_private, to_intel_crtc(crtc)->pipe);
Chris Wilsoncdd59982010-09-08 16:30:16 +01003764
3765 if (crtc->fb) {
3766 mutex_lock(&dev->struct_mutex);
Chris Wilson1690e1e2011-12-14 13:57:08 +01003767 intel_unpin_fb_obj(to_intel_framebuffer(crtc->fb)->obj);
Chris Wilsoncdd59982010-09-08 16:30:16 +01003768 mutex_unlock(&dev->struct_mutex);
Daniel Vetter976f8a22012-07-08 22:34:21 +02003769 crtc->fb = NULL;
3770 }
3771
3772 /* Update computed state. */
3773 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
3774 if (!connector->encoder || !connector->encoder->crtc)
3775 continue;
3776
3777 if (connector->encoder->crtc != crtc)
3778 continue;
3779
3780 connector->dpms = DRM_MODE_DPMS_OFF;
3781 to_intel_encoder(connector->encoder)->connectors_active = false;
Chris Wilsoncdd59982010-09-08 16:30:16 +01003782 }
3783}
3784
Daniel Vettera261b242012-07-26 19:21:47 +02003785void intel_modeset_disable(struct drm_device *dev)
Jesse Barnes79e53942008-11-07 14:24:08 -08003786{
Daniel Vettera261b242012-07-26 19:21:47 +02003787 struct drm_crtc *crtc;
3788
3789 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
3790 if (crtc->enabled)
3791 intel_crtc_disable(crtc);
3792 }
Jesse Barnes79e53942008-11-07 14:24:08 -08003793}
3794
Daniel Vetter1f703852012-07-11 16:51:39 +02003795void intel_encoder_noop(struct drm_encoder *encoder)
Jesse Barnes79e53942008-11-07 14:24:08 -08003796{
Jesse Barnes79e53942008-11-07 14:24:08 -08003797}
3798
Chris Wilsonea5b2132010-08-04 13:50:23 +01003799void intel_encoder_destroy(struct drm_encoder *encoder)
3800{
Chris Wilson4ef69c72010-09-09 15:14:28 +01003801 struct intel_encoder *intel_encoder = to_intel_encoder(encoder);
Chris Wilsonea5b2132010-08-04 13:50:23 +01003802
Chris Wilsonea5b2132010-08-04 13:50:23 +01003803 drm_encoder_cleanup(encoder);
3804 kfree(intel_encoder);
3805}
3806
Daniel Vetter5ab432e2012-06-30 08:59:56 +02003807/* Simple dpms helper for encodres with just one connector, no cloning and only
3808 * one kind of off state. It clamps all !ON modes to fully OFF and changes the
3809 * state of the entire output pipe. */
3810void intel_encoder_dpms(struct intel_encoder *encoder, int mode)
3811{
3812 if (mode == DRM_MODE_DPMS_ON) {
3813 encoder->connectors_active = true;
3814
Daniel Vetterb2cabb02012-07-01 22:42:24 +02003815 intel_crtc_update_dpms(encoder->base.crtc);
Daniel Vetter5ab432e2012-06-30 08:59:56 +02003816 } else {
3817 encoder->connectors_active = false;
3818
Daniel Vetterb2cabb02012-07-01 22:42:24 +02003819 intel_crtc_update_dpms(encoder->base.crtc);
Daniel Vetter5ab432e2012-06-30 08:59:56 +02003820 }
3821}
3822
Daniel Vetter0a91ca22012-07-02 21:54:27 +02003823/* Cross check the actual hw state with our own modeset state tracking (and it's
3824 * internal consistency). */
Daniel Vetterb9805142012-08-31 17:37:33 +02003825static void intel_connector_check_state(struct intel_connector *connector)
Daniel Vetter0a91ca22012-07-02 21:54:27 +02003826{
3827 if (connector->get_hw_state(connector)) {
3828 struct intel_encoder *encoder = connector->encoder;
3829 struct drm_crtc *crtc;
3830 bool encoder_enabled;
3831 enum pipe pipe;
3832
3833 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
3834 connector->base.base.id,
3835 drm_get_connector_name(&connector->base));
3836
3837 WARN(connector->base.dpms == DRM_MODE_DPMS_OFF,
3838 "wrong connector dpms state\n");
3839 WARN(connector->base.encoder != &encoder->base,
3840 "active connector not linked to encoder\n");
3841 WARN(!encoder->connectors_active,
3842 "encoder->connectors_active not set\n");
3843
3844 encoder_enabled = encoder->get_hw_state(encoder, &pipe);
3845 WARN(!encoder_enabled, "encoder not enabled\n");
3846 if (WARN_ON(!encoder->base.crtc))
3847 return;
3848
3849 crtc = encoder->base.crtc;
3850
3851 WARN(!crtc->enabled, "crtc not enabled\n");
3852 WARN(!to_intel_crtc(crtc)->active, "crtc not active\n");
3853 WARN(pipe != to_intel_crtc(crtc)->pipe,
3854 "encoder active on the wrong pipe\n");
3855 }
3856}
3857
Daniel Vetter5ab432e2012-06-30 08:59:56 +02003858/* Even simpler default implementation, if there's really no special case to
3859 * consider. */
3860void intel_connector_dpms(struct drm_connector *connector, int mode)
3861{
3862 struct intel_encoder *encoder = intel_attached_encoder(connector);
3863
3864 /* All the simple cases only support two dpms states. */
3865 if (mode != DRM_MODE_DPMS_ON)
3866 mode = DRM_MODE_DPMS_OFF;
3867
3868 if (mode == connector->dpms)
3869 return;
3870
3871 connector->dpms = mode;
3872
3873 /* Only need to change hw state when actually enabled */
3874 if (encoder->base.crtc)
3875 intel_encoder_dpms(encoder, mode);
3876 else
Daniel Vetter8af6cf82012-07-10 09:50:11 +02003877 WARN_ON(encoder->connectors_active != false);
Daniel Vetter0a91ca22012-07-02 21:54:27 +02003878
Daniel Vetterb9805142012-08-31 17:37:33 +02003879 intel_modeset_check_state(connector->dev);
Daniel Vetter5ab432e2012-06-30 08:59:56 +02003880}
3881
Daniel Vetterf0947c32012-07-02 13:10:34 +02003882/* Simple connector->get_hw_state implementation for encoders that support only
3883 * one connector and no cloning and hence the encoder state determines the state
3884 * of the connector. */
3885bool intel_connector_get_hw_state(struct intel_connector *connector)
3886{
Daniel Vetter24929352012-07-02 20:28:59 +02003887 enum pipe pipe = 0;
Daniel Vetterf0947c32012-07-02 13:10:34 +02003888 struct intel_encoder *encoder = connector->encoder;
3889
3890 return encoder->get_hw_state(encoder, &pipe);
3891}
3892
Jesse Barnes79e53942008-11-07 14:24:08 -08003893static bool intel_crtc_mode_fixup(struct drm_crtc *crtc,
Daniel Vetter35313cd2012-07-20 10:30:45 +02003894 const struct drm_display_mode *mode,
Jesse Barnes79e53942008-11-07 14:24:08 -08003895 struct drm_display_mode *adjusted_mode)
3896{
Zhenyu Wang2c072452009-06-05 15:38:42 +08003897 struct drm_device *dev = crtc->dev;
Chris Wilson89749352010-09-12 18:25:19 +01003898
Eric Anholtbad720f2009-10-22 16:11:14 -07003899 if (HAS_PCH_SPLIT(dev)) {
Zhenyu Wang2c072452009-06-05 15:38:42 +08003900 /* FDI link clock is fixed at 2.7G */
Jesse Barnes2377b742010-07-07 14:06:43 -07003901 if (mode->clock * 3 > IRONLAKE_FDI_FREQ * 4)
3902 return false;
Zhenyu Wang2c072452009-06-05 15:38:42 +08003903 }
Chris Wilson89749352010-09-12 18:25:19 +01003904
Daniel Vetterf9bef082012-04-15 19:53:19 +02003905 /* All interlaced capable intel hw wants timings in frames. Note though
3906 * that intel_lvds_mode_fixup does some funny tricks with the crtc
3907 * timings, so we need to be careful not to clobber these.*/
3908 if (!(adjusted_mode->private_flags & INTEL_MODE_CRTC_TIMINGS_SET))
3909 drm_mode_set_crtcinfo(adjusted_mode, 0);
Chris Wilson89749352010-09-12 18:25:19 +01003910
Chris Wilson44f46b422012-06-21 13:19:59 +03003911 /* WaPruneModeWithIncorrectHsyncOffset: Cantiga+ cannot handle modes
3912 * with a hsync front porch of 0.
3913 */
3914 if ((INTEL_INFO(dev)->gen > 4 || IS_G4X(dev)) &&
3915 adjusted_mode->hsync_start == adjusted_mode->hdisplay)
3916 return false;
3917
Jesse Barnes79e53942008-11-07 14:24:08 -08003918 return true;
3919}
3920
Jesse Barnes25eb05fc2012-03-28 13:39:23 -07003921static int valleyview_get_display_clock_speed(struct drm_device *dev)
3922{
3923 return 400000; /* FIXME */
3924}
3925
Jesse Barnese70236a2009-09-21 10:42:27 -07003926static int i945_get_display_clock_speed(struct drm_device *dev)
Jesse Barnes79e53942008-11-07 14:24:08 -08003927{
Jesse Barnese70236a2009-09-21 10:42:27 -07003928 return 400000;
3929}
Jesse Barnes79e53942008-11-07 14:24:08 -08003930
Jesse Barnese70236a2009-09-21 10:42:27 -07003931static int i915_get_display_clock_speed(struct drm_device *dev)
3932{
3933 return 333000;
3934}
Jesse Barnes79e53942008-11-07 14:24:08 -08003935
Jesse Barnese70236a2009-09-21 10:42:27 -07003936static int i9xx_misc_get_display_clock_speed(struct drm_device *dev)
3937{
3938 return 200000;
3939}
Jesse Barnes79e53942008-11-07 14:24:08 -08003940
Jesse Barnese70236a2009-09-21 10:42:27 -07003941static int i915gm_get_display_clock_speed(struct drm_device *dev)
3942{
3943 u16 gcfgc = 0;
3944
3945 pci_read_config_word(dev->pdev, GCFGC, &gcfgc);
3946
3947 if (gcfgc & GC_LOW_FREQUENCY_ENABLE)
Jesse Barnes79e53942008-11-07 14:24:08 -08003948 return 133000;
Jesse Barnese70236a2009-09-21 10:42:27 -07003949 else {
3950 switch (gcfgc & GC_DISPLAY_CLOCK_MASK) {
3951 case GC_DISPLAY_CLOCK_333_MHZ:
3952 return 333000;
3953 default:
3954 case GC_DISPLAY_CLOCK_190_200_MHZ:
3955 return 190000;
3956 }
3957 }
3958}
Jesse Barnes79e53942008-11-07 14:24:08 -08003959
Jesse Barnese70236a2009-09-21 10:42:27 -07003960static int i865_get_display_clock_speed(struct drm_device *dev)
3961{
3962 return 266000;
3963}
3964
3965static int i855_get_display_clock_speed(struct drm_device *dev)
3966{
3967 u16 hpllcc = 0;
3968 /* Assume that the hardware is in the high speed state. This
3969 * should be the default.
3970 */
3971 switch (hpllcc & GC_CLOCK_CONTROL_MASK) {
3972 case GC_CLOCK_133_200:
3973 case GC_CLOCK_100_200:
3974 return 200000;
3975 case GC_CLOCK_166_250:
3976 return 250000;
3977 case GC_CLOCK_100_133:
3978 return 133000;
3979 }
3980
3981 /* Shouldn't happen */
3982 return 0;
3983}
3984
3985static int i830_get_display_clock_speed(struct drm_device *dev)
3986{
3987 return 133000;
Jesse Barnes79e53942008-11-07 14:24:08 -08003988}
3989
Zhenyu Wang2c072452009-06-05 15:38:42 +08003990struct fdi_m_n {
3991 u32 tu;
3992 u32 gmch_m;
3993 u32 gmch_n;
3994 u32 link_m;
3995 u32 link_n;
3996};
3997
3998static void
3999fdi_reduce_ratio(u32 *num, u32 *den)
4000{
4001 while (*num > 0xffffff || *den > 0xffffff) {
4002 *num >>= 1;
4003 *den >>= 1;
4004 }
4005}
4006
Zhenyu Wang2c072452009-06-05 15:38:42 +08004007static void
Adam Jacksonf2b115e2009-12-03 17:14:42 -05004008ironlake_compute_m_n(int bits_per_pixel, int nlanes, int pixel_clock,
4009 int link_clock, struct fdi_m_n *m_n)
Zhenyu Wang2c072452009-06-05 15:38:42 +08004010{
Zhenyu Wang2c072452009-06-05 15:38:42 +08004011 m_n->tu = 64; /* default size */
4012
Chris Wilson22ed1112010-12-04 01:01:29 +00004013 /* BUG_ON(pixel_clock > INT_MAX / 36); */
4014 m_n->gmch_m = bits_per_pixel * pixel_clock;
4015 m_n->gmch_n = link_clock * nlanes * 8;
Zhenyu Wang2c072452009-06-05 15:38:42 +08004016 fdi_reduce_ratio(&m_n->gmch_m, &m_n->gmch_n);
4017
Chris Wilson22ed1112010-12-04 01:01:29 +00004018 m_n->link_m = pixel_clock;
4019 m_n->link_n = link_clock;
Zhenyu Wang2c072452009-06-05 15:38:42 +08004020 fdi_reduce_ratio(&m_n->link_m, &m_n->link_n);
4021}
4022
Chris Wilsona7615032011-01-12 17:04:08 +00004023static inline bool intel_panel_use_ssc(struct drm_i915_private *dev_priv)
4024{
Keith Packard72bbe582011-09-26 16:09:45 -07004025 if (i915_panel_use_ssc >= 0)
4026 return i915_panel_use_ssc != 0;
4027 return dev_priv->lvds_use_ssc
Keith Packard435793d2011-07-12 14:56:22 -07004028 && !(dev_priv->quirks & QUIRK_LVDS_SSC_DISABLE);
Chris Wilsona7615032011-01-12 17:04:08 +00004029}
4030
Jesse Barnes5a354202011-06-24 12:19:22 -07004031/**
4032 * intel_choose_pipe_bpp_dither - figure out what color depth the pipe should send
4033 * @crtc: CRTC structure
Adam Jackson3b5c78a2011-12-13 15:41:00 -08004034 * @mode: requested mode
Jesse Barnes5a354202011-06-24 12:19:22 -07004035 *
4036 * A pipe may be connected to one or more outputs. Based on the depth of the
4037 * attached framebuffer, choose a good color depth to use on the pipe.
4038 *
4039 * If possible, match the pipe depth to the fb depth. In some cases, this
4040 * isn't ideal, because the connected output supports a lesser or restricted
4041 * set of depths. Resolve that here:
4042 * LVDS typically supports only 6bpc, so clamp down in that case
4043 * HDMI supports only 8bpc or 12bpc, so clamp to 8bpc with dither for 10bpc
4044 * Displays may support a restricted set as well, check EDID and clamp as
4045 * appropriate.
Adam Jackson3b5c78a2011-12-13 15:41:00 -08004046 * DP may want to dither down to 6bpc to fit larger modes
Jesse Barnes5a354202011-06-24 12:19:22 -07004047 *
4048 * RETURNS:
4049 * Dithering requirement (i.e. false if display bpc and pipe bpc match,
4050 * true if they don't match).
4051 */
4052static bool intel_choose_pipe_bpp_dither(struct drm_crtc *crtc,
Daniel Vetter94352cf2012-07-05 22:51:56 +02004053 struct drm_framebuffer *fb,
Adam Jackson3b5c78a2011-12-13 15:41:00 -08004054 unsigned int *pipe_bpp,
4055 struct drm_display_mode *mode)
Jesse Barnes5a354202011-06-24 12:19:22 -07004056{
4057 struct drm_device *dev = crtc->dev;
4058 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes5a354202011-06-24 12:19:22 -07004059 struct drm_connector *connector;
Daniel Vetter6c2b7c122012-07-05 09:50:24 +02004060 struct intel_encoder *intel_encoder;
Jesse Barnes5a354202011-06-24 12:19:22 -07004061 unsigned int display_bpc = UINT_MAX, bpc;
4062
4063 /* Walk the encoders & connectors on this crtc, get min bpc */
Daniel Vetter6c2b7c122012-07-05 09:50:24 +02004064 for_each_encoder_on_crtc(dev, crtc, intel_encoder) {
Jesse Barnes5a354202011-06-24 12:19:22 -07004065
4066 if (intel_encoder->type == INTEL_OUTPUT_LVDS) {
4067 unsigned int lvds_bpc;
4068
4069 if ((I915_READ(PCH_LVDS) & LVDS_A3_POWER_MASK) ==
4070 LVDS_A3_POWER_UP)
4071 lvds_bpc = 8;
4072 else
4073 lvds_bpc = 6;
4074
4075 if (lvds_bpc < display_bpc) {
Adam Jackson82820492011-10-10 16:33:34 -04004076 DRM_DEBUG_KMS("clamping display bpc (was %d) to LVDS (%d)\n", display_bpc, lvds_bpc);
Jesse Barnes5a354202011-06-24 12:19:22 -07004077 display_bpc = lvds_bpc;
4078 }
4079 continue;
4080 }
4081
Jesse Barnes5a354202011-06-24 12:19:22 -07004082 /* Not one of the known troublemakers, check the EDID */
4083 list_for_each_entry(connector, &dev->mode_config.connector_list,
4084 head) {
Daniel Vetter6c2b7c122012-07-05 09:50:24 +02004085 if (connector->encoder != &intel_encoder->base)
Jesse Barnes5a354202011-06-24 12:19:22 -07004086 continue;
4087
Jesse Barnes62ac41a2011-07-28 12:55:14 -07004088 /* Don't use an invalid EDID bpc value */
4089 if (connector->display_info.bpc &&
4090 connector->display_info.bpc < display_bpc) {
Adam Jackson82820492011-10-10 16:33:34 -04004091 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 -07004092 display_bpc = connector->display_info.bpc;
4093 }
4094 }
4095
4096 /*
4097 * HDMI is either 12 or 8, so if the display lets 10bpc sneak
4098 * through, clamp it down. (Note: >12bpc will be caught below.)
4099 */
4100 if (intel_encoder->type == INTEL_OUTPUT_HDMI) {
4101 if (display_bpc > 8 && display_bpc < 12) {
Adam Jackson82820492011-10-10 16:33:34 -04004102 DRM_DEBUG_KMS("forcing bpc to 12 for HDMI\n");
Jesse Barnes5a354202011-06-24 12:19:22 -07004103 display_bpc = 12;
4104 } else {
Adam Jackson82820492011-10-10 16:33:34 -04004105 DRM_DEBUG_KMS("forcing bpc to 8 for HDMI\n");
Jesse Barnes5a354202011-06-24 12:19:22 -07004106 display_bpc = 8;
4107 }
4108 }
4109 }
4110
Adam Jackson3b5c78a2011-12-13 15:41:00 -08004111 if (mode->private_flags & INTEL_MODE_DP_FORCE_6BPC) {
4112 DRM_DEBUG_KMS("Dithering DP to 6bpc\n");
4113 display_bpc = 6;
4114 }
4115
Jesse Barnes5a354202011-06-24 12:19:22 -07004116 /*
4117 * We could just drive the pipe at the highest bpc all the time and
4118 * enable dithering as needed, but that costs bandwidth. So choose
4119 * the minimum value that expresses the full color range of the fb but
4120 * also stays within the max display bpc discovered above.
4121 */
4122
Daniel Vetter94352cf2012-07-05 22:51:56 +02004123 switch (fb->depth) {
Jesse Barnes5a354202011-06-24 12:19:22 -07004124 case 8:
4125 bpc = 8; /* since we go through a colormap */
4126 break;
4127 case 15:
4128 case 16:
4129 bpc = 6; /* min is 18bpp */
4130 break;
4131 case 24:
Keith Packard578393c2011-09-05 11:53:21 -07004132 bpc = 8;
Jesse Barnes5a354202011-06-24 12:19:22 -07004133 break;
4134 case 30:
Keith Packard578393c2011-09-05 11:53:21 -07004135 bpc = 10;
Jesse Barnes5a354202011-06-24 12:19:22 -07004136 break;
4137 case 48:
Keith Packard578393c2011-09-05 11:53:21 -07004138 bpc = 12;
Jesse Barnes5a354202011-06-24 12:19:22 -07004139 break;
4140 default:
4141 DRM_DEBUG("unsupported depth, assuming 24 bits\n");
4142 bpc = min((unsigned int)8, display_bpc);
4143 break;
4144 }
4145
Keith Packard578393c2011-09-05 11:53:21 -07004146 display_bpc = min(display_bpc, bpc);
4147
Adam Jackson82820492011-10-10 16:33:34 -04004148 DRM_DEBUG_KMS("setting pipe bpc to %d (max display bpc %d)\n",
4149 bpc, display_bpc);
Jesse Barnes5a354202011-06-24 12:19:22 -07004150
Keith Packard578393c2011-09-05 11:53:21 -07004151 *pipe_bpp = display_bpc * 3;
Jesse Barnes5a354202011-06-24 12:19:22 -07004152
4153 return display_bpc != bpc;
4154}
4155
Jesse Barnesa0c4da22012-06-15 11:55:13 -07004156static int vlv_get_refclk(struct drm_crtc *crtc)
4157{
4158 struct drm_device *dev = crtc->dev;
4159 struct drm_i915_private *dev_priv = dev->dev_private;
4160 int refclk = 27000; /* for DP & HDMI */
4161
4162 return 100000; /* only one validated so far */
4163
4164 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_ANALOG)) {
4165 refclk = 96000;
4166 } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
4167 if (intel_panel_use_ssc(dev_priv))
4168 refclk = 100000;
4169 else
4170 refclk = 96000;
4171 } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP)) {
4172 refclk = 100000;
4173 }
4174
4175 return refclk;
4176}
4177
Jesse Barnesc65d77d2011-12-15 12:30:36 -08004178static int i9xx_get_refclk(struct drm_crtc *crtc, int num_connectors)
4179{
4180 struct drm_device *dev = crtc->dev;
4181 struct drm_i915_private *dev_priv = dev->dev_private;
4182 int refclk;
4183
Jesse Barnesa0c4da22012-06-15 11:55:13 -07004184 if (IS_VALLEYVIEW(dev)) {
4185 refclk = vlv_get_refclk(crtc);
4186 } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) &&
Jesse Barnesc65d77d2011-12-15 12:30:36 -08004187 intel_panel_use_ssc(dev_priv) && num_connectors < 2) {
4188 refclk = dev_priv->lvds_ssc_freq * 1000;
4189 DRM_DEBUG_KMS("using SSC reference clock of %d MHz\n",
4190 refclk / 1000);
4191 } else if (!IS_GEN2(dev)) {
4192 refclk = 96000;
4193 } else {
4194 refclk = 48000;
4195 }
4196
4197 return refclk;
4198}
4199
4200static void i9xx_adjust_sdvo_tv_clock(struct drm_display_mode *adjusted_mode,
4201 intel_clock_t *clock)
4202{
4203 /* SDVO TV has fixed PLL values depend on its clock range,
4204 this mirrors vbios setting. */
4205 if (adjusted_mode->clock >= 100000
4206 && adjusted_mode->clock < 140500) {
4207 clock->p1 = 2;
4208 clock->p2 = 10;
4209 clock->n = 3;
4210 clock->m1 = 16;
4211 clock->m2 = 8;
4212 } else if (adjusted_mode->clock >= 140500
4213 && adjusted_mode->clock <= 200000) {
4214 clock->p1 = 1;
4215 clock->p2 = 10;
4216 clock->n = 6;
4217 clock->m1 = 12;
4218 clock->m2 = 8;
4219 }
4220}
4221
Jesse Barnesa7516a02011-12-15 12:30:37 -08004222static void i9xx_update_pll_dividers(struct drm_crtc *crtc,
4223 intel_clock_t *clock,
4224 intel_clock_t *reduced_clock)
4225{
4226 struct drm_device *dev = crtc->dev;
4227 struct drm_i915_private *dev_priv = dev->dev_private;
4228 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4229 int pipe = intel_crtc->pipe;
4230 u32 fp, fp2 = 0;
4231
4232 if (IS_PINEVIEW(dev)) {
4233 fp = (1 << clock->n) << 16 | clock->m1 << 8 | clock->m2;
4234 if (reduced_clock)
4235 fp2 = (1 << reduced_clock->n) << 16 |
4236 reduced_clock->m1 << 8 | reduced_clock->m2;
4237 } else {
4238 fp = clock->n << 16 | clock->m1 << 8 | clock->m2;
4239 if (reduced_clock)
4240 fp2 = reduced_clock->n << 16 | reduced_clock->m1 << 8 |
4241 reduced_clock->m2;
4242 }
4243
4244 I915_WRITE(FP0(pipe), fp);
4245
4246 intel_crtc->lowfreq_avail = false;
4247 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) &&
4248 reduced_clock && i915_powersave) {
4249 I915_WRITE(FP1(pipe), fp2);
4250 intel_crtc->lowfreq_avail = true;
4251 } else {
4252 I915_WRITE(FP1(pipe), fp);
4253 }
4254}
4255
Jesse Barnesa0c4da22012-06-15 11:55:13 -07004256static void vlv_update_pll(struct drm_crtc *crtc,
4257 struct drm_display_mode *mode,
4258 struct drm_display_mode *adjusted_mode,
4259 intel_clock_t *clock, intel_clock_t *reduced_clock,
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05304260 int num_connectors)
Jesse Barnesa0c4da22012-06-15 11:55:13 -07004261{
4262 struct drm_device *dev = crtc->dev;
4263 struct drm_i915_private *dev_priv = dev->dev_private;
4264 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4265 int pipe = intel_crtc->pipe;
4266 u32 dpll, mdiv, pdiv;
4267 u32 bestn, bestm1, bestm2, bestp1, bestp2;
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05304268 bool is_sdvo;
4269 u32 temp;
Jesse Barnesa0c4da22012-06-15 11:55:13 -07004270
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05304271 is_sdvo = intel_pipe_has_type(crtc, INTEL_OUTPUT_SDVO) ||
4272 intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI);
4273
4274 dpll = DPLL_VGA_MODE_DIS;
4275 dpll |= DPLL_EXT_BUFFER_ENABLE_VLV;
4276 dpll |= DPLL_REFA_CLK_ENABLE_VLV;
4277 dpll |= DPLL_INTEGRATED_CLOCK_VLV;
4278
4279 I915_WRITE(DPLL(pipe), dpll);
4280 POSTING_READ(DPLL(pipe));
Jesse Barnesa0c4da22012-06-15 11:55:13 -07004281
4282 bestn = clock->n;
4283 bestm1 = clock->m1;
4284 bestm2 = clock->m2;
4285 bestp1 = clock->p1;
4286 bestp2 = clock->p2;
4287
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05304288 /*
4289 * In Valleyview PLL and program lane counter registers are exposed
4290 * through DPIO interface
4291 */
Jesse Barnesa0c4da22012-06-15 11:55:13 -07004292 mdiv = ((bestm1 << DPIO_M1DIV_SHIFT) | (bestm2 & DPIO_M2DIV_MASK));
4293 mdiv |= ((bestp1 << DPIO_P1_SHIFT) | (bestp2 << DPIO_P2_SHIFT));
4294 mdiv |= ((bestn << DPIO_N_SHIFT));
4295 mdiv |= (1 << DPIO_POST_DIV_SHIFT);
4296 mdiv |= (1 << DPIO_K_SHIFT);
4297 mdiv |= DPIO_ENABLE_CALIBRATION;
4298 intel_dpio_write(dev_priv, DPIO_DIV(pipe), mdiv);
4299
4300 intel_dpio_write(dev_priv, DPIO_CORE_CLK(pipe), 0x01000000);
4301
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05304302 pdiv = (1 << DPIO_REFSEL_OVERRIDE) | (5 << DPIO_PLL_MODESEL_SHIFT) |
Jesse Barnesa0c4da22012-06-15 11:55:13 -07004303 (3 << DPIO_BIAS_CURRENT_CTL_SHIFT) | (1<<20) |
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05304304 (7 << DPIO_PLL_REFCLK_SEL_SHIFT) | (8 << DPIO_DRIVER_CTL_SHIFT) |
4305 (5 << DPIO_CLK_BIAS_CTL_SHIFT);
Jesse Barnesa0c4da22012-06-15 11:55:13 -07004306 intel_dpio_write(dev_priv, DPIO_REFSFR(pipe), pdiv);
4307
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05304308 intel_dpio_write(dev_priv, DPIO_LFP_COEFF(pipe), 0x005f003b);
Jesse Barnesa0c4da22012-06-15 11:55:13 -07004309
4310 dpll |= DPLL_VCO_ENABLE;
4311 I915_WRITE(DPLL(pipe), dpll);
4312 POSTING_READ(DPLL(pipe));
4313 if (wait_for(((I915_READ(DPLL(pipe)) & DPLL_LOCK_VLV) == DPLL_LOCK_VLV), 1))
4314 DRM_ERROR("DPLL %d failed to lock\n", pipe);
4315
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05304316 intel_dpio_write(dev_priv, DPIO_FASTCLK_DISABLE, 0x620);
Jesse Barnesa0c4da22012-06-15 11:55:13 -07004317
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05304318 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT))
4319 intel_dp_set_m_n(crtc, mode, adjusted_mode);
4320
4321 I915_WRITE(DPLL(pipe), dpll);
4322
4323 /* Wait for the clocks to stabilize. */
4324 POSTING_READ(DPLL(pipe));
4325 udelay(150);
4326
4327 temp = 0;
4328 if (is_sdvo) {
4329 temp = intel_mode_get_pixel_multiplier(adjusted_mode);
Jesse Barnesa0c4da22012-06-15 11:55:13 -07004330 if (temp > 1)
4331 temp = (temp - 1) << DPLL_MD_UDI_MULTIPLIER_SHIFT;
4332 else
4333 temp = 0;
Jesse Barnesa0c4da22012-06-15 11:55:13 -07004334 }
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05304335 I915_WRITE(DPLL_MD(pipe), temp);
4336 POSTING_READ(DPLL_MD(pipe));
Jesse Barnesa0c4da22012-06-15 11:55:13 -07004337
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05304338 /* Now program lane control registers */
4339 if(intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT)
4340 || intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI))
4341 {
4342 temp = 0x1000C4;
4343 if(pipe == 1)
4344 temp |= (1 << 21);
4345 intel_dpio_write(dev_priv, DPIO_DATA_CHANNEL1, temp);
4346 }
4347 if(intel_pipe_has_type(crtc,INTEL_OUTPUT_EDP))
4348 {
4349 temp = 0x1000C4;
4350 if(pipe == 1)
4351 temp |= (1 << 21);
4352 intel_dpio_write(dev_priv, DPIO_DATA_CHANNEL2, temp);
4353 }
Jesse Barnesa0c4da22012-06-15 11:55:13 -07004354}
4355
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004356static void i9xx_update_pll(struct drm_crtc *crtc,
4357 struct drm_display_mode *mode,
4358 struct drm_display_mode *adjusted_mode,
4359 intel_clock_t *clock, intel_clock_t *reduced_clock,
4360 int num_connectors)
4361{
4362 struct drm_device *dev = crtc->dev;
4363 struct drm_i915_private *dev_priv = dev->dev_private;
4364 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetterdafd2262012-11-26 17:22:07 +01004365 struct intel_encoder *encoder;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004366 int pipe = intel_crtc->pipe;
4367 u32 dpll;
4368 bool is_sdvo;
4369
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05304370 i9xx_update_pll_dividers(crtc, clock, reduced_clock);
4371
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004372 is_sdvo = intel_pipe_has_type(crtc, INTEL_OUTPUT_SDVO) ||
4373 intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI);
4374
4375 dpll = DPLL_VGA_MODE_DIS;
4376
4377 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS))
4378 dpll |= DPLLB_MODE_LVDS;
4379 else
4380 dpll |= DPLLB_MODE_DAC_SERIAL;
4381 if (is_sdvo) {
4382 int pixel_multiplier = intel_mode_get_pixel_multiplier(adjusted_mode);
4383 if (pixel_multiplier > 1) {
4384 if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev))
4385 dpll |= (pixel_multiplier - 1) << SDVO_MULTIPLIER_SHIFT_HIRES;
4386 }
4387 dpll |= DPLL_DVO_HIGH_SPEED;
4388 }
4389 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT))
4390 dpll |= DPLL_DVO_HIGH_SPEED;
4391
4392 /* compute bitmask from p1 value */
4393 if (IS_PINEVIEW(dev))
4394 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW;
4395 else {
4396 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
4397 if (IS_G4X(dev) && reduced_clock)
4398 dpll |= (1 << (reduced_clock->p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
4399 }
4400 switch (clock->p2) {
4401 case 5:
4402 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
4403 break;
4404 case 7:
4405 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
4406 break;
4407 case 10:
4408 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
4409 break;
4410 case 14:
4411 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
4412 break;
4413 }
4414 if (INTEL_INFO(dev)->gen >= 4)
4415 dpll |= (6 << PLL_LOAD_PULSE_PHASE_SHIFT);
4416
4417 if (is_sdvo && intel_pipe_has_type(crtc, INTEL_OUTPUT_TVOUT))
4418 dpll |= PLL_REF_INPUT_TVCLKINBC;
4419 else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_TVOUT))
4420 /* XXX: just matching BIOS for now */
4421 /* dpll |= PLL_REF_INPUT_TVCLKINBC; */
4422 dpll |= 3;
4423 else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) &&
4424 intel_panel_use_ssc(dev_priv) && num_connectors < 2)
4425 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
4426 else
4427 dpll |= PLL_REF_INPUT_DREFCLK;
4428
4429 dpll |= DPLL_VCO_ENABLE;
4430 I915_WRITE(DPLL(pipe), dpll & ~DPLL_VCO_ENABLE);
4431 POSTING_READ(DPLL(pipe));
4432 udelay(150);
4433
Daniel Vetterdafd2262012-11-26 17:22:07 +01004434 for_each_encoder_on_crtc(dev, crtc, encoder)
4435 if (encoder->pre_pll_enable)
4436 encoder->pre_pll_enable(encoder);
4437
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004438 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT))
4439 intel_dp_set_m_n(crtc, mode, adjusted_mode);
4440
4441 I915_WRITE(DPLL(pipe), dpll);
4442
4443 /* Wait for the clocks to stabilize. */
4444 POSTING_READ(DPLL(pipe));
4445 udelay(150);
4446
4447 if (INTEL_INFO(dev)->gen >= 4) {
4448 u32 temp = 0;
4449 if (is_sdvo) {
4450 temp = intel_mode_get_pixel_multiplier(adjusted_mode);
4451 if (temp > 1)
4452 temp = (temp - 1) << DPLL_MD_UDI_MULTIPLIER_SHIFT;
4453 else
4454 temp = 0;
4455 }
4456 I915_WRITE(DPLL_MD(pipe), temp);
4457 } else {
4458 /* The pixel multiplier can only be updated once the
4459 * DPLL is enabled and the clocks are stable.
4460 *
4461 * So write it again.
4462 */
4463 I915_WRITE(DPLL(pipe), dpll);
4464 }
4465}
4466
4467static void i8xx_update_pll(struct drm_crtc *crtc,
4468 struct drm_display_mode *adjusted_mode,
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05304469 intel_clock_t *clock, intel_clock_t *reduced_clock,
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004470 int num_connectors)
4471{
4472 struct drm_device *dev = crtc->dev;
4473 struct drm_i915_private *dev_priv = dev->dev_private;
4474 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetterdafd2262012-11-26 17:22:07 +01004475 struct intel_encoder *encoder;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004476 int pipe = intel_crtc->pipe;
4477 u32 dpll;
4478
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05304479 i9xx_update_pll_dividers(crtc, clock, reduced_clock);
4480
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004481 dpll = DPLL_VGA_MODE_DIS;
4482
4483 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
4484 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
4485 } else {
4486 if (clock->p1 == 2)
4487 dpll |= PLL_P1_DIVIDE_BY_TWO;
4488 else
4489 dpll |= (clock->p1 - 2) << DPLL_FPA01_P1_POST_DIV_SHIFT;
4490 if (clock->p2 == 4)
4491 dpll |= PLL_P2_DIVIDE_BY_4;
4492 }
4493
4494 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_TVOUT))
4495 /* XXX: just matching BIOS for now */
4496 /* dpll |= PLL_REF_INPUT_TVCLKINBC; */
4497 dpll |= 3;
4498 else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) &&
4499 intel_panel_use_ssc(dev_priv) && num_connectors < 2)
4500 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
4501 else
4502 dpll |= PLL_REF_INPUT_DREFCLK;
4503
4504 dpll |= DPLL_VCO_ENABLE;
4505 I915_WRITE(DPLL(pipe), dpll & ~DPLL_VCO_ENABLE);
4506 POSTING_READ(DPLL(pipe));
4507 udelay(150);
4508
Daniel Vetterdafd2262012-11-26 17:22:07 +01004509 for_each_encoder_on_crtc(dev, crtc, encoder)
4510 if (encoder->pre_pll_enable)
4511 encoder->pre_pll_enable(encoder);
4512
Daniel Vetter5b5896e2012-09-11 12:37:55 +02004513 I915_WRITE(DPLL(pipe), dpll);
4514
4515 /* Wait for the clocks to stabilize. */
4516 POSTING_READ(DPLL(pipe));
4517 udelay(150);
4518
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004519 /* The pixel multiplier can only be updated once the
4520 * DPLL is enabled and the clocks are stable.
4521 *
4522 * So write it again.
4523 */
4524 I915_WRITE(DPLL(pipe), dpll);
4525}
4526
Paulo Zanonib0e77b92012-10-01 18:10:53 -03004527static void intel_set_pipe_timings(struct intel_crtc *intel_crtc,
4528 struct drm_display_mode *mode,
4529 struct drm_display_mode *adjusted_mode)
4530{
4531 struct drm_device *dev = intel_crtc->base.dev;
4532 struct drm_i915_private *dev_priv = dev->dev_private;
4533 enum pipe pipe = intel_crtc->pipe;
Paulo Zanonife2b8f92012-10-23 18:30:02 -02004534 enum transcoder cpu_transcoder = intel_crtc->cpu_transcoder;
Paulo Zanonib0e77b92012-10-01 18:10:53 -03004535 uint32_t vsyncshift;
4536
4537 if (!IS_GEN2(dev) && adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE) {
4538 /* the chip adds 2 halflines automatically */
4539 adjusted_mode->crtc_vtotal -= 1;
4540 adjusted_mode->crtc_vblank_end -= 1;
4541 vsyncshift = adjusted_mode->crtc_hsync_start
4542 - adjusted_mode->crtc_htotal / 2;
4543 } else {
4544 vsyncshift = 0;
4545 }
4546
4547 if (INTEL_INFO(dev)->gen > 3)
Paulo Zanonife2b8f92012-10-23 18:30:02 -02004548 I915_WRITE(VSYNCSHIFT(cpu_transcoder), vsyncshift);
Paulo Zanonib0e77b92012-10-01 18:10:53 -03004549
Paulo Zanonife2b8f92012-10-23 18:30:02 -02004550 I915_WRITE(HTOTAL(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03004551 (adjusted_mode->crtc_hdisplay - 1) |
4552 ((adjusted_mode->crtc_htotal - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02004553 I915_WRITE(HBLANK(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03004554 (adjusted_mode->crtc_hblank_start - 1) |
4555 ((adjusted_mode->crtc_hblank_end - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02004556 I915_WRITE(HSYNC(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03004557 (adjusted_mode->crtc_hsync_start - 1) |
4558 ((adjusted_mode->crtc_hsync_end - 1) << 16));
4559
Paulo Zanonife2b8f92012-10-23 18:30:02 -02004560 I915_WRITE(VTOTAL(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03004561 (adjusted_mode->crtc_vdisplay - 1) |
4562 ((adjusted_mode->crtc_vtotal - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02004563 I915_WRITE(VBLANK(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03004564 (adjusted_mode->crtc_vblank_start - 1) |
4565 ((adjusted_mode->crtc_vblank_end - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02004566 I915_WRITE(VSYNC(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03004567 (adjusted_mode->crtc_vsync_start - 1) |
4568 ((adjusted_mode->crtc_vsync_end - 1) << 16));
4569
Paulo Zanonib5e508d2012-10-24 11:34:43 -02004570 /* Workaround: when the EDP input selection is B, the VTOTAL_B must be
4571 * programmed with the VTOTAL_EDP value. Same for VTOTAL_C. This is
4572 * documented on the DDI_FUNC_CTL register description, EDP Input Select
4573 * bits. */
4574 if (IS_HASWELL(dev) && cpu_transcoder == TRANSCODER_EDP &&
4575 (pipe == PIPE_B || pipe == PIPE_C))
4576 I915_WRITE(VTOTAL(pipe), I915_READ(VTOTAL(cpu_transcoder)));
4577
Paulo Zanonib0e77b92012-10-01 18:10:53 -03004578 /* pipesrc controls the size that is scaled from, which should
4579 * always be the user's requested size.
4580 */
4581 I915_WRITE(PIPESRC(pipe),
4582 ((mode->hdisplay - 1) << 16) | (mode->vdisplay - 1));
4583}
4584
Eric Anholtf564048e2011-03-30 13:01:02 -07004585static int i9xx_crtc_mode_set(struct drm_crtc *crtc,
4586 struct drm_display_mode *mode,
4587 struct drm_display_mode *adjusted_mode,
4588 int x, int y,
Daniel Vetter94352cf2012-07-05 22:51:56 +02004589 struct drm_framebuffer *fb)
Jesse Barnes79e53942008-11-07 14:24:08 -08004590{
4591 struct drm_device *dev = crtc->dev;
4592 struct drm_i915_private *dev_priv = dev->dev_private;
4593 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4594 int pipe = intel_crtc->pipe;
Jesse Barnes80824002009-09-10 15:28:06 -07004595 int plane = intel_crtc->plane;
Eric Anholtc751ce42010-03-25 11:48:48 -07004596 int refclk, num_connectors = 0;
Jesse Barnes652c3932009-08-17 13:31:43 -07004597 intel_clock_t clock, reduced_clock;
Paulo Zanonib0e77b92012-10-01 18:10:53 -03004598 u32 dspcntr, pipeconf;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004599 bool ok, has_reduced_clock = false, is_sdvo = false;
4600 bool is_lvds = false, is_tv = false, is_dp = false;
Chris Wilson5eddb702010-09-11 13:48:45 +01004601 struct intel_encoder *encoder;
Ma Lingd4906092009-03-18 20:13:27 +08004602 const intel_limit_t *limit;
Chris Wilson5c3b82e2009-02-11 13:25:09 +00004603 int ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08004604
Daniel Vetter6c2b7c122012-07-05 09:50:24 +02004605 for_each_encoder_on_crtc(dev, crtc, encoder) {
Chris Wilson5eddb702010-09-11 13:48:45 +01004606 switch (encoder->type) {
Jesse Barnes79e53942008-11-07 14:24:08 -08004607 case INTEL_OUTPUT_LVDS:
4608 is_lvds = true;
4609 break;
4610 case INTEL_OUTPUT_SDVO:
Eric Anholt7d573822009-01-02 13:33:00 -08004611 case INTEL_OUTPUT_HDMI:
Jesse Barnes79e53942008-11-07 14:24:08 -08004612 is_sdvo = true;
Chris Wilson5eddb702010-09-11 13:48:45 +01004613 if (encoder->needs_tv_clock)
Jesse Barnese2f0ba92009-02-02 15:11:52 -08004614 is_tv = true;
Jesse Barnes79e53942008-11-07 14:24:08 -08004615 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08004616 case INTEL_OUTPUT_TVOUT:
4617 is_tv = true;
4618 break;
Keith Packarda4fc5ed2009-04-07 16:16:42 -07004619 case INTEL_OUTPUT_DISPLAYPORT:
4620 is_dp = true;
4621 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08004622 }
Kristian Høgsberg43565a02009-02-13 20:56:52 -05004623
Eric Anholtc751ce42010-03-25 11:48:48 -07004624 num_connectors++;
Jesse Barnes79e53942008-11-07 14:24:08 -08004625 }
4626
Jesse Barnesc65d77d2011-12-15 12:30:36 -08004627 refclk = i9xx_get_refclk(crtc, num_connectors);
Jesse Barnes79e53942008-11-07 14:24:08 -08004628
Ma Lingd4906092009-03-18 20:13:27 +08004629 /*
4630 * Returns a set of divisors for the desired target clock with the given
4631 * refclk, or FALSE. The returned values represent the clock equation:
4632 * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2.
4633 */
Chris Wilson1b894b52010-12-14 20:04:54 +00004634 limit = intel_limit(crtc, refclk);
Sean Paulcec2f352012-01-10 15:09:36 -08004635 ok = limit->find_pll(limit, crtc, adjusted_mode->clock, refclk, NULL,
4636 &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08004637 if (!ok) {
4638 DRM_ERROR("Couldn't find PLL settings for mode!\n");
Eric Anholtf564048e2011-03-30 13:01:02 -07004639 return -EINVAL;
4640 }
4641
4642 /* Ensure that the cursor is valid for the new mode before changing... */
4643 intel_crtc_update_cursor(crtc, true);
4644
4645 if (is_lvds && dev_priv->lvds_downclock_avail) {
Sean Paulcec2f352012-01-10 15:09:36 -08004646 /*
4647 * Ensure we match the reduced clock's P to the target clock.
4648 * If the clocks don't match, we can't switch the display clock
4649 * by using the FP0/FP1. In such case we will disable the LVDS
4650 * downclock feature.
4651 */
Eric Anholtf564048e2011-03-30 13:01:02 -07004652 has_reduced_clock = limit->find_pll(limit, crtc,
4653 dev_priv->lvds_downclock,
4654 refclk,
Sean Paulcec2f352012-01-10 15:09:36 -08004655 &clock,
Eric Anholtf564048e2011-03-30 13:01:02 -07004656 &reduced_clock);
Eric Anholtf564048e2011-03-30 13:01:02 -07004657 }
4658
Jesse Barnesc65d77d2011-12-15 12:30:36 -08004659 if (is_sdvo && is_tv)
4660 i9xx_adjust_sdvo_tv_clock(adjusted_mode, &clock);
Eric Anholtf564048e2011-03-30 13:01:02 -07004661
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004662 if (IS_GEN2(dev))
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05304663 i8xx_update_pll(crtc, adjusted_mode, &clock,
4664 has_reduced_clock ? &reduced_clock : NULL,
4665 num_connectors);
Jesse Barnesa0c4da22012-06-15 11:55:13 -07004666 else if (IS_VALLEYVIEW(dev))
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05304667 vlv_update_pll(crtc, mode, adjusted_mode, &clock,
4668 has_reduced_clock ? &reduced_clock : NULL,
4669 num_connectors);
Eric Anholtf564048e2011-03-30 13:01:02 -07004670 else
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004671 i9xx_update_pll(crtc, mode, adjusted_mode, &clock,
4672 has_reduced_clock ? &reduced_clock : NULL,
4673 num_connectors);
Eric Anholtf564048e2011-03-30 13:01:02 -07004674
4675 /* setup pipeconf */
4676 pipeconf = I915_READ(PIPECONF(pipe));
4677
4678 /* Set up the display plane register */
4679 dspcntr = DISPPLANE_GAMMA_ENABLE;
4680
Eric Anholt929c77f2011-03-30 13:01:04 -07004681 if (pipe == 0)
4682 dspcntr &= ~DISPPLANE_SEL_PIPE_MASK;
4683 else
4684 dspcntr |= DISPPLANE_SEL_PIPE_B;
Eric Anholtf564048e2011-03-30 13:01:02 -07004685
4686 if (pipe == 0 && INTEL_INFO(dev)->gen < 4) {
4687 /* Enable pixel doubling when the dot clock is > 90% of the (display)
4688 * core speed.
4689 *
4690 * XXX: No double-wide on 915GM pipe B. Is that the only reason for the
4691 * pipe == 0 check?
4692 */
4693 if (mode->clock >
4694 dev_priv->display.get_display_clock_speed(dev) * 9 / 10)
4695 pipeconf |= PIPECONF_DOUBLE_WIDE;
4696 else
4697 pipeconf &= ~PIPECONF_DOUBLE_WIDE;
4698 }
4699
Adam Jackson3b5c78a2011-12-13 15:41:00 -08004700 /* default to 8bpc */
4701 pipeconf &= ~(PIPECONF_BPP_MASK | PIPECONF_DITHER_EN);
4702 if (is_dp) {
Jani Nikula0c96c652012-09-26 18:43:10 +03004703 if (adjusted_mode->private_flags & INTEL_MODE_DP_FORCE_6BPC) {
Adam Jackson3b5c78a2011-12-13 15:41:00 -08004704 pipeconf |= PIPECONF_BPP_6 |
4705 PIPECONF_DITHER_EN |
4706 PIPECONF_DITHER_TYPE_SP;
4707 }
4708 }
4709
Gajanan Bhat19c03922012-09-27 19:13:07 +05304710 if (IS_VALLEYVIEW(dev) && intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP)) {
4711 if (adjusted_mode->private_flags & INTEL_MODE_DP_FORCE_6BPC) {
4712 pipeconf |= PIPECONF_BPP_6 |
4713 PIPECONF_ENABLE |
4714 I965_PIPECONF_ACTIVE;
4715 }
4716 }
4717
Eric Anholtf564048e2011-03-30 13:01:02 -07004718 DRM_DEBUG_KMS("Mode for pipe %c:\n", pipe == 0 ? 'A' : 'B');
4719 drm_mode_debug_printmodeline(mode);
4720
Jesse Barnesa7516a02011-12-15 12:30:37 -08004721 if (HAS_PIPE_CXSR(dev)) {
4722 if (intel_crtc->lowfreq_avail) {
Eric Anholtf564048e2011-03-30 13:01:02 -07004723 DRM_DEBUG_KMS("enabling CxSR downclocking\n");
4724 pipeconf |= PIPECONF_CXSR_DOWNCLOCK;
Jesse Barnesa7516a02011-12-15 12:30:37 -08004725 } else {
Eric Anholtf564048e2011-03-30 13:01:02 -07004726 DRM_DEBUG_KMS("disabling CxSR downclocking\n");
4727 pipeconf &= ~PIPECONF_CXSR_DOWNCLOCK;
4728 }
4729 }
4730
Keith Packard617cf882012-02-08 13:53:38 -08004731 pipeconf &= ~PIPECONF_INTERLACE_MASK;
Daniel Vetterdbb02572012-01-28 14:49:23 +01004732 if (!IS_GEN2(dev) &&
Paulo Zanonib0e77b92012-10-01 18:10:53 -03004733 adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE)
Eric Anholtf564048e2011-03-30 13:01:02 -07004734 pipeconf |= PIPECONF_INTERLACE_W_FIELD_INDICATION;
Paulo Zanonib0e77b92012-10-01 18:10:53 -03004735 else
Keith Packard617cf882012-02-08 13:53:38 -08004736 pipeconf |= PIPECONF_PROGRESSIVE;
Daniel Vetter0529a0d2012-01-28 14:49:24 +01004737
Paulo Zanonib0e77b92012-10-01 18:10:53 -03004738 intel_set_pipe_timings(intel_crtc, mode, adjusted_mode);
Eric Anholtf564048e2011-03-30 13:01:02 -07004739
4740 /* pipesrc and dspsize control the size that is scaled from,
4741 * which should always be the user's requested size.
4742 */
Eric Anholt929c77f2011-03-30 13:01:04 -07004743 I915_WRITE(DSPSIZE(plane),
4744 ((mode->vdisplay - 1) << 16) |
4745 (mode->hdisplay - 1));
4746 I915_WRITE(DSPPOS(plane), 0);
Eric Anholtf564048e2011-03-30 13:01:02 -07004747
Eric Anholtf564048e2011-03-30 13:01:02 -07004748 I915_WRITE(PIPECONF(pipe), pipeconf);
4749 POSTING_READ(PIPECONF(pipe));
Eric Anholt929c77f2011-03-30 13:01:04 -07004750 intel_enable_pipe(dev_priv, pipe, false);
Eric Anholtf564048e2011-03-30 13:01:02 -07004751
4752 intel_wait_for_vblank(dev, pipe);
4753
Eric Anholtf564048e2011-03-30 13:01:02 -07004754 I915_WRITE(DSPCNTR(plane), dspcntr);
4755 POSTING_READ(DSPCNTR(plane));
4756
Daniel Vetter94352cf2012-07-05 22:51:56 +02004757 ret = intel_pipe_set_base(crtc, x, y, fb);
Eric Anholtf564048e2011-03-30 13:01:02 -07004758
4759 intel_update_watermarks(dev);
4760
Eric Anholtf564048e2011-03-30 13:01:02 -07004761 return ret;
4762}
4763
Keith Packard9fb526d2011-09-26 22:24:57 -07004764/*
4765 * Initialize reference clocks when the driver loads
4766 */
4767void ironlake_init_pch_refclk(struct drm_device *dev)
Jesse Barnes13d83a62011-08-03 12:59:20 -07004768{
4769 struct drm_i915_private *dev_priv = dev->dev_private;
4770 struct drm_mode_config *mode_config = &dev->mode_config;
Jesse Barnes13d83a62011-08-03 12:59:20 -07004771 struct intel_encoder *encoder;
Jesse Barnes13d83a62011-08-03 12:59:20 -07004772 u32 temp;
4773 bool has_lvds = false;
Keith Packard199e5d72011-09-22 12:01:57 -07004774 bool has_cpu_edp = false;
4775 bool has_pch_edp = false;
4776 bool has_panel = false;
Keith Packard99eb6a02011-09-26 14:29:12 -07004777 bool has_ck505 = false;
4778 bool can_ssc = false;
Jesse Barnes13d83a62011-08-03 12:59:20 -07004779
4780 /* We need to take the global config into account */
Keith Packard199e5d72011-09-22 12:01:57 -07004781 list_for_each_entry(encoder, &mode_config->encoder_list,
4782 base.head) {
4783 switch (encoder->type) {
4784 case INTEL_OUTPUT_LVDS:
4785 has_panel = true;
4786 has_lvds = true;
4787 break;
4788 case INTEL_OUTPUT_EDP:
4789 has_panel = true;
4790 if (intel_encoder_is_pch_edp(&encoder->base))
4791 has_pch_edp = true;
4792 else
4793 has_cpu_edp = true;
4794 break;
Jesse Barnes13d83a62011-08-03 12:59:20 -07004795 }
4796 }
4797
Keith Packard99eb6a02011-09-26 14:29:12 -07004798 if (HAS_PCH_IBX(dev)) {
4799 has_ck505 = dev_priv->display_clock_mode;
4800 can_ssc = has_ck505;
4801 } else {
4802 has_ck505 = false;
4803 can_ssc = true;
4804 }
4805
4806 DRM_DEBUG_KMS("has_panel %d has_lvds %d has_pch_edp %d has_cpu_edp %d has_ck505 %d\n",
4807 has_panel, has_lvds, has_pch_edp, has_cpu_edp,
4808 has_ck505);
Jesse Barnes13d83a62011-08-03 12:59:20 -07004809
4810 /* Ironlake: try to setup display ref clock before DPLL
4811 * enabling. This is only under driver's control after
4812 * PCH B stepping, previous chipset stepping should be
4813 * ignoring this setting.
4814 */
4815 temp = I915_READ(PCH_DREF_CONTROL);
4816 /* Always enable nonspread source */
4817 temp &= ~DREF_NONSPREAD_SOURCE_MASK;
Jesse Barnes13d83a62011-08-03 12:59:20 -07004818
Keith Packard99eb6a02011-09-26 14:29:12 -07004819 if (has_ck505)
4820 temp |= DREF_NONSPREAD_CK505_ENABLE;
4821 else
4822 temp |= DREF_NONSPREAD_SOURCE_ENABLE;
Jesse Barnes13d83a62011-08-03 12:59:20 -07004823
Keith Packard199e5d72011-09-22 12:01:57 -07004824 if (has_panel) {
4825 temp &= ~DREF_SSC_SOURCE_MASK;
4826 temp |= DREF_SSC_SOURCE_ENABLE;
Jesse Barnes13d83a62011-08-03 12:59:20 -07004827
Keith Packard199e5d72011-09-22 12:01:57 -07004828 /* SSC must be turned on before enabling the CPU output */
Keith Packard99eb6a02011-09-26 14:29:12 -07004829 if (intel_panel_use_ssc(dev_priv) && can_ssc) {
Keith Packard199e5d72011-09-22 12:01:57 -07004830 DRM_DEBUG_KMS("Using SSC on panel\n");
Jesse Barnes13d83a62011-08-03 12:59:20 -07004831 temp |= DREF_SSC1_ENABLE;
Daniel Vettere77166b2012-03-30 22:14:05 +02004832 } else
4833 temp &= ~DREF_SSC1_ENABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07004834
4835 /* Get SSC going before enabling the outputs */
4836 I915_WRITE(PCH_DREF_CONTROL, temp);
4837 POSTING_READ(PCH_DREF_CONTROL);
4838 udelay(200);
4839
Jesse Barnes13d83a62011-08-03 12:59:20 -07004840 temp &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
4841
4842 /* Enable CPU source on CPU attached eDP */
Keith Packard199e5d72011-09-22 12:01:57 -07004843 if (has_cpu_edp) {
Keith Packard99eb6a02011-09-26 14:29:12 -07004844 if (intel_panel_use_ssc(dev_priv) && can_ssc) {
Keith Packard199e5d72011-09-22 12:01:57 -07004845 DRM_DEBUG_KMS("Using SSC on eDP\n");
Jesse Barnes13d83a62011-08-03 12:59:20 -07004846 temp |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD;
Keith Packard199e5d72011-09-22 12:01:57 -07004847 }
Jesse Barnes13d83a62011-08-03 12:59:20 -07004848 else
4849 temp |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD;
Keith Packard199e5d72011-09-22 12:01:57 -07004850 } else
4851 temp |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
4852
4853 I915_WRITE(PCH_DREF_CONTROL, temp);
4854 POSTING_READ(PCH_DREF_CONTROL);
4855 udelay(200);
4856 } else {
4857 DRM_DEBUG_KMS("Disabling SSC entirely\n");
4858
4859 temp &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
4860
4861 /* Turn off CPU output */
4862 temp |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
4863
4864 I915_WRITE(PCH_DREF_CONTROL, temp);
4865 POSTING_READ(PCH_DREF_CONTROL);
4866 udelay(200);
4867
4868 /* Turn off the SSC source */
4869 temp &= ~DREF_SSC_SOURCE_MASK;
4870 temp |= DREF_SSC_SOURCE_DISABLE;
4871
4872 /* Turn off SSC1 */
4873 temp &= ~ DREF_SSC1_ENABLE;
4874
Jesse Barnes13d83a62011-08-03 12:59:20 -07004875 I915_WRITE(PCH_DREF_CONTROL, temp);
4876 POSTING_READ(PCH_DREF_CONTROL);
4877 udelay(200);
4878 }
4879}
4880
Jesse Barnesd9d444c2011-09-02 13:03:05 -07004881static int ironlake_get_refclk(struct drm_crtc *crtc)
4882{
4883 struct drm_device *dev = crtc->dev;
4884 struct drm_i915_private *dev_priv = dev->dev_private;
4885 struct intel_encoder *encoder;
Jesse Barnesd9d444c2011-09-02 13:03:05 -07004886 struct intel_encoder *edp_encoder = NULL;
4887 int num_connectors = 0;
4888 bool is_lvds = false;
4889
Daniel Vetter6c2b7c122012-07-05 09:50:24 +02004890 for_each_encoder_on_crtc(dev, crtc, encoder) {
Jesse Barnesd9d444c2011-09-02 13:03:05 -07004891 switch (encoder->type) {
4892 case INTEL_OUTPUT_LVDS:
4893 is_lvds = true;
4894 break;
4895 case INTEL_OUTPUT_EDP:
4896 edp_encoder = encoder;
4897 break;
4898 }
4899 num_connectors++;
4900 }
4901
4902 if (is_lvds && intel_panel_use_ssc(dev_priv) && num_connectors < 2) {
4903 DRM_DEBUG_KMS("using SSC reference clock of %d MHz\n",
4904 dev_priv->lvds_ssc_freq);
4905 return dev_priv->lvds_ssc_freq * 1000;
4906 }
4907
4908 return 120000;
4909}
4910
Paulo Zanonic8203562012-09-12 10:06:29 -03004911static void ironlake_set_pipeconf(struct drm_crtc *crtc,
4912 struct drm_display_mode *adjusted_mode,
4913 bool dither)
4914{
4915 struct drm_i915_private *dev_priv = crtc->dev->dev_private;
4916 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4917 int pipe = intel_crtc->pipe;
4918 uint32_t val;
4919
4920 val = I915_READ(PIPECONF(pipe));
4921
4922 val &= ~PIPE_BPC_MASK;
4923 switch (intel_crtc->bpp) {
4924 case 18:
4925 val |= PIPE_6BPC;
4926 break;
4927 case 24:
4928 val |= PIPE_8BPC;
4929 break;
4930 case 30:
4931 val |= PIPE_10BPC;
4932 break;
4933 case 36:
4934 val |= PIPE_12BPC;
4935 break;
4936 default:
Paulo Zanonicc769b62012-09-20 18:36:03 -03004937 /* Case prevented by intel_choose_pipe_bpp_dither. */
4938 BUG();
Paulo Zanonic8203562012-09-12 10:06:29 -03004939 }
4940
4941 val &= ~(PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_MASK);
4942 if (dither)
4943 val |= (PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_SP);
4944
4945 val &= ~PIPECONF_INTERLACE_MASK;
4946 if (adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE)
4947 val |= PIPECONF_INTERLACED_ILK;
4948 else
4949 val |= PIPECONF_PROGRESSIVE;
4950
4951 I915_WRITE(PIPECONF(pipe), val);
4952 POSTING_READ(PIPECONF(pipe));
4953}
4954
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03004955static void haswell_set_pipeconf(struct drm_crtc *crtc,
4956 struct drm_display_mode *adjusted_mode,
4957 bool dither)
4958{
4959 struct drm_i915_private *dev_priv = crtc->dev->dev_private;
4960 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Paulo Zanoni702e7a52012-10-23 18:29:59 -02004961 enum transcoder cpu_transcoder = intel_crtc->cpu_transcoder;
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03004962 uint32_t val;
4963
Paulo Zanoni702e7a52012-10-23 18:29:59 -02004964 val = I915_READ(PIPECONF(cpu_transcoder));
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03004965
4966 val &= ~(PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_MASK);
4967 if (dither)
4968 val |= (PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_SP);
4969
4970 val &= ~PIPECONF_INTERLACE_MASK_HSW;
4971 if (adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE)
4972 val |= PIPECONF_INTERLACED_ILK;
4973 else
4974 val |= PIPECONF_PROGRESSIVE;
4975
Paulo Zanoni702e7a52012-10-23 18:29:59 -02004976 I915_WRITE(PIPECONF(cpu_transcoder), val);
4977 POSTING_READ(PIPECONF(cpu_transcoder));
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03004978}
4979
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03004980static bool ironlake_compute_clocks(struct drm_crtc *crtc,
4981 struct drm_display_mode *adjusted_mode,
4982 intel_clock_t *clock,
4983 bool *has_reduced_clock,
4984 intel_clock_t *reduced_clock)
4985{
4986 struct drm_device *dev = crtc->dev;
4987 struct drm_i915_private *dev_priv = dev->dev_private;
4988 struct intel_encoder *intel_encoder;
4989 int refclk;
4990 const intel_limit_t *limit;
4991 bool ret, is_sdvo = false, is_tv = false, is_lvds = false;
4992
4993 for_each_encoder_on_crtc(dev, crtc, intel_encoder) {
4994 switch (intel_encoder->type) {
4995 case INTEL_OUTPUT_LVDS:
4996 is_lvds = true;
4997 break;
4998 case INTEL_OUTPUT_SDVO:
4999 case INTEL_OUTPUT_HDMI:
5000 is_sdvo = true;
5001 if (intel_encoder->needs_tv_clock)
5002 is_tv = true;
5003 break;
5004 case INTEL_OUTPUT_TVOUT:
5005 is_tv = true;
5006 break;
5007 }
5008 }
5009
5010 refclk = ironlake_get_refclk(crtc);
5011
5012 /*
5013 * Returns a set of divisors for the desired target clock with the given
5014 * refclk, or FALSE. The returned values represent the clock equation:
5015 * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2.
5016 */
5017 limit = intel_limit(crtc, refclk);
5018 ret = limit->find_pll(limit, crtc, adjusted_mode->clock, refclk, NULL,
5019 clock);
5020 if (!ret)
5021 return false;
5022
5023 if (is_lvds && dev_priv->lvds_downclock_avail) {
5024 /*
5025 * Ensure we match the reduced clock's P to the target clock.
5026 * If the clocks don't match, we can't switch the display clock
5027 * by using the FP0/FP1. In such case we will disable the LVDS
5028 * downclock feature.
5029 */
5030 *has_reduced_clock = limit->find_pll(limit, crtc,
5031 dev_priv->lvds_downclock,
5032 refclk,
5033 clock,
5034 reduced_clock);
5035 }
5036
5037 if (is_sdvo && is_tv)
5038 i9xx_adjust_sdvo_tv_clock(adjusted_mode, clock);
5039
5040 return true;
5041}
5042
Daniel Vetter01a415f2012-10-27 15:58:40 +02005043static void cpt_enable_fdi_bc_bifurcation(struct drm_device *dev)
5044{
5045 struct drm_i915_private *dev_priv = dev->dev_private;
5046 uint32_t temp;
5047
5048 temp = I915_READ(SOUTH_CHICKEN1);
5049 if (temp & FDI_BC_BIFURCATION_SELECT)
5050 return;
5051
5052 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_B)) & FDI_RX_ENABLE);
5053 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_C)) & FDI_RX_ENABLE);
5054
5055 temp |= FDI_BC_BIFURCATION_SELECT;
5056 DRM_DEBUG_KMS("enabling fdi C rx\n");
5057 I915_WRITE(SOUTH_CHICKEN1, temp);
5058 POSTING_READ(SOUTH_CHICKEN1);
5059}
5060
5061static bool ironlake_check_fdi_lanes(struct intel_crtc *intel_crtc)
5062{
5063 struct drm_device *dev = intel_crtc->base.dev;
5064 struct drm_i915_private *dev_priv = dev->dev_private;
5065 struct intel_crtc *pipe_B_crtc =
5066 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[PIPE_B]);
5067
5068 DRM_DEBUG_KMS("checking fdi config on pipe %i, lanes %i\n",
5069 intel_crtc->pipe, intel_crtc->fdi_lanes);
5070 if (intel_crtc->fdi_lanes > 4) {
5071 DRM_DEBUG_KMS("invalid fdi lane config on pipe %i: %i lanes\n",
5072 intel_crtc->pipe, intel_crtc->fdi_lanes);
5073 /* Clamp lanes to avoid programming the hw with bogus values. */
5074 intel_crtc->fdi_lanes = 4;
5075
5076 return false;
5077 }
5078
5079 if (dev_priv->num_pipe == 2)
5080 return true;
5081
5082 switch (intel_crtc->pipe) {
5083 case PIPE_A:
5084 return true;
5085 case PIPE_B:
5086 if (dev_priv->pipe_to_crtc_mapping[PIPE_C]->enabled &&
5087 intel_crtc->fdi_lanes > 2) {
5088 DRM_DEBUG_KMS("invalid shared fdi lane config on pipe %i: %i lanes\n",
5089 intel_crtc->pipe, intel_crtc->fdi_lanes);
5090 /* Clamp lanes to avoid programming the hw with bogus values. */
5091 intel_crtc->fdi_lanes = 2;
5092
5093 return false;
5094 }
5095
5096 if (intel_crtc->fdi_lanes > 2)
5097 WARN_ON(I915_READ(SOUTH_CHICKEN1) & FDI_BC_BIFURCATION_SELECT);
5098 else
5099 cpt_enable_fdi_bc_bifurcation(dev);
5100
5101 return true;
5102 case PIPE_C:
5103 if (!pipe_B_crtc->base.enabled || pipe_B_crtc->fdi_lanes <= 2) {
5104 if (intel_crtc->fdi_lanes > 2) {
5105 DRM_DEBUG_KMS("invalid shared fdi lane config on pipe %i: %i lanes\n",
5106 intel_crtc->pipe, intel_crtc->fdi_lanes);
5107 /* Clamp lanes to avoid programming the hw with bogus values. */
5108 intel_crtc->fdi_lanes = 2;
5109
5110 return false;
5111 }
5112 } else {
5113 DRM_DEBUG_KMS("fdi link B uses too many lanes to enable link C\n");
5114 return false;
5115 }
5116
5117 cpt_enable_fdi_bc_bifurcation(dev);
5118
5119 return true;
5120 default:
5121 BUG();
5122 }
5123}
5124
Paulo Zanonif48d8f22012-09-20 18:36:04 -03005125static void ironlake_set_m_n(struct drm_crtc *crtc,
5126 struct drm_display_mode *mode,
5127 struct drm_display_mode *adjusted_mode)
Jesse Barnes79e53942008-11-07 14:24:08 -08005128{
5129 struct drm_device *dev = crtc->dev;
5130 struct drm_i915_private *dev_priv = dev->dev_private;
5131 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Paulo Zanoniafe2fcf2012-10-23 18:30:01 -02005132 enum transcoder cpu_transcoder = intel_crtc->cpu_transcoder;
Paulo Zanonif48d8f22012-09-20 18:36:04 -03005133 struct intel_encoder *intel_encoder, *edp_encoder = NULL;
Jesse Barnes79e53942008-11-07 14:24:08 -08005134 struct fdi_m_n m_n = {0};
Paulo Zanonif48d8f22012-09-20 18:36:04 -03005135 int target_clock, pixel_multiplier, lane, link_bw;
5136 bool is_dp = false, is_cpu_edp = false;
Jesse Barnes79e53942008-11-07 14:24:08 -08005137
Paulo Zanonif48d8f22012-09-20 18:36:04 -03005138 for_each_encoder_on_crtc(dev, crtc, intel_encoder) {
5139 switch (intel_encoder->type) {
Jesse Barnes79e53942008-11-07 14:24:08 -08005140 case INTEL_OUTPUT_DISPLAYPORT:
5141 is_dp = true;
5142 break;
5143 case INTEL_OUTPUT_EDP:
Jesse Barnese3aef172012-04-10 11:58:03 -07005144 is_dp = true;
Paulo Zanonif48d8f22012-09-20 18:36:04 -03005145 if (!intel_encoder_is_pch_edp(&intel_encoder->base))
Jesse Barnese3aef172012-04-10 11:58:03 -07005146 is_cpu_edp = true;
Paulo Zanonif48d8f22012-09-20 18:36:04 -03005147 edp_encoder = intel_encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08005148 break;
5149 }
Kristian Høgsberg43565a02009-02-13 20:56:52 -05005150 }
5151
Zhenyu Wang2c072452009-06-05 15:38:42 +08005152 /* FDI link */
Eric Anholt8febb292011-03-30 13:01:07 -07005153 pixel_multiplier = intel_mode_get_pixel_multiplier(adjusted_mode);
5154 lane = 0;
5155 /* CPU eDP doesn't require FDI link, so just set DP M/N
5156 according to current link config */
Jesse Barnese3aef172012-04-10 11:58:03 -07005157 if (is_cpu_edp) {
Jesse Barnese3aef172012-04-10 11:58:03 -07005158 intel_edp_link_config(edp_encoder, &lane, &link_bw);
Eric Anholt8febb292011-03-30 13:01:07 -07005159 } else {
Eric Anholt8febb292011-03-30 13:01:07 -07005160 /* FDI is a binary signal running at ~2.7GHz, encoding
5161 * each output octet as 10 bits. The actual frequency
5162 * is stored as a divider into a 100MHz clock, and the
5163 * mode pixel clock is stored in units of 1KHz.
5164 * Hence the bw of each lane in terms of the mode signal
5165 * is:
5166 */
5167 link_bw = intel_fdi_link_freq(dev) * MHz(100)/KHz(1)/10;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08005168 }
Zhenyu Wang2c072452009-06-05 15:38:42 +08005169
Daniel Vetter94bf2ce2012-06-04 18:39:19 +02005170 /* [e]DP over FDI requires target mode clock instead of link clock. */
5171 if (edp_encoder)
5172 target_clock = intel_edp_target_clock(edp_encoder, mode);
5173 else if (is_dp)
5174 target_clock = mode->clock;
5175 else
5176 target_clock = adjusted_mode->clock;
5177
Eric Anholt8febb292011-03-30 13:01:07 -07005178 if (!lane) {
5179 /*
5180 * Account for spread spectrum to avoid
5181 * oversubscribing the link. Max center spread
5182 * is 2.5%; use 5% for safety's sake.
5183 */
Jesse Barnes5a354202011-06-24 12:19:22 -07005184 u32 bps = target_clock * intel_crtc->bpp * 21 / 20;
Eric Anholt8febb292011-03-30 13:01:07 -07005185 lane = bps / (link_bw * 8) + 1;
5186 }
5187
5188 intel_crtc->fdi_lanes = lane;
5189
5190 if (pixel_multiplier > 1)
5191 link_bw *= pixel_multiplier;
Jesse Barnes5a354202011-06-24 12:19:22 -07005192 ironlake_compute_m_n(intel_crtc->bpp, lane, target_clock, link_bw,
5193 &m_n);
Eric Anholt8febb292011-03-30 13:01:07 -07005194
Paulo Zanoniafe2fcf2012-10-23 18:30:01 -02005195 I915_WRITE(PIPE_DATA_M1(cpu_transcoder), TU_SIZE(m_n.tu) | m_n.gmch_m);
5196 I915_WRITE(PIPE_DATA_N1(cpu_transcoder), m_n.gmch_n);
5197 I915_WRITE(PIPE_LINK_M1(cpu_transcoder), m_n.link_m);
5198 I915_WRITE(PIPE_LINK_N1(cpu_transcoder), m_n.link_n);
Paulo Zanonif48d8f22012-09-20 18:36:04 -03005199}
5200
Paulo Zanonide13a2e2012-09-20 18:36:05 -03005201static uint32_t ironlake_compute_dpll(struct intel_crtc *intel_crtc,
5202 struct drm_display_mode *adjusted_mode,
5203 intel_clock_t *clock, u32 fp)
5204{
5205 struct drm_crtc *crtc = &intel_crtc->base;
5206 struct drm_device *dev = crtc->dev;
5207 struct drm_i915_private *dev_priv = dev->dev_private;
5208 struct intel_encoder *intel_encoder;
5209 uint32_t dpll;
5210 int factor, pixel_multiplier, num_connectors = 0;
5211 bool is_lvds = false, is_sdvo = false, is_tv = false;
5212 bool is_dp = false, is_cpu_edp = false;
5213
5214 for_each_encoder_on_crtc(dev, crtc, intel_encoder) {
5215 switch (intel_encoder->type) {
5216 case INTEL_OUTPUT_LVDS:
5217 is_lvds = true;
5218 break;
5219 case INTEL_OUTPUT_SDVO:
5220 case INTEL_OUTPUT_HDMI:
5221 is_sdvo = true;
5222 if (intel_encoder->needs_tv_clock)
5223 is_tv = true;
5224 break;
5225 case INTEL_OUTPUT_TVOUT:
5226 is_tv = true;
5227 break;
5228 case INTEL_OUTPUT_DISPLAYPORT:
5229 is_dp = true;
5230 break;
5231 case INTEL_OUTPUT_EDP:
5232 is_dp = true;
5233 if (!intel_encoder_is_pch_edp(&intel_encoder->base))
5234 is_cpu_edp = true;
5235 break;
5236 }
5237
5238 num_connectors++;
5239 }
Jesse Barnes79e53942008-11-07 14:24:08 -08005240
Chris Wilsonc1858122010-12-03 21:35:48 +00005241 /* Enable autotuning of the PLL clock (if permissible) */
Eric Anholt8febb292011-03-30 13:01:07 -07005242 factor = 21;
5243 if (is_lvds) {
5244 if ((intel_panel_use_ssc(dev_priv) &&
5245 dev_priv->lvds_ssc_freq == 100) ||
Daniel Vetter1974cad2012-11-26 17:22:09 +01005246 intel_is_dual_link_lvds(dev))
Eric Anholt8febb292011-03-30 13:01:07 -07005247 factor = 25;
5248 } else if (is_sdvo && is_tv)
5249 factor = 20;
Chris Wilsonc1858122010-12-03 21:35:48 +00005250
Paulo Zanonide13a2e2012-09-20 18:36:05 -03005251 if (clock->m < factor * clock->n)
Eric Anholt8febb292011-03-30 13:01:07 -07005252 fp |= FP_CB_TUNE;
Chris Wilsonc1858122010-12-03 21:35:48 +00005253
Chris Wilson5eddb702010-09-11 13:48:45 +01005254 dpll = 0;
Zhenyu Wang2c072452009-06-05 15:38:42 +08005255
Eric Anholta07d6782011-03-30 13:01:08 -07005256 if (is_lvds)
5257 dpll |= DPLLB_MODE_LVDS;
5258 else
5259 dpll |= DPLLB_MODE_DAC_SERIAL;
5260 if (is_sdvo) {
Paulo Zanonide13a2e2012-09-20 18:36:05 -03005261 pixel_multiplier = intel_mode_get_pixel_multiplier(adjusted_mode);
Eric Anholta07d6782011-03-30 13:01:08 -07005262 if (pixel_multiplier > 1) {
5263 dpll |= (pixel_multiplier - 1) << PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT;
Jesse Barnes79e53942008-11-07 14:24:08 -08005264 }
Eric Anholta07d6782011-03-30 13:01:08 -07005265 dpll |= DPLL_DVO_HIGH_SPEED;
5266 }
Jesse Barnese3aef172012-04-10 11:58:03 -07005267 if (is_dp && !is_cpu_edp)
Eric Anholta07d6782011-03-30 13:01:08 -07005268 dpll |= DPLL_DVO_HIGH_SPEED;
Jesse Barnes79e53942008-11-07 14:24:08 -08005269
Eric Anholta07d6782011-03-30 13:01:08 -07005270 /* compute bitmask from p1 value */
Paulo Zanonide13a2e2012-09-20 18:36:05 -03005271 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
Eric Anholta07d6782011-03-30 13:01:08 -07005272 /* also FPA1 */
Paulo Zanonide13a2e2012-09-20 18:36:05 -03005273 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
Eric Anholta07d6782011-03-30 13:01:08 -07005274
Paulo Zanonide13a2e2012-09-20 18:36:05 -03005275 switch (clock->p2) {
Eric Anholta07d6782011-03-30 13:01:08 -07005276 case 5:
5277 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
5278 break;
5279 case 7:
5280 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
5281 break;
5282 case 10:
5283 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
5284 break;
5285 case 14:
5286 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
5287 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08005288 }
5289
5290 if (is_sdvo && is_tv)
5291 dpll |= PLL_REF_INPUT_TVCLKINBC;
5292 else if (is_tv)
5293 /* XXX: just matching BIOS for now */
Kristian Høgsberg43565a02009-02-13 20:56:52 -05005294 /* dpll |= PLL_REF_INPUT_TVCLKINBC; */
Jesse Barnes79e53942008-11-07 14:24:08 -08005295 dpll |= 3;
Chris Wilsona7615032011-01-12 17:04:08 +00005296 else if (is_lvds && intel_panel_use_ssc(dev_priv) && num_connectors < 2)
Kristian Høgsberg43565a02009-02-13 20:56:52 -05005297 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
Jesse Barnes79e53942008-11-07 14:24:08 -08005298 else
5299 dpll |= PLL_REF_INPUT_DREFCLK;
5300
Paulo Zanonide13a2e2012-09-20 18:36:05 -03005301 return dpll;
5302}
5303
Jesse Barnes79e53942008-11-07 14:24:08 -08005304static int ironlake_crtc_mode_set(struct drm_crtc *crtc,
5305 struct drm_display_mode *mode,
5306 struct drm_display_mode *adjusted_mode,
5307 int x, int y,
Daniel Vetter94352cf2012-07-05 22:51:56 +02005308 struct drm_framebuffer *fb)
Jesse Barnes79e53942008-11-07 14:24:08 -08005309{
5310 struct drm_device *dev = crtc->dev;
5311 struct drm_i915_private *dev_priv = dev->dev_private;
5312 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5313 int pipe = intel_crtc->pipe;
5314 int plane = intel_crtc->plane;
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03005315 int num_connectors = 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08005316 intel_clock_t clock, reduced_clock;
Paulo Zanonia1f9e772012-09-12 10:06:32 -03005317 u32 dpll, fp = 0, fp2 = 0;
Paulo Zanonie2f12b02012-09-20 18:36:06 -03005318 bool ok, has_reduced_clock = false;
5319 bool is_lvds = false, is_dp = false, is_cpu_edp = false;
Paulo Zanonif48d8f22012-09-20 18:36:04 -03005320 struct intel_encoder *encoder;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03005321 int ret;
Daniel Vetter01a415f2012-10-27 15:58:40 +02005322 bool dither, fdi_config_ok;
Jesse Barnes79e53942008-11-07 14:24:08 -08005323
5324 for_each_encoder_on_crtc(dev, crtc, encoder) {
5325 switch (encoder->type) {
5326 case INTEL_OUTPUT_LVDS:
5327 is_lvds = true;
5328 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08005329 case INTEL_OUTPUT_DISPLAYPORT:
5330 is_dp = true;
5331 break;
5332 case INTEL_OUTPUT_EDP:
5333 is_dp = true;
Paulo Zanonie2f12b02012-09-20 18:36:06 -03005334 if (!intel_encoder_is_pch_edp(&encoder->base))
Jesse Barnes79e53942008-11-07 14:24:08 -08005335 is_cpu_edp = true;
Jesse Barnes79e53942008-11-07 14:24:08 -08005336 break;
5337 }
5338
5339 num_connectors++;
5340 }
5341
Paulo Zanoni5dc52982012-10-05 12:05:56 -03005342 WARN(!(HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev)),
5343 "Unexpected PCH type %d\n", INTEL_PCH_TYPE(dev));
5344
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03005345 ok = ironlake_compute_clocks(crtc, adjusted_mode, &clock,
5346 &has_reduced_clock, &reduced_clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08005347 if (!ok) {
5348 DRM_ERROR("Couldn't find PLL settings for mode!\n");
5349 return -EINVAL;
5350 }
5351
5352 /* Ensure that the cursor is valid for the new mode before changing... */
5353 intel_crtc_update_cursor(crtc, true);
5354
Jesse Barnes79e53942008-11-07 14:24:08 -08005355 /* determine panel color depth */
Jani Nikulac8241962012-11-02 10:19:55 +02005356 dither = intel_choose_pipe_bpp_dither(crtc, fb, &intel_crtc->bpp,
5357 adjusted_mode);
Paulo Zanonic8203562012-09-12 10:06:29 -03005358 if (is_lvds && dev_priv->lvds_dither)
5359 dither = true;
Jesse Barnes79e53942008-11-07 14:24:08 -08005360
Jesse Barnes79e53942008-11-07 14:24:08 -08005361 fp = clock.n << 16 | clock.m1 << 8 | clock.m2;
5362 if (has_reduced_clock)
5363 fp2 = reduced_clock.n << 16 | reduced_clock.m1 << 8 |
5364 reduced_clock.m2;
5365
Paulo Zanonide13a2e2012-09-20 18:36:05 -03005366 dpll = ironlake_compute_dpll(intel_crtc, adjusted_mode, &clock, fp);
Jesse Barnes79e53942008-11-07 14:24:08 -08005367
Jesse Barnesf7cb34d2011-10-12 10:49:14 -07005368 DRM_DEBUG_KMS("Mode for pipe %d:\n", pipe);
Jesse Barnes79e53942008-11-07 14:24:08 -08005369 drm_mode_debug_printmodeline(mode);
5370
Paulo Zanoni5dc52982012-10-05 12:05:56 -03005371 /* CPU eDP is the only output that doesn't need a PCH PLL of its own. */
5372 if (!is_cpu_edp) {
Jesse Barnesee7b9f92012-04-20 17:11:53 +01005373 struct intel_pch_pll *pll;
Chris Wilson5eddb702010-09-11 13:48:45 +01005374
Jesse Barnesee7b9f92012-04-20 17:11:53 +01005375 pll = intel_get_pch_pll(intel_crtc, dpll, fp);
5376 if (pll == NULL) {
5377 DRM_DEBUG_DRIVER("failed to find PLL for pipe %d\n",
5378 pipe);
Jesse Barnes4b645f12011-10-12 09:51:31 -07005379 return -EINVAL;
5380 }
Jesse Barnesee7b9f92012-04-20 17:11:53 +01005381 } else
5382 intel_put_pch_pll(intel_crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08005383
Jesse Barnese3aef172012-04-10 11:58:03 -07005384 if (is_dp && !is_cpu_edp) {
Keith Packarda4fc5ed2009-04-07 16:16:42 -07005385 intel_dp_set_m_n(crtc, mode, adjusted_mode);
Eric Anholt8febb292011-03-30 13:01:07 -07005386 } else {
Zhenyu Wang8db9d772010-04-07 16:15:54 +08005387 /* For non-DP output, clear any trans DP clock recovery setting.*/
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08005388 I915_WRITE(TRANSDATA_M1(pipe), 0);
5389 I915_WRITE(TRANSDATA_N1(pipe), 0);
5390 I915_WRITE(TRANSDPLINK_M1(pipe), 0);
5391 I915_WRITE(TRANSDPLINK_N1(pipe), 0);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08005392 }
Jesse Barnes79e53942008-11-07 14:24:08 -08005393
Daniel Vetterdafd2262012-11-26 17:22:07 +01005394 for_each_encoder_on_crtc(dev, crtc, encoder)
5395 if (encoder->pre_pll_enable)
5396 encoder->pre_pll_enable(encoder);
5397
Jesse Barnesee7b9f92012-04-20 17:11:53 +01005398 if (intel_crtc->pch_pll) {
5399 I915_WRITE(intel_crtc->pch_pll->pll_reg, dpll);
Chris Wilson5eddb702010-09-11 13:48:45 +01005400
Zhenyu Wang32f9d652009-07-24 01:00:32 +08005401 /* Wait for the clocks to stabilize. */
Jesse Barnesee7b9f92012-04-20 17:11:53 +01005402 POSTING_READ(intel_crtc->pch_pll->pll_reg);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08005403 udelay(150);
5404
Eric Anholt8febb292011-03-30 13:01:07 -07005405 /* The pixel multiplier can only be updated once the
5406 * DPLL is enabled and the clocks are stable.
5407 *
5408 * So write it again.
5409 */
Jesse Barnesee7b9f92012-04-20 17:11:53 +01005410 I915_WRITE(intel_crtc->pch_pll->pll_reg, dpll);
Jesse Barnes79e53942008-11-07 14:24:08 -08005411 }
Jesse Barnes79e53942008-11-07 14:24:08 -08005412
Chris Wilson5eddb702010-09-11 13:48:45 +01005413 intel_crtc->lowfreq_avail = false;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01005414 if (intel_crtc->pch_pll) {
Jesse Barnes4b645f12011-10-12 09:51:31 -07005415 if (is_lvds && has_reduced_clock && i915_powersave) {
Jesse Barnesee7b9f92012-04-20 17:11:53 +01005416 I915_WRITE(intel_crtc->pch_pll->fp1_reg, fp2);
Jesse Barnes4b645f12011-10-12 09:51:31 -07005417 intel_crtc->lowfreq_avail = true;
Jesse Barnes4b645f12011-10-12 09:51:31 -07005418 } else {
Jesse Barnesee7b9f92012-04-20 17:11:53 +01005419 I915_WRITE(intel_crtc->pch_pll->fp1_reg, fp);
Jesse Barnes652c3932009-08-17 13:31:43 -07005420 }
5421 }
5422
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005423 intel_set_pipe_timings(intel_crtc, mode, adjusted_mode);
Krzysztof Halasa734b4152010-05-25 18:41:46 +02005424
Daniel Vetter01a415f2012-10-27 15:58:40 +02005425 /* Note, this also computes intel_crtc->fdi_lanes which is used below in
5426 * ironlake_check_fdi_lanes. */
Paulo Zanonif48d8f22012-09-20 18:36:04 -03005427 ironlake_set_m_n(crtc, mode, adjusted_mode);
Chris Wilson5eddb702010-09-11 13:48:45 +01005428
Daniel Vetter01a415f2012-10-27 15:58:40 +02005429 fdi_config_ok = ironlake_check_fdi_lanes(intel_crtc);
Zhenyu Wang2c072452009-06-05 15:38:42 +08005430
Jesse Barnese3aef172012-04-10 11:58:03 -07005431 if (is_cpu_edp)
Eric Anholt8febb292011-03-30 13:01:07 -07005432 ironlake_set_pll_edp(crtc, adjusted_mode->clock);
Zhenyu Wang2c072452009-06-05 15:38:42 +08005433
Paulo Zanonic8203562012-09-12 10:06:29 -03005434 ironlake_set_pipeconf(crtc, adjusted_mode, dither);
Jesse Barnes79e53942008-11-07 14:24:08 -08005435
Jesse Barnes9d0498a2010-08-18 13:20:54 -07005436 intel_wait_for_vblank(dev, pipe);
Jesse Barnes79e53942008-11-07 14:24:08 -08005437
Paulo Zanonia1f9e772012-09-12 10:06:32 -03005438 /* Set up the display plane register */
5439 I915_WRITE(DSPCNTR(plane), DISPPLANE_GAMMA_ENABLE);
Jesse Barnesb24e7172011-01-04 15:09:30 -08005440 POSTING_READ(DSPCNTR(plane));
Jesse Barnes79e53942008-11-07 14:24:08 -08005441
Daniel Vetter94352cf2012-07-05 22:51:56 +02005442 ret = intel_pipe_set_base(crtc, x, y, fb);
Shaohua Li7662c8b2009-06-26 11:23:55 +08005443
5444 intel_update_watermarks(dev);
5445
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03005446 intel_update_linetime_watermarks(dev, pipe, adjusted_mode);
5447
Daniel Vetter01a415f2012-10-27 15:58:40 +02005448 return fdi_config_ok ? ret : -EINVAL;
Jesse Barnes79e53942008-11-07 14:24:08 -08005449}
5450
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03005451static int haswell_crtc_mode_set(struct drm_crtc *crtc,
5452 struct drm_display_mode *mode,
5453 struct drm_display_mode *adjusted_mode,
5454 int x, int y,
5455 struct drm_framebuffer *fb)
5456{
5457 struct drm_device *dev = crtc->dev;
5458 struct drm_i915_private *dev_priv = dev->dev_private;
5459 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5460 int pipe = intel_crtc->pipe;
5461 int plane = intel_crtc->plane;
5462 int num_connectors = 0;
5463 intel_clock_t clock, reduced_clock;
Paulo Zanoni5dc52982012-10-05 12:05:56 -03005464 u32 dpll = 0, fp = 0, fp2 = 0;
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03005465 bool ok, has_reduced_clock = false;
5466 bool is_lvds = false, is_dp = false, is_cpu_edp = false;
5467 struct intel_encoder *encoder;
5468 u32 temp;
5469 int ret;
5470 bool dither;
5471
5472 for_each_encoder_on_crtc(dev, crtc, encoder) {
5473 switch (encoder->type) {
5474 case INTEL_OUTPUT_LVDS:
5475 is_lvds = true;
5476 break;
5477 case INTEL_OUTPUT_DISPLAYPORT:
5478 is_dp = true;
5479 break;
5480 case INTEL_OUTPUT_EDP:
5481 is_dp = true;
5482 if (!intel_encoder_is_pch_edp(&encoder->base))
5483 is_cpu_edp = true;
5484 break;
5485 }
5486
5487 num_connectors++;
5488 }
5489
Paulo Zanonia5c961d2012-10-24 15:59:34 -02005490 if (is_cpu_edp)
5491 intel_crtc->cpu_transcoder = TRANSCODER_EDP;
5492 else
5493 intel_crtc->cpu_transcoder = pipe;
5494
Paulo Zanoni5dc52982012-10-05 12:05:56 -03005495 /* We are not sure yet this won't happen. */
5496 WARN(!HAS_PCH_LPT(dev), "Unexpected PCH type %d\n",
5497 INTEL_PCH_TYPE(dev));
5498
5499 WARN(num_connectors != 1, "%d connectors attached to pipe %c\n",
5500 num_connectors, pipe_name(pipe));
5501
Paulo Zanoni702e7a52012-10-23 18:29:59 -02005502 WARN_ON(I915_READ(PIPECONF(intel_crtc->cpu_transcoder)) &
Paulo Zanoni1ce42922012-10-05 12:06:01 -03005503 (PIPECONF_ENABLE | I965_PIPECONF_ACTIVE));
5504
5505 WARN_ON(I915_READ(DSPCNTR(plane)) & DISPLAY_PLANE_ENABLE);
5506
Paulo Zanoni6441ab52012-10-05 12:05:58 -03005507 if (!intel_ddi_pll_mode_set(crtc, adjusted_mode->clock))
5508 return -EINVAL;
5509
Paulo Zanoni5dc52982012-10-05 12:05:56 -03005510 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev)) {
5511 ok = ironlake_compute_clocks(crtc, adjusted_mode, &clock,
5512 &has_reduced_clock,
5513 &reduced_clock);
5514 if (!ok) {
5515 DRM_ERROR("Couldn't find PLL settings for mode!\n");
5516 return -EINVAL;
5517 }
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03005518 }
5519
5520 /* Ensure that the cursor is valid for the new mode before changing... */
5521 intel_crtc_update_cursor(crtc, true);
5522
5523 /* determine panel color depth */
Jani Nikulac8241962012-11-02 10:19:55 +02005524 dither = intel_choose_pipe_bpp_dither(crtc, fb, &intel_crtc->bpp,
5525 adjusted_mode);
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03005526 if (is_lvds && dev_priv->lvds_dither)
5527 dither = true;
5528
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03005529 DRM_DEBUG_KMS("Mode for pipe %d:\n", pipe);
5530 drm_mode_debug_printmodeline(mode);
5531
Paulo Zanoni5dc52982012-10-05 12:05:56 -03005532 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev)) {
5533 fp = clock.n << 16 | clock.m1 << 8 | clock.m2;
5534 if (has_reduced_clock)
5535 fp2 = reduced_clock.n << 16 | reduced_clock.m1 << 8 |
5536 reduced_clock.m2;
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03005537
Paulo Zanoni5dc52982012-10-05 12:05:56 -03005538 dpll = ironlake_compute_dpll(intel_crtc, adjusted_mode, &clock,
5539 fp);
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03005540
Paulo Zanoni5dc52982012-10-05 12:05:56 -03005541 /* CPU eDP is the only output that doesn't need a PCH PLL of its
5542 * own on pre-Haswell/LPT generation */
5543 if (!is_cpu_edp) {
5544 struct intel_pch_pll *pll;
5545
5546 pll = intel_get_pch_pll(intel_crtc, dpll, fp);
5547 if (pll == NULL) {
5548 DRM_DEBUG_DRIVER("failed to find PLL for pipe %d\n",
5549 pipe);
5550 return -EINVAL;
5551 }
5552 } else
5553 intel_put_pch_pll(intel_crtc);
5554
5555 /* The LVDS pin pair needs to be on before the DPLLs are
5556 * enabled. This is an exception to the general rule that
5557 * mode_set doesn't turn things on.
5558 */
5559 if (is_lvds) {
5560 temp = I915_READ(PCH_LVDS);
5561 temp |= LVDS_PORT_EN | LVDS_A0A2_CLKA_POWER_UP;
5562 if (HAS_PCH_CPT(dev)) {
5563 temp &= ~PORT_TRANS_SEL_MASK;
5564 temp |= PORT_TRANS_SEL_CPT(pipe);
5565 } else {
5566 if (pipe == 1)
5567 temp |= LVDS_PIPEB_SELECT;
5568 else
5569 temp &= ~LVDS_PIPEB_SELECT;
5570 }
5571
5572 /* set the corresponsding LVDS_BORDER bit */
5573 temp |= dev_priv->lvds_border_bits;
5574 /* Set the B0-B3 data pairs corresponding to whether
5575 * we're going to set the DPLLs for dual-channel mode or
5576 * not.
5577 */
5578 if (clock.p2 == 7)
5579 temp |= LVDS_B0B3_POWER_UP | LVDS_CLKB_POWER_UP;
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03005580 else
Paulo Zanoni5dc52982012-10-05 12:05:56 -03005581 temp &= ~(LVDS_B0B3_POWER_UP |
5582 LVDS_CLKB_POWER_UP);
5583
5584 /* It would be nice to set 24 vs 18-bit mode
5585 * (LVDS_A3_POWER_UP) appropriately here, but we need to
5586 * look more thoroughly into how panels behave in the
5587 * two modes.
5588 */
5589 temp &= ~(LVDS_HSYNC_POLARITY | LVDS_VSYNC_POLARITY);
5590 if (adjusted_mode->flags & DRM_MODE_FLAG_NHSYNC)
5591 temp |= LVDS_HSYNC_POLARITY;
5592 if (adjusted_mode->flags & DRM_MODE_FLAG_NVSYNC)
5593 temp |= LVDS_VSYNC_POLARITY;
5594 I915_WRITE(PCH_LVDS, temp);
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03005595 }
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03005596 }
5597
5598 if (is_dp && !is_cpu_edp) {
5599 intel_dp_set_m_n(crtc, mode, adjusted_mode);
5600 } else {
Paulo Zanoni5dc52982012-10-05 12:05:56 -03005601 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev)) {
5602 /* For non-DP output, clear any trans DP clock recovery
5603 * setting.*/
5604 I915_WRITE(TRANSDATA_M1(pipe), 0);
5605 I915_WRITE(TRANSDATA_N1(pipe), 0);
5606 I915_WRITE(TRANSDPLINK_M1(pipe), 0);
5607 I915_WRITE(TRANSDPLINK_N1(pipe), 0);
5608 }
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03005609 }
5610
5611 intel_crtc->lowfreq_avail = false;
Paulo Zanoni5dc52982012-10-05 12:05:56 -03005612 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev)) {
5613 if (intel_crtc->pch_pll) {
5614 I915_WRITE(intel_crtc->pch_pll->pll_reg, dpll);
5615
5616 /* Wait for the clocks to stabilize. */
5617 POSTING_READ(intel_crtc->pch_pll->pll_reg);
5618 udelay(150);
5619
5620 /* The pixel multiplier can only be updated once the
5621 * DPLL is enabled and the clocks are stable.
5622 *
5623 * So write it again.
5624 */
5625 I915_WRITE(intel_crtc->pch_pll->pll_reg, dpll);
5626 }
5627
5628 if (intel_crtc->pch_pll) {
5629 if (is_lvds && has_reduced_clock && i915_powersave) {
5630 I915_WRITE(intel_crtc->pch_pll->fp1_reg, fp2);
5631 intel_crtc->lowfreq_avail = true;
5632 } else {
5633 I915_WRITE(intel_crtc->pch_pll->fp1_reg, fp);
5634 }
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03005635 }
5636 }
5637
5638 intel_set_pipe_timings(intel_crtc, mode, adjusted_mode);
5639
Paulo Zanoni1eb8dfe2012-10-18 12:42:10 -03005640 if (!is_dp || is_cpu_edp)
5641 ironlake_set_m_n(crtc, mode, adjusted_mode);
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03005642
Paulo Zanoni5dc52982012-10-05 12:05:56 -03005643 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev))
5644 if (is_cpu_edp)
5645 ironlake_set_pll_edp(crtc, adjusted_mode->clock);
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03005646
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03005647 haswell_set_pipeconf(crtc, adjusted_mode, dither);
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03005648
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03005649 /* Set up the display plane register */
5650 I915_WRITE(DSPCNTR(plane), DISPPLANE_GAMMA_ENABLE);
5651 POSTING_READ(DSPCNTR(plane));
5652
5653 ret = intel_pipe_set_base(crtc, x, y, fb);
5654
5655 intel_update_watermarks(dev);
5656
5657 intel_update_linetime_watermarks(dev, pipe, adjusted_mode);
5658
Jesse Barnes79e53942008-11-07 14:24:08 -08005659 return ret;
5660}
5661
Eric Anholtf564048e2011-03-30 13:01:02 -07005662static int intel_crtc_mode_set(struct drm_crtc *crtc,
5663 struct drm_display_mode *mode,
5664 struct drm_display_mode *adjusted_mode,
5665 int x, int y,
Daniel Vetter94352cf2012-07-05 22:51:56 +02005666 struct drm_framebuffer *fb)
Eric Anholtf564048e2011-03-30 13:01:02 -07005667{
5668 struct drm_device *dev = crtc->dev;
5669 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter9256aa12012-10-31 19:26:13 +01005670 struct drm_encoder_helper_funcs *encoder_funcs;
5671 struct intel_encoder *encoder;
Eric Anholt0b701d22011-03-30 13:01:03 -07005672 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5673 int pipe = intel_crtc->pipe;
Eric Anholtf564048e2011-03-30 13:01:02 -07005674 int ret;
5675
Eric Anholt0b701d22011-03-30 13:01:03 -07005676 drm_vblank_pre_modeset(dev, pipe);
5677
Eric Anholtf564048e2011-03-30 13:01:02 -07005678 ret = dev_priv->display.crtc_mode_set(crtc, mode, adjusted_mode,
Daniel Vetter94352cf2012-07-05 22:51:56 +02005679 x, y, fb);
Jesse Barnes79e53942008-11-07 14:24:08 -08005680 drm_vblank_post_modeset(dev, pipe);
5681
Daniel Vetter9256aa12012-10-31 19:26:13 +01005682 if (ret != 0)
5683 return ret;
5684
5685 for_each_encoder_on_crtc(dev, crtc, encoder) {
5686 DRM_DEBUG_KMS("[ENCODER:%d:%s] set [MODE:%d:%s]\n",
5687 encoder->base.base.id,
5688 drm_get_encoder_name(&encoder->base),
5689 mode->base.id, mode->name);
5690 encoder_funcs = encoder->base.helper_private;
5691 encoder_funcs->mode_set(&encoder->base, mode, adjusted_mode);
5692 }
5693
5694 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08005695}
5696
Wu Fengguang3a9627f2011-12-09 20:42:19 +08005697static bool intel_eld_uptodate(struct drm_connector *connector,
5698 int reg_eldv, uint32_t bits_eldv,
5699 int reg_elda, uint32_t bits_elda,
5700 int reg_edid)
5701{
5702 struct drm_i915_private *dev_priv = connector->dev->dev_private;
5703 uint8_t *eld = connector->eld;
5704 uint32_t i;
5705
5706 i = I915_READ(reg_eldv);
5707 i &= bits_eldv;
5708
5709 if (!eld[0])
5710 return !i;
5711
5712 if (!i)
5713 return false;
5714
5715 i = I915_READ(reg_elda);
5716 i &= ~bits_elda;
5717 I915_WRITE(reg_elda, i);
5718
5719 for (i = 0; i < eld[2]; i++)
5720 if (I915_READ(reg_edid) != *((uint32_t *)eld + i))
5721 return false;
5722
5723 return true;
5724}
5725
Wu Fengguange0dac652011-09-05 14:25:34 +08005726static void g4x_write_eld(struct drm_connector *connector,
5727 struct drm_crtc *crtc)
5728{
5729 struct drm_i915_private *dev_priv = connector->dev->dev_private;
5730 uint8_t *eld = connector->eld;
5731 uint32_t eldv;
5732 uint32_t len;
5733 uint32_t i;
5734
5735 i = I915_READ(G4X_AUD_VID_DID);
5736
5737 if (i == INTEL_AUDIO_DEVBLC || i == INTEL_AUDIO_DEVCL)
5738 eldv = G4X_ELDV_DEVCL_DEVBLC;
5739 else
5740 eldv = G4X_ELDV_DEVCTG;
5741
Wu Fengguang3a9627f2011-12-09 20:42:19 +08005742 if (intel_eld_uptodate(connector,
5743 G4X_AUD_CNTL_ST, eldv,
5744 G4X_AUD_CNTL_ST, G4X_ELD_ADDR,
5745 G4X_HDMIW_HDMIEDID))
5746 return;
5747
Wu Fengguange0dac652011-09-05 14:25:34 +08005748 i = I915_READ(G4X_AUD_CNTL_ST);
5749 i &= ~(eldv | G4X_ELD_ADDR);
5750 len = (i >> 9) & 0x1f; /* ELD buffer size */
5751 I915_WRITE(G4X_AUD_CNTL_ST, i);
5752
5753 if (!eld[0])
5754 return;
5755
5756 len = min_t(uint8_t, eld[2], len);
5757 DRM_DEBUG_DRIVER("ELD size %d\n", len);
5758 for (i = 0; i < len; i++)
5759 I915_WRITE(G4X_HDMIW_HDMIEDID, *((uint32_t *)eld + i));
5760
5761 i = I915_READ(G4X_AUD_CNTL_ST);
5762 i |= eldv;
5763 I915_WRITE(G4X_AUD_CNTL_ST, i);
5764}
5765
Wang Xingchao83358c852012-08-16 22:43:37 +08005766static void haswell_write_eld(struct drm_connector *connector,
5767 struct drm_crtc *crtc)
5768{
5769 struct drm_i915_private *dev_priv = connector->dev->dev_private;
5770 uint8_t *eld = connector->eld;
5771 struct drm_device *dev = crtc->dev;
5772 uint32_t eldv;
5773 uint32_t i;
5774 int len;
5775 int pipe = to_intel_crtc(crtc)->pipe;
5776 int tmp;
5777
5778 int hdmiw_hdmiedid = HSW_AUD_EDID_DATA(pipe);
5779 int aud_cntl_st = HSW_AUD_DIP_ELD_CTRL(pipe);
5780 int aud_config = HSW_AUD_CFG(pipe);
5781 int aud_cntrl_st2 = HSW_AUD_PIN_ELD_CP_VLD;
5782
5783
5784 DRM_DEBUG_DRIVER("HDMI: Haswell Audio initialize....\n");
5785
5786 /* Audio output enable */
5787 DRM_DEBUG_DRIVER("HDMI audio: enable codec\n");
5788 tmp = I915_READ(aud_cntrl_st2);
5789 tmp |= (AUDIO_OUTPUT_ENABLE_A << (pipe * 4));
5790 I915_WRITE(aud_cntrl_st2, tmp);
5791
5792 /* Wait for 1 vertical blank */
5793 intel_wait_for_vblank(dev, pipe);
5794
5795 /* Set ELD valid state */
5796 tmp = I915_READ(aud_cntrl_st2);
5797 DRM_DEBUG_DRIVER("HDMI audio: pin eld vld status=0x%8x\n", tmp);
5798 tmp |= (AUDIO_ELD_VALID_A << (pipe * 4));
5799 I915_WRITE(aud_cntrl_st2, tmp);
5800 tmp = I915_READ(aud_cntrl_st2);
5801 DRM_DEBUG_DRIVER("HDMI audio: eld vld status=0x%8x\n", tmp);
5802
5803 /* Enable HDMI mode */
5804 tmp = I915_READ(aud_config);
5805 DRM_DEBUG_DRIVER("HDMI audio: audio conf: 0x%8x\n", tmp);
5806 /* clear N_programing_enable and N_value_index */
5807 tmp &= ~(AUD_CONFIG_N_VALUE_INDEX | AUD_CONFIG_N_PROG_ENABLE);
5808 I915_WRITE(aud_config, tmp);
5809
5810 DRM_DEBUG_DRIVER("ELD on pipe %c\n", pipe_name(pipe));
5811
5812 eldv = AUDIO_ELD_VALID_A << (pipe * 4);
5813
5814 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT)) {
5815 DRM_DEBUG_DRIVER("ELD: DisplayPort detected\n");
5816 eld[5] |= (1 << 2); /* Conn_Type, 0x1 = DisplayPort */
5817 I915_WRITE(aud_config, AUD_CONFIG_N_VALUE_INDEX); /* 0x1 = DP */
5818 } else
5819 I915_WRITE(aud_config, 0);
5820
5821 if (intel_eld_uptodate(connector,
5822 aud_cntrl_st2, eldv,
5823 aud_cntl_st, IBX_ELD_ADDRESS,
5824 hdmiw_hdmiedid))
5825 return;
5826
5827 i = I915_READ(aud_cntrl_st2);
5828 i &= ~eldv;
5829 I915_WRITE(aud_cntrl_st2, i);
5830
5831 if (!eld[0])
5832 return;
5833
5834 i = I915_READ(aud_cntl_st);
5835 i &= ~IBX_ELD_ADDRESS;
5836 I915_WRITE(aud_cntl_st, i);
5837 i = (i >> 29) & DIP_PORT_SEL_MASK; /* DIP_Port_Select, 0x1 = PortB */
5838 DRM_DEBUG_DRIVER("port num:%d\n", i);
5839
5840 len = min_t(uint8_t, eld[2], 21); /* 84 bytes of hw ELD buffer */
5841 DRM_DEBUG_DRIVER("ELD size %d\n", len);
5842 for (i = 0; i < len; i++)
5843 I915_WRITE(hdmiw_hdmiedid, *((uint32_t *)eld + i));
5844
5845 i = I915_READ(aud_cntrl_st2);
5846 i |= eldv;
5847 I915_WRITE(aud_cntrl_st2, i);
5848
5849}
5850
Wu Fengguange0dac652011-09-05 14:25:34 +08005851static void ironlake_write_eld(struct drm_connector *connector,
5852 struct drm_crtc *crtc)
5853{
5854 struct drm_i915_private *dev_priv = connector->dev->dev_private;
5855 uint8_t *eld = connector->eld;
5856 uint32_t eldv;
5857 uint32_t i;
5858 int len;
5859 int hdmiw_hdmiedid;
Wu Fengguangb6daa022012-01-06 14:41:31 -06005860 int aud_config;
Wu Fengguange0dac652011-09-05 14:25:34 +08005861 int aud_cntl_st;
5862 int aud_cntrl_st2;
Wang Xingchao9b138a82012-08-09 16:52:18 +08005863 int pipe = to_intel_crtc(crtc)->pipe;
Wu Fengguange0dac652011-09-05 14:25:34 +08005864
Wu Fengguangb3f33cb2011-12-09 20:42:17 +08005865 if (HAS_PCH_IBX(connector->dev)) {
Wang Xingchao9b138a82012-08-09 16:52:18 +08005866 hdmiw_hdmiedid = IBX_HDMIW_HDMIEDID(pipe);
5867 aud_config = IBX_AUD_CFG(pipe);
5868 aud_cntl_st = IBX_AUD_CNTL_ST(pipe);
Wu Fengguang1202b4c62011-12-09 20:42:18 +08005869 aud_cntrl_st2 = IBX_AUD_CNTL_ST2;
Wu Fengguange0dac652011-09-05 14:25:34 +08005870 } else {
Wang Xingchao9b138a82012-08-09 16:52:18 +08005871 hdmiw_hdmiedid = CPT_HDMIW_HDMIEDID(pipe);
5872 aud_config = CPT_AUD_CFG(pipe);
5873 aud_cntl_st = CPT_AUD_CNTL_ST(pipe);
Wu Fengguang1202b4c62011-12-09 20:42:18 +08005874 aud_cntrl_st2 = CPT_AUD_CNTRL_ST2;
Wu Fengguange0dac652011-09-05 14:25:34 +08005875 }
5876
Wang Xingchao9b138a82012-08-09 16:52:18 +08005877 DRM_DEBUG_DRIVER("ELD on pipe %c\n", pipe_name(pipe));
Wu Fengguange0dac652011-09-05 14:25:34 +08005878
5879 i = I915_READ(aud_cntl_st);
Wang Xingchao9b138a82012-08-09 16:52:18 +08005880 i = (i >> 29) & DIP_PORT_SEL_MASK; /* DIP_Port_Select, 0x1 = PortB */
Wu Fengguange0dac652011-09-05 14:25:34 +08005881 if (!i) {
5882 DRM_DEBUG_DRIVER("Audio directed to unknown port\n");
5883 /* operate blindly on all ports */
Wu Fengguang1202b4c62011-12-09 20:42:18 +08005884 eldv = IBX_ELD_VALIDB;
5885 eldv |= IBX_ELD_VALIDB << 4;
5886 eldv |= IBX_ELD_VALIDB << 8;
Wu Fengguange0dac652011-09-05 14:25:34 +08005887 } else {
5888 DRM_DEBUG_DRIVER("ELD on port %c\n", 'A' + i);
Wu Fengguang1202b4c62011-12-09 20:42:18 +08005889 eldv = IBX_ELD_VALIDB << ((i - 1) * 4);
Wu Fengguange0dac652011-09-05 14:25:34 +08005890 }
5891
Wu Fengguang3a9627f2011-12-09 20:42:19 +08005892 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT)) {
5893 DRM_DEBUG_DRIVER("ELD: DisplayPort detected\n");
5894 eld[5] |= (1 << 2); /* Conn_Type, 0x1 = DisplayPort */
Wu Fengguangb6daa022012-01-06 14:41:31 -06005895 I915_WRITE(aud_config, AUD_CONFIG_N_VALUE_INDEX); /* 0x1 = DP */
5896 } else
5897 I915_WRITE(aud_config, 0);
Wu Fengguang3a9627f2011-12-09 20:42:19 +08005898
5899 if (intel_eld_uptodate(connector,
5900 aud_cntrl_st2, eldv,
5901 aud_cntl_st, IBX_ELD_ADDRESS,
5902 hdmiw_hdmiedid))
5903 return;
5904
Wu Fengguange0dac652011-09-05 14:25:34 +08005905 i = I915_READ(aud_cntrl_st2);
5906 i &= ~eldv;
5907 I915_WRITE(aud_cntrl_st2, i);
5908
5909 if (!eld[0])
5910 return;
5911
Wu Fengguange0dac652011-09-05 14:25:34 +08005912 i = I915_READ(aud_cntl_st);
Wu Fengguang1202b4c62011-12-09 20:42:18 +08005913 i &= ~IBX_ELD_ADDRESS;
Wu Fengguange0dac652011-09-05 14:25:34 +08005914 I915_WRITE(aud_cntl_st, i);
5915
5916 len = min_t(uint8_t, eld[2], 21); /* 84 bytes of hw ELD buffer */
5917 DRM_DEBUG_DRIVER("ELD size %d\n", len);
5918 for (i = 0; i < len; i++)
5919 I915_WRITE(hdmiw_hdmiedid, *((uint32_t *)eld + i));
5920
5921 i = I915_READ(aud_cntrl_st2);
5922 i |= eldv;
5923 I915_WRITE(aud_cntrl_st2, i);
5924}
5925
5926void intel_write_eld(struct drm_encoder *encoder,
5927 struct drm_display_mode *mode)
5928{
5929 struct drm_crtc *crtc = encoder->crtc;
5930 struct drm_connector *connector;
5931 struct drm_device *dev = encoder->dev;
5932 struct drm_i915_private *dev_priv = dev->dev_private;
5933
5934 connector = drm_select_eld(encoder, mode);
5935 if (!connector)
5936 return;
5937
5938 DRM_DEBUG_DRIVER("ELD on [CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
5939 connector->base.id,
5940 drm_get_connector_name(connector),
5941 connector->encoder->base.id,
5942 drm_get_encoder_name(connector->encoder));
5943
5944 connector->eld[6] = drm_av_sync_delay(connector, mode) / 2;
5945
5946 if (dev_priv->display.write_eld)
5947 dev_priv->display.write_eld(connector, crtc);
5948}
5949
Jesse Barnes79e53942008-11-07 14:24:08 -08005950/** Loads the palette/gamma unit for the CRTC with the prepared values */
5951void intel_crtc_load_lut(struct drm_crtc *crtc)
5952{
5953 struct drm_device *dev = crtc->dev;
5954 struct drm_i915_private *dev_priv = dev->dev_private;
5955 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08005956 int palreg = PALETTE(intel_crtc->pipe);
Jesse Barnes79e53942008-11-07 14:24:08 -08005957 int i;
5958
5959 /* The clocks have to be on to load the palette. */
Alban Browaeysaed3f092012-02-24 17:12:45 +00005960 if (!crtc->enabled || !intel_crtc->active)
Jesse Barnes79e53942008-11-07 14:24:08 -08005961 return;
5962
Adam Jacksonf2b115e2009-12-03 17:14:42 -05005963 /* use legacy palette for Ironlake */
Eric Anholtbad720f2009-10-22 16:11:14 -07005964 if (HAS_PCH_SPLIT(dev))
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08005965 palreg = LGC_PALETTE(intel_crtc->pipe);
Zhenyu Wang2c072452009-06-05 15:38:42 +08005966
Jesse Barnes79e53942008-11-07 14:24:08 -08005967 for (i = 0; i < 256; i++) {
5968 I915_WRITE(palreg + 4 * i,
5969 (intel_crtc->lut_r[i] << 16) |
5970 (intel_crtc->lut_g[i] << 8) |
5971 intel_crtc->lut_b[i]);
5972 }
5973}
5974
Chris Wilson560b85b2010-08-07 11:01:38 +01005975static void i845_update_cursor(struct drm_crtc *crtc, u32 base)
5976{
5977 struct drm_device *dev = crtc->dev;
5978 struct drm_i915_private *dev_priv = dev->dev_private;
5979 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5980 bool visible = base != 0;
5981 u32 cntl;
5982
5983 if (intel_crtc->cursor_visible == visible)
5984 return;
5985
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08005986 cntl = I915_READ(_CURACNTR);
Chris Wilson560b85b2010-08-07 11:01:38 +01005987 if (visible) {
5988 /* On these chipsets we can only modify the base whilst
5989 * the cursor is disabled.
5990 */
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08005991 I915_WRITE(_CURABASE, base);
Chris Wilson560b85b2010-08-07 11:01:38 +01005992
5993 cntl &= ~(CURSOR_FORMAT_MASK);
5994 /* XXX width must be 64, stride 256 => 0x00 << 28 */
5995 cntl |= CURSOR_ENABLE |
5996 CURSOR_GAMMA_ENABLE |
5997 CURSOR_FORMAT_ARGB;
5998 } else
5999 cntl &= ~(CURSOR_ENABLE | CURSOR_GAMMA_ENABLE);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08006000 I915_WRITE(_CURACNTR, cntl);
Chris Wilson560b85b2010-08-07 11:01:38 +01006001
6002 intel_crtc->cursor_visible = visible;
6003}
6004
6005static void i9xx_update_cursor(struct drm_crtc *crtc, u32 base)
6006{
6007 struct drm_device *dev = crtc->dev;
6008 struct drm_i915_private *dev_priv = dev->dev_private;
6009 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6010 int pipe = intel_crtc->pipe;
6011 bool visible = base != 0;
6012
6013 if (intel_crtc->cursor_visible != visible) {
Jesse Barnes548f2452011-02-17 10:40:53 -08006014 uint32_t cntl = I915_READ(CURCNTR(pipe));
Chris Wilson560b85b2010-08-07 11:01:38 +01006015 if (base) {
6016 cntl &= ~(CURSOR_MODE | MCURSOR_PIPE_SELECT);
6017 cntl |= CURSOR_MODE_64_ARGB_AX | MCURSOR_GAMMA_ENABLE;
6018 cntl |= pipe << 28; /* Connect to correct pipe */
6019 } else {
6020 cntl &= ~(CURSOR_MODE | MCURSOR_GAMMA_ENABLE);
6021 cntl |= CURSOR_MODE_DISABLE;
6022 }
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08006023 I915_WRITE(CURCNTR(pipe), cntl);
Chris Wilson560b85b2010-08-07 11:01:38 +01006024
6025 intel_crtc->cursor_visible = visible;
6026 }
6027 /* and commit changes on next vblank */
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08006028 I915_WRITE(CURBASE(pipe), base);
Chris Wilson560b85b2010-08-07 11:01:38 +01006029}
6030
Jesse Barnes65a21cd2011-10-12 11:10:21 -07006031static void ivb_update_cursor(struct drm_crtc *crtc, u32 base)
6032{
6033 struct drm_device *dev = crtc->dev;
6034 struct drm_i915_private *dev_priv = dev->dev_private;
6035 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6036 int pipe = intel_crtc->pipe;
6037 bool visible = base != 0;
6038
6039 if (intel_crtc->cursor_visible != visible) {
6040 uint32_t cntl = I915_READ(CURCNTR_IVB(pipe));
6041 if (base) {
6042 cntl &= ~CURSOR_MODE;
6043 cntl |= CURSOR_MODE_64_ARGB_AX | MCURSOR_GAMMA_ENABLE;
6044 } else {
6045 cntl &= ~(CURSOR_MODE | MCURSOR_GAMMA_ENABLE);
6046 cntl |= CURSOR_MODE_DISABLE;
6047 }
6048 I915_WRITE(CURCNTR_IVB(pipe), cntl);
6049
6050 intel_crtc->cursor_visible = visible;
6051 }
6052 /* and commit changes on next vblank */
6053 I915_WRITE(CURBASE_IVB(pipe), base);
6054}
6055
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01006056/* If no-part of the cursor is visible on the framebuffer, then the GPU may hang... */
Chris Wilson6b383a72010-09-13 13:54:26 +01006057static void intel_crtc_update_cursor(struct drm_crtc *crtc,
6058 bool on)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01006059{
6060 struct drm_device *dev = crtc->dev;
6061 struct drm_i915_private *dev_priv = dev->dev_private;
6062 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6063 int pipe = intel_crtc->pipe;
6064 int x = intel_crtc->cursor_x;
6065 int y = intel_crtc->cursor_y;
Chris Wilson560b85b2010-08-07 11:01:38 +01006066 u32 base, pos;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01006067 bool visible;
6068
6069 pos = 0;
6070
Chris Wilson6b383a72010-09-13 13:54:26 +01006071 if (on && crtc->enabled && crtc->fb) {
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01006072 base = intel_crtc->cursor_addr;
6073 if (x > (int) crtc->fb->width)
6074 base = 0;
6075
6076 if (y > (int) crtc->fb->height)
6077 base = 0;
6078 } else
6079 base = 0;
6080
6081 if (x < 0) {
6082 if (x + intel_crtc->cursor_width < 0)
6083 base = 0;
6084
6085 pos |= CURSOR_POS_SIGN << CURSOR_X_SHIFT;
6086 x = -x;
6087 }
6088 pos |= x << CURSOR_X_SHIFT;
6089
6090 if (y < 0) {
6091 if (y + intel_crtc->cursor_height < 0)
6092 base = 0;
6093
6094 pos |= CURSOR_POS_SIGN << CURSOR_Y_SHIFT;
6095 y = -y;
6096 }
6097 pos |= y << CURSOR_Y_SHIFT;
6098
6099 visible = base != 0;
Chris Wilson560b85b2010-08-07 11:01:38 +01006100 if (!visible && !intel_crtc->cursor_visible)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01006101 return;
6102
Eugeni Dodonov0cd83aa2012-04-13 17:08:48 -03006103 if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev)) {
Jesse Barnes65a21cd2011-10-12 11:10:21 -07006104 I915_WRITE(CURPOS_IVB(pipe), pos);
6105 ivb_update_cursor(crtc, base);
6106 } else {
6107 I915_WRITE(CURPOS(pipe), pos);
6108 if (IS_845G(dev) || IS_I865G(dev))
6109 i845_update_cursor(crtc, base);
6110 else
6111 i9xx_update_cursor(crtc, base);
6112 }
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01006113}
6114
Jesse Barnes79e53942008-11-07 14:24:08 -08006115static int intel_crtc_cursor_set(struct drm_crtc *crtc,
Chris Wilson05394f32010-11-08 19:18:58 +00006116 struct drm_file *file,
Jesse Barnes79e53942008-11-07 14:24:08 -08006117 uint32_t handle,
6118 uint32_t width, uint32_t height)
6119{
6120 struct drm_device *dev = crtc->dev;
6121 struct drm_i915_private *dev_priv = dev->dev_private;
6122 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Chris Wilson05394f32010-11-08 19:18:58 +00006123 struct drm_i915_gem_object *obj;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01006124 uint32_t addr;
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05006125 int ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08006126
Jesse Barnes79e53942008-11-07 14:24:08 -08006127 /* if we want to turn off the cursor ignore width and height */
6128 if (!handle) {
Zhao Yakui28c97732009-10-09 11:39:41 +08006129 DRM_DEBUG_KMS("cursor off\n");
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05006130 addr = 0;
Chris Wilson05394f32010-11-08 19:18:58 +00006131 obj = NULL;
Pierre Willenbrock50044172009-02-23 10:12:15 +10006132 mutex_lock(&dev->struct_mutex);
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05006133 goto finish;
Jesse Barnes79e53942008-11-07 14:24:08 -08006134 }
6135
6136 /* Currently we only support 64x64 cursors */
6137 if (width != 64 || height != 64) {
6138 DRM_ERROR("we currently only support 64x64 cursors\n");
6139 return -EINVAL;
6140 }
6141
Chris Wilson05394f32010-11-08 19:18:58 +00006142 obj = to_intel_bo(drm_gem_object_lookup(dev, file, handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00006143 if (&obj->base == NULL)
Jesse Barnes79e53942008-11-07 14:24:08 -08006144 return -ENOENT;
6145
Chris Wilson05394f32010-11-08 19:18:58 +00006146 if (obj->base.size < width * height * 4) {
Jesse Barnes79e53942008-11-07 14:24:08 -08006147 DRM_ERROR("buffer is to small\n");
Dave Airlie34b8686e2009-01-15 14:03:07 +10006148 ret = -ENOMEM;
6149 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -08006150 }
6151
Dave Airlie71acb5e2008-12-30 20:31:46 +10006152 /* we only need to pin inside GTT if cursor is non-phy */
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05006153 mutex_lock(&dev->struct_mutex);
Kristian Høgsbergb295d1b2009-12-16 15:16:17 -05006154 if (!dev_priv->info->cursor_needs_physical) {
Chris Wilsond9e86c02010-11-10 16:40:20 +00006155 if (obj->tiling_mode) {
6156 DRM_ERROR("cursor cannot be tiled\n");
6157 ret = -EINVAL;
6158 goto fail_locked;
6159 }
6160
Chris Wilson2da3b9b2011-04-14 09:41:17 +01006161 ret = i915_gem_object_pin_to_display_plane(obj, 0, NULL);
Chris Wilsone7b526b2010-06-02 08:30:48 +01006162 if (ret) {
6163 DRM_ERROR("failed to move cursor bo into the GTT\n");
Chris Wilson2da3b9b2011-04-14 09:41:17 +01006164 goto fail_locked;
Chris Wilsone7b526b2010-06-02 08:30:48 +01006165 }
6166
Chris Wilsond9e86c02010-11-10 16:40:20 +00006167 ret = i915_gem_object_put_fence(obj);
6168 if (ret) {
Chris Wilson2da3b9b2011-04-14 09:41:17 +01006169 DRM_ERROR("failed to release fence for cursor");
Chris Wilsond9e86c02010-11-10 16:40:20 +00006170 goto fail_unpin;
6171 }
6172
Chris Wilson05394f32010-11-08 19:18:58 +00006173 addr = obj->gtt_offset;
Dave Airlie71acb5e2008-12-30 20:31:46 +10006174 } else {
Chris Wilson6eeefaf2010-08-07 11:01:39 +01006175 int align = IS_I830(dev) ? 16 * 1024 : 256;
Chris Wilson05394f32010-11-08 19:18:58 +00006176 ret = i915_gem_attach_phys_object(dev, obj,
Chris Wilson6eeefaf2010-08-07 11:01:39 +01006177 (intel_crtc->pipe == 0) ? I915_GEM_PHYS_CURSOR_0 : I915_GEM_PHYS_CURSOR_1,
6178 align);
Dave Airlie71acb5e2008-12-30 20:31:46 +10006179 if (ret) {
6180 DRM_ERROR("failed to attach phys object\n");
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05006181 goto fail_locked;
Dave Airlie71acb5e2008-12-30 20:31:46 +10006182 }
Chris Wilson05394f32010-11-08 19:18:58 +00006183 addr = obj->phys_obj->handle->busaddr;
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05006184 }
6185
Chris Wilsona6c45cf2010-09-17 00:32:17 +01006186 if (IS_GEN2(dev))
Jesse Barnes14b60392009-05-20 16:47:08 -04006187 I915_WRITE(CURSIZE, (height << 12) | width);
6188
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05006189 finish:
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05006190 if (intel_crtc->cursor_bo) {
Kristian Høgsbergb295d1b2009-12-16 15:16:17 -05006191 if (dev_priv->info->cursor_needs_physical) {
Chris Wilson05394f32010-11-08 19:18:58 +00006192 if (intel_crtc->cursor_bo != obj)
Dave Airlie71acb5e2008-12-30 20:31:46 +10006193 i915_gem_detach_phys_object(dev, intel_crtc->cursor_bo);
6194 } else
6195 i915_gem_object_unpin(intel_crtc->cursor_bo);
Chris Wilson05394f32010-11-08 19:18:58 +00006196 drm_gem_object_unreference(&intel_crtc->cursor_bo->base);
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05006197 }
Jesse Barnes80824002009-09-10 15:28:06 -07006198
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05006199 mutex_unlock(&dev->struct_mutex);
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05006200
6201 intel_crtc->cursor_addr = addr;
Chris Wilson05394f32010-11-08 19:18:58 +00006202 intel_crtc->cursor_bo = obj;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01006203 intel_crtc->cursor_width = width;
6204 intel_crtc->cursor_height = height;
6205
Chris Wilson6b383a72010-09-13 13:54:26 +01006206 intel_crtc_update_cursor(crtc, true);
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05006207
Jesse Barnes79e53942008-11-07 14:24:08 -08006208 return 0;
Chris Wilsone7b526b2010-06-02 08:30:48 +01006209fail_unpin:
Chris Wilson05394f32010-11-08 19:18:58 +00006210 i915_gem_object_unpin(obj);
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05006211fail_locked:
Dave Airlie34b8686e2009-01-15 14:03:07 +10006212 mutex_unlock(&dev->struct_mutex);
Luca Barbieribc9025b2010-02-09 05:49:12 +00006213fail:
Chris Wilson05394f32010-11-08 19:18:58 +00006214 drm_gem_object_unreference_unlocked(&obj->base);
Dave Airlie34b8686e2009-01-15 14:03:07 +10006215 return ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08006216}
6217
6218static int intel_crtc_cursor_move(struct drm_crtc *crtc, int x, int y)
6219{
Jesse Barnes79e53942008-11-07 14:24:08 -08006220 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08006221
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01006222 intel_crtc->cursor_x = x;
6223 intel_crtc->cursor_y = y;
Jesse Barnes652c3932009-08-17 13:31:43 -07006224
Chris Wilson6b383a72010-09-13 13:54:26 +01006225 intel_crtc_update_cursor(crtc, true);
Jesse Barnes79e53942008-11-07 14:24:08 -08006226
6227 return 0;
6228}
6229
6230/** Sets the color ramps on behalf of RandR */
6231void intel_crtc_fb_gamma_set(struct drm_crtc *crtc, u16 red, u16 green,
6232 u16 blue, int regno)
6233{
6234 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6235
6236 intel_crtc->lut_r[regno] = red >> 8;
6237 intel_crtc->lut_g[regno] = green >> 8;
6238 intel_crtc->lut_b[regno] = blue >> 8;
6239}
6240
Dave Airlieb8c00ac2009-10-06 13:54:01 +10006241void intel_crtc_fb_gamma_get(struct drm_crtc *crtc, u16 *red, u16 *green,
6242 u16 *blue, int regno)
6243{
6244 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6245
6246 *red = intel_crtc->lut_r[regno] << 8;
6247 *green = intel_crtc->lut_g[regno] << 8;
6248 *blue = intel_crtc->lut_b[regno] << 8;
6249}
6250
Jesse Barnes79e53942008-11-07 14:24:08 -08006251static void intel_crtc_gamma_set(struct drm_crtc *crtc, u16 *red, u16 *green,
James Simmons72034252010-08-03 01:33:19 +01006252 u16 *blue, uint32_t start, uint32_t size)
Jesse Barnes79e53942008-11-07 14:24:08 -08006253{
James Simmons72034252010-08-03 01:33:19 +01006254 int end = (start + size > 256) ? 256 : start + size, i;
Jesse Barnes79e53942008-11-07 14:24:08 -08006255 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08006256
James Simmons72034252010-08-03 01:33:19 +01006257 for (i = start; i < end; i++) {
Jesse Barnes79e53942008-11-07 14:24:08 -08006258 intel_crtc->lut_r[i] = red[i] >> 8;
6259 intel_crtc->lut_g[i] = green[i] >> 8;
6260 intel_crtc->lut_b[i] = blue[i] >> 8;
6261 }
6262
6263 intel_crtc_load_lut(crtc);
6264}
6265
6266/**
6267 * Get a pipe with a simple mode set on it for doing load-based monitor
6268 * detection.
6269 *
6270 * It will be up to the load-detect code to adjust the pipe as appropriate for
Eric Anholtc751ce42010-03-25 11:48:48 -07006271 * its requirements. The pipe will be connected to no other encoders.
Jesse Barnes79e53942008-11-07 14:24:08 -08006272 *
Eric Anholtc751ce42010-03-25 11:48:48 -07006273 * Currently this code will only succeed if there is a pipe with no encoders
Jesse Barnes79e53942008-11-07 14:24:08 -08006274 * configured for it. In the future, it could choose to temporarily disable
6275 * some outputs to free up a pipe for its use.
6276 *
6277 * \return crtc, or NULL if no pipes are available.
6278 */
6279
6280/* VESA 640x480x72Hz mode to set on the pipe */
6281static struct drm_display_mode load_detect_mode = {
6282 DRM_MODE("640x480", DRM_MODE_TYPE_DEFAULT, 31500, 640, 664,
6283 704, 832, 0, 480, 489, 491, 520, 0, DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
6284};
6285
Chris Wilsond2dff872011-04-19 08:36:26 +01006286static struct drm_framebuffer *
6287intel_framebuffer_create(struct drm_device *dev,
Jesse Barnes308e5bc2011-11-14 14:51:28 -08006288 struct drm_mode_fb_cmd2 *mode_cmd,
Chris Wilsond2dff872011-04-19 08:36:26 +01006289 struct drm_i915_gem_object *obj)
6290{
6291 struct intel_framebuffer *intel_fb;
6292 int ret;
6293
6294 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
6295 if (!intel_fb) {
6296 drm_gem_object_unreference_unlocked(&obj->base);
6297 return ERR_PTR(-ENOMEM);
6298 }
6299
6300 ret = intel_framebuffer_init(dev, intel_fb, mode_cmd, obj);
6301 if (ret) {
6302 drm_gem_object_unreference_unlocked(&obj->base);
6303 kfree(intel_fb);
6304 return ERR_PTR(ret);
6305 }
6306
6307 return &intel_fb->base;
6308}
6309
6310static u32
6311intel_framebuffer_pitch_for_width(int width, int bpp)
6312{
6313 u32 pitch = DIV_ROUND_UP(width * bpp, 8);
6314 return ALIGN(pitch, 64);
6315}
6316
6317static u32
6318intel_framebuffer_size_for_mode(struct drm_display_mode *mode, int bpp)
6319{
6320 u32 pitch = intel_framebuffer_pitch_for_width(mode->hdisplay, bpp);
6321 return ALIGN(pitch * mode->vdisplay, PAGE_SIZE);
6322}
6323
6324static struct drm_framebuffer *
6325intel_framebuffer_create_for_mode(struct drm_device *dev,
6326 struct drm_display_mode *mode,
6327 int depth, int bpp)
6328{
6329 struct drm_i915_gem_object *obj;
Chris Wilson0fed39b2012-11-05 22:25:07 +00006330 struct drm_mode_fb_cmd2 mode_cmd = { 0 };
Chris Wilsond2dff872011-04-19 08:36:26 +01006331
6332 obj = i915_gem_alloc_object(dev,
6333 intel_framebuffer_size_for_mode(mode, bpp));
6334 if (obj == NULL)
6335 return ERR_PTR(-ENOMEM);
6336
6337 mode_cmd.width = mode->hdisplay;
6338 mode_cmd.height = mode->vdisplay;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08006339 mode_cmd.pitches[0] = intel_framebuffer_pitch_for_width(mode_cmd.width,
6340 bpp);
Dave Airlie5ca0c342012-02-23 15:33:40 +00006341 mode_cmd.pixel_format = drm_mode_legacy_fb_format(bpp, depth);
Chris Wilsond2dff872011-04-19 08:36:26 +01006342
6343 return intel_framebuffer_create(dev, &mode_cmd, obj);
6344}
6345
6346static struct drm_framebuffer *
6347mode_fits_in_fbdev(struct drm_device *dev,
6348 struct drm_display_mode *mode)
6349{
6350 struct drm_i915_private *dev_priv = dev->dev_private;
6351 struct drm_i915_gem_object *obj;
6352 struct drm_framebuffer *fb;
6353
6354 if (dev_priv->fbdev == NULL)
6355 return NULL;
6356
6357 obj = dev_priv->fbdev->ifb.obj;
6358 if (obj == NULL)
6359 return NULL;
6360
6361 fb = &dev_priv->fbdev->ifb.base;
Ville Syrjälä01f2c772011-12-20 00:06:49 +02006362 if (fb->pitches[0] < intel_framebuffer_pitch_for_width(mode->hdisplay,
6363 fb->bits_per_pixel))
Chris Wilsond2dff872011-04-19 08:36:26 +01006364 return NULL;
6365
Ville Syrjälä01f2c772011-12-20 00:06:49 +02006366 if (obj->base.size < mode->vdisplay * fb->pitches[0])
Chris Wilsond2dff872011-04-19 08:36:26 +01006367 return NULL;
6368
6369 return fb;
6370}
6371
Daniel Vetterd2434ab2012-08-12 21:20:10 +02006372bool intel_get_load_detect_pipe(struct drm_connector *connector,
Chris Wilson71731882011-04-19 23:10:58 +01006373 struct drm_display_mode *mode,
Chris Wilson8261b192011-04-19 23:18:09 +01006374 struct intel_load_detect_pipe *old)
Jesse Barnes79e53942008-11-07 14:24:08 -08006375{
6376 struct intel_crtc *intel_crtc;
Daniel Vetterd2434ab2012-08-12 21:20:10 +02006377 struct intel_encoder *intel_encoder =
6378 intel_attached_encoder(connector);
Jesse Barnes79e53942008-11-07 14:24:08 -08006379 struct drm_crtc *possible_crtc;
Chris Wilson4ef69c72010-09-09 15:14:28 +01006380 struct drm_encoder *encoder = &intel_encoder->base;
Jesse Barnes79e53942008-11-07 14:24:08 -08006381 struct drm_crtc *crtc = NULL;
6382 struct drm_device *dev = encoder->dev;
Daniel Vetter94352cf2012-07-05 22:51:56 +02006383 struct drm_framebuffer *fb;
Jesse Barnes79e53942008-11-07 14:24:08 -08006384 int i = -1;
6385
Chris Wilsond2dff872011-04-19 08:36:26 +01006386 DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
6387 connector->base.id, drm_get_connector_name(connector),
6388 encoder->base.id, drm_get_encoder_name(encoder));
6389
Jesse Barnes79e53942008-11-07 14:24:08 -08006390 /*
6391 * Algorithm gets a little messy:
Chris Wilson7a5e4802011-04-19 23:21:12 +01006392 *
Jesse Barnes79e53942008-11-07 14:24:08 -08006393 * - if the connector already has an assigned crtc, use it (but make
6394 * sure it's on first)
Chris Wilson7a5e4802011-04-19 23:21:12 +01006395 *
Jesse Barnes79e53942008-11-07 14:24:08 -08006396 * - try to find the first unused crtc that can drive this connector,
6397 * and use that if we find one
Jesse Barnes79e53942008-11-07 14:24:08 -08006398 */
6399
6400 /* See if we already have a CRTC for this connector */
6401 if (encoder->crtc) {
6402 crtc = encoder->crtc;
Chris Wilson8261b192011-04-19 23:18:09 +01006403
Daniel Vetter24218aa2012-08-12 19:27:11 +02006404 old->dpms_mode = connector->dpms;
Chris Wilson8261b192011-04-19 23:18:09 +01006405 old->load_detect_temp = false;
6406
6407 /* Make sure the crtc and connector are running */
Daniel Vetter24218aa2012-08-12 19:27:11 +02006408 if (connector->dpms != DRM_MODE_DPMS_ON)
6409 connector->funcs->dpms(connector, DRM_MODE_DPMS_ON);
Chris Wilson8261b192011-04-19 23:18:09 +01006410
Chris Wilson71731882011-04-19 23:10:58 +01006411 return true;
Jesse Barnes79e53942008-11-07 14:24:08 -08006412 }
6413
6414 /* Find an unused one (if possible) */
6415 list_for_each_entry(possible_crtc, &dev->mode_config.crtc_list, head) {
6416 i++;
6417 if (!(encoder->possible_crtcs & (1 << i)))
6418 continue;
6419 if (!possible_crtc->enabled) {
6420 crtc = possible_crtc;
6421 break;
6422 }
Jesse Barnes79e53942008-11-07 14:24:08 -08006423 }
6424
6425 /*
6426 * If we didn't find an unused CRTC, don't use any.
6427 */
6428 if (!crtc) {
Chris Wilson71731882011-04-19 23:10:58 +01006429 DRM_DEBUG_KMS("no pipe available for load-detect\n");
6430 return false;
Jesse Barnes79e53942008-11-07 14:24:08 -08006431 }
6432
Daniel Vetterfc303102012-07-09 10:40:58 +02006433 intel_encoder->new_crtc = to_intel_crtc(crtc);
6434 to_intel_connector(connector)->new_encoder = intel_encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08006435
6436 intel_crtc = to_intel_crtc(crtc);
Daniel Vetter24218aa2012-08-12 19:27:11 +02006437 old->dpms_mode = connector->dpms;
Chris Wilson8261b192011-04-19 23:18:09 +01006438 old->load_detect_temp = true;
Chris Wilsond2dff872011-04-19 08:36:26 +01006439 old->release_fb = NULL;
Jesse Barnes79e53942008-11-07 14:24:08 -08006440
Chris Wilson64927112011-04-20 07:25:26 +01006441 if (!mode)
6442 mode = &load_detect_mode;
Jesse Barnes79e53942008-11-07 14:24:08 -08006443
Chris Wilsond2dff872011-04-19 08:36:26 +01006444 /* We need a framebuffer large enough to accommodate all accesses
6445 * that the plane may generate whilst we perform load detection.
6446 * We can not rely on the fbcon either being present (we get called
6447 * during its initialisation to detect all boot displays, or it may
6448 * not even exist) or that it is large enough to satisfy the
6449 * requested mode.
6450 */
Daniel Vetter94352cf2012-07-05 22:51:56 +02006451 fb = mode_fits_in_fbdev(dev, mode);
6452 if (fb == NULL) {
Chris Wilsond2dff872011-04-19 08:36:26 +01006453 DRM_DEBUG_KMS("creating tmp fb for load-detection\n");
Daniel Vetter94352cf2012-07-05 22:51:56 +02006454 fb = intel_framebuffer_create_for_mode(dev, mode, 24, 32);
6455 old->release_fb = fb;
Chris Wilsond2dff872011-04-19 08:36:26 +01006456 } else
6457 DRM_DEBUG_KMS("reusing fbdev for load-detection framebuffer\n");
Daniel Vetter94352cf2012-07-05 22:51:56 +02006458 if (IS_ERR(fb)) {
Chris Wilsond2dff872011-04-19 08:36:26 +01006459 DRM_DEBUG_KMS("failed to allocate framebuffer for load-detection\n");
Chris Wilson0e8b3d32012-11-05 22:25:08 +00006460 return false;
Jesse Barnes79e53942008-11-07 14:24:08 -08006461 }
Chris Wilsond2dff872011-04-19 08:36:26 +01006462
Daniel Vetter94352cf2012-07-05 22:51:56 +02006463 if (!intel_set_mode(crtc, mode, 0, 0, fb)) {
Chris Wilson64927112011-04-20 07:25:26 +01006464 DRM_DEBUG_KMS("failed to set mode on load-detect pipe\n");
Chris Wilsond2dff872011-04-19 08:36:26 +01006465 if (old->release_fb)
6466 old->release_fb->funcs->destroy(old->release_fb);
Chris Wilson0e8b3d32012-11-05 22:25:08 +00006467 return false;
Jesse Barnes79e53942008-11-07 14:24:08 -08006468 }
Chris Wilson71731882011-04-19 23:10:58 +01006469
Jesse Barnes79e53942008-11-07 14:24:08 -08006470 /* let the connector get through one full cycle before testing */
Jesse Barnes9d0498a2010-08-18 13:20:54 -07006471 intel_wait_for_vblank(dev, intel_crtc->pipe);
Chris Wilson71731882011-04-19 23:10:58 +01006472 return true;
Jesse Barnes79e53942008-11-07 14:24:08 -08006473}
6474
Daniel Vetterd2434ab2012-08-12 21:20:10 +02006475void intel_release_load_detect_pipe(struct drm_connector *connector,
Chris Wilson8261b192011-04-19 23:18:09 +01006476 struct intel_load_detect_pipe *old)
Jesse Barnes79e53942008-11-07 14:24:08 -08006477{
Daniel Vetterd2434ab2012-08-12 21:20:10 +02006478 struct intel_encoder *intel_encoder =
6479 intel_attached_encoder(connector);
Chris Wilson4ef69c72010-09-09 15:14:28 +01006480 struct drm_encoder *encoder = &intel_encoder->base;
Jesse Barnes79e53942008-11-07 14:24:08 -08006481
Chris Wilsond2dff872011-04-19 08:36:26 +01006482 DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
6483 connector->base.id, drm_get_connector_name(connector),
6484 encoder->base.id, drm_get_encoder_name(encoder));
6485
Chris Wilson8261b192011-04-19 23:18:09 +01006486 if (old->load_detect_temp) {
Daniel Vetterfc303102012-07-09 10:40:58 +02006487 struct drm_crtc *crtc = encoder->crtc;
6488
6489 to_intel_connector(connector)->new_encoder = NULL;
6490 intel_encoder->new_crtc = NULL;
6491 intel_set_mode(crtc, NULL, 0, 0, NULL);
Chris Wilsond2dff872011-04-19 08:36:26 +01006492
6493 if (old->release_fb)
6494 old->release_fb->funcs->destroy(old->release_fb);
6495
Chris Wilson0622a532011-04-21 09:32:11 +01006496 return;
Jesse Barnes79e53942008-11-07 14:24:08 -08006497 }
6498
Eric Anholtc751ce42010-03-25 11:48:48 -07006499 /* Switch crtc and encoder back off if necessary */
Daniel Vetter24218aa2012-08-12 19:27:11 +02006500 if (old->dpms_mode != DRM_MODE_DPMS_ON)
6501 connector->funcs->dpms(connector, old->dpms_mode);
Jesse Barnes79e53942008-11-07 14:24:08 -08006502}
6503
6504/* Returns the clock of the currently programmed mode of the given pipe. */
6505static int intel_crtc_clock_get(struct drm_device *dev, struct drm_crtc *crtc)
6506{
6507 struct drm_i915_private *dev_priv = dev->dev_private;
6508 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6509 int pipe = intel_crtc->pipe;
Jesse Barnes548f2452011-02-17 10:40:53 -08006510 u32 dpll = I915_READ(DPLL(pipe));
Jesse Barnes79e53942008-11-07 14:24:08 -08006511 u32 fp;
6512 intel_clock_t clock;
6513
6514 if ((dpll & DISPLAY_RATE_SELECT_FPA1) == 0)
Chris Wilson39adb7a2011-04-22 22:17:21 +01006515 fp = I915_READ(FP0(pipe));
Jesse Barnes79e53942008-11-07 14:24:08 -08006516 else
Chris Wilson39adb7a2011-04-22 22:17:21 +01006517 fp = I915_READ(FP1(pipe));
Jesse Barnes79e53942008-11-07 14:24:08 -08006518
6519 clock.m1 = (fp & FP_M1_DIV_MASK) >> FP_M1_DIV_SHIFT;
Adam Jacksonf2b115e2009-12-03 17:14:42 -05006520 if (IS_PINEVIEW(dev)) {
6521 clock.n = ffs((fp & FP_N_PINEVIEW_DIV_MASK) >> FP_N_DIV_SHIFT) - 1;
6522 clock.m2 = (fp & FP_M2_PINEVIEW_DIV_MASK) >> FP_M2_DIV_SHIFT;
Shaohua Li21778322009-02-23 15:19:16 +08006523 } else {
6524 clock.n = (fp & FP_N_DIV_MASK) >> FP_N_DIV_SHIFT;
6525 clock.m2 = (fp & FP_M2_DIV_MASK) >> FP_M2_DIV_SHIFT;
6526 }
6527
Chris Wilsona6c45cf2010-09-17 00:32:17 +01006528 if (!IS_GEN2(dev)) {
Adam Jacksonf2b115e2009-12-03 17:14:42 -05006529 if (IS_PINEVIEW(dev))
6530 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_PINEVIEW) >>
6531 DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW);
Shaohua Li21778322009-02-23 15:19:16 +08006532 else
6533 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK) >>
Jesse Barnes79e53942008-11-07 14:24:08 -08006534 DPLL_FPA01_P1_POST_DIV_SHIFT);
6535
6536 switch (dpll & DPLL_MODE_MASK) {
6537 case DPLLB_MODE_DAC_SERIAL:
6538 clock.p2 = dpll & DPLL_DAC_SERIAL_P2_CLOCK_DIV_5 ?
6539 5 : 10;
6540 break;
6541 case DPLLB_MODE_LVDS:
6542 clock.p2 = dpll & DPLLB_LVDS_P2_CLOCK_DIV_7 ?
6543 7 : 14;
6544 break;
6545 default:
Zhao Yakui28c97732009-10-09 11:39:41 +08006546 DRM_DEBUG_KMS("Unknown DPLL mode %08x in programmed "
Jesse Barnes79e53942008-11-07 14:24:08 -08006547 "mode\n", (int)(dpll & DPLL_MODE_MASK));
6548 return 0;
6549 }
6550
6551 /* XXX: Handle the 100Mhz refclk */
Shaohua Li21778322009-02-23 15:19:16 +08006552 intel_clock(dev, 96000, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08006553 } else {
6554 bool is_lvds = (pipe == 1) && (I915_READ(LVDS) & LVDS_PORT_EN);
6555
6556 if (is_lvds) {
6557 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830_LVDS) >>
6558 DPLL_FPA01_P1_POST_DIV_SHIFT);
6559 clock.p2 = 14;
6560
6561 if ((dpll & PLL_REF_INPUT_MASK) ==
6562 PLLB_REF_INPUT_SPREADSPECTRUMIN) {
6563 /* XXX: might not be 66MHz */
Shaohua Li21778322009-02-23 15:19:16 +08006564 intel_clock(dev, 66000, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08006565 } else
Shaohua Li21778322009-02-23 15:19:16 +08006566 intel_clock(dev, 48000, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08006567 } else {
6568 if (dpll & PLL_P1_DIVIDE_BY_TWO)
6569 clock.p1 = 2;
6570 else {
6571 clock.p1 = ((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830) >>
6572 DPLL_FPA01_P1_POST_DIV_SHIFT) + 2;
6573 }
6574 if (dpll & PLL_P2_DIVIDE_BY_4)
6575 clock.p2 = 4;
6576 else
6577 clock.p2 = 2;
6578
Shaohua Li21778322009-02-23 15:19:16 +08006579 intel_clock(dev, 48000, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08006580 }
6581 }
6582
6583 /* XXX: It would be nice to validate the clocks, but we can't reuse
6584 * i830PllIsValid() because it relies on the xf86_config connector
6585 * configuration being accurate, which it isn't necessarily.
6586 */
6587
6588 return clock.dot;
6589}
6590
6591/** Returns the currently programmed mode of the given pipe. */
6592struct drm_display_mode *intel_crtc_mode_get(struct drm_device *dev,
6593 struct drm_crtc *crtc)
6594{
Jesse Barnes548f2452011-02-17 10:40:53 -08006595 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -08006596 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Paulo Zanonife2b8f92012-10-23 18:30:02 -02006597 enum transcoder cpu_transcoder = intel_crtc->cpu_transcoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08006598 struct drm_display_mode *mode;
Paulo Zanonife2b8f92012-10-23 18:30:02 -02006599 int htot = I915_READ(HTOTAL(cpu_transcoder));
6600 int hsync = I915_READ(HSYNC(cpu_transcoder));
6601 int vtot = I915_READ(VTOTAL(cpu_transcoder));
6602 int vsync = I915_READ(VSYNC(cpu_transcoder));
Jesse Barnes79e53942008-11-07 14:24:08 -08006603
6604 mode = kzalloc(sizeof(*mode), GFP_KERNEL);
6605 if (!mode)
6606 return NULL;
6607
6608 mode->clock = intel_crtc_clock_get(dev, crtc);
6609 mode->hdisplay = (htot & 0xffff) + 1;
6610 mode->htotal = ((htot & 0xffff0000) >> 16) + 1;
6611 mode->hsync_start = (hsync & 0xffff) + 1;
6612 mode->hsync_end = ((hsync & 0xffff0000) >> 16) + 1;
6613 mode->vdisplay = (vtot & 0xffff) + 1;
6614 mode->vtotal = ((vtot & 0xffff0000) >> 16) + 1;
6615 mode->vsync_start = (vsync & 0xffff) + 1;
6616 mode->vsync_end = ((vsync & 0xffff0000) >> 16) + 1;
6617
6618 drm_mode_set_name(mode);
Jesse Barnes79e53942008-11-07 14:24:08 -08006619
6620 return mode;
6621}
6622
Daniel Vetter3dec0092010-08-20 21:40:52 +02006623static void intel_increase_pllclock(struct drm_crtc *crtc)
Jesse Barnes652c3932009-08-17 13:31:43 -07006624{
6625 struct drm_device *dev = crtc->dev;
6626 drm_i915_private_t *dev_priv = dev->dev_private;
6627 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6628 int pipe = intel_crtc->pipe;
Jesse Barnesdbdc6472010-12-30 09:36:39 -08006629 int dpll_reg = DPLL(pipe);
6630 int dpll;
Jesse Barnes652c3932009-08-17 13:31:43 -07006631
Eric Anholtbad720f2009-10-22 16:11:14 -07006632 if (HAS_PCH_SPLIT(dev))
Jesse Barnes652c3932009-08-17 13:31:43 -07006633 return;
6634
6635 if (!dev_priv->lvds_downclock_avail)
6636 return;
6637
Jesse Barnesdbdc6472010-12-30 09:36:39 -08006638 dpll = I915_READ(dpll_reg);
Jesse Barnes652c3932009-08-17 13:31:43 -07006639 if (!HAS_PIPE_CXSR(dev) && (dpll & DISPLAY_RATE_SELECT_FPA1)) {
Zhao Yakui44d98a62009-10-09 11:39:40 +08006640 DRM_DEBUG_DRIVER("upclocking LVDS\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07006641
Sean Paul8ac5a6d2012-02-13 13:14:51 -05006642 assert_panel_unlocked(dev_priv, pipe);
Jesse Barnes652c3932009-08-17 13:31:43 -07006643
6644 dpll &= ~DISPLAY_RATE_SELECT_FPA1;
6645 I915_WRITE(dpll_reg, dpll);
Jesse Barnes9d0498a2010-08-18 13:20:54 -07006646 intel_wait_for_vblank(dev, pipe);
Jesse Barnesdbdc6472010-12-30 09:36:39 -08006647
Jesse Barnes652c3932009-08-17 13:31:43 -07006648 dpll = I915_READ(dpll_reg);
6649 if (dpll & DISPLAY_RATE_SELECT_FPA1)
Zhao Yakui44d98a62009-10-09 11:39:40 +08006650 DRM_DEBUG_DRIVER("failed to upclock LVDS!\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07006651 }
Jesse Barnes652c3932009-08-17 13:31:43 -07006652}
6653
6654static void intel_decrease_pllclock(struct drm_crtc *crtc)
6655{
6656 struct drm_device *dev = crtc->dev;
6657 drm_i915_private_t *dev_priv = dev->dev_private;
6658 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes652c3932009-08-17 13:31:43 -07006659
Eric Anholtbad720f2009-10-22 16:11:14 -07006660 if (HAS_PCH_SPLIT(dev))
Jesse Barnes652c3932009-08-17 13:31:43 -07006661 return;
6662
6663 if (!dev_priv->lvds_downclock_avail)
6664 return;
6665
6666 /*
6667 * Since this is called by a timer, we should never get here in
6668 * the manual case.
6669 */
6670 if (!HAS_PIPE_CXSR(dev) && intel_crtc->lowfreq_avail) {
Chris Wilson074b5e12012-05-02 12:07:06 +01006671 int pipe = intel_crtc->pipe;
6672 int dpll_reg = DPLL(pipe);
Daniel Vetterdc257cf2012-05-07 11:30:46 +02006673 int dpll;
Chris Wilson074b5e12012-05-02 12:07:06 +01006674
Zhao Yakui44d98a62009-10-09 11:39:40 +08006675 DRM_DEBUG_DRIVER("downclocking LVDS\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07006676
Sean Paul8ac5a6d2012-02-13 13:14:51 -05006677 assert_panel_unlocked(dev_priv, pipe);
Jesse Barnes652c3932009-08-17 13:31:43 -07006678
Chris Wilson074b5e12012-05-02 12:07:06 +01006679 dpll = I915_READ(dpll_reg);
Jesse Barnes652c3932009-08-17 13:31:43 -07006680 dpll |= DISPLAY_RATE_SELECT_FPA1;
6681 I915_WRITE(dpll_reg, dpll);
Jesse Barnes9d0498a2010-08-18 13:20:54 -07006682 intel_wait_for_vblank(dev, pipe);
Jesse Barnes652c3932009-08-17 13:31:43 -07006683 dpll = I915_READ(dpll_reg);
6684 if (!(dpll & DISPLAY_RATE_SELECT_FPA1))
Zhao Yakui44d98a62009-10-09 11:39:40 +08006685 DRM_DEBUG_DRIVER("failed to downclock LVDS!\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07006686 }
6687
6688}
6689
Chris Wilsonf047e392012-07-21 12:31:41 +01006690void intel_mark_busy(struct drm_device *dev)
Jesse Barnes652c3932009-08-17 13:31:43 -07006691{
Chris Wilsonf047e392012-07-21 12:31:41 +01006692 i915_update_gfx_val(dev->dev_private);
6693}
6694
6695void intel_mark_idle(struct drm_device *dev)
6696{
Chris Wilsonf047e392012-07-21 12:31:41 +01006697}
6698
6699void intel_mark_fb_busy(struct drm_i915_gem_object *obj)
6700{
6701 struct drm_device *dev = obj->base.dev;
Jesse Barnes652c3932009-08-17 13:31:43 -07006702 struct drm_crtc *crtc;
Jesse Barnes652c3932009-08-17 13:31:43 -07006703
6704 if (!i915_powersave)
6705 return;
6706
Jesse Barnes652c3932009-08-17 13:31:43 -07006707 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
Jesse Barnes652c3932009-08-17 13:31:43 -07006708 if (!crtc->fb)
6709 continue;
6710
Chris Wilsonf047e392012-07-21 12:31:41 +01006711 if (to_intel_framebuffer(crtc->fb)->obj == obj)
6712 intel_increase_pllclock(crtc);
Jesse Barnes652c3932009-08-17 13:31:43 -07006713 }
Jesse Barnes652c3932009-08-17 13:31:43 -07006714}
6715
Chris Wilsonf047e392012-07-21 12:31:41 +01006716void intel_mark_fb_idle(struct drm_i915_gem_object *obj)
Jesse Barnes652c3932009-08-17 13:31:43 -07006717{
Chris Wilsonf047e392012-07-21 12:31:41 +01006718 struct drm_device *dev = obj->base.dev;
6719 struct drm_crtc *crtc;
Jesse Barnes652c3932009-08-17 13:31:43 -07006720
Chris Wilsonf047e392012-07-21 12:31:41 +01006721 if (!i915_powersave)
Chris Wilsonacb87df2012-05-03 15:47:57 +01006722 return;
6723
Jesse Barnes652c3932009-08-17 13:31:43 -07006724 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
6725 if (!crtc->fb)
6726 continue;
6727
Chris Wilsonf047e392012-07-21 12:31:41 +01006728 if (to_intel_framebuffer(crtc->fb)->obj == obj)
6729 intel_decrease_pllclock(crtc);
Jesse Barnes652c3932009-08-17 13:31:43 -07006730 }
6731}
6732
Jesse Barnes79e53942008-11-07 14:24:08 -08006733static void intel_crtc_destroy(struct drm_crtc *crtc)
6734{
6735 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter67e77c52010-08-20 22:26:30 +02006736 struct drm_device *dev = crtc->dev;
6737 struct intel_unpin_work *work;
6738 unsigned long flags;
6739
6740 spin_lock_irqsave(&dev->event_lock, flags);
6741 work = intel_crtc->unpin_work;
6742 intel_crtc->unpin_work = NULL;
6743 spin_unlock_irqrestore(&dev->event_lock, flags);
6744
6745 if (work) {
6746 cancel_work_sync(&work->work);
6747 kfree(work);
6748 }
Jesse Barnes79e53942008-11-07 14:24:08 -08006749
6750 drm_crtc_cleanup(crtc);
Daniel Vetter67e77c52010-08-20 22:26:30 +02006751
Jesse Barnes79e53942008-11-07 14:24:08 -08006752 kfree(intel_crtc);
6753}
6754
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006755static void intel_unpin_work_fn(struct work_struct *__work)
6756{
6757 struct intel_unpin_work *work =
6758 container_of(__work, struct intel_unpin_work, work);
Chris Wilsonb4a98e52012-11-01 09:26:26 +00006759 struct drm_device *dev = work->crtc->dev;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006760
Chris Wilsonb4a98e52012-11-01 09:26:26 +00006761 mutex_lock(&dev->struct_mutex);
Chris Wilson1690e1e2011-12-14 13:57:08 +01006762 intel_unpin_fb_obj(work->old_fb_obj);
Chris Wilson05394f32010-11-08 19:18:58 +00006763 drm_gem_object_unreference(&work->pending_flip_obj->base);
6764 drm_gem_object_unreference(&work->old_fb_obj->base);
Chris Wilsond9e86c02010-11-10 16:40:20 +00006765
Chris Wilsonb4a98e52012-11-01 09:26:26 +00006766 intel_update_fbc(dev);
6767 mutex_unlock(&dev->struct_mutex);
6768
6769 BUG_ON(atomic_read(&to_intel_crtc(work->crtc)->unpin_work_count) == 0);
6770 atomic_dec(&to_intel_crtc(work->crtc)->unpin_work_count);
6771
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006772 kfree(work);
6773}
6774
Jesse Barnes1afe3e92010-03-26 10:35:20 -07006775static void do_intel_finish_page_flip(struct drm_device *dev,
Mario Kleiner49b14a52010-12-09 07:00:07 +01006776 struct drm_crtc *crtc)
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006777{
6778 drm_i915_private_t *dev_priv = dev->dev_private;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006779 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6780 struct intel_unpin_work *work;
Chris Wilson05394f32010-11-08 19:18:58 +00006781 struct drm_i915_gem_object *obj;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006782 unsigned long flags;
6783
6784 /* Ignore early vblank irqs */
6785 if (intel_crtc == NULL)
6786 return;
6787
6788 spin_lock_irqsave(&dev->event_lock, flags);
6789 work = intel_crtc->unpin_work;
6790 if (work == NULL || !work->pending) {
6791 spin_unlock_irqrestore(&dev->event_lock, flags);
6792 return;
6793 }
6794
6795 intel_crtc->unpin_work = NULL;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006796
Rob Clark45a066e2012-10-08 14:50:40 -05006797 if (work->event)
6798 drm_send_vblank_event(dev, intel_crtc->pipe, work->event);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006799
Mario Kleiner0af7e4d2010-12-08 04:07:19 +01006800 drm_vblank_put(dev, intel_crtc->pipe);
6801
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006802 spin_unlock_irqrestore(&dev->event_lock, flags);
6803
Chris Wilson05394f32010-11-08 19:18:58 +00006804 obj = work->old_fb_obj;
Chris Wilsond9e86c02010-11-10 16:40:20 +00006805
Chris Wilson5bb61642012-09-27 21:25:58 +01006806 wake_up(&dev_priv->pending_flip_queue);
Chris Wilsonb4a98e52012-11-01 09:26:26 +00006807
6808 queue_work(dev_priv->wq, &work->work);
Jesse Barnese5510fa2010-07-01 16:48:37 -07006809
6810 trace_i915_flip_complete(intel_crtc->plane, work->pending_flip_obj);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006811}
6812
Jesse Barnes1afe3e92010-03-26 10:35:20 -07006813void intel_finish_page_flip(struct drm_device *dev, int pipe)
6814{
6815 drm_i915_private_t *dev_priv = dev->dev_private;
6816 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
6817
Mario Kleiner49b14a52010-12-09 07:00:07 +01006818 do_intel_finish_page_flip(dev, crtc);
Jesse Barnes1afe3e92010-03-26 10:35:20 -07006819}
6820
6821void intel_finish_page_flip_plane(struct drm_device *dev, int plane)
6822{
6823 drm_i915_private_t *dev_priv = dev->dev_private;
6824 struct drm_crtc *crtc = dev_priv->plane_to_crtc_mapping[plane];
6825
Mario Kleiner49b14a52010-12-09 07:00:07 +01006826 do_intel_finish_page_flip(dev, crtc);
Jesse Barnes1afe3e92010-03-26 10:35:20 -07006827}
6828
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006829void intel_prepare_page_flip(struct drm_device *dev, int plane)
6830{
6831 drm_i915_private_t *dev_priv = dev->dev_private;
6832 struct intel_crtc *intel_crtc =
6833 to_intel_crtc(dev_priv->plane_to_crtc_mapping[plane]);
6834 unsigned long flags;
6835
6836 spin_lock_irqsave(&dev->event_lock, flags);
Jesse Barnesde3f4402010-01-14 13:18:02 -08006837 if (intel_crtc->unpin_work) {
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01006838 if ((++intel_crtc->unpin_work->pending) > 1)
6839 DRM_ERROR("Prepared flip multiple times\n");
Jesse Barnesde3f4402010-01-14 13:18:02 -08006840 } else {
6841 DRM_DEBUG_DRIVER("preparing flip with no unpin work?\n");
6842 }
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05006843 spin_unlock_irqrestore(&dev->event_lock, flags);
6844}
6845
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006846static int intel_gen2_queue_flip(struct drm_device *dev,
6847 struct drm_crtc *crtc,
6848 struct drm_framebuffer *fb,
6849 struct drm_i915_gem_object *obj)
6850{
6851 struct drm_i915_private *dev_priv = dev->dev_private;
6852 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006853 u32 flip_mask;
Daniel Vetter6d90c952012-04-26 23:28:05 +02006854 struct intel_ring_buffer *ring = &dev_priv->ring[RCS];
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006855 int ret;
6856
Daniel Vetter6d90c952012-04-26 23:28:05 +02006857 ret = intel_pin_and_fence_fb_obj(dev, obj, ring);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006858 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01006859 goto err;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006860
Daniel Vetter6d90c952012-04-26 23:28:05 +02006861 ret = intel_ring_begin(ring, 6);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006862 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01006863 goto err_unpin;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006864
6865 /* Can't queue multiple flips, so wait for the previous
6866 * one to finish before executing the next.
6867 */
6868 if (intel_crtc->plane)
6869 flip_mask = MI_WAIT_FOR_PLANE_B_FLIP;
6870 else
6871 flip_mask = MI_WAIT_FOR_PLANE_A_FLIP;
Daniel Vetter6d90c952012-04-26 23:28:05 +02006872 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | flip_mask);
6873 intel_ring_emit(ring, MI_NOOP);
6874 intel_ring_emit(ring, MI_DISPLAY_FLIP |
6875 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
6876 intel_ring_emit(ring, fb->pitches[0]);
Daniel Vettere506a0c2012-07-05 12:17:29 +02006877 intel_ring_emit(ring, obj->gtt_offset + intel_crtc->dspaddr_offset);
Daniel Vetter6d90c952012-04-26 23:28:05 +02006878 intel_ring_emit(ring, 0); /* aux display base address, unused */
6879 intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01006880 return 0;
6881
6882err_unpin:
6883 intel_unpin_fb_obj(obj);
6884err:
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006885 return ret;
6886}
6887
6888static int intel_gen3_queue_flip(struct drm_device *dev,
6889 struct drm_crtc *crtc,
6890 struct drm_framebuffer *fb,
6891 struct drm_i915_gem_object *obj)
6892{
6893 struct drm_i915_private *dev_priv = dev->dev_private;
6894 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006895 u32 flip_mask;
Daniel Vetter6d90c952012-04-26 23:28:05 +02006896 struct intel_ring_buffer *ring = &dev_priv->ring[RCS];
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006897 int ret;
6898
Daniel Vetter6d90c952012-04-26 23:28:05 +02006899 ret = intel_pin_and_fence_fb_obj(dev, obj, ring);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006900 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01006901 goto err;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006902
Daniel Vetter6d90c952012-04-26 23:28:05 +02006903 ret = intel_ring_begin(ring, 6);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006904 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01006905 goto err_unpin;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006906
6907 if (intel_crtc->plane)
6908 flip_mask = MI_WAIT_FOR_PLANE_B_FLIP;
6909 else
6910 flip_mask = MI_WAIT_FOR_PLANE_A_FLIP;
Daniel Vetter6d90c952012-04-26 23:28:05 +02006911 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | flip_mask);
6912 intel_ring_emit(ring, MI_NOOP);
6913 intel_ring_emit(ring, MI_DISPLAY_FLIP_I915 |
6914 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
6915 intel_ring_emit(ring, fb->pitches[0]);
Daniel Vettere506a0c2012-07-05 12:17:29 +02006916 intel_ring_emit(ring, obj->gtt_offset + intel_crtc->dspaddr_offset);
Daniel Vetter6d90c952012-04-26 23:28:05 +02006917 intel_ring_emit(ring, MI_NOOP);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006918
Daniel Vetter6d90c952012-04-26 23:28:05 +02006919 intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01006920 return 0;
6921
6922err_unpin:
6923 intel_unpin_fb_obj(obj);
6924err:
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006925 return ret;
6926}
6927
6928static int intel_gen4_queue_flip(struct drm_device *dev,
6929 struct drm_crtc *crtc,
6930 struct drm_framebuffer *fb,
6931 struct drm_i915_gem_object *obj)
6932{
6933 struct drm_i915_private *dev_priv = dev->dev_private;
6934 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6935 uint32_t pf, pipesrc;
Daniel Vetter6d90c952012-04-26 23:28:05 +02006936 struct intel_ring_buffer *ring = &dev_priv->ring[RCS];
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006937 int ret;
6938
Daniel Vetter6d90c952012-04-26 23:28:05 +02006939 ret = intel_pin_and_fence_fb_obj(dev, obj, ring);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006940 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01006941 goto err;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006942
Daniel Vetter6d90c952012-04-26 23:28:05 +02006943 ret = intel_ring_begin(ring, 4);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006944 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01006945 goto err_unpin;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006946
6947 /* i965+ uses the linear or tiled offsets from the
6948 * Display Registers (which do not change across a page-flip)
6949 * so we need only reprogram the base address.
6950 */
Daniel Vetter6d90c952012-04-26 23:28:05 +02006951 intel_ring_emit(ring, MI_DISPLAY_FLIP |
6952 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
6953 intel_ring_emit(ring, fb->pitches[0]);
Daniel Vetterc2c75132012-07-05 12:17:30 +02006954 intel_ring_emit(ring,
6955 (obj->gtt_offset + intel_crtc->dspaddr_offset) |
6956 obj->tiling_mode);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006957
6958 /* XXX Enabling the panel-fitter across page-flip is so far
6959 * untested on non-native modes, so ignore it for now.
6960 * pf = I915_READ(pipe == 0 ? PFA_CTL_1 : PFB_CTL_1) & PF_ENABLE;
6961 */
6962 pf = 0;
6963 pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff;
Daniel Vetter6d90c952012-04-26 23:28:05 +02006964 intel_ring_emit(ring, pf | pipesrc);
6965 intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01006966 return 0;
6967
6968err_unpin:
6969 intel_unpin_fb_obj(obj);
6970err:
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006971 return ret;
6972}
6973
6974static int intel_gen6_queue_flip(struct drm_device *dev,
6975 struct drm_crtc *crtc,
6976 struct drm_framebuffer *fb,
6977 struct drm_i915_gem_object *obj)
6978{
6979 struct drm_i915_private *dev_priv = dev->dev_private;
6980 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter6d90c952012-04-26 23:28:05 +02006981 struct intel_ring_buffer *ring = &dev_priv->ring[RCS];
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006982 uint32_t pf, pipesrc;
6983 int ret;
6984
Daniel Vetter6d90c952012-04-26 23:28:05 +02006985 ret = intel_pin_and_fence_fb_obj(dev, obj, ring);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006986 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01006987 goto err;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006988
Daniel Vetter6d90c952012-04-26 23:28:05 +02006989 ret = intel_ring_begin(ring, 4);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006990 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01006991 goto err_unpin;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006992
Daniel Vetter6d90c952012-04-26 23:28:05 +02006993 intel_ring_emit(ring, MI_DISPLAY_FLIP |
6994 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
6995 intel_ring_emit(ring, fb->pitches[0] | obj->tiling_mode);
Daniel Vetterc2c75132012-07-05 12:17:30 +02006996 intel_ring_emit(ring, obj->gtt_offset + intel_crtc->dspaddr_offset);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07006997
Chris Wilson99d9acd2012-04-17 20:37:00 +01006998 /* Contrary to the suggestions in the documentation,
6999 * "Enable Panel Fitter" does not seem to be required when page
7000 * flipping with a non-native mode, and worse causes a normal
7001 * modeset to fail.
7002 * pf = I915_READ(PF_CTL(intel_crtc->pipe)) & PF_ENABLE;
7003 */
7004 pf = 0;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07007005 pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff;
Daniel Vetter6d90c952012-04-26 23:28:05 +02007006 intel_ring_emit(ring, pf | pipesrc);
7007 intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01007008 return 0;
7009
7010err_unpin:
7011 intel_unpin_fb_obj(obj);
7012err:
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07007013 return ret;
7014}
7015
Jesse Barnes7c9017e2011-06-16 12:18:54 -07007016/*
7017 * On gen7 we currently use the blit ring because (in early silicon at least)
7018 * the render ring doesn't give us interrpts for page flip completion, which
7019 * means clients will hang after the first flip is queued. Fortunately the
7020 * blit ring generates interrupts properly, so use it instead.
7021 */
7022static int intel_gen7_queue_flip(struct drm_device *dev,
7023 struct drm_crtc *crtc,
7024 struct drm_framebuffer *fb,
7025 struct drm_i915_gem_object *obj)
7026{
7027 struct drm_i915_private *dev_priv = dev->dev_private;
7028 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
7029 struct intel_ring_buffer *ring = &dev_priv->ring[BCS];
Daniel Vettercb05d8d2012-05-23 14:02:00 +02007030 uint32_t plane_bit = 0;
Jesse Barnes7c9017e2011-06-16 12:18:54 -07007031 int ret;
7032
7033 ret = intel_pin_and_fence_fb_obj(dev, obj, ring);
7034 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01007035 goto err;
Jesse Barnes7c9017e2011-06-16 12:18:54 -07007036
Daniel Vettercb05d8d2012-05-23 14:02:00 +02007037 switch(intel_crtc->plane) {
7038 case PLANE_A:
7039 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_A;
7040 break;
7041 case PLANE_B:
7042 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_B;
7043 break;
7044 case PLANE_C:
7045 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_C;
7046 break;
7047 default:
7048 WARN_ONCE(1, "unknown plane in flip command\n");
7049 ret = -ENODEV;
Eugeni Dodonovab3951e2012-06-18 19:03:38 -03007050 goto err_unpin;
Daniel Vettercb05d8d2012-05-23 14:02:00 +02007051 }
7052
Jesse Barnes7c9017e2011-06-16 12:18:54 -07007053 ret = intel_ring_begin(ring, 4);
7054 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01007055 goto err_unpin;
Jesse Barnes7c9017e2011-06-16 12:18:54 -07007056
Daniel Vettercb05d8d2012-05-23 14:02:00 +02007057 intel_ring_emit(ring, MI_DISPLAY_FLIP_I915 | plane_bit);
Ville Syrjälä01f2c772011-12-20 00:06:49 +02007058 intel_ring_emit(ring, (fb->pitches[0] | obj->tiling_mode));
Daniel Vetterc2c75132012-07-05 12:17:30 +02007059 intel_ring_emit(ring, obj->gtt_offset + intel_crtc->dspaddr_offset);
Jesse Barnes7c9017e2011-06-16 12:18:54 -07007060 intel_ring_emit(ring, (MI_NOOP));
7061 intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01007062 return 0;
7063
7064err_unpin:
7065 intel_unpin_fb_obj(obj);
7066err:
Jesse Barnes7c9017e2011-06-16 12:18:54 -07007067 return ret;
7068}
7069
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07007070static int intel_default_queue_flip(struct drm_device *dev,
7071 struct drm_crtc *crtc,
7072 struct drm_framebuffer *fb,
7073 struct drm_i915_gem_object *obj)
7074{
7075 return -ENODEV;
7076}
7077
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007078static int intel_crtc_page_flip(struct drm_crtc *crtc,
7079 struct drm_framebuffer *fb,
7080 struct drm_pending_vblank_event *event)
7081{
7082 struct drm_device *dev = crtc->dev;
7083 struct drm_i915_private *dev_priv = dev->dev_private;
7084 struct intel_framebuffer *intel_fb;
Chris Wilson05394f32010-11-08 19:18:58 +00007085 struct drm_i915_gem_object *obj;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007086 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
7087 struct intel_unpin_work *work;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07007088 unsigned long flags;
Chris Wilson52e68632010-08-08 10:15:59 +01007089 int ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007090
Ville Syrjäläe6a595d2012-05-24 21:08:59 +03007091 /* Can't change pixel format via MI display flips. */
7092 if (fb->pixel_format != crtc->fb->pixel_format)
7093 return -EINVAL;
7094
7095 /*
7096 * TILEOFF/LINOFF registers can't be changed via MI display flips.
7097 * Note that pitch changes could also affect these register.
7098 */
7099 if (INTEL_INFO(dev)->gen > 3 &&
7100 (fb->offsets[0] != crtc->fb->offsets[0] ||
7101 fb->pitches[0] != crtc->fb->pitches[0]))
7102 return -EINVAL;
7103
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007104 work = kzalloc(sizeof *work, GFP_KERNEL);
7105 if (work == NULL)
7106 return -ENOMEM;
7107
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007108 work->event = event;
Chris Wilsonb4a98e52012-11-01 09:26:26 +00007109 work->crtc = crtc;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007110 intel_fb = to_intel_framebuffer(crtc->fb);
Jesse Barnesb1b87f62010-01-26 14:40:05 -08007111 work->old_fb_obj = intel_fb->obj;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007112 INIT_WORK(&work->work, intel_unpin_work_fn);
7113
Jesse Barnes7317c75e62011-08-29 09:45:28 -07007114 ret = drm_vblank_get(dev, intel_crtc->pipe);
7115 if (ret)
7116 goto free_work;
7117
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007118 /* We borrow the event spin lock for protecting unpin_work */
7119 spin_lock_irqsave(&dev->event_lock, flags);
7120 if (intel_crtc->unpin_work) {
7121 spin_unlock_irqrestore(&dev->event_lock, flags);
7122 kfree(work);
Jesse Barnes7317c75e62011-08-29 09:45:28 -07007123 drm_vblank_put(dev, intel_crtc->pipe);
Chris Wilson468f0b42010-05-27 13:18:13 +01007124
7125 DRM_DEBUG_DRIVER("flip queue: crtc already busy\n");
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007126 return -EBUSY;
7127 }
7128 intel_crtc->unpin_work = work;
7129 spin_unlock_irqrestore(&dev->event_lock, flags);
7130
7131 intel_fb = to_intel_framebuffer(fb);
7132 obj = intel_fb->obj;
7133
Chris Wilsonb4a98e52012-11-01 09:26:26 +00007134 if (atomic_read(&intel_crtc->unpin_work_count) >= 2)
7135 flush_workqueue(dev_priv->wq);
7136
Chris Wilson79158102012-05-23 11:13:58 +01007137 ret = i915_mutex_lock_interruptible(dev);
7138 if (ret)
7139 goto cleanup;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007140
Jesse Barnes75dfca82010-02-10 15:09:44 -08007141 /* Reference the objects for the scheduled work. */
Chris Wilson05394f32010-11-08 19:18:58 +00007142 drm_gem_object_reference(&work->old_fb_obj->base);
7143 drm_gem_object_reference(&obj->base);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007144
7145 crtc->fb = fb;
Chris Wilson96b099f2010-06-07 14:03:04 +01007146
Chris Wilsone1f99ce2010-10-27 12:45:26 +01007147 work->pending_flip_obj = obj;
Chris Wilsone1f99ce2010-10-27 12:45:26 +01007148
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01007149 work->enable_stall_check = true;
7150
Chris Wilsonb4a98e52012-11-01 09:26:26 +00007151 atomic_inc(&intel_crtc->unpin_work_count);
Chris Wilsone1f99ce2010-10-27 12:45:26 +01007152
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07007153 ret = dev_priv->display.queue_flip(dev, crtc, fb, obj);
7154 if (ret)
7155 goto cleanup_pending;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007156
Chris Wilson7782de32011-07-08 12:22:41 +01007157 intel_disable_fbc(dev);
Chris Wilsonf047e392012-07-21 12:31:41 +01007158 intel_mark_fb_busy(obj);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007159 mutex_unlock(&dev->struct_mutex);
7160
Jesse Barnese5510fa2010-07-01 16:48:37 -07007161 trace_i915_flip_request(intel_crtc->plane, obj);
7162
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007163 return 0;
Chris Wilson96b099f2010-06-07 14:03:04 +01007164
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07007165cleanup_pending:
Chris Wilsonb4a98e52012-11-01 09:26:26 +00007166 atomic_dec(&intel_crtc->unpin_work_count);
Chris Wilson05394f32010-11-08 19:18:58 +00007167 drm_gem_object_unreference(&work->old_fb_obj->base);
7168 drm_gem_object_unreference(&obj->base);
Chris Wilson96b099f2010-06-07 14:03:04 +01007169 mutex_unlock(&dev->struct_mutex);
7170
Chris Wilson79158102012-05-23 11:13:58 +01007171cleanup:
Chris Wilson96b099f2010-06-07 14:03:04 +01007172 spin_lock_irqsave(&dev->event_lock, flags);
7173 intel_crtc->unpin_work = NULL;
7174 spin_unlock_irqrestore(&dev->event_lock, flags);
7175
Jesse Barnes7317c75e62011-08-29 09:45:28 -07007176 drm_vblank_put(dev, intel_crtc->pipe);
7177free_work:
Chris Wilson96b099f2010-06-07 14:03:04 +01007178 kfree(work);
7179
7180 return ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007181}
7182
Chris Wilsonf6e5b162011-04-12 18:06:51 +01007183static struct drm_crtc_helper_funcs intel_helper_funcs = {
Chris Wilsonf6e5b162011-04-12 18:06:51 +01007184 .mode_set_base_atomic = intel_pipe_set_base_atomic,
7185 .load_lut = intel_crtc_load_lut,
Daniel Vetter976f8a22012-07-08 22:34:21 +02007186 .disable = intel_crtc_noop,
Chris Wilsonf6e5b162011-04-12 18:06:51 +01007187};
7188
Daniel Vetter6ed0f792012-07-08 19:41:43 +02007189bool intel_encoder_check_is_cloned(struct intel_encoder *encoder)
7190{
7191 struct intel_encoder *other_encoder;
7192 struct drm_crtc *crtc = &encoder->new_crtc->base;
7193
7194 if (WARN_ON(!crtc))
7195 return false;
7196
7197 list_for_each_entry(other_encoder,
7198 &crtc->dev->mode_config.encoder_list,
7199 base.head) {
7200
7201 if (&other_encoder->new_crtc->base != crtc ||
7202 encoder == other_encoder)
7203 continue;
7204 else
7205 return true;
7206 }
7207
7208 return false;
7209}
7210
Daniel Vetter50f56112012-07-02 09:35:43 +02007211static bool intel_encoder_crtc_ok(struct drm_encoder *encoder,
7212 struct drm_crtc *crtc)
7213{
7214 struct drm_device *dev;
7215 struct drm_crtc *tmp;
7216 int crtc_mask = 1;
7217
7218 WARN(!crtc, "checking null crtc?\n");
7219
7220 dev = crtc->dev;
7221
7222 list_for_each_entry(tmp, &dev->mode_config.crtc_list, head) {
7223 if (tmp == crtc)
7224 break;
7225 crtc_mask <<= 1;
7226 }
7227
7228 if (encoder->possible_crtcs & crtc_mask)
7229 return true;
7230 return false;
7231}
7232
Daniel Vetter9a935852012-07-05 22:34:27 +02007233/**
7234 * intel_modeset_update_staged_output_state
7235 *
7236 * Updates the staged output configuration state, e.g. after we've read out the
7237 * current hw state.
7238 */
7239static void intel_modeset_update_staged_output_state(struct drm_device *dev)
7240{
7241 struct intel_encoder *encoder;
7242 struct intel_connector *connector;
7243
7244 list_for_each_entry(connector, &dev->mode_config.connector_list,
7245 base.head) {
7246 connector->new_encoder =
7247 to_intel_encoder(connector->base.encoder);
7248 }
7249
7250 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
7251 base.head) {
7252 encoder->new_crtc =
7253 to_intel_crtc(encoder->base.crtc);
7254 }
7255}
7256
7257/**
7258 * intel_modeset_commit_output_state
7259 *
7260 * This function copies the stage display pipe configuration to the real one.
7261 */
7262static void intel_modeset_commit_output_state(struct drm_device *dev)
7263{
7264 struct intel_encoder *encoder;
7265 struct intel_connector *connector;
7266
7267 list_for_each_entry(connector, &dev->mode_config.connector_list,
7268 base.head) {
7269 connector->base.encoder = &connector->new_encoder->base;
7270 }
7271
7272 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
7273 base.head) {
7274 encoder->base.crtc = &encoder->new_crtc->base;
7275 }
7276}
7277
Daniel Vetter7758a112012-07-08 19:40:39 +02007278static struct drm_display_mode *
7279intel_modeset_adjusted_mode(struct drm_crtc *crtc,
7280 struct drm_display_mode *mode)
7281{
7282 struct drm_device *dev = crtc->dev;
7283 struct drm_display_mode *adjusted_mode;
7284 struct drm_encoder_helper_funcs *encoder_funcs;
7285 struct intel_encoder *encoder;
7286
7287 adjusted_mode = drm_mode_duplicate(dev, mode);
7288 if (!adjusted_mode)
7289 return ERR_PTR(-ENOMEM);
7290
7291 /* Pass our mode to the connectors and the CRTC to give them a chance to
7292 * adjust it according to limitations or connector properties, and also
7293 * a chance to reject the mode entirely.
7294 */
7295 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
7296 base.head) {
7297
7298 if (&encoder->new_crtc->base != crtc)
7299 continue;
7300 encoder_funcs = encoder->base.helper_private;
7301 if (!(encoder_funcs->mode_fixup(&encoder->base, mode,
7302 adjusted_mode))) {
7303 DRM_DEBUG_KMS("Encoder fixup failed\n");
7304 goto fail;
7305 }
7306 }
7307
7308 if (!(intel_crtc_mode_fixup(crtc, mode, adjusted_mode))) {
7309 DRM_DEBUG_KMS("CRTC fixup failed\n");
7310 goto fail;
7311 }
7312 DRM_DEBUG_KMS("[CRTC:%d]\n", crtc->base.id);
7313
7314 return adjusted_mode;
7315fail:
7316 drm_mode_destroy(dev, adjusted_mode);
7317 return ERR_PTR(-EINVAL);
7318}
7319
Daniel Vettere2e1ed42012-07-08 21:14:38 +02007320/* Computes which crtcs are affected and sets the relevant bits in the mask. For
7321 * simplicity we use the crtc's pipe number (because it's easier to obtain). */
7322static void
7323intel_modeset_affected_pipes(struct drm_crtc *crtc, unsigned *modeset_pipes,
7324 unsigned *prepare_pipes, unsigned *disable_pipes)
7325{
7326 struct intel_crtc *intel_crtc;
7327 struct drm_device *dev = crtc->dev;
7328 struct intel_encoder *encoder;
7329 struct intel_connector *connector;
7330 struct drm_crtc *tmp_crtc;
7331
7332 *disable_pipes = *modeset_pipes = *prepare_pipes = 0;
7333
7334 /* Check which crtcs have changed outputs connected to them, these need
7335 * to be part of the prepare_pipes mask. We don't (yet) support global
7336 * modeset across multiple crtcs, so modeset_pipes will only have one
7337 * bit set at most. */
7338 list_for_each_entry(connector, &dev->mode_config.connector_list,
7339 base.head) {
7340 if (connector->base.encoder == &connector->new_encoder->base)
7341 continue;
7342
7343 if (connector->base.encoder) {
7344 tmp_crtc = connector->base.encoder->crtc;
7345
7346 *prepare_pipes |= 1 << to_intel_crtc(tmp_crtc)->pipe;
7347 }
7348
7349 if (connector->new_encoder)
7350 *prepare_pipes |=
7351 1 << connector->new_encoder->new_crtc->pipe;
7352 }
7353
7354 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
7355 base.head) {
7356 if (encoder->base.crtc == &encoder->new_crtc->base)
7357 continue;
7358
7359 if (encoder->base.crtc) {
7360 tmp_crtc = encoder->base.crtc;
7361
7362 *prepare_pipes |= 1 << to_intel_crtc(tmp_crtc)->pipe;
7363 }
7364
7365 if (encoder->new_crtc)
7366 *prepare_pipes |= 1 << encoder->new_crtc->pipe;
7367 }
7368
7369 /* Check for any pipes that will be fully disabled ... */
7370 list_for_each_entry(intel_crtc, &dev->mode_config.crtc_list,
7371 base.head) {
7372 bool used = false;
7373
7374 /* Don't try to disable disabled crtcs. */
7375 if (!intel_crtc->base.enabled)
7376 continue;
7377
7378 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
7379 base.head) {
7380 if (encoder->new_crtc == intel_crtc)
7381 used = true;
7382 }
7383
7384 if (!used)
7385 *disable_pipes |= 1 << intel_crtc->pipe;
7386 }
7387
7388
7389 /* set_mode is also used to update properties on life display pipes. */
7390 intel_crtc = to_intel_crtc(crtc);
7391 if (crtc->enabled)
7392 *prepare_pipes |= 1 << intel_crtc->pipe;
7393
7394 /* We only support modeset on one single crtc, hence we need to do that
7395 * only for the passed in crtc iff we change anything else than just
7396 * disable crtcs.
7397 *
7398 * This is actually not true, to be fully compatible with the old crtc
7399 * helper we automatically disable _any_ output (i.e. doesn't need to be
7400 * connected to the crtc we're modesetting on) if it's disconnected.
7401 * Which is a rather nutty api (since changed the output configuration
7402 * without userspace's explicit request can lead to confusion), but
7403 * alas. Hence we currently need to modeset on all pipes we prepare. */
7404 if (*prepare_pipes)
7405 *modeset_pipes = *prepare_pipes;
7406
7407 /* ... and mask these out. */
7408 *modeset_pipes &= ~(*disable_pipes);
7409 *prepare_pipes &= ~(*disable_pipes);
7410}
7411
Daniel Vetterea9d7582012-07-10 10:42:52 +02007412static bool intel_crtc_in_use(struct drm_crtc *crtc)
7413{
7414 struct drm_encoder *encoder;
7415 struct drm_device *dev = crtc->dev;
7416
7417 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head)
7418 if (encoder->crtc == crtc)
7419 return true;
7420
7421 return false;
7422}
7423
7424static void
7425intel_modeset_update_state(struct drm_device *dev, unsigned prepare_pipes)
7426{
7427 struct intel_encoder *intel_encoder;
7428 struct intel_crtc *intel_crtc;
7429 struct drm_connector *connector;
7430
7431 list_for_each_entry(intel_encoder, &dev->mode_config.encoder_list,
7432 base.head) {
7433 if (!intel_encoder->base.crtc)
7434 continue;
7435
7436 intel_crtc = to_intel_crtc(intel_encoder->base.crtc);
7437
7438 if (prepare_pipes & (1 << intel_crtc->pipe))
7439 intel_encoder->connectors_active = false;
7440 }
7441
7442 intel_modeset_commit_output_state(dev);
7443
7444 /* Update computed state. */
7445 list_for_each_entry(intel_crtc, &dev->mode_config.crtc_list,
7446 base.head) {
7447 intel_crtc->base.enabled = intel_crtc_in_use(&intel_crtc->base);
7448 }
7449
7450 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
7451 if (!connector->encoder || !connector->encoder->crtc)
7452 continue;
7453
7454 intel_crtc = to_intel_crtc(connector->encoder->crtc);
7455
7456 if (prepare_pipes & (1 << intel_crtc->pipe)) {
Daniel Vetter68d34722012-09-06 22:08:35 +02007457 struct drm_property *dpms_property =
7458 dev->mode_config.dpms_property;
7459
Daniel Vetterea9d7582012-07-10 10:42:52 +02007460 connector->dpms = DRM_MODE_DPMS_ON;
Rob Clark662595d2012-10-11 20:36:04 -05007461 drm_object_property_set_value(&connector->base,
Daniel Vetter68d34722012-09-06 22:08:35 +02007462 dpms_property,
7463 DRM_MODE_DPMS_ON);
Daniel Vetterea9d7582012-07-10 10:42:52 +02007464
7465 intel_encoder = to_intel_encoder(connector->encoder);
7466 intel_encoder->connectors_active = true;
7467 }
7468 }
7469
7470}
7471
Daniel Vetter25c5b262012-07-08 22:08:04 +02007472#define for_each_intel_crtc_masked(dev, mask, intel_crtc) \
7473 list_for_each_entry((intel_crtc), \
7474 &(dev)->mode_config.crtc_list, \
7475 base.head) \
7476 if (mask & (1 <<(intel_crtc)->pipe)) \
7477
Daniel Vetterb9805142012-08-31 17:37:33 +02007478void
Daniel Vetter8af6cf82012-07-10 09:50:11 +02007479intel_modeset_check_state(struct drm_device *dev)
7480{
7481 struct intel_crtc *crtc;
7482 struct intel_encoder *encoder;
7483 struct intel_connector *connector;
7484
7485 list_for_each_entry(connector, &dev->mode_config.connector_list,
7486 base.head) {
7487 /* This also checks the encoder/connector hw state with the
7488 * ->get_hw_state callbacks. */
7489 intel_connector_check_state(connector);
7490
7491 WARN(&connector->new_encoder->base != connector->base.encoder,
7492 "connector's staged encoder doesn't match current encoder\n");
7493 }
7494
7495 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
7496 base.head) {
7497 bool enabled = false;
7498 bool active = false;
7499 enum pipe pipe, tracked_pipe;
7500
7501 DRM_DEBUG_KMS("[ENCODER:%d:%s]\n",
7502 encoder->base.base.id,
7503 drm_get_encoder_name(&encoder->base));
7504
7505 WARN(&encoder->new_crtc->base != encoder->base.crtc,
7506 "encoder's stage crtc doesn't match current crtc\n");
7507 WARN(encoder->connectors_active && !encoder->base.crtc,
7508 "encoder's active_connectors set, but no crtc\n");
7509
7510 list_for_each_entry(connector, &dev->mode_config.connector_list,
7511 base.head) {
7512 if (connector->base.encoder != &encoder->base)
7513 continue;
7514 enabled = true;
7515 if (connector->base.dpms != DRM_MODE_DPMS_OFF)
7516 active = true;
7517 }
7518 WARN(!!encoder->base.crtc != enabled,
7519 "encoder's enabled state mismatch "
7520 "(expected %i, found %i)\n",
7521 !!encoder->base.crtc, enabled);
7522 WARN(active && !encoder->base.crtc,
7523 "active encoder with no crtc\n");
7524
7525 WARN(encoder->connectors_active != active,
7526 "encoder's computed active state doesn't match tracked active state "
7527 "(expected %i, found %i)\n", active, encoder->connectors_active);
7528
7529 active = encoder->get_hw_state(encoder, &pipe);
7530 WARN(active != encoder->connectors_active,
7531 "encoder's hw state doesn't match sw tracking "
7532 "(expected %i, found %i)\n",
7533 encoder->connectors_active, active);
7534
7535 if (!encoder->base.crtc)
7536 continue;
7537
7538 tracked_pipe = to_intel_crtc(encoder->base.crtc)->pipe;
7539 WARN(active && pipe != tracked_pipe,
7540 "active encoder's pipe doesn't match"
7541 "(expected %i, found %i)\n",
7542 tracked_pipe, pipe);
7543
7544 }
7545
7546 list_for_each_entry(crtc, &dev->mode_config.crtc_list,
7547 base.head) {
7548 bool enabled = false;
7549 bool active = false;
7550
7551 DRM_DEBUG_KMS("[CRTC:%d]\n",
7552 crtc->base.base.id);
7553
7554 WARN(crtc->active && !crtc->base.enabled,
7555 "active crtc, but not enabled in sw tracking\n");
7556
7557 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
7558 base.head) {
7559 if (encoder->base.crtc != &crtc->base)
7560 continue;
7561 enabled = true;
7562 if (encoder->connectors_active)
7563 active = true;
7564 }
7565 WARN(active != crtc->active,
7566 "crtc's computed active state doesn't match tracked active state "
7567 "(expected %i, found %i)\n", active, crtc->active);
7568 WARN(enabled != crtc->base.enabled,
7569 "crtc's computed enabled state doesn't match tracked enabled state "
7570 "(expected %i, found %i)\n", enabled, crtc->base.enabled);
7571
7572 assert_pipe(dev->dev_private, crtc->pipe, crtc->active);
7573 }
7574}
7575
Daniel Vettera6778b32012-07-02 09:56:42 +02007576bool intel_set_mode(struct drm_crtc *crtc,
7577 struct drm_display_mode *mode,
Daniel Vetter94352cf2012-07-05 22:51:56 +02007578 int x, int y, struct drm_framebuffer *fb)
Daniel Vettera6778b32012-07-02 09:56:42 +02007579{
7580 struct drm_device *dev = crtc->dev;
Daniel Vetterdbf2b54e2012-07-02 11:18:29 +02007581 drm_i915_private_t *dev_priv = dev->dev_private;
Daniel Vettera6778b32012-07-02 09:56:42 +02007582 struct drm_display_mode *adjusted_mode, saved_mode, saved_hwmode;
Daniel Vetter25c5b262012-07-08 22:08:04 +02007583 struct intel_crtc *intel_crtc;
7584 unsigned disable_pipes, prepare_pipes, modeset_pipes;
Daniel Vettera6778b32012-07-02 09:56:42 +02007585 bool ret = true;
7586
Daniel Vettere2e1ed42012-07-08 21:14:38 +02007587 intel_modeset_affected_pipes(crtc, &modeset_pipes,
Daniel Vetter25c5b262012-07-08 22:08:04 +02007588 &prepare_pipes, &disable_pipes);
7589
7590 DRM_DEBUG_KMS("set mode pipe masks: modeset: %x, prepare: %x, disable: %x\n",
7591 modeset_pipes, prepare_pipes, disable_pipes);
Daniel Vettere2e1ed42012-07-08 21:14:38 +02007592
Daniel Vetter976f8a22012-07-08 22:34:21 +02007593 for_each_intel_crtc_masked(dev, disable_pipes, intel_crtc)
7594 intel_crtc_disable(&intel_crtc->base);
7595
Daniel Vettera6778b32012-07-02 09:56:42 +02007596 saved_hwmode = crtc->hwmode;
7597 saved_mode = crtc->mode;
Daniel Vettera6778b32012-07-02 09:56:42 +02007598
Daniel Vetter25c5b262012-07-08 22:08:04 +02007599 /* Hack: Because we don't (yet) support global modeset on multiple
7600 * crtcs, we don't keep track of the new mode for more than one crtc.
7601 * Hence simply check whether any bit is set in modeset_pipes in all the
7602 * pieces of code that are not yet converted to deal with mutliple crtcs
7603 * changing their mode at the same time. */
7604 adjusted_mode = NULL;
7605 if (modeset_pipes) {
7606 adjusted_mode = intel_modeset_adjusted_mode(crtc, mode);
7607 if (IS_ERR(adjusted_mode)) {
7608 return false;
7609 }
Daniel Vettera6778b32012-07-02 09:56:42 +02007610 }
7611
Daniel Vetterea9d7582012-07-10 10:42:52 +02007612 for_each_intel_crtc_masked(dev, prepare_pipes, intel_crtc) {
7613 if (intel_crtc->base.enabled)
7614 dev_priv->display.crtc_disable(&intel_crtc->base);
7615 }
Daniel Vettera6778b32012-07-02 09:56:42 +02007616
Daniel Vetter6c4c86f2012-09-10 21:58:30 +02007617 /* crtc->mode is already used by the ->mode_set callbacks, hence we need
7618 * to set it here already despite that we pass it down the callchain.
7619 */
7620 if (modeset_pipes)
Daniel Vetter25c5b262012-07-08 22:08:04 +02007621 crtc->mode = *mode;
Daniel Vetter7758a112012-07-08 19:40:39 +02007622
Daniel Vetterea9d7582012-07-10 10:42:52 +02007623 /* Only after disabling all output pipelines that will be changed can we
7624 * update the the output configuration. */
7625 intel_modeset_update_state(dev, prepare_pipes);
7626
Daniel Vetter47fab732012-10-26 10:58:18 +02007627 if (dev_priv->display.modeset_global_resources)
7628 dev_priv->display.modeset_global_resources(dev);
7629
Daniel Vettera6778b32012-07-02 09:56:42 +02007630 /* Set up the DPLL and any encoders state that needs to adjust or depend
7631 * on the DPLL.
7632 */
Daniel Vetter25c5b262012-07-08 22:08:04 +02007633 for_each_intel_crtc_masked(dev, modeset_pipes, intel_crtc) {
7634 ret = !intel_crtc_mode_set(&intel_crtc->base,
7635 mode, adjusted_mode,
7636 x, y, fb);
7637 if (!ret)
7638 goto done;
Daniel Vettera6778b32012-07-02 09:56:42 +02007639 }
7640
7641 /* Now enable the clocks, plane, pipe, and connectors that we set up. */
Daniel Vetter25c5b262012-07-08 22:08:04 +02007642 for_each_intel_crtc_masked(dev, prepare_pipes, intel_crtc)
7643 dev_priv->display.crtc_enable(&intel_crtc->base);
Daniel Vettera6778b32012-07-02 09:56:42 +02007644
Daniel Vetter25c5b262012-07-08 22:08:04 +02007645 if (modeset_pipes) {
7646 /* Store real post-adjustment hardware mode. */
7647 crtc->hwmode = *adjusted_mode;
Daniel Vettera6778b32012-07-02 09:56:42 +02007648
Daniel Vetter25c5b262012-07-08 22:08:04 +02007649 /* Calculate and store various constants which
7650 * are later needed by vblank and swap-completion
7651 * timestamping. They are derived from true hwmode.
7652 */
7653 drm_calc_timestamping_constants(crtc);
7654 }
Daniel Vettera6778b32012-07-02 09:56:42 +02007655
7656 /* FIXME: add subpixel order */
7657done:
7658 drm_mode_destroy(dev, adjusted_mode);
Daniel Vetter25c5b262012-07-08 22:08:04 +02007659 if (!ret && crtc->enabled) {
Daniel Vettera6778b32012-07-02 09:56:42 +02007660 crtc->hwmode = saved_hwmode;
7661 crtc->mode = saved_mode;
Daniel Vetter8af6cf82012-07-10 09:50:11 +02007662 } else {
7663 intel_modeset_check_state(dev);
Daniel Vettera6778b32012-07-02 09:56:42 +02007664 }
7665
7666 return ret;
7667}
7668
Daniel Vetter25c5b262012-07-08 22:08:04 +02007669#undef for_each_intel_crtc_masked
7670
Daniel Vetterd9e55602012-07-04 22:16:09 +02007671static void intel_set_config_free(struct intel_set_config *config)
7672{
7673 if (!config)
7674 return;
7675
Daniel Vetter1aa4b622012-07-05 16:20:48 +02007676 kfree(config->save_connector_encoders);
7677 kfree(config->save_encoder_crtcs);
Daniel Vetterd9e55602012-07-04 22:16:09 +02007678 kfree(config);
7679}
7680
Daniel Vetter85f9eb72012-07-04 22:24:08 +02007681static int intel_set_config_save_state(struct drm_device *dev,
7682 struct intel_set_config *config)
7683{
Daniel Vetter85f9eb72012-07-04 22:24:08 +02007684 struct drm_encoder *encoder;
7685 struct drm_connector *connector;
7686 int count;
7687
Daniel Vetter1aa4b622012-07-05 16:20:48 +02007688 config->save_encoder_crtcs =
7689 kcalloc(dev->mode_config.num_encoder,
7690 sizeof(struct drm_crtc *), GFP_KERNEL);
7691 if (!config->save_encoder_crtcs)
Daniel Vetter85f9eb72012-07-04 22:24:08 +02007692 return -ENOMEM;
7693
Daniel Vetter1aa4b622012-07-05 16:20:48 +02007694 config->save_connector_encoders =
7695 kcalloc(dev->mode_config.num_connector,
7696 sizeof(struct drm_encoder *), GFP_KERNEL);
7697 if (!config->save_connector_encoders)
Daniel Vetter85f9eb72012-07-04 22:24:08 +02007698 return -ENOMEM;
7699
7700 /* Copy data. Note that driver private data is not affected.
7701 * Should anything bad happen only the expected state is
7702 * restored, not the drivers personal bookkeeping.
7703 */
7704 count = 0;
Daniel Vetter85f9eb72012-07-04 22:24:08 +02007705 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
Daniel Vetter1aa4b622012-07-05 16:20:48 +02007706 config->save_encoder_crtcs[count++] = encoder->crtc;
Daniel Vetter85f9eb72012-07-04 22:24:08 +02007707 }
7708
7709 count = 0;
7710 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
Daniel Vetter1aa4b622012-07-05 16:20:48 +02007711 config->save_connector_encoders[count++] = connector->encoder;
Daniel Vetter85f9eb72012-07-04 22:24:08 +02007712 }
7713
7714 return 0;
7715}
7716
7717static void intel_set_config_restore_state(struct drm_device *dev,
7718 struct intel_set_config *config)
7719{
Daniel Vetter9a935852012-07-05 22:34:27 +02007720 struct intel_encoder *encoder;
7721 struct intel_connector *connector;
Daniel Vetter85f9eb72012-07-04 22:24:08 +02007722 int count;
7723
7724 count = 0;
Daniel Vetter9a935852012-07-05 22:34:27 +02007725 list_for_each_entry(encoder, &dev->mode_config.encoder_list, base.head) {
7726 encoder->new_crtc =
7727 to_intel_crtc(config->save_encoder_crtcs[count++]);
Daniel Vetter85f9eb72012-07-04 22:24:08 +02007728 }
7729
7730 count = 0;
Daniel Vetter9a935852012-07-05 22:34:27 +02007731 list_for_each_entry(connector, &dev->mode_config.connector_list, base.head) {
7732 connector->new_encoder =
7733 to_intel_encoder(config->save_connector_encoders[count++]);
Daniel Vetter85f9eb72012-07-04 22:24:08 +02007734 }
7735}
7736
Daniel Vetter5e2b5842012-07-04 22:41:29 +02007737static void
7738intel_set_config_compute_mode_changes(struct drm_mode_set *set,
7739 struct intel_set_config *config)
7740{
7741
7742 /* We should be able to check here if the fb has the same properties
7743 * and then just flip_or_move it */
7744 if (set->crtc->fb != set->fb) {
7745 /* If we have no fb then treat it as a full mode set */
7746 if (set->crtc->fb == NULL) {
7747 DRM_DEBUG_KMS("crtc has no fb, full mode set\n");
7748 config->mode_changed = true;
7749 } else if (set->fb == NULL) {
7750 config->mode_changed = true;
7751 } else if (set->fb->depth != set->crtc->fb->depth) {
7752 config->mode_changed = true;
7753 } else if (set->fb->bits_per_pixel !=
7754 set->crtc->fb->bits_per_pixel) {
7755 config->mode_changed = true;
7756 } else
7757 config->fb_changed = true;
7758 }
7759
Daniel Vetter835c5872012-07-10 18:11:08 +02007760 if (set->fb && (set->x != set->crtc->x || set->y != set->crtc->y))
Daniel Vetter5e2b5842012-07-04 22:41:29 +02007761 config->fb_changed = true;
7762
7763 if (set->mode && !drm_mode_equal(set->mode, &set->crtc->mode)) {
7764 DRM_DEBUG_KMS("modes are different, full mode set\n");
7765 drm_mode_debug_printmodeline(&set->crtc->mode);
7766 drm_mode_debug_printmodeline(set->mode);
7767 config->mode_changed = true;
7768 }
7769}
7770
Daniel Vetter2e431052012-07-04 22:42:15 +02007771static int
Daniel Vetter9a935852012-07-05 22:34:27 +02007772intel_modeset_stage_output_state(struct drm_device *dev,
7773 struct drm_mode_set *set,
7774 struct intel_set_config *config)
Daniel Vetter50f56112012-07-02 09:35:43 +02007775{
Daniel Vetter85f9eb72012-07-04 22:24:08 +02007776 struct drm_crtc *new_crtc;
Daniel Vetter9a935852012-07-05 22:34:27 +02007777 struct intel_connector *connector;
7778 struct intel_encoder *encoder;
Daniel Vetter2e431052012-07-04 22:42:15 +02007779 int count, ro;
Daniel Vetter50f56112012-07-02 09:35:43 +02007780
Daniel Vetter9a935852012-07-05 22:34:27 +02007781 /* The upper layers ensure that we either disabl a crtc or have a list
7782 * of connectors. For paranoia, double-check this. */
7783 WARN_ON(!set->fb && (set->num_connectors != 0));
7784 WARN_ON(set->fb && (set->num_connectors == 0));
7785
Daniel Vetter50f56112012-07-02 09:35:43 +02007786 count = 0;
Daniel Vetter9a935852012-07-05 22:34:27 +02007787 list_for_each_entry(connector, &dev->mode_config.connector_list,
7788 base.head) {
7789 /* Otherwise traverse passed in connector list and get encoders
7790 * for them. */
Daniel Vetter50f56112012-07-02 09:35:43 +02007791 for (ro = 0; ro < set->num_connectors; ro++) {
Daniel Vetter9a935852012-07-05 22:34:27 +02007792 if (set->connectors[ro] == &connector->base) {
7793 connector->new_encoder = connector->encoder;
Daniel Vetter50f56112012-07-02 09:35:43 +02007794 break;
7795 }
7796 }
7797
Daniel Vetter9a935852012-07-05 22:34:27 +02007798 /* If we disable the crtc, disable all its connectors. Also, if
7799 * the connector is on the changing crtc but not on the new
7800 * connector list, disable it. */
7801 if ((!set->fb || ro == set->num_connectors) &&
7802 connector->base.encoder &&
7803 connector->base.encoder->crtc == set->crtc) {
7804 connector->new_encoder = NULL;
7805
7806 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] to [NOCRTC]\n",
7807 connector->base.base.id,
7808 drm_get_connector_name(&connector->base));
7809 }
7810
7811
7812 if (&connector->new_encoder->base != connector->base.encoder) {
Daniel Vetter50f56112012-07-02 09:35:43 +02007813 DRM_DEBUG_KMS("encoder changed, full mode switch\n");
Daniel Vetter5e2b5842012-07-04 22:41:29 +02007814 config->mode_changed = true;
Daniel Vetter50f56112012-07-02 09:35:43 +02007815 }
Daniel Vetter50f56112012-07-02 09:35:43 +02007816
Daniel Vetter9a935852012-07-05 22:34:27 +02007817 /* Disable all disconnected encoders. */
7818 if (connector->base.status == connector_status_disconnected)
7819 connector->new_encoder = NULL;
7820 }
7821 /* connector->new_encoder is now updated for all connectors. */
7822
7823 /* Update crtc of enabled connectors. */
Daniel Vetter50f56112012-07-02 09:35:43 +02007824 count = 0;
Daniel Vetter9a935852012-07-05 22:34:27 +02007825 list_for_each_entry(connector, &dev->mode_config.connector_list,
7826 base.head) {
7827 if (!connector->new_encoder)
Daniel Vetter50f56112012-07-02 09:35:43 +02007828 continue;
7829
Daniel Vetter9a935852012-07-05 22:34:27 +02007830 new_crtc = connector->new_encoder->base.crtc;
Daniel Vetter50f56112012-07-02 09:35:43 +02007831
7832 for (ro = 0; ro < set->num_connectors; ro++) {
Daniel Vetter9a935852012-07-05 22:34:27 +02007833 if (set->connectors[ro] == &connector->base)
Daniel Vetter50f56112012-07-02 09:35:43 +02007834 new_crtc = set->crtc;
7835 }
7836
7837 /* Make sure the new CRTC will work with the encoder */
Daniel Vetter9a935852012-07-05 22:34:27 +02007838 if (!intel_encoder_crtc_ok(&connector->new_encoder->base,
7839 new_crtc)) {
Daniel Vetter5e2b5842012-07-04 22:41:29 +02007840 return -EINVAL;
Daniel Vetter50f56112012-07-02 09:35:43 +02007841 }
Daniel Vetter9a935852012-07-05 22:34:27 +02007842 connector->encoder->new_crtc = to_intel_crtc(new_crtc);
7843
7844 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] to [CRTC:%d]\n",
7845 connector->base.base.id,
7846 drm_get_connector_name(&connector->base),
7847 new_crtc->base.id);
7848 }
7849
7850 /* Check for any encoders that needs to be disabled. */
7851 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
7852 base.head) {
7853 list_for_each_entry(connector,
7854 &dev->mode_config.connector_list,
7855 base.head) {
7856 if (connector->new_encoder == encoder) {
7857 WARN_ON(!connector->new_encoder->new_crtc);
7858
7859 goto next_encoder;
7860 }
7861 }
7862 encoder->new_crtc = NULL;
7863next_encoder:
7864 /* Only now check for crtc changes so we don't miss encoders
7865 * that will be disabled. */
7866 if (&encoder->new_crtc->base != encoder->base.crtc) {
Daniel Vetter50f56112012-07-02 09:35:43 +02007867 DRM_DEBUG_KMS("crtc changed, full mode switch\n");
Daniel Vetter5e2b5842012-07-04 22:41:29 +02007868 config->mode_changed = true;
Daniel Vetter50f56112012-07-02 09:35:43 +02007869 }
7870 }
Daniel Vetter9a935852012-07-05 22:34:27 +02007871 /* Now we've also updated encoder->new_crtc for all encoders. */
Daniel Vetter50f56112012-07-02 09:35:43 +02007872
Daniel Vetter2e431052012-07-04 22:42:15 +02007873 return 0;
7874}
7875
7876static int intel_crtc_set_config(struct drm_mode_set *set)
7877{
7878 struct drm_device *dev;
Daniel Vetter2e431052012-07-04 22:42:15 +02007879 struct drm_mode_set save_set;
7880 struct intel_set_config *config;
7881 int ret;
Daniel Vetter2e431052012-07-04 22:42:15 +02007882
Daniel Vetter8d3e3752012-07-05 16:09:09 +02007883 BUG_ON(!set);
7884 BUG_ON(!set->crtc);
7885 BUG_ON(!set->crtc->helper_private);
Daniel Vetter2e431052012-07-04 22:42:15 +02007886
7887 if (!set->mode)
7888 set->fb = NULL;
7889
Daniel Vetter431e50f2012-07-10 17:53:42 +02007890 /* The fb helper likes to play gross jokes with ->mode_set_config.
7891 * Unfortunately the crtc helper doesn't do much at all for this case,
7892 * so we have to cope with this madness until the fb helper is fixed up. */
7893 if (set->fb && set->num_connectors == 0)
7894 return 0;
7895
Daniel Vetter2e431052012-07-04 22:42:15 +02007896 if (set->fb) {
7897 DRM_DEBUG_KMS("[CRTC:%d] [FB:%d] #connectors=%d (x y) (%i %i)\n",
7898 set->crtc->base.id, set->fb->base.id,
7899 (int)set->num_connectors, set->x, set->y);
7900 } else {
7901 DRM_DEBUG_KMS("[CRTC:%d] [NOFB]\n", set->crtc->base.id);
Daniel Vetter2e431052012-07-04 22:42:15 +02007902 }
7903
7904 dev = set->crtc->dev;
7905
7906 ret = -ENOMEM;
7907 config = kzalloc(sizeof(*config), GFP_KERNEL);
7908 if (!config)
7909 goto out_config;
7910
7911 ret = intel_set_config_save_state(dev, config);
7912 if (ret)
7913 goto out_config;
7914
7915 save_set.crtc = set->crtc;
7916 save_set.mode = &set->crtc->mode;
7917 save_set.x = set->crtc->x;
7918 save_set.y = set->crtc->y;
7919 save_set.fb = set->crtc->fb;
7920
7921 /* Compute whether we need a full modeset, only an fb base update or no
7922 * change at all. In the future we might also check whether only the
7923 * mode changed, e.g. for LVDS where we only change the panel fitter in
7924 * such cases. */
7925 intel_set_config_compute_mode_changes(set, config);
7926
Daniel Vetter9a935852012-07-05 22:34:27 +02007927 ret = intel_modeset_stage_output_state(dev, set, config);
Daniel Vetter2e431052012-07-04 22:42:15 +02007928 if (ret)
7929 goto fail;
7930
Daniel Vetter5e2b5842012-07-04 22:41:29 +02007931 if (config->mode_changed) {
Daniel Vetter87f1faa2012-07-05 23:36:17 +02007932 if (set->mode) {
Daniel Vetter50f56112012-07-02 09:35:43 +02007933 DRM_DEBUG_KMS("attempting to set mode from"
7934 " userspace\n");
7935 drm_mode_debug_printmodeline(set->mode);
Daniel Vetter87f1faa2012-07-05 23:36:17 +02007936 }
7937
7938 if (!intel_set_mode(set->crtc, set->mode,
7939 set->x, set->y, set->fb)) {
7940 DRM_ERROR("failed to set mode on [CRTC:%d]\n",
7941 set->crtc->base.id);
7942 ret = -EINVAL;
7943 goto fail;
7944 }
Daniel Vetter5e2b5842012-07-04 22:41:29 +02007945 } else if (config->fb_changed) {
Daniel Vetter4f660f42012-07-02 09:47:37 +02007946 ret = intel_pipe_set_base(set->crtc,
Daniel Vetter94352cf2012-07-05 22:51:56 +02007947 set->x, set->y, set->fb);
Daniel Vetter50f56112012-07-02 09:35:43 +02007948 }
7949
Daniel Vetterd9e55602012-07-04 22:16:09 +02007950 intel_set_config_free(config);
7951
Daniel Vetter50f56112012-07-02 09:35:43 +02007952 return 0;
7953
7954fail:
Daniel Vetter85f9eb72012-07-04 22:24:08 +02007955 intel_set_config_restore_state(dev, config);
Daniel Vetter50f56112012-07-02 09:35:43 +02007956
7957 /* Try to restore the config */
Daniel Vetter5e2b5842012-07-04 22:41:29 +02007958 if (config->mode_changed &&
Daniel Vettera6778b32012-07-02 09:56:42 +02007959 !intel_set_mode(save_set.crtc, save_set.mode,
7960 save_set.x, save_set.y, save_set.fb))
Daniel Vetter50f56112012-07-02 09:35:43 +02007961 DRM_ERROR("failed to restore config after modeset failure\n");
7962
Daniel Vetterd9e55602012-07-04 22:16:09 +02007963out_config:
7964 intel_set_config_free(config);
Daniel Vetter50f56112012-07-02 09:35:43 +02007965 return ret;
7966}
7967
Chris Wilsonf6e5b162011-04-12 18:06:51 +01007968static const struct drm_crtc_funcs intel_crtc_funcs = {
Chris Wilsonf6e5b162011-04-12 18:06:51 +01007969 .cursor_set = intel_crtc_cursor_set,
7970 .cursor_move = intel_crtc_cursor_move,
7971 .gamma_set = intel_crtc_gamma_set,
Daniel Vetter50f56112012-07-02 09:35:43 +02007972 .set_config = intel_crtc_set_config,
Chris Wilsonf6e5b162011-04-12 18:06:51 +01007973 .destroy = intel_crtc_destroy,
7974 .page_flip = intel_crtc_page_flip,
7975};
7976
Paulo Zanoni79f689a2012-10-05 12:05:52 -03007977static void intel_cpu_pll_init(struct drm_device *dev)
7978{
Paulo Zanoniaffa9352012-11-23 15:30:39 -02007979 if (HAS_DDI(dev))
Paulo Zanoni79f689a2012-10-05 12:05:52 -03007980 intel_ddi_pll_init(dev);
7981}
7982
Jesse Barnesee7b9f92012-04-20 17:11:53 +01007983static void intel_pch_pll_init(struct drm_device *dev)
7984{
7985 drm_i915_private_t *dev_priv = dev->dev_private;
7986 int i;
7987
7988 if (dev_priv->num_pch_pll == 0) {
7989 DRM_DEBUG_KMS("No PCH PLLs on this hardware, skipping initialisation\n");
7990 return;
7991 }
7992
7993 for (i = 0; i < dev_priv->num_pch_pll; i++) {
7994 dev_priv->pch_plls[i].pll_reg = _PCH_DPLL(i);
7995 dev_priv->pch_plls[i].fp0_reg = _PCH_FP0(i);
7996 dev_priv->pch_plls[i].fp1_reg = _PCH_FP1(i);
7997 }
7998}
7999
Hannes Ederb358d0a2008-12-18 21:18:47 +01008000static void intel_crtc_init(struct drm_device *dev, int pipe)
Jesse Barnes79e53942008-11-07 14:24:08 -08008001{
Jesse Barnes22fd0fa2009-12-02 13:42:53 -08008002 drm_i915_private_t *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -08008003 struct intel_crtc *intel_crtc;
8004 int i;
8005
8006 intel_crtc = kzalloc(sizeof(struct intel_crtc) + (INTELFB_CONN_LIMIT * sizeof(struct drm_connector *)), GFP_KERNEL);
8007 if (intel_crtc == NULL)
8008 return;
8009
8010 drm_crtc_init(dev, &intel_crtc->base, &intel_crtc_funcs);
8011
8012 drm_mode_crtc_set_gamma_size(&intel_crtc->base, 256);
Jesse Barnes79e53942008-11-07 14:24:08 -08008013 for (i = 0; i < 256; i++) {
8014 intel_crtc->lut_r[i] = i;
8015 intel_crtc->lut_g[i] = i;
8016 intel_crtc->lut_b[i] = i;
8017 }
8018
Jesse Barnes80824002009-09-10 15:28:06 -07008019 /* Swap pipes & planes for FBC on pre-965 */
8020 intel_crtc->pipe = pipe;
8021 intel_crtc->plane = pipe;
Paulo Zanonia5c961d2012-10-24 15:59:34 -02008022 intel_crtc->cpu_transcoder = pipe;
Chris Wilsone2e767a2010-09-13 16:53:12 +01008023 if (IS_MOBILE(dev) && IS_GEN3(dev)) {
Zhao Yakui28c97732009-10-09 11:39:41 +08008024 DRM_DEBUG_KMS("swapping pipes & planes for FBC\n");
Chris Wilsone2e767a2010-09-13 16:53:12 +01008025 intel_crtc->plane = !pipe;
Jesse Barnes80824002009-09-10 15:28:06 -07008026 }
8027
Jesse Barnes22fd0fa2009-12-02 13:42:53 -08008028 BUG_ON(pipe >= ARRAY_SIZE(dev_priv->plane_to_crtc_mapping) ||
8029 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] != NULL);
8030 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] = &intel_crtc->base;
8031 dev_priv->pipe_to_crtc_mapping[intel_crtc->pipe] = &intel_crtc->base;
8032
Jesse Barnes5a354202011-06-24 12:19:22 -07008033 intel_crtc->bpp = 24; /* default for pre-Ironlake */
Jesse Barnes7e7d76c2010-09-10 10:47:20 -07008034
Jesse Barnes79e53942008-11-07 14:24:08 -08008035 drm_crtc_helper_add(&intel_crtc->base, &intel_helper_funcs);
Jesse Barnes79e53942008-11-07 14:24:08 -08008036}
8037
Carl Worth08d7b3d2009-04-29 14:43:54 -07008038int intel_get_pipe_from_crtc_id(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00008039 struct drm_file *file)
Carl Worth08d7b3d2009-04-29 14:43:54 -07008040{
Carl Worth08d7b3d2009-04-29 14:43:54 -07008041 struct drm_i915_get_pipe_from_crtc_id *pipe_from_crtc_id = data;
Daniel Vetterc05422d2009-08-11 16:05:30 +02008042 struct drm_mode_object *drmmode_obj;
8043 struct intel_crtc *crtc;
Carl Worth08d7b3d2009-04-29 14:43:54 -07008044
Daniel Vetter1cff8f62012-04-24 09:55:08 +02008045 if (!drm_core_check_feature(dev, DRIVER_MODESET))
8046 return -ENODEV;
Carl Worth08d7b3d2009-04-29 14:43:54 -07008047
Daniel Vetterc05422d2009-08-11 16:05:30 +02008048 drmmode_obj = drm_mode_object_find(dev, pipe_from_crtc_id->crtc_id,
8049 DRM_MODE_OBJECT_CRTC);
Carl Worth08d7b3d2009-04-29 14:43:54 -07008050
Daniel Vetterc05422d2009-08-11 16:05:30 +02008051 if (!drmmode_obj) {
Carl Worth08d7b3d2009-04-29 14:43:54 -07008052 DRM_ERROR("no such CRTC id\n");
8053 return -EINVAL;
8054 }
8055
Daniel Vetterc05422d2009-08-11 16:05:30 +02008056 crtc = to_intel_crtc(obj_to_crtc(drmmode_obj));
8057 pipe_from_crtc_id->pipe = crtc->pipe;
Carl Worth08d7b3d2009-04-29 14:43:54 -07008058
Daniel Vetterc05422d2009-08-11 16:05:30 +02008059 return 0;
Carl Worth08d7b3d2009-04-29 14:43:54 -07008060}
8061
Daniel Vetter66a92782012-07-12 20:08:18 +02008062static int intel_encoder_clones(struct intel_encoder *encoder)
Jesse Barnes79e53942008-11-07 14:24:08 -08008063{
Daniel Vetter66a92782012-07-12 20:08:18 +02008064 struct drm_device *dev = encoder->base.dev;
8065 struct intel_encoder *source_encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08008066 int index_mask = 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08008067 int entry = 0;
8068
Daniel Vetter66a92782012-07-12 20:08:18 +02008069 list_for_each_entry(source_encoder,
8070 &dev->mode_config.encoder_list, base.head) {
8071
8072 if (encoder == source_encoder)
Jesse Barnes79e53942008-11-07 14:24:08 -08008073 index_mask |= (1 << entry);
Daniel Vetter66a92782012-07-12 20:08:18 +02008074
8075 /* Intel hw has only one MUX where enocoders could be cloned. */
8076 if (encoder->cloneable && source_encoder->cloneable)
8077 index_mask |= (1 << entry);
8078
Jesse Barnes79e53942008-11-07 14:24:08 -08008079 entry++;
8080 }
Chris Wilson4ef69c72010-09-09 15:14:28 +01008081
Jesse Barnes79e53942008-11-07 14:24:08 -08008082 return index_mask;
8083}
8084
Chris Wilson4d302442010-12-14 19:21:29 +00008085static bool has_edp_a(struct drm_device *dev)
8086{
8087 struct drm_i915_private *dev_priv = dev->dev_private;
8088
8089 if (!IS_MOBILE(dev))
8090 return false;
8091
8092 if ((I915_READ(DP_A) & DP_DETECTED) == 0)
8093 return false;
8094
8095 if (IS_GEN5(dev) &&
8096 (I915_READ(ILK_DISPLAY_CHICKEN_FUSES) & ILK_eDP_A_DISABLE))
8097 return false;
8098
8099 return true;
8100}
8101
Jesse Barnes79e53942008-11-07 14:24:08 -08008102static void intel_setup_outputs(struct drm_device *dev)
8103{
Eric Anholt725e30a2009-01-22 13:01:02 -08008104 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson4ef69c72010-09-09 15:14:28 +01008105 struct intel_encoder *encoder;
Adam Jacksoncb0953d2010-07-16 14:46:29 -04008106 bool dpd_is_edp = false;
Chris Wilsonf3cfcba2012-02-09 09:35:53 +00008107 bool has_lvds;
Jesse Barnes79e53942008-11-07 14:24:08 -08008108
Chris Wilsonf3cfcba2012-02-09 09:35:53 +00008109 has_lvds = intel_lvds_init(dev);
Chris Wilsonc5d1b512010-11-29 18:00:23 +00008110 if (!has_lvds && !HAS_PCH_SPLIT(dev)) {
8111 /* disable the panel fitter on everything but LVDS */
8112 I915_WRITE(PFIT_CONTROL, 0);
8113 }
Jesse Barnes79e53942008-11-07 14:24:08 -08008114
Paulo Zanoniaffa9352012-11-23 15:30:39 -02008115 if (!(HAS_DDI(dev) && (I915_READ(DDI_BUF_CTL(PORT_A)) & DDI_A_4_LANES)))
Paulo Zanoni79935fc2012-11-20 13:27:40 -02008116 intel_crt_init(dev);
Adam Jacksoncb0953d2010-07-16 14:46:29 -04008117
Paulo Zanoniaffa9352012-11-23 15:30:39 -02008118 if (HAS_DDI(dev)) {
Eugeni Dodonov0e72a5b2012-05-09 15:37:27 -03008119 int found;
8120
8121 /* Haswell uses DDI functions to detect digital outputs */
8122 found = I915_READ(DDI_BUF_CTL_A) & DDI_INIT_DISPLAY_DETECTED;
8123 /* DDI A only supports eDP */
8124 if (found)
8125 intel_ddi_init(dev, PORT_A);
8126
8127 /* DDI B, C and D detection is indicated by the SFUSE_STRAP
8128 * register */
8129 found = I915_READ(SFUSE_STRAP);
8130
8131 if (found & SFUSE_STRAP_DDIB_DETECTED)
8132 intel_ddi_init(dev, PORT_B);
8133 if (found & SFUSE_STRAP_DDIC_DETECTED)
8134 intel_ddi_init(dev, PORT_C);
8135 if (found & SFUSE_STRAP_DDID_DETECTED)
8136 intel_ddi_init(dev, PORT_D);
8137 } else if (HAS_PCH_SPLIT(dev)) {
Adam Jacksoncb0953d2010-07-16 14:46:29 -04008138 int found;
Daniel Vetter270b3042012-10-27 15:52:05 +02008139 dpd_is_edp = intel_dpd_is_edp(dev);
8140
8141 if (has_edp_a(dev))
8142 intel_dp_init(dev, DP_A, PORT_A);
Adam Jacksoncb0953d2010-07-16 14:46:29 -04008143
Zhenyu Wang30ad48b2009-06-05 15:38:43 +08008144 if (I915_READ(HDMIB) & PORT_DETECTED) {
Zhao Yakui461ed3c2010-03-30 15:11:33 +08008145 /* PCH SDVOB multiplex with HDMIB */
Daniel Vettereef4eac2012-03-23 23:43:35 +01008146 found = intel_sdvo_init(dev, PCH_SDVOB, true);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +08008147 if (!found)
Daniel Vetter08d644a2012-07-12 20:19:59 +02008148 intel_hdmi_init(dev, HDMIB, PORT_B);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08008149 if (!found && (I915_READ(PCH_DP_B) & DP_DETECTED))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03008150 intel_dp_init(dev, PCH_DP_B, PORT_B);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +08008151 }
8152
8153 if (I915_READ(HDMIC) & PORT_DETECTED)
Daniel Vetter08d644a2012-07-12 20:19:59 +02008154 intel_hdmi_init(dev, HDMIC, PORT_C);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +08008155
Jesse Barnesb708a1d2012-06-11 14:39:56 -04008156 if (!dpd_is_edp && I915_READ(HDMID) & PORT_DETECTED)
Daniel Vetter08d644a2012-07-12 20:19:59 +02008157 intel_hdmi_init(dev, HDMID, PORT_D);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +08008158
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08008159 if (I915_READ(PCH_DP_C) & DP_DETECTED)
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03008160 intel_dp_init(dev, PCH_DP_C, PORT_C);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08008161
Daniel Vetter270b3042012-10-27 15:52:05 +02008162 if (I915_READ(PCH_DP_D) & DP_DETECTED)
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03008163 intel_dp_init(dev, PCH_DP_D, PORT_D);
Jesse Barnes4a87d652012-06-15 11:55:16 -07008164 } else if (IS_VALLEYVIEW(dev)) {
8165 int found;
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08008166
Gajanan Bhat19c03922012-09-27 19:13:07 +05308167 /* Check for built-in panel first. Shares lanes with HDMI on SDVOC */
8168 if (I915_READ(DP_C) & DP_DETECTED)
8169 intel_dp_init(dev, DP_C, PORT_C);
8170
Jesse Barnes4a87d652012-06-15 11:55:16 -07008171 if (I915_READ(SDVOB) & PORT_DETECTED) {
8172 /* SDVOB multiplex with HDMIB */
8173 found = intel_sdvo_init(dev, SDVOB, true);
8174 if (!found)
Daniel Vetter08d644a2012-07-12 20:19:59 +02008175 intel_hdmi_init(dev, SDVOB, PORT_B);
Jesse Barnes4a87d652012-06-15 11:55:16 -07008176 if (!found && (I915_READ(DP_B) & DP_DETECTED))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03008177 intel_dp_init(dev, DP_B, PORT_B);
Jesse Barnes4a87d652012-06-15 11:55:16 -07008178 }
8179
8180 if (I915_READ(SDVOC) & PORT_DETECTED)
Daniel Vetter08d644a2012-07-12 20:19:59 +02008181 intel_hdmi_init(dev, SDVOC, PORT_C);
Jesse Barnes4a87d652012-06-15 11:55:16 -07008182
Zhenyu Wang103a1962009-11-27 11:44:36 +08008183 } else if (SUPPORTS_DIGITAL_OUTPUTS(dev)) {
Ma Ling27185ae2009-08-24 13:50:23 +08008184 bool found = false;
Eric Anholt7d573822009-01-02 13:33:00 -08008185
Eric Anholt725e30a2009-01-22 13:01:02 -08008186 if (I915_READ(SDVOB) & SDVO_DETECTED) {
Jesse Barnesb01f2c32009-12-11 11:07:17 -08008187 DRM_DEBUG_KMS("probing SDVOB\n");
Daniel Vettereef4eac2012-03-23 23:43:35 +01008188 found = intel_sdvo_init(dev, SDVOB, true);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08008189 if (!found && SUPPORTS_INTEGRATED_HDMI(dev)) {
8190 DRM_DEBUG_KMS("probing HDMI on SDVOB\n");
Daniel Vetter08d644a2012-07-12 20:19:59 +02008191 intel_hdmi_init(dev, SDVOB, PORT_B);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08008192 }
Ma Ling27185ae2009-08-24 13:50:23 +08008193
Jesse Barnesb01f2c32009-12-11 11:07:17 -08008194 if (!found && SUPPORTS_INTEGRATED_DP(dev)) {
8195 DRM_DEBUG_KMS("probing DP_B\n");
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03008196 intel_dp_init(dev, DP_B, PORT_B);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08008197 }
Eric Anholt725e30a2009-01-22 13:01:02 -08008198 }
Kristian Høgsberg13520b02009-03-13 15:42:14 -04008199
8200 /* Before G4X SDVOC doesn't have its own detect register */
Kristian Høgsberg13520b02009-03-13 15:42:14 -04008201
Jesse Barnesb01f2c32009-12-11 11:07:17 -08008202 if (I915_READ(SDVOB) & SDVO_DETECTED) {
8203 DRM_DEBUG_KMS("probing SDVOC\n");
Daniel Vettereef4eac2012-03-23 23:43:35 +01008204 found = intel_sdvo_init(dev, SDVOC, false);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08008205 }
Ma Ling27185ae2009-08-24 13:50:23 +08008206
8207 if (!found && (I915_READ(SDVOC) & SDVO_DETECTED)) {
8208
Jesse Barnesb01f2c32009-12-11 11:07:17 -08008209 if (SUPPORTS_INTEGRATED_HDMI(dev)) {
8210 DRM_DEBUG_KMS("probing HDMI on SDVOC\n");
Daniel Vetter08d644a2012-07-12 20:19:59 +02008211 intel_hdmi_init(dev, SDVOC, PORT_C);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08008212 }
8213 if (SUPPORTS_INTEGRATED_DP(dev)) {
8214 DRM_DEBUG_KMS("probing DP_C\n");
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03008215 intel_dp_init(dev, DP_C, PORT_C);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08008216 }
Eric Anholt725e30a2009-01-22 13:01:02 -08008217 }
Ma Ling27185ae2009-08-24 13:50:23 +08008218
Jesse Barnesb01f2c32009-12-11 11:07:17 -08008219 if (SUPPORTS_INTEGRATED_DP(dev) &&
8220 (I915_READ(DP_D) & DP_DETECTED)) {
8221 DRM_DEBUG_KMS("probing DP_D\n");
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03008222 intel_dp_init(dev, DP_D, PORT_D);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08008223 }
Eric Anholtbad720f2009-10-22 16:11:14 -07008224 } else if (IS_GEN2(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -08008225 intel_dvo_init(dev);
8226
Zhenyu Wang103a1962009-11-27 11:44:36 +08008227 if (SUPPORTS_TV(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -08008228 intel_tv_init(dev);
8229
Chris Wilson4ef69c72010-09-09 15:14:28 +01008230 list_for_each_entry(encoder, &dev->mode_config.encoder_list, base.head) {
8231 encoder->base.possible_crtcs = encoder->crtc_mask;
8232 encoder->base.possible_clones =
Daniel Vetter66a92782012-07-12 20:08:18 +02008233 intel_encoder_clones(encoder);
Jesse Barnes79e53942008-11-07 14:24:08 -08008234 }
Chris Wilson47356eb2011-01-11 17:06:04 +00008235
Paulo Zanoni40579ab2012-07-03 15:57:33 -03008236 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev))
Keith Packard9fb526d2011-09-26 22:24:57 -07008237 ironlake_init_pch_refclk(dev);
Daniel Vetter270b3042012-10-27 15:52:05 +02008238
8239 drm_helper_move_panel_connectors_to_head(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08008240}
8241
8242static void intel_user_framebuffer_destroy(struct drm_framebuffer *fb)
8243{
8244 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
Jesse Barnes79e53942008-11-07 14:24:08 -08008245
8246 drm_framebuffer_cleanup(fb);
Chris Wilson05394f32010-11-08 19:18:58 +00008247 drm_gem_object_unreference_unlocked(&intel_fb->obj->base);
Jesse Barnes79e53942008-11-07 14:24:08 -08008248
8249 kfree(intel_fb);
8250}
8251
8252static int intel_user_framebuffer_create_handle(struct drm_framebuffer *fb,
Chris Wilson05394f32010-11-08 19:18:58 +00008253 struct drm_file *file,
Jesse Barnes79e53942008-11-07 14:24:08 -08008254 unsigned int *handle)
8255{
8256 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
Chris Wilson05394f32010-11-08 19:18:58 +00008257 struct drm_i915_gem_object *obj = intel_fb->obj;
Jesse Barnes79e53942008-11-07 14:24:08 -08008258
Chris Wilson05394f32010-11-08 19:18:58 +00008259 return drm_gem_handle_create(file, &obj->base, handle);
Jesse Barnes79e53942008-11-07 14:24:08 -08008260}
8261
8262static const struct drm_framebuffer_funcs intel_fb_funcs = {
8263 .destroy = intel_user_framebuffer_destroy,
8264 .create_handle = intel_user_framebuffer_create_handle,
8265};
8266
Dave Airlie38651672010-03-30 05:34:13 +00008267int intel_framebuffer_init(struct drm_device *dev,
8268 struct intel_framebuffer *intel_fb,
Jesse Barnes308e5bc2011-11-14 14:51:28 -08008269 struct drm_mode_fb_cmd2 *mode_cmd,
Chris Wilson05394f32010-11-08 19:18:58 +00008270 struct drm_i915_gem_object *obj)
Jesse Barnes79e53942008-11-07 14:24:08 -08008271{
Jesse Barnes79e53942008-11-07 14:24:08 -08008272 int ret;
8273
Chris Wilson05394f32010-11-08 19:18:58 +00008274 if (obj->tiling_mode == I915_TILING_Y)
Chris Wilson57cd6502010-08-08 12:34:44 +01008275 return -EINVAL;
8276
Jesse Barnes308e5bc2011-11-14 14:51:28 -08008277 if (mode_cmd->pitches[0] & 63)
Chris Wilson57cd6502010-08-08 12:34:44 +01008278 return -EINVAL;
8279
Ville Syrjälä5d7bd702012-10-31 17:50:18 +02008280 /* FIXME <= Gen4 stride limits are bit unclear */
8281 if (mode_cmd->pitches[0] > 32768)
8282 return -EINVAL;
8283
8284 if (obj->tiling_mode != I915_TILING_NONE &&
8285 mode_cmd->pitches[0] != obj->stride)
8286 return -EINVAL;
8287
Ville Syrjälä57779d02012-10-31 17:50:14 +02008288 /* Reject formats not supported by any plane early. */
Jesse Barnes308e5bc2011-11-14 14:51:28 -08008289 switch (mode_cmd->pixel_format) {
Ville Syrjälä57779d02012-10-31 17:50:14 +02008290 case DRM_FORMAT_C8:
Ville Syrjälä04b39242011-11-17 18:05:13 +02008291 case DRM_FORMAT_RGB565:
8292 case DRM_FORMAT_XRGB8888:
8293 case DRM_FORMAT_ARGB8888:
Ville Syrjälä57779d02012-10-31 17:50:14 +02008294 break;
8295 case DRM_FORMAT_XRGB1555:
8296 case DRM_FORMAT_ARGB1555:
8297 if (INTEL_INFO(dev)->gen > 3)
8298 return -EINVAL;
8299 break;
8300 case DRM_FORMAT_XBGR8888:
8301 case DRM_FORMAT_ABGR8888:
Ville Syrjälä04b39242011-11-17 18:05:13 +02008302 case DRM_FORMAT_XRGB2101010:
8303 case DRM_FORMAT_ARGB2101010:
Ville Syrjälä57779d02012-10-31 17:50:14 +02008304 case DRM_FORMAT_XBGR2101010:
8305 case DRM_FORMAT_ABGR2101010:
8306 if (INTEL_INFO(dev)->gen < 4)
8307 return -EINVAL;
Jesse Barnesb5626742011-06-24 12:19:27 -07008308 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +02008309 case DRM_FORMAT_YUYV:
8310 case DRM_FORMAT_UYVY:
8311 case DRM_FORMAT_YVYU:
8312 case DRM_FORMAT_VYUY:
Ville Syrjälä57779d02012-10-31 17:50:14 +02008313 if (INTEL_INFO(dev)->gen < 6)
8314 return -EINVAL;
Chris Wilson57cd6502010-08-08 12:34:44 +01008315 break;
8316 default:
Ville Syrjälä57779d02012-10-31 17:50:14 +02008317 DRM_DEBUG_KMS("unsupported pixel format 0x%08x\n", mode_cmd->pixel_format);
Chris Wilson57cd6502010-08-08 12:34:44 +01008318 return -EINVAL;
8319 }
8320
Ville Syrjälä90f9a332012-10-31 17:50:19 +02008321 /* FIXME need to adjust LINOFF/TILEOFF accordingly. */
8322 if (mode_cmd->offsets[0] != 0)
8323 return -EINVAL;
8324
Jesse Barnes79e53942008-11-07 14:24:08 -08008325 ret = drm_framebuffer_init(dev, &intel_fb->base, &intel_fb_funcs);
8326 if (ret) {
8327 DRM_ERROR("framebuffer init failed %d\n", ret);
8328 return ret;
8329 }
8330
8331 drm_helper_mode_fill_fb_struct(&intel_fb->base, mode_cmd);
Jesse Barnes79e53942008-11-07 14:24:08 -08008332 intel_fb->obj = obj;
Jesse Barnes79e53942008-11-07 14:24:08 -08008333 return 0;
8334}
8335
Jesse Barnes79e53942008-11-07 14:24:08 -08008336static struct drm_framebuffer *
8337intel_user_framebuffer_create(struct drm_device *dev,
8338 struct drm_file *filp,
Jesse Barnes308e5bc2011-11-14 14:51:28 -08008339 struct drm_mode_fb_cmd2 *mode_cmd)
Jesse Barnes79e53942008-11-07 14:24:08 -08008340{
Chris Wilson05394f32010-11-08 19:18:58 +00008341 struct drm_i915_gem_object *obj;
Jesse Barnes79e53942008-11-07 14:24:08 -08008342
Jesse Barnes308e5bc2011-11-14 14:51:28 -08008343 obj = to_intel_bo(drm_gem_object_lookup(dev, filp,
8344 mode_cmd->handles[0]));
Chris Wilsonc8725222011-02-19 11:31:06 +00008345 if (&obj->base == NULL)
Chris Wilsoncce13ff2010-08-08 13:36:38 +01008346 return ERR_PTR(-ENOENT);
Jesse Barnes79e53942008-11-07 14:24:08 -08008347
Chris Wilsond2dff872011-04-19 08:36:26 +01008348 return intel_framebuffer_create(dev, mode_cmd, obj);
Jesse Barnes79e53942008-11-07 14:24:08 -08008349}
8350
Jesse Barnes79e53942008-11-07 14:24:08 -08008351static const struct drm_mode_config_funcs intel_mode_funcs = {
Jesse Barnes79e53942008-11-07 14:24:08 -08008352 .fb_create = intel_user_framebuffer_create,
Dave Airlieeb1f8e42010-05-07 06:42:51 +00008353 .output_poll_changed = intel_fb_output_poll_changed,
Jesse Barnes79e53942008-11-07 14:24:08 -08008354};
8355
Jesse Barnese70236a2009-09-21 10:42:27 -07008356/* Set up chip specific display functions */
8357static void intel_init_display(struct drm_device *dev)
8358{
8359 struct drm_i915_private *dev_priv = dev->dev_private;
8360
8361 /* We always want a DPMS function */
Paulo Zanoniaffa9352012-11-23 15:30:39 -02008362 if (HAS_DDI(dev)) {
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03008363 dev_priv->display.crtc_mode_set = haswell_crtc_mode_set;
Paulo Zanoni4f771f12012-10-23 18:29:51 -02008364 dev_priv->display.crtc_enable = haswell_crtc_enable;
8365 dev_priv->display.crtc_disable = haswell_crtc_disable;
Paulo Zanoni6441ab52012-10-05 12:05:58 -03008366 dev_priv->display.off = haswell_crtc_off;
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03008367 dev_priv->display.update_plane = ironlake_update_plane;
8368 } else if (HAS_PCH_SPLIT(dev)) {
Eric Anholtf564048e2011-03-30 13:01:02 -07008369 dev_priv->display.crtc_mode_set = ironlake_crtc_mode_set;
Daniel Vetter76e5a892012-06-29 22:39:33 +02008370 dev_priv->display.crtc_enable = ironlake_crtc_enable;
8371 dev_priv->display.crtc_disable = ironlake_crtc_disable;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01008372 dev_priv->display.off = ironlake_crtc_off;
Jesse Barnes17638cd2011-06-24 12:19:23 -07008373 dev_priv->display.update_plane = ironlake_update_plane;
Eric Anholtf564048e2011-03-30 13:01:02 -07008374 } else {
Eric Anholtf564048e2011-03-30 13:01:02 -07008375 dev_priv->display.crtc_mode_set = i9xx_crtc_mode_set;
Daniel Vetter76e5a892012-06-29 22:39:33 +02008376 dev_priv->display.crtc_enable = i9xx_crtc_enable;
8377 dev_priv->display.crtc_disable = i9xx_crtc_disable;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01008378 dev_priv->display.off = i9xx_crtc_off;
Jesse Barnes17638cd2011-06-24 12:19:23 -07008379 dev_priv->display.update_plane = i9xx_update_plane;
Eric Anholtf564048e2011-03-30 13:01:02 -07008380 }
Jesse Barnese70236a2009-09-21 10:42:27 -07008381
Jesse Barnese70236a2009-09-21 10:42:27 -07008382 /* Returns the core display clock speed */
Jesse Barnes25eb05fc2012-03-28 13:39:23 -07008383 if (IS_VALLEYVIEW(dev))
8384 dev_priv->display.get_display_clock_speed =
8385 valleyview_get_display_clock_speed;
8386 else if (IS_I945G(dev) || (IS_G33(dev) && !IS_PINEVIEW_M(dev)))
Jesse Barnese70236a2009-09-21 10:42:27 -07008387 dev_priv->display.get_display_clock_speed =
8388 i945_get_display_clock_speed;
8389 else if (IS_I915G(dev))
8390 dev_priv->display.get_display_clock_speed =
8391 i915_get_display_clock_speed;
Adam Jacksonf2b115e2009-12-03 17:14:42 -05008392 else if (IS_I945GM(dev) || IS_845G(dev) || IS_PINEVIEW_M(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -07008393 dev_priv->display.get_display_clock_speed =
8394 i9xx_misc_get_display_clock_speed;
8395 else if (IS_I915GM(dev))
8396 dev_priv->display.get_display_clock_speed =
8397 i915gm_get_display_clock_speed;
8398 else if (IS_I865G(dev))
8399 dev_priv->display.get_display_clock_speed =
8400 i865_get_display_clock_speed;
Daniel Vetterf0f8a9c2009-09-15 22:57:33 +02008401 else if (IS_I85X(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -07008402 dev_priv->display.get_display_clock_speed =
8403 i855_get_display_clock_speed;
8404 else /* 852, 830 */
8405 dev_priv->display.get_display_clock_speed =
8406 i830_get_display_clock_speed;
8407
Zhenyu Wang7f8a8562010-04-01 13:07:53 +08008408 if (HAS_PCH_SPLIT(dev)) {
Chris Wilsonf00a3dd2010-10-21 14:57:17 +01008409 if (IS_GEN5(dev)) {
Jesse Barnes674cf962011-04-28 14:27:04 -07008410 dev_priv->display.fdi_link_train = ironlake_fdi_link_train;
Wu Fengguange0dac652011-09-05 14:25:34 +08008411 dev_priv->display.write_eld = ironlake_write_eld;
Yuanhan Liu13982612010-12-15 15:42:31 +08008412 } else if (IS_GEN6(dev)) {
Jesse Barnes674cf962011-04-28 14:27:04 -07008413 dev_priv->display.fdi_link_train = gen6_fdi_link_train;
Wu Fengguange0dac652011-09-05 14:25:34 +08008414 dev_priv->display.write_eld = ironlake_write_eld;
Jesse Barnes357555c2011-04-28 15:09:55 -07008415 } else if (IS_IVYBRIDGE(dev)) {
8416 /* FIXME: detect B0+ stepping and use auto training */
8417 dev_priv->display.fdi_link_train = ivb_manual_fdi_link_train;
Wu Fengguange0dac652011-09-05 14:25:34 +08008418 dev_priv->display.write_eld = ironlake_write_eld;
Daniel Vetter01a415f2012-10-27 15:58:40 +02008419 dev_priv->display.modeset_global_resources =
8420 ivb_modeset_global_resources;
Eugeni Dodonovc82e4d22012-05-09 15:37:21 -03008421 } else if (IS_HASWELL(dev)) {
8422 dev_priv->display.fdi_link_train = hsw_fdi_link_train;
Wang Xingchao83358c852012-08-16 22:43:37 +08008423 dev_priv->display.write_eld = haswell_write_eld;
Zhenyu Wang7f8a8562010-04-01 13:07:53 +08008424 } else
8425 dev_priv->display.update_wm = NULL;
Jesse Barnes6067aae2011-04-28 15:04:31 -07008426 } else if (IS_G4X(dev)) {
Wu Fengguange0dac652011-09-05 14:25:34 +08008427 dev_priv->display.write_eld = g4x_write_eld;
Jesse Barnese70236a2009-09-21 10:42:27 -07008428 }
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008429
8430 /* Default just returns -ENODEV to indicate unsupported */
8431 dev_priv->display.queue_flip = intel_default_queue_flip;
8432
8433 switch (INTEL_INFO(dev)->gen) {
8434 case 2:
8435 dev_priv->display.queue_flip = intel_gen2_queue_flip;
8436 break;
8437
8438 case 3:
8439 dev_priv->display.queue_flip = intel_gen3_queue_flip;
8440 break;
8441
8442 case 4:
8443 case 5:
8444 dev_priv->display.queue_flip = intel_gen4_queue_flip;
8445 break;
8446
8447 case 6:
8448 dev_priv->display.queue_flip = intel_gen6_queue_flip;
8449 break;
Jesse Barnes7c9017e2011-06-16 12:18:54 -07008450 case 7:
8451 dev_priv->display.queue_flip = intel_gen7_queue_flip;
8452 break;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008453 }
Jesse Barnese70236a2009-09-21 10:42:27 -07008454}
8455
Jesse Barnesb690e962010-07-19 13:53:12 -07008456/*
8457 * Some BIOSes insist on assuming the GPU's pipe A is enabled at suspend,
8458 * resume, or other times. This quirk makes sure that's the case for
8459 * affected systems.
8460 */
Akshay Joshi0206e352011-08-16 15:34:10 -04008461static void quirk_pipea_force(struct drm_device *dev)
Jesse Barnesb690e962010-07-19 13:53:12 -07008462{
8463 struct drm_i915_private *dev_priv = dev->dev_private;
8464
8465 dev_priv->quirks |= QUIRK_PIPEA_FORCE;
Daniel Vetterbc0daf42012-04-01 13:16:49 +02008466 DRM_INFO("applying pipe a force quirk\n");
Jesse Barnesb690e962010-07-19 13:53:12 -07008467}
8468
Keith Packard435793d2011-07-12 14:56:22 -07008469/*
8470 * Some machines (Lenovo U160) do not work with SSC on LVDS for some reason
8471 */
8472static void quirk_ssc_force_disable(struct drm_device *dev)
8473{
8474 struct drm_i915_private *dev_priv = dev->dev_private;
8475 dev_priv->quirks |= QUIRK_LVDS_SSC_DISABLE;
Daniel Vetterbc0daf42012-04-01 13:16:49 +02008476 DRM_INFO("applying lvds SSC disable quirk\n");
Keith Packard435793d2011-07-12 14:56:22 -07008477}
8478
Carsten Emde4dca20e2012-03-15 15:56:26 +01008479/*
Carsten Emde5a15ab52012-03-15 15:56:27 +01008480 * A machine (e.g. Acer Aspire 5734Z) may need to invert the panel backlight
8481 * brightness value
Carsten Emde4dca20e2012-03-15 15:56:26 +01008482 */
8483static void quirk_invert_brightness(struct drm_device *dev)
8484{
8485 struct drm_i915_private *dev_priv = dev->dev_private;
8486 dev_priv->quirks |= QUIRK_INVERT_BRIGHTNESS;
Daniel Vetterbc0daf42012-04-01 13:16:49 +02008487 DRM_INFO("applying inverted panel brightness quirk\n");
Jesse Barnesb690e962010-07-19 13:53:12 -07008488}
8489
8490struct intel_quirk {
8491 int device;
8492 int subsystem_vendor;
8493 int subsystem_device;
8494 void (*hook)(struct drm_device *dev);
8495};
8496
Egbert Eich5f85f1762012-10-14 15:46:38 +02008497/* For systems that don't have a meaningful PCI subdevice/subvendor ID */
8498struct intel_dmi_quirk {
8499 void (*hook)(struct drm_device *dev);
8500 const struct dmi_system_id (*dmi_id_list)[];
8501};
8502
8503static int intel_dmi_reverse_brightness(const struct dmi_system_id *id)
8504{
8505 DRM_INFO("Backlight polarity reversed on %s\n", id->ident);
8506 return 1;
8507}
8508
8509static const struct intel_dmi_quirk intel_dmi_quirks[] = {
8510 {
8511 .dmi_id_list = &(const struct dmi_system_id[]) {
8512 {
8513 .callback = intel_dmi_reverse_brightness,
8514 .ident = "NCR Corporation",
8515 .matches = {DMI_MATCH(DMI_SYS_VENDOR, "NCR Corporation"),
8516 DMI_MATCH(DMI_PRODUCT_NAME, ""),
8517 },
8518 },
8519 { } /* terminating entry */
8520 },
8521 .hook = quirk_invert_brightness,
8522 },
8523};
8524
Ben Widawskyc43b5632012-04-16 14:07:40 -07008525static struct intel_quirk intel_quirks[] = {
Jesse Barnesb690e962010-07-19 13:53:12 -07008526 /* HP Mini needs pipe A force quirk (LP: #322104) */
Akshay Joshi0206e352011-08-16 15:34:10 -04008527 { 0x27ae, 0x103c, 0x361a, quirk_pipea_force },
Jesse Barnesb690e962010-07-19 13:53:12 -07008528
Jesse Barnesb690e962010-07-19 13:53:12 -07008529 /* Toshiba Protege R-205, S-209 needs pipe A force quirk */
8530 { 0x2592, 0x1179, 0x0001, quirk_pipea_force },
8531
Jesse Barnesb690e962010-07-19 13:53:12 -07008532 /* ThinkPad T60 needs pipe A force quirk (bug #16494) */
8533 { 0x2782, 0x17aa, 0x201a, quirk_pipea_force },
8534
Daniel Vetterccd0d362012-10-10 23:13:59 +02008535 /* 830/845 need to leave pipe A & dpll A up */
Jesse Barnesb690e962010-07-19 13:53:12 -07008536 { 0x2562, PCI_ANY_ID, PCI_ANY_ID, quirk_pipea_force },
Daniel Vetterdcdaed62012-08-12 21:19:34 +02008537 { 0x3577, PCI_ANY_ID, PCI_ANY_ID, quirk_pipea_force },
Keith Packard435793d2011-07-12 14:56:22 -07008538
8539 /* Lenovo U160 cannot use SSC on LVDS */
8540 { 0x0046, 0x17aa, 0x3920, quirk_ssc_force_disable },
Michel Alexandre Salim070d3292011-07-28 18:52:06 +02008541
8542 /* Sony Vaio Y cannot use SSC on LVDS */
8543 { 0x0046, 0x104d, 0x9076, quirk_ssc_force_disable },
Carsten Emde5a15ab52012-03-15 15:56:27 +01008544
8545 /* Acer Aspire 5734Z must invert backlight brightness */
8546 { 0x2a42, 0x1025, 0x0459, quirk_invert_brightness },
Jesse Barnesb690e962010-07-19 13:53:12 -07008547};
8548
8549static void intel_init_quirks(struct drm_device *dev)
8550{
8551 struct pci_dev *d = dev->pdev;
8552 int i;
8553
8554 for (i = 0; i < ARRAY_SIZE(intel_quirks); i++) {
8555 struct intel_quirk *q = &intel_quirks[i];
8556
8557 if (d->device == q->device &&
8558 (d->subsystem_vendor == q->subsystem_vendor ||
8559 q->subsystem_vendor == PCI_ANY_ID) &&
8560 (d->subsystem_device == q->subsystem_device ||
8561 q->subsystem_device == PCI_ANY_ID))
8562 q->hook(dev);
8563 }
Egbert Eich5f85f1762012-10-14 15:46:38 +02008564 for (i = 0; i < ARRAY_SIZE(intel_dmi_quirks); i++) {
8565 if (dmi_check_system(*intel_dmi_quirks[i].dmi_id_list) != 0)
8566 intel_dmi_quirks[i].hook(dev);
8567 }
Jesse Barnesb690e962010-07-19 13:53:12 -07008568}
8569
Jesse Barnes9cce37f2010-08-13 15:11:26 -07008570/* Disable the VGA plane that we never use */
8571static void i915_disable_vga(struct drm_device *dev)
8572{
8573 struct drm_i915_private *dev_priv = dev->dev_private;
8574 u8 sr1;
8575 u32 vga_reg;
8576
8577 if (HAS_PCH_SPLIT(dev))
8578 vga_reg = CPU_VGACNTRL;
8579 else
8580 vga_reg = VGACNTRL;
8581
8582 vga_get_uninterruptible(dev->pdev, VGA_RSRC_LEGACY_IO);
Jesse Barnes3fdcf432012-04-06 11:46:27 -07008583 outb(SR01, VGA_SR_INDEX);
Jesse Barnes9cce37f2010-08-13 15:11:26 -07008584 sr1 = inb(VGA_SR_DATA);
8585 outb(sr1 | 1<<5, VGA_SR_DATA);
8586 vga_put(dev->pdev, VGA_RSRC_LEGACY_IO);
8587 udelay(300);
8588
8589 I915_WRITE(vga_reg, VGA_DISP_DISABLE);
8590 POSTING_READ(vga_reg);
8591}
8592
Daniel Vetterf8175862012-04-10 15:50:11 +02008593void intel_modeset_init_hw(struct drm_device *dev)
8594{
Eugeni Dodonov0232e922012-07-06 15:42:36 -03008595 /* We attempt to init the necessary power wells early in the initialization
8596 * time, so the subsystems that expect power to be enabled can work.
8597 */
8598 intel_init_power_wells(dev);
8599
Eugeni Dodonova8f78b52012-06-28 15:55:35 -03008600 intel_prepare_ddi(dev);
8601
Daniel Vetterf8175862012-04-10 15:50:11 +02008602 intel_init_clock_gating(dev);
8603
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02008604 mutex_lock(&dev->struct_mutex);
Daniel Vetter8090c6b2012-06-24 16:42:32 +02008605 intel_enable_gt_powersave(dev);
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02008606 mutex_unlock(&dev->struct_mutex);
Daniel Vetterf8175862012-04-10 15:50:11 +02008607}
8608
Jesse Barnes79e53942008-11-07 14:24:08 -08008609void intel_modeset_init(struct drm_device *dev)
8610{
Jesse Barnes652c3932009-08-17 13:31:43 -07008611 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesb840d907f2011-12-13 13:19:38 -08008612 int i, ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08008613
8614 drm_mode_config_init(dev);
8615
8616 dev->mode_config.min_width = 0;
8617 dev->mode_config.min_height = 0;
8618
Dave Airlie019d96c2011-09-29 16:20:42 +01008619 dev->mode_config.preferred_depth = 24;
8620 dev->mode_config.prefer_shadow = 1;
8621
Laurent Pincharte6ecefa2012-05-17 13:27:23 +02008622 dev->mode_config.funcs = &intel_mode_funcs;
Jesse Barnes79e53942008-11-07 14:24:08 -08008623
Jesse Barnesb690e962010-07-19 13:53:12 -07008624 intel_init_quirks(dev);
8625
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03008626 intel_init_pm(dev);
8627
Jesse Barnese70236a2009-09-21 10:42:27 -07008628 intel_init_display(dev);
8629
Chris Wilsona6c45cf2010-09-17 00:32:17 +01008630 if (IS_GEN2(dev)) {
8631 dev->mode_config.max_width = 2048;
8632 dev->mode_config.max_height = 2048;
8633 } else if (IS_GEN3(dev)) {
Keith Packard5e4d6fa2009-07-12 23:53:17 -07008634 dev->mode_config.max_width = 4096;
8635 dev->mode_config.max_height = 4096;
Jesse Barnes79e53942008-11-07 14:24:08 -08008636 } else {
Chris Wilsona6c45cf2010-09-17 00:32:17 +01008637 dev->mode_config.max_width = 8192;
8638 dev->mode_config.max_height = 8192;
Jesse Barnes79e53942008-11-07 14:24:08 -08008639 }
Daniel Vetterdd2757f2012-06-07 15:55:57 +02008640 dev->mode_config.fb_base = dev_priv->mm.gtt_base_addr;
Jesse Barnes79e53942008-11-07 14:24:08 -08008641
Zhao Yakui28c97732009-10-09 11:39:41 +08008642 DRM_DEBUG_KMS("%d display pipe%s available.\n",
Dave Airliea3524f12010-06-06 18:59:41 +10008643 dev_priv->num_pipe, dev_priv->num_pipe > 1 ? "s" : "");
Jesse Barnes79e53942008-11-07 14:24:08 -08008644
Dave Airliea3524f12010-06-06 18:59:41 +10008645 for (i = 0; i < dev_priv->num_pipe; i++) {
Jesse Barnes79e53942008-11-07 14:24:08 -08008646 intel_crtc_init(dev, i);
Jesse Barnes00c2064b2012-01-13 15:48:39 -08008647 ret = intel_plane_init(dev, i);
8648 if (ret)
8649 DRM_DEBUG_KMS("plane %d init failed: %d\n", i, ret);
Jesse Barnes79e53942008-11-07 14:24:08 -08008650 }
8651
Paulo Zanoni79f689a2012-10-05 12:05:52 -03008652 intel_cpu_pll_init(dev);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01008653 intel_pch_pll_init(dev);
8654
Jesse Barnes9cce37f2010-08-13 15:11:26 -07008655 /* Just disable it once at startup */
8656 i915_disable_vga(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08008657 intel_setup_outputs(dev);
Chris Wilson2c7111d2011-03-29 10:40:27 +01008658}
Jesse Barnesd5bb0812011-01-05 12:01:26 -08008659
Daniel Vetter24929352012-07-02 20:28:59 +02008660static void
8661intel_connector_break_all_links(struct intel_connector *connector)
8662{
8663 connector->base.dpms = DRM_MODE_DPMS_OFF;
8664 connector->base.encoder = NULL;
8665 connector->encoder->connectors_active = false;
8666 connector->encoder->base.crtc = NULL;
8667}
8668
Daniel Vetter7fad7982012-07-04 17:51:47 +02008669static void intel_enable_pipe_a(struct drm_device *dev)
8670{
8671 struct intel_connector *connector;
8672 struct drm_connector *crt = NULL;
8673 struct intel_load_detect_pipe load_detect_temp;
8674
8675 /* We can't just switch on the pipe A, we need to set things up with a
8676 * proper mode and output configuration. As a gross hack, enable pipe A
8677 * by enabling the load detect pipe once. */
8678 list_for_each_entry(connector,
8679 &dev->mode_config.connector_list,
8680 base.head) {
8681 if (connector->encoder->type == INTEL_OUTPUT_ANALOG) {
8682 crt = &connector->base;
8683 break;
8684 }
8685 }
8686
8687 if (!crt)
8688 return;
8689
8690 if (intel_get_load_detect_pipe(crt, NULL, &load_detect_temp))
8691 intel_release_load_detect_pipe(crt, &load_detect_temp);
8692
8693
8694}
8695
Daniel Vetterfa555832012-10-10 23:14:00 +02008696static bool
8697intel_check_plane_mapping(struct intel_crtc *crtc)
8698{
8699 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
8700 u32 reg, val;
8701
8702 if (dev_priv->num_pipe == 1)
8703 return true;
8704
8705 reg = DSPCNTR(!crtc->plane);
8706 val = I915_READ(reg);
8707
8708 if ((val & DISPLAY_PLANE_ENABLE) &&
8709 (!!(val & DISPPLANE_SEL_PIPE_MASK) == crtc->pipe))
8710 return false;
8711
8712 return true;
8713}
8714
Daniel Vetter24929352012-07-02 20:28:59 +02008715static void intel_sanitize_crtc(struct intel_crtc *crtc)
8716{
8717 struct drm_device *dev = crtc->base.dev;
8718 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterfa555832012-10-10 23:14:00 +02008719 u32 reg;
Daniel Vetter24929352012-07-02 20:28:59 +02008720
Daniel Vetter24929352012-07-02 20:28:59 +02008721 /* Clear any frame start delays used for debugging left by the BIOS */
Paulo Zanoni702e7a52012-10-23 18:29:59 -02008722 reg = PIPECONF(crtc->cpu_transcoder);
Daniel Vetter24929352012-07-02 20:28:59 +02008723 I915_WRITE(reg, I915_READ(reg) & ~PIPECONF_FRAME_START_DELAY_MASK);
8724
8725 /* We need to sanitize the plane -> pipe mapping first because this will
Daniel Vetterfa555832012-10-10 23:14:00 +02008726 * disable the crtc (and hence change the state) if it is wrong. Note
8727 * that gen4+ has a fixed plane -> pipe mapping. */
8728 if (INTEL_INFO(dev)->gen < 4 && !intel_check_plane_mapping(crtc)) {
Daniel Vetter24929352012-07-02 20:28:59 +02008729 struct intel_connector *connector;
8730 bool plane;
8731
Daniel Vetter24929352012-07-02 20:28:59 +02008732 DRM_DEBUG_KMS("[CRTC:%d] wrong plane connection detected!\n",
8733 crtc->base.base.id);
8734
8735 /* Pipe has the wrong plane attached and the plane is active.
8736 * Temporarily change the plane mapping and disable everything
8737 * ... */
8738 plane = crtc->plane;
8739 crtc->plane = !plane;
8740 dev_priv->display.crtc_disable(&crtc->base);
8741 crtc->plane = plane;
8742
8743 /* ... and break all links. */
8744 list_for_each_entry(connector, &dev->mode_config.connector_list,
8745 base.head) {
8746 if (connector->encoder->base.crtc != &crtc->base)
8747 continue;
8748
8749 intel_connector_break_all_links(connector);
8750 }
8751
8752 WARN_ON(crtc->active);
8753 crtc->base.enabled = false;
8754 }
Daniel Vetter24929352012-07-02 20:28:59 +02008755
Daniel Vetter7fad7982012-07-04 17:51:47 +02008756 if (dev_priv->quirks & QUIRK_PIPEA_FORCE &&
8757 crtc->pipe == PIPE_A && !crtc->active) {
8758 /* BIOS forgot to enable pipe A, this mostly happens after
8759 * resume. Force-enable the pipe to fix this, the update_dpms
8760 * call below we restore the pipe to the right state, but leave
8761 * the required bits on. */
8762 intel_enable_pipe_a(dev);
8763 }
8764
Daniel Vetter24929352012-07-02 20:28:59 +02008765 /* Adjust the state of the output pipe according to whether we
8766 * have active connectors/encoders. */
8767 intel_crtc_update_dpms(&crtc->base);
8768
8769 if (crtc->active != crtc->base.enabled) {
8770 struct intel_encoder *encoder;
8771
8772 /* This can happen either due to bugs in the get_hw_state
8773 * functions or because the pipe is force-enabled due to the
8774 * pipe A quirk. */
8775 DRM_DEBUG_KMS("[CRTC:%d] hw state adjusted, was %s, now %s\n",
8776 crtc->base.base.id,
8777 crtc->base.enabled ? "enabled" : "disabled",
8778 crtc->active ? "enabled" : "disabled");
8779
8780 crtc->base.enabled = crtc->active;
8781
8782 /* Because we only establish the connector -> encoder ->
8783 * crtc links if something is active, this means the
8784 * crtc is now deactivated. Break the links. connector
8785 * -> encoder links are only establish when things are
8786 * actually up, hence no need to break them. */
8787 WARN_ON(crtc->active);
8788
8789 for_each_encoder_on_crtc(dev, &crtc->base, encoder) {
8790 WARN_ON(encoder->connectors_active);
8791 encoder->base.crtc = NULL;
8792 }
8793 }
8794}
8795
8796static void intel_sanitize_encoder(struct intel_encoder *encoder)
8797{
8798 struct intel_connector *connector;
8799 struct drm_device *dev = encoder->base.dev;
8800
8801 /* We need to check both for a crtc link (meaning that the
8802 * encoder is active and trying to read from a pipe) and the
8803 * pipe itself being active. */
8804 bool has_active_crtc = encoder->base.crtc &&
8805 to_intel_crtc(encoder->base.crtc)->active;
8806
8807 if (encoder->connectors_active && !has_active_crtc) {
8808 DRM_DEBUG_KMS("[ENCODER:%d:%s] has active connectors but no active pipe!\n",
8809 encoder->base.base.id,
8810 drm_get_encoder_name(&encoder->base));
8811
8812 /* Connector is active, but has no active pipe. This is
8813 * fallout from our resume register restoring. Disable
8814 * the encoder manually again. */
8815 if (encoder->base.crtc) {
8816 DRM_DEBUG_KMS("[ENCODER:%d:%s] manually disabled\n",
8817 encoder->base.base.id,
8818 drm_get_encoder_name(&encoder->base));
8819 encoder->disable(encoder);
8820 }
8821
8822 /* Inconsistent output/port/pipe state happens presumably due to
8823 * a bug in one of the get_hw_state functions. Or someplace else
8824 * in our code, like the register restore mess on resume. Clamp
8825 * things to off as a safer default. */
8826 list_for_each_entry(connector,
8827 &dev->mode_config.connector_list,
8828 base.head) {
8829 if (connector->encoder != encoder)
8830 continue;
8831
8832 intel_connector_break_all_links(connector);
8833 }
8834 }
8835 /* Enabled encoders without active connectors will be fixed in
8836 * the crtc fixup. */
8837}
8838
8839/* Scan out the current hw modeset state, sanitizes it and maps it into the drm
8840 * and i915 state tracking structures. */
Daniel Vetter45e2b5f2012-11-23 18:16:34 +01008841void intel_modeset_setup_hw_state(struct drm_device *dev,
8842 bool force_restore)
Daniel Vetter24929352012-07-02 20:28:59 +02008843{
8844 struct drm_i915_private *dev_priv = dev->dev_private;
8845 enum pipe pipe;
8846 u32 tmp;
8847 struct intel_crtc *crtc;
8848 struct intel_encoder *encoder;
8849 struct intel_connector *connector;
8850
Paulo Zanoniaffa9352012-11-23 15:30:39 -02008851 if (HAS_DDI(dev)) {
Paulo Zanonie28d54c2012-10-24 16:09:25 -02008852 tmp = I915_READ(TRANS_DDI_FUNC_CTL(TRANSCODER_EDP));
8853
8854 if (tmp & TRANS_DDI_FUNC_ENABLE) {
8855 switch (tmp & TRANS_DDI_EDP_INPUT_MASK) {
8856 case TRANS_DDI_EDP_INPUT_A_ON:
8857 case TRANS_DDI_EDP_INPUT_A_ONOFF:
8858 pipe = PIPE_A;
8859 break;
8860 case TRANS_DDI_EDP_INPUT_B_ONOFF:
8861 pipe = PIPE_B;
8862 break;
8863 case TRANS_DDI_EDP_INPUT_C_ONOFF:
8864 pipe = PIPE_C;
8865 break;
8866 }
8867
8868 crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
8869 crtc->cpu_transcoder = TRANSCODER_EDP;
8870
8871 DRM_DEBUG_KMS("Pipe %c using transcoder EDP\n",
8872 pipe_name(pipe));
8873 }
8874 }
8875
Daniel Vetter24929352012-07-02 20:28:59 +02008876 for_each_pipe(pipe) {
8877 crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
8878
Paulo Zanoni702e7a52012-10-23 18:29:59 -02008879 tmp = I915_READ(PIPECONF(crtc->cpu_transcoder));
Daniel Vetter24929352012-07-02 20:28:59 +02008880 if (tmp & PIPECONF_ENABLE)
8881 crtc->active = true;
8882 else
8883 crtc->active = false;
8884
8885 crtc->base.enabled = crtc->active;
8886
8887 DRM_DEBUG_KMS("[CRTC:%d] hw state readout: %s\n",
8888 crtc->base.base.id,
8889 crtc->active ? "enabled" : "disabled");
8890 }
8891
Paulo Zanoniaffa9352012-11-23 15:30:39 -02008892 if (HAS_DDI(dev))
Paulo Zanoni6441ab52012-10-05 12:05:58 -03008893 intel_ddi_setup_hw_pll_state(dev);
8894
Daniel Vetter24929352012-07-02 20:28:59 +02008895 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
8896 base.head) {
8897 pipe = 0;
8898
8899 if (encoder->get_hw_state(encoder, &pipe)) {
8900 encoder->base.crtc =
8901 dev_priv->pipe_to_crtc_mapping[pipe];
8902 } else {
8903 encoder->base.crtc = NULL;
8904 }
8905
8906 encoder->connectors_active = false;
8907 DRM_DEBUG_KMS("[ENCODER:%d:%s] hw state readout: %s, pipe=%i\n",
8908 encoder->base.base.id,
8909 drm_get_encoder_name(&encoder->base),
8910 encoder->base.crtc ? "enabled" : "disabled",
8911 pipe);
8912 }
8913
8914 list_for_each_entry(connector, &dev->mode_config.connector_list,
8915 base.head) {
8916 if (connector->get_hw_state(connector)) {
8917 connector->base.dpms = DRM_MODE_DPMS_ON;
8918 connector->encoder->connectors_active = true;
8919 connector->base.encoder = &connector->encoder->base;
8920 } else {
8921 connector->base.dpms = DRM_MODE_DPMS_OFF;
8922 connector->base.encoder = NULL;
8923 }
8924 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] hw state readout: %s\n",
8925 connector->base.base.id,
8926 drm_get_connector_name(&connector->base),
8927 connector->base.encoder ? "enabled" : "disabled");
8928 }
8929
8930 /* HW state is read out, now we need to sanitize this mess. */
8931 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
8932 base.head) {
8933 intel_sanitize_encoder(encoder);
8934 }
8935
8936 for_each_pipe(pipe) {
8937 crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
8938 intel_sanitize_crtc(crtc);
8939 }
Daniel Vetter9a935852012-07-05 22:34:27 +02008940
Daniel Vetter45e2b5f2012-11-23 18:16:34 +01008941 if (force_restore) {
8942 for_each_pipe(pipe) {
8943 crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
8944 intel_set_mode(&crtc->base, &crtc->base.mode,
8945 crtc->base.x, crtc->base.y, crtc->base.fb);
8946 }
8947 } else {
8948 intel_modeset_update_staged_output_state(dev);
8949 }
Daniel Vetter8af6cf82012-07-10 09:50:11 +02008950
8951 intel_modeset_check_state(dev);
Daniel Vetter2e938892012-10-11 20:08:24 +02008952
8953 drm_mode_config_reset(dev);
Chris Wilson2c7111d2011-03-29 10:40:27 +01008954}
8955
8956void intel_modeset_gem_init(struct drm_device *dev)
8957{
Chris Wilson1833b132012-05-09 11:56:28 +01008958 intel_modeset_init_hw(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +02008959
8960 intel_setup_overlay(dev);
Daniel Vetter24929352012-07-02 20:28:59 +02008961
Daniel Vetter45e2b5f2012-11-23 18:16:34 +01008962 intel_modeset_setup_hw_state(dev, false);
Jesse Barnes79e53942008-11-07 14:24:08 -08008963}
8964
8965void intel_modeset_cleanup(struct drm_device *dev)
8966{
Jesse Barnes652c3932009-08-17 13:31:43 -07008967 struct drm_i915_private *dev_priv = dev->dev_private;
8968 struct drm_crtc *crtc;
8969 struct intel_crtc *intel_crtc;
8970
Keith Packardf87ea762010-10-03 19:36:26 -07008971 drm_kms_helper_poll_fini(dev);
Jesse Barnes652c3932009-08-17 13:31:43 -07008972 mutex_lock(&dev->struct_mutex);
8973
Jesse Barnes723bfd72010-10-07 16:01:13 -07008974 intel_unregister_dsm_handler();
8975
8976
Jesse Barnes652c3932009-08-17 13:31:43 -07008977 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
8978 /* Skip inactive CRTCs */
8979 if (!crtc->fb)
8980 continue;
8981
8982 intel_crtc = to_intel_crtc(crtc);
Daniel Vetter3dec0092010-08-20 21:40:52 +02008983 intel_increase_pllclock(crtc);
Jesse Barnes652c3932009-08-17 13:31:43 -07008984 }
8985
Chris Wilson973d04f2011-07-08 12:22:37 +01008986 intel_disable_fbc(dev);
Jesse Barnese70236a2009-09-21 10:42:27 -07008987
Daniel Vetter8090c6b2012-06-24 16:42:32 +02008988 intel_disable_gt_powersave(dev);
Chris Wilson0cdab212010-12-05 17:27:06 +00008989
Daniel Vetter930ebb42012-06-29 23:32:16 +02008990 ironlake_teardown_rc6(dev);
8991
Jesse Barnes57f350b2012-03-28 13:39:25 -07008992 if (IS_VALLEYVIEW(dev))
8993 vlv_init_dpio(dev);
8994
Kristian Høgsberg69341a52009-11-11 12:19:17 -05008995 mutex_unlock(&dev->struct_mutex);
8996
Daniel Vetter6c0d93502010-08-20 18:26:46 +02008997 /* Disable the irq before mode object teardown, for the irq might
8998 * enqueue unpin/hotplug work. */
8999 drm_irq_uninstall(dev);
9000 cancel_work_sync(&dev_priv->hotplug_work);
Daniel Vetterc6a828d2012-08-08 23:35:35 +02009001 cancel_work_sync(&dev_priv->rps.work);
Daniel Vetter6c0d93502010-08-20 18:26:46 +02009002
Chris Wilson1630fe72011-07-08 12:22:42 +01009003 /* flush any delayed tasks or pending work */
9004 flush_scheduled_work();
9005
Jesse Barnes79e53942008-11-07 14:24:08 -08009006 drm_mode_config_cleanup(dev);
9007}
9008
Dave Airlie28d52042009-09-21 14:33:58 +10009009/*
Zhenyu Wangf1c79df2010-03-30 14:39:29 +08009010 * Return which encoder is currently attached for connector.
9011 */
Chris Wilsondf0e9242010-09-09 16:20:55 +01009012struct drm_encoder *intel_best_encoder(struct drm_connector *connector)
Jesse Barnes79e53942008-11-07 14:24:08 -08009013{
Chris Wilsondf0e9242010-09-09 16:20:55 +01009014 return &intel_attached_encoder(connector)->base;
9015}
Jesse Barnes79e53942008-11-07 14:24:08 -08009016
Chris Wilsondf0e9242010-09-09 16:20:55 +01009017void intel_connector_attach_encoder(struct intel_connector *connector,
9018 struct intel_encoder *encoder)
9019{
9020 connector->encoder = encoder;
9021 drm_mode_connector_attach_encoder(&connector->base,
9022 &encoder->base);
Jesse Barnes79e53942008-11-07 14:24:08 -08009023}
Dave Airlie28d52042009-09-21 14:33:58 +10009024
9025/*
9026 * set vga decode state - true == enable VGA decode
9027 */
9028int intel_modeset_vga_set_state(struct drm_device *dev, bool state)
9029{
9030 struct drm_i915_private *dev_priv = dev->dev_private;
9031 u16 gmch_ctrl;
9032
9033 pci_read_config_word(dev_priv->bridge_dev, INTEL_GMCH_CTRL, &gmch_ctrl);
9034 if (state)
9035 gmch_ctrl &= ~INTEL_GMCH_VGA_DISABLE;
9036 else
9037 gmch_ctrl |= INTEL_GMCH_VGA_DISABLE;
9038 pci_write_config_word(dev_priv->bridge_dev, INTEL_GMCH_CTRL, gmch_ctrl);
9039 return 0;
9040}
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00009041
9042#ifdef CONFIG_DEBUG_FS
9043#include <linux/seq_file.h>
9044
9045struct intel_display_error_state {
9046 struct intel_cursor_error_state {
9047 u32 control;
9048 u32 position;
9049 u32 base;
9050 u32 size;
Damien Lespiau52331302012-08-15 19:23:25 +01009051 } cursor[I915_MAX_PIPES];
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00009052
9053 struct intel_pipe_error_state {
9054 u32 conf;
9055 u32 source;
9056
9057 u32 htotal;
9058 u32 hblank;
9059 u32 hsync;
9060 u32 vtotal;
9061 u32 vblank;
9062 u32 vsync;
Damien Lespiau52331302012-08-15 19:23:25 +01009063 } pipe[I915_MAX_PIPES];
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00009064
9065 struct intel_plane_error_state {
9066 u32 control;
9067 u32 stride;
9068 u32 size;
9069 u32 pos;
9070 u32 addr;
9071 u32 surface;
9072 u32 tile_offset;
Damien Lespiau52331302012-08-15 19:23:25 +01009073 } plane[I915_MAX_PIPES];
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00009074};
9075
9076struct intel_display_error_state *
9077intel_display_capture_error_state(struct drm_device *dev)
9078{
Akshay Joshi0206e352011-08-16 15:34:10 -04009079 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00009080 struct intel_display_error_state *error;
Paulo Zanoni702e7a52012-10-23 18:29:59 -02009081 enum transcoder cpu_transcoder;
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00009082 int i;
9083
9084 error = kmalloc(sizeof(*error), GFP_ATOMIC);
9085 if (error == NULL)
9086 return NULL;
9087
Damien Lespiau52331302012-08-15 19:23:25 +01009088 for_each_pipe(i) {
Paulo Zanoni702e7a52012-10-23 18:29:59 -02009089 cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv, i);
9090
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00009091 error->cursor[i].control = I915_READ(CURCNTR(i));
9092 error->cursor[i].position = I915_READ(CURPOS(i));
9093 error->cursor[i].base = I915_READ(CURBASE(i));
9094
9095 error->plane[i].control = I915_READ(DSPCNTR(i));
9096 error->plane[i].stride = I915_READ(DSPSTRIDE(i));
9097 error->plane[i].size = I915_READ(DSPSIZE(i));
Akshay Joshi0206e352011-08-16 15:34:10 -04009098 error->plane[i].pos = I915_READ(DSPPOS(i));
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00009099 error->plane[i].addr = I915_READ(DSPADDR(i));
9100 if (INTEL_INFO(dev)->gen >= 4) {
9101 error->plane[i].surface = I915_READ(DSPSURF(i));
9102 error->plane[i].tile_offset = I915_READ(DSPTILEOFF(i));
9103 }
9104
Paulo Zanoni702e7a52012-10-23 18:29:59 -02009105 error->pipe[i].conf = I915_READ(PIPECONF(cpu_transcoder));
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00009106 error->pipe[i].source = I915_READ(PIPESRC(i));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02009107 error->pipe[i].htotal = I915_READ(HTOTAL(cpu_transcoder));
9108 error->pipe[i].hblank = I915_READ(HBLANK(cpu_transcoder));
9109 error->pipe[i].hsync = I915_READ(HSYNC(cpu_transcoder));
9110 error->pipe[i].vtotal = I915_READ(VTOTAL(cpu_transcoder));
9111 error->pipe[i].vblank = I915_READ(VBLANK(cpu_transcoder));
9112 error->pipe[i].vsync = I915_READ(VSYNC(cpu_transcoder));
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00009113 }
9114
9115 return error;
9116}
9117
9118void
9119intel_display_print_error_state(struct seq_file *m,
9120 struct drm_device *dev,
9121 struct intel_display_error_state *error)
9122{
Damien Lespiau52331302012-08-15 19:23:25 +01009123 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00009124 int i;
9125
Damien Lespiau52331302012-08-15 19:23:25 +01009126 seq_printf(m, "Num Pipes: %d\n", dev_priv->num_pipe);
9127 for_each_pipe(i) {
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00009128 seq_printf(m, "Pipe [%d]:\n", i);
9129 seq_printf(m, " CONF: %08x\n", error->pipe[i].conf);
9130 seq_printf(m, " SRC: %08x\n", error->pipe[i].source);
9131 seq_printf(m, " HTOTAL: %08x\n", error->pipe[i].htotal);
9132 seq_printf(m, " HBLANK: %08x\n", error->pipe[i].hblank);
9133 seq_printf(m, " HSYNC: %08x\n", error->pipe[i].hsync);
9134 seq_printf(m, " VTOTAL: %08x\n", error->pipe[i].vtotal);
9135 seq_printf(m, " VBLANK: %08x\n", error->pipe[i].vblank);
9136 seq_printf(m, " VSYNC: %08x\n", error->pipe[i].vsync);
9137
9138 seq_printf(m, "Plane [%d]:\n", i);
9139 seq_printf(m, " CNTR: %08x\n", error->plane[i].control);
9140 seq_printf(m, " STRIDE: %08x\n", error->plane[i].stride);
9141 seq_printf(m, " SIZE: %08x\n", error->plane[i].size);
9142 seq_printf(m, " POS: %08x\n", error->plane[i].pos);
9143 seq_printf(m, " ADDR: %08x\n", error->plane[i].addr);
9144 if (INTEL_INFO(dev)->gen >= 4) {
9145 seq_printf(m, " SURF: %08x\n", error->plane[i].surface);
9146 seq_printf(m, " TILEOFF: %08x\n", error->plane[i].tile_offset);
9147 }
9148
9149 seq_printf(m, "Cursor [%d]:\n", i);
9150 seq_printf(m, " CNTR: %08x\n", error->cursor[i].control);
9151 seq_printf(m, " POS: %08x\n", error->cursor[i].position);
9152 seq_printf(m, " BASE: %08x\n", error->cursor[i].base);
9153 }
9154}
9155#endif