blob: 5d22abe19b1f3e51f1c38c6997fcfeb2b8920110 [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 int min, max;
Jesse Barnes79e53942008-11-07 14:24:08 -080050} intel_range_t;
51
52typedef struct {
Akshay Joshi0206e352011-08-16 15:34:10 -040053 int dot_limit;
54 int p2_slow, p2_fast;
Jesse Barnes79e53942008-11-07 14:24:08 -080055} intel_p2_t;
56
57#define INTEL_P2_NUM 2
Ma Lingd4906092009-03-18 20:13:27 +080058typedef struct intel_limit intel_limit_t;
59struct intel_limit {
Akshay Joshi0206e352011-08-16 15:34:10 -040060 intel_range_t dot, vco, n, m, m1, m2, p, p1;
61 intel_p2_t p2;
Ville Syrjäläf4808ab2013-02-28 19:19:44 +020062 /**
63 * find_pll() - Find the best values for the PLL
64 * @limit: limits for the PLL
65 * @crtc: current CRTC
66 * @target: target frequency in kHz
67 * @refclk: reference clock frequency in kHz
68 * @match_clock: if provided, @best_clock P divider must
69 * match the P divider from @match_clock
70 * used for LVDS downclocking
71 * @best_clock: best PLL values found
72 *
73 * Returns true on success, false on failure.
74 */
75 bool (*find_pll)(const intel_limit_t *limit,
76 struct drm_crtc *crtc,
77 int target, int refclk,
78 intel_clock_t *match_clock,
79 intel_clock_t *best_clock);
Ma Lingd4906092009-03-18 20:13:27 +080080};
Jesse Barnes79e53942008-11-07 14:24:08 -080081
Jesse Barnes2377b742010-07-07 14:06:43 -070082/* FDI */
83#define IRONLAKE_FDI_FREQ 2700000 /* in kHz for mode->clock */
84
Daniel Vetterd2acd212012-10-20 20:57:43 +020085int
86intel_pch_rawclk(struct drm_device *dev)
87{
88 struct drm_i915_private *dev_priv = dev->dev_private;
89
90 WARN_ON(!HAS_PCH_SPLIT(dev));
91
92 return I915_READ(PCH_RAWCLK_FREQ) & RAWCLK_FREQ_MASK;
93}
94
Ma Lingd4906092009-03-18 20:13:27 +080095static bool
96intel_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);
Ma Lingd4906092009-03-18 20:13:27 +080099static bool
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200100intel_pnv_find_best_PLL(const intel_limit_t *limit, struct drm_crtc *crtc,
101 int target, int refclk, intel_clock_t *match_clock,
102 intel_clock_t *best_clock);
103static bool
Ma Lingd4906092009-03-18 20:13:27 +0800104intel_g4x_find_best_PLL(const intel_limit_t *limit, struct drm_crtc *crtc,
Sean Paulcec2f352012-01-10 15:09:36 -0800105 int target, int refclk, intel_clock_t *match_clock,
106 intel_clock_t *best_clock);
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700107static bool
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700108intel_vlv_find_best_pll(const intel_limit_t *limit, struct drm_crtc *crtc,
109 int target, int refclk, intel_clock_t *match_clock,
110 intel_clock_t *best_clock);
111
Chris Wilson021357a2010-09-07 20:54:59 +0100112static inline u32 /* units of 100MHz */
113intel_fdi_link_freq(struct drm_device *dev)
114{
Chris Wilson8b99e682010-10-13 09:59:17 +0100115 if (IS_GEN5(dev)) {
116 struct drm_i915_private *dev_priv = dev->dev_private;
117 return (I915_READ(FDI_PLL_BIOS_0) & FDI_PLL_FB_CLOCK_MASK) + 2;
118 } else
119 return 27;
Chris Wilson021357a2010-09-07 20:54:59 +0100120}
121
Keith Packarde4b36692009-06-05 19:22:17 -0700122static const intel_limit_t intel_limits_i8xx_dvo = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400123 .dot = { .min = 25000, .max = 350000 },
124 .vco = { .min = 930000, .max = 1400000 },
125 .n = { .min = 3, .max = 16 },
126 .m = { .min = 96, .max = 140 },
127 .m1 = { .min = 18, .max = 26 },
128 .m2 = { .min = 6, .max = 16 },
129 .p = { .min = 4, .max = 128 },
130 .p1 = { .min = 2, .max = 33 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700131 .p2 = { .dot_limit = 165000,
132 .p2_slow = 4, .p2_fast = 2 },
Ma Lingd4906092009-03-18 20:13:27 +0800133 .find_pll = intel_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700134};
135
136static const intel_limit_t intel_limits_i8xx_lvds = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400137 .dot = { .min = 25000, .max = 350000 },
138 .vco = { .min = 930000, .max = 1400000 },
139 .n = { .min = 3, .max = 16 },
140 .m = { .min = 96, .max = 140 },
141 .m1 = { .min = 18, .max = 26 },
142 .m2 = { .min = 6, .max = 16 },
143 .p = { .min = 4, .max = 128 },
144 .p1 = { .min = 1, .max = 6 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700145 .p2 = { .dot_limit = 165000,
146 .p2_slow = 14, .p2_fast = 7 },
Ma Lingd4906092009-03-18 20:13:27 +0800147 .find_pll = intel_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700148};
Eric Anholt273e27c2011-03-30 13:01:10 -0700149
Keith Packarde4b36692009-06-05 19:22:17 -0700150static const intel_limit_t intel_limits_i9xx_sdvo = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400151 .dot = { .min = 20000, .max = 400000 },
152 .vco = { .min = 1400000, .max = 2800000 },
153 .n = { .min = 1, .max = 6 },
154 .m = { .min = 70, .max = 120 },
Patrik Jakobsson4f7dfb62013-02-13 22:20:22 +0100155 .m1 = { .min = 8, .max = 18 },
156 .m2 = { .min = 3, .max = 7 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400157 .p = { .min = 5, .max = 80 },
158 .p1 = { .min = 1, .max = 8 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700159 .p2 = { .dot_limit = 200000,
160 .p2_slow = 10, .p2_fast = 5 },
Ma Lingd4906092009-03-18 20:13:27 +0800161 .find_pll = intel_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700162};
163
164static const intel_limit_t intel_limits_i9xx_lvds = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400165 .dot = { .min = 20000, .max = 400000 },
166 .vco = { .min = 1400000, .max = 2800000 },
167 .n = { .min = 1, .max = 6 },
168 .m = { .min = 70, .max = 120 },
Patrik Jakobsson53a7d2d2013-02-13 22:20:21 +0100169 .m1 = { .min = 8, .max = 18 },
170 .m2 = { .min = 3, .max = 7 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400171 .p = { .min = 7, .max = 98 },
172 .p1 = { .min = 1, .max = 8 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700173 .p2 = { .dot_limit = 112000,
174 .p2_slow = 14, .p2_fast = 7 },
Ma Lingd4906092009-03-18 20:13:27 +0800175 .find_pll = intel_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700176};
177
Eric Anholt273e27c2011-03-30 13:01:10 -0700178
Keith Packarde4b36692009-06-05 19:22:17 -0700179static const intel_limit_t intel_limits_g4x_sdvo = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700180 .dot = { .min = 25000, .max = 270000 },
181 .vco = { .min = 1750000, .max = 3500000},
182 .n = { .min = 1, .max = 4 },
183 .m = { .min = 104, .max = 138 },
184 .m1 = { .min = 17, .max = 23 },
185 .m2 = { .min = 5, .max = 11 },
186 .p = { .min = 10, .max = 30 },
187 .p1 = { .min = 1, .max = 3},
188 .p2 = { .dot_limit = 270000,
189 .p2_slow = 10,
190 .p2_fast = 10
Ma Ling044c7c42009-03-18 20:13:23 +0800191 },
Ma Lingd4906092009-03-18 20:13:27 +0800192 .find_pll = intel_g4x_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700193};
194
195static const intel_limit_t intel_limits_g4x_hdmi = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700196 .dot = { .min = 22000, .max = 400000 },
197 .vco = { .min = 1750000, .max = 3500000},
198 .n = { .min = 1, .max = 4 },
199 .m = { .min = 104, .max = 138 },
200 .m1 = { .min = 16, .max = 23 },
201 .m2 = { .min = 5, .max = 11 },
202 .p = { .min = 5, .max = 80 },
203 .p1 = { .min = 1, .max = 8},
204 .p2 = { .dot_limit = 165000,
205 .p2_slow = 10, .p2_fast = 5 },
Ma Lingd4906092009-03-18 20:13:27 +0800206 .find_pll = intel_g4x_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700207};
208
209static const intel_limit_t intel_limits_g4x_single_channel_lvds = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700210 .dot = { .min = 20000, .max = 115000 },
211 .vco = { .min = 1750000, .max = 3500000 },
212 .n = { .min = 1, .max = 3 },
213 .m = { .min = 104, .max = 138 },
214 .m1 = { .min = 17, .max = 23 },
215 .m2 = { .min = 5, .max = 11 },
216 .p = { .min = 28, .max = 112 },
217 .p1 = { .min = 2, .max = 8 },
218 .p2 = { .dot_limit = 0,
219 .p2_slow = 14, .p2_fast = 14
Ma Ling044c7c42009-03-18 20:13:23 +0800220 },
Ma Lingd4906092009-03-18 20:13:27 +0800221 .find_pll = intel_g4x_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700222};
223
224static const intel_limit_t intel_limits_g4x_dual_channel_lvds = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700225 .dot = { .min = 80000, .max = 224000 },
226 .vco = { .min = 1750000, .max = 3500000 },
227 .n = { .min = 1, .max = 3 },
228 .m = { .min = 104, .max = 138 },
229 .m1 = { .min = 17, .max = 23 },
230 .m2 = { .min = 5, .max = 11 },
231 .p = { .min = 14, .max = 42 },
232 .p1 = { .min = 2, .max = 6 },
233 .p2 = { .dot_limit = 0,
234 .p2_slow = 7, .p2_fast = 7
Ma Ling044c7c42009-03-18 20:13:23 +0800235 },
Ma Lingd4906092009-03-18 20:13:27 +0800236 .find_pll = intel_g4x_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700237};
238
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500239static const intel_limit_t intel_limits_pineview_sdvo = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400240 .dot = { .min = 20000, .max = 400000},
241 .vco = { .min = 1700000, .max = 3500000 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700242 /* Pineview's Ncounter is a ring counter */
Akshay Joshi0206e352011-08-16 15:34:10 -0400243 .n = { .min = 3, .max = 6 },
244 .m = { .min = 2, .max = 256 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700245 /* Pineview only has one combined m divider, which we treat as m2. */
Akshay Joshi0206e352011-08-16 15:34:10 -0400246 .m1 = { .min = 0, .max = 0 },
247 .m2 = { .min = 0, .max = 254 },
248 .p = { .min = 5, .max = 80 },
249 .p1 = { .min = 1, .max = 8 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700250 .p2 = { .dot_limit = 200000,
251 .p2_slow = 10, .p2_fast = 5 },
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200252 .find_pll = intel_pnv_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700253};
254
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500255static const intel_limit_t intel_limits_pineview_lvds = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400256 .dot = { .min = 20000, .max = 400000 },
257 .vco = { .min = 1700000, .max = 3500000 },
258 .n = { .min = 3, .max = 6 },
259 .m = { .min = 2, .max = 256 },
260 .m1 = { .min = 0, .max = 0 },
261 .m2 = { .min = 0, .max = 254 },
262 .p = { .min = 7, .max = 112 },
263 .p1 = { .min = 1, .max = 8 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700264 .p2 = { .dot_limit = 112000,
265 .p2_slow = 14, .p2_fast = 14 },
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200266 .find_pll = intel_pnv_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700267};
268
Eric Anholt273e27c2011-03-30 13:01:10 -0700269/* Ironlake / Sandybridge
270 *
271 * We calculate clock using (register_value + 2) for N/M1/M2, so here
272 * the range value for them is (actual_value - 2).
273 */
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800274static const intel_limit_t intel_limits_ironlake_dac = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700275 .dot = { .min = 25000, .max = 350000 },
276 .vco = { .min = 1760000, .max = 3510000 },
277 .n = { .min = 1, .max = 5 },
278 .m = { .min = 79, .max = 127 },
279 .m1 = { .min = 12, .max = 22 },
280 .m2 = { .min = 5, .max = 9 },
281 .p = { .min = 5, .max = 80 },
282 .p1 = { .min = 1, .max = 8 },
283 .p2 = { .dot_limit = 225000,
284 .p2_slow = 10, .p2_fast = 5 },
Zhao Yakui45476682009-12-31 16:06:04 +0800285 .find_pll = intel_g4x_find_best_PLL,
Keith Packarde4b36692009-06-05 19:22:17 -0700286};
287
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800288static const intel_limit_t intel_limits_ironlake_single_lvds = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700289 .dot = { .min = 25000, .max = 350000 },
290 .vco = { .min = 1760000, .max = 3510000 },
291 .n = { .min = 1, .max = 3 },
292 .m = { .min = 79, .max = 118 },
293 .m1 = { .min = 12, .max = 22 },
294 .m2 = { .min = 5, .max = 9 },
295 .p = { .min = 28, .max = 112 },
296 .p1 = { .min = 2, .max = 8 },
297 .p2 = { .dot_limit = 225000,
298 .p2_slow = 14, .p2_fast = 14 },
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800299 .find_pll = intel_g4x_find_best_PLL,
300};
301
302static const intel_limit_t intel_limits_ironlake_dual_lvds = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700303 .dot = { .min = 25000, .max = 350000 },
304 .vco = { .min = 1760000, .max = 3510000 },
305 .n = { .min = 1, .max = 3 },
306 .m = { .min = 79, .max = 127 },
307 .m1 = { .min = 12, .max = 22 },
308 .m2 = { .min = 5, .max = 9 },
309 .p = { .min = 14, .max = 56 },
310 .p1 = { .min = 2, .max = 8 },
311 .p2 = { .dot_limit = 225000,
312 .p2_slow = 7, .p2_fast = 7 },
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800313 .find_pll = intel_g4x_find_best_PLL,
314};
315
Eric Anholt273e27c2011-03-30 13:01:10 -0700316/* LVDS 100mhz refclk limits. */
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800317static const intel_limit_t intel_limits_ironlake_single_lvds_100m = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700318 .dot = { .min = 25000, .max = 350000 },
319 .vco = { .min = 1760000, .max = 3510000 },
320 .n = { .min = 1, .max = 2 },
321 .m = { .min = 79, .max = 126 },
322 .m1 = { .min = 12, .max = 22 },
323 .m2 = { .min = 5, .max = 9 },
324 .p = { .min = 28, .max = 112 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400325 .p1 = { .min = 2, .max = 8 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700326 .p2 = { .dot_limit = 225000,
327 .p2_slow = 14, .p2_fast = 14 },
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800328 .find_pll = intel_g4x_find_best_PLL,
329};
330
331static const intel_limit_t intel_limits_ironlake_dual_lvds_100m = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700332 .dot = { .min = 25000, .max = 350000 },
333 .vco = { .min = 1760000, .max = 3510000 },
334 .n = { .min = 1, .max = 3 },
335 .m = { .min = 79, .max = 126 },
336 .m1 = { .min = 12, .max = 22 },
337 .m2 = { .min = 5, .max = 9 },
338 .p = { .min = 14, .max = 42 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400339 .p1 = { .min = 2, .max = 6 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700340 .p2 = { .dot_limit = 225000,
341 .p2_slow = 7, .p2_fast = 7 },
Zhao Yakui45476682009-12-31 16:06:04 +0800342 .find_pll = intel_g4x_find_best_PLL,
343};
344
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700345static const intel_limit_t intel_limits_vlv_dac = {
346 .dot = { .min = 25000, .max = 270000 },
347 .vco = { .min = 4000000, .max = 6000000 },
348 .n = { .min = 1, .max = 7 },
349 .m = { .min = 22, .max = 450 }, /* guess */
350 .m1 = { .min = 2, .max = 3 },
351 .m2 = { .min = 11, .max = 156 },
352 .p = { .min = 10, .max = 30 },
Daniel Vetter75e53982013-04-18 21:10:43 +0200353 .p1 = { .min = 1, .max = 3 },
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700354 .p2 = { .dot_limit = 270000,
355 .p2_slow = 2, .p2_fast = 20 },
356 .find_pll = intel_vlv_find_best_pll,
357};
358
359static const intel_limit_t intel_limits_vlv_hdmi = {
Daniel Vetter75e53982013-04-18 21:10:43 +0200360 .dot = { .min = 25000, .max = 270000 },
361 .vco = { .min = 4000000, .max = 6000000 },
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700362 .n = { .min = 1, .max = 7 },
363 .m = { .min = 60, .max = 300 }, /* guess */
364 .m1 = { .min = 2, .max = 3 },
365 .m2 = { .min = 11, .max = 156 },
366 .p = { .min = 10, .max = 30 },
367 .p1 = { .min = 2, .max = 3 },
368 .p2 = { .dot_limit = 270000,
369 .p2_slow = 2, .p2_fast = 20 },
370 .find_pll = intel_vlv_find_best_pll,
371};
372
373static const intel_limit_t intel_limits_vlv_dp = {
Vijay Purushothaman74a4dd22012-09-27 19:13:04 +0530374 .dot = { .min = 25000, .max = 270000 },
375 .vco = { .min = 4000000, .max = 6000000 },
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700376 .n = { .min = 1, .max = 7 },
Vijay Purushothaman74a4dd22012-09-27 19:13:04 +0530377 .m = { .min = 22, .max = 450 },
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700378 .m1 = { .min = 2, .max = 3 },
379 .m2 = { .min = 11, .max = 156 },
380 .p = { .min = 10, .max = 30 },
Daniel Vetter75e53982013-04-18 21:10:43 +0200381 .p1 = { .min = 1, .max = 3 },
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700382 .p2 = { .dot_limit = 270000,
383 .p2_slow = 2, .p2_fast = 20 },
384 .find_pll = intel_vlv_find_best_pll,
385};
386
Chris Wilson1b894b52010-12-14 20:04:54 +0000387static const intel_limit_t *intel_ironlake_limit(struct drm_crtc *crtc,
388 int refclk)
Zhenyu Wang2c072452009-06-05 15:38:42 +0800389{
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800390 struct drm_device *dev = crtc->dev;
Zhenyu Wang2c072452009-06-05 15:38:42 +0800391 const intel_limit_t *limit;
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800392
393 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
Daniel Vetter1974cad2012-11-26 17:22:09 +0100394 if (intel_is_dual_link_lvds(dev)) {
Chris Wilson1b894b52010-12-14 20:04:54 +0000395 if (refclk == 100000)
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800396 limit = &intel_limits_ironlake_dual_lvds_100m;
397 else
398 limit = &intel_limits_ironlake_dual_lvds;
399 } else {
Chris Wilson1b894b52010-12-14 20:04:54 +0000400 if (refclk == 100000)
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800401 limit = &intel_limits_ironlake_single_lvds_100m;
402 else
403 limit = &intel_limits_ironlake_single_lvds;
404 }
Daniel Vetterc6bb3532013-04-19 11:14:33 +0200405 } else
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800406 limit = &intel_limits_ironlake_dac;
Zhenyu Wang2c072452009-06-05 15:38:42 +0800407
408 return limit;
409}
410
Ma Ling044c7c42009-03-18 20:13:23 +0800411static const intel_limit_t *intel_g4x_limit(struct drm_crtc *crtc)
412{
413 struct drm_device *dev = crtc->dev;
Ma Ling044c7c42009-03-18 20:13:23 +0800414 const intel_limit_t *limit;
415
416 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
Daniel Vetter1974cad2012-11-26 17:22:09 +0100417 if (intel_is_dual_link_lvds(dev))
Keith Packarde4b36692009-06-05 19:22:17 -0700418 limit = &intel_limits_g4x_dual_channel_lvds;
Ma Ling044c7c42009-03-18 20:13:23 +0800419 else
Keith Packarde4b36692009-06-05 19:22:17 -0700420 limit = &intel_limits_g4x_single_channel_lvds;
Ma Ling044c7c42009-03-18 20:13:23 +0800421 } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI) ||
422 intel_pipe_has_type(crtc, INTEL_OUTPUT_ANALOG)) {
Keith Packarde4b36692009-06-05 19:22:17 -0700423 limit = &intel_limits_g4x_hdmi;
Ma Ling044c7c42009-03-18 20:13:23 +0800424 } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_SDVO)) {
Keith Packarde4b36692009-06-05 19:22:17 -0700425 limit = &intel_limits_g4x_sdvo;
Ma Ling044c7c42009-03-18 20:13:23 +0800426 } else /* The option is for other outputs */
Keith Packarde4b36692009-06-05 19:22:17 -0700427 limit = &intel_limits_i9xx_sdvo;
Ma Ling044c7c42009-03-18 20:13:23 +0800428
429 return limit;
430}
431
Chris Wilson1b894b52010-12-14 20:04:54 +0000432static const intel_limit_t *intel_limit(struct drm_crtc *crtc, int refclk)
Jesse Barnes79e53942008-11-07 14:24:08 -0800433{
434 struct drm_device *dev = crtc->dev;
435 const intel_limit_t *limit;
436
Eric Anholtbad720f2009-10-22 16:11:14 -0700437 if (HAS_PCH_SPLIT(dev))
Chris Wilson1b894b52010-12-14 20:04:54 +0000438 limit = intel_ironlake_limit(crtc, refclk);
Zhenyu Wang2c072452009-06-05 15:38:42 +0800439 else if (IS_G4X(dev)) {
Ma Ling044c7c42009-03-18 20:13:23 +0800440 limit = intel_g4x_limit(crtc);
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500441 } else if (IS_PINEVIEW(dev)) {
Shaohua Li21778322009-02-23 15:19:16 +0800442 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS))
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500443 limit = &intel_limits_pineview_lvds;
Shaohua Li21778322009-02-23 15:19:16 +0800444 else
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500445 limit = &intel_limits_pineview_sdvo;
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700446 } else if (IS_VALLEYVIEW(dev)) {
447 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_ANALOG))
448 limit = &intel_limits_vlv_dac;
449 else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI))
450 limit = &intel_limits_vlv_hdmi;
451 else
452 limit = &intel_limits_vlv_dp;
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100453 } else if (!IS_GEN2(dev)) {
454 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS))
455 limit = &intel_limits_i9xx_lvds;
456 else
457 limit = &intel_limits_i9xx_sdvo;
Jesse Barnes79e53942008-11-07 14:24:08 -0800458 } else {
459 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS))
Keith Packarde4b36692009-06-05 19:22:17 -0700460 limit = &intel_limits_i8xx_lvds;
Jesse Barnes79e53942008-11-07 14:24:08 -0800461 else
Keith Packarde4b36692009-06-05 19:22:17 -0700462 limit = &intel_limits_i8xx_dvo;
Jesse Barnes79e53942008-11-07 14:24:08 -0800463 }
464 return limit;
465}
466
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500467/* m1 is reserved as 0 in Pineview, n is a ring counter */
468static void pineview_clock(int refclk, intel_clock_t *clock)
Jesse Barnes79e53942008-11-07 14:24:08 -0800469{
Shaohua Li21778322009-02-23 15:19:16 +0800470 clock->m = clock->m2 + 2;
471 clock->p = clock->p1 * clock->p2;
472 clock->vco = refclk * clock->m / clock->n;
473 clock->dot = clock->vco / clock->p;
474}
475
Daniel Vetter7429e9d2013-04-20 17:19:46 +0200476static uint32_t i9xx_dpll_compute_m(struct dpll *dpll)
477{
478 return 5 * (dpll->m1 + 2) + (dpll->m2 + 2);
479}
480
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200481static void i9xx_clock(int refclk, intel_clock_t *clock)
Shaohua Li21778322009-02-23 15:19:16 +0800482{
Daniel Vetter7429e9d2013-04-20 17:19:46 +0200483 clock->m = i9xx_dpll_compute_m(clock);
Jesse Barnes79e53942008-11-07 14:24:08 -0800484 clock->p = clock->p1 * clock->p2;
485 clock->vco = refclk * clock->m / (clock->n + 2);
486 clock->dot = clock->vco / clock->p;
487}
488
Jesse Barnes79e53942008-11-07 14:24:08 -0800489/**
490 * Returns whether any output on the specified pipe is of the specified type
491 */
Chris Wilson4ef69c72010-09-09 15:14:28 +0100492bool intel_pipe_has_type(struct drm_crtc *crtc, int type)
Jesse Barnes79e53942008-11-07 14:24:08 -0800493{
Chris Wilson4ef69c72010-09-09 15:14:28 +0100494 struct drm_device *dev = crtc->dev;
Chris Wilson4ef69c72010-09-09 15:14:28 +0100495 struct intel_encoder *encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -0800496
Daniel Vetter6c2b7c12012-07-05 09:50:24 +0200497 for_each_encoder_on_crtc(dev, crtc, encoder)
498 if (encoder->type == type)
Chris Wilson4ef69c72010-09-09 15:14:28 +0100499 return true;
500
501 return false;
Jesse Barnes79e53942008-11-07 14:24:08 -0800502}
503
Jesse Barnes7c04d1d2009-02-23 15:36:40 -0800504#define INTELPllInvalid(s) do { /* DRM_DEBUG(s); */ return false; } while (0)
Jesse Barnes79e53942008-11-07 14:24:08 -0800505/**
506 * Returns whether the given set of divisors are valid for a given refclk with
507 * the given connectors.
508 */
509
Chris Wilson1b894b52010-12-14 20:04:54 +0000510static bool intel_PLL_is_valid(struct drm_device *dev,
511 const intel_limit_t *limit,
512 const intel_clock_t *clock)
Jesse Barnes79e53942008-11-07 14:24:08 -0800513{
Jesse Barnes79e53942008-11-07 14:24:08 -0800514 if (clock->p1 < limit->p1.min || limit->p1.max < clock->p1)
Akshay Joshi0206e352011-08-16 15:34:10 -0400515 INTELPllInvalid("p1 out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800516 if (clock->p < limit->p.min || limit->p.max < clock->p)
Akshay Joshi0206e352011-08-16 15:34:10 -0400517 INTELPllInvalid("p out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800518 if (clock->m2 < limit->m2.min || limit->m2.max < clock->m2)
Akshay Joshi0206e352011-08-16 15:34:10 -0400519 INTELPllInvalid("m2 out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800520 if (clock->m1 < limit->m1.min || limit->m1.max < clock->m1)
Akshay Joshi0206e352011-08-16 15:34:10 -0400521 INTELPllInvalid("m1 out of range\n");
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500522 if (clock->m1 <= clock->m2 && !IS_PINEVIEW(dev))
Akshay Joshi0206e352011-08-16 15:34:10 -0400523 INTELPllInvalid("m1 <= m2\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800524 if (clock->m < limit->m.min || limit->m.max < clock->m)
Akshay Joshi0206e352011-08-16 15:34:10 -0400525 INTELPllInvalid("m out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800526 if (clock->n < limit->n.min || limit->n.max < clock->n)
Akshay Joshi0206e352011-08-16 15:34:10 -0400527 INTELPllInvalid("n out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800528 if (clock->vco < limit->vco.min || limit->vco.max < clock->vco)
Akshay Joshi0206e352011-08-16 15:34:10 -0400529 INTELPllInvalid("vco out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800530 /* XXX: We may need to be checking "Dot clock" depending on the multiplier,
531 * connector, etc., rather than just a single range.
532 */
533 if (clock->dot < limit->dot.min || limit->dot.max < clock->dot)
Akshay Joshi0206e352011-08-16 15:34:10 -0400534 INTELPllInvalid("dot out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800535
536 return true;
537}
538
Ma Lingd4906092009-03-18 20:13:27 +0800539static bool
540intel_find_best_PLL(const intel_limit_t *limit, struct drm_crtc *crtc,
Sean Paulcec2f352012-01-10 15:09:36 -0800541 int target, int refclk, intel_clock_t *match_clock,
542 intel_clock_t *best_clock)
Jesse Barnes79e53942008-11-07 14:24:08 -0800543{
544 struct drm_device *dev = crtc->dev;
Jesse Barnes79e53942008-11-07 14:24:08 -0800545 intel_clock_t clock;
Jesse Barnes79e53942008-11-07 14:24:08 -0800546 int err = target;
547
Daniel Vettera210b022012-11-26 17:22:08 +0100548 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
Jesse Barnes79e53942008-11-07 14:24:08 -0800549 /*
Daniel Vettera210b022012-11-26 17:22:08 +0100550 * For LVDS just rely on its current settings for dual-channel.
551 * We haven't figured out how to reliably set up different
552 * single/dual channel state, if we even can.
Jesse Barnes79e53942008-11-07 14:24:08 -0800553 */
Daniel Vetter1974cad2012-11-26 17:22:09 +0100554 if (intel_is_dual_link_lvds(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -0800555 clock.p2 = limit->p2.p2_fast;
556 else
557 clock.p2 = limit->p2.p2_slow;
558 } else {
559 if (target < limit->p2.dot_limit)
560 clock.p2 = limit->p2.p2_slow;
561 else
562 clock.p2 = limit->p2.p2_fast;
563 }
564
Akshay Joshi0206e352011-08-16 15:34:10 -0400565 memset(best_clock, 0, sizeof(*best_clock));
Jesse Barnes79e53942008-11-07 14:24:08 -0800566
Zhao Yakui42158662009-11-20 11:24:18 +0800567 for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max;
568 clock.m1++) {
569 for (clock.m2 = limit->m2.min;
570 clock.m2 <= limit->m2.max; clock.m2++) {
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500571 /* m1 is always 0 in Pineview */
572 if (clock.m2 >= clock.m1 && !IS_PINEVIEW(dev))
Zhao Yakui42158662009-11-20 11:24:18 +0800573 break;
574 for (clock.n = limit->n.min;
575 clock.n <= limit->n.max; clock.n++) {
576 for (clock.p1 = limit->p1.min;
577 clock.p1 <= limit->p1.max; clock.p1++) {
Jesse Barnes79e53942008-11-07 14:24:08 -0800578 int this_err;
579
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200580 i9xx_clock(refclk, &clock);
581 if (!intel_PLL_is_valid(dev, limit,
582 &clock))
583 continue;
584 if (match_clock &&
585 clock.p != match_clock->p)
586 continue;
587
588 this_err = abs(clock.dot - target);
589 if (this_err < err) {
590 *best_clock = clock;
591 err = this_err;
592 }
593 }
594 }
595 }
596 }
597
598 return (err != target);
599}
600
601static bool
602intel_pnv_find_best_PLL(const intel_limit_t *limit, struct drm_crtc *crtc,
603 int target, int refclk, intel_clock_t *match_clock,
604 intel_clock_t *best_clock)
605{
606 struct drm_device *dev = crtc->dev;
607 intel_clock_t clock;
608 int err = target;
609
610 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
611 /*
612 * For LVDS just rely on its current settings for dual-channel.
613 * We haven't figured out how to reliably set up different
614 * single/dual channel state, if we even can.
615 */
616 if (intel_is_dual_link_lvds(dev))
617 clock.p2 = limit->p2.p2_fast;
618 else
619 clock.p2 = limit->p2.p2_slow;
620 } else {
621 if (target < limit->p2.dot_limit)
622 clock.p2 = limit->p2.p2_slow;
623 else
624 clock.p2 = limit->p2.p2_fast;
625 }
626
627 memset(best_clock, 0, sizeof(*best_clock));
628
629 for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max;
630 clock.m1++) {
631 for (clock.m2 = limit->m2.min;
632 clock.m2 <= limit->m2.max; clock.m2++) {
633 /* m1 is always 0 in Pineview */
634 if (clock.m2 >= clock.m1 && !IS_PINEVIEW(dev))
635 break;
636 for (clock.n = limit->n.min;
637 clock.n <= limit->n.max; clock.n++) {
638 for (clock.p1 = limit->p1.min;
639 clock.p1 <= limit->p1.max; clock.p1++) {
640 int this_err;
641
642 pineview_clock(refclk, &clock);
Chris Wilson1b894b52010-12-14 20:04:54 +0000643 if (!intel_PLL_is_valid(dev, limit,
644 &clock))
Jesse Barnes79e53942008-11-07 14:24:08 -0800645 continue;
Sean Paulcec2f352012-01-10 15:09:36 -0800646 if (match_clock &&
647 clock.p != match_clock->p)
648 continue;
Jesse Barnes79e53942008-11-07 14:24:08 -0800649
650 this_err = abs(clock.dot - target);
651 if (this_err < err) {
652 *best_clock = clock;
653 err = this_err;
654 }
655 }
656 }
657 }
658 }
659
660 return (err != target);
661}
662
Ma Lingd4906092009-03-18 20:13:27 +0800663static bool
664intel_g4x_find_best_PLL(const intel_limit_t *limit, struct drm_crtc *crtc,
Sean Paulcec2f352012-01-10 15:09:36 -0800665 int target, int refclk, intel_clock_t *match_clock,
666 intel_clock_t *best_clock)
Ma Lingd4906092009-03-18 20:13:27 +0800667{
668 struct drm_device *dev = crtc->dev;
Ma Lingd4906092009-03-18 20:13:27 +0800669 intel_clock_t clock;
670 int max_n;
671 bool found;
Adam Jackson6ba770d2010-07-02 16:43:30 -0400672 /* approximately equals target * 0.00585 */
673 int err_most = (target >> 8) + (target >> 9);
Ma Lingd4906092009-03-18 20:13:27 +0800674 found = false;
675
676 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
Daniel Vetter1974cad2012-11-26 17:22:09 +0100677 if (intel_is_dual_link_lvds(dev))
Ma Lingd4906092009-03-18 20:13:27 +0800678 clock.p2 = limit->p2.p2_fast;
679 else
680 clock.p2 = limit->p2.p2_slow;
681 } else {
682 if (target < limit->p2.dot_limit)
683 clock.p2 = limit->p2.p2_slow;
684 else
685 clock.p2 = limit->p2.p2_fast;
686 }
687
688 memset(best_clock, 0, sizeof(*best_clock));
689 max_n = limit->n.max;
Gilles Espinassef77f13e2010-03-29 15:41:47 +0200690 /* based on hardware requirement, prefer smaller n to precision */
Ma Lingd4906092009-03-18 20:13:27 +0800691 for (clock.n = limit->n.min; clock.n <= max_n; clock.n++) {
Gilles Espinassef77f13e2010-03-29 15:41:47 +0200692 /* based on hardware requirement, prefere larger m1,m2 */
Ma Lingd4906092009-03-18 20:13:27 +0800693 for (clock.m1 = limit->m1.max;
694 clock.m1 >= limit->m1.min; clock.m1--) {
695 for (clock.m2 = limit->m2.max;
696 clock.m2 >= limit->m2.min; clock.m2--) {
697 for (clock.p1 = limit->p1.max;
698 clock.p1 >= limit->p1.min; clock.p1--) {
699 int this_err;
700
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200701 i9xx_clock(refclk, &clock);
Chris Wilson1b894b52010-12-14 20:04:54 +0000702 if (!intel_PLL_is_valid(dev, limit,
703 &clock))
Ma Lingd4906092009-03-18 20:13:27 +0800704 continue;
Chris Wilson1b894b52010-12-14 20:04:54 +0000705
706 this_err = abs(clock.dot - target);
Ma Lingd4906092009-03-18 20:13:27 +0800707 if (this_err < err_most) {
708 *best_clock = clock;
709 err_most = this_err;
710 max_n = clock.n;
711 found = true;
712 }
713 }
714 }
715 }
716 }
Zhenyu Wang2c072452009-06-05 15:38:42 +0800717 return found;
718}
Ma Lingd4906092009-03-18 20:13:27 +0800719
Zhenyu Wang2c072452009-06-05 15:38:42 +0800720static bool
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700721intel_vlv_find_best_pll(const intel_limit_t *limit, struct drm_crtc *crtc,
722 int target, int refclk, intel_clock_t *match_clock,
723 intel_clock_t *best_clock)
724{
725 u32 p1, p2, m1, m2, vco, bestn, bestm1, bestm2, bestp1, bestp2;
726 u32 m, n, fastclk;
727 u32 updrate, minupdate, fracbits, p;
728 unsigned long bestppm, ppm, absppm;
729 int dotclk, flag;
730
Alan Coxaf447bd2012-07-25 13:49:18 +0100731 flag = 0;
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700732 dotclk = target * 1000;
733 bestppm = 1000000;
734 ppm = absppm = 0;
735 fastclk = dotclk / (2*100);
736 updrate = 0;
737 minupdate = 19200;
738 fracbits = 1;
739 n = p = p1 = p2 = m = m1 = m2 = vco = bestn = 0;
740 bestm1 = bestm2 = bestp1 = bestp2 = 0;
741
742 /* based on hardware requirement, prefer smaller n to precision */
743 for (n = limit->n.min; n <= ((refclk) / minupdate); n++) {
744 updrate = refclk / n;
745 for (p1 = limit->p1.max; p1 > limit->p1.min; p1--) {
746 for (p2 = limit->p2.p2_fast+1; p2 > 0; p2--) {
747 if (p2 > 10)
748 p2 = p2 - 1;
749 p = p1 * p2;
750 /* based on hardware requirement, prefer bigger m1,m2 values */
751 for (m1 = limit->m1.min; m1 <= limit->m1.max; m1++) {
752 m2 = (((2*(fastclk * p * n / m1 )) +
753 refclk) / (2*refclk));
754 m = m1 * m2;
755 vco = updrate * m;
756 if (vco >= limit->vco.min && vco < limit->vco.max) {
757 ppm = 1000000 * ((vco / p) - fastclk) / fastclk;
758 absppm = (ppm > 0) ? ppm : (-ppm);
759 if (absppm < 100 && ((p1 * p2) > (bestp1 * bestp2))) {
760 bestppm = 0;
761 flag = 1;
762 }
763 if (absppm < bestppm - 10) {
764 bestppm = absppm;
765 flag = 1;
766 }
767 if (flag) {
768 bestn = n;
769 bestm1 = m1;
770 bestm2 = m2;
771 bestp1 = p1;
772 bestp2 = p2;
773 flag = 0;
774 }
775 }
776 }
777 }
778 }
779 }
780 best_clock->n = bestn;
781 best_clock->m1 = bestm1;
782 best_clock->m2 = bestm2;
783 best_clock->p1 = bestp1;
784 best_clock->p2 = bestp2;
785
786 return true;
787}
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700788
Paulo Zanonia5c961d2012-10-24 15:59:34 -0200789enum transcoder intel_pipe_to_cpu_transcoder(struct drm_i915_private *dev_priv,
790 enum pipe pipe)
791{
792 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
793 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
794
Daniel Vetter3b117c82013-04-17 20:15:07 +0200795 return intel_crtc->config.cpu_transcoder;
Paulo Zanonia5c961d2012-10-24 15:59:34 -0200796}
797
Paulo Zanonia928d532012-05-04 17:18:15 -0300798static void ironlake_wait_for_vblank(struct drm_device *dev, int pipe)
799{
800 struct drm_i915_private *dev_priv = dev->dev_private;
801 u32 frame, frame_reg = PIPEFRAME(pipe);
802
803 frame = I915_READ(frame_reg);
804
805 if (wait_for(I915_READ_NOTRACE(frame_reg) != frame, 50))
806 DRM_DEBUG_KMS("vblank wait timed out\n");
807}
808
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700809/**
810 * intel_wait_for_vblank - wait for vblank on a given pipe
811 * @dev: drm device
812 * @pipe: pipe to wait for
813 *
814 * Wait for vblank to occur on a given pipe. Needed for various bits of
815 * mode setting code.
816 */
817void intel_wait_for_vblank(struct drm_device *dev, int pipe)
Jesse Barnes79e53942008-11-07 14:24:08 -0800818{
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700819 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800820 int pipestat_reg = PIPESTAT(pipe);
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700821
Paulo Zanonia928d532012-05-04 17:18:15 -0300822 if (INTEL_INFO(dev)->gen >= 5) {
823 ironlake_wait_for_vblank(dev, pipe);
824 return;
825 }
826
Chris Wilson300387c2010-09-05 20:25:43 +0100827 /* Clear existing vblank status. Note this will clear any other
828 * sticky status fields as well.
829 *
830 * This races with i915_driver_irq_handler() with the result
831 * that either function could miss a vblank event. Here it is not
832 * fatal, as we will either wait upon the next vblank interrupt or
833 * timeout. Generally speaking intel_wait_for_vblank() is only
834 * called during modeset at which time the GPU should be idle and
835 * should *not* be performing page flips and thus not waiting on
836 * vblanks...
837 * Currently, the result of us stealing a vblank from the irq
838 * handler is that a single frame will be skipped during swapbuffers.
839 */
840 I915_WRITE(pipestat_reg,
841 I915_READ(pipestat_reg) | PIPE_VBLANK_INTERRUPT_STATUS);
842
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700843 /* Wait for vblank interrupt bit to set */
Chris Wilson481b6af2010-08-23 17:43:35 +0100844 if (wait_for(I915_READ(pipestat_reg) &
845 PIPE_VBLANK_INTERRUPT_STATUS,
846 50))
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700847 DRM_DEBUG_KMS("vblank wait timed out\n");
848}
849
Keith Packardab7ad7f2010-10-03 00:33:06 -0700850/*
851 * intel_wait_for_pipe_off - wait for pipe to turn off
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700852 * @dev: drm device
853 * @pipe: pipe to wait for
854 *
855 * After disabling a pipe, we can't wait for vblank in the usual way,
856 * spinning on the vblank interrupt status bit, since we won't actually
857 * see an interrupt when the pipe is disabled.
858 *
Keith Packardab7ad7f2010-10-03 00:33:06 -0700859 * On Gen4 and above:
860 * wait for the pipe register state bit to turn off
861 *
862 * Otherwise:
863 * wait for the display line value to settle (it usually
864 * ends up stopping at the start of the next frame).
Chris Wilson58e10eb2010-10-03 10:56:11 +0100865 *
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700866 */
Chris Wilson58e10eb2010-10-03 10:56:11 +0100867void intel_wait_for_pipe_off(struct drm_device *dev, int pipe)
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700868{
869 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni702e7a52012-10-23 18:29:59 -0200870 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
871 pipe);
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700872
Keith Packardab7ad7f2010-10-03 00:33:06 -0700873 if (INTEL_INFO(dev)->gen >= 4) {
Paulo Zanoni702e7a52012-10-23 18:29:59 -0200874 int reg = PIPECONF(cpu_transcoder);
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700875
Keith Packardab7ad7f2010-10-03 00:33:06 -0700876 /* Wait for the Pipe State to go off */
Chris Wilson58e10eb2010-10-03 10:56:11 +0100877 if (wait_for((I915_READ(reg) & I965_PIPECONF_ACTIVE) == 0,
878 100))
Daniel Vetter284637d2012-07-09 09:51:57 +0200879 WARN(1, "pipe_off wait timed out\n");
Keith Packardab7ad7f2010-10-03 00:33:06 -0700880 } else {
Paulo Zanoni837ba002012-05-04 17:18:14 -0300881 u32 last_line, line_mask;
Chris Wilson58e10eb2010-10-03 10:56:11 +0100882 int reg = PIPEDSL(pipe);
Keith Packardab7ad7f2010-10-03 00:33:06 -0700883 unsigned long timeout = jiffies + msecs_to_jiffies(100);
884
Paulo Zanoni837ba002012-05-04 17:18:14 -0300885 if (IS_GEN2(dev))
886 line_mask = DSL_LINEMASK_GEN2;
887 else
888 line_mask = DSL_LINEMASK_GEN3;
889
Keith Packardab7ad7f2010-10-03 00:33:06 -0700890 /* Wait for the display line to settle */
891 do {
Paulo Zanoni837ba002012-05-04 17:18:14 -0300892 last_line = I915_READ(reg) & line_mask;
Keith Packardab7ad7f2010-10-03 00:33:06 -0700893 mdelay(5);
Paulo Zanoni837ba002012-05-04 17:18:14 -0300894 } while (((I915_READ(reg) & line_mask) != last_line) &&
Keith Packardab7ad7f2010-10-03 00:33:06 -0700895 time_after(timeout, jiffies));
896 if (time_after(jiffies, timeout))
Daniel Vetter284637d2012-07-09 09:51:57 +0200897 WARN(1, "pipe_off wait timed out\n");
Keith Packardab7ad7f2010-10-03 00:33:06 -0700898 }
Jesse Barnes79e53942008-11-07 14:24:08 -0800899}
900
Damien Lespiaub0ea7d32012-12-13 16:09:00 +0000901/*
902 * ibx_digital_port_connected - is the specified port connected?
903 * @dev_priv: i915 private structure
904 * @port: the port to test
905 *
906 * Returns true if @port is connected, false otherwise.
907 */
908bool ibx_digital_port_connected(struct drm_i915_private *dev_priv,
909 struct intel_digital_port *port)
910{
911 u32 bit;
912
Damien Lespiauc36346e2012-12-13 16:09:03 +0000913 if (HAS_PCH_IBX(dev_priv->dev)) {
914 switch(port->port) {
915 case PORT_B:
916 bit = SDE_PORTB_HOTPLUG;
917 break;
918 case PORT_C:
919 bit = SDE_PORTC_HOTPLUG;
920 break;
921 case PORT_D:
922 bit = SDE_PORTD_HOTPLUG;
923 break;
924 default:
925 return true;
926 }
927 } else {
928 switch(port->port) {
929 case PORT_B:
930 bit = SDE_PORTB_HOTPLUG_CPT;
931 break;
932 case PORT_C:
933 bit = SDE_PORTC_HOTPLUG_CPT;
934 break;
935 case PORT_D:
936 bit = SDE_PORTD_HOTPLUG_CPT;
937 break;
938 default:
939 return true;
940 }
Damien Lespiaub0ea7d32012-12-13 16:09:00 +0000941 }
942
943 return I915_READ(SDEISR) & bit;
944}
945
Jesse Barnesb24e7172011-01-04 15:09:30 -0800946static const char *state_string(bool enabled)
947{
948 return enabled ? "on" : "off";
949}
950
951/* Only for pre-ILK configs */
952static void assert_pll(struct drm_i915_private *dev_priv,
953 enum pipe pipe, bool state)
954{
955 int reg;
956 u32 val;
957 bool cur_state;
958
959 reg = DPLL(pipe);
960 val = I915_READ(reg);
961 cur_state = !!(val & DPLL_VCO_ENABLE);
962 WARN(cur_state != state,
963 "PLL state assertion failure (expected %s, current %s)\n",
964 state_string(state), state_string(cur_state));
965}
966#define assert_pll_enabled(d, p) assert_pll(d, p, true)
967#define assert_pll_disabled(d, p) assert_pll(d, p, false)
968
Jesse Barnes040484a2011-01-03 12:14:26 -0800969/* For ILK+ */
970static void assert_pch_pll(struct drm_i915_private *dev_priv,
Chris Wilson92b27b02012-05-20 18:10:50 +0100971 struct intel_pch_pll *pll,
972 struct intel_crtc *crtc,
973 bool state)
Jesse Barnes040484a2011-01-03 12:14:26 -0800974{
Jesse Barnes040484a2011-01-03 12:14:26 -0800975 u32 val;
976 bool cur_state;
977
Eugeni Dodonov9d82aa12012-05-09 15:37:17 -0300978 if (HAS_PCH_LPT(dev_priv->dev)) {
979 DRM_DEBUG_DRIVER("LPT detected: skipping PCH PLL test\n");
980 return;
981 }
982
Chris Wilson92b27b02012-05-20 18:10:50 +0100983 if (WARN (!pll,
984 "asserting PCH PLL %s with no PLL\n", state_string(state)))
Jesse Barnesee7b9f92012-04-20 17:11:53 +0100985 return;
Jesse Barnesee7b9f92012-04-20 17:11:53 +0100986
Chris Wilson92b27b02012-05-20 18:10:50 +0100987 val = I915_READ(pll->pll_reg);
988 cur_state = !!(val & DPLL_VCO_ENABLE);
989 WARN(cur_state != state,
990 "PCH PLL state for reg %x assertion failure (expected %s, current %s), val=%08x\n",
991 pll->pll_reg, state_string(state), state_string(cur_state), val);
992
993 /* Make sure the selected PLL is correctly attached to the transcoder */
994 if (crtc && HAS_PCH_CPT(dev_priv->dev)) {
Jesse Barnesd3ccbe82011-10-12 09:27:42 -0700995 u32 pch_dpll;
996
997 pch_dpll = I915_READ(PCH_DPLL_SEL);
Chris Wilson92b27b02012-05-20 18:10:50 +0100998 cur_state = pll->pll_reg == _PCH_DPLL_B;
999 if (!WARN(((pch_dpll >> (4 * crtc->pipe)) & 1) != cur_state,
Ville Syrjälä4bb6f1f2013-04-17 17:48:50 +03001000 "PLL[%d] not attached to this transcoder %c: %08x\n",
1001 cur_state, pipe_name(crtc->pipe), pch_dpll)) {
Chris Wilson92b27b02012-05-20 18:10:50 +01001002 cur_state = !!(val >> (4*crtc->pipe + 3));
1003 WARN(cur_state != state,
Ville Syrjälä4bb6f1f2013-04-17 17:48:50 +03001004 "PLL[%d] not %s on this transcoder %c: %08x\n",
Chris Wilson92b27b02012-05-20 18:10:50 +01001005 pll->pll_reg == _PCH_DPLL_B,
1006 state_string(state),
Ville Syrjälä4bb6f1f2013-04-17 17:48:50 +03001007 pipe_name(crtc->pipe),
Chris Wilson92b27b02012-05-20 18:10:50 +01001008 val);
1009 }
Jesse Barnesd3ccbe82011-10-12 09:27:42 -07001010 }
Jesse Barnes040484a2011-01-03 12:14:26 -08001011}
Chris Wilson92b27b02012-05-20 18:10:50 +01001012#define assert_pch_pll_enabled(d, p, c) assert_pch_pll(d, p, c, true)
1013#define assert_pch_pll_disabled(d, p, c) assert_pch_pll(d, p, c, false)
Jesse Barnes040484a2011-01-03 12:14:26 -08001014
1015static void assert_fdi_tx(struct drm_i915_private *dev_priv,
1016 enum pipe pipe, bool state)
1017{
1018 int reg;
1019 u32 val;
1020 bool cur_state;
Paulo Zanoniad80a812012-10-24 16:06:19 -02001021 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
1022 pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08001023
Paulo Zanoniaffa9352012-11-23 15:30:39 -02001024 if (HAS_DDI(dev_priv->dev)) {
1025 /* DDI does not have a specific FDI_TX register */
Paulo Zanoniad80a812012-10-24 16:06:19 -02001026 reg = TRANS_DDI_FUNC_CTL(cpu_transcoder);
Eugeni Dodonovbf507ef2012-05-09 15:37:18 -03001027 val = I915_READ(reg);
Paulo Zanoniad80a812012-10-24 16:06:19 -02001028 cur_state = !!(val & TRANS_DDI_FUNC_ENABLE);
Eugeni Dodonovbf507ef2012-05-09 15:37:18 -03001029 } else {
1030 reg = FDI_TX_CTL(pipe);
1031 val = I915_READ(reg);
1032 cur_state = !!(val & FDI_TX_ENABLE);
1033 }
Jesse Barnes040484a2011-01-03 12:14:26 -08001034 WARN(cur_state != state,
1035 "FDI TX state assertion failure (expected %s, current %s)\n",
1036 state_string(state), state_string(cur_state));
1037}
1038#define assert_fdi_tx_enabled(d, p) assert_fdi_tx(d, p, true)
1039#define assert_fdi_tx_disabled(d, p) assert_fdi_tx(d, p, false)
1040
1041static void assert_fdi_rx(struct drm_i915_private *dev_priv,
1042 enum pipe pipe, bool state)
1043{
1044 int reg;
1045 u32 val;
1046 bool cur_state;
1047
Paulo Zanonid63fa0d2012-11-20 13:27:35 -02001048 reg = FDI_RX_CTL(pipe);
1049 val = I915_READ(reg);
1050 cur_state = !!(val & FDI_RX_ENABLE);
Jesse Barnes040484a2011-01-03 12:14:26 -08001051 WARN(cur_state != state,
1052 "FDI RX state assertion failure (expected %s, current %s)\n",
1053 state_string(state), state_string(cur_state));
1054}
1055#define assert_fdi_rx_enabled(d, p) assert_fdi_rx(d, p, true)
1056#define assert_fdi_rx_disabled(d, p) assert_fdi_rx(d, p, false)
1057
1058static void assert_fdi_tx_pll_enabled(struct drm_i915_private *dev_priv,
1059 enum pipe pipe)
1060{
1061 int reg;
1062 u32 val;
1063
1064 /* ILK FDI PLL is always enabled */
1065 if (dev_priv->info->gen == 5)
1066 return;
1067
Eugeni Dodonovbf507ef2012-05-09 15:37:18 -03001068 /* On Haswell, DDI ports are responsible for the FDI PLL setup */
Paulo Zanoniaffa9352012-11-23 15:30:39 -02001069 if (HAS_DDI(dev_priv->dev))
Eugeni Dodonovbf507ef2012-05-09 15:37:18 -03001070 return;
1071
Jesse Barnes040484a2011-01-03 12:14:26 -08001072 reg = FDI_TX_CTL(pipe);
1073 val = I915_READ(reg);
1074 WARN(!(val & FDI_TX_PLL_ENABLE), "FDI TX PLL assertion failure, should be active but is disabled\n");
1075}
1076
1077static void assert_fdi_rx_pll_enabled(struct drm_i915_private *dev_priv,
1078 enum pipe pipe)
1079{
1080 int reg;
1081 u32 val;
1082
1083 reg = FDI_RX_CTL(pipe);
1084 val = I915_READ(reg);
1085 WARN(!(val & FDI_RX_PLL_ENABLE), "FDI RX PLL assertion failure, should be active but is disabled\n");
1086}
1087
Jesse Barnesea0760c2011-01-04 15:09:32 -08001088static void assert_panel_unlocked(struct drm_i915_private *dev_priv,
1089 enum pipe pipe)
1090{
1091 int pp_reg, lvds_reg;
1092 u32 val;
1093 enum pipe panel_pipe = PIPE_A;
Thomas Jarosch0de3b482011-08-25 15:37:45 +02001094 bool locked = true;
Jesse Barnesea0760c2011-01-04 15:09:32 -08001095
1096 if (HAS_PCH_SPLIT(dev_priv->dev)) {
1097 pp_reg = PCH_PP_CONTROL;
1098 lvds_reg = PCH_LVDS;
1099 } else {
1100 pp_reg = PP_CONTROL;
1101 lvds_reg = LVDS;
1102 }
1103
1104 val = I915_READ(pp_reg);
1105 if (!(val & PANEL_POWER_ON) ||
1106 ((val & PANEL_UNLOCK_REGS) == PANEL_UNLOCK_REGS))
1107 locked = false;
1108
1109 if (I915_READ(lvds_reg) & LVDS_PIPEB_SELECT)
1110 panel_pipe = PIPE_B;
1111
1112 WARN(panel_pipe == pipe && locked,
1113 "panel assertion failure, pipe %c regs locked\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001114 pipe_name(pipe));
Jesse Barnesea0760c2011-01-04 15:09:32 -08001115}
1116
Jesse Barnesb840d907f2011-12-13 13:19:38 -08001117void assert_pipe(struct drm_i915_private *dev_priv,
1118 enum pipe pipe, bool state)
Jesse Barnesb24e7172011-01-04 15:09:30 -08001119{
1120 int reg;
1121 u32 val;
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001122 bool cur_state;
Paulo Zanoni702e7a52012-10-23 18:29:59 -02001123 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
1124 pipe);
Jesse Barnesb24e7172011-01-04 15:09:30 -08001125
Daniel Vetter8e636782012-01-22 01:36:48 +01001126 /* if we need the pipe A quirk it must be always on */
1127 if (pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE)
1128 state = true;
1129
Paulo Zanonib97186f2013-05-03 12:15:36 -03001130 if (!intel_display_power_enabled(dev_priv->dev,
1131 POWER_DOMAIN_TRANSCODER(cpu_transcoder))) {
Paulo Zanoni69310162013-01-29 16:35:19 -02001132 cur_state = false;
1133 } else {
1134 reg = PIPECONF(cpu_transcoder);
1135 val = I915_READ(reg);
1136 cur_state = !!(val & PIPECONF_ENABLE);
1137 }
1138
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001139 WARN(cur_state != state,
1140 "pipe %c assertion failure (expected %s, current %s)\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001141 pipe_name(pipe), state_string(state), state_string(cur_state));
Jesse Barnesb24e7172011-01-04 15:09:30 -08001142}
1143
Chris Wilson931872f2012-01-16 23:01:13 +00001144static void assert_plane(struct drm_i915_private *dev_priv,
1145 enum plane plane, bool state)
Jesse Barnesb24e7172011-01-04 15:09:30 -08001146{
1147 int reg;
1148 u32 val;
Chris Wilson931872f2012-01-16 23:01:13 +00001149 bool cur_state;
Jesse Barnesb24e7172011-01-04 15:09:30 -08001150
1151 reg = DSPCNTR(plane);
1152 val = I915_READ(reg);
Chris Wilson931872f2012-01-16 23:01:13 +00001153 cur_state = !!(val & DISPLAY_PLANE_ENABLE);
1154 WARN(cur_state != state,
1155 "plane %c assertion failure (expected %s, current %s)\n",
1156 plane_name(plane), state_string(state), state_string(cur_state));
Jesse Barnesb24e7172011-01-04 15:09:30 -08001157}
1158
Chris Wilson931872f2012-01-16 23:01:13 +00001159#define assert_plane_enabled(d, p) assert_plane(d, p, true)
1160#define assert_plane_disabled(d, p) assert_plane(d, p, false)
1161
Jesse Barnesb24e7172011-01-04 15:09:30 -08001162static void assert_planes_disabled(struct drm_i915_private *dev_priv,
1163 enum pipe pipe)
1164{
1165 int reg, i;
1166 u32 val;
1167 int cur_pipe;
1168
Jesse Barnes19ec1352011-02-02 12:28:02 -08001169 /* Planes are fixed to pipes on ILK+ */
Jesse Barnesda6ecc52013-03-08 10:46:00 -08001170 if (HAS_PCH_SPLIT(dev_priv->dev) || IS_VALLEYVIEW(dev_priv->dev)) {
Adam Jackson28c057942011-10-07 14:38:42 -04001171 reg = DSPCNTR(pipe);
1172 val = I915_READ(reg);
1173 WARN((val & DISPLAY_PLANE_ENABLE),
1174 "plane %c assertion failure, should be disabled but not\n",
1175 plane_name(pipe));
Jesse Barnes19ec1352011-02-02 12:28:02 -08001176 return;
Adam Jackson28c057942011-10-07 14:38:42 -04001177 }
Jesse Barnes19ec1352011-02-02 12:28:02 -08001178
Jesse Barnesb24e7172011-01-04 15:09:30 -08001179 /* Need to check both planes against the pipe */
1180 for (i = 0; i < 2; i++) {
1181 reg = DSPCNTR(i);
1182 val = I915_READ(reg);
1183 cur_pipe = (val & DISPPLANE_SEL_PIPE_MASK) >>
1184 DISPPLANE_SEL_PIPE_SHIFT;
1185 WARN((val & DISPLAY_PLANE_ENABLE) && pipe == cur_pipe,
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001186 "plane %c assertion failure, should be off on pipe %c but is still active\n",
1187 plane_name(i), pipe_name(pipe));
Jesse Barnesb24e7172011-01-04 15:09:30 -08001188 }
1189}
1190
Jesse Barnes19332d72013-03-28 09:55:38 -07001191static void assert_sprites_disabled(struct drm_i915_private *dev_priv,
1192 enum pipe pipe)
1193{
1194 int reg, i;
1195 u32 val;
1196
1197 if (!IS_VALLEYVIEW(dev_priv->dev))
1198 return;
1199
1200 /* Need to check both planes against the pipe */
1201 for (i = 0; i < dev_priv->num_plane; i++) {
1202 reg = SPCNTR(pipe, i);
1203 val = I915_READ(reg);
1204 WARN((val & SP_ENABLE),
Ville Syrjälä06da8da2013-04-17 17:48:51 +03001205 "sprite %c assertion failure, should be off on pipe %c but is still active\n",
1206 sprite_name(pipe, i), pipe_name(pipe));
Jesse Barnes19332d72013-03-28 09:55:38 -07001207 }
1208}
1209
Jesse Barnes92f25842011-01-04 15:09:34 -08001210static void assert_pch_refclk_enabled(struct drm_i915_private *dev_priv)
1211{
1212 u32 val;
1213 bool enabled;
1214
Eugeni Dodonov9d82aa12012-05-09 15:37:17 -03001215 if (HAS_PCH_LPT(dev_priv->dev)) {
1216 DRM_DEBUG_DRIVER("LPT does not has PCH refclk, skipping check\n");
1217 return;
1218 }
1219
Jesse Barnes92f25842011-01-04 15:09:34 -08001220 val = I915_READ(PCH_DREF_CONTROL);
1221 enabled = !!(val & (DREF_SSC_SOURCE_MASK | DREF_NONSPREAD_SOURCE_MASK |
1222 DREF_SUPERSPREAD_SOURCE_MASK));
1223 WARN(!enabled, "PCH refclk assertion failure, should be active but is disabled\n");
1224}
1225
Daniel Vetterab9412b2013-05-03 11:49:46 +02001226static void assert_pch_transcoder_disabled(struct drm_i915_private *dev_priv,
1227 enum pipe pipe)
Jesse Barnes92f25842011-01-04 15:09:34 -08001228{
1229 int reg;
1230 u32 val;
1231 bool enabled;
1232
Daniel Vetterab9412b2013-05-03 11:49:46 +02001233 reg = PCH_TRANSCONF(pipe);
Jesse Barnes92f25842011-01-04 15:09:34 -08001234 val = I915_READ(reg);
1235 enabled = !!(val & TRANS_ENABLE);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001236 WARN(enabled,
1237 "transcoder assertion failed, should be off on pipe %c but is still active\n",
1238 pipe_name(pipe));
Jesse Barnes92f25842011-01-04 15:09:34 -08001239}
1240
Keith Packard4e634382011-08-06 10:39:45 -07001241static bool dp_pipe_enabled(struct drm_i915_private *dev_priv,
1242 enum pipe pipe, u32 port_sel, u32 val)
Keith Packardf0575e92011-07-25 22:12:43 -07001243{
1244 if ((val & DP_PORT_EN) == 0)
1245 return false;
1246
1247 if (HAS_PCH_CPT(dev_priv->dev)) {
1248 u32 trans_dp_ctl_reg = TRANS_DP_CTL(pipe);
1249 u32 trans_dp_ctl = I915_READ(trans_dp_ctl_reg);
1250 if ((trans_dp_ctl & TRANS_DP_PORT_SEL_MASK) != port_sel)
1251 return false;
1252 } else {
1253 if ((val & DP_PIPE_MASK) != (pipe << 30))
1254 return false;
1255 }
1256 return true;
1257}
1258
Keith Packard1519b992011-08-06 10:35:34 -07001259static bool hdmi_pipe_enabled(struct drm_i915_private *dev_priv,
1260 enum pipe pipe, u32 val)
1261{
Paulo Zanonidc0fa712013-02-19 16:21:46 -03001262 if ((val & SDVO_ENABLE) == 0)
Keith Packard1519b992011-08-06 10:35:34 -07001263 return false;
1264
1265 if (HAS_PCH_CPT(dev_priv->dev)) {
Paulo Zanonidc0fa712013-02-19 16:21:46 -03001266 if ((val & SDVO_PIPE_SEL_MASK_CPT) != SDVO_PIPE_SEL_CPT(pipe))
Keith Packard1519b992011-08-06 10:35:34 -07001267 return false;
1268 } else {
Paulo Zanonidc0fa712013-02-19 16:21:46 -03001269 if ((val & SDVO_PIPE_SEL_MASK) != SDVO_PIPE_SEL(pipe))
Keith Packard1519b992011-08-06 10:35:34 -07001270 return false;
1271 }
1272 return true;
1273}
1274
1275static bool lvds_pipe_enabled(struct drm_i915_private *dev_priv,
1276 enum pipe pipe, u32 val)
1277{
1278 if ((val & LVDS_PORT_EN) == 0)
1279 return false;
1280
1281 if (HAS_PCH_CPT(dev_priv->dev)) {
1282 if ((val & PORT_TRANS_SEL_MASK) != PORT_TRANS_SEL_CPT(pipe))
1283 return false;
1284 } else {
1285 if ((val & LVDS_PIPE_MASK) != LVDS_PIPE(pipe))
1286 return false;
1287 }
1288 return true;
1289}
1290
1291static bool adpa_pipe_enabled(struct drm_i915_private *dev_priv,
1292 enum pipe pipe, u32 val)
1293{
1294 if ((val & ADPA_DAC_ENABLE) == 0)
1295 return false;
1296 if (HAS_PCH_CPT(dev_priv->dev)) {
1297 if ((val & PORT_TRANS_SEL_MASK) != PORT_TRANS_SEL_CPT(pipe))
1298 return false;
1299 } else {
1300 if ((val & ADPA_PIPE_SELECT_MASK) != ADPA_PIPE_SELECT(pipe))
1301 return false;
1302 }
1303 return true;
1304}
1305
Jesse Barnes291906f2011-02-02 12:28:03 -08001306static void assert_pch_dp_disabled(struct drm_i915_private *dev_priv,
Keith Packardf0575e92011-07-25 22:12:43 -07001307 enum pipe pipe, int reg, u32 port_sel)
Jesse Barnes291906f2011-02-02 12:28:03 -08001308{
Jesse Barnes47a05ec2011-02-07 13:46:40 -08001309 u32 val = I915_READ(reg);
Keith Packard4e634382011-08-06 10:39:45 -07001310 WARN(dp_pipe_enabled(dev_priv, pipe, port_sel, val),
Jesse Barnes291906f2011-02-02 12:28:03 -08001311 "PCH DP (0x%08x) enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001312 reg, pipe_name(pipe));
Daniel Vetterde9a35a2012-06-05 11:03:40 +02001313
Daniel Vetter75c5da22012-09-10 21:58:29 +02001314 WARN(HAS_PCH_IBX(dev_priv->dev) && (val & DP_PORT_EN) == 0
1315 && (val & DP_PIPEB_SELECT),
Daniel Vetterde9a35a2012-06-05 11:03:40 +02001316 "IBX PCH dp port still using transcoder B\n");
Jesse Barnes291906f2011-02-02 12:28:03 -08001317}
1318
1319static void assert_pch_hdmi_disabled(struct drm_i915_private *dev_priv,
1320 enum pipe pipe, int reg)
1321{
Jesse Barnes47a05ec2011-02-07 13:46:40 -08001322 u32 val = I915_READ(reg);
Xu, Anhuab70ad582012-08-13 03:08:33 +00001323 WARN(hdmi_pipe_enabled(dev_priv, pipe, val),
Adam Jackson23c99e72011-10-07 14:38:43 -04001324 "PCH HDMI (0x%08x) enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001325 reg, pipe_name(pipe));
Daniel Vetterde9a35a2012-06-05 11:03:40 +02001326
Paulo Zanonidc0fa712013-02-19 16:21:46 -03001327 WARN(HAS_PCH_IBX(dev_priv->dev) && (val & SDVO_ENABLE) == 0
Daniel Vetter75c5da22012-09-10 21:58:29 +02001328 && (val & SDVO_PIPE_B_SELECT),
Daniel Vetterde9a35a2012-06-05 11:03:40 +02001329 "IBX PCH hdmi port still using transcoder B\n");
Jesse Barnes291906f2011-02-02 12:28:03 -08001330}
1331
1332static void assert_pch_ports_disabled(struct drm_i915_private *dev_priv,
1333 enum pipe pipe)
1334{
1335 int reg;
1336 u32 val;
Jesse Barnes291906f2011-02-02 12:28:03 -08001337
Keith Packardf0575e92011-07-25 22:12:43 -07001338 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_B, TRANS_DP_PORT_SEL_B);
1339 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_C, TRANS_DP_PORT_SEL_C);
1340 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_D, TRANS_DP_PORT_SEL_D);
Jesse Barnes291906f2011-02-02 12:28:03 -08001341
1342 reg = PCH_ADPA;
1343 val = I915_READ(reg);
Xu, Anhuab70ad582012-08-13 03:08:33 +00001344 WARN(adpa_pipe_enabled(dev_priv, pipe, val),
Jesse Barnes291906f2011-02-02 12:28:03 -08001345 "PCH VGA enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001346 pipe_name(pipe));
Jesse Barnes291906f2011-02-02 12:28:03 -08001347
1348 reg = PCH_LVDS;
1349 val = I915_READ(reg);
Xu, Anhuab70ad582012-08-13 03:08:33 +00001350 WARN(lvds_pipe_enabled(dev_priv, pipe, val),
Jesse Barnes291906f2011-02-02 12:28:03 -08001351 "PCH LVDS enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001352 pipe_name(pipe));
Jesse Barnes291906f2011-02-02 12:28:03 -08001353
Paulo Zanonie2debe92013-02-18 19:00:27 -03001354 assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMIB);
1355 assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMIC);
1356 assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMID);
Jesse Barnes291906f2011-02-02 12:28:03 -08001357}
1358
Jesse Barnesb24e7172011-01-04 15:09:30 -08001359/**
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001360 * intel_enable_pll - enable a PLL
1361 * @dev_priv: i915 private structure
1362 * @pipe: pipe PLL to enable
1363 *
1364 * Enable @pipe's PLL so we can start pumping pixels from a plane. Check to
1365 * make sure the PLL reg is writable first though, since the panel write
1366 * protect mechanism may be enabled.
1367 *
1368 * Note! This is for pre-ILK only.
Thomas Richter7434a252012-07-18 19:22:30 +02001369 *
1370 * Unfortunately needed by dvo_ns2501 since the dvo depends on it running.
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001371 */
1372static void intel_enable_pll(struct drm_i915_private *dev_priv, enum pipe pipe)
1373{
1374 int reg;
1375 u32 val;
1376
Daniel Vetter58c6eaa2013-04-11 16:29:09 +02001377 assert_pipe_disabled(dev_priv, pipe);
1378
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001379 /* No really, not for ILK+ */
Jesse Barnesa0c4da242012-06-15 11:55:13 -07001380 BUG_ON(!IS_VALLEYVIEW(dev_priv->dev) && dev_priv->info->gen >= 5);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001381
1382 /* PLL is protected by panel, make sure we can write it */
1383 if (IS_MOBILE(dev_priv->dev) && !IS_I830(dev_priv->dev))
1384 assert_panel_unlocked(dev_priv, pipe);
1385
1386 reg = DPLL(pipe);
1387 val = I915_READ(reg);
1388 val |= DPLL_VCO_ENABLE;
1389
1390 /* We do this three times for luck */
1391 I915_WRITE(reg, val);
1392 POSTING_READ(reg);
1393 udelay(150); /* wait for warmup */
1394 I915_WRITE(reg, val);
1395 POSTING_READ(reg);
1396 udelay(150); /* wait for warmup */
1397 I915_WRITE(reg, val);
1398 POSTING_READ(reg);
1399 udelay(150); /* wait for warmup */
1400}
1401
1402/**
1403 * intel_disable_pll - disable a PLL
1404 * @dev_priv: i915 private structure
1405 * @pipe: pipe PLL to disable
1406 *
1407 * Disable the PLL for @pipe, making sure the pipe is off first.
1408 *
1409 * Note! This is for pre-ILK only.
1410 */
1411static void intel_disable_pll(struct drm_i915_private *dev_priv, enum pipe pipe)
1412{
1413 int reg;
1414 u32 val;
1415
1416 /* Don't disable pipe A or pipe A PLLs if needed */
1417 if (pipe == PIPE_A && (dev_priv->quirks & QUIRK_PIPEA_FORCE))
1418 return;
1419
1420 /* Make sure the pipe isn't still relying on us */
1421 assert_pipe_disabled(dev_priv, pipe);
1422
1423 reg = DPLL(pipe);
1424 val = I915_READ(reg);
1425 val &= ~DPLL_VCO_ENABLE;
1426 I915_WRITE(reg, val);
1427 POSTING_READ(reg);
1428}
1429
Jesse Barnes89b667f2013-04-18 14:51:36 -07001430void vlv_wait_port_ready(struct drm_i915_private *dev_priv, int port)
1431{
1432 u32 port_mask;
1433
1434 if (!port)
1435 port_mask = DPLL_PORTB_READY_MASK;
1436 else
1437 port_mask = DPLL_PORTC_READY_MASK;
1438
1439 if (wait_for((I915_READ(DPLL(0)) & port_mask) == 0, 1000))
1440 WARN(1, "timed out waiting for port %c ready: 0x%08x\n",
1441 'B' + port, I915_READ(DPLL(0)));
1442}
1443
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001444/**
Paulo Zanonib6b4e182012-10-31 18:12:38 -02001445 * ironlake_enable_pch_pll - enable PCH PLL
Jesse Barnes92f25842011-01-04 15:09:34 -08001446 * @dev_priv: i915 private structure
1447 * @pipe: pipe PLL to enable
1448 *
1449 * The PCH PLL needs to be enabled before the PCH transcoder, since it
1450 * drives the transcoder clock.
1451 */
Paulo Zanonib6b4e182012-10-31 18:12:38 -02001452static void ironlake_enable_pch_pll(struct intel_crtc *intel_crtc)
Jesse Barnes92f25842011-01-04 15:09:34 -08001453{
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001454 struct drm_i915_private *dev_priv = intel_crtc->base.dev->dev_private;
Chris Wilson48da64a2012-05-13 20:16:12 +01001455 struct intel_pch_pll *pll;
Jesse Barnes92f25842011-01-04 15:09:34 -08001456 int reg;
1457 u32 val;
1458
Chris Wilson48da64a2012-05-13 20:16:12 +01001459 /* PCH PLLs only available on ILK, SNB and IVB */
Jesse Barnes92f25842011-01-04 15:09:34 -08001460 BUG_ON(dev_priv->info->gen < 5);
Chris Wilson48da64a2012-05-13 20:16:12 +01001461 pll = intel_crtc->pch_pll;
1462 if (pll == NULL)
1463 return;
1464
1465 if (WARN_ON(pll->refcount == 0))
1466 return;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001467
1468 DRM_DEBUG_KMS("enable PCH PLL %x (active %d, on? %d)for crtc %d\n",
1469 pll->pll_reg, pll->active, pll->on,
1470 intel_crtc->base.base.id);
Jesse Barnes92f25842011-01-04 15:09:34 -08001471
1472 /* PCH refclock must be enabled first */
1473 assert_pch_refclk_enabled(dev_priv);
1474
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001475 if (pll->active++ && pll->on) {
Chris Wilson92b27b02012-05-20 18:10:50 +01001476 assert_pch_pll_enabled(dev_priv, pll, NULL);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001477 return;
1478 }
1479
1480 DRM_DEBUG_KMS("enabling PCH PLL %x\n", pll->pll_reg);
1481
1482 reg = pll->pll_reg;
Jesse Barnes92f25842011-01-04 15:09:34 -08001483 val = I915_READ(reg);
1484 val |= DPLL_VCO_ENABLE;
1485 I915_WRITE(reg, val);
1486 POSTING_READ(reg);
1487 udelay(200);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001488
1489 pll->on = true;
Jesse Barnes92f25842011-01-04 15:09:34 -08001490}
1491
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001492static void intel_disable_pch_pll(struct intel_crtc *intel_crtc)
Jesse Barnes92f25842011-01-04 15:09:34 -08001493{
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001494 struct drm_i915_private *dev_priv = intel_crtc->base.dev->dev_private;
1495 struct intel_pch_pll *pll = intel_crtc->pch_pll;
Jesse Barnes92f25842011-01-04 15:09:34 -08001496 int reg;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001497 u32 val;
Jesse Barnes4c609cb2011-09-02 12:52:11 -07001498
Jesse Barnes92f25842011-01-04 15:09:34 -08001499 /* PCH only available on ILK+ */
1500 BUG_ON(dev_priv->info->gen < 5);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001501 if (pll == NULL)
1502 return;
1503
Chris Wilson48da64a2012-05-13 20:16:12 +01001504 if (WARN_ON(pll->refcount == 0))
1505 return;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001506
1507 DRM_DEBUG_KMS("disable PCH PLL %x (active %d, on? %d) for crtc %d\n",
1508 pll->pll_reg, pll->active, pll->on,
1509 intel_crtc->base.base.id);
1510
Chris Wilson48da64a2012-05-13 20:16:12 +01001511 if (WARN_ON(pll->active == 0)) {
Chris Wilson92b27b02012-05-20 18:10:50 +01001512 assert_pch_pll_disabled(dev_priv, pll, NULL);
Chris Wilson48da64a2012-05-13 20:16:12 +01001513 return;
1514 }
1515
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001516 if (--pll->active) {
Chris Wilson92b27b02012-05-20 18:10:50 +01001517 assert_pch_pll_enabled(dev_priv, pll, NULL);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001518 return;
1519 }
1520
1521 DRM_DEBUG_KMS("disabling PCH PLL %x\n", pll->pll_reg);
Jesse Barnes92f25842011-01-04 15:09:34 -08001522
1523 /* Make sure transcoder isn't still depending on us */
Daniel Vetterab9412b2013-05-03 11:49:46 +02001524 assert_pch_transcoder_disabled(dev_priv, intel_crtc->pipe);
Jesse Barnes92f25842011-01-04 15:09:34 -08001525
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001526 reg = pll->pll_reg;
Jesse Barnes92f25842011-01-04 15:09:34 -08001527 val = I915_READ(reg);
1528 val &= ~DPLL_VCO_ENABLE;
1529 I915_WRITE(reg, val);
1530 POSTING_READ(reg);
1531 udelay(200);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001532
1533 pll->on = false;
Jesse Barnes92f25842011-01-04 15:09:34 -08001534}
1535
Paulo Zanonib8a4f402012-10-31 18:12:42 -02001536static void ironlake_enable_pch_transcoder(struct drm_i915_private *dev_priv,
1537 enum pipe pipe)
Jesse Barnes040484a2011-01-03 12:14:26 -08001538{
Daniel Vetter23670b322012-11-01 09:15:30 +01001539 struct drm_device *dev = dev_priv->dev;
Paulo Zanoni7c26e5c2012-02-14 17:07:09 -02001540 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
Daniel Vetter23670b322012-11-01 09:15:30 +01001541 uint32_t reg, val, pipeconf_val;
Jesse Barnes040484a2011-01-03 12:14:26 -08001542
1543 /* PCH only available on ILK+ */
1544 BUG_ON(dev_priv->info->gen < 5);
1545
1546 /* Make sure PCH DPLL is enabled */
Chris Wilson92b27b02012-05-20 18:10:50 +01001547 assert_pch_pll_enabled(dev_priv,
1548 to_intel_crtc(crtc)->pch_pll,
1549 to_intel_crtc(crtc));
Jesse Barnes040484a2011-01-03 12:14:26 -08001550
1551 /* FDI must be feeding us bits for PCH ports */
1552 assert_fdi_tx_enabled(dev_priv, pipe);
1553 assert_fdi_rx_enabled(dev_priv, pipe);
1554
Daniel Vetter23670b322012-11-01 09:15:30 +01001555 if (HAS_PCH_CPT(dev)) {
1556 /* Workaround: Set the timing override bit before enabling the
1557 * pch transcoder. */
1558 reg = TRANS_CHICKEN2(pipe);
1559 val = I915_READ(reg);
1560 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
1561 I915_WRITE(reg, val);
Eugeni Dodonov59c859d2012-05-09 15:37:19 -03001562 }
Daniel Vetter23670b322012-11-01 09:15:30 +01001563
Daniel Vetterab9412b2013-05-03 11:49:46 +02001564 reg = PCH_TRANSCONF(pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08001565 val = I915_READ(reg);
Paulo Zanoni5f7f7262012-02-03 17:47:15 -02001566 pipeconf_val = I915_READ(PIPECONF(pipe));
Jesse Barnese9bcff52011-06-24 12:19:20 -07001567
1568 if (HAS_PCH_IBX(dev_priv->dev)) {
1569 /*
1570 * make the BPC in transcoder be consistent with
1571 * that in pipeconf reg.
1572 */
Daniel Vetterdfd07d72012-12-17 11:21:38 +01001573 val &= ~PIPECONF_BPC_MASK;
1574 val |= pipeconf_val & PIPECONF_BPC_MASK;
Jesse Barnese9bcff52011-06-24 12:19:20 -07001575 }
Paulo Zanoni5f7f7262012-02-03 17:47:15 -02001576
1577 val &= ~TRANS_INTERLACE_MASK;
1578 if ((pipeconf_val & PIPECONF_INTERLACE_MASK) == PIPECONF_INTERLACED_ILK)
Paulo Zanoni7c26e5c2012-02-14 17:07:09 -02001579 if (HAS_PCH_IBX(dev_priv->dev) &&
1580 intel_pipe_has_type(crtc, INTEL_OUTPUT_SDVO))
1581 val |= TRANS_LEGACY_INTERLACED_ILK;
1582 else
1583 val |= TRANS_INTERLACED;
Paulo Zanoni5f7f7262012-02-03 17:47:15 -02001584 else
1585 val |= TRANS_PROGRESSIVE;
1586
Jesse Barnes040484a2011-01-03 12:14:26 -08001587 I915_WRITE(reg, val | TRANS_ENABLE);
1588 if (wait_for(I915_READ(reg) & TRANS_STATE_ENABLE, 100))
Ville Syrjälä4bb6f1f2013-04-17 17:48:50 +03001589 DRM_ERROR("failed to enable transcoder %c\n", pipe_name(pipe));
Jesse Barnes040484a2011-01-03 12:14:26 -08001590}
1591
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001592static void lpt_enable_pch_transcoder(struct drm_i915_private *dev_priv,
Paulo Zanoni937bb612012-10-31 18:12:47 -02001593 enum transcoder cpu_transcoder)
Jesse Barnes040484a2011-01-03 12:14:26 -08001594{
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001595 u32 val, pipeconf_val;
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001596
1597 /* PCH only available on ILK+ */
1598 BUG_ON(dev_priv->info->gen < 5);
1599
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001600 /* FDI must be feeding us bits for PCH ports */
Daniel Vetter1a240d42012-11-29 22:18:51 +01001601 assert_fdi_tx_enabled(dev_priv, (enum pipe) cpu_transcoder);
Paulo Zanoni937bb612012-10-31 18:12:47 -02001602 assert_fdi_rx_enabled(dev_priv, TRANSCODER_A);
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001603
Paulo Zanoni223a6fd2012-10-31 18:12:52 -02001604 /* Workaround: set timing override bit. */
1605 val = I915_READ(_TRANSA_CHICKEN2);
Daniel Vetter23670b322012-11-01 09:15:30 +01001606 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
Paulo Zanoni223a6fd2012-10-31 18:12:52 -02001607 I915_WRITE(_TRANSA_CHICKEN2, val);
1608
Paulo Zanoni25f3ef12012-10-31 18:12:49 -02001609 val = TRANS_ENABLE;
Paulo Zanoni937bb612012-10-31 18:12:47 -02001610 pipeconf_val = I915_READ(PIPECONF(cpu_transcoder));
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001611
Paulo Zanoni9a76b1c2012-10-31 18:12:48 -02001612 if ((pipeconf_val & PIPECONF_INTERLACE_MASK_HSW) ==
1613 PIPECONF_INTERLACED_ILK)
Paulo Zanonia35f2672012-10-31 18:12:45 -02001614 val |= TRANS_INTERLACED;
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001615 else
1616 val |= TRANS_PROGRESSIVE;
1617
Daniel Vetterab9412b2013-05-03 11:49:46 +02001618 I915_WRITE(LPT_TRANSCONF, val);
1619 if (wait_for(I915_READ(LPT_TRANSCONF) & TRANS_STATE_ENABLE, 100))
Paulo Zanoni937bb612012-10-31 18:12:47 -02001620 DRM_ERROR("Failed to enable PCH transcoder\n");
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001621}
1622
Paulo Zanonib8a4f402012-10-31 18:12:42 -02001623static void ironlake_disable_pch_transcoder(struct drm_i915_private *dev_priv,
1624 enum pipe pipe)
Jesse Barnes040484a2011-01-03 12:14:26 -08001625{
Daniel Vetter23670b322012-11-01 09:15:30 +01001626 struct drm_device *dev = dev_priv->dev;
1627 uint32_t reg, val;
Jesse Barnes040484a2011-01-03 12:14:26 -08001628
1629 /* FDI relies on the transcoder */
1630 assert_fdi_tx_disabled(dev_priv, pipe);
1631 assert_fdi_rx_disabled(dev_priv, pipe);
1632
Jesse Barnes291906f2011-02-02 12:28:03 -08001633 /* Ports must be off as well */
1634 assert_pch_ports_disabled(dev_priv, pipe);
1635
Daniel Vetterab9412b2013-05-03 11:49:46 +02001636 reg = PCH_TRANSCONF(pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08001637 val = I915_READ(reg);
1638 val &= ~TRANS_ENABLE;
1639 I915_WRITE(reg, val);
1640 /* wait for PCH transcoder off, transcoder state */
1641 if (wait_for((I915_READ(reg) & TRANS_STATE_ENABLE) == 0, 50))
Ville Syrjälä4bb6f1f2013-04-17 17:48:50 +03001642 DRM_ERROR("failed to disable transcoder %c\n", pipe_name(pipe));
Daniel Vetter23670b322012-11-01 09:15:30 +01001643
1644 if (!HAS_PCH_IBX(dev)) {
1645 /* Workaround: Clear the timing override chicken bit again. */
1646 reg = TRANS_CHICKEN2(pipe);
1647 val = I915_READ(reg);
1648 val &= ~TRANS_CHICKEN2_TIMING_OVERRIDE;
1649 I915_WRITE(reg, val);
1650 }
Jesse Barnes040484a2011-01-03 12:14:26 -08001651}
1652
Paulo Zanoniab4d9662012-10-31 18:12:55 -02001653static void lpt_disable_pch_transcoder(struct drm_i915_private *dev_priv)
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001654{
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001655 u32 val;
1656
Daniel Vetterab9412b2013-05-03 11:49:46 +02001657 val = I915_READ(LPT_TRANSCONF);
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001658 val &= ~TRANS_ENABLE;
Daniel Vetterab9412b2013-05-03 11:49:46 +02001659 I915_WRITE(LPT_TRANSCONF, val);
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001660 /* wait for PCH transcoder off, transcoder state */
Daniel Vetterab9412b2013-05-03 11:49:46 +02001661 if (wait_for((I915_READ(LPT_TRANSCONF) & TRANS_STATE_ENABLE) == 0, 50))
Paulo Zanoni8a52fd92012-10-31 18:12:51 -02001662 DRM_ERROR("Failed to disable PCH transcoder\n");
Paulo Zanoni223a6fd2012-10-31 18:12:52 -02001663
1664 /* Workaround: clear timing override bit. */
1665 val = I915_READ(_TRANSA_CHICKEN2);
Daniel Vetter23670b322012-11-01 09:15:30 +01001666 val &= ~TRANS_CHICKEN2_TIMING_OVERRIDE;
Paulo Zanoni223a6fd2012-10-31 18:12:52 -02001667 I915_WRITE(_TRANSA_CHICKEN2, val);
Jesse Barnes92f25842011-01-04 15:09:34 -08001668}
1669
1670/**
Chris Wilson309cfea2011-01-28 13:54:53 +00001671 * intel_enable_pipe - enable a pipe, asserting requirements
Jesse Barnesb24e7172011-01-04 15:09:30 -08001672 * @dev_priv: i915 private structure
1673 * @pipe: pipe to enable
Jesse Barnes040484a2011-01-03 12:14:26 -08001674 * @pch_port: on ILK+, is this pipe driving a PCH port or not
Jesse Barnesb24e7172011-01-04 15:09:30 -08001675 *
1676 * Enable @pipe, making sure that various hardware specific requirements
1677 * are met, if applicable, e.g. PLL enabled, LVDS pairs enabled, etc.
1678 *
1679 * @pipe should be %PIPE_A or %PIPE_B.
1680 *
1681 * Will wait until the pipe is actually running (i.e. first vblank) before
1682 * returning.
1683 */
Jesse Barnes040484a2011-01-03 12:14:26 -08001684static void intel_enable_pipe(struct drm_i915_private *dev_priv, enum pipe pipe,
1685 bool pch_port)
Jesse Barnesb24e7172011-01-04 15:09:30 -08001686{
Paulo Zanoni702e7a52012-10-23 18:29:59 -02001687 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
1688 pipe);
Daniel Vetter1a240d42012-11-29 22:18:51 +01001689 enum pipe pch_transcoder;
Jesse Barnesb24e7172011-01-04 15:09:30 -08001690 int reg;
1691 u32 val;
1692
Daniel Vetter58c6eaa2013-04-11 16:29:09 +02001693 assert_planes_disabled(dev_priv, pipe);
1694 assert_sprites_disabled(dev_priv, pipe);
1695
Paulo Zanoni681e5812012-12-06 11:12:38 -02001696 if (HAS_PCH_LPT(dev_priv->dev))
Paulo Zanonicc391bb2012-11-20 13:27:37 -02001697 pch_transcoder = TRANSCODER_A;
1698 else
1699 pch_transcoder = pipe;
1700
Jesse Barnesb24e7172011-01-04 15:09:30 -08001701 /*
1702 * A pipe without a PLL won't actually be able to drive bits from
1703 * a plane. On ILK+ the pipe PLLs are integrated, so we don't
1704 * need the check.
1705 */
1706 if (!HAS_PCH_SPLIT(dev_priv->dev))
1707 assert_pll_enabled(dev_priv, pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08001708 else {
1709 if (pch_port) {
1710 /* if driving the PCH, we need FDI enabled */
Paulo Zanonicc391bb2012-11-20 13:27:37 -02001711 assert_fdi_rx_pll_enabled(dev_priv, pch_transcoder);
Daniel Vetter1a240d42012-11-29 22:18:51 +01001712 assert_fdi_tx_pll_enabled(dev_priv,
1713 (enum pipe) cpu_transcoder);
Jesse Barnes040484a2011-01-03 12:14:26 -08001714 }
1715 /* FIXME: assert CPU port conditions for SNB+ */
1716 }
Jesse Barnesb24e7172011-01-04 15:09:30 -08001717
Paulo Zanoni702e7a52012-10-23 18:29:59 -02001718 reg = PIPECONF(cpu_transcoder);
Jesse Barnesb24e7172011-01-04 15:09:30 -08001719 val = I915_READ(reg);
Chris Wilson00d70b12011-03-17 07:18:29 +00001720 if (val & PIPECONF_ENABLE)
1721 return;
1722
1723 I915_WRITE(reg, val | PIPECONF_ENABLE);
Jesse Barnesb24e7172011-01-04 15:09:30 -08001724 intel_wait_for_vblank(dev_priv->dev, pipe);
1725}
1726
1727/**
Chris Wilson309cfea2011-01-28 13:54:53 +00001728 * intel_disable_pipe - disable a pipe, asserting requirements
Jesse Barnesb24e7172011-01-04 15:09:30 -08001729 * @dev_priv: i915 private structure
1730 * @pipe: pipe to disable
1731 *
1732 * Disable @pipe, making sure that various hardware specific requirements
1733 * are met, if applicable, e.g. plane disabled, panel fitter off, etc.
1734 *
1735 * @pipe should be %PIPE_A or %PIPE_B.
1736 *
1737 * Will wait until the pipe has shut down before returning.
1738 */
1739static void intel_disable_pipe(struct drm_i915_private *dev_priv,
1740 enum pipe pipe)
1741{
Paulo Zanoni702e7a52012-10-23 18:29:59 -02001742 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
1743 pipe);
Jesse Barnesb24e7172011-01-04 15:09:30 -08001744 int reg;
1745 u32 val;
1746
1747 /*
1748 * Make sure planes won't keep trying to pump pixels to us,
1749 * or we might hang the display.
1750 */
1751 assert_planes_disabled(dev_priv, pipe);
Jesse Barnes19332d72013-03-28 09:55:38 -07001752 assert_sprites_disabled(dev_priv, pipe);
Jesse Barnesb24e7172011-01-04 15:09:30 -08001753
1754 /* Don't disable pipe A or pipe A PLLs if needed */
1755 if (pipe == PIPE_A && (dev_priv->quirks & QUIRK_PIPEA_FORCE))
1756 return;
1757
Paulo Zanoni702e7a52012-10-23 18:29:59 -02001758 reg = PIPECONF(cpu_transcoder);
Jesse Barnesb24e7172011-01-04 15:09:30 -08001759 val = I915_READ(reg);
Chris Wilson00d70b12011-03-17 07:18:29 +00001760 if ((val & PIPECONF_ENABLE) == 0)
1761 return;
1762
1763 I915_WRITE(reg, val & ~PIPECONF_ENABLE);
Jesse Barnesb24e7172011-01-04 15:09:30 -08001764 intel_wait_for_pipe_off(dev_priv->dev, pipe);
1765}
1766
Keith Packardd74362c2011-07-28 14:47:14 -07001767/*
1768 * Plane regs are double buffered, going from enabled->disabled needs a
1769 * trigger in order to latch. The display address reg provides this.
1770 */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03001771void intel_flush_display_plane(struct drm_i915_private *dev_priv,
Keith Packardd74362c2011-07-28 14:47:14 -07001772 enum plane plane)
1773{
Damien Lespiau14f86142012-10-29 15:24:49 +00001774 if (dev_priv->info->gen >= 4)
1775 I915_WRITE(DSPSURF(plane), I915_READ(DSPSURF(plane)));
1776 else
1777 I915_WRITE(DSPADDR(plane), I915_READ(DSPADDR(plane)));
Keith Packardd74362c2011-07-28 14:47:14 -07001778}
1779
Jesse Barnesb24e7172011-01-04 15:09:30 -08001780/**
1781 * intel_enable_plane - enable a display plane on a given pipe
1782 * @dev_priv: i915 private structure
1783 * @plane: plane to enable
1784 * @pipe: pipe being fed
1785 *
1786 * Enable @plane on @pipe, making sure that @pipe is running first.
1787 */
1788static void intel_enable_plane(struct drm_i915_private *dev_priv,
1789 enum plane plane, enum pipe pipe)
1790{
1791 int reg;
1792 u32 val;
1793
1794 /* If the pipe isn't enabled, we can't pump pixels and may hang */
1795 assert_pipe_enabled(dev_priv, pipe);
1796
1797 reg = DSPCNTR(plane);
1798 val = I915_READ(reg);
Chris Wilson00d70b12011-03-17 07:18:29 +00001799 if (val & DISPLAY_PLANE_ENABLE)
1800 return;
1801
1802 I915_WRITE(reg, val | DISPLAY_PLANE_ENABLE);
Keith Packardd74362c2011-07-28 14:47:14 -07001803 intel_flush_display_plane(dev_priv, plane);
Jesse Barnesb24e7172011-01-04 15:09:30 -08001804 intel_wait_for_vblank(dev_priv->dev, pipe);
1805}
1806
Jesse Barnesb24e7172011-01-04 15:09:30 -08001807/**
1808 * intel_disable_plane - disable a display plane
1809 * @dev_priv: i915 private structure
1810 * @plane: plane to disable
1811 * @pipe: pipe consuming the data
1812 *
1813 * Disable @plane; should be an independent operation.
1814 */
1815static void intel_disable_plane(struct drm_i915_private *dev_priv,
1816 enum plane plane, enum pipe pipe)
1817{
1818 int reg;
1819 u32 val;
1820
1821 reg = DSPCNTR(plane);
1822 val = I915_READ(reg);
Chris Wilson00d70b12011-03-17 07:18:29 +00001823 if ((val & DISPLAY_PLANE_ENABLE) == 0)
1824 return;
1825
1826 I915_WRITE(reg, val & ~DISPLAY_PLANE_ENABLE);
Jesse Barnesb24e7172011-01-04 15:09:30 -08001827 intel_flush_display_plane(dev_priv, plane);
1828 intel_wait_for_vblank(dev_priv->dev, pipe);
1829}
1830
Chris Wilson693db182013-03-05 14:52:39 +00001831static bool need_vtd_wa(struct drm_device *dev)
1832{
1833#ifdef CONFIG_INTEL_IOMMU
1834 if (INTEL_INFO(dev)->gen >= 6 && intel_iommu_gfx_mapped)
1835 return true;
1836#endif
1837 return false;
1838}
1839
Chris Wilson127bd2a2010-07-23 23:32:05 +01001840int
Chris Wilson48b956c2010-09-14 12:50:34 +01001841intel_pin_and_fence_fb_obj(struct drm_device *dev,
Chris Wilson05394f32010-11-08 19:18:58 +00001842 struct drm_i915_gem_object *obj,
Chris Wilson919926a2010-11-12 13:42:53 +00001843 struct intel_ring_buffer *pipelined)
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001844{
Chris Wilsonce453d82011-02-21 14:43:56 +00001845 struct drm_i915_private *dev_priv = dev->dev_private;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001846 u32 alignment;
1847 int ret;
1848
Chris Wilson05394f32010-11-08 19:18:58 +00001849 switch (obj->tiling_mode) {
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001850 case I915_TILING_NONE:
Chris Wilson534843d2010-07-05 18:01:46 +01001851 if (IS_BROADWATER(dev) || IS_CRESTLINE(dev))
1852 alignment = 128 * 1024;
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001853 else if (INTEL_INFO(dev)->gen >= 4)
Chris Wilson534843d2010-07-05 18:01:46 +01001854 alignment = 4 * 1024;
1855 else
1856 alignment = 64 * 1024;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001857 break;
1858 case I915_TILING_X:
1859 /* pin() will align the object as required by fence */
1860 alignment = 0;
1861 break;
1862 case I915_TILING_Y:
Daniel Vetter8bb6e952013-04-06 23:54:56 +02001863 /* Despite that we check this in framebuffer_init userspace can
1864 * screw us over and change the tiling after the fact. Only
1865 * pinned buffers can't change their tiling. */
1866 DRM_DEBUG_DRIVER("Y tiled not allowed for scan out buffers\n");
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001867 return -EINVAL;
1868 default:
1869 BUG();
1870 }
1871
Chris Wilson693db182013-03-05 14:52:39 +00001872 /* Note that the w/a also requires 64 PTE of padding following the
1873 * bo. We currently fill all unused PTE with the shadow page and so
1874 * we should always have valid PTE following the scanout preventing
1875 * the VT-d warning.
1876 */
1877 if (need_vtd_wa(dev) && alignment < 256 * 1024)
1878 alignment = 256 * 1024;
1879
Chris Wilsonce453d82011-02-21 14:43:56 +00001880 dev_priv->mm.interruptible = false;
Chris Wilson2da3b9b2011-04-14 09:41:17 +01001881 ret = i915_gem_object_pin_to_display_plane(obj, alignment, pipelined);
Chris Wilson48b956c2010-09-14 12:50:34 +01001882 if (ret)
Chris Wilsonce453d82011-02-21 14:43:56 +00001883 goto err_interruptible;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001884
1885 /* Install a fence for tiled scan-out. Pre-i965 always needs a
1886 * fence, whereas 965+ only requires a fence if using
1887 * framebuffer compression. For simplicity, we always install
1888 * a fence as the cost is not that onerous.
1889 */
Chris Wilson06d98132012-04-17 15:31:24 +01001890 ret = i915_gem_object_get_fence(obj);
Chris Wilson9a5a53b2012-03-22 15:10:00 +00001891 if (ret)
1892 goto err_unpin;
Chris Wilson1690e1e2011-12-14 13:57:08 +01001893
Chris Wilson9a5a53b2012-03-22 15:10:00 +00001894 i915_gem_object_pin_fence(obj);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001895
Chris Wilsonce453d82011-02-21 14:43:56 +00001896 dev_priv->mm.interruptible = true;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001897 return 0;
Chris Wilson48b956c2010-09-14 12:50:34 +01001898
1899err_unpin:
1900 i915_gem_object_unpin(obj);
Chris Wilsonce453d82011-02-21 14:43:56 +00001901err_interruptible:
1902 dev_priv->mm.interruptible = true;
Chris Wilson48b956c2010-09-14 12:50:34 +01001903 return ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05001904}
1905
Chris Wilson1690e1e2011-12-14 13:57:08 +01001906void intel_unpin_fb_obj(struct drm_i915_gem_object *obj)
1907{
1908 i915_gem_object_unpin_fence(obj);
1909 i915_gem_object_unpin(obj);
1910}
1911
Daniel Vetterc2c75132012-07-05 12:17:30 +02001912/* Computes the linear offset to the base tile and adjusts x, y. bytes per pixel
1913 * is assumed to be a power-of-two. */
Chris Wilsonbc752862013-02-21 20:04:31 +00001914unsigned long intel_gen4_compute_page_offset(int *x, int *y,
1915 unsigned int tiling_mode,
1916 unsigned int cpp,
1917 unsigned int pitch)
Daniel Vetterc2c75132012-07-05 12:17:30 +02001918{
Chris Wilsonbc752862013-02-21 20:04:31 +00001919 if (tiling_mode != I915_TILING_NONE) {
1920 unsigned int tile_rows, tiles;
Daniel Vetterc2c75132012-07-05 12:17:30 +02001921
Chris Wilsonbc752862013-02-21 20:04:31 +00001922 tile_rows = *y / 8;
1923 *y %= 8;
Daniel Vetterc2c75132012-07-05 12:17:30 +02001924
Chris Wilsonbc752862013-02-21 20:04:31 +00001925 tiles = *x / (512/cpp);
1926 *x %= 512/cpp;
1927
1928 return tile_rows * pitch * 8 + tiles * 4096;
1929 } else {
1930 unsigned int offset;
1931
1932 offset = *y * pitch + *x * cpp;
1933 *y = 0;
1934 *x = (offset & 4095) / cpp;
1935 return offset & -4096;
1936 }
Daniel Vetterc2c75132012-07-05 12:17:30 +02001937}
1938
Jesse Barnes17638cd2011-06-24 12:19:23 -07001939static int i9xx_update_plane(struct drm_crtc *crtc, struct drm_framebuffer *fb,
1940 int x, int y)
Jesse Barnes81255562010-08-02 12:07:50 -07001941{
1942 struct drm_device *dev = crtc->dev;
1943 struct drm_i915_private *dev_priv = dev->dev_private;
1944 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
1945 struct intel_framebuffer *intel_fb;
Chris Wilson05394f32010-11-08 19:18:58 +00001946 struct drm_i915_gem_object *obj;
Jesse Barnes81255562010-08-02 12:07:50 -07001947 int plane = intel_crtc->plane;
Daniel Vettere506a0c2012-07-05 12:17:29 +02001948 unsigned long linear_offset;
Jesse Barnes81255562010-08-02 12:07:50 -07001949 u32 dspcntr;
Chris Wilson5eddb702010-09-11 13:48:45 +01001950 u32 reg;
Jesse Barnes81255562010-08-02 12:07:50 -07001951
1952 switch (plane) {
1953 case 0:
1954 case 1:
1955 break;
1956 default:
Ville Syrjälä84f44ce2013-04-17 17:48:49 +03001957 DRM_ERROR("Can't update plane %c in SAREA\n", plane_name(plane));
Jesse Barnes81255562010-08-02 12:07:50 -07001958 return -EINVAL;
1959 }
1960
1961 intel_fb = to_intel_framebuffer(fb);
1962 obj = intel_fb->obj;
Jesse Barnes81255562010-08-02 12:07:50 -07001963
Chris Wilson5eddb702010-09-11 13:48:45 +01001964 reg = DSPCNTR(plane);
1965 dspcntr = I915_READ(reg);
Jesse Barnes81255562010-08-02 12:07:50 -07001966 /* Mask out pixel format bits in case we change it */
1967 dspcntr &= ~DISPPLANE_PIXFORMAT_MASK;
Ville Syrjälä57779d02012-10-31 17:50:14 +02001968 switch (fb->pixel_format) {
1969 case DRM_FORMAT_C8:
Jesse Barnes81255562010-08-02 12:07:50 -07001970 dspcntr |= DISPPLANE_8BPP;
1971 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02001972 case DRM_FORMAT_XRGB1555:
1973 case DRM_FORMAT_ARGB1555:
1974 dspcntr |= DISPPLANE_BGRX555;
Jesse Barnes81255562010-08-02 12:07:50 -07001975 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02001976 case DRM_FORMAT_RGB565:
1977 dspcntr |= DISPPLANE_BGRX565;
1978 break;
1979 case DRM_FORMAT_XRGB8888:
1980 case DRM_FORMAT_ARGB8888:
1981 dspcntr |= DISPPLANE_BGRX888;
1982 break;
1983 case DRM_FORMAT_XBGR8888:
1984 case DRM_FORMAT_ABGR8888:
1985 dspcntr |= DISPPLANE_RGBX888;
1986 break;
1987 case DRM_FORMAT_XRGB2101010:
1988 case DRM_FORMAT_ARGB2101010:
1989 dspcntr |= DISPPLANE_BGRX101010;
1990 break;
1991 case DRM_FORMAT_XBGR2101010:
1992 case DRM_FORMAT_ABGR2101010:
1993 dspcntr |= DISPPLANE_RGBX101010;
Jesse Barnes81255562010-08-02 12:07:50 -07001994 break;
1995 default:
Daniel Vetterbaba1332013-03-27 00:45:00 +01001996 BUG();
Jesse Barnes81255562010-08-02 12:07:50 -07001997 }
Ville Syrjälä57779d02012-10-31 17:50:14 +02001998
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001999 if (INTEL_INFO(dev)->gen >= 4) {
Chris Wilson05394f32010-11-08 19:18:58 +00002000 if (obj->tiling_mode != I915_TILING_NONE)
Jesse Barnes81255562010-08-02 12:07:50 -07002001 dspcntr |= DISPPLANE_TILED;
2002 else
2003 dspcntr &= ~DISPPLANE_TILED;
2004 }
2005
Chris Wilson5eddb702010-09-11 13:48:45 +01002006 I915_WRITE(reg, dspcntr);
Jesse Barnes81255562010-08-02 12:07:50 -07002007
Daniel Vettere506a0c2012-07-05 12:17:29 +02002008 linear_offset = y * fb->pitches[0] + x * (fb->bits_per_pixel / 8);
Jesse Barnes81255562010-08-02 12:07:50 -07002009
Daniel Vetterc2c75132012-07-05 12:17:30 +02002010 if (INTEL_INFO(dev)->gen >= 4) {
2011 intel_crtc->dspaddr_offset =
Chris Wilsonbc752862013-02-21 20:04:31 +00002012 intel_gen4_compute_page_offset(&x, &y, obj->tiling_mode,
2013 fb->bits_per_pixel / 8,
2014 fb->pitches[0]);
Daniel Vetterc2c75132012-07-05 12:17:30 +02002015 linear_offset -= intel_crtc->dspaddr_offset;
2016 } else {
Daniel Vettere506a0c2012-07-05 12:17:29 +02002017 intel_crtc->dspaddr_offset = linear_offset;
Daniel Vetterc2c75132012-07-05 12:17:30 +02002018 }
Daniel Vettere506a0c2012-07-05 12:17:29 +02002019
2020 DRM_DEBUG_KMS("Writing base %08X %08lX %d %d %d\n",
2021 obj->gtt_offset, linear_offset, x, y, fb->pitches[0]);
Ville Syrjälä01f2c772011-12-20 00:06:49 +02002022 I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]);
Chris Wilsona6c45cf2010-09-17 00:32:17 +01002023 if (INTEL_INFO(dev)->gen >= 4) {
Daniel Vetterc2c75132012-07-05 12:17:30 +02002024 I915_MODIFY_DISPBASE(DSPSURF(plane),
2025 obj->gtt_offset + intel_crtc->dspaddr_offset);
Chris Wilson5eddb702010-09-11 13:48:45 +01002026 I915_WRITE(DSPTILEOFF(plane), (y << 16) | x);
Daniel Vettere506a0c2012-07-05 12:17:29 +02002027 I915_WRITE(DSPLINOFF(plane), linear_offset);
Chris Wilson5eddb702010-09-11 13:48:45 +01002028 } else
Daniel Vettere506a0c2012-07-05 12:17:29 +02002029 I915_WRITE(DSPADDR(plane), obj->gtt_offset + linear_offset);
Chris Wilson5eddb702010-09-11 13:48:45 +01002030 POSTING_READ(reg);
Jesse Barnes81255562010-08-02 12:07:50 -07002031
Jesse Barnes17638cd2011-06-24 12:19:23 -07002032 return 0;
2033}
2034
2035static int ironlake_update_plane(struct drm_crtc *crtc,
2036 struct drm_framebuffer *fb, int x, int y)
2037{
2038 struct drm_device *dev = crtc->dev;
2039 struct drm_i915_private *dev_priv = dev->dev_private;
2040 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2041 struct intel_framebuffer *intel_fb;
2042 struct drm_i915_gem_object *obj;
2043 int plane = intel_crtc->plane;
Daniel Vettere506a0c2012-07-05 12:17:29 +02002044 unsigned long linear_offset;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002045 u32 dspcntr;
2046 u32 reg;
2047
2048 switch (plane) {
2049 case 0:
2050 case 1:
Jesse Barnes27f82272011-09-02 12:54:37 -07002051 case 2:
Jesse Barnes17638cd2011-06-24 12:19:23 -07002052 break;
2053 default:
Ville Syrjälä84f44ce2013-04-17 17:48:49 +03002054 DRM_ERROR("Can't update plane %c in SAREA\n", plane_name(plane));
Jesse Barnes17638cd2011-06-24 12:19:23 -07002055 return -EINVAL;
2056 }
2057
2058 intel_fb = to_intel_framebuffer(fb);
2059 obj = intel_fb->obj;
2060
2061 reg = DSPCNTR(plane);
2062 dspcntr = I915_READ(reg);
2063 /* Mask out pixel format bits in case we change it */
2064 dspcntr &= ~DISPPLANE_PIXFORMAT_MASK;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002065 switch (fb->pixel_format) {
2066 case DRM_FORMAT_C8:
Jesse Barnes17638cd2011-06-24 12:19:23 -07002067 dspcntr |= DISPPLANE_8BPP;
2068 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002069 case DRM_FORMAT_RGB565:
2070 dspcntr |= DISPPLANE_BGRX565;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002071 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002072 case DRM_FORMAT_XRGB8888:
2073 case DRM_FORMAT_ARGB8888:
2074 dspcntr |= DISPPLANE_BGRX888;
2075 break;
2076 case DRM_FORMAT_XBGR8888:
2077 case DRM_FORMAT_ABGR8888:
2078 dspcntr |= DISPPLANE_RGBX888;
2079 break;
2080 case DRM_FORMAT_XRGB2101010:
2081 case DRM_FORMAT_ARGB2101010:
2082 dspcntr |= DISPPLANE_BGRX101010;
2083 break;
2084 case DRM_FORMAT_XBGR2101010:
2085 case DRM_FORMAT_ABGR2101010:
2086 dspcntr |= DISPPLANE_RGBX101010;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002087 break;
2088 default:
Daniel Vetterbaba1332013-03-27 00:45:00 +01002089 BUG();
Jesse Barnes17638cd2011-06-24 12:19:23 -07002090 }
2091
2092 if (obj->tiling_mode != I915_TILING_NONE)
2093 dspcntr |= DISPPLANE_TILED;
2094 else
2095 dspcntr &= ~DISPPLANE_TILED;
2096
2097 /* must disable */
2098 dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE;
2099
2100 I915_WRITE(reg, dspcntr);
2101
Daniel Vettere506a0c2012-07-05 12:17:29 +02002102 linear_offset = y * fb->pitches[0] + x * (fb->bits_per_pixel / 8);
Daniel Vetterc2c75132012-07-05 12:17:30 +02002103 intel_crtc->dspaddr_offset =
Chris Wilsonbc752862013-02-21 20:04:31 +00002104 intel_gen4_compute_page_offset(&x, &y, obj->tiling_mode,
2105 fb->bits_per_pixel / 8,
2106 fb->pitches[0]);
Daniel Vetterc2c75132012-07-05 12:17:30 +02002107 linear_offset -= intel_crtc->dspaddr_offset;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002108
Daniel Vettere506a0c2012-07-05 12:17:29 +02002109 DRM_DEBUG_KMS("Writing base %08X %08lX %d %d %d\n",
2110 obj->gtt_offset, linear_offset, x, y, fb->pitches[0]);
Ville Syrjälä01f2c772011-12-20 00:06:49 +02002111 I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]);
Daniel Vetterc2c75132012-07-05 12:17:30 +02002112 I915_MODIFY_DISPBASE(DSPSURF(plane),
2113 obj->gtt_offset + intel_crtc->dspaddr_offset);
Damien Lespiaubc1c91e2012-10-29 12:14:21 +00002114 if (IS_HASWELL(dev)) {
2115 I915_WRITE(DSPOFFSET(plane), (y << 16) | x);
2116 } else {
2117 I915_WRITE(DSPTILEOFF(plane), (y << 16) | x);
2118 I915_WRITE(DSPLINOFF(plane), linear_offset);
2119 }
Jesse Barnes17638cd2011-06-24 12:19:23 -07002120 POSTING_READ(reg);
2121
2122 return 0;
2123}
2124
2125/* Assume fb object is pinned & idle & fenced and just update base pointers */
2126static int
2127intel_pipe_set_base_atomic(struct drm_crtc *crtc, struct drm_framebuffer *fb,
2128 int x, int y, enum mode_set_atomic state)
2129{
2130 struct drm_device *dev = crtc->dev;
2131 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002132
Chris Wilson6b8e6ed2012-04-17 15:08:19 +01002133 if (dev_priv->display.disable_fbc)
2134 dev_priv->display.disable_fbc(dev);
Daniel Vetter3dec0092010-08-20 21:40:52 +02002135 intel_increase_pllclock(crtc);
Jesse Barnes81255562010-08-02 12:07:50 -07002136
Chris Wilson6b8e6ed2012-04-17 15:08:19 +01002137 return dev_priv->display.update_plane(crtc, fb, x, y);
Jesse Barnes81255562010-08-02 12:07:50 -07002138}
2139
Ville Syrjälä96a02912013-02-18 19:08:49 +02002140void intel_display_handle_reset(struct drm_device *dev)
2141{
2142 struct drm_i915_private *dev_priv = dev->dev_private;
2143 struct drm_crtc *crtc;
2144
2145 /*
2146 * Flips in the rings have been nuked by the reset,
2147 * so complete all pending flips so that user space
2148 * will get its events and not get stuck.
2149 *
2150 * Also update the base address of all primary
2151 * planes to the the last fb to make sure we're
2152 * showing the correct fb after a reset.
2153 *
2154 * Need to make two loops over the crtcs so that we
2155 * don't try to grab a crtc mutex before the
2156 * pending_flip_queue really got woken up.
2157 */
2158
2159 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
2160 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2161 enum plane plane = intel_crtc->plane;
2162
2163 intel_prepare_page_flip(dev, plane);
2164 intel_finish_page_flip_plane(dev, plane);
2165 }
2166
2167 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
2168 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2169
2170 mutex_lock(&crtc->mutex);
2171 if (intel_crtc->active)
2172 dev_priv->display.update_plane(crtc, crtc->fb,
2173 crtc->x, crtc->y);
2174 mutex_unlock(&crtc->mutex);
2175 }
2176}
2177
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002178static int
Chris Wilson14667a42012-04-03 17:58:35 +01002179intel_finish_fb(struct drm_framebuffer *old_fb)
2180{
2181 struct drm_i915_gem_object *obj = to_intel_framebuffer(old_fb)->obj;
2182 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
2183 bool was_interruptible = dev_priv->mm.interruptible;
2184 int ret;
2185
Chris Wilson14667a42012-04-03 17:58:35 +01002186 /* Big Hammer, we also need to ensure that any pending
2187 * MI_WAIT_FOR_EVENT inside a user batch buffer on the
2188 * current scanout is retired before unpinning the old
2189 * framebuffer.
2190 *
2191 * This should only fail upon a hung GPU, in which case we
2192 * can safely continue.
2193 */
2194 dev_priv->mm.interruptible = false;
2195 ret = i915_gem_object_finish_gpu(obj);
2196 dev_priv->mm.interruptible = was_interruptible;
2197
2198 return ret;
2199}
2200
Ville Syrjälä198598d2012-10-31 17:50:24 +02002201static void intel_crtc_update_sarea_pos(struct drm_crtc *crtc, int x, int y)
2202{
2203 struct drm_device *dev = crtc->dev;
2204 struct drm_i915_master_private *master_priv;
2205 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2206
2207 if (!dev->primary->master)
2208 return;
2209
2210 master_priv = dev->primary->master->driver_priv;
2211 if (!master_priv->sarea_priv)
2212 return;
2213
2214 switch (intel_crtc->pipe) {
2215 case 0:
2216 master_priv->sarea_priv->pipeA_x = x;
2217 master_priv->sarea_priv->pipeA_y = y;
2218 break;
2219 case 1:
2220 master_priv->sarea_priv->pipeB_x = x;
2221 master_priv->sarea_priv->pipeB_y = y;
2222 break;
2223 default:
2224 break;
2225 }
2226}
2227
Chris Wilson14667a42012-04-03 17:58:35 +01002228static int
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -05002229intel_pipe_set_base(struct drm_crtc *crtc, int x, int y,
Daniel Vetter94352cf2012-07-05 22:51:56 +02002230 struct drm_framebuffer *fb)
Jesse Barnes79e53942008-11-07 14:24:08 -08002231{
2232 struct drm_device *dev = crtc->dev;
Chris Wilson6b8e6ed2012-04-17 15:08:19 +01002233 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -08002234 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter94352cf2012-07-05 22:51:56 +02002235 struct drm_framebuffer *old_fb;
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002236 int ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08002237
2238 /* no fb bound */
Daniel Vetter94352cf2012-07-05 22:51:56 +02002239 if (!fb) {
Jesse Barnesa5071c22011-07-19 15:38:56 -07002240 DRM_ERROR("No FB bound\n");
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002241 return 0;
2242 }
2243
Ben Widawsky7eb552a2013-03-13 14:05:41 -07002244 if (intel_crtc->plane > INTEL_INFO(dev)->num_pipes) {
Ville Syrjälä84f44ce2013-04-17 17:48:49 +03002245 DRM_ERROR("no plane for crtc: plane %c, num_pipes %d\n",
2246 plane_name(intel_crtc->plane),
2247 INTEL_INFO(dev)->num_pipes);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002248 return -EINVAL;
Jesse Barnes79e53942008-11-07 14:24:08 -08002249 }
2250
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002251 mutex_lock(&dev->struct_mutex);
Chris Wilson265db952010-09-20 15:41:01 +01002252 ret = intel_pin_and_fence_fb_obj(dev,
Daniel Vetter94352cf2012-07-05 22:51:56 +02002253 to_intel_framebuffer(fb)->obj,
Chris Wilson919926a2010-11-12 13:42:53 +00002254 NULL);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002255 if (ret != 0) {
2256 mutex_unlock(&dev->struct_mutex);
Jesse Barnesa5071c22011-07-19 15:38:56 -07002257 DRM_ERROR("pin & fence failed\n");
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002258 return ret;
2259 }
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -05002260
Daniel Vetter94352cf2012-07-05 22:51:56 +02002261 ret = dev_priv->display.update_plane(crtc, fb, x, y);
Chris Wilson4e6cfef2010-08-08 13:20:19 +01002262 if (ret) {
Daniel Vetter94352cf2012-07-05 22:51:56 +02002263 intel_unpin_fb_obj(to_intel_framebuffer(fb)->obj);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002264 mutex_unlock(&dev->struct_mutex);
Jesse Barnesa5071c22011-07-19 15:38:56 -07002265 DRM_ERROR("failed to update base address\n");
Chris Wilson4e6cfef2010-08-08 13:20:19 +01002266 return ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08002267 }
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -05002268
Daniel Vetter94352cf2012-07-05 22:51:56 +02002269 old_fb = crtc->fb;
2270 crtc->fb = fb;
Daniel Vetter6c4c86f2012-09-10 21:58:30 +02002271 crtc->x = x;
2272 crtc->y = y;
Daniel Vetter94352cf2012-07-05 22:51:56 +02002273
Chris Wilsonb7f1de22010-12-14 16:09:31 +00002274 if (old_fb) {
Daniel Vetterd7697ee2013-06-02 17:23:01 +02002275 if (intel_crtc->active && old_fb != fb)
2276 intel_wait_for_vblank(dev, intel_crtc->pipe);
Chris Wilson1690e1e2011-12-14 13:57:08 +01002277 intel_unpin_fb_obj(to_intel_framebuffer(old_fb)->obj);
Chris Wilsonb7f1de22010-12-14 16:09:31 +00002278 }
Jesse Barnes652c3932009-08-17 13:31:43 -07002279
Chris Wilson6b8e6ed2012-04-17 15:08:19 +01002280 intel_update_fbc(dev);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002281 mutex_unlock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -08002282
Ville Syrjälä198598d2012-10-31 17:50:24 +02002283 intel_crtc_update_sarea_pos(crtc, x, y);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002284
2285 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08002286}
2287
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08002288static void intel_fdi_normal_train(struct drm_crtc *crtc)
2289{
2290 struct drm_device *dev = crtc->dev;
2291 struct drm_i915_private *dev_priv = dev->dev_private;
2292 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2293 int pipe = intel_crtc->pipe;
2294 u32 reg, temp;
2295
2296 /* enable normal train */
2297 reg = FDI_TX_CTL(pipe);
2298 temp = I915_READ(reg);
Keith Packard61e499b2011-05-17 16:13:52 -07002299 if (IS_IVYBRIDGE(dev)) {
Jesse Barnes357555c2011-04-28 15:09:55 -07002300 temp &= ~FDI_LINK_TRAIN_NONE_IVB;
2301 temp |= FDI_LINK_TRAIN_NONE_IVB | FDI_TX_ENHANCE_FRAME_ENABLE;
Keith Packard61e499b2011-05-17 16:13:52 -07002302 } else {
2303 temp &= ~FDI_LINK_TRAIN_NONE;
2304 temp |= FDI_LINK_TRAIN_NONE | FDI_TX_ENHANCE_FRAME_ENABLE;
Jesse Barnes357555c2011-04-28 15:09:55 -07002305 }
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08002306 I915_WRITE(reg, temp);
2307
2308 reg = FDI_RX_CTL(pipe);
2309 temp = I915_READ(reg);
2310 if (HAS_PCH_CPT(dev)) {
2311 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2312 temp |= FDI_LINK_TRAIN_NORMAL_CPT;
2313 } else {
2314 temp &= ~FDI_LINK_TRAIN_NONE;
2315 temp |= FDI_LINK_TRAIN_NONE;
2316 }
2317 I915_WRITE(reg, temp | FDI_RX_ENHANCE_FRAME_ENABLE);
2318
2319 /* wait one idle pattern time */
2320 POSTING_READ(reg);
2321 udelay(1000);
Jesse Barnes357555c2011-04-28 15:09:55 -07002322
2323 /* IVB wants error correction enabled */
2324 if (IS_IVYBRIDGE(dev))
2325 I915_WRITE(reg, I915_READ(reg) | FDI_FS_ERRC_ENABLE |
2326 FDI_FE_ERRC_ENABLE);
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08002327}
2328
Daniel Vetter1e833f42013-02-19 22:31:57 +01002329static bool pipe_has_enabled_pch(struct intel_crtc *intel_crtc)
2330{
2331 return intel_crtc->base.enabled && intel_crtc->config.has_pch_encoder;
2332}
2333
Daniel Vetter01a415f2012-10-27 15:58:40 +02002334static void ivb_modeset_global_resources(struct drm_device *dev)
2335{
2336 struct drm_i915_private *dev_priv = dev->dev_private;
2337 struct intel_crtc *pipe_B_crtc =
2338 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[PIPE_B]);
2339 struct intel_crtc *pipe_C_crtc =
2340 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[PIPE_C]);
2341 uint32_t temp;
2342
Daniel Vetter1e833f42013-02-19 22:31:57 +01002343 /*
2344 * When everything is off disable fdi C so that we could enable fdi B
2345 * with all lanes. Note that we don't care about enabled pipes without
2346 * an enabled pch encoder.
2347 */
2348 if (!pipe_has_enabled_pch(pipe_B_crtc) &&
2349 !pipe_has_enabled_pch(pipe_C_crtc)) {
Daniel Vetter01a415f2012-10-27 15:58:40 +02002350 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_B)) & FDI_RX_ENABLE);
2351 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_C)) & FDI_RX_ENABLE);
2352
2353 temp = I915_READ(SOUTH_CHICKEN1);
2354 temp &= ~FDI_BC_BIFURCATION_SELECT;
2355 DRM_DEBUG_KMS("disabling fdi C rx\n");
2356 I915_WRITE(SOUTH_CHICKEN1, temp);
2357 }
2358}
2359
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002360/* The FDI link training functions for ILK/Ibexpeak. */
2361static void ironlake_fdi_link_train(struct drm_crtc *crtc)
2362{
2363 struct drm_device *dev = crtc->dev;
2364 struct drm_i915_private *dev_priv = dev->dev_private;
2365 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2366 int pipe = intel_crtc->pipe;
Jesse Barnes0fc932b2011-01-04 15:09:37 -08002367 int plane = intel_crtc->plane;
Chris Wilson5eddb702010-09-11 13:48:45 +01002368 u32 reg, temp, tries;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002369
Jesse Barnes0fc932b2011-01-04 15:09:37 -08002370 /* FDI needs bits from pipe & plane first */
2371 assert_pipe_enabled(dev_priv, pipe);
2372 assert_plane_enabled(dev_priv, plane);
2373
Adam Jacksone1a44742010-06-25 15:32:14 -04002374 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
2375 for train result */
Chris Wilson5eddb702010-09-11 13:48:45 +01002376 reg = FDI_RX_IMR(pipe);
2377 temp = I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04002378 temp &= ~FDI_RX_SYMBOL_LOCK;
2379 temp &= ~FDI_RX_BIT_LOCK;
Chris Wilson5eddb702010-09-11 13:48:45 +01002380 I915_WRITE(reg, temp);
2381 I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04002382 udelay(150);
2383
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002384 /* enable CPU FDI TX and PCH FDI RX */
Chris Wilson5eddb702010-09-11 13:48:45 +01002385 reg = FDI_TX_CTL(pipe);
2386 temp = I915_READ(reg);
Daniel Vetter627eb5a2013-04-29 19:33:42 +02002387 temp &= ~FDI_DP_PORT_WIDTH_MASK;
2388 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config.fdi_lanes);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002389 temp &= ~FDI_LINK_TRAIN_NONE;
2390 temp |= FDI_LINK_TRAIN_PATTERN_1;
Chris Wilson5eddb702010-09-11 13:48:45 +01002391 I915_WRITE(reg, temp | FDI_TX_ENABLE);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002392
Chris Wilson5eddb702010-09-11 13:48:45 +01002393 reg = FDI_RX_CTL(pipe);
2394 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002395 temp &= ~FDI_LINK_TRAIN_NONE;
2396 temp |= FDI_LINK_TRAIN_PATTERN_1;
Chris Wilson5eddb702010-09-11 13:48:45 +01002397 I915_WRITE(reg, temp | FDI_RX_ENABLE);
2398
2399 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002400 udelay(150);
2401
Jesse Barnes5b2adf82010-10-07 16:01:15 -07002402 /* Ironlake workaround, enable clock pointer after FDI enable*/
Daniel Vetter8f5718a2012-10-31 22:52:28 +01002403 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR);
2404 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR |
2405 FDI_RX_PHASE_SYNC_POINTER_EN);
Jesse Barnes5b2adf82010-10-07 16:01:15 -07002406
Chris Wilson5eddb702010-09-11 13:48:45 +01002407 reg = FDI_RX_IIR(pipe);
Adam Jacksone1a44742010-06-25 15:32:14 -04002408 for (tries = 0; tries < 5; tries++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002409 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002410 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2411
2412 if ((temp & FDI_RX_BIT_LOCK)) {
2413 DRM_DEBUG_KMS("FDI train 1 done.\n");
Chris Wilson5eddb702010-09-11 13:48:45 +01002414 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002415 break;
2416 }
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002417 }
Adam Jacksone1a44742010-06-25 15:32:14 -04002418 if (tries == 5)
Chris Wilson5eddb702010-09-11 13:48:45 +01002419 DRM_ERROR("FDI train 1 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002420
2421 /* Train 2 */
Chris Wilson5eddb702010-09-11 13:48:45 +01002422 reg = FDI_TX_CTL(pipe);
2423 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002424 temp &= ~FDI_LINK_TRAIN_NONE;
2425 temp |= FDI_LINK_TRAIN_PATTERN_2;
Chris Wilson5eddb702010-09-11 13:48:45 +01002426 I915_WRITE(reg, temp);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002427
Chris Wilson5eddb702010-09-11 13:48:45 +01002428 reg = FDI_RX_CTL(pipe);
2429 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002430 temp &= ~FDI_LINK_TRAIN_NONE;
2431 temp |= FDI_LINK_TRAIN_PATTERN_2;
Chris Wilson5eddb702010-09-11 13:48:45 +01002432 I915_WRITE(reg, temp);
2433
2434 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002435 udelay(150);
2436
Chris Wilson5eddb702010-09-11 13:48:45 +01002437 reg = FDI_RX_IIR(pipe);
Adam Jacksone1a44742010-06-25 15:32:14 -04002438 for (tries = 0; tries < 5; tries++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002439 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002440 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2441
2442 if (temp & FDI_RX_SYMBOL_LOCK) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002443 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002444 DRM_DEBUG_KMS("FDI train 2 done.\n");
2445 break;
2446 }
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002447 }
Adam Jacksone1a44742010-06-25 15:32:14 -04002448 if (tries == 5)
Chris Wilson5eddb702010-09-11 13:48:45 +01002449 DRM_ERROR("FDI train 2 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002450
2451 DRM_DEBUG_KMS("FDI train done\n");
Jesse Barnes5c5313c2010-10-07 16:01:11 -07002452
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002453}
2454
Akshay Joshi0206e352011-08-16 15:34:10 -04002455static const int snb_b_fdi_train_param[] = {
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002456 FDI_LINK_TRAIN_400MV_0DB_SNB_B,
2457 FDI_LINK_TRAIN_400MV_6DB_SNB_B,
2458 FDI_LINK_TRAIN_600MV_3_5DB_SNB_B,
2459 FDI_LINK_TRAIN_800MV_0DB_SNB_B,
2460};
2461
2462/* The FDI link training functions for SNB/Cougarpoint. */
2463static void gen6_fdi_link_train(struct drm_crtc *crtc)
2464{
2465 struct drm_device *dev = crtc->dev;
2466 struct drm_i915_private *dev_priv = dev->dev_private;
2467 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2468 int pipe = intel_crtc->pipe;
Sean Paulfa37d392012-03-02 12:53:39 -05002469 u32 reg, temp, i, retry;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002470
Adam Jacksone1a44742010-06-25 15:32:14 -04002471 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
2472 for train result */
Chris Wilson5eddb702010-09-11 13:48:45 +01002473 reg = FDI_RX_IMR(pipe);
2474 temp = I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04002475 temp &= ~FDI_RX_SYMBOL_LOCK;
2476 temp &= ~FDI_RX_BIT_LOCK;
Chris Wilson5eddb702010-09-11 13:48:45 +01002477 I915_WRITE(reg, temp);
2478
2479 POSTING_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04002480 udelay(150);
2481
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002482 /* enable CPU FDI TX and PCH FDI RX */
Chris Wilson5eddb702010-09-11 13:48:45 +01002483 reg = FDI_TX_CTL(pipe);
2484 temp = I915_READ(reg);
Daniel Vetter627eb5a2013-04-29 19:33:42 +02002485 temp &= ~FDI_DP_PORT_WIDTH_MASK;
2486 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config.fdi_lanes);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002487 temp &= ~FDI_LINK_TRAIN_NONE;
2488 temp |= FDI_LINK_TRAIN_PATTERN_1;
2489 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2490 /* SNB-B */
2491 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
Chris Wilson5eddb702010-09-11 13:48:45 +01002492 I915_WRITE(reg, temp | FDI_TX_ENABLE);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002493
Daniel Vetterd74cf322012-10-26 10:58:13 +02002494 I915_WRITE(FDI_RX_MISC(pipe),
2495 FDI_RX_TP1_TO_TP2_48 | FDI_RX_FDI_DELAY_90);
2496
Chris Wilson5eddb702010-09-11 13:48:45 +01002497 reg = FDI_RX_CTL(pipe);
2498 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002499 if (HAS_PCH_CPT(dev)) {
2500 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2501 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
2502 } else {
2503 temp &= ~FDI_LINK_TRAIN_NONE;
2504 temp |= FDI_LINK_TRAIN_PATTERN_1;
2505 }
Chris Wilson5eddb702010-09-11 13:48:45 +01002506 I915_WRITE(reg, temp | FDI_RX_ENABLE);
2507
2508 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002509 udelay(150);
2510
Akshay Joshi0206e352011-08-16 15:34:10 -04002511 for (i = 0; i < 4; i++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002512 reg = FDI_TX_CTL(pipe);
2513 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002514 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2515 temp |= snb_b_fdi_train_param[i];
Chris Wilson5eddb702010-09-11 13:48:45 +01002516 I915_WRITE(reg, temp);
2517
2518 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002519 udelay(500);
2520
Sean Paulfa37d392012-03-02 12:53:39 -05002521 for (retry = 0; retry < 5; retry++) {
2522 reg = FDI_RX_IIR(pipe);
2523 temp = I915_READ(reg);
2524 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2525 if (temp & FDI_RX_BIT_LOCK) {
2526 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
2527 DRM_DEBUG_KMS("FDI train 1 done.\n");
2528 break;
2529 }
2530 udelay(50);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002531 }
Sean Paulfa37d392012-03-02 12:53:39 -05002532 if (retry < 5)
2533 break;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002534 }
2535 if (i == 4)
Chris Wilson5eddb702010-09-11 13:48:45 +01002536 DRM_ERROR("FDI train 1 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002537
2538 /* Train 2 */
Chris Wilson5eddb702010-09-11 13:48:45 +01002539 reg = FDI_TX_CTL(pipe);
2540 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002541 temp &= ~FDI_LINK_TRAIN_NONE;
2542 temp |= FDI_LINK_TRAIN_PATTERN_2;
2543 if (IS_GEN6(dev)) {
2544 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2545 /* SNB-B */
2546 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
2547 }
Chris Wilson5eddb702010-09-11 13:48:45 +01002548 I915_WRITE(reg, temp);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002549
Chris Wilson5eddb702010-09-11 13:48:45 +01002550 reg = FDI_RX_CTL(pipe);
2551 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002552 if (HAS_PCH_CPT(dev)) {
2553 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2554 temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
2555 } else {
2556 temp &= ~FDI_LINK_TRAIN_NONE;
2557 temp |= FDI_LINK_TRAIN_PATTERN_2;
2558 }
Chris Wilson5eddb702010-09-11 13:48:45 +01002559 I915_WRITE(reg, temp);
2560
2561 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002562 udelay(150);
2563
Akshay Joshi0206e352011-08-16 15:34:10 -04002564 for (i = 0; i < 4; i++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002565 reg = FDI_TX_CTL(pipe);
2566 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002567 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2568 temp |= snb_b_fdi_train_param[i];
Chris Wilson5eddb702010-09-11 13:48:45 +01002569 I915_WRITE(reg, temp);
2570
2571 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002572 udelay(500);
2573
Sean Paulfa37d392012-03-02 12:53:39 -05002574 for (retry = 0; retry < 5; retry++) {
2575 reg = FDI_RX_IIR(pipe);
2576 temp = I915_READ(reg);
2577 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2578 if (temp & FDI_RX_SYMBOL_LOCK) {
2579 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
2580 DRM_DEBUG_KMS("FDI train 2 done.\n");
2581 break;
2582 }
2583 udelay(50);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002584 }
Sean Paulfa37d392012-03-02 12:53:39 -05002585 if (retry < 5)
2586 break;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002587 }
2588 if (i == 4)
Chris Wilson5eddb702010-09-11 13:48:45 +01002589 DRM_ERROR("FDI train 2 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002590
2591 DRM_DEBUG_KMS("FDI train done.\n");
2592}
2593
Jesse Barnes357555c2011-04-28 15:09:55 -07002594/* Manual link training for Ivy Bridge A0 parts */
2595static void ivb_manual_fdi_link_train(struct drm_crtc *crtc)
2596{
2597 struct drm_device *dev = crtc->dev;
2598 struct drm_i915_private *dev_priv = dev->dev_private;
2599 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2600 int pipe = intel_crtc->pipe;
2601 u32 reg, temp, i;
2602
2603 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
2604 for train result */
2605 reg = FDI_RX_IMR(pipe);
2606 temp = I915_READ(reg);
2607 temp &= ~FDI_RX_SYMBOL_LOCK;
2608 temp &= ~FDI_RX_BIT_LOCK;
2609 I915_WRITE(reg, temp);
2610
2611 POSTING_READ(reg);
2612 udelay(150);
2613
Daniel Vetter01a415f2012-10-27 15:58:40 +02002614 DRM_DEBUG_KMS("FDI_RX_IIR before link train 0x%x\n",
2615 I915_READ(FDI_RX_IIR(pipe)));
2616
Jesse Barnes357555c2011-04-28 15:09:55 -07002617 /* enable CPU FDI TX and PCH FDI RX */
2618 reg = FDI_TX_CTL(pipe);
2619 temp = I915_READ(reg);
Daniel Vetter627eb5a2013-04-29 19:33:42 +02002620 temp &= ~FDI_DP_PORT_WIDTH_MASK;
2621 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config.fdi_lanes);
Jesse Barnes357555c2011-04-28 15:09:55 -07002622 temp &= ~(FDI_LINK_TRAIN_AUTO | FDI_LINK_TRAIN_NONE_IVB);
2623 temp |= FDI_LINK_TRAIN_PATTERN_1_IVB;
2624 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2625 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
Jesse Barnesc4f9c4c2011-10-10 14:28:52 -07002626 temp |= FDI_COMPOSITE_SYNC;
Jesse Barnes357555c2011-04-28 15:09:55 -07002627 I915_WRITE(reg, temp | FDI_TX_ENABLE);
2628
Daniel Vetterd74cf322012-10-26 10:58:13 +02002629 I915_WRITE(FDI_RX_MISC(pipe),
2630 FDI_RX_TP1_TO_TP2_48 | FDI_RX_FDI_DELAY_90);
2631
Jesse Barnes357555c2011-04-28 15:09:55 -07002632 reg = FDI_RX_CTL(pipe);
2633 temp = I915_READ(reg);
2634 temp &= ~FDI_LINK_TRAIN_AUTO;
2635 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2636 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
Jesse Barnesc4f9c4c2011-10-10 14:28:52 -07002637 temp |= FDI_COMPOSITE_SYNC;
Jesse Barnes357555c2011-04-28 15:09:55 -07002638 I915_WRITE(reg, temp | FDI_RX_ENABLE);
2639
2640 POSTING_READ(reg);
2641 udelay(150);
2642
Akshay Joshi0206e352011-08-16 15:34:10 -04002643 for (i = 0; i < 4; i++) {
Jesse Barnes357555c2011-04-28 15:09:55 -07002644 reg = FDI_TX_CTL(pipe);
2645 temp = I915_READ(reg);
2646 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2647 temp |= snb_b_fdi_train_param[i];
2648 I915_WRITE(reg, temp);
2649
2650 POSTING_READ(reg);
2651 udelay(500);
2652
2653 reg = FDI_RX_IIR(pipe);
2654 temp = I915_READ(reg);
2655 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2656
2657 if (temp & FDI_RX_BIT_LOCK ||
2658 (I915_READ(reg) & FDI_RX_BIT_LOCK)) {
2659 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
Daniel Vetter01a415f2012-10-27 15:58:40 +02002660 DRM_DEBUG_KMS("FDI train 1 done, level %i.\n", i);
Jesse Barnes357555c2011-04-28 15:09:55 -07002661 break;
2662 }
2663 }
2664 if (i == 4)
2665 DRM_ERROR("FDI train 1 fail!\n");
2666
2667 /* Train 2 */
2668 reg = FDI_TX_CTL(pipe);
2669 temp = I915_READ(reg);
2670 temp &= ~FDI_LINK_TRAIN_NONE_IVB;
2671 temp |= FDI_LINK_TRAIN_PATTERN_2_IVB;
2672 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2673 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
2674 I915_WRITE(reg, temp);
2675
2676 reg = FDI_RX_CTL(pipe);
2677 temp = I915_READ(reg);
2678 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2679 temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
2680 I915_WRITE(reg, temp);
2681
2682 POSTING_READ(reg);
2683 udelay(150);
2684
Akshay Joshi0206e352011-08-16 15:34:10 -04002685 for (i = 0; i < 4; i++) {
Jesse Barnes357555c2011-04-28 15:09:55 -07002686 reg = FDI_TX_CTL(pipe);
2687 temp = I915_READ(reg);
2688 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2689 temp |= snb_b_fdi_train_param[i];
2690 I915_WRITE(reg, temp);
2691
2692 POSTING_READ(reg);
2693 udelay(500);
2694
2695 reg = FDI_RX_IIR(pipe);
2696 temp = I915_READ(reg);
2697 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2698
2699 if (temp & FDI_RX_SYMBOL_LOCK) {
2700 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
Daniel Vetter01a415f2012-10-27 15:58:40 +02002701 DRM_DEBUG_KMS("FDI train 2 done, level %i.\n", i);
Jesse Barnes357555c2011-04-28 15:09:55 -07002702 break;
2703 }
2704 }
2705 if (i == 4)
2706 DRM_ERROR("FDI train 2 fail!\n");
2707
2708 DRM_DEBUG_KMS("FDI train done.\n");
2709}
2710
Daniel Vetter88cefb62012-08-12 19:27:14 +02002711static void ironlake_fdi_pll_enable(struct intel_crtc *intel_crtc)
Jesse Barnes0e23b992010-09-10 11:10:00 -07002712{
Daniel Vetter88cefb62012-08-12 19:27:14 +02002713 struct drm_device *dev = intel_crtc->base.dev;
Jesse Barnes0e23b992010-09-10 11:10:00 -07002714 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes0e23b992010-09-10 11:10:00 -07002715 int pipe = intel_crtc->pipe;
Chris Wilson5eddb702010-09-11 13:48:45 +01002716 u32 reg, temp;
Jesse Barnes0e23b992010-09-10 11:10:00 -07002717
Jesse Barnesc64e3112010-09-10 11:27:03 -07002718
Jesse Barnes0e23b992010-09-10 11:10:00 -07002719 /* enable PCH FDI RX PLL, wait warmup plus DMI latency */
Chris Wilson5eddb702010-09-11 13:48:45 +01002720 reg = FDI_RX_CTL(pipe);
2721 temp = I915_READ(reg);
Daniel Vetter627eb5a2013-04-29 19:33:42 +02002722 temp &= ~(FDI_DP_PORT_WIDTH_MASK | (0x7 << 16));
2723 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config.fdi_lanes);
Daniel Vetterdfd07d72012-12-17 11:21:38 +01002724 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
Chris Wilson5eddb702010-09-11 13:48:45 +01002725 I915_WRITE(reg, temp | FDI_RX_PLL_ENABLE);
2726
2727 POSTING_READ(reg);
Jesse Barnes0e23b992010-09-10 11:10:00 -07002728 udelay(200);
2729
2730 /* Switch from Rawclk to PCDclk */
Chris Wilson5eddb702010-09-11 13:48:45 +01002731 temp = I915_READ(reg);
2732 I915_WRITE(reg, temp | FDI_PCDCLK);
2733
2734 POSTING_READ(reg);
Jesse Barnes0e23b992010-09-10 11:10:00 -07002735 udelay(200);
2736
Paulo Zanoni20749732012-11-23 15:30:38 -02002737 /* Enable CPU FDI TX PLL, always on for Ironlake */
2738 reg = FDI_TX_CTL(pipe);
2739 temp = I915_READ(reg);
2740 if ((temp & FDI_TX_PLL_ENABLE) == 0) {
2741 I915_WRITE(reg, temp | FDI_TX_PLL_ENABLE);
Chris Wilson5eddb702010-09-11 13:48:45 +01002742
Paulo Zanoni20749732012-11-23 15:30:38 -02002743 POSTING_READ(reg);
2744 udelay(100);
Jesse Barnes0e23b992010-09-10 11:10:00 -07002745 }
2746}
2747
Daniel Vetter88cefb62012-08-12 19:27:14 +02002748static void ironlake_fdi_pll_disable(struct intel_crtc *intel_crtc)
2749{
2750 struct drm_device *dev = intel_crtc->base.dev;
2751 struct drm_i915_private *dev_priv = dev->dev_private;
2752 int pipe = intel_crtc->pipe;
2753 u32 reg, temp;
2754
2755 /* Switch from PCDclk to Rawclk */
2756 reg = FDI_RX_CTL(pipe);
2757 temp = I915_READ(reg);
2758 I915_WRITE(reg, temp & ~FDI_PCDCLK);
2759
2760 /* Disable CPU FDI TX PLL */
2761 reg = FDI_TX_CTL(pipe);
2762 temp = I915_READ(reg);
2763 I915_WRITE(reg, temp & ~FDI_TX_PLL_ENABLE);
2764
2765 POSTING_READ(reg);
2766 udelay(100);
2767
2768 reg = FDI_RX_CTL(pipe);
2769 temp = I915_READ(reg);
2770 I915_WRITE(reg, temp & ~FDI_RX_PLL_ENABLE);
2771
2772 /* Wait for the clocks to turn off. */
2773 POSTING_READ(reg);
2774 udelay(100);
2775}
2776
Jesse Barnes0fc932b2011-01-04 15:09:37 -08002777static void ironlake_fdi_disable(struct drm_crtc *crtc)
2778{
2779 struct drm_device *dev = crtc->dev;
2780 struct drm_i915_private *dev_priv = dev->dev_private;
2781 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2782 int pipe = intel_crtc->pipe;
2783 u32 reg, temp;
2784
2785 /* disable CPU FDI tx and PCH FDI rx */
2786 reg = FDI_TX_CTL(pipe);
2787 temp = I915_READ(reg);
2788 I915_WRITE(reg, temp & ~FDI_TX_ENABLE);
2789 POSTING_READ(reg);
2790
2791 reg = FDI_RX_CTL(pipe);
2792 temp = I915_READ(reg);
2793 temp &= ~(0x7 << 16);
Daniel Vetterdfd07d72012-12-17 11:21:38 +01002794 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
Jesse Barnes0fc932b2011-01-04 15:09:37 -08002795 I915_WRITE(reg, temp & ~FDI_RX_ENABLE);
2796
2797 POSTING_READ(reg);
2798 udelay(100);
2799
2800 /* Ironlake workaround, disable clock pointer after downing FDI */
Jesse Barnes6f06ce12011-01-04 15:09:38 -08002801 if (HAS_PCH_IBX(dev)) {
2802 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR);
Jesse Barnes6f06ce12011-01-04 15:09:38 -08002803 }
Jesse Barnes0fc932b2011-01-04 15:09:37 -08002804
2805 /* still set train pattern 1 */
2806 reg = FDI_TX_CTL(pipe);
2807 temp = I915_READ(reg);
2808 temp &= ~FDI_LINK_TRAIN_NONE;
2809 temp |= FDI_LINK_TRAIN_PATTERN_1;
2810 I915_WRITE(reg, temp);
2811
2812 reg = FDI_RX_CTL(pipe);
2813 temp = I915_READ(reg);
2814 if (HAS_PCH_CPT(dev)) {
2815 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2816 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
2817 } else {
2818 temp &= ~FDI_LINK_TRAIN_NONE;
2819 temp |= FDI_LINK_TRAIN_PATTERN_1;
2820 }
2821 /* BPC in FDI rx is consistent with that in PIPECONF */
2822 temp &= ~(0x07 << 16);
Daniel Vetterdfd07d72012-12-17 11:21:38 +01002823 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
Jesse Barnes0fc932b2011-01-04 15:09:37 -08002824 I915_WRITE(reg, temp);
2825
2826 POSTING_READ(reg);
2827 udelay(100);
2828}
2829
Chris Wilson5bb61642012-09-27 21:25:58 +01002830static bool intel_crtc_has_pending_flip(struct drm_crtc *crtc)
2831{
2832 struct drm_device *dev = crtc->dev;
2833 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä10d83732013-01-29 18:13:34 +02002834 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Chris Wilson5bb61642012-09-27 21:25:58 +01002835 unsigned long flags;
2836 bool pending;
2837
Ville Syrjälä10d83732013-01-29 18:13:34 +02002838 if (i915_reset_in_progress(&dev_priv->gpu_error) ||
2839 intel_crtc->reset_counter != atomic_read(&dev_priv->gpu_error.reset_counter))
Chris Wilson5bb61642012-09-27 21:25:58 +01002840 return false;
2841
2842 spin_lock_irqsave(&dev->event_lock, flags);
2843 pending = to_intel_crtc(crtc)->unpin_work != NULL;
2844 spin_unlock_irqrestore(&dev->event_lock, flags);
2845
2846 return pending;
2847}
2848
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01002849static void intel_crtc_wait_for_pending_flips(struct drm_crtc *crtc)
2850{
Chris Wilson0f911282012-04-17 10:05:38 +01002851 struct drm_device *dev = crtc->dev;
Chris Wilson5bb61642012-09-27 21:25:58 +01002852 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01002853
2854 if (crtc->fb == NULL)
2855 return;
2856
Daniel Vetter2c10d572012-12-20 21:24:07 +01002857 WARN_ON(waitqueue_active(&dev_priv->pending_flip_queue));
2858
Chris Wilson5bb61642012-09-27 21:25:58 +01002859 wait_event(dev_priv->pending_flip_queue,
2860 !intel_crtc_has_pending_flip(crtc));
2861
Chris Wilson0f911282012-04-17 10:05:38 +01002862 mutex_lock(&dev->struct_mutex);
2863 intel_finish_fb(crtc->fb);
2864 mutex_unlock(&dev->struct_mutex);
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01002865}
2866
Eugeni Dodonove615efe2012-05-09 15:37:26 -03002867/* Program iCLKIP clock to the desired frequency */
2868static void lpt_program_iclkip(struct drm_crtc *crtc)
2869{
2870 struct drm_device *dev = crtc->dev;
2871 struct drm_i915_private *dev_priv = dev->dev_private;
2872 u32 divsel, phaseinc, auxdiv, phasedir = 0;
2873 u32 temp;
2874
Daniel Vetter09153002012-12-12 14:06:44 +01002875 mutex_lock(&dev_priv->dpio_lock);
2876
Eugeni Dodonove615efe2012-05-09 15:37:26 -03002877 /* It is necessary to ungate the pixclk gate prior to programming
2878 * the divisors, and gate it back when it is done.
2879 */
2880 I915_WRITE(PIXCLK_GATE, PIXCLK_GATE_GATE);
2881
2882 /* Disable SSCCTL */
2883 intel_sbi_write(dev_priv, SBI_SSCCTL6,
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02002884 intel_sbi_read(dev_priv, SBI_SSCCTL6, SBI_ICLK) |
2885 SBI_SSCCTL_DISABLE,
2886 SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03002887
2888 /* 20MHz is a corner case which is out of range for the 7-bit divisor */
2889 if (crtc->mode.clock == 20000) {
2890 auxdiv = 1;
2891 divsel = 0x41;
2892 phaseinc = 0x20;
2893 } else {
2894 /* The iCLK virtual clock root frequency is in MHz,
2895 * but the crtc->mode.clock in in KHz. To get the divisors,
2896 * it is necessary to divide one by another, so we
2897 * convert the virtual clock precision to KHz here for higher
2898 * precision.
2899 */
2900 u32 iclk_virtual_root_freq = 172800 * 1000;
2901 u32 iclk_pi_range = 64;
2902 u32 desired_divisor, msb_divisor_value, pi_value;
2903
2904 desired_divisor = (iclk_virtual_root_freq / crtc->mode.clock);
2905 msb_divisor_value = desired_divisor / iclk_pi_range;
2906 pi_value = desired_divisor % iclk_pi_range;
2907
2908 auxdiv = 0;
2909 divsel = msb_divisor_value - 2;
2910 phaseinc = pi_value;
2911 }
2912
2913 /* This should not happen with any sane values */
2914 WARN_ON(SBI_SSCDIVINTPHASE_DIVSEL(divsel) &
2915 ~SBI_SSCDIVINTPHASE_DIVSEL_MASK);
2916 WARN_ON(SBI_SSCDIVINTPHASE_DIR(phasedir) &
2917 ~SBI_SSCDIVINTPHASE_INCVAL_MASK);
2918
2919 DRM_DEBUG_KMS("iCLKIP clock: found settings for %dKHz refresh rate: auxdiv=%x, divsel=%x, phasedir=%x, phaseinc=%x\n",
2920 crtc->mode.clock,
2921 auxdiv,
2922 divsel,
2923 phasedir,
2924 phaseinc);
2925
2926 /* Program SSCDIVINTPHASE6 */
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02002927 temp = intel_sbi_read(dev_priv, SBI_SSCDIVINTPHASE6, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03002928 temp &= ~SBI_SSCDIVINTPHASE_DIVSEL_MASK;
2929 temp |= SBI_SSCDIVINTPHASE_DIVSEL(divsel);
2930 temp &= ~SBI_SSCDIVINTPHASE_INCVAL_MASK;
2931 temp |= SBI_SSCDIVINTPHASE_INCVAL(phaseinc);
2932 temp |= SBI_SSCDIVINTPHASE_DIR(phasedir);
2933 temp |= SBI_SSCDIVINTPHASE_PROPAGATE;
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02002934 intel_sbi_write(dev_priv, SBI_SSCDIVINTPHASE6, temp, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03002935
2936 /* Program SSCAUXDIV */
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02002937 temp = intel_sbi_read(dev_priv, SBI_SSCAUXDIV6, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03002938 temp &= ~SBI_SSCAUXDIV_FINALDIV2SEL(1);
2939 temp |= SBI_SSCAUXDIV_FINALDIV2SEL(auxdiv);
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02002940 intel_sbi_write(dev_priv, SBI_SSCAUXDIV6, temp, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03002941
2942 /* Enable modulator and associated divider */
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02002943 temp = intel_sbi_read(dev_priv, SBI_SSCCTL6, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03002944 temp &= ~SBI_SSCCTL_DISABLE;
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02002945 intel_sbi_write(dev_priv, SBI_SSCCTL6, temp, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03002946
2947 /* Wait for initialization time */
2948 udelay(24);
2949
2950 I915_WRITE(PIXCLK_GATE, PIXCLK_GATE_UNGATE);
Daniel Vetter09153002012-12-12 14:06:44 +01002951
2952 mutex_unlock(&dev_priv->dpio_lock);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03002953}
2954
Daniel Vetter275f01b22013-05-03 11:49:47 +02002955static void ironlake_pch_transcoder_set_timings(struct intel_crtc *crtc,
2956 enum pipe pch_transcoder)
2957{
2958 struct drm_device *dev = crtc->base.dev;
2959 struct drm_i915_private *dev_priv = dev->dev_private;
2960 enum transcoder cpu_transcoder = crtc->config.cpu_transcoder;
2961
2962 I915_WRITE(PCH_TRANS_HTOTAL(pch_transcoder),
2963 I915_READ(HTOTAL(cpu_transcoder)));
2964 I915_WRITE(PCH_TRANS_HBLANK(pch_transcoder),
2965 I915_READ(HBLANK(cpu_transcoder)));
2966 I915_WRITE(PCH_TRANS_HSYNC(pch_transcoder),
2967 I915_READ(HSYNC(cpu_transcoder)));
2968
2969 I915_WRITE(PCH_TRANS_VTOTAL(pch_transcoder),
2970 I915_READ(VTOTAL(cpu_transcoder)));
2971 I915_WRITE(PCH_TRANS_VBLANK(pch_transcoder),
2972 I915_READ(VBLANK(cpu_transcoder)));
2973 I915_WRITE(PCH_TRANS_VSYNC(pch_transcoder),
2974 I915_READ(VSYNC(cpu_transcoder)));
2975 I915_WRITE(PCH_TRANS_VSYNCSHIFT(pch_transcoder),
2976 I915_READ(VSYNCSHIFT(cpu_transcoder)));
2977}
2978
Jesse Barnesf67a5592011-01-05 10:31:48 -08002979/*
2980 * Enable PCH resources required for PCH ports:
2981 * - PCH PLLs
2982 * - FDI training & RX/TX
2983 * - update transcoder timings
2984 * - DP transcoding bits
2985 * - transcoder
2986 */
2987static void ironlake_pch_enable(struct drm_crtc *crtc)
Jesse Barnes79e53942008-11-07 14:24:08 -08002988{
2989 struct drm_device *dev = crtc->dev;
Zhenyu Wang2c072452009-06-05 15:38:42 +08002990 struct drm_i915_private *dev_priv = dev->dev_private;
2991 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2992 int pipe = intel_crtc->pipe;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01002993 u32 reg, temp;
Jesse Barnes6be4a602010-09-10 10:26:01 -07002994
Daniel Vetterab9412b2013-05-03 11:49:46 +02002995 assert_pch_transcoder_disabled(dev_priv, pipe);
Chris Wilsone7e164d2012-05-11 09:21:25 +01002996
Daniel Vettercd986ab2012-10-26 10:58:12 +02002997 /* Write the TU size bits before fdi link training, so that error
2998 * detection works. */
2999 I915_WRITE(FDI_RX_TUSIZE1(pipe),
3000 I915_READ(PIPE_DATA_M1(pipe)) & TU_SIZE_MASK);
3001
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003002 /* For PCH output, training FDI link */
Jesse Barnes674cf962011-04-28 14:27:04 -07003003 dev_priv->display.fdi_link_train(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003004
Daniel Vetter572deb32012-10-27 18:46:14 +02003005 /* XXX: pch pll's can be enabled any time before we enable the PCH
3006 * transcoder, and we actually should do this to not upset any PCH
3007 * transcoder that already use the clock when we share it.
3008 *
3009 * Note that enable_pch_pll tries to do the right thing, but get_pch_pll
3010 * unconditionally resets the pll - we need that to have the right LVDS
3011 * enable sequence. */
Paulo Zanonib6b4e182012-10-31 18:12:38 -02003012 ironlake_enable_pch_pll(intel_crtc);
Chris Wilson6f13b7b2012-05-13 09:54:09 +01003013
Paulo Zanoni303b81e2012-10-31 18:12:23 -02003014 if (HAS_PCH_CPT(dev)) {
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003015 u32 sel;
Jesse Barnes4b645f12011-10-12 09:51:31 -07003016
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003017 temp = I915_READ(PCH_DPLL_SEL);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003018 switch (pipe) {
3019 default:
3020 case 0:
3021 temp |= TRANSA_DPLL_ENABLE;
3022 sel = TRANSA_DPLLB_SEL;
3023 break;
3024 case 1:
3025 temp |= TRANSB_DPLL_ENABLE;
3026 sel = TRANSB_DPLLB_SEL;
3027 break;
3028 case 2:
3029 temp |= TRANSC_DPLL_ENABLE;
3030 sel = TRANSC_DPLLB_SEL;
3031 break;
Jesse Barnesd64311a2011-10-12 15:01:33 -07003032 }
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003033 if (intel_crtc->pch_pll->pll_reg == _PCH_DPLL_B)
3034 temp |= sel;
3035 else
3036 temp &= ~sel;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003037 I915_WRITE(PCH_DPLL_SEL, temp);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003038 }
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003039
Jesse Barnesd9b6cb52011-01-04 15:09:35 -08003040 /* set transcoder timing, panel must allow it */
3041 assert_panel_unlocked(dev_priv, pipe);
Daniel Vetter275f01b22013-05-03 11:49:47 +02003042 ironlake_pch_transcoder_set_timings(intel_crtc, pipe);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003043
Paulo Zanoni303b81e2012-10-31 18:12:23 -02003044 intel_fdi_normal_train(crtc);
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08003045
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003046 /* For PCH DP, enable TRANS_DP_CTL */
3047 if (HAS_PCH_CPT(dev) &&
Keith Packard417e8222011-11-01 19:54:11 -07003048 (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT) ||
3049 intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP))) {
Daniel Vetterdfd07d72012-12-17 11:21:38 +01003050 u32 bpc = (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) >> 5;
Chris Wilson5eddb702010-09-11 13:48:45 +01003051 reg = TRANS_DP_CTL(pipe);
3052 temp = I915_READ(reg);
3053 temp &= ~(TRANS_DP_PORT_SEL_MASK |
Eric Anholt220cad32010-11-18 09:32:58 +08003054 TRANS_DP_SYNC_MASK |
3055 TRANS_DP_BPC_MASK);
Chris Wilson5eddb702010-09-11 13:48:45 +01003056 temp |= (TRANS_DP_OUTPUT_ENABLE |
3057 TRANS_DP_ENH_FRAMING);
Jesse Barnes9325c9f2011-06-24 12:19:21 -07003058 temp |= bpc << 9; /* same format but at 11:9 */
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003059
3060 if (crtc->mode.flags & DRM_MODE_FLAG_PHSYNC)
Chris Wilson5eddb702010-09-11 13:48:45 +01003061 temp |= TRANS_DP_HSYNC_ACTIVE_HIGH;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003062 if (crtc->mode.flags & DRM_MODE_FLAG_PVSYNC)
Chris Wilson5eddb702010-09-11 13:48:45 +01003063 temp |= TRANS_DP_VSYNC_ACTIVE_HIGH;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003064
3065 switch (intel_trans_dp_port_sel(crtc)) {
3066 case PCH_DP_B:
Chris Wilson5eddb702010-09-11 13:48:45 +01003067 temp |= TRANS_DP_PORT_SEL_B;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003068 break;
3069 case PCH_DP_C:
Chris Wilson5eddb702010-09-11 13:48:45 +01003070 temp |= TRANS_DP_PORT_SEL_C;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003071 break;
3072 case PCH_DP_D:
Chris Wilson5eddb702010-09-11 13:48:45 +01003073 temp |= TRANS_DP_PORT_SEL_D;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003074 break;
3075 default:
Daniel Vettere95d41e2012-10-26 10:58:16 +02003076 BUG();
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003077 }
3078
Chris Wilson5eddb702010-09-11 13:48:45 +01003079 I915_WRITE(reg, temp);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003080 }
3081
Paulo Zanonib8a4f402012-10-31 18:12:42 -02003082 ironlake_enable_pch_transcoder(dev_priv, pipe);
Jesse Barnesf67a5592011-01-05 10:31:48 -08003083}
3084
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003085static void lpt_pch_enable(struct drm_crtc *crtc)
3086{
3087 struct drm_device *dev = crtc->dev;
3088 struct drm_i915_private *dev_priv = dev->dev_private;
3089 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter3b117c82013-04-17 20:15:07 +02003090 enum transcoder cpu_transcoder = intel_crtc->config.cpu_transcoder;
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003091
Daniel Vetterab9412b2013-05-03 11:49:46 +02003092 assert_pch_transcoder_disabled(dev_priv, TRANSCODER_A);
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003093
Paulo Zanoni8c52b5e2012-10-31 18:12:24 -02003094 lpt_program_iclkip(crtc);
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003095
Paulo Zanoni0540e482012-10-31 18:12:40 -02003096 /* Set transcoder timing. */
Daniel Vetter275f01b22013-05-03 11:49:47 +02003097 ironlake_pch_transcoder_set_timings(intel_crtc, PIPE_A);
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003098
Paulo Zanoni937bb612012-10-31 18:12:47 -02003099 lpt_enable_pch_transcoder(dev_priv, cpu_transcoder);
Jesse Barnesf67a5592011-01-05 10:31:48 -08003100}
3101
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003102static void intel_put_pch_pll(struct intel_crtc *intel_crtc)
3103{
3104 struct intel_pch_pll *pll = intel_crtc->pch_pll;
3105
3106 if (pll == NULL)
3107 return;
3108
3109 if (pll->refcount == 0) {
3110 WARN(1, "bad PCH PLL refcount\n");
3111 return;
3112 }
3113
3114 --pll->refcount;
3115 intel_crtc->pch_pll = NULL;
3116}
3117
3118static struct intel_pch_pll *intel_get_pch_pll(struct intel_crtc *intel_crtc, u32 dpll, u32 fp)
3119{
3120 struct drm_i915_private *dev_priv = intel_crtc->base.dev->dev_private;
3121 struct intel_pch_pll *pll;
3122 int i;
3123
3124 pll = intel_crtc->pch_pll;
3125 if (pll) {
3126 DRM_DEBUG_KMS("CRTC:%d reusing existing PCH PLL %x\n",
3127 intel_crtc->base.base.id, pll->pll_reg);
3128 goto prepare;
3129 }
3130
Daniel Vetter98b6bd92012-05-20 20:00:25 +02003131 if (HAS_PCH_IBX(dev_priv->dev)) {
3132 /* Ironlake PCH has a fixed PLL->PCH pipe mapping. */
3133 i = intel_crtc->pipe;
3134 pll = &dev_priv->pch_plls[i];
3135
3136 DRM_DEBUG_KMS("CRTC:%d using pre-allocated PCH PLL %x\n",
3137 intel_crtc->base.base.id, pll->pll_reg);
3138
3139 goto found;
3140 }
3141
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003142 for (i = 0; i < dev_priv->num_pch_pll; i++) {
3143 pll = &dev_priv->pch_plls[i];
3144
3145 /* Only want to check enabled timings first */
3146 if (pll->refcount == 0)
3147 continue;
3148
3149 if (dpll == (I915_READ(pll->pll_reg) & 0x7fffffff) &&
3150 fp == I915_READ(pll->fp0_reg)) {
3151 DRM_DEBUG_KMS("CRTC:%d sharing existing PCH PLL %x (refcount %d, ative %d)\n",
3152 intel_crtc->base.base.id,
3153 pll->pll_reg, pll->refcount, pll->active);
3154
3155 goto found;
3156 }
3157 }
3158
3159 /* Ok no matching timings, maybe there's a free one? */
3160 for (i = 0; i < dev_priv->num_pch_pll; i++) {
3161 pll = &dev_priv->pch_plls[i];
3162 if (pll->refcount == 0) {
3163 DRM_DEBUG_KMS("CRTC:%d allocated PCH PLL %x\n",
3164 intel_crtc->base.base.id, pll->pll_reg);
3165 goto found;
3166 }
3167 }
3168
3169 return NULL;
3170
3171found:
3172 intel_crtc->pch_pll = pll;
3173 pll->refcount++;
Ville Syrjälä84f44ce2013-04-17 17:48:49 +03003174 DRM_DEBUG_DRIVER("using pll %d for pipe %c\n", i, pipe_name(intel_crtc->pipe));
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003175prepare: /* separate function? */
3176 DRM_DEBUG_DRIVER("switching PLL %x off\n", pll->pll_reg);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003177
Chris Wilsone04c7352012-05-02 20:43:56 +01003178 /* Wait for the clocks to stabilize before rewriting the regs */
3179 I915_WRITE(pll->pll_reg, dpll & ~DPLL_VCO_ENABLE);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003180 POSTING_READ(pll->pll_reg);
3181 udelay(150);
Chris Wilsone04c7352012-05-02 20:43:56 +01003182
3183 I915_WRITE(pll->fp0_reg, fp);
3184 I915_WRITE(pll->pll_reg, dpll & ~DPLL_VCO_ENABLE);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003185 pll->on = false;
3186 return pll;
3187}
3188
Daniel Vettera1520312013-05-03 11:49:50 +02003189static void cpt_verify_modeset(struct drm_device *dev, int pipe)
Jesse Barnesd4270e52011-10-11 10:43:02 -07003190{
3191 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter23670b322012-11-01 09:15:30 +01003192 int dslreg = PIPEDSL(pipe);
Jesse Barnesd4270e52011-10-11 10:43:02 -07003193 u32 temp;
3194
3195 temp = I915_READ(dslreg);
3196 udelay(500);
3197 if (wait_for(I915_READ(dslreg) != temp, 5)) {
Jesse Barnesd4270e52011-10-11 10:43:02 -07003198 if (wait_for(I915_READ(dslreg) != temp, 5))
Ville Syrjälä84f44ce2013-04-17 17:48:49 +03003199 DRM_ERROR("mode set failed: pipe %c stuck\n", pipe_name(pipe));
Jesse Barnesd4270e52011-10-11 10:43:02 -07003200 }
3201}
3202
Jesse Barnesb074cec2013-04-25 12:55:02 -07003203static void ironlake_pfit_enable(struct intel_crtc *crtc)
3204{
3205 struct drm_device *dev = crtc->base.dev;
3206 struct drm_i915_private *dev_priv = dev->dev_private;
3207 int pipe = crtc->pipe;
3208
Jesse Barnes0ef37f32013-05-03 13:26:37 -07003209 if (crtc->config.pch_pfit.size) {
Jesse Barnesb074cec2013-04-25 12:55:02 -07003210 /* Force use of hard-coded filter coefficients
3211 * as some pre-programmed values are broken,
3212 * e.g. x201.
3213 */
3214 if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev))
3215 I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3 |
3216 PF_PIPE_SEL_IVB(pipe));
3217 else
3218 I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3);
3219 I915_WRITE(PF_WIN_POS(pipe), crtc->config.pch_pfit.pos);
3220 I915_WRITE(PF_WIN_SZ(pipe), crtc->config.pch_pfit.size);
3221 }
3222}
3223
Jesse Barnesf67a5592011-01-05 10:31:48 -08003224static void ironlake_crtc_enable(struct drm_crtc *crtc)
3225{
3226 struct drm_device *dev = crtc->dev;
3227 struct drm_i915_private *dev_priv = dev->dev_private;
3228 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02003229 struct intel_encoder *encoder;
Jesse Barnesf67a5592011-01-05 10:31:48 -08003230 int pipe = intel_crtc->pipe;
3231 int plane = intel_crtc->plane;
3232 u32 temp;
Jesse Barnesf67a5592011-01-05 10:31:48 -08003233
Daniel Vetter08a48462012-07-02 11:43:47 +02003234 WARN_ON(!crtc->enabled);
3235
Jesse Barnesf67a5592011-01-05 10:31:48 -08003236 if (intel_crtc->active)
3237 return;
3238
3239 intel_crtc->active = true;
Paulo Zanoni86642812013-04-12 17:57:57 -03003240
3241 intel_set_cpu_fifo_underrun_reporting(dev, pipe, true);
3242 intel_set_pch_fifo_underrun_reporting(dev, pipe, true);
3243
Jesse Barnesf67a5592011-01-05 10:31:48 -08003244 intel_update_watermarks(dev);
3245
3246 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
3247 temp = I915_READ(PCH_LVDS);
3248 if ((temp & LVDS_PORT_EN) == 0)
3249 I915_WRITE(PCH_LVDS, temp | LVDS_PORT_EN);
3250 }
3251
Jesse Barnesf67a5592011-01-05 10:31:48 -08003252
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01003253 if (intel_crtc->config.has_pch_encoder) {
Daniel Vetterfff367c2012-10-27 15:50:28 +02003254 /* Note: FDI PLL enabling _must_ be done before we enable the
3255 * cpu pipes, hence this is separate from all the other fdi/pch
3256 * enabling. */
Daniel Vetter88cefb62012-08-12 19:27:14 +02003257 ironlake_fdi_pll_enable(intel_crtc);
Daniel Vetter46b6f812012-09-06 22:08:33 +02003258 } else {
3259 assert_fdi_tx_disabled(dev_priv, pipe);
3260 assert_fdi_rx_disabled(dev_priv, pipe);
3261 }
Jesse Barnesf67a5592011-01-05 10:31:48 -08003262
Daniel Vetterbf49ec82012-09-06 22:15:40 +02003263 for_each_encoder_on_crtc(dev, crtc, encoder)
3264 if (encoder->pre_enable)
3265 encoder->pre_enable(encoder);
Jesse Barnesf67a5592011-01-05 10:31:48 -08003266
3267 /* Enable panel fitting for LVDS */
Jesse Barnesb074cec2013-04-25 12:55:02 -07003268 ironlake_pfit_enable(intel_crtc);
Jesse Barnesf67a5592011-01-05 10:31:48 -08003269
Jesse Barnes9c54c0d2011-06-15 23:32:33 +02003270 /*
3271 * On ILK+ LUT must be loaded before the pipe is running but with
3272 * clocks enabled
3273 */
3274 intel_crtc_load_lut(crtc);
3275
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01003276 intel_enable_pipe(dev_priv, pipe,
3277 intel_crtc->config.has_pch_encoder);
Jesse Barnesf67a5592011-01-05 10:31:48 -08003278 intel_enable_plane(dev_priv, plane, pipe);
3279
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01003280 if (intel_crtc->config.has_pch_encoder)
Jesse Barnesf67a5592011-01-05 10:31:48 -08003281 ironlake_pch_enable(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003282
Ben Widawskyd1ebd8162011-04-25 20:11:50 +01003283 mutex_lock(&dev->struct_mutex);
Chris Wilsonbed4a672010-09-11 10:47:47 +01003284 intel_update_fbc(dev);
Ben Widawskyd1ebd8162011-04-25 20:11:50 +01003285 mutex_unlock(&dev->struct_mutex);
3286
Chris Wilson6b383a72010-09-13 13:54:26 +01003287 intel_crtc_update_cursor(crtc, true);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02003288
Daniel Vetterfa5c73b2012-07-01 23:24:36 +02003289 for_each_encoder_on_crtc(dev, crtc, encoder)
3290 encoder->enable(encoder);
Daniel Vetter61b77dd2012-07-02 00:16:19 +02003291
3292 if (HAS_PCH_CPT(dev))
Daniel Vettera1520312013-05-03 11:49:50 +02003293 cpt_verify_modeset(dev, intel_crtc->pipe);
Daniel Vetter6ce94102012-10-04 19:20:03 +02003294
3295 /*
3296 * There seems to be a race in PCH platform hw (at least on some
3297 * outputs) where an enabled pipe still completes any pageflip right
3298 * away (as if the pipe is off) instead of waiting for vblank. As soon
3299 * as the first vblank happend, everything works as expected. Hence just
3300 * wait for one vblank before returning to avoid strange things
3301 * happening.
3302 */
3303 intel_wait_for_vblank(dev, intel_crtc->pipe);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003304}
3305
Paulo Zanoni42db64e2013-05-31 16:33:22 -03003306/* IPS only exists on ULT machines and is tied to pipe A. */
3307static bool hsw_crtc_supports_ips(struct intel_crtc *crtc)
3308{
3309 return IS_ULT(crtc->base.dev) && crtc->pipe == PIPE_A;
3310}
3311
3312static void hsw_enable_ips(struct intel_crtc *crtc)
3313{
3314 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
3315
3316 if (!crtc->config.ips_enabled)
3317 return;
3318
3319 /* We can only enable IPS after we enable a plane and wait for a vblank.
3320 * We guarantee that the plane is enabled by calling intel_enable_ips
3321 * only after intel_enable_plane. And intel_enable_plane already waits
3322 * for a vblank, so all we need to do here is to enable the IPS bit. */
3323 assert_plane_enabled(dev_priv, crtc->plane);
3324 I915_WRITE(IPS_CTL, IPS_ENABLE);
3325}
3326
3327static void hsw_disable_ips(struct intel_crtc *crtc)
3328{
3329 struct drm_device *dev = crtc->base.dev;
3330 struct drm_i915_private *dev_priv = dev->dev_private;
3331
3332 if (!crtc->config.ips_enabled)
3333 return;
3334
3335 assert_plane_enabled(dev_priv, crtc->plane);
3336 I915_WRITE(IPS_CTL, 0);
3337
3338 /* We need to wait for a vblank before we can disable the plane. */
3339 intel_wait_for_vblank(dev, crtc->pipe);
3340}
3341
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003342static void haswell_crtc_enable(struct drm_crtc *crtc)
3343{
3344 struct drm_device *dev = crtc->dev;
3345 struct drm_i915_private *dev_priv = dev->dev_private;
3346 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3347 struct intel_encoder *encoder;
3348 int pipe = intel_crtc->pipe;
3349 int plane = intel_crtc->plane;
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003350
3351 WARN_ON(!crtc->enabled);
3352
3353 if (intel_crtc->active)
3354 return;
3355
3356 intel_crtc->active = true;
Paulo Zanoni86642812013-04-12 17:57:57 -03003357
3358 intel_set_cpu_fifo_underrun_reporting(dev, pipe, true);
3359 if (intel_crtc->config.has_pch_encoder)
3360 intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_A, true);
3361
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003362 intel_update_watermarks(dev);
3363
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01003364 if (intel_crtc->config.has_pch_encoder)
Paulo Zanoni04945642012-11-01 21:00:59 -02003365 dev_priv->display.fdi_link_train(crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003366
3367 for_each_encoder_on_crtc(dev, crtc, encoder)
3368 if (encoder->pre_enable)
3369 encoder->pre_enable(encoder);
3370
Paulo Zanoni1f544382012-10-24 11:32:00 -02003371 intel_ddi_enable_pipe_clock(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003372
Paulo Zanoni1f544382012-10-24 11:32:00 -02003373 /* Enable panel fitting for eDP */
Jesse Barnesb074cec2013-04-25 12:55:02 -07003374 ironlake_pfit_enable(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003375
3376 /*
3377 * On ILK+ LUT must be loaded before the pipe is running but with
3378 * clocks enabled
3379 */
3380 intel_crtc_load_lut(crtc);
3381
Paulo Zanoni1f544382012-10-24 11:32:00 -02003382 intel_ddi_set_pipe_settings(crtc);
Damien Lespiau8228c252013-03-07 15:30:27 +00003383 intel_ddi_enable_transcoder_func(crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003384
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01003385 intel_enable_pipe(dev_priv, pipe,
3386 intel_crtc->config.has_pch_encoder);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003387 intel_enable_plane(dev_priv, plane, pipe);
3388
Paulo Zanoni42db64e2013-05-31 16:33:22 -03003389 hsw_enable_ips(intel_crtc);
3390
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01003391 if (intel_crtc->config.has_pch_encoder)
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003392 lpt_pch_enable(crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003393
3394 mutex_lock(&dev->struct_mutex);
3395 intel_update_fbc(dev);
3396 mutex_unlock(&dev->struct_mutex);
3397
3398 intel_crtc_update_cursor(crtc, true);
3399
3400 for_each_encoder_on_crtc(dev, crtc, encoder)
3401 encoder->enable(encoder);
3402
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003403 /*
3404 * There seems to be a race in PCH platform hw (at least on some
3405 * outputs) where an enabled pipe still completes any pageflip right
3406 * away (as if the pipe is off) instead of waiting for vblank. As soon
3407 * as the first vblank happend, everything works as expected. Hence just
3408 * wait for one vblank before returning to avoid strange things
3409 * happening.
3410 */
3411 intel_wait_for_vblank(dev, intel_crtc->pipe);
3412}
3413
Daniel Vetter3f8dce32013-05-08 10:36:30 +02003414static void ironlake_pfit_disable(struct intel_crtc *crtc)
3415{
3416 struct drm_device *dev = crtc->base.dev;
3417 struct drm_i915_private *dev_priv = dev->dev_private;
3418 int pipe = crtc->pipe;
3419
3420 /* To avoid upsetting the power well on haswell only disable the pfit if
3421 * it's in use. The hw state code will make sure we get this right. */
3422 if (crtc->config.pch_pfit.size) {
3423 I915_WRITE(PF_CTL(pipe), 0);
3424 I915_WRITE(PF_WIN_POS(pipe), 0);
3425 I915_WRITE(PF_WIN_SZ(pipe), 0);
3426 }
3427}
3428
Jesse Barnes6be4a602010-09-10 10:26:01 -07003429static void ironlake_crtc_disable(struct drm_crtc *crtc)
3430{
3431 struct drm_device *dev = crtc->dev;
3432 struct drm_i915_private *dev_priv = dev->dev_private;
3433 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02003434 struct intel_encoder *encoder;
Jesse Barnes6be4a602010-09-10 10:26:01 -07003435 int pipe = intel_crtc->pipe;
3436 int plane = intel_crtc->plane;
Chris Wilson5eddb702010-09-11 13:48:45 +01003437 u32 reg, temp;
Jesse Barnes6be4a602010-09-10 10:26:01 -07003438
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02003439
Chris Wilsonf7abfe82010-09-13 14:19:16 +01003440 if (!intel_crtc->active)
3441 return;
3442
Daniel Vetterea9d7582012-07-10 10:42:52 +02003443 for_each_encoder_on_crtc(dev, crtc, encoder)
3444 encoder->disable(encoder);
3445
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01003446 intel_crtc_wait_for_pending_flips(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003447 drm_vblank_off(dev, pipe);
Chris Wilson6b383a72010-09-13 13:54:26 +01003448 intel_crtc_update_cursor(crtc, false);
Chris Wilson5eddb702010-09-11 13:48:45 +01003449
Jesse Barnesb24e7172011-01-04 15:09:30 -08003450 intel_disable_plane(dev_priv, plane, pipe);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003451
Chris Wilson973d04f2011-07-08 12:22:37 +01003452 if (dev_priv->cfb_plane == plane)
3453 intel_disable_fbc(dev);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003454
Paulo Zanoni86642812013-04-12 17:57:57 -03003455 intel_set_pch_fifo_underrun_reporting(dev, pipe, false);
Jesse Barnesb24e7172011-01-04 15:09:30 -08003456 intel_disable_pipe(dev_priv, pipe);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003457
Daniel Vetter3f8dce32013-05-08 10:36:30 +02003458 ironlake_pfit_disable(intel_crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003459
Daniel Vetterbf49ec82012-09-06 22:15:40 +02003460 for_each_encoder_on_crtc(dev, crtc, encoder)
3461 if (encoder->post_disable)
3462 encoder->post_disable(encoder);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003463
Chris Wilson5eddb702010-09-11 13:48:45 +01003464 ironlake_fdi_disable(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003465
Paulo Zanonib8a4f402012-10-31 18:12:42 -02003466 ironlake_disable_pch_transcoder(dev_priv, pipe);
Paulo Zanoni86642812013-04-12 17:57:57 -03003467 intel_set_pch_fifo_underrun_reporting(dev, pipe, true);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003468
3469 if (HAS_PCH_CPT(dev)) {
3470 /* disable TRANS_DP_CTL */
Chris Wilson5eddb702010-09-11 13:48:45 +01003471 reg = TRANS_DP_CTL(pipe);
3472 temp = I915_READ(reg);
3473 temp &= ~(TRANS_DP_OUTPUT_ENABLE | TRANS_DP_PORT_SEL_MASK);
Eric Anholtcb3543c2011-02-02 12:08:07 -08003474 temp |= TRANS_DP_PORT_SEL_NONE;
Chris Wilson5eddb702010-09-11 13:48:45 +01003475 I915_WRITE(reg, temp);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003476
3477 /* disable DPLL_SEL */
3478 temp = I915_READ(PCH_DPLL_SEL);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08003479 switch (pipe) {
3480 case 0:
Jesse Barnesd64311a2011-10-12 15:01:33 -07003481 temp &= ~(TRANSA_DPLL_ENABLE | TRANSA_DPLLB_SEL);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08003482 break;
3483 case 1:
Jesse Barnes6be4a602010-09-10 10:26:01 -07003484 temp &= ~(TRANSB_DPLL_ENABLE | TRANSB_DPLLB_SEL);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08003485 break;
3486 case 2:
Jesse Barnes4b645f12011-10-12 09:51:31 -07003487 /* C shares PLL A or B */
Jesse Barnesd64311a2011-10-12 15:01:33 -07003488 temp &= ~(TRANSC_DPLL_ENABLE | TRANSC_DPLLB_SEL);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08003489 break;
3490 default:
3491 BUG(); /* wtf */
3492 }
Jesse Barnes6be4a602010-09-10 10:26:01 -07003493 I915_WRITE(PCH_DPLL_SEL, temp);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003494 }
3495
3496 /* disable PCH DPLL */
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003497 intel_disable_pch_pll(intel_crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003498
Daniel Vetter88cefb62012-08-12 19:27:14 +02003499 ironlake_fdi_pll_disable(intel_crtc);
Chris Wilson6b383a72010-09-13 13:54:26 +01003500
Chris Wilsonf7abfe82010-09-13 14:19:16 +01003501 intel_crtc->active = false;
Chris Wilson6b383a72010-09-13 13:54:26 +01003502 intel_update_watermarks(dev);
Ben Widawskyd1ebd8162011-04-25 20:11:50 +01003503
3504 mutex_lock(&dev->struct_mutex);
Chris Wilson6b383a72010-09-13 13:54:26 +01003505 intel_update_fbc(dev);
Ben Widawskyd1ebd8162011-04-25 20:11:50 +01003506 mutex_unlock(&dev->struct_mutex);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003507}
3508
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003509static void haswell_crtc_disable(struct drm_crtc *crtc)
3510{
3511 struct drm_device *dev = crtc->dev;
3512 struct drm_i915_private *dev_priv = dev->dev_private;
3513 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3514 struct intel_encoder *encoder;
3515 int pipe = intel_crtc->pipe;
3516 int plane = intel_crtc->plane;
Daniel Vetter3b117c82013-04-17 20:15:07 +02003517 enum transcoder cpu_transcoder = intel_crtc->config.cpu_transcoder;
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003518
3519 if (!intel_crtc->active)
3520 return;
3521
3522 for_each_encoder_on_crtc(dev, crtc, encoder)
3523 encoder->disable(encoder);
3524
3525 intel_crtc_wait_for_pending_flips(crtc);
3526 drm_vblank_off(dev, pipe);
3527 intel_crtc_update_cursor(crtc, false);
3528
Rodrigo Vivi891348b2013-05-06 19:37:36 -03003529 /* FBC must be disabled before disabling the plane on HSW. */
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003530 if (dev_priv->cfb_plane == plane)
3531 intel_disable_fbc(dev);
3532
Paulo Zanoni42db64e2013-05-31 16:33:22 -03003533 hsw_disable_ips(intel_crtc);
3534
Rodrigo Vivi891348b2013-05-06 19:37:36 -03003535 intel_disable_plane(dev_priv, plane, pipe);
3536
Paulo Zanoni86642812013-04-12 17:57:57 -03003537 if (intel_crtc->config.has_pch_encoder)
3538 intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_A, false);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003539 intel_disable_pipe(dev_priv, pipe);
3540
Paulo Zanoniad80a812012-10-24 16:06:19 -02003541 intel_ddi_disable_transcoder_func(dev_priv, cpu_transcoder);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003542
Daniel Vetter3f8dce32013-05-08 10:36:30 +02003543 ironlake_pfit_disable(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003544
Paulo Zanoni1f544382012-10-24 11:32:00 -02003545 intel_ddi_disable_pipe_clock(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003546
3547 for_each_encoder_on_crtc(dev, crtc, encoder)
3548 if (encoder->post_disable)
3549 encoder->post_disable(encoder);
3550
Daniel Vetter88adfff2013-03-28 10:42:01 +01003551 if (intel_crtc->config.has_pch_encoder) {
Paulo Zanoniab4d9662012-10-31 18:12:55 -02003552 lpt_disable_pch_transcoder(dev_priv);
Paulo Zanoni86642812013-04-12 17:57:57 -03003553 intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_A, true);
Paulo Zanoni1ad960f2012-11-01 21:05:05 -02003554 intel_ddi_fdi_disable(crtc);
Paulo Zanoni83616632012-10-23 18:29:54 -02003555 }
Paulo Zanoni4f771f12012-10-23 18:29:51 -02003556
3557 intel_crtc->active = false;
3558 intel_update_watermarks(dev);
3559
3560 mutex_lock(&dev->struct_mutex);
3561 intel_update_fbc(dev);
3562 mutex_unlock(&dev->struct_mutex);
3563}
3564
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003565static void ironlake_crtc_off(struct drm_crtc *crtc)
3566{
3567 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3568 intel_put_pch_pll(intel_crtc);
3569}
3570
Paulo Zanoni6441ab52012-10-05 12:05:58 -03003571static void haswell_crtc_off(struct drm_crtc *crtc)
3572{
3573 intel_ddi_put_crtc_pll(crtc);
3574}
3575
Daniel Vetter02e792f2009-09-15 22:57:34 +02003576static void intel_crtc_dpms_overlay(struct intel_crtc *intel_crtc, bool enable)
3577{
Daniel Vetter02e792f2009-09-15 22:57:34 +02003578 if (!enable && intel_crtc->overlay) {
Chris Wilson23f09ce2010-08-12 13:53:37 +01003579 struct drm_device *dev = intel_crtc->base.dev;
Chris Wilsonce453d82011-02-21 14:43:56 +00003580 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter03f77ea2009-09-15 22:57:37 +02003581
Chris Wilson23f09ce2010-08-12 13:53:37 +01003582 mutex_lock(&dev->struct_mutex);
Chris Wilsonce453d82011-02-21 14:43:56 +00003583 dev_priv->mm.interruptible = false;
3584 (void) intel_overlay_switch_off(intel_crtc->overlay);
3585 dev_priv->mm.interruptible = true;
Chris Wilson23f09ce2010-08-12 13:53:37 +01003586 mutex_unlock(&dev->struct_mutex);
Daniel Vetter02e792f2009-09-15 22:57:34 +02003587 }
Daniel Vetter02e792f2009-09-15 22:57:34 +02003588
Chris Wilson5dcdbcb2010-08-12 13:50:28 +01003589 /* Let userspace switch the overlay on again. In most cases userspace
3590 * has to recompute where to put it anyway.
3591 */
Daniel Vetter02e792f2009-09-15 22:57:34 +02003592}
3593
Egbert Eich61bc95c2013-03-04 09:24:38 -05003594/**
3595 * i9xx_fixup_plane - ugly workaround for G45 to fire up the hardware
3596 * cursor plane briefly if not already running after enabling the display
3597 * plane.
3598 * This workaround avoids occasional blank screens when self refresh is
3599 * enabled.
3600 */
3601static void
3602g4x_fixup_plane(struct drm_i915_private *dev_priv, enum pipe pipe)
3603{
3604 u32 cntl = I915_READ(CURCNTR(pipe));
3605
3606 if ((cntl & CURSOR_MODE) == 0) {
3607 u32 fw_bcl_self = I915_READ(FW_BLC_SELF);
3608
3609 I915_WRITE(FW_BLC_SELF, fw_bcl_self & ~FW_BLC_SELF_EN);
3610 I915_WRITE(CURCNTR(pipe), CURSOR_MODE_64_ARGB_AX);
3611 intel_wait_for_vblank(dev_priv->dev, pipe);
3612 I915_WRITE(CURCNTR(pipe), cntl);
3613 I915_WRITE(CURBASE(pipe), I915_READ(CURBASE(pipe)));
3614 I915_WRITE(FW_BLC_SELF, fw_bcl_self);
3615 }
3616}
3617
Jesse Barnes2dd24552013-04-25 12:55:01 -07003618static void i9xx_pfit_enable(struct intel_crtc *crtc)
3619{
3620 struct drm_device *dev = crtc->base.dev;
3621 struct drm_i915_private *dev_priv = dev->dev_private;
3622 struct intel_crtc_config *pipe_config = &crtc->config;
3623
Daniel Vetter328d8e82013-05-08 10:36:31 +02003624 if (!crtc->config.gmch_pfit.control)
Jesse Barnes2dd24552013-04-25 12:55:01 -07003625 return;
3626
Daniel Vetterc0b03412013-05-28 12:05:54 +02003627 /*
3628 * The panel fitter should only be adjusted whilst the pipe is disabled,
3629 * according to register description and PRM.
3630 */
Jesse Barnes2dd24552013-04-25 12:55:01 -07003631 WARN_ON(I915_READ(PFIT_CONTROL) & PFIT_ENABLE);
3632 assert_pipe_disabled(dev_priv, crtc->pipe);
3633
Jesse Barnesb074cec2013-04-25 12:55:02 -07003634 I915_WRITE(PFIT_PGM_RATIOS, pipe_config->gmch_pfit.pgm_ratios);
3635 I915_WRITE(PFIT_CONTROL, pipe_config->gmch_pfit.control);
Daniel Vetter5a80c452013-04-25 22:52:18 +02003636
3637 /* Border color in case we don't scale up to the full screen. Black by
3638 * default, change to something else for debugging. */
3639 I915_WRITE(BCLRPAT(crtc->pipe), 0);
Jesse Barnes2dd24552013-04-25 12:55:01 -07003640}
3641
Jesse Barnes89b667f2013-04-18 14:51:36 -07003642static void valleyview_crtc_enable(struct drm_crtc *crtc)
3643{
3644 struct drm_device *dev = crtc->dev;
3645 struct drm_i915_private *dev_priv = dev->dev_private;
3646 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3647 struct intel_encoder *encoder;
3648 int pipe = intel_crtc->pipe;
3649 int plane = intel_crtc->plane;
3650
3651 WARN_ON(!crtc->enabled);
3652
3653 if (intel_crtc->active)
3654 return;
3655
3656 intel_crtc->active = true;
3657 intel_update_watermarks(dev);
3658
3659 mutex_lock(&dev_priv->dpio_lock);
3660
3661 for_each_encoder_on_crtc(dev, crtc, encoder)
3662 if (encoder->pre_pll_enable)
3663 encoder->pre_pll_enable(encoder);
3664
3665 intel_enable_pll(dev_priv, pipe);
3666
3667 for_each_encoder_on_crtc(dev, crtc, encoder)
3668 if (encoder->pre_enable)
3669 encoder->pre_enable(encoder);
3670
3671 /* VLV wants encoder enabling _before_ the pipe is up. */
3672 for_each_encoder_on_crtc(dev, crtc, encoder)
3673 encoder->enable(encoder);
3674
Jesse Barnes2dd24552013-04-25 12:55:01 -07003675 /* Enable panel fitting for eDP */
3676 i9xx_pfit_enable(intel_crtc);
3677
Jesse Barnes89b667f2013-04-18 14:51:36 -07003678 intel_enable_pipe(dev_priv, pipe, false);
3679 intel_enable_plane(dev_priv, plane, pipe);
3680
3681 intel_crtc_load_lut(crtc);
3682 intel_update_fbc(dev);
3683
3684 /* Give the overlay scaler a chance to enable if it's on this pipe */
3685 intel_crtc_dpms_overlay(intel_crtc, true);
3686 intel_crtc_update_cursor(crtc, true);
3687
3688 mutex_unlock(&dev_priv->dpio_lock);
3689}
3690
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003691static void i9xx_crtc_enable(struct drm_crtc *crtc)
Zhenyu Wang2c072452009-06-05 15:38:42 +08003692{
3693 struct drm_device *dev = crtc->dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08003694 struct drm_i915_private *dev_priv = dev->dev_private;
3695 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02003696 struct intel_encoder *encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08003697 int pipe = intel_crtc->pipe;
Jesse Barnes80824002009-09-10 15:28:06 -07003698 int plane = intel_crtc->plane;
Jesse Barnes79e53942008-11-07 14:24:08 -08003699
Daniel Vetter08a48462012-07-02 11:43:47 +02003700 WARN_ON(!crtc->enabled);
3701
Chris Wilsonf7abfe82010-09-13 14:19:16 +01003702 if (intel_crtc->active)
3703 return;
3704
3705 intel_crtc->active = true;
Chris Wilson6b383a72010-09-13 13:54:26 +01003706 intel_update_watermarks(dev);
3707
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08003708 intel_enable_pll(dev_priv, pipe);
Mika Kuoppala9d6d9f12013-02-08 16:35:38 +02003709
3710 for_each_encoder_on_crtc(dev, crtc, encoder)
3711 if (encoder->pre_enable)
3712 encoder->pre_enable(encoder);
3713
Jesse Barnes2dd24552013-04-25 12:55:01 -07003714 /* Enable panel fitting for LVDS */
3715 i9xx_pfit_enable(intel_crtc);
3716
Jesse Barnes040484a2011-01-03 12:14:26 -08003717 intel_enable_pipe(dev_priv, pipe, false);
Jesse Barnesb24e7172011-01-04 15:09:30 -08003718 intel_enable_plane(dev_priv, plane, pipe);
Egbert Eich61bc95c2013-03-04 09:24:38 -05003719 if (IS_G4X(dev))
3720 g4x_fixup_plane(dev_priv, pipe);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003721
3722 intel_crtc_load_lut(crtc);
Chris Wilsonbed4a672010-09-11 10:47:47 +01003723 intel_update_fbc(dev);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003724
3725 /* Give the overlay scaler a chance to enable if it's on this pipe */
3726 intel_crtc_dpms_overlay(intel_crtc, true);
Chris Wilson6b383a72010-09-13 13:54:26 +01003727 intel_crtc_update_cursor(crtc, true);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02003728
Daniel Vetterfa5c73b2012-07-01 23:24:36 +02003729 for_each_encoder_on_crtc(dev, crtc, encoder)
3730 encoder->enable(encoder);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003731}
3732
Daniel Vetter87476d62013-04-11 16:29:06 +02003733static void i9xx_pfit_disable(struct intel_crtc *crtc)
3734{
3735 struct drm_device *dev = crtc->base.dev;
3736 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter328d8e82013-05-08 10:36:31 +02003737
3738 if (!crtc->config.gmch_pfit.control)
3739 return;
Daniel Vetter87476d62013-04-11 16:29:06 +02003740
3741 assert_pipe_disabled(dev_priv, crtc->pipe);
3742
Daniel Vetter328d8e82013-05-08 10:36:31 +02003743 DRM_DEBUG_DRIVER("disabling pfit, current: 0x%08x\n",
3744 I915_READ(PFIT_CONTROL));
3745 I915_WRITE(PFIT_CONTROL, 0);
Daniel Vetter87476d62013-04-11 16:29:06 +02003746}
3747
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003748static void i9xx_crtc_disable(struct drm_crtc *crtc)
3749{
3750 struct drm_device *dev = crtc->dev;
3751 struct drm_i915_private *dev_priv = dev->dev_private;
3752 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02003753 struct intel_encoder *encoder;
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003754 int pipe = intel_crtc->pipe;
3755 int plane = intel_crtc->plane;
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02003756
Chris Wilsonf7abfe82010-09-13 14:19:16 +01003757 if (!intel_crtc->active)
3758 return;
3759
Daniel Vetterea9d7582012-07-10 10:42:52 +02003760 for_each_encoder_on_crtc(dev, crtc, encoder)
3761 encoder->disable(encoder);
3762
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003763 /* Give the overlay scaler a chance to disable if it's on this pipe */
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01003764 intel_crtc_wait_for_pending_flips(crtc);
3765 drm_vblank_off(dev, pipe);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003766 intel_crtc_dpms_overlay(intel_crtc, false);
Chris Wilson6b383a72010-09-13 13:54:26 +01003767 intel_crtc_update_cursor(crtc, false);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003768
Chris Wilson973d04f2011-07-08 12:22:37 +01003769 if (dev_priv->cfb_plane == plane)
3770 intel_disable_fbc(dev);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003771
Jesse Barnesb24e7172011-01-04 15:09:30 -08003772 intel_disable_plane(dev_priv, plane, pipe);
Jesse Barnesb24e7172011-01-04 15:09:30 -08003773 intel_disable_pipe(dev_priv, pipe);
Mika Kuoppala24a1f162013-02-08 16:35:37 +02003774
Daniel Vetter87476d62013-04-11 16:29:06 +02003775 i9xx_pfit_disable(intel_crtc);
Mika Kuoppala24a1f162013-02-08 16:35:37 +02003776
Jesse Barnes89b667f2013-04-18 14:51:36 -07003777 for_each_encoder_on_crtc(dev, crtc, encoder)
3778 if (encoder->post_disable)
3779 encoder->post_disable(encoder);
3780
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08003781 intel_disable_pll(dev_priv, pipe);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003782
Chris Wilsonf7abfe82010-09-13 14:19:16 +01003783 intel_crtc->active = false;
Chris Wilson6b383a72010-09-13 13:54:26 +01003784 intel_update_fbc(dev);
3785 intel_update_watermarks(dev);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07003786}
3787
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003788static void i9xx_crtc_off(struct drm_crtc *crtc)
3789{
3790}
3791
Daniel Vetter976f8a22012-07-08 22:34:21 +02003792static void intel_crtc_update_sarea(struct drm_crtc *crtc,
3793 bool enabled)
Zhenyu Wang2c072452009-06-05 15:38:42 +08003794{
3795 struct drm_device *dev = crtc->dev;
3796 struct drm_i915_master_private *master_priv;
3797 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3798 int pipe = intel_crtc->pipe;
Jesse Barnes79e53942008-11-07 14:24:08 -08003799
3800 if (!dev->primary->master)
3801 return;
3802
3803 master_priv = dev->primary->master->driver_priv;
3804 if (!master_priv->sarea_priv)
3805 return;
3806
Jesse Barnes79e53942008-11-07 14:24:08 -08003807 switch (pipe) {
3808 case 0:
3809 master_priv->sarea_priv->pipeA_w = enabled ? crtc->mode.hdisplay : 0;
3810 master_priv->sarea_priv->pipeA_h = enabled ? crtc->mode.vdisplay : 0;
3811 break;
3812 case 1:
3813 master_priv->sarea_priv->pipeB_w = enabled ? crtc->mode.hdisplay : 0;
3814 master_priv->sarea_priv->pipeB_h = enabled ? crtc->mode.vdisplay : 0;
3815 break;
3816 default:
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08003817 DRM_ERROR("Can't update pipe %c in SAREA\n", pipe_name(pipe));
Jesse Barnes79e53942008-11-07 14:24:08 -08003818 break;
3819 }
Jesse Barnes79e53942008-11-07 14:24:08 -08003820}
3821
Daniel Vetter976f8a22012-07-08 22:34:21 +02003822/**
3823 * Sets the power management mode of the pipe and plane.
3824 */
3825void intel_crtc_update_dpms(struct drm_crtc *crtc)
Chris Wilsoncdd59982010-09-08 16:30:16 +01003826{
Chris Wilsoncdd59982010-09-08 16:30:16 +01003827 struct drm_device *dev = crtc->dev;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003828 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter976f8a22012-07-08 22:34:21 +02003829 struct intel_encoder *intel_encoder;
3830 bool enable = false;
Chris Wilsoncdd59982010-09-08 16:30:16 +01003831
Daniel Vetter976f8a22012-07-08 22:34:21 +02003832 for_each_encoder_on_crtc(dev, crtc, intel_encoder)
3833 enable |= intel_encoder->connectors_active;
3834
3835 if (enable)
3836 dev_priv->display.crtc_enable(crtc);
3837 else
3838 dev_priv->display.crtc_disable(crtc);
3839
3840 intel_crtc_update_sarea(crtc, enable);
3841}
3842
Daniel Vetter976f8a22012-07-08 22:34:21 +02003843static void intel_crtc_disable(struct drm_crtc *crtc)
3844{
3845 struct drm_device *dev = crtc->dev;
3846 struct drm_connector *connector;
3847 struct drm_i915_private *dev_priv = dev->dev_private;
Wang Xingchao7b9f35a2013-01-22 23:25:25 +08003848 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter976f8a22012-07-08 22:34:21 +02003849
3850 /* crtc should still be enabled when we disable it. */
3851 WARN_ON(!crtc->enabled);
3852
3853 dev_priv->display.crtc_disable(crtc);
Paulo Zanonic77bf562013-05-03 12:15:40 -03003854 intel_crtc->eld_vld = false;
Daniel Vetter976f8a22012-07-08 22:34:21 +02003855 intel_crtc_update_sarea(crtc, false);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003856 dev_priv->display.off(crtc);
3857
Chris Wilson931872f2012-01-16 23:01:13 +00003858 assert_plane_disabled(dev->dev_private, to_intel_crtc(crtc)->plane);
3859 assert_pipe_disabled(dev->dev_private, to_intel_crtc(crtc)->pipe);
Chris Wilsoncdd59982010-09-08 16:30:16 +01003860
3861 if (crtc->fb) {
3862 mutex_lock(&dev->struct_mutex);
Chris Wilson1690e1e2011-12-14 13:57:08 +01003863 intel_unpin_fb_obj(to_intel_framebuffer(crtc->fb)->obj);
Chris Wilsoncdd59982010-09-08 16:30:16 +01003864 mutex_unlock(&dev->struct_mutex);
Daniel Vetter976f8a22012-07-08 22:34:21 +02003865 crtc->fb = NULL;
3866 }
3867
3868 /* Update computed state. */
3869 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
3870 if (!connector->encoder || !connector->encoder->crtc)
3871 continue;
3872
3873 if (connector->encoder->crtc != crtc)
3874 continue;
3875
3876 connector->dpms = DRM_MODE_DPMS_OFF;
3877 to_intel_encoder(connector->encoder)->connectors_active = false;
Chris Wilsoncdd59982010-09-08 16:30:16 +01003878 }
3879}
3880
Daniel Vettera261b242012-07-26 19:21:47 +02003881void intel_modeset_disable(struct drm_device *dev)
Jesse Barnes79e53942008-11-07 14:24:08 -08003882{
Daniel Vettera261b242012-07-26 19:21:47 +02003883 struct drm_crtc *crtc;
3884
3885 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
3886 if (crtc->enabled)
3887 intel_crtc_disable(crtc);
3888 }
Jesse Barnes79e53942008-11-07 14:24:08 -08003889}
3890
Chris Wilsonea5b2132010-08-04 13:50:23 +01003891void intel_encoder_destroy(struct drm_encoder *encoder)
3892{
Chris Wilson4ef69c72010-09-09 15:14:28 +01003893 struct intel_encoder *intel_encoder = to_intel_encoder(encoder);
Chris Wilsonea5b2132010-08-04 13:50:23 +01003894
Chris Wilsonea5b2132010-08-04 13:50:23 +01003895 drm_encoder_cleanup(encoder);
3896 kfree(intel_encoder);
3897}
3898
Daniel Vetter5ab432e2012-06-30 08:59:56 +02003899/* Simple dpms helper for encodres with just one connector, no cloning and only
3900 * one kind of off state. It clamps all !ON modes to fully OFF and changes the
3901 * state of the entire output pipe. */
3902void intel_encoder_dpms(struct intel_encoder *encoder, int mode)
3903{
3904 if (mode == DRM_MODE_DPMS_ON) {
3905 encoder->connectors_active = true;
3906
Daniel Vetterb2cabb02012-07-01 22:42:24 +02003907 intel_crtc_update_dpms(encoder->base.crtc);
Daniel Vetter5ab432e2012-06-30 08:59:56 +02003908 } else {
3909 encoder->connectors_active = false;
3910
Daniel Vetterb2cabb02012-07-01 22:42:24 +02003911 intel_crtc_update_dpms(encoder->base.crtc);
Daniel Vetter5ab432e2012-06-30 08:59:56 +02003912 }
3913}
3914
Daniel Vetter0a91ca22012-07-02 21:54:27 +02003915/* Cross check the actual hw state with our own modeset state tracking (and it's
3916 * internal consistency). */
Daniel Vetterb9805142012-08-31 17:37:33 +02003917static void intel_connector_check_state(struct intel_connector *connector)
Daniel Vetter0a91ca22012-07-02 21:54:27 +02003918{
3919 if (connector->get_hw_state(connector)) {
3920 struct intel_encoder *encoder = connector->encoder;
3921 struct drm_crtc *crtc;
3922 bool encoder_enabled;
3923 enum pipe pipe;
3924
3925 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
3926 connector->base.base.id,
3927 drm_get_connector_name(&connector->base));
3928
3929 WARN(connector->base.dpms == DRM_MODE_DPMS_OFF,
3930 "wrong connector dpms state\n");
3931 WARN(connector->base.encoder != &encoder->base,
3932 "active connector not linked to encoder\n");
3933 WARN(!encoder->connectors_active,
3934 "encoder->connectors_active not set\n");
3935
3936 encoder_enabled = encoder->get_hw_state(encoder, &pipe);
3937 WARN(!encoder_enabled, "encoder not enabled\n");
3938 if (WARN_ON(!encoder->base.crtc))
3939 return;
3940
3941 crtc = encoder->base.crtc;
3942
3943 WARN(!crtc->enabled, "crtc not enabled\n");
3944 WARN(!to_intel_crtc(crtc)->active, "crtc not active\n");
3945 WARN(pipe != to_intel_crtc(crtc)->pipe,
3946 "encoder active on the wrong pipe\n");
3947 }
3948}
3949
Daniel Vetter5ab432e2012-06-30 08:59:56 +02003950/* Even simpler default implementation, if there's really no special case to
3951 * consider. */
3952void intel_connector_dpms(struct drm_connector *connector, int mode)
3953{
3954 struct intel_encoder *encoder = intel_attached_encoder(connector);
3955
3956 /* All the simple cases only support two dpms states. */
3957 if (mode != DRM_MODE_DPMS_ON)
3958 mode = DRM_MODE_DPMS_OFF;
3959
3960 if (mode == connector->dpms)
3961 return;
3962
3963 connector->dpms = mode;
3964
3965 /* Only need to change hw state when actually enabled */
3966 if (encoder->base.crtc)
3967 intel_encoder_dpms(encoder, mode);
3968 else
Daniel Vetter8af6cf82012-07-10 09:50:11 +02003969 WARN_ON(encoder->connectors_active != false);
Daniel Vetter0a91ca22012-07-02 21:54:27 +02003970
Daniel Vetterb9805142012-08-31 17:37:33 +02003971 intel_modeset_check_state(connector->dev);
Daniel Vetter5ab432e2012-06-30 08:59:56 +02003972}
3973
Daniel Vetterf0947c32012-07-02 13:10:34 +02003974/* Simple connector->get_hw_state implementation for encoders that support only
3975 * one connector and no cloning and hence the encoder state determines the state
3976 * of the connector. */
3977bool intel_connector_get_hw_state(struct intel_connector *connector)
3978{
Daniel Vetter24929352012-07-02 20:28:59 +02003979 enum pipe pipe = 0;
Daniel Vetterf0947c32012-07-02 13:10:34 +02003980 struct intel_encoder *encoder = connector->encoder;
3981
3982 return encoder->get_hw_state(encoder, &pipe);
3983}
3984
Daniel Vetter1857e1d2013-04-29 19:34:16 +02003985static bool ironlake_check_fdi_lanes(struct drm_device *dev, enum pipe pipe,
3986 struct intel_crtc_config *pipe_config)
3987{
3988 struct drm_i915_private *dev_priv = dev->dev_private;
3989 struct intel_crtc *pipe_B_crtc =
3990 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[PIPE_B]);
3991
3992 DRM_DEBUG_KMS("checking fdi config on pipe %c, lanes %i\n",
3993 pipe_name(pipe), pipe_config->fdi_lanes);
3994 if (pipe_config->fdi_lanes > 4) {
3995 DRM_DEBUG_KMS("invalid fdi lane config on pipe %c: %i lanes\n",
3996 pipe_name(pipe), pipe_config->fdi_lanes);
3997 return false;
3998 }
3999
4000 if (IS_HASWELL(dev)) {
4001 if (pipe_config->fdi_lanes > 2) {
4002 DRM_DEBUG_KMS("only 2 lanes on haswell, required: %i lanes\n",
4003 pipe_config->fdi_lanes);
4004 return false;
4005 } else {
4006 return true;
4007 }
4008 }
4009
4010 if (INTEL_INFO(dev)->num_pipes == 2)
4011 return true;
4012
4013 /* Ivybridge 3 pipe is really complicated */
4014 switch (pipe) {
4015 case PIPE_A:
4016 return true;
4017 case PIPE_B:
4018 if (dev_priv->pipe_to_crtc_mapping[PIPE_C]->enabled &&
4019 pipe_config->fdi_lanes > 2) {
4020 DRM_DEBUG_KMS("invalid shared fdi lane config on pipe %c: %i lanes\n",
4021 pipe_name(pipe), pipe_config->fdi_lanes);
4022 return false;
4023 }
4024 return true;
4025 case PIPE_C:
Daniel Vetter1e833f42013-02-19 22:31:57 +01004026 if (!pipe_has_enabled_pch(pipe_B_crtc) ||
Daniel Vetter1857e1d2013-04-29 19:34:16 +02004027 pipe_B_crtc->config.fdi_lanes <= 2) {
4028 if (pipe_config->fdi_lanes > 2) {
4029 DRM_DEBUG_KMS("invalid shared fdi lane config on pipe %c: %i lanes\n",
4030 pipe_name(pipe), pipe_config->fdi_lanes);
4031 return false;
4032 }
4033 } else {
4034 DRM_DEBUG_KMS("fdi link B uses too many lanes to enable link C\n");
4035 return false;
4036 }
4037 return true;
4038 default:
4039 BUG();
4040 }
4041}
4042
Daniel Vettere29c22c2013-02-21 00:00:16 +01004043#define RETRY 1
4044static int ironlake_fdi_compute_config(struct intel_crtc *intel_crtc,
4045 struct intel_crtc_config *pipe_config)
Daniel Vetter877d48d2013-04-19 11:24:43 +02004046{
Daniel Vetter1857e1d2013-04-29 19:34:16 +02004047 struct drm_device *dev = intel_crtc->base.dev;
Daniel Vetter877d48d2013-04-19 11:24:43 +02004048 struct drm_display_mode *adjusted_mode = &pipe_config->adjusted_mode;
4049 int target_clock, lane, link_bw;
Daniel Vettere29c22c2013-02-21 00:00:16 +01004050 bool setup_ok, needs_recompute = false;
Daniel Vetter877d48d2013-04-19 11:24:43 +02004051
Daniel Vettere29c22c2013-02-21 00:00:16 +01004052retry:
Daniel Vetter877d48d2013-04-19 11:24:43 +02004053 /* FDI is a binary signal running at ~2.7GHz, encoding
4054 * each output octet as 10 bits. The actual frequency
4055 * is stored as a divider into a 100MHz clock, and the
4056 * mode pixel clock is stored in units of 1KHz.
4057 * Hence the bw of each lane in terms of the mode signal
4058 * is:
4059 */
4060 link_bw = intel_fdi_link_freq(dev) * MHz(100)/KHz(1)/10;
4061
4062 if (pipe_config->pixel_target_clock)
4063 target_clock = pipe_config->pixel_target_clock;
4064 else
4065 target_clock = adjusted_mode->clock;
4066
4067 lane = ironlake_get_lanes_required(target_clock, link_bw,
4068 pipe_config->pipe_bpp);
4069
4070 pipe_config->fdi_lanes = lane;
4071
4072 if (pipe_config->pixel_multiplier > 1)
4073 link_bw *= pipe_config->pixel_multiplier;
4074 intel_link_compute_m_n(pipe_config->pipe_bpp, lane, target_clock,
4075 link_bw, &pipe_config->fdi_m_n);
Daniel Vetter1857e1d2013-04-29 19:34:16 +02004076
Daniel Vettere29c22c2013-02-21 00:00:16 +01004077 setup_ok = ironlake_check_fdi_lanes(intel_crtc->base.dev,
4078 intel_crtc->pipe, pipe_config);
4079 if (!setup_ok && pipe_config->pipe_bpp > 6*3) {
4080 pipe_config->pipe_bpp -= 2*3;
4081 DRM_DEBUG_KMS("fdi link bw constraint, reducing pipe bpp to %i\n",
4082 pipe_config->pipe_bpp);
4083 needs_recompute = true;
4084 pipe_config->bw_constrained = true;
4085
4086 goto retry;
4087 }
4088
4089 if (needs_recompute)
4090 return RETRY;
4091
4092 return setup_ok ? 0 : -EINVAL;
Daniel Vetter877d48d2013-04-19 11:24:43 +02004093}
4094
Paulo Zanoni42db64e2013-05-31 16:33:22 -03004095static void hsw_compute_ips_config(struct intel_crtc *crtc,
4096 struct intel_crtc_config *pipe_config)
4097{
Paulo Zanoni3c4ca582013-05-31 16:33:23 -03004098 pipe_config->ips_enabled = i915_enable_ips &&
4099 hsw_crtc_supports_ips(crtc) &&
Paulo Zanoni42db64e2013-05-31 16:33:22 -03004100 pipe_config->pipe_bpp == 24;
4101}
4102
Daniel Vettere29c22c2013-02-21 00:00:16 +01004103static int intel_crtc_compute_config(struct drm_crtc *crtc,
4104 struct intel_crtc_config *pipe_config)
Jesse Barnes79e53942008-11-07 14:24:08 -08004105{
Zhenyu Wang2c072452009-06-05 15:38:42 +08004106 struct drm_device *dev = crtc->dev;
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01004107 struct drm_display_mode *adjusted_mode = &pipe_config->adjusted_mode;
Paulo Zanoni42db64e2013-05-31 16:33:22 -03004108 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Chris Wilson89749352010-09-12 18:25:19 +01004109
Eric Anholtbad720f2009-10-22 16:11:14 -07004110 if (HAS_PCH_SPLIT(dev)) {
Zhenyu Wang2c072452009-06-05 15:38:42 +08004111 /* FDI link clock is fixed at 2.7G */
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01004112 if (pipe_config->requested_mode.clock * 3
4113 > IRONLAKE_FDI_FREQ * 4)
Daniel Vettere29c22c2013-02-21 00:00:16 +01004114 return -EINVAL;
Zhenyu Wang2c072452009-06-05 15:38:42 +08004115 }
Chris Wilson89749352010-09-12 18:25:19 +01004116
Daniel Vetterf9bef082012-04-15 19:53:19 +02004117 /* All interlaced capable intel hw wants timings in frames. Note though
4118 * that intel_lvds_mode_fixup does some funny tricks with the crtc
4119 * timings, so we need to be careful not to clobber these.*/
Daniel Vetter7ae89232013-03-27 00:44:52 +01004120 if (!pipe_config->timings_set)
Daniel Vetterf9bef082012-04-15 19:53:19 +02004121 drm_mode_set_crtcinfo(adjusted_mode, 0);
Chris Wilson89749352010-09-12 18:25:19 +01004122
Damien Lespiau8693a822013-05-03 18:48:11 +01004123 /* Cantiga+ cannot handle modes with a hsync front porch of 0.
4124 * WaPruneModeWithIncorrectHsyncOffset:ctg,elk,ilk,snb,ivb,vlv,hsw.
Chris Wilson44f46b422012-06-21 13:19:59 +03004125 */
4126 if ((INTEL_INFO(dev)->gen > 4 || IS_G4X(dev)) &&
4127 adjusted_mode->hsync_start == adjusted_mode->hdisplay)
Daniel Vettere29c22c2013-02-21 00:00:16 +01004128 return -EINVAL;
Chris Wilson44f46b422012-06-21 13:19:59 +03004129
Daniel Vetterbd080ee2013-04-17 20:01:39 +02004130 if ((IS_G4X(dev) || IS_VALLEYVIEW(dev)) && pipe_config->pipe_bpp > 10*3) {
Daniel Vetter5d2d38d2013-03-27 00:45:01 +01004131 pipe_config->pipe_bpp = 10*3; /* 12bpc is gen5+ */
Daniel Vetterbd080ee2013-04-17 20:01:39 +02004132 } else if (INTEL_INFO(dev)->gen <= 4 && pipe_config->pipe_bpp > 8*3) {
Daniel Vetter5d2d38d2013-03-27 00:45:01 +01004133 /* only a 8bpc pipe, with 6bpc dither through the panel fitter
4134 * for lvds. */
4135 pipe_config->pipe_bpp = 8*3;
4136 }
4137
Paulo Zanoni42db64e2013-05-31 16:33:22 -03004138 if (IS_HASWELL(dev))
4139 hsw_compute_ips_config(intel_crtc, pipe_config);
4140
Daniel Vetter877d48d2013-04-19 11:24:43 +02004141 if (pipe_config->has_pch_encoder)
Paulo Zanoni42db64e2013-05-31 16:33:22 -03004142 return ironlake_fdi_compute_config(intel_crtc, pipe_config);
Daniel Vetter877d48d2013-04-19 11:24:43 +02004143
Daniel Vettere29c22c2013-02-21 00:00:16 +01004144 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08004145}
4146
Jesse Barnes25eb05fc2012-03-28 13:39:23 -07004147static int valleyview_get_display_clock_speed(struct drm_device *dev)
4148{
4149 return 400000; /* FIXME */
4150}
4151
Jesse Barnese70236a2009-09-21 10:42:27 -07004152static int i945_get_display_clock_speed(struct drm_device *dev)
Jesse Barnes79e53942008-11-07 14:24:08 -08004153{
Jesse Barnese70236a2009-09-21 10:42:27 -07004154 return 400000;
4155}
Jesse Barnes79e53942008-11-07 14:24:08 -08004156
Jesse Barnese70236a2009-09-21 10:42:27 -07004157static int i915_get_display_clock_speed(struct drm_device *dev)
4158{
4159 return 333000;
4160}
Jesse Barnes79e53942008-11-07 14:24:08 -08004161
Jesse Barnese70236a2009-09-21 10:42:27 -07004162static int i9xx_misc_get_display_clock_speed(struct drm_device *dev)
4163{
4164 return 200000;
4165}
Jesse Barnes79e53942008-11-07 14:24:08 -08004166
Jesse Barnese70236a2009-09-21 10:42:27 -07004167static int i915gm_get_display_clock_speed(struct drm_device *dev)
4168{
4169 u16 gcfgc = 0;
4170
4171 pci_read_config_word(dev->pdev, GCFGC, &gcfgc);
4172
4173 if (gcfgc & GC_LOW_FREQUENCY_ENABLE)
Jesse Barnes79e53942008-11-07 14:24:08 -08004174 return 133000;
Jesse Barnese70236a2009-09-21 10:42:27 -07004175 else {
4176 switch (gcfgc & GC_DISPLAY_CLOCK_MASK) {
4177 case GC_DISPLAY_CLOCK_333_MHZ:
4178 return 333000;
4179 default:
4180 case GC_DISPLAY_CLOCK_190_200_MHZ:
4181 return 190000;
4182 }
4183 }
4184}
Jesse Barnes79e53942008-11-07 14:24:08 -08004185
Jesse Barnese70236a2009-09-21 10:42:27 -07004186static int i865_get_display_clock_speed(struct drm_device *dev)
4187{
4188 return 266000;
4189}
4190
4191static int i855_get_display_clock_speed(struct drm_device *dev)
4192{
4193 u16 hpllcc = 0;
4194 /* Assume that the hardware is in the high speed state. This
4195 * should be the default.
4196 */
4197 switch (hpllcc & GC_CLOCK_CONTROL_MASK) {
4198 case GC_CLOCK_133_200:
4199 case GC_CLOCK_100_200:
4200 return 200000;
4201 case GC_CLOCK_166_250:
4202 return 250000;
4203 case GC_CLOCK_100_133:
4204 return 133000;
4205 }
4206
4207 /* Shouldn't happen */
4208 return 0;
4209}
4210
4211static int i830_get_display_clock_speed(struct drm_device *dev)
4212{
4213 return 133000;
Jesse Barnes79e53942008-11-07 14:24:08 -08004214}
4215
Zhenyu Wang2c072452009-06-05 15:38:42 +08004216static void
Ville Syrjäläa65851a2013-04-23 15:03:34 +03004217intel_reduce_m_n_ratio(uint32_t *num, uint32_t *den)
Zhenyu Wang2c072452009-06-05 15:38:42 +08004218{
Ville Syrjäläa65851a2013-04-23 15:03:34 +03004219 while (*num > DATA_LINK_M_N_MASK ||
4220 *den > DATA_LINK_M_N_MASK) {
Zhenyu Wang2c072452009-06-05 15:38:42 +08004221 *num >>= 1;
4222 *den >>= 1;
4223 }
4224}
4225
Ville Syrjäläa65851a2013-04-23 15:03:34 +03004226static void compute_m_n(unsigned int m, unsigned int n,
4227 uint32_t *ret_m, uint32_t *ret_n)
4228{
4229 *ret_n = min_t(unsigned int, roundup_pow_of_two(n), DATA_LINK_N_MAX);
4230 *ret_m = div_u64((uint64_t) m * *ret_n, n);
4231 intel_reduce_m_n_ratio(ret_m, ret_n);
4232}
4233
Daniel Vettere69d0bc2012-11-29 15:59:36 +01004234void
4235intel_link_compute_m_n(int bits_per_pixel, int nlanes,
4236 int pixel_clock, int link_clock,
4237 struct intel_link_m_n *m_n)
Zhenyu Wang2c072452009-06-05 15:38:42 +08004238{
Daniel Vettere69d0bc2012-11-29 15:59:36 +01004239 m_n->tu = 64;
Ville Syrjäläa65851a2013-04-23 15:03:34 +03004240
4241 compute_m_n(bits_per_pixel * pixel_clock,
4242 link_clock * nlanes * 8,
4243 &m_n->gmch_m, &m_n->gmch_n);
4244
4245 compute_m_n(pixel_clock, link_clock,
4246 &m_n->link_m, &m_n->link_n);
Zhenyu Wang2c072452009-06-05 15:38:42 +08004247}
4248
Chris Wilsona7615032011-01-12 17:04:08 +00004249static inline bool intel_panel_use_ssc(struct drm_i915_private *dev_priv)
4250{
Keith Packard72bbe582011-09-26 16:09:45 -07004251 if (i915_panel_use_ssc >= 0)
4252 return i915_panel_use_ssc != 0;
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03004253 return dev_priv->vbt.lvds_use_ssc
Keith Packard435793d2011-07-12 14:56:22 -07004254 && !(dev_priv->quirks & QUIRK_LVDS_SSC_DISABLE);
Chris Wilsona7615032011-01-12 17:04:08 +00004255}
4256
Jesse Barnesa0c4da242012-06-15 11:55:13 -07004257static int vlv_get_refclk(struct drm_crtc *crtc)
4258{
4259 struct drm_device *dev = crtc->dev;
4260 struct drm_i915_private *dev_priv = dev->dev_private;
4261 int refclk = 27000; /* for DP & HDMI */
4262
4263 return 100000; /* only one validated so far */
4264
4265 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_ANALOG)) {
4266 refclk = 96000;
4267 } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
4268 if (intel_panel_use_ssc(dev_priv))
4269 refclk = 100000;
4270 else
4271 refclk = 96000;
4272 } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP)) {
4273 refclk = 100000;
4274 }
4275
4276 return refclk;
4277}
4278
Jesse Barnesc65d77d2011-12-15 12:30:36 -08004279static int i9xx_get_refclk(struct drm_crtc *crtc, int num_connectors)
4280{
4281 struct drm_device *dev = crtc->dev;
4282 struct drm_i915_private *dev_priv = dev->dev_private;
4283 int refclk;
4284
Jesse Barnesa0c4da242012-06-15 11:55:13 -07004285 if (IS_VALLEYVIEW(dev)) {
4286 refclk = vlv_get_refclk(crtc);
4287 } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) &&
Jesse Barnesc65d77d2011-12-15 12:30:36 -08004288 intel_panel_use_ssc(dev_priv) && num_connectors < 2) {
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03004289 refclk = dev_priv->vbt.lvds_ssc_freq * 1000;
Jesse Barnesc65d77d2011-12-15 12:30:36 -08004290 DRM_DEBUG_KMS("using SSC reference clock of %d MHz\n",
4291 refclk / 1000);
4292 } else if (!IS_GEN2(dev)) {
4293 refclk = 96000;
4294 } else {
4295 refclk = 48000;
4296 }
4297
4298 return refclk;
4299}
4300
Daniel Vetter7429e9d2013-04-20 17:19:46 +02004301static uint32_t pnv_dpll_compute_fp(struct dpll *dpll)
4302{
4303 return (1 << dpll->n) << 16 | dpll->m1 << 8 | dpll->m2;
4304}
4305
4306static uint32_t i9xx_dpll_compute_fp(struct dpll *dpll)
4307{
4308 return dpll->n << 16 | dpll->m1 << 8 | dpll->m2;
4309}
4310
Daniel Vetterf47709a2013-03-28 10:42:02 +01004311static void i9xx_update_pll_dividers(struct intel_crtc *crtc,
Jesse Barnesa7516a02011-12-15 12:30:37 -08004312 intel_clock_t *reduced_clock)
4313{
Daniel Vetterf47709a2013-03-28 10:42:02 +01004314 struct drm_device *dev = crtc->base.dev;
Jesse Barnesa7516a02011-12-15 12:30:37 -08004315 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterf47709a2013-03-28 10:42:02 +01004316 int pipe = crtc->pipe;
Jesse Barnesa7516a02011-12-15 12:30:37 -08004317 u32 fp, fp2 = 0;
4318
4319 if (IS_PINEVIEW(dev)) {
Daniel Vetter7429e9d2013-04-20 17:19:46 +02004320 fp = pnv_dpll_compute_fp(&crtc->config.dpll);
Jesse Barnesa7516a02011-12-15 12:30:37 -08004321 if (reduced_clock)
Daniel Vetter7429e9d2013-04-20 17:19:46 +02004322 fp2 = pnv_dpll_compute_fp(reduced_clock);
Jesse Barnesa7516a02011-12-15 12:30:37 -08004323 } else {
Daniel Vetter7429e9d2013-04-20 17:19:46 +02004324 fp = i9xx_dpll_compute_fp(&crtc->config.dpll);
Jesse Barnesa7516a02011-12-15 12:30:37 -08004325 if (reduced_clock)
Daniel Vetter7429e9d2013-04-20 17:19:46 +02004326 fp2 = i9xx_dpll_compute_fp(reduced_clock);
Jesse Barnesa7516a02011-12-15 12:30:37 -08004327 }
4328
4329 I915_WRITE(FP0(pipe), fp);
4330
Daniel Vetterf47709a2013-03-28 10:42:02 +01004331 crtc->lowfreq_avail = false;
4332 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_LVDS) &&
Jesse Barnesa7516a02011-12-15 12:30:37 -08004333 reduced_clock && i915_powersave) {
4334 I915_WRITE(FP1(pipe), fp2);
Daniel Vetterf47709a2013-03-28 10:42:02 +01004335 crtc->lowfreq_avail = true;
Jesse Barnesa7516a02011-12-15 12:30:37 -08004336 } else {
4337 I915_WRITE(FP1(pipe), fp);
4338 }
4339}
4340
Jesse Barnes89b667f2013-04-18 14:51:36 -07004341static void vlv_pllb_recal_opamp(struct drm_i915_private *dev_priv)
4342{
4343 u32 reg_val;
4344
4345 /*
4346 * PLLB opamp always calibrates to max value of 0x3f, force enable it
4347 * and set it to a reasonable value instead.
4348 */
Jani Nikulaae992582013-05-22 15:36:19 +03004349 reg_val = vlv_dpio_read(dev_priv, DPIO_IREF(1));
Jesse Barnes89b667f2013-04-18 14:51:36 -07004350 reg_val &= 0xffffff00;
4351 reg_val |= 0x00000030;
Jani Nikulaae992582013-05-22 15:36:19 +03004352 vlv_dpio_write(dev_priv, DPIO_IREF(1), reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07004353
Jani Nikulaae992582013-05-22 15:36:19 +03004354 reg_val = vlv_dpio_read(dev_priv, DPIO_CALIBRATION);
Jesse Barnes89b667f2013-04-18 14:51:36 -07004355 reg_val &= 0x8cffffff;
4356 reg_val = 0x8c000000;
Jani Nikulaae992582013-05-22 15:36:19 +03004357 vlv_dpio_write(dev_priv, DPIO_CALIBRATION, reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07004358
Jani Nikulaae992582013-05-22 15:36:19 +03004359 reg_val = vlv_dpio_read(dev_priv, DPIO_IREF(1));
Jesse Barnes89b667f2013-04-18 14:51:36 -07004360 reg_val &= 0xffffff00;
Jani Nikulaae992582013-05-22 15:36:19 +03004361 vlv_dpio_write(dev_priv, DPIO_IREF(1), reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07004362
Jani Nikulaae992582013-05-22 15:36:19 +03004363 reg_val = vlv_dpio_read(dev_priv, DPIO_CALIBRATION);
Jesse Barnes89b667f2013-04-18 14:51:36 -07004364 reg_val &= 0x00ffffff;
4365 reg_val |= 0xb0000000;
Jani Nikulaae992582013-05-22 15:36:19 +03004366 vlv_dpio_write(dev_priv, DPIO_CALIBRATION, reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07004367}
4368
Daniel Vetterb5518422013-05-03 11:49:48 +02004369static void intel_pch_transcoder_set_m_n(struct intel_crtc *crtc,
4370 struct intel_link_m_n *m_n)
4371{
4372 struct drm_device *dev = crtc->base.dev;
4373 struct drm_i915_private *dev_priv = dev->dev_private;
4374 int pipe = crtc->pipe;
4375
Daniel Vettere3b95f12013-05-03 11:49:49 +02004376 I915_WRITE(PCH_TRANS_DATA_M1(pipe), TU_SIZE(m_n->tu) | m_n->gmch_m);
4377 I915_WRITE(PCH_TRANS_DATA_N1(pipe), m_n->gmch_n);
4378 I915_WRITE(PCH_TRANS_LINK_M1(pipe), m_n->link_m);
4379 I915_WRITE(PCH_TRANS_LINK_N1(pipe), m_n->link_n);
Daniel Vetterb5518422013-05-03 11:49:48 +02004380}
4381
4382static void intel_cpu_transcoder_set_m_n(struct intel_crtc *crtc,
4383 struct intel_link_m_n *m_n)
4384{
4385 struct drm_device *dev = crtc->base.dev;
4386 struct drm_i915_private *dev_priv = dev->dev_private;
4387 int pipe = crtc->pipe;
4388 enum transcoder transcoder = crtc->config.cpu_transcoder;
4389
4390 if (INTEL_INFO(dev)->gen >= 5) {
4391 I915_WRITE(PIPE_DATA_M1(transcoder), TU_SIZE(m_n->tu) | m_n->gmch_m);
4392 I915_WRITE(PIPE_DATA_N1(transcoder), m_n->gmch_n);
4393 I915_WRITE(PIPE_LINK_M1(transcoder), m_n->link_m);
4394 I915_WRITE(PIPE_LINK_N1(transcoder), m_n->link_n);
4395 } else {
Daniel Vettere3b95f12013-05-03 11:49:49 +02004396 I915_WRITE(PIPE_DATA_M_G4X(pipe), TU_SIZE(m_n->tu) | m_n->gmch_m);
4397 I915_WRITE(PIPE_DATA_N_G4X(pipe), m_n->gmch_n);
4398 I915_WRITE(PIPE_LINK_M_G4X(pipe), m_n->link_m);
4399 I915_WRITE(PIPE_LINK_N_G4X(pipe), m_n->link_n);
Daniel Vetterb5518422013-05-03 11:49:48 +02004400 }
4401}
4402
Daniel Vetter03afc4a2013-04-02 23:42:31 +02004403static void intel_dp_set_m_n(struct intel_crtc *crtc)
4404{
4405 if (crtc->config.has_pch_encoder)
4406 intel_pch_transcoder_set_m_n(crtc, &crtc->config.dp_m_n);
4407 else
4408 intel_cpu_transcoder_set_m_n(crtc, &crtc->config.dp_m_n);
4409}
4410
Daniel Vetterf47709a2013-03-28 10:42:02 +01004411static void vlv_update_pll(struct intel_crtc *crtc)
Jesse Barnesa0c4da242012-06-15 11:55:13 -07004412{
Daniel Vetterf47709a2013-03-28 10:42:02 +01004413 struct drm_device *dev = crtc->base.dev;
Jesse Barnesa0c4da242012-06-15 11:55:13 -07004414 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes89b667f2013-04-18 14:51:36 -07004415 struct drm_display_mode *adjusted_mode =
4416 &crtc->config.adjusted_mode;
4417 struct intel_encoder *encoder;
Daniel Vetterf47709a2013-03-28 10:42:02 +01004418 int pipe = crtc->pipe;
Jesse Barnes89b667f2013-04-18 14:51:36 -07004419 u32 dpll, mdiv;
Jesse Barnesa0c4da242012-06-15 11:55:13 -07004420 u32 bestn, bestm1, bestm2, bestp1, bestp2;
Jesse Barnes89b667f2013-04-18 14:51:36 -07004421 bool is_hdmi;
Daniel Vetter198a037f2013-04-19 11:14:37 +02004422 u32 coreclk, reg_val, dpll_md;
Jesse Barnesa0c4da242012-06-15 11:55:13 -07004423
Daniel Vetter09153002012-12-12 14:06:44 +01004424 mutex_lock(&dev_priv->dpio_lock);
4425
Jesse Barnes89b667f2013-04-18 14:51:36 -07004426 is_hdmi = intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_HDMI);
Jesse Barnesa0c4da242012-06-15 11:55:13 -07004427
Daniel Vetterf47709a2013-03-28 10:42:02 +01004428 bestn = crtc->config.dpll.n;
4429 bestm1 = crtc->config.dpll.m1;
4430 bestm2 = crtc->config.dpll.m2;
4431 bestp1 = crtc->config.dpll.p1;
4432 bestp2 = crtc->config.dpll.p2;
Jesse Barnesa0c4da242012-06-15 11:55:13 -07004433
Jesse Barnes89b667f2013-04-18 14:51:36 -07004434 /* See eDP HDMI DPIO driver vbios notes doc */
4435
4436 /* PLL B needs special handling */
4437 if (pipe)
4438 vlv_pllb_recal_opamp(dev_priv);
4439
4440 /* Set up Tx target for periodic Rcomp update */
Jani Nikulaae992582013-05-22 15:36:19 +03004441 vlv_dpio_write(dev_priv, DPIO_IREF_BCAST, 0x0100000f);
Jesse Barnes89b667f2013-04-18 14:51:36 -07004442
4443 /* Disable target IRef on PLL */
Jani Nikulaae992582013-05-22 15:36:19 +03004444 reg_val = vlv_dpio_read(dev_priv, DPIO_IREF_CTL(pipe));
Jesse Barnes89b667f2013-04-18 14:51:36 -07004445 reg_val &= 0x00ffffff;
Jani Nikulaae992582013-05-22 15:36:19 +03004446 vlv_dpio_write(dev_priv, DPIO_IREF_CTL(pipe), reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07004447
4448 /* Disable fast lock */
Jani Nikulaae992582013-05-22 15:36:19 +03004449 vlv_dpio_write(dev_priv, DPIO_FASTCLK_DISABLE, 0x610);
Jesse Barnes89b667f2013-04-18 14:51:36 -07004450
4451 /* Set idtafcrecal before PLL is enabled */
Jesse Barnesa0c4da242012-06-15 11:55:13 -07004452 mdiv = ((bestm1 << DPIO_M1DIV_SHIFT) | (bestm2 & DPIO_M2DIV_MASK));
4453 mdiv |= ((bestp1 << DPIO_P1_SHIFT) | (bestp2 << DPIO_P2_SHIFT));
4454 mdiv |= ((bestn << DPIO_N_SHIFT));
Jesse Barnesa0c4da242012-06-15 11:55:13 -07004455 mdiv |= (1 << DPIO_K_SHIFT);
Jesse Barnes7df50802013-05-02 10:48:09 -07004456
4457 /*
4458 * Post divider depends on pixel clock rate, DAC vs digital (and LVDS,
4459 * but we don't support that).
4460 * Note: don't use the DAC post divider as it seems unstable.
4461 */
4462 mdiv |= (DPIO_POST_DIV_HDMIDP << DPIO_POST_DIV_SHIFT);
Jani Nikulaae992582013-05-22 15:36:19 +03004463 vlv_dpio_write(dev_priv, DPIO_DIV(pipe), mdiv);
Jesse Barnes89b667f2013-04-18 14:51:36 -07004464
Jesse Barnesa0c4da242012-06-15 11:55:13 -07004465 mdiv |= DPIO_ENABLE_CALIBRATION;
Jani Nikulaae992582013-05-22 15:36:19 +03004466 vlv_dpio_write(dev_priv, DPIO_DIV(pipe), mdiv);
Jesse Barnesa0c4da242012-06-15 11:55:13 -07004467
Jesse Barnes89b667f2013-04-18 14:51:36 -07004468 /* Set HBR and RBR LPF coefficients */
4469 if (adjusted_mode->clock == 162000 ||
4470 intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_HDMI))
Jani Nikulaae992582013-05-22 15:36:19 +03004471 vlv_dpio_write(dev_priv, DPIO_LFP_COEFF(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07004472 0x005f0021);
4473 else
Jani Nikulaae992582013-05-22 15:36:19 +03004474 vlv_dpio_write(dev_priv, DPIO_LFP_COEFF(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07004475 0x00d0000f);
Jesse Barnesa0c4da242012-06-15 11:55:13 -07004476
Jesse Barnes89b667f2013-04-18 14:51:36 -07004477 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_EDP) ||
4478 intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_DISPLAYPORT)) {
4479 /* Use SSC source */
4480 if (!pipe)
Jani Nikulaae992582013-05-22 15:36:19 +03004481 vlv_dpio_write(dev_priv, DPIO_REFSFR(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07004482 0x0df40000);
4483 else
Jani Nikulaae992582013-05-22 15:36:19 +03004484 vlv_dpio_write(dev_priv, DPIO_REFSFR(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07004485 0x0df70000);
4486 } else { /* HDMI or VGA */
4487 /* Use bend source */
4488 if (!pipe)
Jani Nikulaae992582013-05-22 15:36:19 +03004489 vlv_dpio_write(dev_priv, DPIO_REFSFR(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07004490 0x0df70000);
4491 else
Jani Nikulaae992582013-05-22 15:36:19 +03004492 vlv_dpio_write(dev_priv, DPIO_REFSFR(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07004493 0x0df40000);
4494 }
Jesse Barnesa0c4da242012-06-15 11:55:13 -07004495
Jani Nikulaae992582013-05-22 15:36:19 +03004496 coreclk = vlv_dpio_read(dev_priv, DPIO_CORE_CLK(pipe));
Jesse Barnes89b667f2013-04-18 14:51:36 -07004497 coreclk = (coreclk & 0x0000ff00) | 0x01c00000;
4498 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_DISPLAYPORT) ||
4499 intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_EDP))
4500 coreclk |= 0x01000000;
Jani Nikulaae992582013-05-22 15:36:19 +03004501 vlv_dpio_write(dev_priv, DPIO_CORE_CLK(pipe), coreclk);
Jesse Barnes89b667f2013-04-18 14:51:36 -07004502
Jani Nikulaae992582013-05-22 15:36:19 +03004503 vlv_dpio_write(dev_priv, DPIO_PLL_CML(pipe), 0x87871000);
Jesse Barnes89b667f2013-04-18 14:51:36 -07004504
4505 for_each_encoder_on_crtc(dev, &crtc->base, encoder)
4506 if (encoder->pre_pll_enable)
4507 encoder->pre_pll_enable(encoder);
4508
4509 /* Enable DPIO clock input */
4510 dpll = DPLL_EXT_BUFFER_ENABLE_VLV | DPLL_REFA_CLK_ENABLE_VLV |
4511 DPLL_VGA_MODE_DIS | DPLL_INTEGRATED_CLOCK_VLV;
4512 if (pipe)
4513 dpll |= DPLL_INTEGRATED_CRI_CLK_VLV;
Jesse Barnesa0c4da242012-06-15 11:55:13 -07004514
4515 dpll |= DPLL_VCO_ENABLE;
4516 I915_WRITE(DPLL(pipe), dpll);
4517 POSTING_READ(DPLL(pipe));
Jesse Barnes89b667f2013-04-18 14:51:36 -07004518 udelay(150);
4519
Jesse Barnesa0c4da242012-06-15 11:55:13 -07004520 if (wait_for(((I915_READ(DPLL(pipe)) & DPLL_LOCK_VLV) == DPLL_LOCK_VLV), 1))
4521 DRM_ERROR("DPLL %d failed to lock\n", pipe);
4522
Daniel Vetter198a037f2013-04-19 11:14:37 +02004523 dpll_md = 0;
4524 if (crtc->config.pixel_multiplier > 1) {
4525 dpll_md = (crtc->config.pixel_multiplier - 1)
4526 << DPLL_MD_UDI_MULTIPLIER_SHIFT;
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05304527 }
Daniel Vetter198a037f2013-04-19 11:14:37 +02004528 I915_WRITE(DPLL_MD(pipe), dpll_md);
4529 POSTING_READ(DPLL_MD(pipe));
Daniel Vetterf47709a2013-03-28 10:42:02 +01004530
Jesse Barnes89b667f2013-04-18 14:51:36 -07004531 if (crtc->config.has_dp_encoder)
4532 intel_dp_set_m_n(crtc);
Daniel Vetter09153002012-12-12 14:06:44 +01004533
4534 mutex_unlock(&dev_priv->dpio_lock);
Jesse Barnesa0c4da242012-06-15 11:55:13 -07004535}
4536
Daniel Vetterf47709a2013-03-28 10:42:02 +01004537static void i9xx_update_pll(struct intel_crtc *crtc,
4538 intel_clock_t *reduced_clock,
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004539 int num_connectors)
4540{
Daniel Vetterf47709a2013-03-28 10:42:02 +01004541 struct drm_device *dev = crtc->base.dev;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004542 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterdafd2262012-11-26 17:22:07 +01004543 struct intel_encoder *encoder;
Daniel Vetterf47709a2013-03-28 10:42:02 +01004544 int pipe = crtc->pipe;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004545 u32 dpll;
4546 bool is_sdvo;
Daniel Vetterf47709a2013-03-28 10:42:02 +01004547 struct dpll *clock = &crtc->config.dpll;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004548
Daniel Vetterf47709a2013-03-28 10:42:02 +01004549 i9xx_update_pll_dividers(crtc, reduced_clock);
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05304550
Daniel Vetterf47709a2013-03-28 10:42:02 +01004551 is_sdvo = intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_SDVO) ||
4552 intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_HDMI);
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004553
4554 dpll = DPLL_VGA_MODE_DIS;
4555
Daniel Vetterf47709a2013-03-28 10:42:02 +01004556 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_LVDS))
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004557 dpll |= DPLLB_MODE_LVDS;
4558 else
4559 dpll |= DPLLB_MODE_DAC_SERIAL;
Daniel Vetter6cc5f342013-03-27 00:44:53 +01004560
Daniel Vetter198a037f2013-04-19 11:14:37 +02004561 if ((crtc->config.pixel_multiplier > 1) &&
4562 (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev))) {
4563 dpll |= (crtc->config.pixel_multiplier - 1)
4564 << SDVO_MULTIPLIER_SHIFT_HIRES;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004565 }
Daniel Vetter198a037f2013-04-19 11:14:37 +02004566
4567 if (is_sdvo)
4568 dpll |= DPLL_DVO_HIGH_SPEED;
4569
Daniel Vetterf47709a2013-03-28 10:42:02 +01004570 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_DISPLAYPORT))
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004571 dpll |= DPLL_DVO_HIGH_SPEED;
4572
4573 /* compute bitmask from p1 value */
4574 if (IS_PINEVIEW(dev))
4575 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW;
4576 else {
4577 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
4578 if (IS_G4X(dev) && reduced_clock)
4579 dpll |= (1 << (reduced_clock->p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
4580 }
4581 switch (clock->p2) {
4582 case 5:
4583 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
4584 break;
4585 case 7:
4586 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
4587 break;
4588 case 10:
4589 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
4590 break;
4591 case 14:
4592 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
4593 break;
4594 }
4595 if (INTEL_INFO(dev)->gen >= 4)
4596 dpll |= (6 << PLL_LOAD_PULSE_PHASE_SHIFT);
4597
Daniel Vetter09ede542013-04-30 14:01:45 +02004598 if (crtc->config.sdvo_tv_clock)
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004599 dpll |= PLL_REF_INPUT_TVCLKINBC;
Daniel Vetterf47709a2013-03-28 10:42:02 +01004600 else if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_LVDS) &&
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004601 intel_panel_use_ssc(dev_priv) && num_connectors < 2)
4602 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
4603 else
4604 dpll |= PLL_REF_INPUT_DREFCLK;
4605
4606 dpll |= DPLL_VCO_ENABLE;
4607 I915_WRITE(DPLL(pipe), dpll & ~DPLL_VCO_ENABLE);
4608 POSTING_READ(DPLL(pipe));
4609 udelay(150);
4610
Daniel Vetterf47709a2013-03-28 10:42:02 +01004611 for_each_encoder_on_crtc(dev, &crtc->base, encoder)
Daniel Vetterdafd2262012-11-26 17:22:07 +01004612 if (encoder->pre_pll_enable)
4613 encoder->pre_pll_enable(encoder);
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004614
Daniel Vetterf47709a2013-03-28 10:42:02 +01004615 if (crtc->config.has_dp_encoder)
4616 intel_dp_set_m_n(crtc);
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004617
4618 I915_WRITE(DPLL(pipe), dpll);
4619
4620 /* Wait for the clocks to stabilize. */
4621 POSTING_READ(DPLL(pipe));
4622 udelay(150);
4623
4624 if (INTEL_INFO(dev)->gen >= 4) {
Daniel Vetter198a037f2013-04-19 11:14:37 +02004625 u32 dpll_md = 0;
4626 if (crtc->config.pixel_multiplier > 1) {
4627 dpll_md = (crtc->config.pixel_multiplier - 1)
4628 << DPLL_MD_UDI_MULTIPLIER_SHIFT;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004629 }
Daniel Vetter198a037f2013-04-19 11:14:37 +02004630 I915_WRITE(DPLL_MD(pipe), dpll_md);
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004631 } else {
4632 /* The pixel multiplier can only be updated once the
4633 * DPLL is enabled and the clocks are stable.
4634 *
4635 * So write it again.
4636 */
4637 I915_WRITE(DPLL(pipe), dpll);
4638 }
4639}
4640
Daniel Vetterf47709a2013-03-28 10:42:02 +01004641static void i8xx_update_pll(struct intel_crtc *crtc,
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004642 struct drm_display_mode *adjusted_mode,
Daniel Vetterf47709a2013-03-28 10:42:02 +01004643 intel_clock_t *reduced_clock,
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004644 int num_connectors)
4645{
Daniel Vetterf47709a2013-03-28 10:42:02 +01004646 struct drm_device *dev = crtc->base.dev;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004647 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterdafd2262012-11-26 17:22:07 +01004648 struct intel_encoder *encoder;
Daniel Vetterf47709a2013-03-28 10:42:02 +01004649 int pipe = crtc->pipe;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004650 u32 dpll;
Daniel Vetterf47709a2013-03-28 10:42:02 +01004651 struct dpll *clock = &crtc->config.dpll;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004652
Daniel Vetterf47709a2013-03-28 10:42:02 +01004653 i9xx_update_pll_dividers(crtc, reduced_clock);
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05304654
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004655 dpll = DPLL_VGA_MODE_DIS;
4656
Daniel Vetterf47709a2013-03-28 10:42:02 +01004657 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_LVDS)) {
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004658 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
4659 } else {
4660 if (clock->p1 == 2)
4661 dpll |= PLL_P1_DIVIDE_BY_TWO;
4662 else
4663 dpll |= (clock->p1 - 2) << DPLL_FPA01_P1_POST_DIV_SHIFT;
4664 if (clock->p2 == 4)
4665 dpll |= PLL_P2_DIVIDE_BY_4;
4666 }
4667
Daniel Vetterf47709a2013-03-28 10:42:02 +01004668 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_LVDS) &&
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004669 intel_panel_use_ssc(dev_priv) && num_connectors < 2)
4670 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
4671 else
4672 dpll |= PLL_REF_INPUT_DREFCLK;
4673
4674 dpll |= DPLL_VCO_ENABLE;
4675 I915_WRITE(DPLL(pipe), dpll & ~DPLL_VCO_ENABLE);
4676 POSTING_READ(DPLL(pipe));
4677 udelay(150);
4678
Daniel Vetterf47709a2013-03-28 10:42:02 +01004679 for_each_encoder_on_crtc(dev, &crtc->base, encoder)
Daniel Vetterdafd2262012-11-26 17:22:07 +01004680 if (encoder->pre_pll_enable)
4681 encoder->pre_pll_enable(encoder);
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004682
Daniel Vetter5b5896e2012-09-11 12:37:55 +02004683 I915_WRITE(DPLL(pipe), dpll);
4684
4685 /* Wait for the clocks to stabilize. */
4686 POSTING_READ(DPLL(pipe));
4687 udelay(150);
4688
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004689 /* The pixel multiplier can only be updated once the
4690 * DPLL is enabled and the clocks are stable.
4691 *
4692 * So write it again.
4693 */
4694 I915_WRITE(DPLL(pipe), dpll);
4695}
4696
Paulo Zanonib0e77b92012-10-01 18:10:53 -03004697static void intel_set_pipe_timings(struct intel_crtc *intel_crtc,
4698 struct drm_display_mode *mode,
4699 struct drm_display_mode *adjusted_mode)
4700{
4701 struct drm_device *dev = intel_crtc->base.dev;
4702 struct drm_i915_private *dev_priv = dev->dev_private;
4703 enum pipe pipe = intel_crtc->pipe;
Daniel Vetter3b117c82013-04-17 20:15:07 +02004704 enum transcoder cpu_transcoder = intel_crtc->config.cpu_transcoder;
Daniel Vetter4d8a62e2013-05-03 11:49:51 +02004705 uint32_t vsyncshift, crtc_vtotal, crtc_vblank_end;
4706
4707 /* We need to be careful not to changed the adjusted mode, for otherwise
4708 * the hw state checker will get angry at the mismatch. */
4709 crtc_vtotal = adjusted_mode->crtc_vtotal;
4710 crtc_vblank_end = adjusted_mode->crtc_vblank_end;
Paulo Zanonib0e77b92012-10-01 18:10:53 -03004711
4712 if (!IS_GEN2(dev) && adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE) {
4713 /* the chip adds 2 halflines automatically */
Daniel Vetter4d8a62e2013-05-03 11:49:51 +02004714 crtc_vtotal -= 1;
4715 crtc_vblank_end -= 1;
Paulo Zanonib0e77b92012-10-01 18:10:53 -03004716 vsyncshift = adjusted_mode->crtc_hsync_start
4717 - adjusted_mode->crtc_htotal / 2;
4718 } else {
4719 vsyncshift = 0;
4720 }
4721
4722 if (INTEL_INFO(dev)->gen > 3)
Paulo Zanonife2b8f92012-10-23 18:30:02 -02004723 I915_WRITE(VSYNCSHIFT(cpu_transcoder), vsyncshift);
Paulo Zanonib0e77b92012-10-01 18:10:53 -03004724
Paulo Zanonife2b8f92012-10-23 18:30:02 -02004725 I915_WRITE(HTOTAL(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03004726 (adjusted_mode->crtc_hdisplay - 1) |
4727 ((adjusted_mode->crtc_htotal - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02004728 I915_WRITE(HBLANK(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03004729 (adjusted_mode->crtc_hblank_start - 1) |
4730 ((adjusted_mode->crtc_hblank_end - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02004731 I915_WRITE(HSYNC(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03004732 (adjusted_mode->crtc_hsync_start - 1) |
4733 ((adjusted_mode->crtc_hsync_end - 1) << 16));
4734
Paulo Zanonife2b8f92012-10-23 18:30:02 -02004735 I915_WRITE(VTOTAL(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03004736 (adjusted_mode->crtc_vdisplay - 1) |
Daniel Vetter4d8a62e2013-05-03 11:49:51 +02004737 ((crtc_vtotal - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02004738 I915_WRITE(VBLANK(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03004739 (adjusted_mode->crtc_vblank_start - 1) |
Daniel Vetter4d8a62e2013-05-03 11:49:51 +02004740 ((crtc_vblank_end - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02004741 I915_WRITE(VSYNC(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03004742 (adjusted_mode->crtc_vsync_start - 1) |
4743 ((adjusted_mode->crtc_vsync_end - 1) << 16));
4744
Paulo Zanonib5e508d2012-10-24 11:34:43 -02004745 /* Workaround: when the EDP input selection is B, the VTOTAL_B must be
4746 * programmed with the VTOTAL_EDP value. Same for VTOTAL_C. This is
4747 * documented on the DDI_FUNC_CTL register description, EDP Input Select
4748 * bits. */
4749 if (IS_HASWELL(dev) && cpu_transcoder == TRANSCODER_EDP &&
4750 (pipe == PIPE_B || pipe == PIPE_C))
4751 I915_WRITE(VTOTAL(pipe), I915_READ(VTOTAL(cpu_transcoder)));
4752
Paulo Zanonib0e77b92012-10-01 18:10:53 -03004753 /* pipesrc controls the size that is scaled from, which should
4754 * always be the user's requested size.
4755 */
4756 I915_WRITE(PIPESRC(pipe),
4757 ((mode->hdisplay - 1) << 16) | (mode->vdisplay - 1));
4758}
4759
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02004760static void intel_get_pipe_timings(struct intel_crtc *crtc,
4761 struct intel_crtc_config *pipe_config)
4762{
4763 struct drm_device *dev = crtc->base.dev;
4764 struct drm_i915_private *dev_priv = dev->dev_private;
4765 enum transcoder cpu_transcoder = pipe_config->cpu_transcoder;
4766 uint32_t tmp;
4767
4768 tmp = I915_READ(HTOTAL(cpu_transcoder));
4769 pipe_config->adjusted_mode.crtc_hdisplay = (tmp & 0xffff) + 1;
4770 pipe_config->adjusted_mode.crtc_htotal = ((tmp >> 16) & 0xffff) + 1;
4771 tmp = I915_READ(HBLANK(cpu_transcoder));
4772 pipe_config->adjusted_mode.crtc_hblank_start = (tmp & 0xffff) + 1;
4773 pipe_config->adjusted_mode.crtc_hblank_end = ((tmp >> 16) & 0xffff) + 1;
4774 tmp = I915_READ(HSYNC(cpu_transcoder));
4775 pipe_config->adjusted_mode.crtc_hsync_start = (tmp & 0xffff) + 1;
4776 pipe_config->adjusted_mode.crtc_hsync_end = ((tmp >> 16) & 0xffff) + 1;
4777
4778 tmp = I915_READ(VTOTAL(cpu_transcoder));
4779 pipe_config->adjusted_mode.crtc_vdisplay = (tmp & 0xffff) + 1;
4780 pipe_config->adjusted_mode.crtc_vtotal = ((tmp >> 16) & 0xffff) + 1;
4781 tmp = I915_READ(VBLANK(cpu_transcoder));
4782 pipe_config->adjusted_mode.crtc_vblank_start = (tmp & 0xffff) + 1;
4783 pipe_config->adjusted_mode.crtc_vblank_end = ((tmp >> 16) & 0xffff) + 1;
4784 tmp = I915_READ(VSYNC(cpu_transcoder));
4785 pipe_config->adjusted_mode.crtc_vsync_start = (tmp & 0xffff) + 1;
4786 pipe_config->adjusted_mode.crtc_vsync_end = ((tmp >> 16) & 0xffff) + 1;
4787
4788 if (I915_READ(PIPECONF(cpu_transcoder)) & PIPECONF_INTERLACE_MASK) {
4789 pipe_config->adjusted_mode.flags |= DRM_MODE_FLAG_INTERLACE;
4790 pipe_config->adjusted_mode.crtc_vtotal += 1;
4791 pipe_config->adjusted_mode.crtc_vblank_end += 1;
4792 }
4793
4794 tmp = I915_READ(PIPESRC(crtc->pipe));
4795 pipe_config->requested_mode.vdisplay = (tmp & 0xffff) + 1;
4796 pipe_config->requested_mode.hdisplay = ((tmp >> 16) & 0xffff) + 1;
4797}
4798
Daniel Vetter84b046f2013-02-19 18:48:54 +01004799static void i9xx_set_pipeconf(struct intel_crtc *intel_crtc)
4800{
4801 struct drm_device *dev = intel_crtc->base.dev;
4802 struct drm_i915_private *dev_priv = dev->dev_private;
4803 uint32_t pipeconf;
4804
4805 pipeconf = I915_READ(PIPECONF(intel_crtc->pipe));
4806
4807 if (intel_crtc->pipe == 0 && INTEL_INFO(dev)->gen < 4) {
4808 /* Enable pixel doubling when the dot clock is > 90% of the (display)
4809 * core speed.
4810 *
4811 * XXX: No double-wide on 915GM pipe B. Is that the only reason for the
4812 * pipe == 0 check?
4813 */
4814 if (intel_crtc->config.requested_mode.clock >
4815 dev_priv->display.get_display_clock_speed(dev) * 9 / 10)
4816 pipeconf |= PIPECONF_DOUBLE_WIDE;
4817 else
4818 pipeconf &= ~PIPECONF_DOUBLE_WIDE;
4819 }
4820
Daniel Vetterff9ce462013-04-24 14:57:17 +02004821 /* only g4x and later have fancy bpc/dither controls */
4822 if (IS_G4X(dev) || IS_VALLEYVIEW(dev)) {
4823 pipeconf &= ~(PIPECONF_BPC_MASK |
4824 PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_MASK);
Daniel Vetter84b046f2013-02-19 18:48:54 +01004825
Daniel Vetterff9ce462013-04-24 14:57:17 +02004826 /* Bspec claims that we can't use dithering for 30bpp pipes. */
4827 if (intel_crtc->config.dither && intel_crtc->config.pipe_bpp != 30)
4828 pipeconf |= PIPECONF_DITHER_EN |
4829 PIPECONF_DITHER_TYPE_SP;
4830
4831 switch (intel_crtc->config.pipe_bpp) {
4832 case 18:
4833 pipeconf |= PIPECONF_6BPC;
4834 break;
4835 case 24:
4836 pipeconf |= PIPECONF_8BPC;
4837 break;
4838 case 30:
4839 pipeconf |= PIPECONF_10BPC;
4840 break;
4841 default:
4842 /* Case prevented by intel_choose_pipe_bpp_dither. */
4843 BUG();
Daniel Vetter84b046f2013-02-19 18:48:54 +01004844 }
4845 }
4846
4847 if (HAS_PIPE_CXSR(dev)) {
4848 if (intel_crtc->lowfreq_avail) {
4849 DRM_DEBUG_KMS("enabling CxSR downclocking\n");
4850 pipeconf |= PIPECONF_CXSR_DOWNCLOCK;
4851 } else {
4852 DRM_DEBUG_KMS("disabling CxSR downclocking\n");
4853 pipeconf &= ~PIPECONF_CXSR_DOWNCLOCK;
4854 }
4855 }
4856
4857 pipeconf &= ~PIPECONF_INTERLACE_MASK;
4858 if (!IS_GEN2(dev) &&
4859 intel_crtc->config.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
4860 pipeconf |= PIPECONF_INTERLACE_W_FIELD_INDICATION;
4861 else
4862 pipeconf |= PIPECONF_PROGRESSIVE;
4863
Ville Syrjälä9c8e09b2013-04-02 16:10:09 +03004864 if (IS_VALLEYVIEW(dev)) {
4865 if (intel_crtc->config.limited_color_range)
4866 pipeconf |= PIPECONF_COLOR_RANGE_SELECT;
4867 else
4868 pipeconf &= ~PIPECONF_COLOR_RANGE_SELECT;
4869 }
4870
Daniel Vetter84b046f2013-02-19 18:48:54 +01004871 I915_WRITE(PIPECONF(intel_crtc->pipe), pipeconf);
4872 POSTING_READ(PIPECONF(intel_crtc->pipe));
4873}
4874
Eric Anholtf564048e2011-03-30 13:01:02 -07004875static int i9xx_crtc_mode_set(struct drm_crtc *crtc,
Eric Anholtf564048e2011-03-30 13:01:02 -07004876 int x, int y,
Daniel Vetter94352cf2012-07-05 22:51:56 +02004877 struct drm_framebuffer *fb)
Jesse Barnes79e53942008-11-07 14:24:08 -08004878{
4879 struct drm_device *dev = crtc->dev;
4880 struct drm_i915_private *dev_priv = dev->dev_private;
4881 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01004882 struct drm_display_mode *adjusted_mode =
4883 &intel_crtc->config.adjusted_mode;
4884 struct drm_display_mode *mode = &intel_crtc->config.requested_mode;
Jesse Barnes79e53942008-11-07 14:24:08 -08004885 int pipe = intel_crtc->pipe;
Jesse Barnes80824002009-09-10 15:28:06 -07004886 int plane = intel_crtc->plane;
Eric Anholtc751ce42010-03-25 11:48:48 -07004887 int refclk, num_connectors = 0;
Jesse Barnes652c3932009-08-17 13:31:43 -07004888 intel_clock_t clock, reduced_clock;
Daniel Vetter84b046f2013-02-19 18:48:54 +01004889 u32 dspcntr;
Daniel Vettera16af722013-04-30 14:01:44 +02004890 bool ok, has_reduced_clock = false;
4891 bool is_lvds = false;
Chris Wilson5eddb702010-09-11 13:48:45 +01004892 struct intel_encoder *encoder;
Ma Lingd4906092009-03-18 20:13:27 +08004893 const intel_limit_t *limit;
Chris Wilson5c3b82e2009-02-11 13:25:09 +00004894 int ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08004895
Daniel Vetter6c2b7c12012-07-05 09:50:24 +02004896 for_each_encoder_on_crtc(dev, crtc, encoder) {
Chris Wilson5eddb702010-09-11 13:48:45 +01004897 switch (encoder->type) {
Jesse Barnes79e53942008-11-07 14:24:08 -08004898 case INTEL_OUTPUT_LVDS:
4899 is_lvds = true;
4900 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08004901 }
Kristian Høgsberg43565a02009-02-13 20:56:52 -05004902
Eric Anholtc751ce42010-03-25 11:48:48 -07004903 num_connectors++;
Jesse Barnes79e53942008-11-07 14:24:08 -08004904 }
4905
Jesse Barnesc65d77d2011-12-15 12:30:36 -08004906 refclk = i9xx_get_refclk(crtc, num_connectors);
Jesse Barnes79e53942008-11-07 14:24:08 -08004907
Ma Lingd4906092009-03-18 20:13:27 +08004908 /*
4909 * Returns a set of divisors for the desired target clock with the given
4910 * refclk, or FALSE. The returned values represent the clock equation:
4911 * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2.
4912 */
Chris Wilson1b894b52010-12-14 20:04:54 +00004913 limit = intel_limit(crtc, refclk);
Sean Paulcec2f352012-01-10 15:09:36 -08004914 ok = limit->find_pll(limit, crtc, adjusted_mode->clock, refclk, NULL,
4915 &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08004916 if (!ok) {
4917 DRM_ERROR("Couldn't find PLL settings for mode!\n");
Eric Anholtf564048e2011-03-30 13:01:02 -07004918 return -EINVAL;
4919 }
4920
4921 /* Ensure that the cursor is valid for the new mode before changing... */
4922 intel_crtc_update_cursor(crtc, true);
4923
4924 if (is_lvds && dev_priv->lvds_downclock_avail) {
Sean Paulcec2f352012-01-10 15:09:36 -08004925 /*
4926 * Ensure we match the reduced clock's P to the target clock.
4927 * If the clocks don't match, we can't switch the display clock
4928 * by using the FP0/FP1. In such case we will disable the LVDS
4929 * downclock feature.
4930 */
Eric Anholtf564048e2011-03-30 13:01:02 -07004931 has_reduced_clock = limit->find_pll(limit, crtc,
4932 dev_priv->lvds_downclock,
4933 refclk,
Sean Paulcec2f352012-01-10 15:09:36 -08004934 &clock,
Eric Anholtf564048e2011-03-30 13:01:02 -07004935 &reduced_clock);
Eric Anholtf564048e2011-03-30 13:01:02 -07004936 }
Daniel Vetterf47709a2013-03-28 10:42:02 +01004937 /* Compat-code for transition, will disappear. */
4938 if (!intel_crtc->config.clock_set) {
4939 intel_crtc->config.dpll.n = clock.n;
4940 intel_crtc->config.dpll.m1 = clock.m1;
4941 intel_crtc->config.dpll.m2 = clock.m2;
4942 intel_crtc->config.dpll.p1 = clock.p1;
4943 intel_crtc->config.dpll.p2 = clock.p2;
4944 }
Eric Anholtf564048e2011-03-30 13:01:02 -07004945
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004946 if (IS_GEN2(dev))
Daniel Vetterf47709a2013-03-28 10:42:02 +01004947 i8xx_update_pll(intel_crtc, adjusted_mode,
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05304948 has_reduced_clock ? &reduced_clock : NULL,
4949 num_connectors);
Jesse Barnesa0c4da242012-06-15 11:55:13 -07004950 else if (IS_VALLEYVIEW(dev))
Daniel Vetterf47709a2013-03-28 10:42:02 +01004951 vlv_update_pll(intel_crtc);
Eric Anholtf564048e2011-03-30 13:01:02 -07004952 else
Daniel Vetterf47709a2013-03-28 10:42:02 +01004953 i9xx_update_pll(intel_crtc,
Daniel Vettereb1cbe42012-03-28 23:12:16 +02004954 has_reduced_clock ? &reduced_clock : NULL,
Jesse Barnes89b667f2013-04-18 14:51:36 -07004955 num_connectors);
Eric Anholtf564048e2011-03-30 13:01:02 -07004956
Eric Anholtf564048e2011-03-30 13:01:02 -07004957 /* Set up the display plane register */
4958 dspcntr = DISPPLANE_GAMMA_ENABLE;
4959
Jesse Barnesda6ecc52013-03-08 10:46:00 -08004960 if (!IS_VALLEYVIEW(dev)) {
4961 if (pipe == 0)
4962 dspcntr &= ~DISPPLANE_SEL_PIPE_MASK;
4963 else
4964 dspcntr |= DISPPLANE_SEL_PIPE_B;
4965 }
Eric Anholtf564048e2011-03-30 13:01:02 -07004966
Paulo Zanonib0e77b92012-10-01 18:10:53 -03004967 intel_set_pipe_timings(intel_crtc, mode, adjusted_mode);
Eric Anholtf564048e2011-03-30 13:01:02 -07004968
4969 /* pipesrc and dspsize control the size that is scaled from,
4970 * which should always be the user's requested size.
4971 */
Eric Anholt929c77f2011-03-30 13:01:04 -07004972 I915_WRITE(DSPSIZE(plane),
4973 ((mode->vdisplay - 1) << 16) |
4974 (mode->hdisplay - 1));
4975 I915_WRITE(DSPPOS(plane), 0);
Eric Anholtf564048e2011-03-30 13:01:02 -07004976
Daniel Vetter84b046f2013-02-19 18:48:54 +01004977 i9xx_set_pipeconf(intel_crtc);
4978
Eric Anholtf564048e2011-03-30 13:01:02 -07004979 I915_WRITE(DSPCNTR(plane), dspcntr);
4980 POSTING_READ(DSPCNTR(plane));
4981
Daniel Vetter94352cf2012-07-05 22:51:56 +02004982 ret = intel_pipe_set_base(crtc, x, y, fb);
Eric Anholtf564048e2011-03-30 13:01:02 -07004983
4984 intel_update_watermarks(dev);
4985
Eric Anholtf564048e2011-03-30 13:01:02 -07004986 return ret;
4987}
4988
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02004989static void i9xx_get_pfit_config(struct intel_crtc *crtc,
4990 struct intel_crtc_config *pipe_config)
4991{
4992 struct drm_device *dev = crtc->base.dev;
4993 struct drm_i915_private *dev_priv = dev->dev_private;
4994 uint32_t tmp;
4995
4996 tmp = I915_READ(PFIT_CONTROL);
4997
4998 if (INTEL_INFO(dev)->gen < 4) {
4999 if (crtc->pipe != PIPE_B)
5000 return;
5001
5002 /* gen2/3 store dither state in pfit control, needs to match */
5003 pipe_config->gmch_pfit.control = tmp & PANEL_8TO6_DITHER_ENABLE;
5004 } else {
5005 if ((tmp & PFIT_PIPE_MASK) != (crtc->pipe << PFIT_PIPE_SHIFT))
5006 return;
5007 }
5008
5009 if (!(tmp & PFIT_ENABLE))
5010 return;
5011
5012 pipe_config->gmch_pfit.control = I915_READ(PFIT_CONTROL);
5013 pipe_config->gmch_pfit.pgm_ratios = I915_READ(PFIT_PGM_RATIOS);
5014 if (INTEL_INFO(dev)->gen < 5)
5015 pipe_config->gmch_pfit.lvds_border_bits =
5016 I915_READ(LVDS) & LVDS_BORDER_ENABLE;
5017}
5018
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01005019static bool i9xx_get_pipe_config(struct intel_crtc *crtc,
5020 struct intel_crtc_config *pipe_config)
5021{
5022 struct drm_device *dev = crtc->base.dev;
5023 struct drm_i915_private *dev_priv = dev->dev_private;
5024 uint32_t tmp;
5025
Daniel Vettereccb1402013-05-22 00:50:22 +02005026 pipe_config->cpu_transcoder = crtc->pipe;
5027
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01005028 tmp = I915_READ(PIPECONF(crtc->pipe));
5029 if (!(tmp & PIPECONF_ENABLE))
5030 return false;
5031
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02005032 intel_get_pipe_timings(crtc, pipe_config);
5033
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02005034 i9xx_get_pfit_config(crtc, pipe_config);
5035
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01005036 return true;
5037}
5038
Paulo Zanonidde86e22012-12-01 12:04:25 -02005039static void ironlake_init_pch_refclk(struct drm_device *dev)
Jesse Barnes13d83a62011-08-03 12:59:20 -07005040{
5041 struct drm_i915_private *dev_priv = dev->dev_private;
5042 struct drm_mode_config *mode_config = &dev->mode_config;
Jesse Barnes13d83a62011-08-03 12:59:20 -07005043 struct intel_encoder *encoder;
Chris Wilson74cfd7a2013-03-26 16:33:04 -07005044 u32 val, final;
Jesse Barnes13d83a62011-08-03 12:59:20 -07005045 bool has_lvds = false;
Keith Packard199e5d72011-09-22 12:01:57 -07005046 bool has_cpu_edp = false;
Keith Packard199e5d72011-09-22 12:01:57 -07005047 bool has_panel = false;
Keith Packard99eb6a02011-09-26 14:29:12 -07005048 bool has_ck505 = false;
5049 bool can_ssc = false;
Jesse Barnes13d83a62011-08-03 12:59:20 -07005050
5051 /* We need to take the global config into account */
Keith Packard199e5d72011-09-22 12:01:57 -07005052 list_for_each_entry(encoder, &mode_config->encoder_list,
5053 base.head) {
5054 switch (encoder->type) {
5055 case INTEL_OUTPUT_LVDS:
5056 has_panel = true;
5057 has_lvds = true;
5058 break;
5059 case INTEL_OUTPUT_EDP:
5060 has_panel = true;
Imre Deak2de69052013-05-08 13:14:04 +03005061 if (enc_to_dig_port(&encoder->base)->port == PORT_A)
Keith Packard199e5d72011-09-22 12:01:57 -07005062 has_cpu_edp = true;
5063 break;
Jesse Barnes13d83a62011-08-03 12:59:20 -07005064 }
5065 }
5066
Keith Packard99eb6a02011-09-26 14:29:12 -07005067 if (HAS_PCH_IBX(dev)) {
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03005068 has_ck505 = dev_priv->vbt.display_clock_mode;
Keith Packard99eb6a02011-09-26 14:29:12 -07005069 can_ssc = has_ck505;
5070 } else {
5071 has_ck505 = false;
5072 can_ssc = true;
5073 }
5074
Imre Deak2de69052013-05-08 13:14:04 +03005075 DRM_DEBUG_KMS("has_panel %d has_lvds %d has_ck505 %d\n",
5076 has_panel, has_lvds, has_ck505);
Jesse Barnes13d83a62011-08-03 12:59:20 -07005077
5078 /* Ironlake: try to setup display ref clock before DPLL
5079 * enabling. This is only under driver's control after
5080 * PCH B stepping, previous chipset stepping should be
5081 * ignoring this setting.
5082 */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07005083 val = I915_READ(PCH_DREF_CONTROL);
Jesse Barnes13d83a62011-08-03 12:59:20 -07005084
Chris Wilson74cfd7a2013-03-26 16:33:04 -07005085 /* As we must carefully and slowly disable/enable each source in turn,
5086 * compute the final state we want first and check if we need to
5087 * make any changes at all.
5088 */
5089 final = val;
5090 final &= ~DREF_NONSPREAD_SOURCE_MASK;
Keith Packard99eb6a02011-09-26 14:29:12 -07005091 if (has_ck505)
Chris Wilson74cfd7a2013-03-26 16:33:04 -07005092 final |= DREF_NONSPREAD_CK505_ENABLE;
Keith Packard99eb6a02011-09-26 14:29:12 -07005093 else
Chris Wilson74cfd7a2013-03-26 16:33:04 -07005094 final |= DREF_NONSPREAD_SOURCE_ENABLE;
5095
5096 final &= ~DREF_SSC_SOURCE_MASK;
5097 final &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
5098 final &= ~DREF_SSC1_ENABLE;
Jesse Barnes13d83a62011-08-03 12:59:20 -07005099
Keith Packard199e5d72011-09-22 12:01:57 -07005100 if (has_panel) {
Chris Wilson74cfd7a2013-03-26 16:33:04 -07005101 final |= DREF_SSC_SOURCE_ENABLE;
5102
5103 if (intel_panel_use_ssc(dev_priv) && can_ssc)
5104 final |= DREF_SSC1_ENABLE;
5105
5106 if (has_cpu_edp) {
5107 if (intel_panel_use_ssc(dev_priv) && can_ssc)
5108 final |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD;
5109 else
5110 final |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD;
5111 } else
5112 final |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
5113 } else {
5114 final |= DREF_SSC_SOURCE_DISABLE;
5115 final |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
5116 }
5117
5118 if (final == val)
5119 return;
5120
5121 /* Always enable nonspread source */
5122 val &= ~DREF_NONSPREAD_SOURCE_MASK;
5123
5124 if (has_ck505)
5125 val |= DREF_NONSPREAD_CK505_ENABLE;
5126 else
5127 val |= DREF_NONSPREAD_SOURCE_ENABLE;
5128
5129 if (has_panel) {
5130 val &= ~DREF_SSC_SOURCE_MASK;
5131 val |= DREF_SSC_SOURCE_ENABLE;
Jesse Barnes13d83a62011-08-03 12:59:20 -07005132
Keith Packard199e5d72011-09-22 12:01:57 -07005133 /* SSC must be turned on before enabling the CPU output */
Keith Packard99eb6a02011-09-26 14:29:12 -07005134 if (intel_panel_use_ssc(dev_priv) && can_ssc) {
Keith Packard199e5d72011-09-22 12:01:57 -07005135 DRM_DEBUG_KMS("Using SSC on panel\n");
Chris Wilson74cfd7a2013-03-26 16:33:04 -07005136 val |= DREF_SSC1_ENABLE;
Daniel Vettere77166b2012-03-30 22:14:05 +02005137 } else
Chris Wilson74cfd7a2013-03-26 16:33:04 -07005138 val &= ~DREF_SSC1_ENABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07005139
5140 /* Get SSC going before enabling the outputs */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07005141 I915_WRITE(PCH_DREF_CONTROL, val);
Keith Packard199e5d72011-09-22 12:01:57 -07005142 POSTING_READ(PCH_DREF_CONTROL);
5143 udelay(200);
5144
Chris Wilson74cfd7a2013-03-26 16:33:04 -07005145 val &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
Jesse Barnes13d83a62011-08-03 12:59:20 -07005146
5147 /* Enable CPU source on CPU attached eDP */
Keith Packard199e5d72011-09-22 12:01:57 -07005148 if (has_cpu_edp) {
Keith Packard99eb6a02011-09-26 14:29:12 -07005149 if (intel_panel_use_ssc(dev_priv) && can_ssc) {
Keith Packard199e5d72011-09-22 12:01:57 -07005150 DRM_DEBUG_KMS("Using SSC on eDP\n");
Chris Wilson74cfd7a2013-03-26 16:33:04 -07005151 val |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD;
Keith Packard199e5d72011-09-22 12:01:57 -07005152 }
Jesse Barnes13d83a62011-08-03 12:59:20 -07005153 else
Chris Wilson74cfd7a2013-03-26 16:33:04 -07005154 val |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD;
Keith Packard199e5d72011-09-22 12:01:57 -07005155 } else
Chris Wilson74cfd7a2013-03-26 16:33:04 -07005156 val |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07005157
Chris Wilson74cfd7a2013-03-26 16:33:04 -07005158 I915_WRITE(PCH_DREF_CONTROL, val);
Keith Packard199e5d72011-09-22 12:01:57 -07005159 POSTING_READ(PCH_DREF_CONTROL);
5160 udelay(200);
5161 } else {
5162 DRM_DEBUG_KMS("Disabling SSC entirely\n");
5163
Chris Wilson74cfd7a2013-03-26 16:33:04 -07005164 val &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
Keith Packard199e5d72011-09-22 12:01:57 -07005165
5166 /* Turn off CPU output */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07005167 val |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07005168
Chris Wilson74cfd7a2013-03-26 16:33:04 -07005169 I915_WRITE(PCH_DREF_CONTROL, val);
Keith Packard199e5d72011-09-22 12:01:57 -07005170 POSTING_READ(PCH_DREF_CONTROL);
5171 udelay(200);
5172
5173 /* Turn off the SSC source */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07005174 val &= ~DREF_SSC_SOURCE_MASK;
5175 val |= DREF_SSC_SOURCE_DISABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07005176
5177 /* Turn off SSC1 */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07005178 val &= ~DREF_SSC1_ENABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07005179
Chris Wilson74cfd7a2013-03-26 16:33:04 -07005180 I915_WRITE(PCH_DREF_CONTROL, val);
Jesse Barnes13d83a62011-08-03 12:59:20 -07005181 POSTING_READ(PCH_DREF_CONTROL);
5182 udelay(200);
5183 }
Chris Wilson74cfd7a2013-03-26 16:33:04 -07005184
5185 BUG_ON(val != final);
Jesse Barnes13d83a62011-08-03 12:59:20 -07005186}
5187
Paulo Zanonidde86e22012-12-01 12:04:25 -02005188/* Sequence to enable CLKOUT_DP for FDI usage and configure PCH FDI I/O. */
5189static void lpt_init_pch_refclk(struct drm_device *dev)
5190{
5191 struct drm_i915_private *dev_priv = dev->dev_private;
5192 struct drm_mode_config *mode_config = &dev->mode_config;
5193 struct intel_encoder *encoder;
5194 bool has_vga = false;
5195 bool is_sdv = false;
5196 u32 tmp;
5197
5198 list_for_each_entry(encoder, &mode_config->encoder_list, base.head) {
5199 switch (encoder->type) {
5200 case INTEL_OUTPUT_ANALOG:
5201 has_vga = true;
5202 break;
5203 }
5204 }
5205
5206 if (!has_vga)
5207 return;
5208
Daniel Vetterc00db242013-01-22 15:33:27 +01005209 mutex_lock(&dev_priv->dpio_lock);
5210
Paulo Zanonidde86e22012-12-01 12:04:25 -02005211 /* XXX: Rip out SDV support once Haswell ships for real. */
5212 if (IS_HASWELL(dev) && (dev->pci_device & 0xFF00) == 0x0C00)
5213 is_sdv = true;
5214
5215 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
5216 tmp &= ~SBI_SSCCTL_DISABLE;
5217 tmp |= SBI_SSCCTL_PATHALT;
5218 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
5219
5220 udelay(24);
5221
5222 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
5223 tmp &= ~SBI_SSCCTL_PATHALT;
5224 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
5225
5226 if (!is_sdv) {
5227 tmp = I915_READ(SOUTH_CHICKEN2);
5228 tmp |= FDI_MPHY_IOSFSB_RESET_CTL;
5229 I915_WRITE(SOUTH_CHICKEN2, tmp);
5230
5231 if (wait_for_atomic_us(I915_READ(SOUTH_CHICKEN2) &
5232 FDI_MPHY_IOSFSB_RESET_STATUS, 100))
5233 DRM_ERROR("FDI mPHY reset assert timeout\n");
5234
5235 tmp = I915_READ(SOUTH_CHICKEN2);
5236 tmp &= ~FDI_MPHY_IOSFSB_RESET_CTL;
5237 I915_WRITE(SOUTH_CHICKEN2, tmp);
5238
5239 if (wait_for_atomic_us((I915_READ(SOUTH_CHICKEN2) &
5240 FDI_MPHY_IOSFSB_RESET_STATUS) == 0,
5241 100))
5242 DRM_ERROR("FDI mPHY reset de-assert timeout\n");
5243 }
5244
5245 tmp = intel_sbi_read(dev_priv, 0x8008, SBI_MPHY);
5246 tmp &= ~(0xFF << 24);
5247 tmp |= (0x12 << 24);
5248 intel_sbi_write(dev_priv, 0x8008, tmp, SBI_MPHY);
5249
Paulo Zanonidde86e22012-12-01 12:04:25 -02005250 if (is_sdv) {
5251 tmp = intel_sbi_read(dev_priv, 0x800C, SBI_MPHY);
5252 tmp |= 0x7FFF;
5253 intel_sbi_write(dev_priv, 0x800C, tmp, SBI_MPHY);
5254 }
5255
5256 tmp = intel_sbi_read(dev_priv, 0x2008, SBI_MPHY);
5257 tmp |= (1 << 11);
5258 intel_sbi_write(dev_priv, 0x2008, tmp, SBI_MPHY);
5259
5260 tmp = intel_sbi_read(dev_priv, 0x2108, SBI_MPHY);
5261 tmp |= (1 << 11);
5262 intel_sbi_write(dev_priv, 0x2108, tmp, SBI_MPHY);
5263
5264 if (is_sdv) {
5265 tmp = intel_sbi_read(dev_priv, 0x2038, SBI_MPHY);
5266 tmp |= (0x3F << 24) | (0xF << 20) | (0xF << 16);
5267 intel_sbi_write(dev_priv, 0x2038, tmp, SBI_MPHY);
5268
5269 tmp = intel_sbi_read(dev_priv, 0x2138, SBI_MPHY);
5270 tmp |= (0x3F << 24) | (0xF << 20) | (0xF << 16);
5271 intel_sbi_write(dev_priv, 0x2138, tmp, SBI_MPHY);
5272
5273 tmp = intel_sbi_read(dev_priv, 0x203C, SBI_MPHY);
5274 tmp |= (0x3F << 8);
5275 intel_sbi_write(dev_priv, 0x203C, tmp, SBI_MPHY);
5276
5277 tmp = intel_sbi_read(dev_priv, 0x213C, SBI_MPHY);
5278 tmp |= (0x3F << 8);
5279 intel_sbi_write(dev_priv, 0x213C, tmp, SBI_MPHY);
5280 }
5281
5282 tmp = intel_sbi_read(dev_priv, 0x206C, SBI_MPHY);
5283 tmp |= (1 << 24) | (1 << 21) | (1 << 18);
5284 intel_sbi_write(dev_priv, 0x206C, tmp, SBI_MPHY);
5285
5286 tmp = intel_sbi_read(dev_priv, 0x216C, SBI_MPHY);
5287 tmp |= (1 << 24) | (1 << 21) | (1 << 18);
5288 intel_sbi_write(dev_priv, 0x216C, tmp, SBI_MPHY);
5289
5290 if (!is_sdv) {
5291 tmp = intel_sbi_read(dev_priv, 0x2080, SBI_MPHY);
5292 tmp &= ~(7 << 13);
5293 tmp |= (5 << 13);
5294 intel_sbi_write(dev_priv, 0x2080, tmp, SBI_MPHY);
5295
5296 tmp = intel_sbi_read(dev_priv, 0x2180, SBI_MPHY);
5297 tmp &= ~(7 << 13);
5298 tmp |= (5 << 13);
5299 intel_sbi_write(dev_priv, 0x2180, tmp, SBI_MPHY);
5300 }
5301
5302 tmp = intel_sbi_read(dev_priv, 0x208C, SBI_MPHY);
5303 tmp &= ~0xFF;
5304 tmp |= 0x1C;
5305 intel_sbi_write(dev_priv, 0x208C, tmp, SBI_MPHY);
5306
5307 tmp = intel_sbi_read(dev_priv, 0x218C, SBI_MPHY);
5308 tmp &= ~0xFF;
5309 tmp |= 0x1C;
5310 intel_sbi_write(dev_priv, 0x218C, tmp, SBI_MPHY);
5311
5312 tmp = intel_sbi_read(dev_priv, 0x2098, SBI_MPHY);
5313 tmp &= ~(0xFF << 16);
5314 tmp |= (0x1C << 16);
5315 intel_sbi_write(dev_priv, 0x2098, tmp, SBI_MPHY);
5316
5317 tmp = intel_sbi_read(dev_priv, 0x2198, SBI_MPHY);
5318 tmp &= ~(0xFF << 16);
5319 tmp |= (0x1C << 16);
5320 intel_sbi_write(dev_priv, 0x2198, tmp, SBI_MPHY);
5321
5322 if (!is_sdv) {
5323 tmp = intel_sbi_read(dev_priv, 0x20C4, SBI_MPHY);
5324 tmp |= (1 << 27);
5325 intel_sbi_write(dev_priv, 0x20C4, tmp, SBI_MPHY);
5326
5327 tmp = intel_sbi_read(dev_priv, 0x21C4, SBI_MPHY);
5328 tmp |= (1 << 27);
5329 intel_sbi_write(dev_priv, 0x21C4, tmp, SBI_MPHY);
5330
5331 tmp = intel_sbi_read(dev_priv, 0x20EC, SBI_MPHY);
5332 tmp &= ~(0xF << 28);
5333 tmp |= (4 << 28);
5334 intel_sbi_write(dev_priv, 0x20EC, tmp, SBI_MPHY);
5335
5336 tmp = intel_sbi_read(dev_priv, 0x21EC, SBI_MPHY);
5337 tmp &= ~(0xF << 28);
5338 tmp |= (4 << 28);
5339 intel_sbi_write(dev_priv, 0x21EC, tmp, SBI_MPHY);
5340 }
5341
5342 /* ULT uses SBI_GEN0, but ULT doesn't have VGA, so we don't care. */
5343 tmp = intel_sbi_read(dev_priv, SBI_DBUFF0, SBI_ICLK);
5344 tmp |= SBI_DBUFF0_ENABLE;
5345 intel_sbi_write(dev_priv, SBI_DBUFF0, tmp, SBI_ICLK);
Daniel Vetterc00db242013-01-22 15:33:27 +01005346
5347 mutex_unlock(&dev_priv->dpio_lock);
Paulo Zanonidde86e22012-12-01 12:04:25 -02005348}
5349
5350/*
5351 * Initialize reference clocks when the driver loads
5352 */
5353void intel_init_pch_refclk(struct drm_device *dev)
5354{
5355 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev))
5356 ironlake_init_pch_refclk(dev);
5357 else if (HAS_PCH_LPT(dev))
5358 lpt_init_pch_refclk(dev);
5359}
5360
Jesse Barnesd9d444c2011-09-02 13:03:05 -07005361static int ironlake_get_refclk(struct drm_crtc *crtc)
5362{
5363 struct drm_device *dev = crtc->dev;
5364 struct drm_i915_private *dev_priv = dev->dev_private;
5365 struct intel_encoder *encoder;
Jesse Barnesd9d444c2011-09-02 13:03:05 -07005366 int num_connectors = 0;
5367 bool is_lvds = false;
5368
Daniel Vetter6c2b7c12012-07-05 09:50:24 +02005369 for_each_encoder_on_crtc(dev, crtc, encoder) {
Jesse Barnesd9d444c2011-09-02 13:03:05 -07005370 switch (encoder->type) {
5371 case INTEL_OUTPUT_LVDS:
5372 is_lvds = true;
5373 break;
Jesse Barnesd9d444c2011-09-02 13:03:05 -07005374 }
5375 num_connectors++;
5376 }
5377
5378 if (is_lvds && intel_panel_use_ssc(dev_priv) && num_connectors < 2) {
5379 DRM_DEBUG_KMS("using SSC reference clock of %d MHz\n",
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03005380 dev_priv->vbt.lvds_ssc_freq);
5381 return dev_priv->vbt.lvds_ssc_freq * 1000;
Jesse Barnesd9d444c2011-09-02 13:03:05 -07005382 }
5383
5384 return 120000;
5385}
5386
Daniel Vetter6ff93602013-04-19 11:24:36 +02005387static void ironlake_set_pipeconf(struct drm_crtc *crtc)
Paulo Zanonic8203562012-09-12 10:06:29 -03005388{
5389 struct drm_i915_private *dev_priv = crtc->dev->dev_private;
5390 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5391 int pipe = intel_crtc->pipe;
5392 uint32_t val;
5393
5394 val = I915_READ(PIPECONF(pipe));
5395
Daniel Vetterdfd07d72012-12-17 11:21:38 +01005396 val &= ~PIPECONF_BPC_MASK;
Daniel Vetter965e0c42013-03-27 00:44:57 +01005397 switch (intel_crtc->config.pipe_bpp) {
Paulo Zanonic8203562012-09-12 10:06:29 -03005398 case 18:
Daniel Vetterdfd07d72012-12-17 11:21:38 +01005399 val |= PIPECONF_6BPC;
Paulo Zanonic8203562012-09-12 10:06:29 -03005400 break;
5401 case 24:
Daniel Vetterdfd07d72012-12-17 11:21:38 +01005402 val |= PIPECONF_8BPC;
Paulo Zanonic8203562012-09-12 10:06:29 -03005403 break;
5404 case 30:
Daniel Vetterdfd07d72012-12-17 11:21:38 +01005405 val |= PIPECONF_10BPC;
Paulo Zanonic8203562012-09-12 10:06:29 -03005406 break;
5407 case 36:
Daniel Vetterdfd07d72012-12-17 11:21:38 +01005408 val |= PIPECONF_12BPC;
Paulo Zanonic8203562012-09-12 10:06:29 -03005409 break;
5410 default:
Paulo Zanonicc769b62012-09-20 18:36:03 -03005411 /* Case prevented by intel_choose_pipe_bpp_dither. */
5412 BUG();
Paulo Zanonic8203562012-09-12 10:06:29 -03005413 }
5414
5415 val &= ~(PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_MASK);
Daniel Vetterd8b32242013-04-25 17:54:44 +02005416 if (intel_crtc->config.dither)
Paulo Zanonic8203562012-09-12 10:06:29 -03005417 val |= (PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_SP);
5418
5419 val &= ~PIPECONF_INTERLACE_MASK;
Daniel Vetter6ff93602013-04-19 11:24:36 +02005420 if (intel_crtc->config.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
Paulo Zanonic8203562012-09-12 10:06:29 -03005421 val |= PIPECONF_INTERLACED_ILK;
5422 else
5423 val |= PIPECONF_PROGRESSIVE;
5424
Daniel Vetter50f3b012013-03-27 00:44:56 +01005425 if (intel_crtc->config.limited_color_range)
Ville Syrjälä3685a8f2013-01-17 16:31:28 +02005426 val |= PIPECONF_COLOR_RANGE_SELECT;
5427 else
5428 val &= ~PIPECONF_COLOR_RANGE_SELECT;
5429
Paulo Zanonic8203562012-09-12 10:06:29 -03005430 I915_WRITE(PIPECONF(pipe), val);
5431 POSTING_READ(PIPECONF(pipe));
5432}
5433
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02005434/*
5435 * Set up the pipe CSC unit.
5436 *
5437 * Currently only full range RGB to limited range RGB conversion
5438 * is supported, but eventually this should handle various
5439 * RGB<->YCbCr scenarios as well.
5440 */
Daniel Vetter50f3b012013-03-27 00:44:56 +01005441static void intel_set_pipe_csc(struct drm_crtc *crtc)
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02005442{
5443 struct drm_device *dev = crtc->dev;
5444 struct drm_i915_private *dev_priv = dev->dev_private;
5445 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5446 int pipe = intel_crtc->pipe;
5447 uint16_t coeff = 0x7800; /* 1.0 */
5448
5449 /*
5450 * TODO: Check what kind of values actually come out of the pipe
5451 * with these coeff/postoff values and adjust to get the best
5452 * accuracy. Perhaps we even need to take the bpc value into
5453 * consideration.
5454 */
5455
Daniel Vetter50f3b012013-03-27 00:44:56 +01005456 if (intel_crtc->config.limited_color_range)
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02005457 coeff = ((235 - 16) * (1 << 12) / 255) & 0xff8; /* 0.xxx... */
5458
5459 /*
5460 * GY/GU and RY/RU should be the other way around according
5461 * to BSpec, but reality doesn't agree. Just set them up in
5462 * a way that results in the correct picture.
5463 */
5464 I915_WRITE(PIPE_CSC_COEFF_RY_GY(pipe), coeff << 16);
5465 I915_WRITE(PIPE_CSC_COEFF_BY(pipe), 0);
5466
5467 I915_WRITE(PIPE_CSC_COEFF_RU_GU(pipe), coeff);
5468 I915_WRITE(PIPE_CSC_COEFF_BU(pipe), 0);
5469
5470 I915_WRITE(PIPE_CSC_COEFF_RV_GV(pipe), 0);
5471 I915_WRITE(PIPE_CSC_COEFF_BV(pipe), coeff << 16);
5472
5473 I915_WRITE(PIPE_CSC_PREOFF_HI(pipe), 0);
5474 I915_WRITE(PIPE_CSC_PREOFF_ME(pipe), 0);
5475 I915_WRITE(PIPE_CSC_PREOFF_LO(pipe), 0);
5476
5477 if (INTEL_INFO(dev)->gen > 6) {
5478 uint16_t postoff = 0;
5479
Daniel Vetter50f3b012013-03-27 00:44:56 +01005480 if (intel_crtc->config.limited_color_range)
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02005481 postoff = (16 * (1 << 13) / 255) & 0x1fff;
5482
5483 I915_WRITE(PIPE_CSC_POSTOFF_HI(pipe), postoff);
5484 I915_WRITE(PIPE_CSC_POSTOFF_ME(pipe), postoff);
5485 I915_WRITE(PIPE_CSC_POSTOFF_LO(pipe), postoff);
5486
5487 I915_WRITE(PIPE_CSC_MODE(pipe), 0);
5488 } else {
5489 uint32_t mode = CSC_MODE_YUV_TO_RGB;
5490
Daniel Vetter50f3b012013-03-27 00:44:56 +01005491 if (intel_crtc->config.limited_color_range)
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02005492 mode |= CSC_BLACK_SCREEN_OFFSET;
5493
5494 I915_WRITE(PIPE_CSC_MODE(pipe), mode);
5495 }
5496}
5497
Daniel Vetter6ff93602013-04-19 11:24:36 +02005498static void haswell_set_pipeconf(struct drm_crtc *crtc)
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03005499{
5500 struct drm_i915_private *dev_priv = crtc->dev->dev_private;
5501 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter3b117c82013-04-17 20:15:07 +02005502 enum transcoder cpu_transcoder = intel_crtc->config.cpu_transcoder;
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03005503 uint32_t val;
5504
Paulo Zanoni702e7a52012-10-23 18:29:59 -02005505 val = I915_READ(PIPECONF(cpu_transcoder));
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03005506
5507 val &= ~(PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_MASK);
Daniel Vetterd8b32242013-04-25 17:54:44 +02005508 if (intel_crtc->config.dither)
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03005509 val |= (PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_SP);
5510
5511 val &= ~PIPECONF_INTERLACE_MASK_HSW;
Daniel Vetter6ff93602013-04-19 11:24:36 +02005512 if (intel_crtc->config.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03005513 val |= PIPECONF_INTERLACED_ILK;
5514 else
5515 val |= PIPECONF_PROGRESSIVE;
5516
Paulo Zanoni702e7a52012-10-23 18:29:59 -02005517 I915_WRITE(PIPECONF(cpu_transcoder), val);
5518 POSTING_READ(PIPECONF(cpu_transcoder));
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03005519}
5520
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03005521static bool ironlake_compute_clocks(struct drm_crtc *crtc,
5522 struct drm_display_mode *adjusted_mode,
5523 intel_clock_t *clock,
5524 bool *has_reduced_clock,
5525 intel_clock_t *reduced_clock)
5526{
5527 struct drm_device *dev = crtc->dev;
5528 struct drm_i915_private *dev_priv = dev->dev_private;
5529 struct intel_encoder *intel_encoder;
5530 int refclk;
5531 const intel_limit_t *limit;
Daniel Vettera16af722013-04-30 14:01:44 +02005532 bool ret, is_lvds = false;
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03005533
5534 for_each_encoder_on_crtc(dev, crtc, intel_encoder) {
5535 switch (intel_encoder->type) {
5536 case INTEL_OUTPUT_LVDS:
5537 is_lvds = true;
5538 break;
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03005539 }
5540 }
5541
5542 refclk = ironlake_get_refclk(crtc);
5543
5544 /*
5545 * Returns a set of divisors for the desired target clock with the given
5546 * refclk, or FALSE. The returned values represent the clock equation:
5547 * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2.
5548 */
5549 limit = intel_limit(crtc, refclk);
5550 ret = limit->find_pll(limit, crtc, adjusted_mode->clock, refclk, NULL,
5551 clock);
5552 if (!ret)
5553 return false;
5554
5555 if (is_lvds && dev_priv->lvds_downclock_avail) {
5556 /*
5557 * Ensure we match the reduced clock's P to the target clock.
5558 * If the clocks don't match, we can't switch the display clock
5559 * by using the FP0/FP1. In such case we will disable the LVDS
5560 * downclock feature.
5561 */
5562 *has_reduced_clock = limit->find_pll(limit, crtc,
5563 dev_priv->lvds_downclock,
5564 refclk,
5565 clock,
5566 reduced_clock);
5567 }
5568
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03005569 return true;
5570}
5571
Daniel Vetter01a415f2012-10-27 15:58:40 +02005572static void cpt_enable_fdi_bc_bifurcation(struct drm_device *dev)
5573{
5574 struct drm_i915_private *dev_priv = dev->dev_private;
5575 uint32_t temp;
5576
5577 temp = I915_READ(SOUTH_CHICKEN1);
5578 if (temp & FDI_BC_BIFURCATION_SELECT)
5579 return;
5580
5581 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_B)) & FDI_RX_ENABLE);
5582 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_C)) & FDI_RX_ENABLE);
5583
5584 temp |= FDI_BC_BIFURCATION_SELECT;
5585 DRM_DEBUG_KMS("enabling fdi C rx\n");
5586 I915_WRITE(SOUTH_CHICKEN1, temp);
5587 POSTING_READ(SOUTH_CHICKEN1);
5588}
5589
Daniel Vetterebfd86f2013-04-19 11:24:44 +02005590static void ivybridge_update_fdi_bc_bifurcation(struct intel_crtc *intel_crtc)
5591{
5592 struct drm_device *dev = intel_crtc->base.dev;
5593 struct drm_i915_private *dev_priv = dev->dev_private;
5594
5595 switch (intel_crtc->pipe) {
5596 case PIPE_A:
5597 break;
5598 case PIPE_B:
5599 if (intel_crtc->config.fdi_lanes > 2)
5600 WARN_ON(I915_READ(SOUTH_CHICKEN1) & FDI_BC_BIFURCATION_SELECT);
5601 else
5602 cpt_enable_fdi_bc_bifurcation(dev);
5603
5604 break;
5605 case PIPE_C:
Daniel Vetter01a415f2012-10-27 15:58:40 +02005606 cpt_enable_fdi_bc_bifurcation(dev);
5607
Daniel Vetterebfd86f2013-04-19 11:24:44 +02005608 break;
Daniel Vetter01a415f2012-10-27 15:58:40 +02005609 default:
5610 BUG();
5611 }
5612}
5613
Paulo Zanonid4b19312012-11-29 11:29:32 -02005614int ironlake_get_lanes_required(int target_clock, int link_bw, int bpp)
5615{
5616 /*
5617 * Account for spread spectrum to avoid
5618 * oversubscribing the link. Max center spread
5619 * is 2.5%; use 5% for safety's sake.
5620 */
5621 u32 bps = target_clock * bpp * 21 / 20;
5622 return bps / (link_bw * 8) + 1;
5623}
5624
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005625static bool ironlake_needs_fb_cb_tune(struct dpll *dpll, int factor)
5626{
5627 return i9xx_dpll_compute_m(dpll) < factor * dpll->n;
5628}
5629
Paulo Zanonide13a2e2012-09-20 18:36:05 -03005630static uint32_t ironlake_compute_dpll(struct intel_crtc *intel_crtc,
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005631 u32 *fp,
Daniel Vetter9a7c7892013-04-04 22:20:34 +02005632 intel_clock_t *reduced_clock, u32 *fp2)
Paulo Zanonide13a2e2012-09-20 18:36:05 -03005633{
5634 struct drm_crtc *crtc = &intel_crtc->base;
5635 struct drm_device *dev = crtc->dev;
5636 struct drm_i915_private *dev_priv = dev->dev_private;
5637 struct intel_encoder *intel_encoder;
5638 uint32_t dpll;
Daniel Vetter6cc5f342013-03-27 00:44:53 +01005639 int factor, num_connectors = 0;
Daniel Vetter09ede542013-04-30 14:01:45 +02005640 bool is_lvds = false, is_sdvo = false;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03005641
5642 for_each_encoder_on_crtc(dev, crtc, intel_encoder) {
5643 switch (intel_encoder->type) {
5644 case INTEL_OUTPUT_LVDS:
5645 is_lvds = true;
5646 break;
5647 case INTEL_OUTPUT_SDVO:
5648 case INTEL_OUTPUT_HDMI:
5649 is_sdvo = true;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03005650 break;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03005651 }
5652
5653 num_connectors++;
5654 }
Jesse Barnes79e53942008-11-07 14:24:08 -08005655
Chris Wilsonc1858122010-12-03 21:35:48 +00005656 /* Enable autotuning of the PLL clock (if permissible) */
Eric Anholt8febb292011-03-30 13:01:07 -07005657 factor = 21;
5658 if (is_lvds) {
5659 if ((intel_panel_use_ssc(dev_priv) &&
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03005660 dev_priv->vbt.lvds_ssc_freq == 100) ||
Daniel Vetterf0b44052013-04-04 22:20:33 +02005661 (HAS_PCH_IBX(dev) && intel_is_dual_link_lvds(dev)))
Eric Anholt8febb292011-03-30 13:01:07 -07005662 factor = 25;
Daniel Vetter09ede542013-04-30 14:01:45 +02005663 } else if (intel_crtc->config.sdvo_tv_clock)
Eric Anholt8febb292011-03-30 13:01:07 -07005664 factor = 20;
Chris Wilsonc1858122010-12-03 21:35:48 +00005665
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005666 if (ironlake_needs_fb_cb_tune(&intel_crtc->config.dpll, factor))
Daniel Vetter7d0ac5b2013-04-04 22:20:32 +02005667 *fp |= FP_CB_TUNE;
Chris Wilsonc1858122010-12-03 21:35:48 +00005668
Daniel Vetter9a7c7892013-04-04 22:20:34 +02005669 if (fp2 && (reduced_clock->m < factor * reduced_clock->n))
5670 *fp2 |= FP_CB_TUNE;
5671
Chris Wilson5eddb702010-09-11 13:48:45 +01005672 dpll = 0;
Zhenyu Wang2c072452009-06-05 15:38:42 +08005673
Eric Anholta07d6782011-03-30 13:01:08 -07005674 if (is_lvds)
5675 dpll |= DPLLB_MODE_LVDS;
5676 else
5677 dpll |= DPLLB_MODE_DAC_SERIAL;
Daniel Vetter198a037f2013-04-19 11:14:37 +02005678
5679 if (intel_crtc->config.pixel_multiplier > 1) {
5680 dpll |= (intel_crtc->config.pixel_multiplier - 1)
5681 << PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT;
Eric Anholta07d6782011-03-30 13:01:08 -07005682 }
Daniel Vetter198a037f2013-04-19 11:14:37 +02005683
5684 if (is_sdvo)
5685 dpll |= DPLL_DVO_HIGH_SPEED;
Daniel Vetter9566e9a2013-04-19 11:14:36 +02005686 if (intel_crtc->config.has_dp_encoder)
Eric Anholta07d6782011-03-30 13:01:08 -07005687 dpll |= DPLL_DVO_HIGH_SPEED;
Jesse Barnes79e53942008-11-07 14:24:08 -08005688
Eric Anholta07d6782011-03-30 13:01:08 -07005689 /* compute bitmask from p1 value */
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005690 dpll |= (1 << (intel_crtc->config.dpll.p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
Eric Anholta07d6782011-03-30 13:01:08 -07005691 /* also FPA1 */
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005692 dpll |= (1 << (intel_crtc->config.dpll.p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
Eric Anholta07d6782011-03-30 13:01:08 -07005693
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005694 switch (intel_crtc->config.dpll.p2) {
Eric Anholta07d6782011-03-30 13:01:08 -07005695 case 5:
5696 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
5697 break;
5698 case 7:
5699 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
5700 break;
5701 case 10:
5702 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
5703 break;
5704 case 14:
5705 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
5706 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08005707 }
5708
Daniel Vetterb4c09f32013-04-30 14:01:42 +02005709 if (is_lvds && intel_panel_use_ssc(dev_priv) && num_connectors < 2)
Kristian Høgsberg43565a02009-02-13 20:56:52 -05005710 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
Jesse Barnes79e53942008-11-07 14:24:08 -08005711 else
5712 dpll |= PLL_REF_INPUT_DREFCLK;
5713
Paulo Zanonide13a2e2012-09-20 18:36:05 -03005714 return dpll;
5715}
5716
Jesse Barnes79e53942008-11-07 14:24:08 -08005717static int ironlake_crtc_mode_set(struct drm_crtc *crtc,
Jesse Barnes79e53942008-11-07 14:24:08 -08005718 int x, int y,
Daniel Vetter94352cf2012-07-05 22:51:56 +02005719 struct drm_framebuffer *fb)
Jesse Barnes79e53942008-11-07 14:24:08 -08005720{
5721 struct drm_device *dev = crtc->dev;
5722 struct drm_i915_private *dev_priv = dev->dev_private;
5723 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01005724 struct drm_display_mode *adjusted_mode =
5725 &intel_crtc->config.adjusted_mode;
5726 struct drm_display_mode *mode = &intel_crtc->config.requested_mode;
Jesse Barnes79e53942008-11-07 14:24:08 -08005727 int pipe = intel_crtc->pipe;
5728 int plane = intel_crtc->plane;
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03005729 int num_connectors = 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08005730 intel_clock_t clock, reduced_clock;
Daniel Vettercbbab5b2013-04-19 11:14:31 +02005731 u32 dpll = 0, fp = 0, fp2 = 0;
Paulo Zanonie2f12b02012-09-20 18:36:06 -03005732 bool ok, has_reduced_clock = false;
Daniel Vetter8b470472013-03-28 10:41:59 +01005733 bool is_lvds = false;
Paulo Zanonif48d8f22012-09-20 18:36:04 -03005734 struct intel_encoder *encoder;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03005735 int ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08005736
5737 for_each_encoder_on_crtc(dev, crtc, encoder) {
5738 switch (encoder->type) {
5739 case INTEL_OUTPUT_LVDS:
5740 is_lvds = true;
5741 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08005742 }
5743
5744 num_connectors++;
5745 }
5746
Paulo Zanoni5dc52982012-10-05 12:05:56 -03005747 WARN(!(HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev)),
5748 "Unexpected PCH type %d\n", INTEL_PCH_TYPE(dev));
5749
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03005750 ok = ironlake_compute_clocks(crtc, adjusted_mode, &clock,
5751 &has_reduced_clock, &reduced_clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08005752 if (!ok) {
5753 DRM_ERROR("Couldn't find PLL settings for mode!\n");
5754 return -EINVAL;
5755 }
Daniel Vetterf47709a2013-03-28 10:42:02 +01005756 /* Compat-code for transition, will disappear. */
5757 if (!intel_crtc->config.clock_set) {
5758 intel_crtc->config.dpll.n = clock.n;
5759 intel_crtc->config.dpll.m1 = clock.m1;
5760 intel_crtc->config.dpll.m2 = clock.m2;
5761 intel_crtc->config.dpll.p1 = clock.p1;
5762 intel_crtc->config.dpll.p2 = clock.p2;
5763 }
Jesse Barnes79e53942008-11-07 14:24:08 -08005764
5765 /* Ensure that the cursor is valid for the new mode before changing... */
5766 intel_crtc_update_cursor(crtc, true);
5767
Paulo Zanoni5dc52982012-10-05 12:05:56 -03005768 /* CPU eDP is the only output that doesn't need a PCH PLL of its own. */
Daniel Vetter8b470472013-03-28 10:41:59 +01005769 if (intel_crtc->config.has_pch_encoder) {
Jesse Barnesee7b9f92012-04-20 17:11:53 +01005770 struct intel_pch_pll *pll;
Chris Wilson5eddb702010-09-11 13:48:45 +01005771
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005772 fp = i9xx_dpll_compute_fp(&intel_crtc->config.dpll);
Daniel Vettercbbab5b2013-04-19 11:14:31 +02005773 if (has_reduced_clock)
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005774 fp2 = i9xx_dpll_compute_fp(&reduced_clock);
Daniel Vettercbbab5b2013-04-19 11:14:31 +02005775
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005776 dpll = ironlake_compute_dpll(intel_crtc,
Daniel Vettercbbab5b2013-04-19 11:14:31 +02005777 &fp, &reduced_clock,
5778 has_reduced_clock ? &fp2 : NULL);
5779
Jesse Barnesee7b9f92012-04-20 17:11:53 +01005780 pll = intel_get_pch_pll(intel_crtc, dpll, fp);
5781 if (pll == NULL) {
Ville Syrjälä84f44ce2013-04-17 17:48:49 +03005782 DRM_DEBUG_DRIVER("failed to find PLL for pipe %c\n",
5783 pipe_name(pipe));
Jesse Barnes4b645f12011-10-12 09:51:31 -07005784 return -EINVAL;
5785 }
Jesse Barnesee7b9f92012-04-20 17:11:53 +01005786 } else
5787 intel_put_pch_pll(intel_crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08005788
Daniel Vetter03afc4a2013-04-02 23:42:31 +02005789 if (intel_crtc->config.has_dp_encoder)
5790 intel_dp_set_m_n(intel_crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08005791
Daniel Vetterdafd2262012-11-26 17:22:07 +01005792 for_each_encoder_on_crtc(dev, crtc, encoder)
5793 if (encoder->pre_pll_enable)
5794 encoder->pre_pll_enable(encoder);
Jesse Barnes79e53942008-11-07 14:24:08 -08005795
Jesse Barnesee7b9f92012-04-20 17:11:53 +01005796 if (intel_crtc->pch_pll) {
5797 I915_WRITE(intel_crtc->pch_pll->pll_reg, dpll);
Chris Wilson5eddb702010-09-11 13:48:45 +01005798
Zhenyu Wang32f9d652009-07-24 01:00:32 +08005799 /* Wait for the clocks to stabilize. */
Jesse Barnesee7b9f92012-04-20 17:11:53 +01005800 POSTING_READ(intel_crtc->pch_pll->pll_reg);
Zhenyu Wang32f9d652009-07-24 01:00:32 +08005801 udelay(150);
5802
Eric Anholt8febb292011-03-30 13:01:07 -07005803 /* The pixel multiplier can only be updated once the
5804 * DPLL is enabled and the clocks are stable.
5805 *
5806 * So write it again.
5807 */
Jesse Barnesee7b9f92012-04-20 17:11:53 +01005808 I915_WRITE(intel_crtc->pch_pll->pll_reg, dpll);
Jesse Barnes79e53942008-11-07 14:24:08 -08005809 }
Jesse Barnes79e53942008-11-07 14:24:08 -08005810
Chris Wilson5eddb702010-09-11 13:48:45 +01005811 intel_crtc->lowfreq_avail = false;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01005812 if (intel_crtc->pch_pll) {
Jesse Barnes4b645f12011-10-12 09:51:31 -07005813 if (is_lvds && has_reduced_clock && i915_powersave) {
Jesse Barnesee7b9f92012-04-20 17:11:53 +01005814 I915_WRITE(intel_crtc->pch_pll->fp1_reg, fp2);
Jesse Barnes4b645f12011-10-12 09:51:31 -07005815 intel_crtc->lowfreq_avail = true;
Jesse Barnes4b645f12011-10-12 09:51:31 -07005816 } else {
Jesse Barnesee7b9f92012-04-20 17:11:53 +01005817 I915_WRITE(intel_crtc->pch_pll->fp1_reg, fp);
Jesse Barnes652c3932009-08-17 13:31:43 -07005818 }
5819 }
5820
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005821 intel_set_pipe_timings(intel_crtc, mode, adjusted_mode);
Krzysztof Halasa734b4152010-05-25 18:41:46 +02005822
Daniel Vetterca3a0ff2013-02-14 16:54:22 +01005823 if (intel_crtc->config.has_pch_encoder) {
Daniel Vetterca3a0ff2013-02-14 16:54:22 +01005824 intel_cpu_transcoder_set_m_n(intel_crtc,
5825 &intel_crtc->config.fdi_m_n);
5826 }
Chris Wilson5eddb702010-09-11 13:48:45 +01005827
Daniel Vetterebfd86f2013-04-19 11:24:44 +02005828 if (IS_IVYBRIDGE(dev))
5829 ivybridge_update_fdi_bc_bifurcation(intel_crtc);
Zhenyu Wang2c072452009-06-05 15:38:42 +08005830
Daniel Vetter6ff93602013-04-19 11:24:36 +02005831 ironlake_set_pipeconf(crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08005832
Paulo Zanonia1f9e772012-09-12 10:06:32 -03005833 /* Set up the display plane register */
5834 I915_WRITE(DSPCNTR(plane), DISPPLANE_GAMMA_ENABLE);
Jesse Barnesb24e7172011-01-04 15:09:30 -08005835 POSTING_READ(DSPCNTR(plane));
Jesse Barnes79e53942008-11-07 14:24:08 -08005836
Daniel Vetter94352cf2012-07-05 22:51:56 +02005837 ret = intel_pipe_set_base(crtc, x, y, fb);
Shaohua Li7662c8b2009-06-26 11:23:55 +08005838
5839 intel_update_watermarks(dev);
5840
Daniel Vetter1857e1d2013-04-29 19:34:16 +02005841 return ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08005842}
5843
Daniel Vetter72419202013-04-04 13:28:53 +02005844static void ironlake_get_fdi_m_n_config(struct intel_crtc *crtc,
5845 struct intel_crtc_config *pipe_config)
5846{
5847 struct drm_device *dev = crtc->base.dev;
5848 struct drm_i915_private *dev_priv = dev->dev_private;
5849 enum transcoder transcoder = pipe_config->cpu_transcoder;
5850
5851 pipe_config->fdi_m_n.link_m = I915_READ(PIPE_LINK_M1(transcoder));
5852 pipe_config->fdi_m_n.link_n = I915_READ(PIPE_LINK_N1(transcoder));
5853 pipe_config->fdi_m_n.gmch_m = I915_READ(PIPE_DATA_M1(transcoder))
5854 & ~TU_SIZE_MASK;
5855 pipe_config->fdi_m_n.gmch_n = I915_READ(PIPE_DATA_N1(transcoder));
5856 pipe_config->fdi_m_n.tu = ((I915_READ(PIPE_DATA_M1(transcoder))
5857 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
5858}
5859
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02005860static void ironlake_get_pfit_config(struct intel_crtc *crtc,
5861 struct intel_crtc_config *pipe_config)
5862{
5863 struct drm_device *dev = crtc->base.dev;
5864 struct drm_i915_private *dev_priv = dev->dev_private;
5865 uint32_t tmp;
5866
5867 tmp = I915_READ(PF_CTL(crtc->pipe));
5868
5869 if (tmp & PF_ENABLE) {
5870 pipe_config->pch_pfit.pos = I915_READ(PF_WIN_POS(crtc->pipe));
5871 pipe_config->pch_pfit.size = I915_READ(PF_WIN_SZ(crtc->pipe));
5872 }
5873}
5874
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01005875static bool ironlake_get_pipe_config(struct intel_crtc *crtc,
5876 struct intel_crtc_config *pipe_config)
5877{
5878 struct drm_device *dev = crtc->base.dev;
5879 struct drm_i915_private *dev_priv = dev->dev_private;
5880 uint32_t tmp;
5881
Daniel Vettereccb1402013-05-22 00:50:22 +02005882 pipe_config->cpu_transcoder = crtc->pipe;
5883
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01005884 tmp = I915_READ(PIPECONF(crtc->pipe));
5885 if (!(tmp & PIPECONF_ENABLE))
5886 return false;
5887
Daniel Vetterab9412b2013-05-03 11:49:46 +02005888 if (I915_READ(PCH_TRANSCONF(crtc->pipe)) & TRANS_ENABLE) {
Daniel Vetter88adfff2013-03-28 10:42:01 +01005889 pipe_config->has_pch_encoder = true;
5890
Daniel Vetter627eb5a2013-04-29 19:33:42 +02005891 tmp = I915_READ(FDI_RX_CTL(crtc->pipe));
5892 pipe_config->fdi_lanes = ((FDI_DP_PORT_WIDTH_MASK & tmp) >>
5893 FDI_DP_PORT_WIDTH_SHIFT) + 1;
Daniel Vetter72419202013-04-04 13:28:53 +02005894
5895 ironlake_get_fdi_m_n_config(crtc, pipe_config);
Daniel Vetter627eb5a2013-04-29 19:33:42 +02005896 }
5897
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02005898 intel_get_pipe_timings(crtc, pipe_config);
5899
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02005900 ironlake_get_pfit_config(crtc, pipe_config);
5901
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01005902 return true;
5903}
5904
Daniel Vetterd6dd9eb2013-01-29 16:35:20 -02005905static void haswell_modeset_global_resources(struct drm_device *dev)
5906{
Daniel Vetterd6dd9eb2013-01-29 16:35:20 -02005907 bool enable = false;
5908 struct intel_crtc *crtc;
Daniel Vetterd6dd9eb2013-01-29 16:35:20 -02005909
5910 list_for_each_entry(crtc, &dev->mode_config.crtc_list, base.head) {
Daniel Vettere7a639c2013-05-31 17:49:17 +02005911 if (!crtc->base.enabled)
5912 continue;
Daniel Vetterd6dd9eb2013-01-29 16:35:20 -02005913
Daniel Vettere7a639c2013-05-31 17:49:17 +02005914 if (crtc->pipe != PIPE_A || crtc->config.pch_pfit.size ||
5915 crtc->config.cpu_transcoder != TRANSCODER_EDP)
Daniel Vetterd6dd9eb2013-01-29 16:35:20 -02005916 enable = true;
5917 }
5918
Daniel Vetterd6dd9eb2013-01-29 16:35:20 -02005919 intel_set_power_well(dev, enable);
5920}
5921
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03005922static int haswell_crtc_mode_set(struct drm_crtc *crtc,
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03005923 int x, int y,
5924 struct drm_framebuffer *fb)
5925{
5926 struct drm_device *dev = crtc->dev;
5927 struct drm_i915_private *dev_priv = dev->dev_private;
5928 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01005929 struct drm_display_mode *adjusted_mode =
5930 &intel_crtc->config.adjusted_mode;
5931 struct drm_display_mode *mode = &intel_crtc->config.requested_mode;
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03005932 int pipe = intel_crtc->pipe;
5933 int plane = intel_crtc->plane;
5934 int num_connectors = 0;
Daniel Vetter8b470472013-03-28 10:41:59 +01005935 bool is_cpu_edp = false;
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03005936 struct intel_encoder *encoder;
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03005937 int ret;
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03005938
5939 for_each_encoder_on_crtc(dev, crtc, encoder) {
5940 switch (encoder->type) {
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03005941 case INTEL_OUTPUT_EDP:
Imre Deakd8e8b582013-05-08 13:14:03 +03005942 if (enc_to_dig_port(&encoder->base)->port == PORT_A)
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03005943 is_cpu_edp = true;
5944 break;
5945 }
5946
5947 num_connectors++;
5948 }
5949
Paulo Zanoni5dc52982012-10-05 12:05:56 -03005950 WARN(num_connectors != 1, "%d connectors attached to pipe %c\n",
5951 num_connectors, pipe_name(pipe));
5952
Paulo Zanoni6441ab52012-10-05 12:05:58 -03005953 if (!intel_ddi_pll_mode_set(crtc, adjusted_mode->clock))
5954 return -EINVAL;
5955
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03005956 /* Ensure that the cursor is valid for the new mode before changing... */
5957 intel_crtc_update_cursor(crtc, true);
5958
Daniel Vetter03afc4a2013-04-02 23:42:31 +02005959 if (intel_crtc->config.has_dp_encoder)
5960 intel_dp_set_m_n(intel_crtc);
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03005961
5962 intel_crtc->lowfreq_avail = false;
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03005963
5964 intel_set_pipe_timings(intel_crtc, mode, adjusted_mode);
5965
Daniel Vetterca3a0ff2013-02-14 16:54:22 +01005966 if (intel_crtc->config.has_pch_encoder) {
Daniel Vetterca3a0ff2013-02-14 16:54:22 +01005967 intel_cpu_transcoder_set_m_n(intel_crtc,
5968 &intel_crtc->config.fdi_m_n);
5969 }
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03005970
Daniel Vetter6ff93602013-04-19 11:24:36 +02005971 haswell_set_pipeconf(crtc);
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03005972
Daniel Vetter50f3b012013-03-27 00:44:56 +01005973 intel_set_pipe_csc(crtc);
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02005974
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03005975 /* Set up the display plane register */
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02005976 I915_WRITE(DSPCNTR(plane), DISPPLANE_GAMMA_ENABLE | DISPPLANE_PIPE_CSC_ENABLE);
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03005977 POSTING_READ(DSPCNTR(plane));
5978
5979 ret = intel_pipe_set_base(crtc, x, y, fb);
5980
5981 intel_update_watermarks(dev);
5982
Jesse Barnes79e53942008-11-07 14:24:08 -08005983 return ret;
5984}
5985
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01005986static bool haswell_get_pipe_config(struct intel_crtc *crtc,
5987 struct intel_crtc_config *pipe_config)
5988{
5989 struct drm_device *dev = crtc->base.dev;
5990 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02005991 enum intel_display_power_domain pfit_domain;
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01005992 uint32_t tmp;
5993
Daniel Vettereccb1402013-05-22 00:50:22 +02005994 pipe_config->cpu_transcoder = crtc->pipe;
5995 tmp = I915_READ(TRANS_DDI_FUNC_CTL(TRANSCODER_EDP));
5996 if (tmp & TRANS_DDI_FUNC_ENABLE) {
5997 enum pipe trans_edp_pipe;
5998 switch (tmp & TRANS_DDI_EDP_INPUT_MASK) {
5999 default:
6000 WARN(1, "unknown pipe linked to edp transcoder\n");
6001 case TRANS_DDI_EDP_INPUT_A_ONOFF:
6002 case TRANS_DDI_EDP_INPUT_A_ON:
6003 trans_edp_pipe = PIPE_A;
6004 break;
6005 case TRANS_DDI_EDP_INPUT_B_ONOFF:
6006 trans_edp_pipe = PIPE_B;
6007 break;
6008 case TRANS_DDI_EDP_INPUT_C_ONOFF:
6009 trans_edp_pipe = PIPE_C;
6010 break;
6011 }
6012
6013 if (trans_edp_pipe == crtc->pipe)
6014 pipe_config->cpu_transcoder = TRANSCODER_EDP;
6015 }
6016
Paulo Zanonib97186f2013-05-03 12:15:36 -03006017 if (!intel_display_power_enabled(dev,
Daniel Vettereccb1402013-05-22 00:50:22 +02006018 POWER_DOMAIN_TRANSCODER(pipe_config->cpu_transcoder)))
Paulo Zanoni2bfce952013-04-18 16:35:40 -03006019 return false;
6020
Daniel Vettereccb1402013-05-22 00:50:22 +02006021 tmp = I915_READ(PIPECONF(pipe_config->cpu_transcoder));
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01006022 if (!(tmp & PIPECONF_ENABLE))
6023 return false;
6024
Daniel Vetter88adfff2013-03-28 10:42:01 +01006025 /*
Paulo Zanonif196e6b2013-04-18 16:35:41 -03006026 * Haswell has only FDI/PCH transcoder A. It is which is connected to
Daniel Vetter88adfff2013-03-28 10:42:01 +01006027 * DDI E. So just check whether this pipe is wired to DDI E and whether
6028 * the PCH transcoder is on.
6029 */
Daniel Vettereccb1402013-05-22 00:50:22 +02006030 tmp = I915_READ(TRANS_DDI_FUNC_CTL(pipe_config->cpu_transcoder));
Daniel Vetter88adfff2013-03-28 10:42:01 +01006031 if ((tmp & TRANS_DDI_PORT_MASK) == TRANS_DDI_SELECT_PORT(PORT_E) &&
Daniel Vetterab9412b2013-05-03 11:49:46 +02006032 I915_READ(LPT_TRANSCONF) & TRANS_ENABLE) {
Daniel Vetter88adfff2013-03-28 10:42:01 +01006033 pipe_config->has_pch_encoder = true;
6034
Daniel Vetter627eb5a2013-04-29 19:33:42 +02006035 tmp = I915_READ(FDI_RX_CTL(PIPE_A));
6036 pipe_config->fdi_lanes = ((FDI_DP_PORT_WIDTH_MASK & tmp) >>
6037 FDI_DP_PORT_WIDTH_SHIFT) + 1;
Daniel Vetter72419202013-04-04 13:28:53 +02006038
6039 ironlake_get_fdi_m_n_config(crtc, pipe_config);
Daniel Vetter627eb5a2013-04-29 19:33:42 +02006040 }
6041
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02006042 intel_get_pipe_timings(crtc, pipe_config);
6043
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02006044 pfit_domain = POWER_DOMAIN_PIPE_PANEL_FITTER(crtc->pipe);
6045 if (intel_display_power_enabled(dev, pfit_domain))
6046 ironlake_get_pfit_config(crtc, pipe_config);
6047
Paulo Zanoni42db64e2013-05-31 16:33:22 -03006048 pipe_config->ips_enabled = hsw_crtc_supports_ips(crtc) &&
6049 (I915_READ(IPS_CTL) & IPS_ENABLE);
6050
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01006051 return true;
6052}
6053
Eric Anholtf564048e2011-03-30 13:01:02 -07006054static int intel_crtc_mode_set(struct drm_crtc *crtc,
Eric Anholtf564048e2011-03-30 13:01:02 -07006055 int x, int y,
Daniel Vetter94352cf2012-07-05 22:51:56 +02006056 struct drm_framebuffer *fb)
Eric Anholtf564048e2011-03-30 13:01:02 -07006057{
6058 struct drm_device *dev = crtc->dev;
6059 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter9256aa12012-10-31 19:26:13 +01006060 struct drm_encoder_helper_funcs *encoder_funcs;
6061 struct intel_encoder *encoder;
Eric Anholt0b701d22011-03-30 13:01:03 -07006062 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01006063 struct drm_display_mode *adjusted_mode =
6064 &intel_crtc->config.adjusted_mode;
6065 struct drm_display_mode *mode = &intel_crtc->config.requested_mode;
Eric Anholt0b701d22011-03-30 13:01:03 -07006066 int pipe = intel_crtc->pipe;
Eric Anholtf564048e2011-03-30 13:01:02 -07006067 int ret;
6068
Eric Anholt0b701d22011-03-30 13:01:03 -07006069 drm_vblank_pre_modeset(dev, pipe);
6070
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01006071 ret = dev_priv->display.crtc_mode_set(crtc, x, y, fb);
6072
Jesse Barnes79e53942008-11-07 14:24:08 -08006073 drm_vblank_post_modeset(dev, pipe);
6074
Daniel Vetter9256aa12012-10-31 19:26:13 +01006075 if (ret != 0)
6076 return ret;
6077
6078 for_each_encoder_on_crtc(dev, crtc, encoder) {
6079 DRM_DEBUG_KMS("[ENCODER:%d:%s] set [MODE:%d:%s]\n",
6080 encoder->base.base.id,
6081 drm_get_encoder_name(&encoder->base),
6082 mode->base.id, mode->name);
Daniel Vetter6cc5f342013-03-27 00:44:53 +01006083 if (encoder->mode_set) {
6084 encoder->mode_set(encoder);
6085 } else {
6086 encoder_funcs = encoder->base.helper_private;
6087 encoder_funcs->mode_set(&encoder->base, mode, adjusted_mode);
6088 }
Daniel Vetter9256aa12012-10-31 19:26:13 +01006089 }
6090
6091 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08006092}
6093
Wu Fengguang3a9627f2011-12-09 20:42:19 +08006094static bool intel_eld_uptodate(struct drm_connector *connector,
6095 int reg_eldv, uint32_t bits_eldv,
6096 int reg_elda, uint32_t bits_elda,
6097 int reg_edid)
6098{
6099 struct drm_i915_private *dev_priv = connector->dev->dev_private;
6100 uint8_t *eld = connector->eld;
6101 uint32_t i;
6102
6103 i = I915_READ(reg_eldv);
6104 i &= bits_eldv;
6105
6106 if (!eld[0])
6107 return !i;
6108
6109 if (!i)
6110 return false;
6111
6112 i = I915_READ(reg_elda);
6113 i &= ~bits_elda;
6114 I915_WRITE(reg_elda, i);
6115
6116 for (i = 0; i < eld[2]; i++)
6117 if (I915_READ(reg_edid) != *((uint32_t *)eld + i))
6118 return false;
6119
6120 return true;
6121}
6122
Wu Fengguange0dac652011-09-05 14:25:34 +08006123static void g4x_write_eld(struct drm_connector *connector,
6124 struct drm_crtc *crtc)
6125{
6126 struct drm_i915_private *dev_priv = connector->dev->dev_private;
6127 uint8_t *eld = connector->eld;
6128 uint32_t eldv;
6129 uint32_t len;
6130 uint32_t i;
6131
6132 i = I915_READ(G4X_AUD_VID_DID);
6133
6134 if (i == INTEL_AUDIO_DEVBLC || i == INTEL_AUDIO_DEVCL)
6135 eldv = G4X_ELDV_DEVCL_DEVBLC;
6136 else
6137 eldv = G4X_ELDV_DEVCTG;
6138
Wu Fengguang3a9627f2011-12-09 20:42:19 +08006139 if (intel_eld_uptodate(connector,
6140 G4X_AUD_CNTL_ST, eldv,
6141 G4X_AUD_CNTL_ST, G4X_ELD_ADDR,
6142 G4X_HDMIW_HDMIEDID))
6143 return;
6144
Wu Fengguange0dac652011-09-05 14:25:34 +08006145 i = I915_READ(G4X_AUD_CNTL_ST);
6146 i &= ~(eldv | G4X_ELD_ADDR);
6147 len = (i >> 9) & 0x1f; /* ELD buffer size */
6148 I915_WRITE(G4X_AUD_CNTL_ST, i);
6149
6150 if (!eld[0])
6151 return;
6152
6153 len = min_t(uint8_t, eld[2], len);
6154 DRM_DEBUG_DRIVER("ELD size %d\n", len);
6155 for (i = 0; i < len; i++)
6156 I915_WRITE(G4X_HDMIW_HDMIEDID, *((uint32_t *)eld + i));
6157
6158 i = I915_READ(G4X_AUD_CNTL_ST);
6159 i |= eldv;
6160 I915_WRITE(G4X_AUD_CNTL_ST, i);
6161}
6162
Wang Xingchao83358c852012-08-16 22:43:37 +08006163static void haswell_write_eld(struct drm_connector *connector,
6164 struct drm_crtc *crtc)
6165{
6166 struct drm_i915_private *dev_priv = connector->dev->dev_private;
6167 uint8_t *eld = connector->eld;
6168 struct drm_device *dev = crtc->dev;
Wang Xingchao7b9f35a2013-01-22 23:25:25 +08006169 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Wang Xingchao83358c852012-08-16 22:43:37 +08006170 uint32_t eldv;
6171 uint32_t i;
6172 int len;
6173 int pipe = to_intel_crtc(crtc)->pipe;
6174 int tmp;
6175
6176 int hdmiw_hdmiedid = HSW_AUD_EDID_DATA(pipe);
6177 int aud_cntl_st = HSW_AUD_DIP_ELD_CTRL(pipe);
6178 int aud_config = HSW_AUD_CFG(pipe);
6179 int aud_cntrl_st2 = HSW_AUD_PIN_ELD_CP_VLD;
6180
6181
6182 DRM_DEBUG_DRIVER("HDMI: Haswell Audio initialize....\n");
6183
6184 /* Audio output enable */
6185 DRM_DEBUG_DRIVER("HDMI audio: enable codec\n");
6186 tmp = I915_READ(aud_cntrl_st2);
6187 tmp |= (AUDIO_OUTPUT_ENABLE_A << (pipe * 4));
6188 I915_WRITE(aud_cntrl_st2, tmp);
6189
6190 /* Wait for 1 vertical blank */
6191 intel_wait_for_vblank(dev, pipe);
6192
6193 /* Set ELD valid state */
6194 tmp = I915_READ(aud_cntrl_st2);
6195 DRM_DEBUG_DRIVER("HDMI audio: pin eld vld status=0x%8x\n", tmp);
6196 tmp |= (AUDIO_ELD_VALID_A << (pipe * 4));
6197 I915_WRITE(aud_cntrl_st2, tmp);
6198 tmp = I915_READ(aud_cntrl_st2);
6199 DRM_DEBUG_DRIVER("HDMI audio: eld vld status=0x%8x\n", tmp);
6200
6201 /* Enable HDMI mode */
6202 tmp = I915_READ(aud_config);
6203 DRM_DEBUG_DRIVER("HDMI audio: audio conf: 0x%8x\n", tmp);
6204 /* clear N_programing_enable and N_value_index */
6205 tmp &= ~(AUD_CONFIG_N_VALUE_INDEX | AUD_CONFIG_N_PROG_ENABLE);
6206 I915_WRITE(aud_config, tmp);
6207
6208 DRM_DEBUG_DRIVER("ELD on pipe %c\n", pipe_name(pipe));
6209
6210 eldv = AUDIO_ELD_VALID_A << (pipe * 4);
Wang Xingchao7b9f35a2013-01-22 23:25:25 +08006211 intel_crtc->eld_vld = true;
Wang Xingchao83358c852012-08-16 22:43:37 +08006212
6213 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT)) {
6214 DRM_DEBUG_DRIVER("ELD: DisplayPort detected\n");
6215 eld[5] |= (1 << 2); /* Conn_Type, 0x1 = DisplayPort */
6216 I915_WRITE(aud_config, AUD_CONFIG_N_VALUE_INDEX); /* 0x1 = DP */
6217 } else
6218 I915_WRITE(aud_config, 0);
6219
6220 if (intel_eld_uptodate(connector,
6221 aud_cntrl_st2, eldv,
6222 aud_cntl_st, IBX_ELD_ADDRESS,
6223 hdmiw_hdmiedid))
6224 return;
6225
6226 i = I915_READ(aud_cntrl_st2);
6227 i &= ~eldv;
6228 I915_WRITE(aud_cntrl_st2, i);
6229
6230 if (!eld[0])
6231 return;
6232
6233 i = I915_READ(aud_cntl_st);
6234 i &= ~IBX_ELD_ADDRESS;
6235 I915_WRITE(aud_cntl_st, i);
6236 i = (i >> 29) & DIP_PORT_SEL_MASK; /* DIP_Port_Select, 0x1 = PortB */
6237 DRM_DEBUG_DRIVER("port num:%d\n", i);
6238
6239 len = min_t(uint8_t, eld[2], 21); /* 84 bytes of hw ELD buffer */
6240 DRM_DEBUG_DRIVER("ELD size %d\n", len);
6241 for (i = 0; i < len; i++)
6242 I915_WRITE(hdmiw_hdmiedid, *((uint32_t *)eld + i));
6243
6244 i = I915_READ(aud_cntrl_st2);
6245 i |= eldv;
6246 I915_WRITE(aud_cntrl_st2, i);
6247
6248}
6249
Wu Fengguange0dac652011-09-05 14:25:34 +08006250static void ironlake_write_eld(struct drm_connector *connector,
6251 struct drm_crtc *crtc)
6252{
6253 struct drm_i915_private *dev_priv = connector->dev->dev_private;
6254 uint8_t *eld = connector->eld;
6255 uint32_t eldv;
6256 uint32_t i;
6257 int len;
6258 int hdmiw_hdmiedid;
Wu Fengguangb6daa022012-01-06 14:41:31 -06006259 int aud_config;
Wu Fengguange0dac652011-09-05 14:25:34 +08006260 int aud_cntl_st;
6261 int aud_cntrl_st2;
Wang Xingchao9b138a82012-08-09 16:52:18 +08006262 int pipe = to_intel_crtc(crtc)->pipe;
Wu Fengguange0dac652011-09-05 14:25:34 +08006263
Wu Fengguangb3f33cb2011-12-09 20:42:17 +08006264 if (HAS_PCH_IBX(connector->dev)) {
Wang Xingchao9b138a82012-08-09 16:52:18 +08006265 hdmiw_hdmiedid = IBX_HDMIW_HDMIEDID(pipe);
6266 aud_config = IBX_AUD_CFG(pipe);
6267 aud_cntl_st = IBX_AUD_CNTL_ST(pipe);
Wu Fengguang1202b4c62011-12-09 20:42:18 +08006268 aud_cntrl_st2 = IBX_AUD_CNTL_ST2;
Wu Fengguange0dac652011-09-05 14:25:34 +08006269 } else {
Wang Xingchao9b138a82012-08-09 16:52:18 +08006270 hdmiw_hdmiedid = CPT_HDMIW_HDMIEDID(pipe);
6271 aud_config = CPT_AUD_CFG(pipe);
6272 aud_cntl_st = CPT_AUD_CNTL_ST(pipe);
Wu Fengguang1202b4c62011-12-09 20:42:18 +08006273 aud_cntrl_st2 = CPT_AUD_CNTRL_ST2;
Wu Fengguange0dac652011-09-05 14:25:34 +08006274 }
6275
Wang Xingchao9b138a82012-08-09 16:52:18 +08006276 DRM_DEBUG_DRIVER("ELD on pipe %c\n", pipe_name(pipe));
Wu Fengguange0dac652011-09-05 14:25:34 +08006277
6278 i = I915_READ(aud_cntl_st);
Wang Xingchao9b138a82012-08-09 16:52:18 +08006279 i = (i >> 29) & DIP_PORT_SEL_MASK; /* DIP_Port_Select, 0x1 = PortB */
Wu Fengguange0dac652011-09-05 14:25:34 +08006280 if (!i) {
6281 DRM_DEBUG_DRIVER("Audio directed to unknown port\n");
6282 /* operate blindly on all ports */
Wu Fengguang1202b4c62011-12-09 20:42:18 +08006283 eldv = IBX_ELD_VALIDB;
6284 eldv |= IBX_ELD_VALIDB << 4;
6285 eldv |= IBX_ELD_VALIDB << 8;
Wu Fengguange0dac652011-09-05 14:25:34 +08006286 } else {
Ville Syrjälä2582a852013-04-17 17:48:47 +03006287 DRM_DEBUG_DRIVER("ELD on port %c\n", port_name(i));
Wu Fengguang1202b4c62011-12-09 20:42:18 +08006288 eldv = IBX_ELD_VALIDB << ((i - 1) * 4);
Wu Fengguange0dac652011-09-05 14:25:34 +08006289 }
6290
Wu Fengguang3a9627f2011-12-09 20:42:19 +08006291 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT)) {
6292 DRM_DEBUG_DRIVER("ELD: DisplayPort detected\n");
6293 eld[5] |= (1 << 2); /* Conn_Type, 0x1 = DisplayPort */
Wu Fengguangb6daa022012-01-06 14:41:31 -06006294 I915_WRITE(aud_config, AUD_CONFIG_N_VALUE_INDEX); /* 0x1 = DP */
6295 } else
6296 I915_WRITE(aud_config, 0);
Wu Fengguang3a9627f2011-12-09 20:42:19 +08006297
6298 if (intel_eld_uptodate(connector,
6299 aud_cntrl_st2, eldv,
6300 aud_cntl_st, IBX_ELD_ADDRESS,
6301 hdmiw_hdmiedid))
6302 return;
6303
Wu Fengguange0dac652011-09-05 14:25:34 +08006304 i = I915_READ(aud_cntrl_st2);
6305 i &= ~eldv;
6306 I915_WRITE(aud_cntrl_st2, i);
6307
6308 if (!eld[0])
6309 return;
6310
Wu Fengguange0dac652011-09-05 14:25:34 +08006311 i = I915_READ(aud_cntl_st);
Wu Fengguang1202b4c62011-12-09 20:42:18 +08006312 i &= ~IBX_ELD_ADDRESS;
Wu Fengguange0dac652011-09-05 14:25:34 +08006313 I915_WRITE(aud_cntl_st, i);
6314
6315 len = min_t(uint8_t, eld[2], 21); /* 84 bytes of hw ELD buffer */
6316 DRM_DEBUG_DRIVER("ELD size %d\n", len);
6317 for (i = 0; i < len; i++)
6318 I915_WRITE(hdmiw_hdmiedid, *((uint32_t *)eld + i));
6319
6320 i = I915_READ(aud_cntrl_st2);
6321 i |= eldv;
6322 I915_WRITE(aud_cntrl_st2, i);
6323}
6324
6325void intel_write_eld(struct drm_encoder *encoder,
6326 struct drm_display_mode *mode)
6327{
6328 struct drm_crtc *crtc = encoder->crtc;
6329 struct drm_connector *connector;
6330 struct drm_device *dev = encoder->dev;
6331 struct drm_i915_private *dev_priv = dev->dev_private;
6332
6333 connector = drm_select_eld(encoder, mode);
6334 if (!connector)
6335 return;
6336
6337 DRM_DEBUG_DRIVER("ELD on [CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
6338 connector->base.id,
6339 drm_get_connector_name(connector),
6340 connector->encoder->base.id,
6341 drm_get_encoder_name(connector->encoder));
6342
6343 connector->eld[6] = drm_av_sync_delay(connector, mode) / 2;
6344
6345 if (dev_priv->display.write_eld)
6346 dev_priv->display.write_eld(connector, crtc);
6347}
6348
Jesse Barnes79e53942008-11-07 14:24:08 -08006349/** Loads the palette/gamma unit for the CRTC with the prepared values */
6350void intel_crtc_load_lut(struct drm_crtc *crtc)
6351{
6352 struct drm_device *dev = crtc->dev;
6353 struct drm_i915_private *dev_priv = dev->dev_private;
6354 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Paulo Zanoni42db64e2013-05-31 16:33:22 -03006355 enum pipe pipe = intel_crtc->pipe;
6356 int palreg = PALETTE(pipe);
Jesse Barnes79e53942008-11-07 14:24:08 -08006357 int i;
Paulo Zanoni42db64e2013-05-31 16:33:22 -03006358 bool reenable_ips = false;
Jesse Barnes79e53942008-11-07 14:24:08 -08006359
6360 /* The clocks have to be on to load the palette. */
Alban Browaeysaed3f092012-02-24 17:12:45 +00006361 if (!crtc->enabled || !intel_crtc->active)
Jesse Barnes79e53942008-11-07 14:24:08 -08006362 return;
6363
Adam Jacksonf2b115e2009-12-03 17:14:42 -05006364 /* use legacy palette for Ironlake */
Eric Anholtbad720f2009-10-22 16:11:14 -07006365 if (HAS_PCH_SPLIT(dev))
Paulo Zanoni42db64e2013-05-31 16:33:22 -03006366 palreg = LGC_PALETTE(pipe);
6367
6368 /* Workaround : Do not read or write the pipe palette/gamma data while
6369 * GAMMA_MODE is configured for split gamma and IPS_CTL has IPS enabled.
6370 */
6371 if (intel_crtc->config.ips_enabled &&
6372 ((I915_READ(GAMMA_MODE(pipe)) & GAMMA_MODE_MODE_MASK) ==
6373 GAMMA_MODE_MODE_SPLIT)) {
6374 hsw_disable_ips(intel_crtc);
6375 reenable_ips = true;
6376 }
Zhenyu Wang2c072452009-06-05 15:38:42 +08006377
Jesse Barnes79e53942008-11-07 14:24:08 -08006378 for (i = 0; i < 256; i++) {
6379 I915_WRITE(palreg + 4 * i,
6380 (intel_crtc->lut_r[i] << 16) |
6381 (intel_crtc->lut_g[i] << 8) |
6382 intel_crtc->lut_b[i]);
6383 }
Paulo Zanoni42db64e2013-05-31 16:33:22 -03006384
6385 if (reenable_ips)
6386 hsw_enable_ips(intel_crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08006387}
6388
Chris Wilson560b85b2010-08-07 11:01:38 +01006389static void i845_update_cursor(struct drm_crtc *crtc, u32 base)
6390{
6391 struct drm_device *dev = crtc->dev;
6392 struct drm_i915_private *dev_priv = dev->dev_private;
6393 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6394 bool visible = base != 0;
6395 u32 cntl;
6396
6397 if (intel_crtc->cursor_visible == visible)
6398 return;
6399
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08006400 cntl = I915_READ(_CURACNTR);
Chris Wilson560b85b2010-08-07 11:01:38 +01006401 if (visible) {
6402 /* On these chipsets we can only modify the base whilst
6403 * the cursor is disabled.
6404 */
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08006405 I915_WRITE(_CURABASE, base);
Chris Wilson560b85b2010-08-07 11:01:38 +01006406
6407 cntl &= ~(CURSOR_FORMAT_MASK);
6408 /* XXX width must be 64, stride 256 => 0x00 << 28 */
6409 cntl |= CURSOR_ENABLE |
6410 CURSOR_GAMMA_ENABLE |
6411 CURSOR_FORMAT_ARGB;
6412 } else
6413 cntl &= ~(CURSOR_ENABLE | CURSOR_GAMMA_ENABLE);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08006414 I915_WRITE(_CURACNTR, cntl);
Chris Wilson560b85b2010-08-07 11:01:38 +01006415
6416 intel_crtc->cursor_visible = visible;
6417}
6418
6419static void i9xx_update_cursor(struct drm_crtc *crtc, u32 base)
6420{
6421 struct drm_device *dev = crtc->dev;
6422 struct drm_i915_private *dev_priv = dev->dev_private;
6423 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6424 int pipe = intel_crtc->pipe;
6425 bool visible = base != 0;
6426
6427 if (intel_crtc->cursor_visible != visible) {
Jesse Barnes548f2452011-02-17 10:40:53 -08006428 uint32_t cntl = I915_READ(CURCNTR(pipe));
Chris Wilson560b85b2010-08-07 11:01:38 +01006429 if (base) {
6430 cntl &= ~(CURSOR_MODE | MCURSOR_PIPE_SELECT);
6431 cntl |= CURSOR_MODE_64_ARGB_AX | MCURSOR_GAMMA_ENABLE;
6432 cntl |= pipe << 28; /* Connect to correct pipe */
6433 } else {
6434 cntl &= ~(CURSOR_MODE | MCURSOR_GAMMA_ENABLE);
6435 cntl |= CURSOR_MODE_DISABLE;
6436 }
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08006437 I915_WRITE(CURCNTR(pipe), cntl);
Chris Wilson560b85b2010-08-07 11:01:38 +01006438
6439 intel_crtc->cursor_visible = visible;
6440 }
6441 /* and commit changes on next vblank */
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08006442 I915_WRITE(CURBASE(pipe), base);
Chris Wilson560b85b2010-08-07 11:01:38 +01006443}
6444
Jesse Barnes65a21cd2011-10-12 11:10:21 -07006445static void ivb_update_cursor(struct drm_crtc *crtc, u32 base)
6446{
6447 struct drm_device *dev = crtc->dev;
6448 struct drm_i915_private *dev_priv = dev->dev_private;
6449 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6450 int pipe = intel_crtc->pipe;
6451 bool visible = base != 0;
6452
6453 if (intel_crtc->cursor_visible != visible) {
6454 uint32_t cntl = I915_READ(CURCNTR_IVB(pipe));
6455 if (base) {
6456 cntl &= ~CURSOR_MODE;
6457 cntl |= CURSOR_MODE_64_ARGB_AX | MCURSOR_GAMMA_ENABLE;
6458 } else {
6459 cntl &= ~(CURSOR_MODE | MCURSOR_GAMMA_ENABLE);
6460 cntl |= CURSOR_MODE_DISABLE;
6461 }
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02006462 if (IS_HASWELL(dev))
6463 cntl |= CURSOR_PIPE_CSC_ENABLE;
Jesse Barnes65a21cd2011-10-12 11:10:21 -07006464 I915_WRITE(CURCNTR_IVB(pipe), cntl);
6465
6466 intel_crtc->cursor_visible = visible;
6467 }
6468 /* and commit changes on next vblank */
6469 I915_WRITE(CURBASE_IVB(pipe), base);
6470}
6471
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01006472/* If no-part of the cursor is visible on the framebuffer, then the GPU may hang... */
Chris Wilson6b383a72010-09-13 13:54:26 +01006473static void intel_crtc_update_cursor(struct drm_crtc *crtc,
6474 bool on)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01006475{
6476 struct drm_device *dev = crtc->dev;
6477 struct drm_i915_private *dev_priv = dev->dev_private;
6478 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6479 int pipe = intel_crtc->pipe;
6480 int x = intel_crtc->cursor_x;
6481 int y = intel_crtc->cursor_y;
Chris Wilson560b85b2010-08-07 11:01:38 +01006482 u32 base, pos;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01006483 bool visible;
6484
6485 pos = 0;
6486
Chris Wilson6b383a72010-09-13 13:54:26 +01006487 if (on && crtc->enabled && crtc->fb) {
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01006488 base = intel_crtc->cursor_addr;
6489 if (x > (int) crtc->fb->width)
6490 base = 0;
6491
6492 if (y > (int) crtc->fb->height)
6493 base = 0;
6494 } else
6495 base = 0;
6496
6497 if (x < 0) {
6498 if (x + intel_crtc->cursor_width < 0)
6499 base = 0;
6500
6501 pos |= CURSOR_POS_SIGN << CURSOR_X_SHIFT;
6502 x = -x;
6503 }
6504 pos |= x << CURSOR_X_SHIFT;
6505
6506 if (y < 0) {
6507 if (y + intel_crtc->cursor_height < 0)
6508 base = 0;
6509
6510 pos |= CURSOR_POS_SIGN << CURSOR_Y_SHIFT;
6511 y = -y;
6512 }
6513 pos |= y << CURSOR_Y_SHIFT;
6514
6515 visible = base != 0;
Chris Wilson560b85b2010-08-07 11:01:38 +01006516 if (!visible && !intel_crtc->cursor_visible)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01006517 return;
6518
Eugeni Dodonov0cd83aa2012-04-13 17:08:48 -03006519 if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev)) {
Jesse Barnes65a21cd2011-10-12 11:10:21 -07006520 I915_WRITE(CURPOS_IVB(pipe), pos);
6521 ivb_update_cursor(crtc, base);
6522 } else {
6523 I915_WRITE(CURPOS(pipe), pos);
6524 if (IS_845G(dev) || IS_I865G(dev))
6525 i845_update_cursor(crtc, base);
6526 else
6527 i9xx_update_cursor(crtc, base);
6528 }
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01006529}
6530
Jesse Barnes79e53942008-11-07 14:24:08 -08006531static int intel_crtc_cursor_set(struct drm_crtc *crtc,
Chris Wilson05394f32010-11-08 19:18:58 +00006532 struct drm_file *file,
Jesse Barnes79e53942008-11-07 14:24:08 -08006533 uint32_t handle,
6534 uint32_t width, uint32_t height)
6535{
6536 struct drm_device *dev = crtc->dev;
6537 struct drm_i915_private *dev_priv = dev->dev_private;
6538 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Chris Wilson05394f32010-11-08 19:18:58 +00006539 struct drm_i915_gem_object *obj;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01006540 uint32_t addr;
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05006541 int ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08006542
Jesse Barnes79e53942008-11-07 14:24:08 -08006543 /* if we want to turn off the cursor ignore width and height */
6544 if (!handle) {
Zhao Yakui28c97732009-10-09 11:39:41 +08006545 DRM_DEBUG_KMS("cursor off\n");
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05006546 addr = 0;
Chris Wilson05394f32010-11-08 19:18:58 +00006547 obj = NULL;
Pierre Willenbrock50044172009-02-23 10:12:15 +10006548 mutex_lock(&dev->struct_mutex);
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05006549 goto finish;
Jesse Barnes79e53942008-11-07 14:24:08 -08006550 }
6551
6552 /* Currently we only support 64x64 cursors */
6553 if (width != 64 || height != 64) {
6554 DRM_ERROR("we currently only support 64x64 cursors\n");
6555 return -EINVAL;
6556 }
6557
Chris Wilson05394f32010-11-08 19:18:58 +00006558 obj = to_intel_bo(drm_gem_object_lookup(dev, file, handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00006559 if (&obj->base == NULL)
Jesse Barnes79e53942008-11-07 14:24:08 -08006560 return -ENOENT;
6561
Chris Wilson05394f32010-11-08 19:18:58 +00006562 if (obj->base.size < width * height * 4) {
Jesse Barnes79e53942008-11-07 14:24:08 -08006563 DRM_ERROR("buffer is to small\n");
Dave Airlie34b8686e2009-01-15 14:03:07 +10006564 ret = -ENOMEM;
6565 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -08006566 }
6567
Dave Airlie71acb5e2008-12-30 20:31:46 +10006568 /* we only need to pin inside GTT if cursor is non-phy */
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05006569 mutex_lock(&dev->struct_mutex);
Kristian Høgsbergb295d1b2009-12-16 15:16:17 -05006570 if (!dev_priv->info->cursor_needs_physical) {
Chris Wilson693db182013-03-05 14:52:39 +00006571 unsigned alignment;
6572
Chris Wilsond9e86c02010-11-10 16:40:20 +00006573 if (obj->tiling_mode) {
6574 DRM_ERROR("cursor cannot be tiled\n");
6575 ret = -EINVAL;
6576 goto fail_locked;
6577 }
6578
Chris Wilson693db182013-03-05 14:52:39 +00006579 /* Note that the w/a also requires 2 PTE of padding following
6580 * the bo. We currently fill all unused PTE with the shadow
6581 * page and so we should always have valid PTE following the
6582 * cursor preventing the VT-d warning.
6583 */
6584 alignment = 0;
6585 if (need_vtd_wa(dev))
6586 alignment = 64*1024;
6587
6588 ret = i915_gem_object_pin_to_display_plane(obj, alignment, NULL);
Chris Wilsone7b526b2010-06-02 08:30:48 +01006589 if (ret) {
6590 DRM_ERROR("failed to move cursor bo into the GTT\n");
Chris Wilson2da3b9b2011-04-14 09:41:17 +01006591 goto fail_locked;
Chris Wilsone7b526b2010-06-02 08:30:48 +01006592 }
6593
Chris Wilsond9e86c02010-11-10 16:40:20 +00006594 ret = i915_gem_object_put_fence(obj);
6595 if (ret) {
Chris Wilson2da3b9b2011-04-14 09:41:17 +01006596 DRM_ERROR("failed to release fence for cursor");
Chris Wilsond9e86c02010-11-10 16:40:20 +00006597 goto fail_unpin;
6598 }
6599
Chris Wilson05394f32010-11-08 19:18:58 +00006600 addr = obj->gtt_offset;
Dave Airlie71acb5e2008-12-30 20:31:46 +10006601 } else {
Chris Wilson6eeefaf2010-08-07 11:01:39 +01006602 int align = IS_I830(dev) ? 16 * 1024 : 256;
Chris Wilson05394f32010-11-08 19:18:58 +00006603 ret = i915_gem_attach_phys_object(dev, obj,
Chris Wilson6eeefaf2010-08-07 11:01:39 +01006604 (intel_crtc->pipe == 0) ? I915_GEM_PHYS_CURSOR_0 : I915_GEM_PHYS_CURSOR_1,
6605 align);
Dave Airlie71acb5e2008-12-30 20:31:46 +10006606 if (ret) {
6607 DRM_ERROR("failed to attach phys object\n");
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05006608 goto fail_locked;
Dave Airlie71acb5e2008-12-30 20:31:46 +10006609 }
Chris Wilson05394f32010-11-08 19:18:58 +00006610 addr = obj->phys_obj->handle->busaddr;
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05006611 }
6612
Chris Wilsona6c45cf2010-09-17 00:32:17 +01006613 if (IS_GEN2(dev))
Jesse Barnes14b603912009-05-20 16:47:08 -04006614 I915_WRITE(CURSIZE, (height << 12) | width);
6615
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05006616 finish:
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05006617 if (intel_crtc->cursor_bo) {
Kristian Høgsbergb295d1b2009-12-16 15:16:17 -05006618 if (dev_priv->info->cursor_needs_physical) {
Chris Wilson05394f32010-11-08 19:18:58 +00006619 if (intel_crtc->cursor_bo != obj)
Dave Airlie71acb5e2008-12-30 20:31:46 +10006620 i915_gem_detach_phys_object(dev, intel_crtc->cursor_bo);
6621 } else
6622 i915_gem_object_unpin(intel_crtc->cursor_bo);
Chris Wilson05394f32010-11-08 19:18:58 +00006623 drm_gem_object_unreference(&intel_crtc->cursor_bo->base);
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05006624 }
Jesse Barnes80824002009-09-10 15:28:06 -07006625
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05006626 mutex_unlock(&dev->struct_mutex);
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05006627
6628 intel_crtc->cursor_addr = addr;
Chris Wilson05394f32010-11-08 19:18:58 +00006629 intel_crtc->cursor_bo = obj;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01006630 intel_crtc->cursor_width = width;
6631 intel_crtc->cursor_height = height;
6632
Mika Kuoppala40ccc722013-04-23 17:27:08 +03006633 intel_crtc_update_cursor(crtc, intel_crtc->cursor_bo != NULL);
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05006634
Jesse Barnes79e53942008-11-07 14:24:08 -08006635 return 0;
Chris Wilsone7b526b2010-06-02 08:30:48 +01006636fail_unpin:
Chris Wilson05394f32010-11-08 19:18:58 +00006637 i915_gem_object_unpin(obj);
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05006638fail_locked:
Dave Airlie34b8686e2009-01-15 14:03:07 +10006639 mutex_unlock(&dev->struct_mutex);
Luca Barbieribc9025b2010-02-09 05:49:12 +00006640fail:
Chris Wilson05394f32010-11-08 19:18:58 +00006641 drm_gem_object_unreference_unlocked(&obj->base);
Dave Airlie34b8686e2009-01-15 14:03:07 +10006642 return ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08006643}
6644
6645static int intel_crtc_cursor_move(struct drm_crtc *crtc, int x, int y)
6646{
Jesse Barnes79e53942008-11-07 14:24:08 -08006647 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08006648
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01006649 intel_crtc->cursor_x = x;
6650 intel_crtc->cursor_y = y;
Jesse Barnes652c3932009-08-17 13:31:43 -07006651
Mika Kuoppala40ccc722013-04-23 17:27:08 +03006652 intel_crtc_update_cursor(crtc, intel_crtc->cursor_bo != NULL);
Jesse Barnes79e53942008-11-07 14:24:08 -08006653
6654 return 0;
6655}
6656
6657/** Sets the color ramps on behalf of RandR */
6658void intel_crtc_fb_gamma_set(struct drm_crtc *crtc, u16 red, u16 green,
6659 u16 blue, int regno)
6660{
6661 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6662
6663 intel_crtc->lut_r[regno] = red >> 8;
6664 intel_crtc->lut_g[regno] = green >> 8;
6665 intel_crtc->lut_b[regno] = blue >> 8;
6666}
6667
Dave Airlieb8c00ac2009-10-06 13:54:01 +10006668void intel_crtc_fb_gamma_get(struct drm_crtc *crtc, u16 *red, u16 *green,
6669 u16 *blue, int regno)
6670{
6671 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6672
6673 *red = intel_crtc->lut_r[regno] << 8;
6674 *green = intel_crtc->lut_g[regno] << 8;
6675 *blue = intel_crtc->lut_b[regno] << 8;
6676}
6677
Jesse Barnes79e53942008-11-07 14:24:08 -08006678static void intel_crtc_gamma_set(struct drm_crtc *crtc, u16 *red, u16 *green,
James Simmons72034252010-08-03 01:33:19 +01006679 u16 *blue, uint32_t start, uint32_t size)
Jesse Barnes79e53942008-11-07 14:24:08 -08006680{
James Simmons72034252010-08-03 01:33:19 +01006681 int end = (start + size > 256) ? 256 : start + size, i;
Jesse Barnes79e53942008-11-07 14:24:08 -08006682 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08006683
James Simmons72034252010-08-03 01:33:19 +01006684 for (i = start; i < end; i++) {
Jesse Barnes79e53942008-11-07 14:24:08 -08006685 intel_crtc->lut_r[i] = red[i] >> 8;
6686 intel_crtc->lut_g[i] = green[i] >> 8;
6687 intel_crtc->lut_b[i] = blue[i] >> 8;
6688 }
6689
6690 intel_crtc_load_lut(crtc);
6691}
6692
Jesse Barnes79e53942008-11-07 14:24:08 -08006693/* VESA 640x480x72Hz mode to set on the pipe */
6694static struct drm_display_mode load_detect_mode = {
6695 DRM_MODE("640x480", DRM_MODE_TYPE_DEFAULT, 31500, 640, 664,
6696 704, 832, 0, 480, 489, 491, 520, 0, DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
6697};
6698
Chris Wilsond2dff872011-04-19 08:36:26 +01006699static struct drm_framebuffer *
6700intel_framebuffer_create(struct drm_device *dev,
Jesse Barnes308e5bc2011-11-14 14:51:28 -08006701 struct drm_mode_fb_cmd2 *mode_cmd,
Chris Wilsond2dff872011-04-19 08:36:26 +01006702 struct drm_i915_gem_object *obj)
6703{
6704 struct intel_framebuffer *intel_fb;
6705 int ret;
6706
6707 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
6708 if (!intel_fb) {
6709 drm_gem_object_unreference_unlocked(&obj->base);
6710 return ERR_PTR(-ENOMEM);
6711 }
6712
6713 ret = intel_framebuffer_init(dev, intel_fb, mode_cmd, obj);
6714 if (ret) {
6715 drm_gem_object_unreference_unlocked(&obj->base);
6716 kfree(intel_fb);
6717 return ERR_PTR(ret);
6718 }
6719
6720 return &intel_fb->base;
6721}
6722
6723static u32
6724intel_framebuffer_pitch_for_width(int width, int bpp)
6725{
6726 u32 pitch = DIV_ROUND_UP(width * bpp, 8);
6727 return ALIGN(pitch, 64);
6728}
6729
6730static u32
6731intel_framebuffer_size_for_mode(struct drm_display_mode *mode, int bpp)
6732{
6733 u32 pitch = intel_framebuffer_pitch_for_width(mode->hdisplay, bpp);
6734 return ALIGN(pitch * mode->vdisplay, PAGE_SIZE);
6735}
6736
6737static struct drm_framebuffer *
6738intel_framebuffer_create_for_mode(struct drm_device *dev,
6739 struct drm_display_mode *mode,
6740 int depth, int bpp)
6741{
6742 struct drm_i915_gem_object *obj;
Chris Wilson0fed39b2012-11-05 22:25:07 +00006743 struct drm_mode_fb_cmd2 mode_cmd = { 0 };
Chris Wilsond2dff872011-04-19 08:36:26 +01006744
6745 obj = i915_gem_alloc_object(dev,
6746 intel_framebuffer_size_for_mode(mode, bpp));
6747 if (obj == NULL)
6748 return ERR_PTR(-ENOMEM);
6749
6750 mode_cmd.width = mode->hdisplay;
6751 mode_cmd.height = mode->vdisplay;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08006752 mode_cmd.pitches[0] = intel_framebuffer_pitch_for_width(mode_cmd.width,
6753 bpp);
Dave Airlie5ca0c342012-02-23 15:33:40 +00006754 mode_cmd.pixel_format = drm_mode_legacy_fb_format(bpp, depth);
Chris Wilsond2dff872011-04-19 08:36:26 +01006755
6756 return intel_framebuffer_create(dev, &mode_cmd, obj);
6757}
6758
6759static struct drm_framebuffer *
6760mode_fits_in_fbdev(struct drm_device *dev,
6761 struct drm_display_mode *mode)
6762{
6763 struct drm_i915_private *dev_priv = dev->dev_private;
6764 struct drm_i915_gem_object *obj;
6765 struct drm_framebuffer *fb;
6766
6767 if (dev_priv->fbdev == NULL)
6768 return NULL;
6769
6770 obj = dev_priv->fbdev->ifb.obj;
6771 if (obj == NULL)
6772 return NULL;
6773
6774 fb = &dev_priv->fbdev->ifb.base;
Ville Syrjälä01f2c772011-12-20 00:06:49 +02006775 if (fb->pitches[0] < intel_framebuffer_pitch_for_width(mode->hdisplay,
6776 fb->bits_per_pixel))
Chris Wilsond2dff872011-04-19 08:36:26 +01006777 return NULL;
6778
Ville Syrjälä01f2c772011-12-20 00:06:49 +02006779 if (obj->base.size < mode->vdisplay * fb->pitches[0])
Chris Wilsond2dff872011-04-19 08:36:26 +01006780 return NULL;
6781
6782 return fb;
6783}
6784
Daniel Vetterd2434ab2012-08-12 21:20:10 +02006785bool intel_get_load_detect_pipe(struct drm_connector *connector,
Chris Wilson71731882011-04-19 23:10:58 +01006786 struct drm_display_mode *mode,
Chris Wilson8261b192011-04-19 23:18:09 +01006787 struct intel_load_detect_pipe *old)
Jesse Barnes79e53942008-11-07 14:24:08 -08006788{
6789 struct intel_crtc *intel_crtc;
Daniel Vetterd2434ab2012-08-12 21:20:10 +02006790 struct intel_encoder *intel_encoder =
6791 intel_attached_encoder(connector);
Jesse Barnes79e53942008-11-07 14:24:08 -08006792 struct drm_crtc *possible_crtc;
Chris Wilson4ef69c72010-09-09 15:14:28 +01006793 struct drm_encoder *encoder = &intel_encoder->base;
Jesse Barnes79e53942008-11-07 14:24:08 -08006794 struct drm_crtc *crtc = NULL;
6795 struct drm_device *dev = encoder->dev;
Daniel Vetter94352cf2012-07-05 22:51:56 +02006796 struct drm_framebuffer *fb;
Jesse Barnes79e53942008-11-07 14:24:08 -08006797 int i = -1;
6798
Chris Wilsond2dff872011-04-19 08:36:26 +01006799 DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
6800 connector->base.id, drm_get_connector_name(connector),
6801 encoder->base.id, drm_get_encoder_name(encoder));
6802
Jesse Barnes79e53942008-11-07 14:24:08 -08006803 /*
6804 * Algorithm gets a little messy:
Chris Wilson7a5e4802011-04-19 23:21:12 +01006805 *
Jesse Barnes79e53942008-11-07 14:24:08 -08006806 * - if the connector already has an assigned crtc, use it (but make
6807 * sure it's on first)
Chris Wilson7a5e4802011-04-19 23:21:12 +01006808 *
Jesse Barnes79e53942008-11-07 14:24:08 -08006809 * - try to find the first unused crtc that can drive this connector,
6810 * and use that if we find one
Jesse Barnes79e53942008-11-07 14:24:08 -08006811 */
6812
6813 /* See if we already have a CRTC for this connector */
6814 if (encoder->crtc) {
6815 crtc = encoder->crtc;
Chris Wilson8261b192011-04-19 23:18:09 +01006816
Daniel Vetter7b240562012-12-12 00:35:33 +01006817 mutex_lock(&crtc->mutex);
6818
Daniel Vetter24218aa2012-08-12 19:27:11 +02006819 old->dpms_mode = connector->dpms;
Chris Wilson8261b192011-04-19 23:18:09 +01006820 old->load_detect_temp = false;
6821
6822 /* Make sure the crtc and connector are running */
Daniel Vetter24218aa2012-08-12 19:27:11 +02006823 if (connector->dpms != DRM_MODE_DPMS_ON)
6824 connector->funcs->dpms(connector, DRM_MODE_DPMS_ON);
Chris Wilson8261b192011-04-19 23:18:09 +01006825
Chris Wilson71731882011-04-19 23:10:58 +01006826 return true;
Jesse Barnes79e53942008-11-07 14:24:08 -08006827 }
6828
6829 /* Find an unused one (if possible) */
6830 list_for_each_entry(possible_crtc, &dev->mode_config.crtc_list, head) {
6831 i++;
6832 if (!(encoder->possible_crtcs & (1 << i)))
6833 continue;
6834 if (!possible_crtc->enabled) {
6835 crtc = possible_crtc;
6836 break;
6837 }
Jesse Barnes79e53942008-11-07 14:24:08 -08006838 }
6839
6840 /*
6841 * If we didn't find an unused CRTC, don't use any.
6842 */
6843 if (!crtc) {
Chris Wilson71731882011-04-19 23:10:58 +01006844 DRM_DEBUG_KMS("no pipe available for load-detect\n");
6845 return false;
Jesse Barnes79e53942008-11-07 14:24:08 -08006846 }
6847
Daniel Vetter7b240562012-12-12 00:35:33 +01006848 mutex_lock(&crtc->mutex);
Daniel Vetterfc303102012-07-09 10:40:58 +02006849 intel_encoder->new_crtc = to_intel_crtc(crtc);
6850 to_intel_connector(connector)->new_encoder = intel_encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08006851
6852 intel_crtc = to_intel_crtc(crtc);
Daniel Vetter24218aa2012-08-12 19:27:11 +02006853 old->dpms_mode = connector->dpms;
Chris Wilson8261b192011-04-19 23:18:09 +01006854 old->load_detect_temp = true;
Chris Wilsond2dff872011-04-19 08:36:26 +01006855 old->release_fb = NULL;
Jesse Barnes79e53942008-11-07 14:24:08 -08006856
Chris Wilson64927112011-04-20 07:25:26 +01006857 if (!mode)
6858 mode = &load_detect_mode;
Jesse Barnes79e53942008-11-07 14:24:08 -08006859
Chris Wilsond2dff872011-04-19 08:36:26 +01006860 /* We need a framebuffer large enough to accommodate all accesses
6861 * that the plane may generate whilst we perform load detection.
6862 * We can not rely on the fbcon either being present (we get called
6863 * during its initialisation to detect all boot displays, or it may
6864 * not even exist) or that it is large enough to satisfy the
6865 * requested mode.
6866 */
Daniel Vetter94352cf2012-07-05 22:51:56 +02006867 fb = mode_fits_in_fbdev(dev, mode);
6868 if (fb == NULL) {
Chris Wilsond2dff872011-04-19 08:36:26 +01006869 DRM_DEBUG_KMS("creating tmp fb for load-detection\n");
Daniel Vetter94352cf2012-07-05 22:51:56 +02006870 fb = intel_framebuffer_create_for_mode(dev, mode, 24, 32);
6871 old->release_fb = fb;
Chris Wilsond2dff872011-04-19 08:36:26 +01006872 } else
6873 DRM_DEBUG_KMS("reusing fbdev for load-detection framebuffer\n");
Daniel Vetter94352cf2012-07-05 22:51:56 +02006874 if (IS_ERR(fb)) {
Chris Wilsond2dff872011-04-19 08:36:26 +01006875 DRM_DEBUG_KMS("failed to allocate framebuffer for load-detection\n");
Daniel Vetter7b240562012-12-12 00:35:33 +01006876 mutex_unlock(&crtc->mutex);
Chris Wilson0e8b3d32012-11-05 22:25:08 +00006877 return false;
Jesse Barnes79e53942008-11-07 14:24:08 -08006878 }
Chris Wilsond2dff872011-04-19 08:36:26 +01006879
Chris Wilsonc0c36b942012-12-19 16:08:43 +00006880 if (intel_set_mode(crtc, mode, 0, 0, fb)) {
Chris Wilson64927112011-04-20 07:25:26 +01006881 DRM_DEBUG_KMS("failed to set mode on load-detect pipe\n");
Chris Wilsond2dff872011-04-19 08:36:26 +01006882 if (old->release_fb)
6883 old->release_fb->funcs->destroy(old->release_fb);
Daniel Vetter7b240562012-12-12 00:35:33 +01006884 mutex_unlock(&crtc->mutex);
Chris Wilson0e8b3d32012-11-05 22:25:08 +00006885 return false;
Jesse Barnes79e53942008-11-07 14:24:08 -08006886 }
Chris Wilson71731882011-04-19 23:10:58 +01006887
Jesse Barnes79e53942008-11-07 14:24:08 -08006888 /* let the connector get through one full cycle before testing */
Jesse Barnes9d0498a2010-08-18 13:20:54 -07006889 intel_wait_for_vblank(dev, intel_crtc->pipe);
Chris Wilson71731882011-04-19 23:10:58 +01006890 return true;
Jesse Barnes79e53942008-11-07 14:24:08 -08006891}
6892
Daniel Vetterd2434ab2012-08-12 21:20:10 +02006893void intel_release_load_detect_pipe(struct drm_connector *connector,
Chris Wilson8261b192011-04-19 23:18:09 +01006894 struct intel_load_detect_pipe *old)
Jesse Barnes79e53942008-11-07 14:24:08 -08006895{
Daniel Vetterd2434ab2012-08-12 21:20:10 +02006896 struct intel_encoder *intel_encoder =
6897 intel_attached_encoder(connector);
Chris Wilson4ef69c72010-09-09 15:14:28 +01006898 struct drm_encoder *encoder = &intel_encoder->base;
Daniel Vetter7b240562012-12-12 00:35:33 +01006899 struct drm_crtc *crtc = encoder->crtc;
Jesse Barnes79e53942008-11-07 14:24:08 -08006900
Chris Wilsond2dff872011-04-19 08:36:26 +01006901 DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
6902 connector->base.id, drm_get_connector_name(connector),
6903 encoder->base.id, drm_get_encoder_name(encoder));
6904
Chris Wilson8261b192011-04-19 23:18:09 +01006905 if (old->load_detect_temp) {
Daniel Vetterfc303102012-07-09 10:40:58 +02006906 to_intel_connector(connector)->new_encoder = NULL;
6907 intel_encoder->new_crtc = NULL;
6908 intel_set_mode(crtc, NULL, 0, 0, NULL);
Chris Wilsond2dff872011-04-19 08:36:26 +01006909
Daniel Vetter36206362012-12-10 20:42:17 +01006910 if (old->release_fb) {
6911 drm_framebuffer_unregister_private(old->release_fb);
6912 drm_framebuffer_unreference(old->release_fb);
6913 }
Chris Wilsond2dff872011-04-19 08:36:26 +01006914
Daniel Vetter67c96402013-01-23 16:25:09 +00006915 mutex_unlock(&crtc->mutex);
Chris Wilson0622a532011-04-21 09:32:11 +01006916 return;
Jesse Barnes79e53942008-11-07 14:24:08 -08006917 }
6918
Eric Anholtc751ce42010-03-25 11:48:48 -07006919 /* Switch crtc and encoder back off if necessary */
Daniel Vetter24218aa2012-08-12 19:27:11 +02006920 if (old->dpms_mode != DRM_MODE_DPMS_ON)
6921 connector->funcs->dpms(connector, old->dpms_mode);
Daniel Vetter7b240562012-12-12 00:35:33 +01006922
6923 mutex_unlock(&crtc->mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -08006924}
6925
6926/* Returns the clock of the currently programmed mode of the given pipe. */
6927static int intel_crtc_clock_get(struct drm_device *dev, struct drm_crtc *crtc)
6928{
6929 struct drm_i915_private *dev_priv = dev->dev_private;
6930 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6931 int pipe = intel_crtc->pipe;
Jesse Barnes548f2452011-02-17 10:40:53 -08006932 u32 dpll = I915_READ(DPLL(pipe));
Jesse Barnes79e53942008-11-07 14:24:08 -08006933 u32 fp;
6934 intel_clock_t clock;
6935
6936 if ((dpll & DISPLAY_RATE_SELECT_FPA1) == 0)
Chris Wilson39adb7a2011-04-22 22:17:21 +01006937 fp = I915_READ(FP0(pipe));
Jesse Barnes79e53942008-11-07 14:24:08 -08006938 else
Chris Wilson39adb7a2011-04-22 22:17:21 +01006939 fp = I915_READ(FP1(pipe));
Jesse Barnes79e53942008-11-07 14:24:08 -08006940
6941 clock.m1 = (fp & FP_M1_DIV_MASK) >> FP_M1_DIV_SHIFT;
Adam Jacksonf2b115e2009-12-03 17:14:42 -05006942 if (IS_PINEVIEW(dev)) {
6943 clock.n = ffs((fp & FP_N_PINEVIEW_DIV_MASK) >> FP_N_DIV_SHIFT) - 1;
6944 clock.m2 = (fp & FP_M2_PINEVIEW_DIV_MASK) >> FP_M2_DIV_SHIFT;
Shaohua Li21778322009-02-23 15:19:16 +08006945 } else {
6946 clock.n = (fp & FP_N_DIV_MASK) >> FP_N_DIV_SHIFT;
6947 clock.m2 = (fp & FP_M2_DIV_MASK) >> FP_M2_DIV_SHIFT;
6948 }
6949
Chris Wilsona6c45cf2010-09-17 00:32:17 +01006950 if (!IS_GEN2(dev)) {
Adam Jacksonf2b115e2009-12-03 17:14:42 -05006951 if (IS_PINEVIEW(dev))
6952 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_PINEVIEW) >>
6953 DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW);
Shaohua Li21778322009-02-23 15:19:16 +08006954 else
6955 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK) >>
Jesse Barnes79e53942008-11-07 14:24:08 -08006956 DPLL_FPA01_P1_POST_DIV_SHIFT);
6957
6958 switch (dpll & DPLL_MODE_MASK) {
6959 case DPLLB_MODE_DAC_SERIAL:
6960 clock.p2 = dpll & DPLL_DAC_SERIAL_P2_CLOCK_DIV_5 ?
6961 5 : 10;
6962 break;
6963 case DPLLB_MODE_LVDS:
6964 clock.p2 = dpll & DPLLB_LVDS_P2_CLOCK_DIV_7 ?
6965 7 : 14;
6966 break;
6967 default:
Zhao Yakui28c97732009-10-09 11:39:41 +08006968 DRM_DEBUG_KMS("Unknown DPLL mode %08x in programmed "
Jesse Barnes79e53942008-11-07 14:24:08 -08006969 "mode\n", (int)(dpll & DPLL_MODE_MASK));
6970 return 0;
6971 }
6972
Daniel Vetterac58c3f2013-06-01 17:16:17 +02006973 if (IS_PINEVIEW(dev))
6974 pineview_clock(96000, &clock);
6975 else
6976 i9xx_clock(96000, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08006977 } else {
6978 bool is_lvds = (pipe == 1) && (I915_READ(LVDS) & LVDS_PORT_EN);
6979
6980 if (is_lvds) {
6981 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830_LVDS) >>
6982 DPLL_FPA01_P1_POST_DIV_SHIFT);
6983 clock.p2 = 14;
6984
6985 if ((dpll & PLL_REF_INPUT_MASK) ==
6986 PLLB_REF_INPUT_SPREADSPECTRUMIN) {
6987 /* XXX: might not be 66MHz */
Daniel Vetterac58c3f2013-06-01 17:16:17 +02006988 i9xx_clock(66000, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08006989 } else
Daniel Vetterac58c3f2013-06-01 17:16:17 +02006990 i9xx_clock(48000, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08006991 } else {
6992 if (dpll & PLL_P1_DIVIDE_BY_TWO)
6993 clock.p1 = 2;
6994 else {
6995 clock.p1 = ((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830) >>
6996 DPLL_FPA01_P1_POST_DIV_SHIFT) + 2;
6997 }
6998 if (dpll & PLL_P2_DIVIDE_BY_4)
6999 clock.p2 = 4;
7000 else
7001 clock.p2 = 2;
7002
Daniel Vetterac58c3f2013-06-01 17:16:17 +02007003 i9xx_clock(48000, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08007004 }
7005 }
7006
7007 /* XXX: It would be nice to validate the clocks, but we can't reuse
7008 * i830PllIsValid() because it relies on the xf86_config connector
7009 * configuration being accurate, which it isn't necessarily.
7010 */
7011
7012 return clock.dot;
7013}
7014
7015/** Returns the currently programmed mode of the given pipe. */
7016struct drm_display_mode *intel_crtc_mode_get(struct drm_device *dev,
7017 struct drm_crtc *crtc)
7018{
Jesse Barnes548f2452011-02-17 10:40:53 -08007019 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -08007020 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter3b117c82013-04-17 20:15:07 +02007021 enum transcoder cpu_transcoder = intel_crtc->config.cpu_transcoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08007022 struct drm_display_mode *mode;
Paulo Zanonife2b8f92012-10-23 18:30:02 -02007023 int htot = I915_READ(HTOTAL(cpu_transcoder));
7024 int hsync = I915_READ(HSYNC(cpu_transcoder));
7025 int vtot = I915_READ(VTOTAL(cpu_transcoder));
7026 int vsync = I915_READ(VSYNC(cpu_transcoder));
Jesse Barnes79e53942008-11-07 14:24:08 -08007027
7028 mode = kzalloc(sizeof(*mode), GFP_KERNEL);
7029 if (!mode)
7030 return NULL;
7031
7032 mode->clock = intel_crtc_clock_get(dev, crtc);
7033 mode->hdisplay = (htot & 0xffff) + 1;
7034 mode->htotal = ((htot & 0xffff0000) >> 16) + 1;
7035 mode->hsync_start = (hsync & 0xffff) + 1;
7036 mode->hsync_end = ((hsync & 0xffff0000) >> 16) + 1;
7037 mode->vdisplay = (vtot & 0xffff) + 1;
7038 mode->vtotal = ((vtot & 0xffff0000) >> 16) + 1;
7039 mode->vsync_start = (vsync & 0xffff) + 1;
7040 mode->vsync_end = ((vsync & 0xffff0000) >> 16) + 1;
7041
7042 drm_mode_set_name(mode);
Jesse Barnes79e53942008-11-07 14:24:08 -08007043
7044 return mode;
7045}
7046
Daniel Vetter3dec0092010-08-20 21:40:52 +02007047static void intel_increase_pllclock(struct drm_crtc *crtc)
Jesse Barnes652c3932009-08-17 13:31:43 -07007048{
7049 struct drm_device *dev = crtc->dev;
7050 drm_i915_private_t *dev_priv = dev->dev_private;
7051 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
7052 int pipe = intel_crtc->pipe;
Jesse Barnesdbdc6472010-12-30 09:36:39 -08007053 int dpll_reg = DPLL(pipe);
7054 int dpll;
Jesse Barnes652c3932009-08-17 13:31:43 -07007055
Eric Anholtbad720f2009-10-22 16:11:14 -07007056 if (HAS_PCH_SPLIT(dev))
Jesse Barnes652c3932009-08-17 13:31:43 -07007057 return;
7058
7059 if (!dev_priv->lvds_downclock_avail)
7060 return;
7061
Jesse Barnesdbdc6472010-12-30 09:36:39 -08007062 dpll = I915_READ(dpll_reg);
Jesse Barnes652c3932009-08-17 13:31:43 -07007063 if (!HAS_PIPE_CXSR(dev) && (dpll & DISPLAY_RATE_SELECT_FPA1)) {
Zhao Yakui44d98a62009-10-09 11:39:40 +08007064 DRM_DEBUG_DRIVER("upclocking LVDS\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07007065
Sean Paul8ac5a6d2012-02-13 13:14:51 -05007066 assert_panel_unlocked(dev_priv, pipe);
Jesse Barnes652c3932009-08-17 13:31:43 -07007067
7068 dpll &= ~DISPLAY_RATE_SELECT_FPA1;
7069 I915_WRITE(dpll_reg, dpll);
Jesse Barnes9d0498a2010-08-18 13:20:54 -07007070 intel_wait_for_vblank(dev, pipe);
Jesse Barnesdbdc6472010-12-30 09:36:39 -08007071
Jesse Barnes652c3932009-08-17 13:31:43 -07007072 dpll = I915_READ(dpll_reg);
7073 if (dpll & DISPLAY_RATE_SELECT_FPA1)
Zhao Yakui44d98a62009-10-09 11:39:40 +08007074 DRM_DEBUG_DRIVER("failed to upclock LVDS!\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07007075 }
Jesse Barnes652c3932009-08-17 13:31:43 -07007076}
7077
7078static void intel_decrease_pllclock(struct drm_crtc *crtc)
7079{
7080 struct drm_device *dev = crtc->dev;
7081 drm_i915_private_t *dev_priv = dev->dev_private;
7082 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes652c3932009-08-17 13:31:43 -07007083
Eric Anholtbad720f2009-10-22 16:11:14 -07007084 if (HAS_PCH_SPLIT(dev))
Jesse Barnes652c3932009-08-17 13:31:43 -07007085 return;
7086
7087 if (!dev_priv->lvds_downclock_avail)
7088 return;
7089
7090 /*
7091 * Since this is called by a timer, we should never get here in
7092 * the manual case.
7093 */
7094 if (!HAS_PIPE_CXSR(dev) && intel_crtc->lowfreq_avail) {
Chris Wilson074b5e12012-05-02 12:07:06 +01007095 int pipe = intel_crtc->pipe;
7096 int dpll_reg = DPLL(pipe);
Daniel Vetterdc257cf2012-05-07 11:30:46 +02007097 int dpll;
Chris Wilson074b5e12012-05-02 12:07:06 +01007098
Zhao Yakui44d98a62009-10-09 11:39:40 +08007099 DRM_DEBUG_DRIVER("downclocking LVDS\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07007100
Sean Paul8ac5a6d2012-02-13 13:14:51 -05007101 assert_panel_unlocked(dev_priv, pipe);
Jesse Barnes652c3932009-08-17 13:31:43 -07007102
Chris Wilson074b5e12012-05-02 12:07:06 +01007103 dpll = I915_READ(dpll_reg);
Jesse Barnes652c3932009-08-17 13:31:43 -07007104 dpll |= DISPLAY_RATE_SELECT_FPA1;
7105 I915_WRITE(dpll_reg, dpll);
Jesse Barnes9d0498a2010-08-18 13:20:54 -07007106 intel_wait_for_vblank(dev, pipe);
Jesse Barnes652c3932009-08-17 13:31:43 -07007107 dpll = I915_READ(dpll_reg);
7108 if (!(dpll & DISPLAY_RATE_SELECT_FPA1))
Zhao Yakui44d98a62009-10-09 11:39:40 +08007109 DRM_DEBUG_DRIVER("failed to downclock LVDS!\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07007110 }
7111
7112}
7113
Chris Wilsonf047e392012-07-21 12:31:41 +01007114void intel_mark_busy(struct drm_device *dev)
Jesse Barnes652c3932009-08-17 13:31:43 -07007115{
Chris Wilsonf047e392012-07-21 12:31:41 +01007116 i915_update_gfx_val(dev->dev_private);
7117}
7118
7119void intel_mark_idle(struct drm_device *dev)
7120{
Chris Wilson725a5b52013-01-08 11:02:57 +00007121 struct drm_crtc *crtc;
7122
7123 if (!i915_powersave)
7124 return;
7125
7126 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
7127 if (!crtc->fb)
7128 continue;
7129
7130 intel_decrease_pllclock(crtc);
7131 }
Chris Wilsonf047e392012-07-21 12:31:41 +01007132}
7133
7134void intel_mark_fb_busy(struct drm_i915_gem_object *obj)
7135{
7136 struct drm_device *dev = obj->base.dev;
Jesse Barnes652c3932009-08-17 13:31:43 -07007137 struct drm_crtc *crtc;
Jesse Barnes652c3932009-08-17 13:31:43 -07007138
7139 if (!i915_powersave)
7140 return;
7141
Jesse Barnes652c3932009-08-17 13:31:43 -07007142 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
Jesse Barnes652c3932009-08-17 13:31:43 -07007143 if (!crtc->fb)
7144 continue;
7145
Chris Wilsonf047e392012-07-21 12:31:41 +01007146 if (to_intel_framebuffer(crtc->fb)->obj == obj)
7147 intel_increase_pllclock(crtc);
Jesse Barnes652c3932009-08-17 13:31:43 -07007148 }
Jesse Barnes652c3932009-08-17 13:31:43 -07007149}
7150
Jesse Barnes79e53942008-11-07 14:24:08 -08007151static void intel_crtc_destroy(struct drm_crtc *crtc)
7152{
7153 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter67e77c52010-08-20 22:26:30 +02007154 struct drm_device *dev = crtc->dev;
7155 struct intel_unpin_work *work;
7156 unsigned long flags;
7157
7158 spin_lock_irqsave(&dev->event_lock, flags);
7159 work = intel_crtc->unpin_work;
7160 intel_crtc->unpin_work = NULL;
7161 spin_unlock_irqrestore(&dev->event_lock, flags);
7162
7163 if (work) {
7164 cancel_work_sync(&work->work);
7165 kfree(work);
7166 }
Jesse Barnes79e53942008-11-07 14:24:08 -08007167
Mika Kuoppala40ccc722013-04-23 17:27:08 +03007168 intel_crtc_cursor_set(crtc, NULL, 0, 0, 0);
7169
Jesse Barnes79e53942008-11-07 14:24:08 -08007170 drm_crtc_cleanup(crtc);
Daniel Vetter67e77c52010-08-20 22:26:30 +02007171
Jesse Barnes79e53942008-11-07 14:24:08 -08007172 kfree(intel_crtc);
7173}
7174
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007175static void intel_unpin_work_fn(struct work_struct *__work)
7176{
7177 struct intel_unpin_work *work =
7178 container_of(__work, struct intel_unpin_work, work);
Chris Wilsonb4a98e52012-11-01 09:26:26 +00007179 struct drm_device *dev = work->crtc->dev;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007180
Chris Wilsonb4a98e52012-11-01 09:26:26 +00007181 mutex_lock(&dev->struct_mutex);
Chris Wilson1690e1e2011-12-14 13:57:08 +01007182 intel_unpin_fb_obj(work->old_fb_obj);
Chris Wilson05394f32010-11-08 19:18:58 +00007183 drm_gem_object_unreference(&work->pending_flip_obj->base);
7184 drm_gem_object_unreference(&work->old_fb_obj->base);
Chris Wilsond9e86c02010-11-10 16:40:20 +00007185
Chris Wilsonb4a98e52012-11-01 09:26:26 +00007186 intel_update_fbc(dev);
7187 mutex_unlock(&dev->struct_mutex);
7188
7189 BUG_ON(atomic_read(&to_intel_crtc(work->crtc)->unpin_work_count) == 0);
7190 atomic_dec(&to_intel_crtc(work->crtc)->unpin_work_count);
7191
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007192 kfree(work);
7193}
7194
Jesse Barnes1afe3e92010-03-26 10:35:20 -07007195static void do_intel_finish_page_flip(struct drm_device *dev,
Mario Kleiner49b14a52010-12-09 07:00:07 +01007196 struct drm_crtc *crtc)
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007197{
7198 drm_i915_private_t *dev_priv = dev->dev_private;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007199 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
7200 struct intel_unpin_work *work;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007201 unsigned long flags;
7202
7203 /* Ignore early vblank irqs */
7204 if (intel_crtc == NULL)
7205 return;
7206
7207 spin_lock_irqsave(&dev->event_lock, flags);
7208 work = intel_crtc->unpin_work;
Chris Wilsone7d841c2012-12-03 11:36:30 +00007209
7210 /* Ensure we don't miss a work->pending update ... */
7211 smp_rmb();
7212
7213 if (work == NULL || atomic_read(&work->pending) < INTEL_FLIP_COMPLETE) {
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007214 spin_unlock_irqrestore(&dev->event_lock, flags);
7215 return;
7216 }
7217
Chris Wilsone7d841c2012-12-03 11:36:30 +00007218 /* and that the unpin work is consistent wrt ->pending. */
7219 smp_rmb();
7220
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007221 intel_crtc->unpin_work = NULL;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007222
Rob Clark45a066e2012-10-08 14:50:40 -05007223 if (work->event)
7224 drm_send_vblank_event(dev, intel_crtc->pipe, work->event);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007225
Mario Kleiner0af7e4d2010-12-08 04:07:19 +01007226 drm_vblank_put(dev, intel_crtc->pipe);
7227
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007228 spin_unlock_irqrestore(&dev->event_lock, flags);
7229
Daniel Vetter2c10d572012-12-20 21:24:07 +01007230 wake_up_all(&dev_priv->pending_flip_queue);
Chris Wilsonb4a98e52012-11-01 09:26:26 +00007231
7232 queue_work(dev_priv->wq, &work->work);
Jesse Barnese5510fa2010-07-01 16:48:37 -07007233
7234 trace_i915_flip_complete(intel_crtc->plane, work->pending_flip_obj);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007235}
7236
Jesse Barnes1afe3e92010-03-26 10:35:20 -07007237void intel_finish_page_flip(struct drm_device *dev, int pipe)
7238{
7239 drm_i915_private_t *dev_priv = dev->dev_private;
7240 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
7241
Mario Kleiner49b14a52010-12-09 07:00:07 +01007242 do_intel_finish_page_flip(dev, crtc);
Jesse Barnes1afe3e92010-03-26 10:35:20 -07007243}
7244
7245void intel_finish_page_flip_plane(struct drm_device *dev, int plane)
7246{
7247 drm_i915_private_t *dev_priv = dev->dev_private;
7248 struct drm_crtc *crtc = dev_priv->plane_to_crtc_mapping[plane];
7249
Mario Kleiner49b14a52010-12-09 07:00:07 +01007250 do_intel_finish_page_flip(dev, crtc);
Jesse Barnes1afe3e92010-03-26 10:35:20 -07007251}
7252
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007253void intel_prepare_page_flip(struct drm_device *dev, int plane)
7254{
7255 drm_i915_private_t *dev_priv = dev->dev_private;
7256 struct intel_crtc *intel_crtc =
7257 to_intel_crtc(dev_priv->plane_to_crtc_mapping[plane]);
7258 unsigned long flags;
7259
Chris Wilsone7d841c2012-12-03 11:36:30 +00007260 /* NB: An MMIO update of the plane base pointer will also
7261 * generate a page-flip completion irq, i.e. every modeset
7262 * is also accompanied by a spurious intel_prepare_page_flip().
7263 */
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007264 spin_lock_irqsave(&dev->event_lock, flags);
Chris Wilsone7d841c2012-12-03 11:36:30 +00007265 if (intel_crtc->unpin_work)
7266 atomic_inc_not_zero(&intel_crtc->unpin_work->pending);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007267 spin_unlock_irqrestore(&dev->event_lock, flags);
7268}
7269
Chris Wilsone7d841c2012-12-03 11:36:30 +00007270inline static void intel_mark_page_flip_active(struct intel_crtc *intel_crtc)
7271{
7272 /* Ensure that the work item is consistent when activating it ... */
7273 smp_wmb();
7274 atomic_set(&intel_crtc->unpin_work->pending, INTEL_FLIP_PENDING);
7275 /* and that it is marked active as soon as the irq could fire. */
7276 smp_wmb();
7277}
7278
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07007279static int intel_gen2_queue_flip(struct drm_device *dev,
7280 struct drm_crtc *crtc,
7281 struct drm_framebuffer *fb,
7282 struct drm_i915_gem_object *obj)
7283{
7284 struct drm_i915_private *dev_priv = dev->dev_private;
7285 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07007286 u32 flip_mask;
Daniel Vetter6d90c952012-04-26 23:28:05 +02007287 struct intel_ring_buffer *ring = &dev_priv->ring[RCS];
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07007288 int ret;
7289
Daniel Vetter6d90c952012-04-26 23:28:05 +02007290 ret = intel_pin_and_fence_fb_obj(dev, obj, ring);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07007291 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01007292 goto err;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07007293
Daniel Vetter6d90c952012-04-26 23:28:05 +02007294 ret = intel_ring_begin(ring, 6);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07007295 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01007296 goto err_unpin;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07007297
7298 /* Can't queue multiple flips, so wait for the previous
7299 * one to finish before executing the next.
7300 */
7301 if (intel_crtc->plane)
7302 flip_mask = MI_WAIT_FOR_PLANE_B_FLIP;
7303 else
7304 flip_mask = MI_WAIT_FOR_PLANE_A_FLIP;
Daniel Vetter6d90c952012-04-26 23:28:05 +02007305 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | flip_mask);
7306 intel_ring_emit(ring, MI_NOOP);
7307 intel_ring_emit(ring, MI_DISPLAY_FLIP |
7308 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
7309 intel_ring_emit(ring, fb->pitches[0]);
Daniel Vettere506a0c2012-07-05 12:17:29 +02007310 intel_ring_emit(ring, obj->gtt_offset + intel_crtc->dspaddr_offset);
Daniel Vetter6d90c952012-04-26 23:28:05 +02007311 intel_ring_emit(ring, 0); /* aux display base address, unused */
Chris Wilsone7d841c2012-12-03 11:36:30 +00007312
7313 intel_mark_page_flip_active(intel_crtc);
Daniel Vetter6d90c952012-04-26 23:28:05 +02007314 intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01007315 return 0;
7316
7317err_unpin:
7318 intel_unpin_fb_obj(obj);
7319err:
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07007320 return ret;
7321}
7322
7323static int intel_gen3_queue_flip(struct drm_device *dev,
7324 struct drm_crtc *crtc,
7325 struct drm_framebuffer *fb,
7326 struct drm_i915_gem_object *obj)
7327{
7328 struct drm_i915_private *dev_priv = dev->dev_private;
7329 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07007330 u32 flip_mask;
Daniel Vetter6d90c952012-04-26 23:28:05 +02007331 struct intel_ring_buffer *ring = &dev_priv->ring[RCS];
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07007332 int ret;
7333
Daniel Vetter6d90c952012-04-26 23:28:05 +02007334 ret = intel_pin_and_fence_fb_obj(dev, obj, ring);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07007335 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01007336 goto err;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07007337
Daniel Vetter6d90c952012-04-26 23:28:05 +02007338 ret = intel_ring_begin(ring, 6);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07007339 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01007340 goto err_unpin;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07007341
7342 if (intel_crtc->plane)
7343 flip_mask = MI_WAIT_FOR_PLANE_B_FLIP;
7344 else
7345 flip_mask = MI_WAIT_FOR_PLANE_A_FLIP;
Daniel Vetter6d90c952012-04-26 23:28:05 +02007346 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | flip_mask);
7347 intel_ring_emit(ring, MI_NOOP);
7348 intel_ring_emit(ring, MI_DISPLAY_FLIP_I915 |
7349 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
7350 intel_ring_emit(ring, fb->pitches[0]);
Daniel Vettere506a0c2012-07-05 12:17:29 +02007351 intel_ring_emit(ring, obj->gtt_offset + intel_crtc->dspaddr_offset);
Daniel Vetter6d90c952012-04-26 23:28:05 +02007352 intel_ring_emit(ring, MI_NOOP);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07007353
Chris Wilsone7d841c2012-12-03 11:36:30 +00007354 intel_mark_page_flip_active(intel_crtc);
Daniel Vetter6d90c952012-04-26 23:28:05 +02007355 intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01007356 return 0;
7357
7358err_unpin:
7359 intel_unpin_fb_obj(obj);
7360err:
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07007361 return ret;
7362}
7363
7364static int intel_gen4_queue_flip(struct drm_device *dev,
7365 struct drm_crtc *crtc,
7366 struct drm_framebuffer *fb,
7367 struct drm_i915_gem_object *obj)
7368{
7369 struct drm_i915_private *dev_priv = dev->dev_private;
7370 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
7371 uint32_t pf, pipesrc;
Daniel Vetter6d90c952012-04-26 23:28:05 +02007372 struct intel_ring_buffer *ring = &dev_priv->ring[RCS];
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07007373 int ret;
7374
Daniel Vetter6d90c952012-04-26 23:28:05 +02007375 ret = intel_pin_and_fence_fb_obj(dev, obj, ring);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07007376 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01007377 goto err;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07007378
Daniel Vetter6d90c952012-04-26 23:28:05 +02007379 ret = intel_ring_begin(ring, 4);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07007380 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01007381 goto err_unpin;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07007382
7383 /* i965+ uses the linear or tiled offsets from the
7384 * Display Registers (which do not change across a page-flip)
7385 * so we need only reprogram the base address.
7386 */
Daniel Vetter6d90c952012-04-26 23:28:05 +02007387 intel_ring_emit(ring, MI_DISPLAY_FLIP |
7388 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
7389 intel_ring_emit(ring, fb->pitches[0]);
Daniel Vetterc2c75132012-07-05 12:17:30 +02007390 intel_ring_emit(ring,
7391 (obj->gtt_offset + intel_crtc->dspaddr_offset) |
7392 obj->tiling_mode);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07007393
7394 /* XXX Enabling the panel-fitter across page-flip is so far
7395 * untested on non-native modes, so ignore it for now.
7396 * pf = I915_READ(pipe == 0 ? PFA_CTL_1 : PFB_CTL_1) & PF_ENABLE;
7397 */
7398 pf = 0;
7399 pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff;
Daniel Vetter6d90c952012-04-26 23:28:05 +02007400 intel_ring_emit(ring, pf | pipesrc);
Chris Wilsone7d841c2012-12-03 11:36:30 +00007401
7402 intel_mark_page_flip_active(intel_crtc);
Daniel Vetter6d90c952012-04-26 23:28:05 +02007403 intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01007404 return 0;
7405
7406err_unpin:
7407 intel_unpin_fb_obj(obj);
7408err:
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07007409 return ret;
7410}
7411
7412static int intel_gen6_queue_flip(struct drm_device *dev,
7413 struct drm_crtc *crtc,
7414 struct drm_framebuffer *fb,
7415 struct drm_i915_gem_object *obj)
7416{
7417 struct drm_i915_private *dev_priv = dev->dev_private;
7418 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter6d90c952012-04-26 23:28:05 +02007419 struct intel_ring_buffer *ring = &dev_priv->ring[RCS];
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07007420 uint32_t pf, pipesrc;
7421 int ret;
7422
Daniel Vetter6d90c952012-04-26 23:28:05 +02007423 ret = intel_pin_and_fence_fb_obj(dev, obj, ring);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07007424 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01007425 goto err;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07007426
Daniel Vetter6d90c952012-04-26 23:28:05 +02007427 ret = intel_ring_begin(ring, 4);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07007428 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01007429 goto err_unpin;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07007430
Daniel Vetter6d90c952012-04-26 23:28:05 +02007431 intel_ring_emit(ring, MI_DISPLAY_FLIP |
7432 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
7433 intel_ring_emit(ring, fb->pitches[0] | obj->tiling_mode);
Daniel Vetterc2c75132012-07-05 12:17:30 +02007434 intel_ring_emit(ring, obj->gtt_offset + intel_crtc->dspaddr_offset);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07007435
Chris Wilson99d9acd2012-04-17 20:37:00 +01007436 /* Contrary to the suggestions in the documentation,
7437 * "Enable Panel Fitter" does not seem to be required when page
7438 * flipping with a non-native mode, and worse causes a normal
7439 * modeset to fail.
7440 * pf = I915_READ(PF_CTL(intel_crtc->pipe)) & PF_ENABLE;
7441 */
7442 pf = 0;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07007443 pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff;
Daniel Vetter6d90c952012-04-26 23:28:05 +02007444 intel_ring_emit(ring, pf | pipesrc);
Chris Wilsone7d841c2012-12-03 11:36:30 +00007445
7446 intel_mark_page_flip_active(intel_crtc);
Daniel Vetter6d90c952012-04-26 23:28:05 +02007447 intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01007448 return 0;
7449
7450err_unpin:
7451 intel_unpin_fb_obj(obj);
7452err:
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07007453 return ret;
7454}
7455
Jesse Barnes7c9017e2011-06-16 12:18:54 -07007456/*
7457 * On gen7 we currently use the blit ring because (in early silicon at least)
7458 * the render ring doesn't give us interrpts for page flip completion, which
7459 * means clients will hang after the first flip is queued. Fortunately the
7460 * blit ring generates interrupts properly, so use it instead.
7461 */
7462static int intel_gen7_queue_flip(struct drm_device *dev,
7463 struct drm_crtc *crtc,
7464 struct drm_framebuffer *fb,
7465 struct drm_i915_gem_object *obj)
7466{
7467 struct drm_i915_private *dev_priv = dev->dev_private;
7468 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
7469 struct intel_ring_buffer *ring = &dev_priv->ring[BCS];
Daniel Vettercb05d8d2012-05-23 14:02:00 +02007470 uint32_t plane_bit = 0;
Jesse Barnes7c9017e2011-06-16 12:18:54 -07007471 int ret;
7472
7473 ret = intel_pin_and_fence_fb_obj(dev, obj, ring);
7474 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01007475 goto err;
Jesse Barnes7c9017e2011-06-16 12:18:54 -07007476
Daniel Vettercb05d8d2012-05-23 14:02:00 +02007477 switch(intel_crtc->plane) {
7478 case PLANE_A:
7479 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_A;
7480 break;
7481 case PLANE_B:
7482 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_B;
7483 break;
7484 case PLANE_C:
7485 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_C;
7486 break;
7487 default:
7488 WARN_ONCE(1, "unknown plane in flip command\n");
7489 ret = -ENODEV;
Eugeni Dodonovab3951e2012-06-18 19:03:38 -03007490 goto err_unpin;
Daniel Vettercb05d8d2012-05-23 14:02:00 +02007491 }
7492
Jesse Barnes7c9017e2011-06-16 12:18:54 -07007493 ret = intel_ring_begin(ring, 4);
7494 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01007495 goto err_unpin;
Jesse Barnes7c9017e2011-06-16 12:18:54 -07007496
Daniel Vettercb05d8d2012-05-23 14:02:00 +02007497 intel_ring_emit(ring, MI_DISPLAY_FLIP_I915 | plane_bit);
Ville Syrjälä01f2c772011-12-20 00:06:49 +02007498 intel_ring_emit(ring, (fb->pitches[0] | obj->tiling_mode));
Daniel Vetterc2c75132012-07-05 12:17:30 +02007499 intel_ring_emit(ring, obj->gtt_offset + intel_crtc->dspaddr_offset);
Jesse Barnes7c9017e2011-06-16 12:18:54 -07007500 intel_ring_emit(ring, (MI_NOOP));
Chris Wilsone7d841c2012-12-03 11:36:30 +00007501
7502 intel_mark_page_flip_active(intel_crtc);
Jesse Barnes7c9017e2011-06-16 12:18:54 -07007503 intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01007504 return 0;
7505
7506err_unpin:
7507 intel_unpin_fb_obj(obj);
7508err:
Jesse Barnes7c9017e2011-06-16 12:18:54 -07007509 return ret;
7510}
7511
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07007512static int intel_default_queue_flip(struct drm_device *dev,
7513 struct drm_crtc *crtc,
7514 struct drm_framebuffer *fb,
7515 struct drm_i915_gem_object *obj)
7516{
7517 return -ENODEV;
7518}
7519
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007520static int intel_crtc_page_flip(struct drm_crtc *crtc,
7521 struct drm_framebuffer *fb,
7522 struct drm_pending_vblank_event *event)
7523{
7524 struct drm_device *dev = crtc->dev;
7525 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä4a35f832013-02-22 16:53:38 +02007526 struct drm_framebuffer *old_fb = crtc->fb;
7527 struct drm_i915_gem_object *obj = to_intel_framebuffer(fb)->obj;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007528 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
7529 struct intel_unpin_work *work;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07007530 unsigned long flags;
Chris Wilson52e68632010-08-08 10:15:59 +01007531 int ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007532
Ville Syrjäläe6a595d2012-05-24 21:08:59 +03007533 /* Can't change pixel format via MI display flips. */
7534 if (fb->pixel_format != crtc->fb->pixel_format)
7535 return -EINVAL;
7536
7537 /*
7538 * TILEOFF/LINOFF registers can't be changed via MI display flips.
7539 * Note that pitch changes could also affect these register.
7540 */
7541 if (INTEL_INFO(dev)->gen > 3 &&
7542 (fb->offsets[0] != crtc->fb->offsets[0] ||
7543 fb->pitches[0] != crtc->fb->pitches[0]))
7544 return -EINVAL;
7545
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007546 work = kzalloc(sizeof *work, GFP_KERNEL);
7547 if (work == NULL)
7548 return -ENOMEM;
7549
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007550 work->event = event;
Chris Wilsonb4a98e52012-11-01 09:26:26 +00007551 work->crtc = crtc;
Ville Syrjälä4a35f832013-02-22 16:53:38 +02007552 work->old_fb_obj = to_intel_framebuffer(old_fb)->obj;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007553 INIT_WORK(&work->work, intel_unpin_work_fn);
7554
Jesse Barnes7317c75e62011-08-29 09:45:28 -07007555 ret = drm_vblank_get(dev, intel_crtc->pipe);
7556 if (ret)
7557 goto free_work;
7558
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007559 /* We borrow the event spin lock for protecting unpin_work */
7560 spin_lock_irqsave(&dev->event_lock, flags);
7561 if (intel_crtc->unpin_work) {
7562 spin_unlock_irqrestore(&dev->event_lock, flags);
7563 kfree(work);
Jesse Barnes7317c75e62011-08-29 09:45:28 -07007564 drm_vblank_put(dev, intel_crtc->pipe);
Chris Wilson468f0b42010-05-27 13:18:13 +01007565
7566 DRM_DEBUG_DRIVER("flip queue: crtc already busy\n");
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007567 return -EBUSY;
7568 }
7569 intel_crtc->unpin_work = work;
7570 spin_unlock_irqrestore(&dev->event_lock, flags);
7571
Chris Wilsonb4a98e52012-11-01 09:26:26 +00007572 if (atomic_read(&intel_crtc->unpin_work_count) >= 2)
7573 flush_workqueue(dev_priv->wq);
7574
Chris Wilson79158102012-05-23 11:13:58 +01007575 ret = i915_mutex_lock_interruptible(dev);
7576 if (ret)
7577 goto cleanup;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007578
Jesse Barnes75dfca82010-02-10 15:09:44 -08007579 /* Reference the objects for the scheduled work. */
Chris Wilson05394f32010-11-08 19:18:58 +00007580 drm_gem_object_reference(&work->old_fb_obj->base);
7581 drm_gem_object_reference(&obj->base);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007582
7583 crtc->fb = fb;
Chris Wilson96b099f2010-06-07 14:03:04 +01007584
Chris Wilsone1f99ce2010-10-27 12:45:26 +01007585 work->pending_flip_obj = obj;
Chris Wilsone1f99ce2010-10-27 12:45:26 +01007586
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01007587 work->enable_stall_check = true;
7588
Chris Wilsonb4a98e52012-11-01 09:26:26 +00007589 atomic_inc(&intel_crtc->unpin_work_count);
Ville Syrjälä10d83732013-01-29 18:13:34 +02007590 intel_crtc->reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
Chris Wilsone1f99ce2010-10-27 12:45:26 +01007591
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07007592 ret = dev_priv->display.queue_flip(dev, crtc, fb, obj);
7593 if (ret)
7594 goto cleanup_pending;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007595
Chris Wilson7782de32011-07-08 12:22:41 +01007596 intel_disable_fbc(dev);
Chris Wilsonf047e392012-07-21 12:31:41 +01007597 intel_mark_fb_busy(obj);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007598 mutex_unlock(&dev->struct_mutex);
7599
Jesse Barnese5510fa2010-07-01 16:48:37 -07007600 trace_i915_flip_request(intel_crtc->plane, obj);
7601
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007602 return 0;
Chris Wilson96b099f2010-06-07 14:03:04 +01007603
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07007604cleanup_pending:
Chris Wilsonb4a98e52012-11-01 09:26:26 +00007605 atomic_dec(&intel_crtc->unpin_work_count);
Ville Syrjälä4a35f832013-02-22 16:53:38 +02007606 crtc->fb = old_fb;
Chris Wilson05394f32010-11-08 19:18:58 +00007607 drm_gem_object_unreference(&work->old_fb_obj->base);
7608 drm_gem_object_unreference(&obj->base);
Chris Wilson96b099f2010-06-07 14:03:04 +01007609 mutex_unlock(&dev->struct_mutex);
7610
Chris Wilson79158102012-05-23 11:13:58 +01007611cleanup:
Chris Wilson96b099f2010-06-07 14:03:04 +01007612 spin_lock_irqsave(&dev->event_lock, flags);
7613 intel_crtc->unpin_work = NULL;
7614 spin_unlock_irqrestore(&dev->event_lock, flags);
7615
Jesse Barnes7317c75e62011-08-29 09:45:28 -07007616 drm_vblank_put(dev, intel_crtc->pipe);
7617free_work:
Chris Wilson96b099f2010-06-07 14:03:04 +01007618 kfree(work);
7619
7620 return ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05007621}
7622
Chris Wilsonf6e5b162011-04-12 18:06:51 +01007623static struct drm_crtc_helper_funcs intel_helper_funcs = {
Chris Wilsonf6e5b162011-04-12 18:06:51 +01007624 .mode_set_base_atomic = intel_pipe_set_base_atomic,
7625 .load_lut = intel_crtc_load_lut,
Chris Wilsonf6e5b162011-04-12 18:06:51 +01007626};
7627
Daniel Vetter6ed0f792012-07-08 19:41:43 +02007628bool intel_encoder_check_is_cloned(struct intel_encoder *encoder)
7629{
7630 struct intel_encoder *other_encoder;
7631 struct drm_crtc *crtc = &encoder->new_crtc->base;
7632
7633 if (WARN_ON(!crtc))
7634 return false;
7635
7636 list_for_each_entry(other_encoder,
7637 &crtc->dev->mode_config.encoder_list,
7638 base.head) {
7639
7640 if (&other_encoder->new_crtc->base != crtc ||
7641 encoder == other_encoder)
7642 continue;
7643 else
7644 return true;
7645 }
7646
7647 return false;
7648}
7649
Daniel Vetter50f56112012-07-02 09:35:43 +02007650static bool intel_encoder_crtc_ok(struct drm_encoder *encoder,
7651 struct drm_crtc *crtc)
7652{
7653 struct drm_device *dev;
7654 struct drm_crtc *tmp;
7655 int crtc_mask = 1;
7656
7657 WARN(!crtc, "checking null crtc?\n");
7658
7659 dev = crtc->dev;
7660
7661 list_for_each_entry(tmp, &dev->mode_config.crtc_list, head) {
7662 if (tmp == crtc)
7663 break;
7664 crtc_mask <<= 1;
7665 }
7666
7667 if (encoder->possible_crtcs & crtc_mask)
7668 return true;
7669 return false;
7670}
7671
Daniel Vetter9a935852012-07-05 22:34:27 +02007672/**
7673 * intel_modeset_update_staged_output_state
7674 *
7675 * Updates the staged output configuration state, e.g. after we've read out the
7676 * current hw state.
7677 */
7678static void intel_modeset_update_staged_output_state(struct drm_device *dev)
7679{
7680 struct intel_encoder *encoder;
7681 struct intel_connector *connector;
7682
7683 list_for_each_entry(connector, &dev->mode_config.connector_list,
7684 base.head) {
7685 connector->new_encoder =
7686 to_intel_encoder(connector->base.encoder);
7687 }
7688
7689 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
7690 base.head) {
7691 encoder->new_crtc =
7692 to_intel_crtc(encoder->base.crtc);
7693 }
7694}
7695
7696/**
7697 * intel_modeset_commit_output_state
7698 *
7699 * This function copies the stage display pipe configuration to the real one.
7700 */
7701static void intel_modeset_commit_output_state(struct drm_device *dev)
7702{
7703 struct intel_encoder *encoder;
7704 struct intel_connector *connector;
7705
7706 list_for_each_entry(connector, &dev->mode_config.connector_list,
7707 base.head) {
7708 connector->base.encoder = &connector->new_encoder->base;
7709 }
7710
7711 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
7712 base.head) {
7713 encoder->base.crtc = &encoder->new_crtc->base;
7714 }
7715}
7716
Daniel Vetter050f7ae2013-06-02 13:26:23 +02007717static void
7718connected_sink_compute_bpp(struct intel_connector * connector,
7719 struct intel_crtc_config *pipe_config)
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01007720{
Daniel Vetter050f7ae2013-06-02 13:26:23 +02007721 int bpp = pipe_config->pipe_bpp;
7722
7723 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] checking for sink bpp constrains\n",
7724 connector->base.base.id,
7725 drm_get_connector_name(&connector->base));
7726
7727 /* Don't use an invalid EDID bpc value */
7728 if (connector->base.display_info.bpc &&
7729 connector->base.display_info.bpc * 3 < bpp) {
7730 DRM_DEBUG_KMS("clamping display bpp (was %d) to EDID reported max of %d\n",
7731 bpp, connector->base.display_info.bpc*3);
7732 pipe_config->pipe_bpp = connector->base.display_info.bpc*3;
7733 }
7734
7735 /* Clamp bpp to 8 on screens without EDID 1.4 */
7736 if (connector->base.display_info.bpc == 0 && bpp > 24) {
7737 DRM_DEBUG_KMS("clamping display bpp (was %d) to default limit of 24\n",
7738 bpp);
7739 pipe_config->pipe_bpp = 24;
7740 }
7741}
7742
7743static int
7744compute_baseline_pipe_bpp(struct intel_crtc *crtc,
7745 struct drm_framebuffer *fb,
7746 struct intel_crtc_config *pipe_config)
7747{
7748 struct drm_device *dev = crtc->base.dev;
7749 struct intel_connector *connector;
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01007750 int bpp;
7751
Daniel Vetterd42264b2013-03-28 16:38:08 +01007752 switch (fb->pixel_format) {
7753 case DRM_FORMAT_C8:
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01007754 bpp = 8*3; /* since we go through a colormap */
7755 break;
Daniel Vetterd42264b2013-03-28 16:38:08 +01007756 case DRM_FORMAT_XRGB1555:
7757 case DRM_FORMAT_ARGB1555:
7758 /* checked in intel_framebuffer_init already */
7759 if (WARN_ON(INTEL_INFO(dev)->gen > 3))
7760 return -EINVAL;
7761 case DRM_FORMAT_RGB565:
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01007762 bpp = 6*3; /* min is 18bpp */
7763 break;
Daniel Vetterd42264b2013-03-28 16:38:08 +01007764 case DRM_FORMAT_XBGR8888:
7765 case DRM_FORMAT_ABGR8888:
7766 /* checked in intel_framebuffer_init already */
7767 if (WARN_ON(INTEL_INFO(dev)->gen < 4))
7768 return -EINVAL;
7769 case DRM_FORMAT_XRGB8888:
7770 case DRM_FORMAT_ARGB8888:
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01007771 bpp = 8*3;
7772 break;
Daniel Vetterd42264b2013-03-28 16:38:08 +01007773 case DRM_FORMAT_XRGB2101010:
7774 case DRM_FORMAT_ARGB2101010:
7775 case DRM_FORMAT_XBGR2101010:
7776 case DRM_FORMAT_ABGR2101010:
7777 /* checked in intel_framebuffer_init already */
7778 if (WARN_ON(INTEL_INFO(dev)->gen < 4))
Daniel Vetterbaba1332013-03-27 00:45:00 +01007779 return -EINVAL;
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01007780 bpp = 10*3;
7781 break;
Daniel Vetterbaba1332013-03-27 00:45:00 +01007782 /* TODO: gen4+ supports 16 bpc floating point, too. */
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01007783 default:
7784 DRM_DEBUG_KMS("unsupported depth\n");
7785 return -EINVAL;
7786 }
7787
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01007788 pipe_config->pipe_bpp = bpp;
7789
7790 /* Clamp display bpp to EDID value */
7791 list_for_each_entry(connector, &dev->mode_config.connector_list,
Daniel Vetter050f7ae2013-06-02 13:26:23 +02007792 base.head) {
Daniel Vetter1b829e02013-06-02 13:26:24 +02007793 if (!connector->new_encoder ||
7794 connector->new_encoder->new_crtc != crtc)
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01007795 continue;
7796
Daniel Vetter050f7ae2013-06-02 13:26:23 +02007797 connected_sink_compute_bpp(connector, pipe_config);
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01007798 }
7799
7800 return bpp;
7801}
7802
Daniel Vetterc0b03412013-05-28 12:05:54 +02007803static void intel_dump_pipe_config(struct intel_crtc *crtc,
7804 struct intel_crtc_config *pipe_config,
7805 const char *context)
7806{
7807 DRM_DEBUG_KMS("[CRTC:%d]%s config for pipe %c\n", crtc->base.base.id,
7808 context, pipe_name(crtc->pipe));
7809
7810 DRM_DEBUG_KMS("cpu_transcoder: %c\n", transcoder_name(pipe_config->cpu_transcoder));
7811 DRM_DEBUG_KMS("pipe bpp: %i, dithering: %i\n",
7812 pipe_config->pipe_bpp, pipe_config->dither);
7813 DRM_DEBUG_KMS("fdi/pch: %i, lanes: %i, gmch_m: %u, gmch_n: %u, link_m: %u, link_n: %u, tu: %u\n",
7814 pipe_config->has_pch_encoder,
7815 pipe_config->fdi_lanes,
7816 pipe_config->fdi_m_n.gmch_m, pipe_config->fdi_m_n.gmch_n,
7817 pipe_config->fdi_m_n.link_m, pipe_config->fdi_m_n.link_n,
7818 pipe_config->fdi_m_n.tu);
7819 DRM_DEBUG_KMS("requested mode:\n");
7820 drm_mode_debug_printmodeline(&pipe_config->requested_mode);
7821 DRM_DEBUG_KMS("adjusted mode:\n");
7822 drm_mode_debug_printmodeline(&pipe_config->adjusted_mode);
7823 DRM_DEBUG_KMS("gmch pfit: control: 0x%08x, ratios: 0x%08x, lvds border: 0x%08x\n",
7824 pipe_config->gmch_pfit.control,
7825 pipe_config->gmch_pfit.pgm_ratios,
7826 pipe_config->gmch_pfit.lvds_border_bits);
7827 DRM_DEBUG_KMS("pch pfit: pos: 0x%08x, size: 0x%08x\n",
7828 pipe_config->pch_pfit.pos,
7829 pipe_config->pch_pfit.size);
Paulo Zanoni42db64e2013-05-31 16:33:22 -03007830 DRM_DEBUG_KMS("ips: %i\n", pipe_config->ips_enabled);
Daniel Vetterc0b03412013-05-28 12:05:54 +02007831}
7832
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01007833static struct intel_crtc_config *
7834intel_modeset_pipe_config(struct drm_crtc *crtc,
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01007835 struct drm_framebuffer *fb,
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01007836 struct drm_display_mode *mode)
Daniel Vetter7758a112012-07-08 19:40:39 +02007837{
7838 struct drm_device *dev = crtc->dev;
Daniel Vetter7758a112012-07-08 19:40:39 +02007839 struct drm_encoder_helper_funcs *encoder_funcs;
7840 struct intel_encoder *encoder;
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01007841 struct intel_crtc_config *pipe_config;
Daniel Vettere29c22c2013-02-21 00:00:16 +01007842 int plane_bpp, ret = -EINVAL;
7843 bool retry = true;
Daniel Vetter7758a112012-07-08 19:40:39 +02007844
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01007845 pipe_config = kzalloc(sizeof(*pipe_config), GFP_KERNEL);
7846 if (!pipe_config)
Daniel Vetter7758a112012-07-08 19:40:39 +02007847 return ERR_PTR(-ENOMEM);
7848
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01007849 drm_mode_copy(&pipe_config->adjusted_mode, mode);
7850 drm_mode_copy(&pipe_config->requested_mode, mode);
Daniel Vettereccb1402013-05-22 00:50:22 +02007851 pipe_config->cpu_transcoder = to_intel_crtc(crtc)->pipe;
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01007852
Daniel Vetter050f7ae2013-06-02 13:26:23 +02007853 /* Compute a starting value for pipe_config->pipe_bpp taking the source
7854 * plane pixel format and any sink constraints into account. Returns the
7855 * source plane bpp so that dithering can be selected on mismatches
7856 * after encoders and crtc also have had their say. */
7857 plane_bpp = compute_baseline_pipe_bpp(to_intel_crtc(crtc),
7858 fb, pipe_config);
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01007859 if (plane_bpp < 0)
7860 goto fail;
7861
Daniel Vettere29c22c2013-02-21 00:00:16 +01007862encoder_retry:
Daniel Vetter7758a112012-07-08 19:40:39 +02007863 /* Pass our mode to the connectors and the CRTC to give them a chance to
7864 * adjust it according to limitations or connector properties, and also
7865 * a chance to reject the mode entirely.
7866 */
7867 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
7868 base.head) {
7869
7870 if (&encoder->new_crtc->base != crtc)
7871 continue;
Daniel Vetter7ae89232013-03-27 00:44:52 +01007872
7873 if (encoder->compute_config) {
7874 if (!(encoder->compute_config(encoder, pipe_config))) {
7875 DRM_DEBUG_KMS("Encoder config failure\n");
7876 goto fail;
7877 }
7878
7879 continue;
7880 }
7881
Daniel Vetter7758a112012-07-08 19:40:39 +02007882 encoder_funcs = encoder->base.helper_private;
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01007883 if (!(encoder_funcs->mode_fixup(&encoder->base,
7884 &pipe_config->requested_mode,
7885 &pipe_config->adjusted_mode))) {
Daniel Vetter7758a112012-07-08 19:40:39 +02007886 DRM_DEBUG_KMS("Encoder fixup failed\n");
7887 goto fail;
7888 }
7889 }
7890
Daniel Vettere29c22c2013-02-21 00:00:16 +01007891 ret = intel_crtc_compute_config(crtc, pipe_config);
7892 if (ret < 0) {
Daniel Vetter7758a112012-07-08 19:40:39 +02007893 DRM_DEBUG_KMS("CRTC fixup failed\n");
7894 goto fail;
7895 }
Daniel Vettere29c22c2013-02-21 00:00:16 +01007896
7897 if (ret == RETRY) {
7898 if (WARN(!retry, "loop in pipe configuration computation\n")) {
7899 ret = -EINVAL;
7900 goto fail;
7901 }
7902
7903 DRM_DEBUG_KMS("CRTC bw constrained, retrying\n");
7904 retry = false;
7905 goto encoder_retry;
7906 }
7907
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01007908 pipe_config->dither = pipe_config->pipe_bpp != plane_bpp;
7909 DRM_DEBUG_KMS("plane bpp: %i, pipe bpp: %i, dithering: %i\n",
7910 plane_bpp, pipe_config->pipe_bpp, pipe_config->dither);
7911
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01007912 return pipe_config;
Daniel Vetter7758a112012-07-08 19:40:39 +02007913fail:
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01007914 kfree(pipe_config);
Daniel Vettere29c22c2013-02-21 00:00:16 +01007915 return ERR_PTR(ret);
Daniel Vetter7758a112012-07-08 19:40:39 +02007916}
7917
Daniel Vettere2e1ed42012-07-08 21:14:38 +02007918/* Computes which crtcs are affected and sets the relevant bits in the mask. For
7919 * simplicity we use the crtc's pipe number (because it's easier to obtain). */
7920static void
7921intel_modeset_affected_pipes(struct drm_crtc *crtc, unsigned *modeset_pipes,
7922 unsigned *prepare_pipes, unsigned *disable_pipes)
7923{
7924 struct intel_crtc *intel_crtc;
7925 struct drm_device *dev = crtc->dev;
7926 struct intel_encoder *encoder;
7927 struct intel_connector *connector;
7928 struct drm_crtc *tmp_crtc;
7929
7930 *disable_pipes = *modeset_pipes = *prepare_pipes = 0;
7931
7932 /* Check which crtcs have changed outputs connected to them, these need
7933 * to be part of the prepare_pipes mask. We don't (yet) support global
7934 * modeset across multiple crtcs, so modeset_pipes will only have one
7935 * bit set at most. */
7936 list_for_each_entry(connector, &dev->mode_config.connector_list,
7937 base.head) {
7938 if (connector->base.encoder == &connector->new_encoder->base)
7939 continue;
7940
7941 if (connector->base.encoder) {
7942 tmp_crtc = connector->base.encoder->crtc;
7943
7944 *prepare_pipes |= 1 << to_intel_crtc(tmp_crtc)->pipe;
7945 }
7946
7947 if (connector->new_encoder)
7948 *prepare_pipes |=
7949 1 << connector->new_encoder->new_crtc->pipe;
7950 }
7951
7952 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
7953 base.head) {
7954 if (encoder->base.crtc == &encoder->new_crtc->base)
7955 continue;
7956
7957 if (encoder->base.crtc) {
7958 tmp_crtc = encoder->base.crtc;
7959
7960 *prepare_pipes |= 1 << to_intel_crtc(tmp_crtc)->pipe;
7961 }
7962
7963 if (encoder->new_crtc)
7964 *prepare_pipes |= 1 << encoder->new_crtc->pipe;
7965 }
7966
7967 /* Check for any pipes that will be fully disabled ... */
7968 list_for_each_entry(intel_crtc, &dev->mode_config.crtc_list,
7969 base.head) {
7970 bool used = false;
7971
7972 /* Don't try to disable disabled crtcs. */
7973 if (!intel_crtc->base.enabled)
7974 continue;
7975
7976 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
7977 base.head) {
7978 if (encoder->new_crtc == intel_crtc)
7979 used = true;
7980 }
7981
7982 if (!used)
7983 *disable_pipes |= 1 << intel_crtc->pipe;
7984 }
7985
7986
7987 /* set_mode is also used to update properties on life display pipes. */
7988 intel_crtc = to_intel_crtc(crtc);
7989 if (crtc->enabled)
7990 *prepare_pipes |= 1 << intel_crtc->pipe;
7991
Daniel Vetterb6c51642013-04-12 18:48:43 +02007992 /*
7993 * For simplicity do a full modeset on any pipe where the output routing
7994 * changed. We could be more clever, but that would require us to be
7995 * more careful with calling the relevant encoder->mode_set functions.
7996 */
Daniel Vettere2e1ed42012-07-08 21:14:38 +02007997 if (*prepare_pipes)
7998 *modeset_pipes = *prepare_pipes;
7999
8000 /* ... and mask these out. */
8001 *modeset_pipes &= ~(*disable_pipes);
8002 *prepare_pipes &= ~(*disable_pipes);
Daniel Vetterb6c51642013-04-12 18:48:43 +02008003
8004 /*
8005 * HACK: We don't (yet) fully support global modesets. intel_set_config
8006 * obies this rule, but the modeset restore mode of
8007 * intel_modeset_setup_hw_state does not.
8008 */
8009 *modeset_pipes &= 1 << intel_crtc->pipe;
8010 *prepare_pipes &= 1 << intel_crtc->pipe;
Daniel Vettere3641d32013-04-11 19:49:07 +02008011
8012 DRM_DEBUG_KMS("set mode pipe masks: modeset: %x, prepare: %x, disable: %x\n",
8013 *modeset_pipes, *prepare_pipes, *disable_pipes);
Daniel Vettere2e1ed42012-07-08 21:14:38 +02008014}
8015
Daniel Vetterea9d7582012-07-10 10:42:52 +02008016static bool intel_crtc_in_use(struct drm_crtc *crtc)
8017{
8018 struct drm_encoder *encoder;
8019 struct drm_device *dev = crtc->dev;
8020
8021 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head)
8022 if (encoder->crtc == crtc)
8023 return true;
8024
8025 return false;
8026}
8027
8028static void
8029intel_modeset_update_state(struct drm_device *dev, unsigned prepare_pipes)
8030{
8031 struct intel_encoder *intel_encoder;
8032 struct intel_crtc *intel_crtc;
8033 struct drm_connector *connector;
8034
8035 list_for_each_entry(intel_encoder, &dev->mode_config.encoder_list,
8036 base.head) {
8037 if (!intel_encoder->base.crtc)
8038 continue;
8039
8040 intel_crtc = to_intel_crtc(intel_encoder->base.crtc);
8041
8042 if (prepare_pipes & (1 << intel_crtc->pipe))
8043 intel_encoder->connectors_active = false;
8044 }
8045
8046 intel_modeset_commit_output_state(dev);
8047
8048 /* Update computed state. */
8049 list_for_each_entry(intel_crtc, &dev->mode_config.crtc_list,
8050 base.head) {
8051 intel_crtc->base.enabled = intel_crtc_in_use(&intel_crtc->base);
8052 }
8053
8054 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
8055 if (!connector->encoder || !connector->encoder->crtc)
8056 continue;
8057
8058 intel_crtc = to_intel_crtc(connector->encoder->crtc);
8059
8060 if (prepare_pipes & (1 << intel_crtc->pipe)) {
Daniel Vetter68d34722012-09-06 22:08:35 +02008061 struct drm_property *dpms_property =
8062 dev->mode_config.dpms_property;
8063
Daniel Vetterea9d7582012-07-10 10:42:52 +02008064 connector->dpms = DRM_MODE_DPMS_ON;
Rob Clark662595d2012-10-11 20:36:04 -05008065 drm_object_property_set_value(&connector->base,
Daniel Vetter68d34722012-09-06 22:08:35 +02008066 dpms_property,
8067 DRM_MODE_DPMS_ON);
Daniel Vetterea9d7582012-07-10 10:42:52 +02008068
8069 intel_encoder = to_intel_encoder(connector->encoder);
8070 intel_encoder->connectors_active = true;
8071 }
8072 }
8073
8074}
8075
Daniel Vetter25c5b262012-07-08 22:08:04 +02008076#define for_each_intel_crtc_masked(dev, mask, intel_crtc) \
8077 list_for_each_entry((intel_crtc), \
8078 &(dev)->mode_config.crtc_list, \
8079 base.head) \
Daniel Vetter0973f182013-04-19 11:25:33 +02008080 if (mask & (1 <<(intel_crtc)->pipe))
Daniel Vetter25c5b262012-07-08 22:08:04 +02008081
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01008082static bool
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02008083intel_pipe_config_compare(struct drm_device *dev,
8084 struct intel_crtc_config *current_config,
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01008085 struct intel_crtc_config *pipe_config)
8086{
Daniel Vetter08a24032013-04-19 11:25:34 +02008087#define PIPE_CONF_CHECK_I(name) \
8088 if (current_config->name != pipe_config->name) { \
8089 DRM_ERROR("mismatch in " #name " " \
8090 "(expected %i, found %i)\n", \
8091 current_config->name, \
8092 pipe_config->name); \
8093 return false; \
Daniel Vetter88adfff2013-03-28 10:42:01 +01008094 }
8095
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02008096#define PIPE_CONF_CHECK_FLAGS(name, mask) \
8097 if ((current_config->name ^ pipe_config->name) & (mask)) { \
8098 DRM_ERROR("mismatch in " #name " " \
8099 "(expected %i, found %i)\n", \
8100 current_config->name & (mask), \
8101 pipe_config->name & (mask)); \
8102 return false; \
8103 }
8104
Daniel Vettereccb1402013-05-22 00:50:22 +02008105 PIPE_CONF_CHECK_I(cpu_transcoder);
8106
Daniel Vetter08a24032013-04-19 11:25:34 +02008107 PIPE_CONF_CHECK_I(has_pch_encoder);
8108 PIPE_CONF_CHECK_I(fdi_lanes);
Daniel Vetter72419202013-04-04 13:28:53 +02008109 PIPE_CONF_CHECK_I(fdi_m_n.gmch_m);
8110 PIPE_CONF_CHECK_I(fdi_m_n.gmch_n);
8111 PIPE_CONF_CHECK_I(fdi_m_n.link_m);
8112 PIPE_CONF_CHECK_I(fdi_m_n.link_n);
8113 PIPE_CONF_CHECK_I(fdi_m_n.tu);
Daniel Vetter08a24032013-04-19 11:25:34 +02008114
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02008115 PIPE_CONF_CHECK_I(adjusted_mode.crtc_hdisplay);
8116 PIPE_CONF_CHECK_I(adjusted_mode.crtc_htotal);
8117 PIPE_CONF_CHECK_I(adjusted_mode.crtc_hblank_start);
8118 PIPE_CONF_CHECK_I(adjusted_mode.crtc_hblank_end);
8119 PIPE_CONF_CHECK_I(adjusted_mode.crtc_hsync_start);
8120 PIPE_CONF_CHECK_I(adjusted_mode.crtc_hsync_end);
8121
8122 PIPE_CONF_CHECK_I(adjusted_mode.crtc_vdisplay);
8123 PIPE_CONF_CHECK_I(adjusted_mode.crtc_vtotal);
8124 PIPE_CONF_CHECK_I(adjusted_mode.crtc_vblank_start);
8125 PIPE_CONF_CHECK_I(adjusted_mode.crtc_vblank_end);
8126 PIPE_CONF_CHECK_I(adjusted_mode.crtc_vsync_start);
8127 PIPE_CONF_CHECK_I(adjusted_mode.crtc_vsync_end);
8128
8129 PIPE_CONF_CHECK_FLAGS(adjusted_mode.flags,
8130 DRM_MODE_FLAG_INTERLACE);
8131
Jesse Barnes045ac3b2013-05-14 17:08:26 -07008132 PIPE_CONF_CHECK_FLAGS(adjusted_mode.flags,
8133 DRM_MODE_FLAG_PHSYNC);
8134 PIPE_CONF_CHECK_FLAGS(adjusted_mode.flags,
8135 DRM_MODE_FLAG_NHSYNC);
8136 PIPE_CONF_CHECK_FLAGS(adjusted_mode.flags,
8137 DRM_MODE_FLAG_PVSYNC);
8138 PIPE_CONF_CHECK_FLAGS(adjusted_mode.flags,
8139 DRM_MODE_FLAG_NVSYNC);
8140
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02008141 PIPE_CONF_CHECK_I(requested_mode.hdisplay);
8142 PIPE_CONF_CHECK_I(requested_mode.vdisplay);
8143
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02008144 PIPE_CONF_CHECK_I(gmch_pfit.control);
8145 /* pfit ratios are autocomputed by the hw on gen4+ */
8146 if (INTEL_INFO(dev)->gen < 4)
8147 PIPE_CONF_CHECK_I(gmch_pfit.pgm_ratios);
8148 PIPE_CONF_CHECK_I(gmch_pfit.lvds_border_bits);
8149 PIPE_CONF_CHECK_I(pch_pfit.pos);
8150 PIPE_CONF_CHECK_I(pch_pfit.size);
8151
Paulo Zanoni42db64e2013-05-31 16:33:22 -03008152 PIPE_CONF_CHECK_I(ips_enabled);
8153
Daniel Vetter08a24032013-04-19 11:25:34 +02008154#undef PIPE_CONF_CHECK_I
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02008155#undef PIPE_CONF_CHECK_FLAGS
Daniel Vetter627eb5a2013-04-29 19:33:42 +02008156
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01008157 return true;
8158}
8159
Daniel Vetterb9805142012-08-31 17:37:33 +02008160void
Daniel Vetter8af6cf82012-07-10 09:50:11 +02008161intel_modeset_check_state(struct drm_device *dev)
8162{
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01008163 drm_i915_private_t *dev_priv = dev->dev_private;
Daniel Vetter8af6cf82012-07-10 09:50:11 +02008164 struct intel_crtc *crtc;
8165 struct intel_encoder *encoder;
8166 struct intel_connector *connector;
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01008167 struct intel_crtc_config pipe_config;
Daniel Vetter8af6cf82012-07-10 09:50:11 +02008168
8169 list_for_each_entry(connector, &dev->mode_config.connector_list,
8170 base.head) {
8171 /* This also checks the encoder/connector hw state with the
8172 * ->get_hw_state callbacks. */
8173 intel_connector_check_state(connector);
8174
8175 WARN(&connector->new_encoder->base != connector->base.encoder,
8176 "connector's staged encoder doesn't match current encoder\n");
8177 }
8178
8179 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
8180 base.head) {
8181 bool enabled = false;
8182 bool active = false;
8183 enum pipe pipe, tracked_pipe;
8184
8185 DRM_DEBUG_KMS("[ENCODER:%d:%s]\n",
8186 encoder->base.base.id,
8187 drm_get_encoder_name(&encoder->base));
8188
8189 WARN(&encoder->new_crtc->base != encoder->base.crtc,
8190 "encoder's stage crtc doesn't match current crtc\n");
8191 WARN(encoder->connectors_active && !encoder->base.crtc,
8192 "encoder's active_connectors set, but no crtc\n");
8193
8194 list_for_each_entry(connector, &dev->mode_config.connector_list,
8195 base.head) {
8196 if (connector->base.encoder != &encoder->base)
8197 continue;
8198 enabled = true;
8199 if (connector->base.dpms != DRM_MODE_DPMS_OFF)
8200 active = true;
8201 }
8202 WARN(!!encoder->base.crtc != enabled,
8203 "encoder's enabled state mismatch "
8204 "(expected %i, found %i)\n",
8205 !!encoder->base.crtc, enabled);
8206 WARN(active && !encoder->base.crtc,
8207 "active encoder with no crtc\n");
8208
8209 WARN(encoder->connectors_active != active,
8210 "encoder's computed active state doesn't match tracked active state "
8211 "(expected %i, found %i)\n", active, encoder->connectors_active);
8212
8213 active = encoder->get_hw_state(encoder, &pipe);
8214 WARN(active != encoder->connectors_active,
8215 "encoder's hw state doesn't match sw tracking "
8216 "(expected %i, found %i)\n",
8217 encoder->connectors_active, active);
8218
8219 if (!encoder->base.crtc)
8220 continue;
8221
8222 tracked_pipe = to_intel_crtc(encoder->base.crtc)->pipe;
8223 WARN(active && pipe != tracked_pipe,
8224 "active encoder's pipe doesn't match"
8225 "(expected %i, found %i)\n",
8226 tracked_pipe, pipe);
8227
8228 }
8229
8230 list_for_each_entry(crtc, &dev->mode_config.crtc_list,
8231 base.head) {
8232 bool enabled = false;
8233 bool active = false;
8234
Jesse Barnes045ac3b2013-05-14 17:08:26 -07008235 memset(&pipe_config, 0, sizeof(pipe_config));
8236
Daniel Vetter8af6cf82012-07-10 09:50:11 +02008237 DRM_DEBUG_KMS("[CRTC:%d]\n",
8238 crtc->base.base.id);
8239
8240 WARN(crtc->active && !crtc->base.enabled,
8241 "active crtc, but not enabled in sw tracking\n");
8242
8243 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
8244 base.head) {
8245 if (encoder->base.crtc != &crtc->base)
8246 continue;
8247 enabled = true;
8248 if (encoder->connectors_active)
8249 active = true;
Jesse Barnes045ac3b2013-05-14 17:08:26 -07008250 if (encoder->get_config)
8251 encoder->get_config(encoder, &pipe_config);
Daniel Vetter8af6cf82012-07-10 09:50:11 +02008252 }
8253 WARN(active != crtc->active,
8254 "crtc's computed active state doesn't match tracked active state "
8255 "(expected %i, found %i)\n", active, crtc->active);
8256 WARN(enabled != crtc->base.enabled,
8257 "crtc's computed enabled state doesn't match tracked enabled state "
8258 "(expected %i, found %i)\n", enabled, crtc->base.enabled);
8259
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01008260 active = dev_priv->display.get_pipe_config(crtc,
8261 &pipe_config);
8262 WARN(crtc->active != active,
8263 "crtc active state doesn't match with hw state "
8264 "(expected %i, found %i)\n", crtc->active, active);
8265
Daniel Vetterc0b03412013-05-28 12:05:54 +02008266 if (active &&
8267 !intel_pipe_config_compare(dev, &crtc->config, &pipe_config)) {
8268 WARN(1, "pipe state doesn't match!\n");
8269 intel_dump_pipe_config(crtc, &pipe_config,
8270 "[hw state]");
8271 intel_dump_pipe_config(crtc, &crtc->config,
8272 "[sw state]");
8273 }
Daniel Vetter8af6cf82012-07-10 09:50:11 +02008274 }
8275}
8276
Daniel Vetterf30da182013-04-11 20:22:50 +02008277static int __intel_set_mode(struct drm_crtc *crtc,
8278 struct drm_display_mode *mode,
8279 int x, int y, struct drm_framebuffer *fb)
Daniel Vettera6778b32012-07-02 09:56:42 +02008280{
8281 struct drm_device *dev = crtc->dev;
Daniel Vetterdbf2b54e2012-07-02 11:18:29 +02008282 drm_i915_private_t *dev_priv = dev->dev_private;
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01008283 struct drm_display_mode *saved_mode, *saved_hwmode;
8284 struct intel_crtc_config *pipe_config = NULL;
Daniel Vetter25c5b262012-07-08 22:08:04 +02008285 struct intel_crtc *intel_crtc;
8286 unsigned disable_pipes, prepare_pipes, modeset_pipes;
Chris Wilsonc0c36b942012-12-19 16:08:43 +00008287 int ret = 0;
Daniel Vettera6778b32012-07-02 09:56:42 +02008288
Tim Gardner3ac18232012-12-07 07:54:26 -07008289 saved_mode = kmalloc(2 * sizeof(*saved_mode), GFP_KERNEL);
Chris Wilsonc0c36b942012-12-19 16:08:43 +00008290 if (!saved_mode)
8291 return -ENOMEM;
Tim Gardner3ac18232012-12-07 07:54:26 -07008292 saved_hwmode = saved_mode + 1;
Daniel Vettera6778b32012-07-02 09:56:42 +02008293
Daniel Vettere2e1ed42012-07-08 21:14:38 +02008294 intel_modeset_affected_pipes(crtc, &modeset_pipes,
Daniel Vetter25c5b262012-07-08 22:08:04 +02008295 &prepare_pipes, &disable_pipes);
8296
Tim Gardner3ac18232012-12-07 07:54:26 -07008297 *saved_hwmode = crtc->hwmode;
8298 *saved_mode = crtc->mode;
Daniel Vettera6778b32012-07-02 09:56:42 +02008299
Daniel Vetter25c5b262012-07-08 22:08:04 +02008300 /* Hack: Because we don't (yet) support global modeset on multiple
8301 * crtcs, we don't keep track of the new mode for more than one crtc.
8302 * Hence simply check whether any bit is set in modeset_pipes in all the
8303 * pieces of code that are not yet converted to deal with mutliple crtcs
8304 * changing their mode at the same time. */
Daniel Vetter25c5b262012-07-08 22:08:04 +02008305 if (modeset_pipes) {
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01008306 pipe_config = intel_modeset_pipe_config(crtc, fb, mode);
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01008307 if (IS_ERR(pipe_config)) {
8308 ret = PTR_ERR(pipe_config);
8309 pipe_config = NULL;
8310
Tim Gardner3ac18232012-12-07 07:54:26 -07008311 goto out;
Daniel Vetter25c5b262012-07-08 22:08:04 +02008312 }
Daniel Vetterc0b03412013-05-28 12:05:54 +02008313 intel_dump_pipe_config(to_intel_crtc(crtc), pipe_config,
8314 "[modeset]");
Daniel Vettera6778b32012-07-02 09:56:42 +02008315 }
8316
Daniel Vetter460da9162013-03-27 00:44:51 +01008317 for_each_intel_crtc_masked(dev, disable_pipes, intel_crtc)
8318 intel_crtc_disable(&intel_crtc->base);
8319
Daniel Vetterea9d7582012-07-10 10:42:52 +02008320 for_each_intel_crtc_masked(dev, prepare_pipes, intel_crtc) {
8321 if (intel_crtc->base.enabled)
8322 dev_priv->display.crtc_disable(&intel_crtc->base);
8323 }
Daniel Vettera6778b32012-07-02 09:56:42 +02008324
Daniel Vetter6c4c86f2012-09-10 21:58:30 +02008325 /* crtc->mode is already used by the ->mode_set callbacks, hence we need
8326 * to set it here already despite that we pass it down the callchain.
8327 */
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01008328 if (modeset_pipes) {
Daniel Vetter25c5b262012-07-08 22:08:04 +02008329 crtc->mode = *mode;
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01008330 /* mode_set/enable/disable functions rely on a correct pipe
8331 * config. */
8332 to_intel_crtc(crtc)->config = *pipe_config;
8333 }
Daniel Vetter7758a112012-07-08 19:40:39 +02008334
Daniel Vetterea9d7582012-07-10 10:42:52 +02008335 /* Only after disabling all output pipelines that will be changed can we
8336 * update the the output configuration. */
8337 intel_modeset_update_state(dev, prepare_pipes);
8338
Daniel Vetter47fab732012-10-26 10:58:18 +02008339 if (dev_priv->display.modeset_global_resources)
8340 dev_priv->display.modeset_global_resources(dev);
8341
Daniel Vettera6778b32012-07-02 09:56:42 +02008342 /* Set up the DPLL and any encoders state that needs to adjust or depend
8343 * on the DPLL.
8344 */
Daniel Vetter25c5b262012-07-08 22:08:04 +02008345 for_each_intel_crtc_masked(dev, modeset_pipes, intel_crtc) {
Chris Wilsonc0c36b942012-12-19 16:08:43 +00008346 ret = intel_crtc_mode_set(&intel_crtc->base,
Chris Wilsonc0c36b942012-12-19 16:08:43 +00008347 x, y, fb);
8348 if (ret)
8349 goto done;
Daniel Vettera6778b32012-07-02 09:56:42 +02008350 }
8351
8352 /* Now enable the clocks, plane, pipe, and connectors that we set up. */
Daniel Vetter25c5b262012-07-08 22:08:04 +02008353 for_each_intel_crtc_masked(dev, prepare_pipes, intel_crtc)
8354 dev_priv->display.crtc_enable(&intel_crtc->base);
Daniel Vettera6778b32012-07-02 09:56:42 +02008355
Daniel Vetter25c5b262012-07-08 22:08:04 +02008356 if (modeset_pipes) {
8357 /* Store real post-adjustment hardware mode. */
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01008358 crtc->hwmode = pipe_config->adjusted_mode;
Daniel Vettera6778b32012-07-02 09:56:42 +02008359
Daniel Vetter25c5b262012-07-08 22:08:04 +02008360 /* Calculate and store various constants which
8361 * are later needed by vblank and swap-completion
8362 * timestamping. They are derived from true hwmode.
8363 */
8364 drm_calc_timestamping_constants(crtc);
8365 }
Daniel Vettera6778b32012-07-02 09:56:42 +02008366
8367 /* FIXME: add subpixel order */
8368done:
Chris Wilsonc0c36b942012-12-19 16:08:43 +00008369 if (ret && crtc->enabled) {
Tim Gardner3ac18232012-12-07 07:54:26 -07008370 crtc->hwmode = *saved_hwmode;
8371 crtc->mode = *saved_mode;
Daniel Vettera6778b32012-07-02 09:56:42 +02008372 }
8373
Tim Gardner3ac18232012-12-07 07:54:26 -07008374out:
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01008375 kfree(pipe_config);
Tim Gardner3ac18232012-12-07 07:54:26 -07008376 kfree(saved_mode);
Daniel Vettera6778b32012-07-02 09:56:42 +02008377 return ret;
8378}
8379
Daniel Vetterf30da182013-04-11 20:22:50 +02008380int intel_set_mode(struct drm_crtc *crtc,
8381 struct drm_display_mode *mode,
8382 int x, int y, struct drm_framebuffer *fb)
8383{
8384 int ret;
8385
8386 ret = __intel_set_mode(crtc, mode, x, y, fb);
8387
8388 if (ret == 0)
8389 intel_modeset_check_state(crtc->dev);
8390
8391 return ret;
8392}
8393
Chris Wilsonc0c36b942012-12-19 16:08:43 +00008394void intel_crtc_restore_mode(struct drm_crtc *crtc)
8395{
8396 intel_set_mode(crtc, &crtc->mode, crtc->x, crtc->y, crtc->fb);
8397}
8398
Daniel Vetter25c5b262012-07-08 22:08:04 +02008399#undef for_each_intel_crtc_masked
8400
Daniel Vetterd9e55602012-07-04 22:16:09 +02008401static void intel_set_config_free(struct intel_set_config *config)
8402{
8403 if (!config)
8404 return;
8405
Daniel Vetter1aa4b622012-07-05 16:20:48 +02008406 kfree(config->save_connector_encoders);
8407 kfree(config->save_encoder_crtcs);
Daniel Vetterd9e55602012-07-04 22:16:09 +02008408 kfree(config);
8409}
8410
Daniel Vetter85f9eb72012-07-04 22:24:08 +02008411static int intel_set_config_save_state(struct drm_device *dev,
8412 struct intel_set_config *config)
8413{
Daniel Vetter85f9eb72012-07-04 22:24:08 +02008414 struct drm_encoder *encoder;
8415 struct drm_connector *connector;
8416 int count;
8417
Daniel Vetter1aa4b622012-07-05 16:20:48 +02008418 config->save_encoder_crtcs =
8419 kcalloc(dev->mode_config.num_encoder,
8420 sizeof(struct drm_crtc *), GFP_KERNEL);
8421 if (!config->save_encoder_crtcs)
Daniel Vetter85f9eb72012-07-04 22:24:08 +02008422 return -ENOMEM;
8423
Daniel Vetter1aa4b622012-07-05 16:20:48 +02008424 config->save_connector_encoders =
8425 kcalloc(dev->mode_config.num_connector,
8426 sizeof(struct drm_encoder *), GFP_KERNEL);
8427 if (!config->save_connector_encoders)
Daniel Vetter85f9eb72012-07-04 22:24:08 +02008428 return -ENOMEM;
8429
8430 /* Copy data. Note that driver private data is not affected.
8431 * Should anything bad happen only the expected state is
8432 * restored, not the drivers personal bookkeeping.
8433 */
8434 count = 0;
Daniel Vetter85f9eb72012-07-04 22:24:08 +02008435 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
Daniel Vetter1aa4b622012-07-05 16:20:48 +02008436 config->save_encoder_crtcs[count++] = encoder->crtc;
Daniel Vetter85f9eb72012-07-04 22:24:08 +02008437 }
8438
8439 count = 0;
8440 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
Daniel Vetter1aa4b622012-07-05 16:20:48 +02008441 config->save_connector_encoders[count++] = connector->encoder;
Daniel Vetter85f9eb72012-07-04 22:24:08 +02008442 }
8443
8444 return 0;
8445}
8446
8447static void intel_set_config_restore_state(struct drm_device *dev,
8448 struct intel_set_config *config)
8449{
Daniel Vetter9a935852012-07-05 22:34:27 +02008450 struct intel_encoder *encoder;
8451 struct intel_connector *connector;
Daniel Vetter85f9eb72012-07-04 22:24:08 +02008452 int count;
8453
8454 count = 0;
Daniel Vetter9a935852012-07-05 22:34:27 +02008455 list_for_each_entry(encoder, &dev->mode_config.encoder_list, base.head) {
8456 encoder->new_crtc =
8457 to_intel_crtc(config->save_encoder_crtcs[count++]);
Daniel Vetter85f9eb72012-07-04 22:24:08 +02008458 }
8459
8460 count = 0;
Daniel Vetter9a935852012-07-05 22:34:27 +02008461 list_for_each_entry(connector, &dev->mode_config.connector_list, base.head) {
8462 connector->new_encoder =
8463 to_intel_encoder(config->save_connector_encoders[count++]);
Daniel Vetter85f9eb72012-07-04 22:24:08 +02008464 }
8465}
8466
Daniel Vetter5e2b5842012-07-04 22:41:29 +02008467static void
8468intel_set_config_compute_mode_changes(struct drm_mode_set *set,
8469 struct intel_set_config *config)
8470{
8471
8472 /* We should be able to check here if the fb has the same properties
8473 * and then just flip_or_move it */
8474 if (set->crtc->fb != set->fb) {
8475 /* If we have no fb then treat it as a full mode set */
8476 if (set->crtc->fb == NULL) {
8477 DRM_DEBUG_KMS("crtc has no fb, full mode set\n");
8478 config->mode_changed = true;
8479 } else if (set->fb == NULL) {
8480 config->mode_changed = true;
Daniel Vetter72f49012013-03-28 16:01:35 +01008481 } else if (set->fb->pixel_format !=
8482 set->crtc->fb->pixel_format) {
Daniel Vetter5e2b5842012-07-04 22:41:29 +02008483 config->mode_changed = true;
8484 } else
8485 config->fb_changed = true;
8486 }
8487
Daniel Vetter835c5872012-07-10 18:11:08 +02008488 if (set->fb && (set->x != set->crtc->x || set->y != set->crtc->y))
Daniel Vetter5e2b5842012-07-04 22:41:29 +02008489 config->fb_changed = true;
8490
8491 if (set->mode && !drm_mode_equal(set->mode, &set->crtc->mode)) {
8492 DRM_DEBUG_KMS("modes are different, full mode set\n");
8493 drm_mode_debug_printmodeline(&set->crtc->mode);
8494 drm_mode_debug_printmodeline(set->mode);
8495 config->mode_changed = true;
8496 }
8497}
8498
Daniel Vetter2e431052012-07-04 22:42:15 +02008499static int
Daniel Vetter9a935852012-07-05 22:34:27 +02008500intel_modeset_stage_output_state(struct drm_device *dev,
8501 struct drm_mode_set *set,
8502 struct intel_set_config *config)
Daniel Vetter50f56112012-07-02 09:35:43 +02008503{
Daniel Vetter85f9eb72012-07-04 22:24:08 +02008504 struct drm_crtc *new_crtc;
Daniel Vetter9a935852012-07-05 22:34:27 +02008505 struct intel_connector *connector;
8506 struct intel_encoder *encoder;
Daniel Vetter2e431052012-07-04 22:42:15 +02008507 int count, ro;
Daniel Vetter50f56112012-07-02 09:35:43 +02008508
Damien Lespiau9abdda72013-02-13 13:29:23 +00008509 /* The upper layers ensure that we either disable a crtc or have a list
Daniel Vetter9a935852012-07-05 22:34:27 +02008510 * of connectors. For paranoia, double-check this. */
8511 WARN_ON(!set->fb && (set->num_connectors != 0));
8512 WARN_ON(set->fb && (set->num_connectors == 0));
8513
Daniel Vetter50f56112012-07-02 09:35:43 +02008514 count = 0;
Daniel Vetter9a935852012-07-05 22:34:27 +02008515 list_for_each_entry(connector, &dev->mode_config.connector_list,
8516 base.head) {
8517 /* Otherwise traverse passed in connector list and get encoders
8518 * for them. */
Daniel Vetter50f56112012-07-02 09:35:43 +02008519 for (ro = 0; ro < set->num_connectors; ro++) {
Daniel Vetter9a935852012-07-05 22:34:27 +02008520 if (set->connectors[ro] == &connector->base) {
8521 connector->new_encoder = connector->encoder;
Daniel Vetter50f56112012-07-02 09:35:43 +02008522 break;
8523 }
8524 }
8525
Daniel Vetter9a935852012-07-05 22:34:27 +02008526 /* If we disable the crtc, disable all its connectors. Also, if
8527 * the connector is on the changing crtc but not on the new
8528 * connector list, disable it. */
8529 if ((!set->fb || ro == set->num_connectors) &&
8530 connector->base.encoder &&
8531 connector->base.encoder->crtc == set->crtc) {
8532 connector->new_encoder = NULL;
8533
8534 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] to [NOCRTC]\n",
8535 connector->base.base.id,
8536 drm_get_connector_name(&connector->base));
8537 }
8538
8539
8540 if (&connector->new_encoder->base != connector->base.encoder) {
Daniel Vetter50f56112012-07-02 09:35:43 +02008541 DRM_DEBUG_KMS("encoder changed, full mode switch\n");
Daniel Vetter5e2b5842012-07-04 22:41:29 +02008542 config->mode_changed = true;
Daniel Vetter50f56112012-07-02 09:35:43 +02008543 }
Daniel Vetter9a935852012-07-05 22:34:27 +02008544 }
8545 /* connector->new_encoder is now updated for all connectors. */
8546
8547 /* Update crtc of enabled connectors. */
Daniel Vetter50f56112012-07-02 09:35:43 +02008548 count = 0;
Daniel Vetter9a935852012-07-05 22:34:27 +02008549 list_for_each_entry(connector, &dev->mode_config.connector_list,
8550 base.head) {
8551 if (!connector->new_encoder)
Daniel Vetter50f56112012-07-02 09:35:43 +02008552 continue;
8553
Daniel Vetter9a935852012-07-05 22:34:27 +02008554 new_crtc = connector->new_encoder->base.crtc;
Daniel Vetter50f56112012-07-02 09:35:43 +02008555
8556 for (ro = 0; ro < set->num_connectors; ro++) {
Daniel Vetter9a935852012-07-05 22:34:27 +02008557 if (set->connectors[ro] == &connector->base)
Daniel Vetter50f56112012-07-02 09:35:43 +02008558 new_crtc = set->crtc;
8559 }
8560
8561 /* Make sure the new CRTC will work with the encoder */
Daniel Vetter9a935852012-07-05 22:34:27 +02008562 if (!intel_encoder_crtc_ok(&connector->new_encoder->base,
8563 new_crtc)) {
Daniel Vetter5e2b5842012-07-04 22:41:29 +02008564 return -EINVAL;
Daniel Vetter50f56112012-07-02 09:35:43 +02008565 }
Daniel Vetter9a935852012-07-05 22:34:27 +02008566 connector->encoder->new_crtc = to_intel_crtc(new_crtc);
8567
8568 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] to [CRTC:%d]\n",
8569 connector->base.base.id,
8570 drm_get_connector_name(&connector->base),
8571 new_crtc->base.id);
8572 }
8573
8574 /* Check for any encoders that needs to be disabled. */
8575 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
8576 base.head) {
8577 list_for_each_entry(connector,
8578 &dev->mode_config.connector_list,
8579 base.head) {
8580 if (connector->new_encoder == encoder) {
8581 WARN_ON(!connector->new_encoder->new_crtc);
8582
8583 goto next_encoder;
8584 }
8585 }
8586 encoder->new_crtc = NULL;
8587next_encoder:
8588 /* Only now check for crtc changes so we don't miss encoders
8589 * that will be disabled. */
8590 if (&encoder->new_crtc->base != encoder->base.crtc) {
Daniel Vetter50f56112012-07-02 09:35:43 +02008591 DRM_DEBUG_KMS("crtc changed, full mode switch\n");
Daniel Vetter5e2b5842012-07-04 22:41:29 +02008592 config->mode_changed = true;
Daniel Vetter50f56112012-07-02 09:35:43 +02008593 }
8594 }
Daniel Vetter9a935852012-07-05 22:34:27 +02008595 /* Now we've also updated encoder->new_crtc for all encoders. */
Daniel Vetter50f56112012-07-02 09:35:43 +02008596
Daniel Vetter2e431052012-07-04 22:42:15 +02008597 return 0;
8598}
8599
8600static int intel_crtc_set_config(struct drm_mode_set *set)
8601{
8602 struct drm_device *dev;
Daniel Vetter2e431052012-07-04 22:42:15 +02008603 struct drm_mode_set save_set;
8604 struct intel_set_config *config;
8605 int ret;
Daniel Vetter2e431052012-07-04 22:42:15 +02008606
Daniel Vetter8d3e3752012-07-05 16:09:09 +02008607 BUG_ON(!set);
8608 BUG_ON(!set->crtc);
8609 BUG_ON(!set->crtc->helper_private);
Daniel Vetter2e431052012-07-04 22:42:15 +02008610
Daniel Vetter7e53f3a2013-01-21 10:52:17 +01008611 /* Enforce sane interface api - has been abused by the fb helper. */
8612 BUG_ON(!set->mode && set->fb);
8613 BUG_ON(set->fb && set->num_connectors == 0);
Daniel Vetter431e50f2012-07-10 17:53:42 +02008614
Daniel Vetter2e431052012-07-04 22:42:15 +02008615 if (set->fb) {
8616 DRM_DEBUG_KMS("[CRTC:%d] [FB:%d] #connectors=%d (x y) (%i %i)\n",
8617 set->crtc->base.id, set->fb->base.id,
8618 (int)set->num_connectors, set->x, set->y);
8619 } else {
8620 DRM_DEBUG_KMS("[CRTC:%d] [NOFB]\n", set->crtc->base.id);
Daniel Vetter2e431052012-07-04 22:42:15 +02008621 }
8622
8623 dev = set->crtc->dev;
8624
8625 ret = -ENOMEM;
8626 config = kzalloc(sizeof(*config), GFP_KERNEL);
8627 if (!config)
8628 goto out_config;
8629
8630 ret = intel_set_config_save_state(dev, config);
8631 if (ret)
8632 goto out_config;
8633
8634 save_set.crtc = set->crtc;
8635 save_set.mode = &set->crtc->mode;
8636 save_set.x = set->crtc->x;
8637 save_set.y = set->crtc->y;
8638 save_set.fb = set->crtc->fb;
8639
8640 /* Compute whether we need a full modeset, only an fb base update or no
8641 * change at all. In the future we might also check whether only the
8642 * mode changed, e.g. for LVDS where we only change the panel fitter in
8643 * such cases. */
8644 intel_set_config_compute_mode_changes(set, config);
8645
Daniel Vetter9a935852012-07-05 22:34:27 +02008646 ret = intel_modeset_stage_output_state(dev, set, config);
Daniel Vetter2e431052012-07-04 22:42:15 +02008647 if (ret)
8648 goto fail;
8649
Daniel Vetter5e2b5842012-07-04 22:41:29 +02008650 if (config->mode_changed) {
Chris Wilsonc0c36b942012-12-19 16:08:43 +00008651 ret = intel_set_mode(set->crtc, set->mode,
8652 set->x, set->y, set->fb);
8653 if (ret) {
8654 DRM_ERROR("failed to set mode on [CRTC:%d], err = %d\n",
8655 set->crtc->base.id, ret);
Daniel Vetter87f1faa62012-07-05 23:36:17 +02008656 goto fail;
8657 }
Daniel Vetter5e2b5842012-07-04 22:41:29 +02008658 } else if (config->fb_changed) {
Ville Syrjälä4878cae2013-02-18 19:08:48 +02008659 intel_crtc_wait_for_pending_flips(set->crtc);
8660
Daniel Vetter4f660f42012-07-02 09:47:37 +02008661 ret = intel_pipe_set_base(set->crtc,
Daniel Vetter94352cf2012-07-05 22:51:56 +02008662 set->x, set->y, set->fb);
Daniel Vetter50f56112012-07-02 09:35:43 +02008663 }
8664
Daniel Vetterd9e55602012-07-04 22:16:09 +02008665 intel_set_config_free(config);
8666
Daniel Vetter50f56112012-07-02 09:35:43 +02008667 return 0;
8668
8669fail:
Daniel Vetter85f9eb72012-07-04 22:24:08 +02008670 intel_set_config_restore_state(dev, config);
Daniel Vetter50f56112012-07-02 09:35:43 +02008671
8672 /* Try to restore the config */
Daniel Vetter5e2b5842012-07-04 22:41:29 +02008673 if (config->mode_changed &&
Chris Wilsonc0c36b942012-12-19 16:08:43 +00008674 intel_set_mode(save_set.crtc, save_set.mode,
8675 save_set.x, save_set.y, save_set.fb))
Daniel Vetter50f56112012-07-02 09:35:43 +02008676 DRM_ERROR("failed to restore config after modeset failure\n");
8677
Daniel Vetterd9e55602012-07-04 22:16:09 +02008678out_config:
8679 intel_set_config_free(config);
Daniel Vetter50f56112012-07-02 09:35:43 +02008680 return ret;
8681}
8682
Chris Wilsonf6e5b162011-04-12 18:06:51 +01008683static const struct drm_crtc_funcs intel_crtc_funcs = {
Chris Wilsonf6e5b162011-04-12 18:06:51 +01008684 .cursor_set = intel_crtc_cursor_set,
8685 .cursor_move = intel_crtc_cursor_move,
8686 .gamma_set = intel_crtc_gamma_set,
Daniel Vetter50f56112012-07-02 09:35:43 +02008687 .set_config = intel_crtc_set_config,
Chris Wilsonf6e5b162011-04-12 18:06:51 +01008688 .destroy = intel_crtc_destroy,
8689 .page_flip = intel_crtc_page_flip,
8690};
8691
Paulo Zanoni79f689a2012-10-05 12:05:52 -03008692static void intel_cpu_pll_init(struct drm_device *dev)
8693{
Paulo Zanoniaffa9352012-11-23 15:30:39 -02008694 if (HAS_DDI(dev))
Paulo Zanoni79f689a2012-10-05 12:05:52 -03008695 intel_ddi_pll_init(dev);
8696}
8697
Jesse Barnesee7b9f92012-04-20 17:11:53 +01008698static void intel_pch_pll_init(struct drm_device *dev)
8699{
8700 drm_i915_private_t *dev_priv = dev->dev_private;
8701 int i;
8702
8703 if (dev_priv->num_pch_pll == 0) {
8704 DRM_DEBUG_KMS("No PCH PLLs on this hardware, skipping initialisation\n");
8705 return;
8706 }
8707
8708 for (i = 0; i < dev_priv->num_pch_pll; i++) {
8709 dev_priv->pch_plls[i].pll_reg = _PCH_DPLL(i);
8710 dev_priv->pch_plls[i].fp0_reg = _PCH_FP0(i);
8711 dev_priv->pch_plls[i].fp1_reg = _PCH_FP1(i);
8712 }
8713}
8714
Hannes Ederb358d0a2008-12-18 21:18:47 +01008715static void intel_crtc_init(struct drm_device *dev, int pipe)
Jesse Barnes79e53942008-11-07 14:24:08 -08008716{
Jesse Barnes22fd0fa2009-12-02 13:42:53 -08008717 drm_i915_private_t *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -08008718 struct intel_crtc *intel_crtc;
8719 int i;
8720
8721 intel_crtc = kzalloc(sizeof(struct intel_crtc) + (INTELFB_CONN_LIMIT * sizeof(struct drm_connector *)), GFP_KERNEL);
8722 if (intel_crtc == NULL)
8723 return;
8724
8725 drm_crtc_init(dev, &intel_crtc->base, &intel_crtc_funcs);
8726
8727 drm_mode_crtc_set_gamma_size(&intel_crtc->base, 256);
Jesse Barnes79e53942008-11-07 14:24:08 -08008728 for (i = 0; i < 256; i++) {
8729 intel_crtc->lut_r[i] = i;
8730 intel_crtc->lut_g[i] = i;
8731 intel_crtc->lut_b[i] = i;
8732 }
8733
Jesse Barnes80824002009-09-10 15:28:06 -07008734 /* Swap pipes & planes for FBC on pre-965 */
8735 intel_crtc->pipe = pipe;
8736 intel_crtc->plane = pipe;
Chris Wilsone2e767a2010-09-13 16:53:12 +01008737 if (IS_MOBILE(dev) && IS_GEN3(dev)) {
Zhao Yakui28c97732009-10-09 11:39:41 +08008738 DRM_DEBUG_KMS("swapping pipes & planes for FBC\n");
Chris Wilsone2e767a2010-09-13 16:53:12 +01008739 intel_crtc->plane = !pipe;
Jesse Barnes80824002009-09-10 15:28:06 -07008740 }
8741
Jesse Barnes22fd0fa2009-12-02 13:42:53 -08008742 BUG_ON(pipe >= ARRAY_SIZE(dev_priv->plane_to_crtc_mapping) ||
8743 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] != NULL);
8744 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] = &intel_crtc->base;
8745 dev_priv->pipe_to_crtc_mapping[intel_crtc->pipe] = &intel_crtc->base;
8746
Jesse Barnes79e53942008-11-07 14:24:08 -08008747 drm_crtc_helper_add(&intel_crtc->base, &intel_helper_funcs);
Jesse Barnes79e53942008-11-07 14:24:08 -08008748}
8749
Carl Worth08d7b3d2009-04-29 14:43:54 -07008750int intel_get_pipe_from_crtc_id(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +00008751 struct drm_file *file)
Carl Worth08d7b3d2009-04-29 14:43:54 -07008752{
Carl Worth08d7b3d2009-04-29 14:43:54 -07008753 struct drm_i915_get_pipe_from_crtc_id *pipe_from_crtc_id = data;
Daniel Vetterc05422d2009-08-11 16:05:30 +02008754 struct drm_mode_object *drmmode_obj;
8755 struct intel_crtc *crtc;
Carl Worth08d7b3d2009-04-29 14:43:54 -07008756
Daniel Vetter1cff8f62012-04-24 09:55:08 +02008757 if (!drm_core_check_feature(dev, DRIVER_MODESET))
8758 return -ENODEV;
Carl Worth08d7b3d2009-04-29 14:43:54 -07008759
Daniel Vetterc05422d2009-08-11 16:05:30 +02008760 drmmode_obj = drm_mode_object_find(dev, pipe_from_crtc_id->crtc_id,
8761 DRM_MODE_OBJECT_CRTC);
Carl Worth08d7b3d2009-04-29 14:43:54 -07008762
Daniel Vetterc05422d2009-08-11 16:05:30 +02008763 if (!drmmode_obj) {
Carl Worth08d7b3d2009-04-29 14:43:54 -07008764 DRM_ERROR("no such CRTC id\n");
8765 return -EINVAL;
8766 }
8767
Daniel Vetterc05422d2009-08-11 16:05:30 +02008768 crtc = to_intel_crtc(obj_to_crtc(drmmode_obj));
8769 pipe_from_crtc_id->pipe = crtc->pipe;
Carl Worth08d7b3d2009-04-29 14:43:54 -07008770
Daniel Vetterc05422d2009-08-11 16:05:30 +02008771 return 0;
Carl Worth08d7b3d2009-04-29 14:43:54 -07008772}
8773
Daniel Vetter66a92782012-07-12 20:08:18 +02008774static int intel_encoder_clones(struct intel_encoder *encoder)
Jesse Barnes79e53942008-11-07 14:24:08 -08008775{
Daniel Vetter66a92782012-07-12 20:08:18 +02008776 struct drm_device *dev = encoder->base.dev;
8777 struct intel_encoder *source_encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08008778 int index_mask = 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08008779 int entry = 0;
8780
Daniel Vetter66a92782012-07-12 20:08:18 +02008781 list_for_each_entry(source_encoder,
8782 &dev->mode_config.encoder_list, base.head) {
8783
8784 if (encoder == source_encoder)
Jesse Barnes79e53942008-11-07 14:24:08 -08008785 index_mask |= (1 << entry);
Daniel Vetter66a92782012-07-12 20:08:18 +02008786
8787 /* Intel hw has only one MUX where enocoders could be cloned. */
8788 if (encoder->cloneable && source_encoder->cloneable)
8789 index_mask |= (1 << entry);
8790
Jesse Barnes79e53942008-11-07 14:24:08 -08008791 entry++;
8792 }
Chris Wilson4ef69c72010-09-09 15:14:28 +01008793
Jesse Barnes79e53942008-11-07 14:24:08 -08008794 return index_mask;
8795}
8796
Chris Wilson4d302442010-12-14 19:21:29 +00008797static bool has_edp_a(struct drm_device *dev)
8798{
8799 struct drm_i915_private *dev_priv = dev->dev_private;
8800
8801 if (!IS_MOBILE(dev))
8802 return false;
8803
8804 if ((I915_READ(DP_A) & DP_DETECTED) == 0)
8805 return false;
8806
8807 if (IS_GEN5(dev) &&
8808 (I915_READ(ILK_DISPLAY_CHICKEN_FUSES) & ILK_eDP_A_DISABLE))
8809 return false;
8810
8811 return true;
8812}
8813
Jesse Barnes79e53942008-11-07 14:24:08 -08008814static void intel_setup_outputs(struct drm_device *dev)
8815{
Eric Anholt725e30a2009-01-22 13:01:02 -08008816 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson4ef69c72010-09-09 15:14:28 +01008817 struct intel_encoder *encoder;
Adam Jacksoncb0953d2010-07-16 14:46:29 -04008818 bool dpd_is_edp = false;
Chris Wilsonf3cfcba2012-02-09 09:35:53 +00008819 bool has_lvds;
Jesse Barnes79e53942008-11-07 14:24:08 -08008820
Chris Wilsonf3cfcba2012-02-09 09:35:53 +00008821 has_lvds = intel_lvds_init(dev);
Chris Wilsonc5d1b512010-11-29 18:00:23 +00008822 if (!has_lvds && !HAS_PCH_SPLIT(dev)) {
8823 /* disable the panel fitter on everything but LVDS */
8824 I915_WRITE(PFIT_CONTROL, 0);
8825 }
Jesse Barnes79e53942008-11-07 14:24:08 -08008826
Paulo Zanonic40c0f52013-04-12 18:16:53 -03008827 if (!IS_ULT(dev))
Paulo Zanoni79935fc2012-11-20 13:27:40 -02008828 intel_crt_init(dev);
Adam Jacksoncb0953d2010-07-16 14:46:29 -04008829
Paulo Zanoniaffa9352012-11-23 15:30:39 -02008830 if (HAS_DDI(dev)) {
Eugeni Dodonov0e72a5b2012-05-09 15:37:27 -03008831 int found;
8832
8833 /* Haswell uses DDI functions to detect digital outputs */
8834 found = I915_READ(DDI_BUF_CTL_A) & DDI_INIT_DISPLAY_DETECTED;
8835 /* DDI A only supports eDP */
8836 if (found)
8837 intel_ddi_init(dev, PORT_A);
8838
8839 /* DDI B, C and D detection is indicated by the SFUSE_STRAP
8840 * register */
8841 found = I915_READ(SFUSE_STRAP);
8842
8843 if (found & SFUSE_STRAP_DDIB_DETECTED)
8844 intel_ddi_init(dev, PORT_B);
8845 if (found & SFUSE_STRAP_DDIC_DETECTED)
8846 intel_ddi_init(dev, PORT_C);
8847 if (found & SFUSE_STRAP_DDID_DETECTED)
8848 intel_ddi_init(dev, PORT_D);
8849 } else if (HAS_PCH_SPLIT(dev)) {
Adam Jacksoncb0953d2010-07-16 14:46:29 -04008850 int found;
Daniel Vetter270b3042012-10-27 15:52:05 +02008851 dpd_is_edp = intel_dpd_is_edp(dev);
8852
8853 if (has_edp_a(dev))
8854 intel_dp_init(dev, DP_A, PORT_A);
Adam Jacksoncb0953d2010-07-16 14:46:29 -04008855
Paulo Zanonidc0fa712013-02-19 16:21:46 -03008856 if (I915_READ(PCH_HDMIB) & SDVO_DETECTED) {
Zhao Yakui461ed3c2010-03-30 15:11:33 +08008857 /* PCH SDVOB multiplex with HDMIB */
Daniel Vettereef4eac2012-03-23 23:43:35 +01008858 found = intel_sdvo_init(dev, PCH_SDVOB, true);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +08008859 if (!found)
Paulo Zanonie2debe92013-02-18 19:00:27 -03008860 intel_hdmi_init(dev, PCH_HDMIB, PORT_B);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08008861 if (!found && (I915_READ(PCH_DP_B) & DP_DETECTED))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03008862 intel_dp_init(dev, PCH_DP_B, PORT_B);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +08008863 }
8864
Paulo Zanonidc0fa712013-02-19 16:21:46 -03008865 if (I915_READ(PCH_HDMIC) & SDVO_DETECTED)
Paulo Zanonie2debe92013-02-18 19:00:27 -03008866 intel_hdmi_init(dev, PCH_HDMIC, PORT_C);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +08008867
Paulo Zanonidc0fa712013-02-19 16:21:46 -03008868 if (!dpd_is_edp && I915_READ(PCH_HDMID) & SDVO_DETECTED)
Paulo Zanonie2debe92013-02-18 19:00:27 -03008869 intel_hdmi_init(dev, PCH_HDMID, PORT_D);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +08008870
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08008871 if (I915_READ(PCH_DP_C) & DP_DETECTED)
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03008872 intel_dp_init(dev, PCH_DP_C, PORT_C);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +08008873
Daniel Vetter270b3042012-10-27 15:52:05 +02008874 if (I915_READ(PCH_DP_D) & DP_DETECTED)
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03008875 intel_dp_init(dev, PCH_DP_D, PORT_D);
Jesse Barnes4a87d652012-06-15 11:55:16 -07008876 } else if (IS_VALLEYVIEW(dev)) {
Gajanan Bhat19c03922012-09-27 19:13:07 +05308877 /* Check for built-in panel first. Shares lanes with HDMI on SDVOC */
Ville Syrjälä67cfc202013-01-25 21:44:44 +02008878 if (I915_READ(VLV_DISPLAY_BASE + DP_C) & DP_DETECTED)
8879 intel_dp_init(dev, VLV_DISPLAY_BASE + DP_C, PORT_C);
Gajanan Bhat19c03922012-09-27 19:13:07 +05308880
Paulo Zanonidc0fa712013-02-19 16:21:46 -03008881 if (I915_READ(VLV_DISPLAY_BASE + GEN4_HDMIB) & SDVO_DETECTED) {
Paulo Zanonie2debe92013-02-18 19:00:27 -03008882 intel_hdmi_init(dev, VLV_DISPLAY_BASE + GEN4_HDMIB,
8883 PORT_B);
Ville Syrjälä67cfc202013-01-25 21:44:44 +02008884 if (I915_READ(VLV_DISPLAY_BASE + DP_B) & DP_DETECTED)
8885 intel_dp_init(dev, VLV_DISPLAY_BASE + DP_B, PORT_B);
Jesse Barnes4a87d652012-06-15 11:55:16 -07008886 }
Zhenyu Wang103a1962009-11-27 11:44:36 +08008887 } else if (SUPPORTS_DIGITAL_OUTPUTS(dev)) {
Ma Ling27185ae2009-08-24 13:50:23 +08008888 bool found = false;
Eric Anholt7d573822009-01-02 13:33:00 -08008889
Paulo Zanonie2debe92013-02-18 19:00:27 -03008890 if (I915_READ(GEN3_SDVOB) & SDVO_DETECTED) {
Jesse Barnesb01f2c32009-12-11 11:07:17 -08008891 DRM_DEBUG_KMS("probing SDVOB\n");
Paulo Zanonie2debe92013-02-18 19:00:27 -03008892 found = intel_sdvo_init(dev, GEN3_SDVOB, true);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08008893 if (!found && SUPPORTS_INTEGRATED_HDMI(dev)) {
8894 DRM_DEBUG_KMS("probing HDMI on SDVOB\n");
Paulo Zanonie2debe92013-02-18 19:00:27 -03008895 intel_hdmi_init(dev, GEN4_HDMIB, PORT_B);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08008896 }
Ma Ling27185ae2009-08-24 13:50:23 +08008897
Imre Deake7281ea2013-05-08 13:14:08 +03008898 if (!found && SUPPORTS_INTEGRATED_DP(dev))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03008899 intel_dp_init(dev, DP_B, PORT_B);
Eric Anholt725e30a2009-01-22 13:01:02 -08008900 }
Kristian Høgsberg13520b02009-03-13 15:42:14 -04008901
8902 /* Before G4X SDVOC doesn't have its own detect register */
Kristian Høgsberg13520b02009-03-13 15:42:14 -04008903
Paulo Zanonie2debe92013-02-18 19:00:27 -03008904 if (I915_READ(GEN3_SDVOB) & SDVO_DETECTED) {
Jesse Barnesb01f2c32009-12-11 11:07:17 -08008905 DRM_DEBUG_KMS("probing SDVOC\n");
Paulo Zanonie2debe92013-02-18 19:00:27 -03008906 found = intel_sdvo_init(dev, GEN3_SDVOC, false);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08008907 }
Ma Ling27185ae2009-08-24 13:50:23 +08008908
Paulo Zanonie2debe92013-02-18 19:00:27 -03008909 if (!found && (I915_READ(GEN3_SDVOC) & SDVO_DETECTED)) {
Ma Ling27185ae2009-08-24 13:50:23 +08008910
Jesse Barnesb01f2c32009-12-11 11:07:17 -08008911 if (SUPPORTS_INTEGRATED_HDMI(dev)) {
8912 DRM_DEBUG_KMS("probing HDMI on SDVOC\n");
Paulo Zanonie2debe92013-02-18 19:00:27 -03008913 intel_hdmi_init(dev, GEN4_HDMIC, PORT_C);
Jesse Barnesb01f2c32009-12-11 11:07:17 -08008914 }
Imre Deake7281ea2013-05-08 13:14:08 +03008915 if (SUPPORTS_INTEGRATED_DP(dev))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03008916 intel_dp_init(dev, DP_C, PORT_C);
Eric Anholt725e30a2009-01-22 13:01:02 -08008917 }
Ma Ling27185ae2009-08-24 13:50:23 +08008918
Jesse Barnesb01f2c32009-12-11 11:07:17 -08008919 if (SUPPORTS_INTEGRATED_DP(dev) &&
Imre Deake7281ea2013-05-08 13:14:08 +03008920 (I915_READ(DP_D) & DP_DETECTED))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -03008921 intel_dp_init(dev, DP_D, PORT_D);
Eric Anholtbad720f2009-10-22 16:11:14 -07008922 } else if (IS_GEN2(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -08008923 intel_dvo_init(dev);
8924
Zhenyu Wang103a1962009-11-27 11:44:36 +08008925 if (SUPPORTS_TV(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -08008926 intel_tv_init(dev);
8927
Chris Wilson4ef69c72010-09-09 15:14:28 +01008928 list_for_each_entry(encoder, &dev->mode_config.encoder_list, base.head) {
8929 encoder->base.possible_crtcs = encoder->crtc_mask;
8930 encoder->base.possible_clones =
Daniel Vetter66a92782012-07-12 20:08:18 +02008931 intel_encoder_clones(encoder);
Jesse Barnes79e53942008-11-07 14:24:08 -08008932 }
Chris Wilson47356eb2011-01-11 17:06:04 +00008933
Paulo Zanonidde86e22012-12-01 12:04:25 -02008934 intel_init_pch_refclk(dev);
Daniel Vetter270b3042012-10-27 15:52:05 +02008935
8936 drm_helper_move_panel_connectors_to_head(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08008937}
8938
8939static void intel_user_framebuffer_destroy(struct drm_framebuffer *fb)
8940{
8941 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
Jesse Barnes79e53942008-11-07 14:24:08 -08008942
8943 drm_framebuffer_cleanup(fb);
Chris Wilson05394f32010-11-08 19:18:58 +00008944 drm_gem_object_unreference_unlocked(&intel_fb->obj->base);
Jesse Barnes79e53942008-11-07 14:24:08 -08008945
8946 kfree(intel_fb);
8947}
8948
8949static int intel_user_framebuffer_create_handle(struct drm_framebuffer *fb,
Chris Wilson05394f32010-11-08 19:18:58 +00008950 struct drm_file *file,
Jesse Barnes79e53942008-11-07 14:24:08 -08008951 unsigned int *handle)
8952{
8953 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
Chris Wilson05394f32010-11-08 19:18:58 +00008954 struct drm_i915_gem_object *obj = intel_fb->obj;
Jesse Barnes79e53942008-11-07 14:24:08 -08008955
Chris Wilson05394f32010-11-08 19:18:58 +00008956 return drm_gem_handle_create(file, &obj->base, handle);
Jesse Barnes79e53942008-11-07 14:24:08 -08008957}
8958
8959static const struct drm_framebuffer_funcs intel_fb_funcs = {
8960 .destroy = intel_user_framebuffer_destroy,
8961 .create_handle = intel_user_framebuffer_create_handle,
8962};
8963
Dave Airlie38651672010-03-30 05:34:13 +00008964int intel_framebuffer_init(struct drm_device *dev,
8965 struct intel_framebuffer *intel_fb,
Jesse Barnes308e5bc2011-11-14 14:51:28 -08008966 struct drm_mode_fb_cmd2 *mode_cmd,
Chris Wilson05394f32010-11-08 19:18:58 +00008967 struct drm_i915_gem_object *obj)
Jesse Barnes79e53942008-11-07 14:24:08 -08008968{
Jesse Barnes79e53942008-11-07 14:24:08 -08008969 int ret;
8970
Chris Wilsonc16ed4b2012-12-18 22:13:14 +00008971 if (obj->tiling_mode == I915_TILING_Y) {
8972 DRM_DEBUG("hardware does not support tiling Y\n");
Chris Wilson57cd6502010-08-08 12:34:44 +01008973 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +00008974 }
Chris Wilson57cd6502010-08-08 12:34:44 +01008975
Chris Wilsonc16ed4b2012-12-18 22:13:14 +00008976 if (mode_cmd->pitches[0] & 63) {
8977 DRM_DEBUG("pitch (%d) must be at least 64 byte aligned\n",
8978 mode_cmd->pitches[0]);
Chris Wilson57cd6502010-08-08 12:34:44 +01008979 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +00008980 }
Chris Wilson57cd6502010-08-08 12:34:44 +01008981
Ville Syrjälä5d7bd702012-10-31 17:50:18 +02008982 /* FIXME <= Gen4 stride limits are bit unclear */
Chris Wilsonc16ed4b2012-12-18 22:13:14 +00008983 if (mode_cmd->pitches[0] > 32768) {
8984 DRM_DEBUG("pitch (%d) must be at less than 32768\n",
8985 mode_cmd->pitches[0]);
Ville Syrjälä5d7bd702012-10-31 17:50:18 +02008986 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +00008987 }
Ville Syrjälä5d7bd702012-10-31 17:50:18 +02008988
8989 if (obj->tiling_mode != I915_TILING_NONE &&
Chris Wilsonc16ed4b2012-12-18 22:13:14 +00008990 mode_cmd->pitches[0] != obj->stride) {
8991 DRM_DEBUG("pitch (%d) must match tiling stride (%d)\n",
8992 mode_cmd->pitches[0], obj->stride);
Ville Syrjälä5d7bd702012-10-31 17:50:18 +02008993 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +00008994 }
Ville Syrjälä5d7bd702012-10-31 17:50:18 +02008995
Ville Syrjälä57779d02012-10-31 17:50:14 +02008996 /* Reject formats not supported by any plane early. */
Jesse Barnes308e5bc2011-11-14 14:51:28 -08008997 switch (mode_cmd->pixel_format) {
Ville Syrjälä57779d02012-10-31 17:50:14 +02008998 case DRM_FORMAT_C8:
Ville Syrjälä04b39242011-11-17 18:05:13 +02008999 case DRM_FORMAT_RGB565:
9000 case DRM_FORMAT_XRGB8888:
9001 case DRM_FORMAT_ARGB8888:
Ville Syrjälä57779d02012-10-31 17:50:14 +02009002 break;
9003 case DRM_FORMAT_XRGB1555:
9004 case DRM_FORMAT_ARGB1555:
Chris Wilsonc16ed4b2012-12-18 22:13:14 +00009005 if (INTEL_INFO(dev)->gen > 3) {
9006 DRM_DEBUG("invalid format: 0x%08x\n", mode_cmd->pixel_format);
Ville Syrjälä57779d02012-10-31 17:50:14 +02009007 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +00009008 }
Ville Syrjälä57779d02012-10-31 17:50:14 +02009009 break;
9010 case DRM_FORMAT_XBGR8888:
9011 case DRM_FORMAT_ABGR8888:
Ville Syrjälä04b39242011-11-17 18:05:13 +02009012 case DRM_FORMAT_XRGB2101010:
9013 case DRM_FORMAT_ARGB2101010:
Ville Syrjälä57779d02012-10-31 17:50:14 +02009014 case DRM_FORMAT_XBGR2101010:
9015 case DRM_FORMAT_ABGR2101010:
Chris Wilsonc16ed4b2012-12-18 22:13:14 +00009016 if (INTEL_INFO(dev)->gen < 4) {
9017 DRM_DEBUG("invalid format: 0x%08x\n", mode_cmd->pixel_format);
Ville Syrjälä57779d02012-10-31 17:50:14 +02009018 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +00009019 }
Jesse Barnesb5626742011-06-24 12:19:27 -07009020 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +02009021 case DRM_FORMAT_YUYV:
9022 case DRM_FORMAT_UYVY:
9023 case DRM_FORMAT_YVYU:
9024 case DRM_FORMAT_VYUY:
Chris Wilsonc16ed4b2012-12-18 22:13:14 +00009025 if (INTEL_INFO(dev)->gen < 5) {
9026 DRM_DEBUG("invalid format: 0x%08x\n", mode_cmd->pixel_format);
Ville Syrjälä57779d02012-10-31 17:50:14 +02009027 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +00009028 }
Chris Wilson57cd6502010-08-08 12:34:44 +01009029 break;
9030 default:
Chris Wilsonc16ed4b2012-12-18 22:13:14 +00009031 DRM_DEBUG("unsupported pixel format 0x%08x\n", mode_cmd->pixel_format);
Chris Wilson57cd6502010-08-08 12:34:44 +01009032 return -EINVAL;
9033 }
9034
Ville Syrjälä90f9a332012-10-31 17:50:19 +02009035 /* FIXME need to adjust LINOFF/TILEOFF accordingly. */
9036 if (mode_cmd->offsets[0] != 0)
9037 return -EINVAL;
9038
Daniel Vetterc7d73f62012-12-13 23:38:38 +01009039 drm_helper_mode_fill_fb_struct(&intel_fb->base, mode_cmd);
9040 intel_fb->obj = obj;
9041
Jesse Barnes79e53942008-11-07 14:24:08 -08009042 ret = drm_framebuffer_init(dev, &intel_fb->base, &intel_fb_funcs);
9043 if (ret) {
9044 DRM_ERROR("framebuffer init failed %d\n", ret);
9045 return ret;
9046 }
9047
Jesse Barnes79e53942008-11-07 14:24:08 -08009048 return 0;
9049}
9050
Jesse Barnes79e53942008-11-07 14:24:08 -08009051static struct drm_framebuffer *
9052intel_user_framebuffer_create(struct drm_device *dev,
9053 struct drm_file *filp,
Jesse Barnes308e5bc2011-11-14 14:51:28 -08009054 struct drm_mode_fb_cmd2 *mode_cmd)
Jesse Barnes79e53942008-11-07 14:24:08 -08009055{
Chris Wilson05394f32010-11-08 19:18:58 +00009056 struct drm_i915_gem_object *obj;
Jesse Barnes79e53942008-11-07 14:24:08 -08009057
Jesse Barnes308e5bc2011-11-14 14:51:28 -08009058 obj = to_intel_bo(drm_gem_object_lookup(dev, filp,
9059 mode_cmd->handles[0]));
Chris Wilsonc8725222011-02-19 11:31:06 +00009060 if (&obj->base == NULL)
Chris Wilsoncce13ff2010-08-08 13:36:38 +01009061 return ERR_PTR(-ENOENT);
Jesse Barnes79e53942008-11-07 14:24:08 -08009062
Chris Wilsond2dff872011-04-19 08:36:26 +01009063 return intel_framebuffer_create(dev, mode_cmd, obj);
Jesse Barnes79e53942008-11-07 14:24:08 -08009064}
9065
Jesse Barnes79e53942008-11-07 14:24:08 -08009066static const struct drm_mode_config_funcs intel_mode_funcs = {
Jesse Barnes79e53942008-11-07 14:24:08 -08009067 .fb_create = intel_user_framebuffer_create,
Dave Airlieeb1f8e42010-05-07 06:42:51 +00009068 .output_poll_changed = intel_fb_output_poll_changed,
Jesse Barnes79e53942008-11-07 14:24:08 -08009069};
9070
Jesse Barnese70236a2009-09-21 10:42:27 -07009071/* Set up chip specific display functions */
9072static void intel_init_display(struct drm_device *dev)
9073{
9074 struct drm_i915_private *dev_priv = dev->dev_private;
9075
Paulo Zanoniaffa9352012-11-23 15:30:39 -02009076 if (HAS_DDI(dev)) {
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01009077 dev_priv->display.get_pipe_config = haswell_get_pipe_config;
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03009078 dev_priv->display.crtc_mode_set = haswell_crtc_mode_set;
Paulo Zanoni4f771f12012-10-23 18:29:51 -02009079 dev_priv->display.crtc_enable = haswell_crtc_enable;
9080 dev_priv->display.crtc_disable = haswell_crtc_disable;
Paulo Zanoni6441ab52012-10-05 12:05:58 -03009081 dev_priv->display.off = haswell_crtc_off;
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03009082 dev_priv->display.update_plane = ironlake_update_plane;
9083 } else if (HAS_PCH_SPLIT(dev)) {
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01009084 dev_priv->display.get_pipe_config = ironlake_get_pipe_config;
Eric Anholtf564048e2011-03-30 13:01:02 -07009085 dev_priv->display.crtc_mode_set = ironlake_crtc_mode_set;
Daniel Vetter76e5a892012-06-29 22:39:33 +02009086 dev_priv->display.crtc_enable = ironlake_crtc_enable;
9087 dev_priv->display.crtc_disable = ironlake_crtc_disable;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01009088 dev_priv->display.off = ironlake_crtc_off;
Jesse Barnes17638cd2011-06-24 12:19:23 -07009089 dev_priv->display.update_plane = ironlake_update_plane;
Jesse Barnes89b667f2013-04-18 14:51:36 -07009090 } else if (IS_VALLEYVIEW(dev)) {
9091 dev_priv->display.get_pipe_config = i9xx_get_pipe_config;
9092 dev_priv->display.crtc_mode_set = i9xx_crtc_mode_set;
9093 dev_priv->display.crtc_enable = valleyview_crtc_enable;
9094 dev_priv->display.crtc_disable = i9xx_crtc_disable;
9095 dev_priv->display.off = i9xx_crtc_off;
9096 dev_priv->display.update_plane = i9xx_update_plane;
Eric Anholtf564048e2011-03-30 13:01:02 -07009097 } else {
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01009098 dev_priv->display.get_pipe_config = i9xx_get_pipe_config;
Eric Anholtf564048e2011-03-30 13:01:02 -07009099 dev_priv->display.crtc_mode_set = i9xx_crtc_mode_set;
Daniel Vetter76e5a892012-06-29 22:39:33 +02009100 dev_priv->display.crtc_enable = i9xx_crtc_enable;
9101 dev_priv->display.crtc_disable = i9xx_crtc_disable;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01009102 dev_priv->display.off = i9xx_crtc_off;
Jesse Barnes17638cd2011-06-24 12:19:23 -07009103 dev_priv->display.update_plane = i9xx_update_plane;
Eric Anholtf564048e2011-03-30 13:01:02 -07009104 }
Jesse Barnese70236a2009-09-21 10:42:27 -07009105
Jesse Barnese70236a2009-09-21 10:42:27 -07009106 /* Returns the core display clock speed */
Jesse Barnes25eb05fc2012-03-28 13:39:23 -07009107 if (IS_VALLEYVIEW(dev))
9108 dev_priv->display.get_display_clock_speed =
9109 valleyview_get_display_clock_speed;
9110 else if (IS_I945G(dev) || (IS_G33(dev) && !IS_PINEVIEW_M(dev)))
Jesse Barnese70236a2009-09-21 10:42:27 -07009111 dev_priv->display.get_display_clock_speed =
9112 i945_get_display_clock_speed;
9113 else if (IS_I915G(dev))
9114 dev_priv->display.get_display_clock_speed =
9115 i915_get_display_clock_speed;
Adam Jacksonf2b115e2009-12-03 17:14:42 -05009116 else if (IS_I945GM(dev) || IS_845G(dev) || IS_PINEVIEW_M(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -07009117 dev_priv->display.get_display_clock_speed =
9118 i9xx_misc_get_display_clock_speed;
9119 else if (IS_I915GM(dev))
9120 dev_priv->display.get_display_clock_speed =
9121 i915gm_get_display_clock_speed;
9122 else if (IS_I865G(dev))
9123 dev_priv->display.get_display_clock_speed =
9124 i865_get_display_clock_speed;
Daniel Vetterf0f8a9c2009-09-15 22:57:33 +02009125 else if (IS_I85X(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -07009126 dev_priv->display.get_display_clock_speed =
9127 i855_get_display_clock_speed;
9128 else /* 852, 830 */
9129 dev_priv->display.get_display_clock_speed =
9130 i830_get_display_clock_speed;
9131
Zhenyu Wang7f8a8562010-04-01 13:07:53 +08009132 if (HAS_PCH_SPLIT(dev)) {
Chris Wilsonf00a3dd2010-10-21 14:57:17 +01009133 if (IS_GEN5(dev)) {
Jesse Barnes674cf962011-04-28 14:27:04 -07009134 dev_priv->display.fdi_link_train = ironlake_fdi_link_train;
Wu Fengguange0dac652011-09-05 14:25:34 +08009135 dev_priv->display.write_eld = ironlake_write_eld;
Yuanhan Liu13982612010-12-15 15:42:31 +08009136 } else if (IS_GEN6(dev)) {
Jesse Barnes674cf962011-04-28 14:27:04 -07009137 dev_priv->display.fdi_link_train = gen6_fdi_link_train;
Wu Fengguange0dac652011-09-05 14:25:34 +08009138 dev_priv->display.write_eld = ironlake_write_eld;
Jesse Barnes357555c2011-04-28 15:09:55 -07009139 } else if (IS_IVYBRIDGE(dev)) {
9140 /* FIXME: detect B0+ stepping and use auto training */
9141 dev_priv->display.fdi_link_train = ivb_manual_fdi_link_train;
Wu Fengguange0dac652011-09-05 14:25:34 +08009142 dev_priv->display.write_eld = ironlake_write_eld;
Daniel Vetter01a415f2012-10-27 15:58:40 +02009143 dev_priv->display.modeset_global_resources =
9144 ivb_modeset_global_resources;
Eugeni Dodonovc82e4d22012-05-09 15:37:21 -03009145 } else if (IS_HASWELL(dev)) {
9146 dev_priv->display.fdi_link_train = hsw_fdi_link_train;
Wang Xingchao83358c852012-08-16 22:43:37 +08009147 dev_priv->display.write_eld = haswell_write_eld;
Daniel Vetterd6dd9eb2013-01-29 16:35:20 -02009148 dev_priv->display.modeset_global_resources =
9149 haswell_modeset_global_resources;
Paulo Zanonia0e63c22012-12-06 11:12:39 -02009150 }
Jesse Barnes6067aae2011-04-28 15:04:31 -07009151 } else if (IS_G4X(dev)) {
Wu Fengguange0dac652011-09-05 14:25:34 +08009152 dev_priv->display.write_eld = g4x_write_eld;
Jesse Barnese70236a2009-09-21 10:42:27 -07009153 }
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009154
9155 /* Default just returns -ENODEV to indicate unsupported */
9156 dev_priv->display.queue_flip = intel_default_queue_flip;
9157
9158 switch (INTEL_INFO(dev)->gen) {
9159 case 2:
9160 dev_priv->display.queue_flip = intel_gen2_queue_flip;
9161 break;
9162
9163 case 3:
9164 dev_priv->display.queue_flip = intel_gen3_queue_flip;
9165 break;
9166
9167 case 4:
9168 case 5:
9169 dev_priv->display.queue_flip = intel_gen4_queue_flip;
9170 break;
9171
9172 case 6:
9173 dev_priv->display.queue_flip = intel_gen6_queue_flip;
9174 break;
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009175 case 7:
9176 dev_priv->display.queue_flip = intel_gen7_queue_flip;
9177 break;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009178 }
Jesse Barnese70236a2009-09-21 10:42:27 -07009179}
9180
Jesse Barnesb690e962010-07-19 13:53:12 -07009181/*
9182 * Some BIOSes insist on assuming the GPU's pipe A is enabled at suspend,
9183 * resume, or other times. This quirk makes sure that's the case for
9184 * affected systems.
9185 */
Akshay Joshi0206e352011-08-16 15:34:10 -04009186static void quirk_pipea_force(struct drm_device *dev)
Jesse Barnesb690e962010-07-19 13:53:12 -07009187{
9188 struct drm_i915_private *dev_priv = dev->dev_private;
9189
9190 dev_priv->quirks |= QUIRK_PIPEA_FORCE;
Daniel Vetterbc0daf42012-04-01 13:16:49 +02009191 DRM_INFO("applying pipe a force quirk\n");
Jesse Barnesb690e962010-07-19 13:53:12 -07009192}
9193
Keith Packard435793d2011-07-12 14:56:22 -07009194/*
9195 * Some machines (Lenovo U160) do not work with SSC on LVDS for some reason
9196 */
9197static void quirk_ssc_force_disable(struct drm_device *dev)
9198{
9199 struct drm_i915_private *dev_priv = dev->dev_private;
9200 dev_priv->quirks |= QUIRK_LVDS_SSC_DISABLE;
Daniel Vetterbc0daf42012-04-01 13:16:49 +02009201 DRM_INFO("applying lvds SSC disable quirk\n");
Keith Packard435793d2011-07-12 14:56:22 -07009202}
9203
Carsten Emde4dca20e2012-03-15 15:56:26 +01009204/*
Carsten Emde5a15ab52012-03-15 15:56:27 +01009205 * A machine (e.g. Acer Aspire 5734Z) may need to invert the panel backlight
9206 * brightness value
Carsten Emde4dca20e2012-03-15 15:56:26 +01009207 */
9208static void quirk_invert_brightness(struct drm_device *dev)
9209{
9210 struct drm_i915_private *dev_priv = dev->dev_private;
9211 dev_priv->quirks |= QUIRK_INVERT_BRIGHTNESS;
Daniel Vetterbc0daf42012-04-01 13:16:49 +02009212 DRM_INFO("applying inverted panel brightness quirk\n");
Jesse Barnesb690e962010-07-19 13:53:12 -07009213}
9214
9215struct intel_quirk {
9216 int device;
9217 int subsystem_vendor;
9218 int subsystem_device;
9219 void (*hook)(struct drm_device *dev);
9220};
9221
Egbert Eich5f85f172012-10-14 15:46:38 +02009222/* For systems that don't have a meaningful PCI subdevice/subvendor ID */
9223struct intel_dmi_quirk {
9224 void (*hook)(struct drm_device *dev);
9225 const struct dmi_system_id (*dmi_id_list)[];
9226};
9227
9228static int intel_dmi_reverse_brightness(const struct dmi_system_id *id)
9229{
9230 DRM_INFO("Backlight polarity reversed on %s\n", id->ident);
9231 return 1;
9232}
9233
9234static const struct intel_dmi_quirk intel_dmi_quirks[] = {
9235 {
9236 .dmi_id_list = &(const struct dmi_system_id[]) {
9237 {
9238 .callback = intel_dmi_reverse_brightness,
9239 .ident = "NCR Corporation",
9240 .matches = {DMI_MATCH(DMI_SYS_VENDOR, "NCR Corporation"),
9241 DMI_MATCH(DMI_PRODUCT_NAME, ""),
9242 },
9243 },
9244 { } /* terminating entry */
9245 },
9246 .hook = quirk_invert_brightness,
9247 },
9248};
9249
Ben Widawskyc43b5632012-04-16 14:07:40 -07009250static struct intel_quirk intel_quirks[] = {
Jesse Barnesb690e962010-07-19 13:53:12 -07009251 /* HP Mini needs pipe A force quirk (LP: #322104) */
Akshay Joshi0206e352011-08-16 15:34:10 -04009252 { 0x27ae, 0x103c, 0x361a, quirk_pipea_force },
Jesse Barnesb690e962010-07-19 13:53:12 -07009253
Jesse Barnesb690e962010-07-19 13:53:12 -07009254 /* Toshiba Protege R-205, S-209 needs pipe A force quirk */
9255 { 0x2592, 0x1179, 0x0001, quirk_pipea_force },
9256
Jesse Barnesb690e962010-07-19 13:53:12 -07009257 /* ThinkPad T60 needs pipe A force quirk (bug #16494) */
9258 { 0x2782, 0x17aa, 0x201a, quirk_pipea_force },
9259
Daniel Vetterccd0d362012-10-10 23:13:59 +02009260 /* 830/845 need to leave pipe A & dpll A up */
Jesse Barnesb690e962010-07-19 13:53:12 -07009261 { 0x2562, PCI_ANY_ID, PCI_ANY_ID, quirk_pipea_force },
Daniel Vetterdcdaed62012-08-12 21:19:34 +02009262 { 0x3577, PCI_ANY_ID, PCI_ANY_ID, quirk_pipea_force },
Keith Packard435793d2011-07-12 14:56:22 -07009263
9264 /* Lenovo U160 cannot use SSC on LVDS */
9265 { 0x0046, 0x17aa, 0x3920, quirk_ssc_force_disable },
Michel Alexandre Salim070d3292011-07-28 18:52:06 +02009266
9267 /* Sony Vaio Y cannot use SSC on LVDS */
9268 { 0x0046, 0x104d, 0x9076, quirk_ssc_force_disable },
Carsten Emde5a15ab52012-03-15 15:56:27 +01009269
9270 /* Acer Aspire 5734Z must invert backlight brightness */
9271 { 0x2a42, 0x1025, 0x0459, quirk_invert_brightness },
Jani Nikula1ffff602013-01-22 12:50:34 +02009272
9273 /* Acer/eMachines G725 */
9274 { 0x2a42, 0x1025, 0x0210, quirk_invert_brightness },
Jani Nikula01e3a8f2013-01-22 12:50:35 +02009275
9276 /* Acer/eMachines e725 */
9277 { 0x2a42, 0x1025, 0x0212, quirk_invert_brightness },
Jani Nikula5559eca2013-01-22 12:50:36 +02009278
9279 /* Acer/Packard Bell NCL20 */
9280 { 0x2a42, 0x1025, 0x034b, quirk_invert_brightness },
Daniel Vetterac4199e2013-02-15 18:35:30 +01009281
9282 /* Acer Aspire 4736Z */
9283 { 0x2a42, 0x1025, 0x0260, quirk_invert_brightness },
Jesse Barnesb690e962010-07-19 13:53:12 -07009284};
9285
9286static void intel_init_quirks(struct drm_device *dev)
9287{
9288 struct pci_dev *d = dev->pdev;
9289 int i;
9290
9291 for (i = 0; i < ARRAY_SIZE(intel_quirks); i++) {
9292 struct intel_quirk *q = &intel_quirks[i];
9293
9294 if (d->device == q->device &&
9295 (d->subsystem_vendor == q->subsystem_vendor ||
9296 q->subsystem_vendor == PCI_ANY_ID) &&
9297 (d->subsystem_device == q->subsystem_device ||
9298 q->subsystem_device == PCI_ANY_ID))
9299 q->hook(dev);
9300 }
Egbert Eich5f85f172012-10-14 15:46:38 +02009301 for (i = 0; i < ARRAY_SIZE(intel_dmi_quirks); i++) {
9302 if (dmi_check_system(*intel_dmi_quirks[i].dmi_id_list) != 0)
9303 intel_dmi_quirks[i].hook(dev);
9304 }
Jesse Barnesb690e962010-07-19 13:53:12 -07009305}
9306
Jesse Barnes9cce37f2010-08-13 15:11:26 -07009307/* Disable the VGA plane that we never use */
9308static void i915_disable_vga(struct drm_device *dev)
9309{
9310 struct drm_i915_private *dev_priv = dev->dev_private;
9311 u8 sr1;
Ville Syrjälä766aa1c2013-01-25 21:44:46 +02009312 u32 vga_reg = i915_vgacntrl_reg(dev);
Jesse Barnes9cce37f2010-08-13 15:11:26 -07009313
9314 vga_get_uninterruptible(dev->pdev, VGA_RSRC_LEGACY_IO);
Jesse Barnes3fdcf432012-04-06 11:46:27 -07009315 outb(SR01, VGA_SR_INDEX);
Jesse Barnes9cce37f2010-08-13 15:11:26 -07009316 sr1 = inb(VGA_SR_DATA);
9317 outb(sr1 | 1<<5, VGA_SR_DATA);
9318 vga_put(dev->pdev, VGA_RSRC_LEGACY_IO);
9319 udelay(300);
9320
9321 I915_WRITE(vga_reg, VGA_DISP_DISABLE);
9322 POSTING_READ(vga_reg);
9323}
9324
Daniel Vetterf8175862012-04-10 15:50:11 +02009325void intel_modeset_init_hw(struct drm_device *dev)
9326{
Paulo Zanonifa42e232013-01-25 16:59:11 -02009327 intel_init_power_well(dev);
Eugeni Dodonov0232e922012-07-06 15:42:36 -03009328
Eugeni Dodonova8f78b52012-06-28 15:55:35 -03009329 intel_prepare_ddi(dev);
9330
Daniel Vetterf8175862012-04-10 15:50:11 +02009331 intel_init_clock_gating(dev);
9332
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02009333 mutex_lock(&dev->struct_mutex);
Daniel Vetter8090c6b2012-06-24 16:42:32 +02009334 intel_enable_gt_powersave(dev);
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02009335 mutex_unlock(&dev->struct_mutex);
Daniel Vetterf8175862012-04-10 15:50:11 +02009336}
9337
Imre Deak7d708ee2013-04-17 14:04:50 +03009338void intel_modeset_suspend_hw(struct drm_device *dev)
9339{
9340 intel_suspend_hw(dev);
9341}
9342
Jesse Barnes79e53942008-11-07 14:24:08 -08009343void intel_modeset_init(struct drm_device *dev)
9344{
Jesse Barnes652c3932009-08-17 13:31:43 -07009345 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes7f1f3852013-04-02 11:22:20 -07009346 int i, j, ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08009347
9348 drm_mode_config_init(dev);
9349
9350 dev->mode_config.min_width = 0;
9351 dev->mode_config.min_height = 0;
9352
Dave Airlie019d96c2011-09-29 16:20:42 +01009353 dev->mode_config.preferred_depth = 24;
9354 dev->mode_config.prefer_shadow = 1;
9355
Laurent Pincharte6ecefa2012-05-17 13:27:23 +02009356 dev->mode_config.funcs = &intel_mode_funcs;
Jesse Barnes79e53942008-11-07 14:24:08 -08009357
Jesse Barnesb690e962010-07-19 13:53:12 -07009358 intel_init_quirks(dev);
9359
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03009360 intel_init_pm(dev);
9361
Ben Widawskye3c74752013-04-05 13:12:39 -07009362 if (INTEL_INFO(dev)->num_pipes == 0)
9363 return;
9364
Jesse Barnese70236a2009-09-21 10:42:27 -07009365 intel_init_display(dev);
9366
Chris Wilsona6c45cf2010-09-17 00:32:17 +01009367 if (IS_GEN2(dev)) {
9368 dev->mode_config.max_width = 2048;
9369 dev->mode_config.max_height = 2048;
9370 } else if (IS_GEN3(dev)) {
Keith Packard5e4d6fa2009-07-12 23:53:17 -07009371 dev->mode_config.max_width = 4096;
9372 dev->mode_config.max_height = 4096;
Jesse Barnes79e53942008-11-07 14:24:08 -08009373 } else {
Chris Wilsona6c45cf2010-09-17 00:32:17 +01009374 dev->mode_config.max_width = 8192;
9375 dev->mode_config.max_height = 8192;
Jesse Barnes79e53942008-11-07 14:24:08 -08009376 }
Ben Widawsky5d4545a2013-01-17 12:45:15 -08009377 dev->mode_config.fb_base = dev_priv->gtt.mappable_base;
Jesse Barnes79e53942008-11-07 14:24:08 -08009378
Zhao Yakui28c97732009-10-09 11:39:41 +08009379 DRM_DEBUG_KMS("%d display pipe%s available.\n",
Ben Widawsky7eb552a2013-03-13 14:05:41 -07009380 INTEL_INFO(dev)->num_pipes,
9381 INTEL_INFO(dev)->num_pipes > 1 ? "s" : "");
Jesse Barnes79e53942008-11-07 14:24:08 -08009382
Ben Widawsky7eb552a2013-03-13 14:05:41 -07009383 for (i = 0; i < INTEL_INFO(dev)->num_pipes; i++) {
Jesse Barnes79e53942008-11-07 14:24:08 -08009384 intel_crtc_init(dev, i);
Jesse Barnes7f1f3852013-04-02 11:22:20 -07009385 for (j = 0; j < dev_priv->num_plane; j++) {
9386 ret = intel_plane_init(dev, i, j);
9387 if (ret)
Ville Syrjälä06da8da2013-04-17 17:48:51 +03009388 DRM_DEBUG_KMS("pipe %c sprite %c init failed: %d\n",
9389 pipe_name(i), sprite_name(i, j), ret);
Jesse Barnes7f1f3852013-04-02 11:22:20 -07009390 }
Jesse Barnes79e53942008-11-07 14:24:08 -08009391 }
9392
Paulo Zanoni79f689a2012-10-05 12:05:52 -03009393 intel_cpu_pll_init(dev);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01009394 intel_pch_pll_init(dev);
9395
Jesse Barnes9cce37f2010-08-13 15:11:26 -07009396 /* Just disable it once at startup */
9397 i915_disable_vga(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08009398 intel_setup_outputs(dev);
Chris Wilson11be49e2012-11-15 11:32:20 +00009399
9400 /* Just in case the BIOS is doing something questionable. */
9401 intel_disable_fbc(dev);
Chris Wilson2c7111d2011-03-29 10:40:27 +01009402}
Jesse Barnesd5bb0812011-01-05 12:01:26 -08009403
Daniel Vetter24929352012-07-02 20:28:59 +02009404static void
9405intel_connector_break_all_links(struct intel_connector *connector)
9406{
9407 connector->base.dpms = DRM_MODE_DPMS_OFF;
9408 connector->base.encoder = NULL;
9409 connector->encoder->connectors_active = false;
9410 connector->encoder->base.crtc = NULL;
9411}
9412
Daniel Vetter7fad7982012-07-04 17:51:47 +02009413static void intel_enable_pipe_a(struct drm_device *dev)
9414{
9415 struct intel_connector *connector;
9416 struct drm_connector *crt = NULL;
9417 struct intel_load_detect_pipe load_detect_temp;
9418
9419 /* We can't just switch on the pipe A, we need to set things up with a
9420 * proper mode and output configuration. As a gross hack, enable pipe A
9421 * by enabling the load detect pipe once. */
9422 list_for_each_entry(connector,
9423 &dev->mode_config.connector_list,
9424 base.head) {
9425 if (connector->encoder->type == INTEL_OUTPUT_ANALOG) {
9426 crt = &connector->base;
9427 break;
9428 }
9429 }
9430
9431 if (!crt)
9432 return;
9433
9434 if (intel_get_load_detect_pipe(crt, NULL, &load_detect_temp))
9435 intel_release_load_detect_pipe(crt, &load_detect_temp);
9436
9437
9438}
9439
Daniel Vetterfa555832012-10-10 23:14:00 +02009440static bool
9441intel_check_plane_mapping(struct intel_crtc *crtc)
9442{
Ben Widawsky7eb552a2013-03-13 14:05:41 -07009443 struct drm_device *dev = crtc->base.dev;
9444 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterfa555832012-10-10 23:14:00 +02009445 u32 reg, val;
9446
Ben Widawsky7eb552a2013-03-13 14:05:41 -07009447 if (INTEL_INFO(dev)->num_pipes == 1)
Daniel Vetterfa555832012-10-10 23:14:00 +02009448 return true;
9449
9450 reg = DSPCNTR(!crtc->plane);
9451 val = I915_READ(reg);
9452
9453 if ((val & DISPLAY_PLANE_ENABLE) &&
9454 (!!(val & DISPPLANE_SEL_PIPE_MASK) == crtc->pipe))
9455 return false;
9456
9457 return true;
9458}
9459
Daniel Vetter24929352012-07-02 20:28:59 +02009460static void intel_sanitize_crtc(struct intel_crtc *crtc)
9461{
9462 struct drm_device *dev = crtc->base.dev;
9463 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterfa555832012-10-10 23:14:00 +02009464 u32 reg;
Daniel Vetter24929352012-07-02 20:28:59 +02009465
Daniel Vetter24929352012-07-02 20:28:59 +02009466 /* Clear any frame start delays used for debugging left by the BIOS */
Daniel Vetter3b117c82013-04-17 20:15:07 +02009467 reg = PIPECONF(crtc->config.cpu_transcoder);
Daniel Vetter24929352012-07-02 20:28:59 +02009468 I915_WRITE(reg, I915_READ(reg) & ~PIPECONF_FRAME_START_DELAY_MASK);
9469
9470 /* We need to sanitize the plane -> pipe mapping first because this will
Daniel Vetterfa555832012-10-10 23:14:00 +02009471 * disable the crtc (and hence change the state) if it is wrong. Note
9472 * that gen4+ has a fixed plane -> pipe mapping. */
9473 if (INTEL_INFO(dev)->gen < 4 && !intel_check_plane_mapping(crtc)) {
Daniel Vetter24929352012-07-02 20:28:59 +02009474 struct intel_connector *connector;
9475 bool plane;
9476
Daniel Vetter24929352012-07-02 20:28:59 +02009477 DRM_DEBUG_KMS("[CRTC:%d] wrong plane connection detected!\n",
9478 crtc->base.base.id);
9479
9480 /* Pipe has the wrong plane attached and the plane is active.
9481 * Temporarily change the plane mapping and disable everything
9482 * ... */
9483 plane = crtc->plane;
9484 crtc->plane = !plane;
9485 dev_priv->display.crtc_disable(&crtc->base);
9486 crtc->plane = plane;
9487
9488 /* ... and break all links. */
9489 list_for_each_entry(connector, &dev->mode_config.connector_list,
9490 base.head) {
9491 if (connector->encoder->base.crtc != &crtc->base)
9492 continue;
9493
9494 intel_connector_break_all_links(connector);
9495 }
9496
9497 WARN_ON(crtc->active);
9498 crtc->base.enabled = false;
9499 }
Daniel Vetter24929352012-07-02 20:28:59 +02009500
Daniel Vetter7fad7982012-07-04 17:51:47 +02009501 if (dev_priv->quirks & QUIRK_PIPEA_FORCE &&
9502 crtc->pipe == PIPE_A && !crtc->active) {
9503 /* BIOS forgot to enable pipe A, this mostly happens after
9504 * resume. Force-enable the pipe to fix this, the update_dpms
9505 * call below we restore the pipe to the right state, but leave
9506 * the required bits on. */
9507 intel_enable_pipe_a(dev);
9508 }
9509
Daniel Vetter24929352012-07-02 20:28:59 +02009510 /* Adjust the state of the output pipe according to whether we
9511 * have active connectors/encoders. */
9512 intel_crtc_update_dpms(&crtc->base);
9513
9514 if (crtc->active != crtc->base.enabled) {
9515 struct intel_encoder *encoder;
9516
9517 /* This can happen either due to bugs in the get_hw_state
9518 * functions or because the pipe is force-enabled due to the
9519 * pipe A quirk. */
9520 DRM_DEBUG_KMS("[CRTC:%d] hw state adjusted, was %s, now %s\n",
9521 crtc->base.base.id,
9522 crtc->base.enabled ? "enabled" : "disabled",
9523 crtc->active ? "enabled" : "disabled");
9524
9525 crtc->base.enabled = crtc->active;
9526
9527 /* Because we only establish the connector -> encoder ->
9528 * crtc links if something is active, this means the
9529 * crtc is now deactivated. Break the links. connector
9530 * -> encoder links are only establish when things are
9531 * actually up, hence no need to break them. */
9532 WARN_ON(crtc->active);
9533
9534 for_each_encoder_on_crtc(dev, &crtc->base, encoder) {
9535 WARN_ON(encoder->connectors_active);
9536 encoder->base.crtc = NULL;
9537 }
9538 }
9539}
9540
9541static void intel_sanitize_encoder(struct intel_encoder *encoder)
9542{
9543 struct intel_connector *connector;
9544 struct drm_device *dev = encoder->base.dev;
9545
9546 /* We need to check both for a crtc link (meaning that the
9547 * encoder is active and trying to read from a pipe) and the
9548 * pipe itself being active. */
9549 bool has_active_crtc = encoder->base.crtc &&
9550 to_intel_crtc(encoder->base.crtc)->active;
9551
9552 if (encoder->connectors_active && !has_active_crtc) {
9553 DRM_DEBUG_KMS("[ENCODER:%d:%s] has active connectors but no active pipe!\n",
9554 encoder->base.base.id,
9555 drm_get_encoder_name(&encoder->base));
9556
9557 /* Connector is active, but has no active pipe. This is
9558 * fallout from our resume register restoring. Disable
9559 * the encoder manually again. */
9560 if (encoder->base.crtc) {
9561 DRM_DEBUG_KMS("[ENCODER:%d:%s] manually disabled\n",
9562 encoder->base.base.id,
9563 drm_get_encoder_name(&encoder->base));
9564 encoder->disable(encoder);
9565 }
9566
9567 /* Inconsistent output/port/pipe state happens presumably due to
9568 * a bug in one of the get_hw_state functions. Or someplace else
9569 * in our code, like the register restore mess on resume. Clamp
9570 * things to off as a safer default. */
9571 list_for_each_entry(connector,
9572 &dev->mode_config.connector_list,
9573 base.head) {
9574 if (connector->encoder != encoder)
9575 continue;
9576
9577 intel_connector_break_all_links(connector);
9578 }
9579 }
9580 /* Enabled encoders without active connectors will be fixed in
9581 * the crtc fixup. */
9582}
9583
Daniel Vetter44cec742013-01-25 17:53:21 +01009584void i915_redisable_vga(struct drm_device *dev)
Krzysztof Mazur0fde9012012-12-19 11:03:41 +01009585{
9586 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä766aa1c2013-01-25 21:44:46 +02009587 u32 vga_reg = i915_vgacntrl_reg(dev);
Krzysztof Mazur0fde9012012-12-19 11:03:41 +01009588
9589 if (I915_READ(vga_reg) != VGA_DISP_DISABLE) {
9590 DRM_DEBUG_KMS("Something enabled VGA plane, disabling it\n");
Ville Syrjälä209d5212013-01-25 21:44:48 +02009591 i915_disable_vga(dev);
Krzysztof Mazur0fde9012012-12-19 11:03:41 +01009592 }
9593}
9594
Daniel Vetter24929352012-07-02 20:28:59 +02009595/* Scan out the current hw modeset state, sanitizes it and maps it into the drm
9596 * and i915 state tracking structures. */
Daniel Vetter45e2b5f2012-11-23 18:16:34 +01009597void intel_modeset_setup_hw_state(struct drm_device *dev,
9598 bool force_restore)
Daniel Vetter24929352012-07-02 20:28:59 +02009599{
9600 struct drm_i915_private *dev_priv = dev->dev_private;
9601 enum pipe pipe;
Jesse Barnesb5644d02013-03-26 13:25:27 -07009602 struct drm_plane *plane;
Daniel Vetter24929352012-07-02 20:28:59 +02009603 struct intel_crtc *crtc;
9604 struct intel_encoder *encoder;
9605 struct intel_connector *connector;
9606
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01009607 list_for_each_entry(crtc, &dev->mode_config.crtc_list,
9608 base.head) {
Daniel Vetter88adfff2013-03-28 10:42:01 +01009609 memset(&crtc->config, 0, sizeof(crtc->config));
Daniel Vetter3b117c82013-04-17 20:15:07 +02009610
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01009611 crtc->active = dev_priv->display.get_pipe_config(crtc,
9612 &crtc->config);
Daniel Vetter24929352012-07-02 20:28:59 +02009613
9614 crtc->base.enabled = crtc->active;
9615
9616 DRM_DEBUG_KMS("[CRTC:%d] hw state readout: %s\n",
9617 crtc->base.base.id,
9618 crtc->active ? "enabled" : "disabled");
9619 }
9620
Paulo Zanoniaffa9352012-11-23 15:30:39 -02009621 if (HAS_DDI(dev))
Paulo Zanoni6441ab52012-10-05 12:05:58 -03009622 intel_ddi_setup_hw_pll_state(dev);
9623
Daniel Vetter24929352012-07-02 20:28:59 +02009624 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
9625 base.head) {
9626 pipe = 0;
9627
9628 if (encoder->get_hw_state(encoder, &pipe)) {
Jesse Barnes045ac3b2013-05-14 17:08:26 -07009629 crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
9630 encoder->base.crtc = &crtc->base;
9631 if (encoder->get_config)
9632 encoder->get_config(encoder, &crtc->config);
Daniel Vetter24929352012-07-02 20:28:59 +02009633 } else {
9634 encoder->base.crtc = NULL;
9635 }
9636
9637 encoder->connectors_active = false;
9638 DRM_DEBUG_KMS("[ENCODER:%d:%s] hw state readout: %s, pipe=%i\n",
9639 encoder->base.base.id,
9640 drm_get_encoder_name(&encoder->base),
9641 encoder->base.crtc ? "enabled" : "disabled",
9642 pipe);
9643 }
9644
9645 list_for_each_entry(connector, &dev->mode_config.connector_list,
9646 base.head) {
9647 if (connector->get_hw_state(connector)) {
9648 connector->base.dpms = DRM_MODE_DPMS_ON;
9649 connector->encoder->connectors_active = true;
9650 connector->base.encoder = &connector->encoder->base;
9651 } else {
9652 connector->base.dpms = DRM_MODE_DPMS_OFF;
9653 connector->base.encoder = NULL;
9654 }
9655 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] hw state readout: %s\n",
9656 connector->base.base.id,
9657 drm_get_connector_name(&connector->base),
9658 connector->base.encoder ? "enabled" : "disabled");
9659 }
9660
9661 /* HW state is read out, now we need to sanitize this mess. */
9662 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
9663 base.head) {
9664 intel_sanitize_encoder(encoder);
9665 }
9666
9667 for_each_pipe(pipe) {
9668 crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
9669 intel_sanitize_crtc(crtc);
Daniel Vetterc0b03412013-05-28 12:05:54 +02009670 intel_dump_pipe_config(crtc, &crtc->config, "[setup_hw_state]");
Daniel Vetter24929352012-07-02 20:28:59 +02009671 }
Daniel Vetter9a935852012-07-05 22:34:27 +02009672
Daniel Vetter45e2b5f2012-11-23 18:16:34 +01009673 if (force_restore) {
Daniel Vetterf30da182013-04-11 20:22:50 +02009674 /*
9675 * We need to use raw interfaces for restoring state to avoid
9676 * checking (bogus) intermediate states.
9677 */
Daniel Vetter45e2b5f2012-11-23 18:16:34 +01009678 for_each_pipe(pipe) {
Jesse Barnesb5644d02013-03-26 13:25:27 -07009679 struct drm_crtc *crtc =
9680 dev_priv->pipe_to_crtc_mapping[pipe];
Daniel Vetterf30da182013-04-11 20:22:50 +02009681
9682 __intel_set_mode(crtc, &crtc->mode, crtc->x, crtc->y,
9683 crtc->fb);
Daniel Vetter45e2b5f2012-11-23 18:16:34 +01009684 }
Jesse Barnesb5644d02013-03-26 13:25:27 -07009685 list_for_each_entry(plane, &dev->mode_config.plane_list, head)
9686 intel_plane_restore(plane);
Krzysztof Mazur0fde9012012-12-19 11:03:41 +01009687
9688 i915_redisable_vga(dev);
Daniel Vetter45e2b5f2012-11-23 18:16:34 +01009689 } else {
9690 intel_modeset_update_staged_output_state(dev);
9691 }
Daniel Vetter8af6cf82012-07-10 09:50:11 +02009692
9693 intel_modeset_check_state(dev);
Daniel Vetter2e938892012-10-11 20:08:24 +02009694
9695 drm_mode_config_reset(dev);
Chris Wilson2c7111d2011-03-29 10:40:27 +01009696}
9697
9698void intel_modeset_gem_init(struct drm_device *dev)
9699{
Chris Wilson1833b132012-05-09 11:56:28 +01009700 intel_modeset_init_hw(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +02009701
9702 intel_setup_overlay(dev);
Daniel Vetter24929352012-07-02 20:28:59 +02009703
Daniel Vetter45e2b5f2012-11-23 18:16:34 +01009704 intel_modeset_setup_hw_state(dev, false);
Jesse Barnes79e53942008-11-07 14:24:08 -08009705}
9706
9707void intel_modeset_cleanup(struct drm_device *dev)
9708{
Jesse Barnes652c3932009-08-17 13:31:43 -07009709 struct drm_i915_private *dev_priv = dev->dev_private;
9710 struct drm_crtc *crtc;
9711 struct intel_crtc *intel_crtc;
9712
Daniel Vetterfd0c0642013-04-24 11:13:35 +02009713 /*
9714 * Interrupts and polling as the first thing to avoid creating havoc.
9715 * Too much stuff here (turning of rps, connectors, ...) would
9716 * experience fancy races otherwise.
9717 */
9718 drm_irq_uninstall(dev);
9719 cancel_work_sync(&dev_priv->hotplug_work);
9720 /*
9721 * Due to the hpd irq storm handling the hotplug work can re-arm the
9722 * poll handlers. Hence disable polling after hpd handling is shut down.
9723 */
Keith Packardf87ea762010-10-03 19:36:26 -07009724 drm_kms_helper_poll_fini(dev);
Daniel Vetterfd0c0642013-04-24 11:13:35 +02009725
Jesse Barnes652c3932009-08-17 13:31:43 -07009726 mutex_lock(&dev->struct_mutex);
9727
Jesse Barnes723bfd72010-10-07 16:01:13 -07009728 intel_unregister_dsm_handler();
9729
Jesse Barnes652c3932009-08-17 13:31:43 -07009730 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
9731 /* Skip inactive CRTCs */
9732 if (!crtc->fb)
9733 continue;
9734
9735 intel_crtc = to_intel_crtc(crtc);
Daniel Vetter3dec0092010-08-20 21:40:52 +02009736 intel_increase_pllclock(crtc);
Jesse Barnes652c3932009-08-17 13:31:43 -07009737 }
9738
Chris Wilson973d04f2011-07-08 12:22:37 +01009739 intel_disable_fbc(dev);
Jesse Barnese70236a2009-09-21 10:42:27 -07009740
Daniel Vetter8090c6b2012-06-24 16:42:32 +02009741 intel_disable_gt_powersave(dev);
Chris Wilson0cdab212010-12-05 17:27:06 +00009742
Daniel Vetter930ebb42012-06-29 23:32:16 +02009743 ironlake_teardown_rc6(dev);
9744
Kristian Høgsberg69341a52009-11-11 12:19:17 -05009745 mutex_unlock(&dev->struct_mutex);
9746
Chris Wilson1630fe72011-07-08 12:22:42 +01009747 /* flush any delayed tasks or pending work */
9748 flush_scheduled_work();
9749
Jani Nikuladc652f92013-04-12 15:18:38 +03009750 /* destroy backlight, if any, before the connectors */
9751 intel_panel_destroy_backlight(dev);
9752
Jesse Barnes79e53942008-11-07 14:24:08 -08009753 drm_mode_config_cleanup(dev);
Daniel Vetter4d7bb012012-12-18 15:24:37 +01009754
9755 intel_cleanup_overlay(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -08009756}
9757
Dave Airlie28d52042009-09-21 14:33:58 +10009758/*
Zhenyu Wangf1c79df2010-03-30 14:39:29 +08009759 * Return which encoder is currently attached for connector.
9760 */
Chris Wilsondf0e9242010-09-09 16:20:55 +01009761struct drm_encoder *intel_best_encoder(struct drm_connector *connector)
Jesse Barnes79e53942008-11-07 14:24:08 -08009762{
Chris Wilsondf0e9242010-09-09 16:20:55 +01009763 return &intel_attached_encoder(connector)->base;
9764}
Jesse Barnes79e53942008-11-07 14:24:08 -08009765
Chris Wilsondf0e9242010-09-09 16:20:55 +01009766void intel_connector_attach_encoder(struct intel_connector *connector,
9767 struct intel_encoder *encoder)
9768{
9769 connector->encoder = encoder;
9770 drm_mode_connector_attach_encoder(&connector->base,
9771 &encoder->base);
Jesse Barnes79e53942008-11-07 14:24:08 -08009772}
Dave Airlie28d52042009-09-21 14:33:58 +10009773
9774/*
9775 * set vga decode state - true == enable VGA decode
9776 */
9777int intel_modeset_vga_set_state(struct drm_device *dev, bool state)
9778{
9779 struct drm_i915_private *dev_priv = dev->dev_private;
9780 u16 gmch_ctrl;
9781
9782 pci_read_config_word(dev_priv->bridge_dev, INTEL_GMCH_CTRL, &gmch_ctrl);
9783 if (state)
9784 gmch_ctrl &= ~INTEL_GMCH_VGA_DISABLE;
9785 else
9786 gmch_ctrl |= INTEL_GMCH_VGA_DISABLE;
9787 pci_write_config_word(dev_priv->bridge_dev, INTEL_GMCH_CTRL, gmch_ctrl);
9788 return 0;
9789}
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00009790
9791#ifdef CONFIG_DEBUG_FS
9792#include <linux/seq_file.h>
9793
9794struct intel_display_error_state {
Paulo Zanoniff57f1b2013-05-03 12:15:37 -03009795
9796 u32 power_well_driver;
9797
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00009798 struct intel_cursor_error_state {
9799 u32 control;
9800 u32 position;
9801 u32 base;
9802 u32 size;
Damien Lespiau52331302012-08-15 19:23:25 +01009803 } cursor[I915_MAX_PIPES];
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00009804
9805 struct intel_pipe_error_state {
Paulo Zanoniff57f1b2013-05-03 12:15:37 -03009806 enum transcoder cpu_transcoder;
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00009807 u32 conf;
9808 u32 source;
9809
9810 u32 htotal;
9811 u32 hblank;
9812 u32 hsync;
9813 u32 vtotal;
9814 u32 vblank;
9815 u32 vsync;
Damien Lespiau52331302012-08-15 19:23:25 +01009816 } pipe[I915_MAX_PIPES];
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00009817
9818 struct intel_plane_error_state {
9819 u32 control;
9820 u32 stride;
9821 u32 size;
9822 u32 pos;
9823 u32 addr;
9824 u32 surface;
9825 u32 tile_offset;
Damien Lespiau52331302012-08-15 19:23:25 +01009826 } plane[I915_MAX_PIPES];
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00009827};
9828
9829struct intel_display_error_state *
9830intel_display_capture_error_state(struct drm_device *dev)
9831{
Akshay Joshi0206e352011-08-16 15:34:10 -04009832 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00009833 struct intel_display_error_state *error;
Paulo Zanoni702e7a52012-10-23 18:29:59 -02009834 enum transcoder cpu_transcoder;
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00009835 int i;
9836
9837 error = kmalloc(sizeof(*error), GFP_ATOMIC);
9838 if (error == NULL)
9839 return NULL;
9840
Paulo Zanoniff57f1b2013-05-03 12:15:37 -03009841 if (HAS_POWER_WELL(dev))
9842 error->power_well_driver = I915_READ(HSW_PWR_WELL_DRIVER);
9843
Damien Lespiau52331302012-08-15 19:23:25 +01009844 for_each_pipe(i) {
Paulo Zanoni702e7a52012-10-23 18:29:59 -02009845 cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv, i);
Paulo Zanoniff57f1b2013-05-03 12:15:37 -03009846 error->pipe[i].cpu_transcoder = cpu_transcoder;
Paulo Zanoni702e7a52012-10-23 18:29:59 -02009847
Paulo Zanonia18c4c32013-03-06 20:03:12 -03009848 if (INTEL_INFO(dev)->gen <= 6 || IS_VALLEYVIEW(dev)) {
9849 error->cursor[i].control = I915_READ(CURCNTR(i));
9850 error->cursor[i].position = I915_READ(CURPOS(i));
9851 error->cursor[i].base = I915_READ(CURBASE(i));
9852 } else {
9853 error->cursor[i].control = I915_READ(CURCNTR_IVB(i));
9854 error->cursor[i].position = I915_READ(CURPOS_IVB(i));
9855 error->cursor[i].base = I915_READ(CURBASE_IVB(i));
9856 }
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00009857
9858 error->plane[i].control = I915_READ(DSPCNTR(i));
9859 error->plane[i].stride = I915_READ(DSPSTRIDE(i));
Paulo Zanoni80ca3782013-03-22 14:20:57 -03009860 if (INTEL_INFO(dev)->gen <= 3) {
Paulo Zanoni51889b32013-03-06 20:03:13 -03009861 error->plane[i].size = I915_READ(DSPSIZE(i));
Paulo Zanoni80ca3782013-03-22 14:20:57 -03009862 error->plane[i].pos = I915_READ(DSPPOS(i));
9863 }
Paulo Zanonica291362013-03-06 20:03:14 -03009864 if (INTEL_INFO(dev)->gen <= 7 && !IS_HASWELL(dev))
9865 error->plane[i].addr = I915_READ(DSPADDR(i));
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00009866 if (INTEL_INFO(dev)->gen >= 4) {
9867 error->plane[i].surface = I915_READ(DSPSURF(i));
9868 error->plane[i].tile_offset = I915_READ(DSPTILEOFF(i));
9869 }
9870
Paulo Zanoni702e7a52012-10-23 18:29:59 -02009871 error->pipe[i].conf = I915_READ(PIPECONF(cpu_transcoder));
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00009872 error->pipe[i].source = I915_READ(PIPESRC(i));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02009873 error->pipe[i].htotal = I915_READ(HTOTAL(cpu_transcoder));
9874 error->pipe[i].hblank = I915_READ(HBLANK(cpu_transcoder));
9875 error->pipe[i].hsync = I915_READ(HSYNC(cpu_transcoder));
9876 error->pipe[i].vtotal = I915_READ(VTOTAL(cpu_transcoder));
9877 error->pipe[i].vblank = I915_READ(VBLANK(cpu_transcoder));
9878 error->pipe[i].vsync = I915_READ(VSYNC(cpu_transcoder));
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00009879 }
9880
Paulo Zanoni12d217c2013-05-03 12:15:38 -03009881 /* In the code above we read the registers without checking if the power
9882 * well was on, so here we have to clear the FPGA_DBG_RM_NOCLAIM bit to
9883 * prevent the next I915_WRITE from detecting it and printing an error
9884 * message. */
9885 if (HAS_POWER_WELL(dev))
9886 I915_WRITE_NOTRACE(FPGA_DBG, FPGA_DBG_RM_NOCLAIM);
9887
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00009888 return error;
9889}
9890
Mika Kuoppalaedc3d882013-05-23 13:55:35 +03009891#define err_printf(e, ...) i915_error_printf(e, __VA_ARGS__)
9892
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00009893void
Mika Kuoppalaedc3d882013-05-23 13:55:35 +03009894intel_display_print_error_state(struct drm_i915_error_state_buf *m,
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00009895 struct drm_device *dev,
9896 struct intel_display_error_state *error)
9897{
9898 int i;
9899
Mika Kuoppalaedc3d882013-05-23 13:55:35 +03009900 err_printf(m, "Num Pipes: %d\n", INTEL_INFO(dev)->num_pipes);
Paulo Zanoniff57f1b2013-05-03 12:15:37 -03009901 if (HAS_POWER_WELL(dev))
Mika Kuoppalaedc3d882013-05-23 13:55:35 +03009902 err_printf(m, "PWR_WELL_CTL2: %08x\n",
Paulo Zanoniff57f1b2013-05-03 12:15:37 -03009903 error->power_well_driver);
Damien Lespiau52331302012-08-15 19:23:25 +01009904 for_each_pipe(i) {
Mika Kuoppalaedc3d882013-05-23 13:55:35 +03009905 err_printf(m, "Pipe [%d]:\n", i);
9906 err_printf(m, " CPU transcoder: %c\n",
Paulo Zanoniff57f1b2013-05-03 12:15:37 -03009907 transcoder_name(error->pipe[i].cpu_transcoder));
Mika Kuoppalaedc3d882013-05-23 13:55:35 +03009908 err_printf(m, " CONF: %08x\n", error->pipe[i].conf);
9909 err_printf(m, " SRC: %08x\n", error->pipe[i].source);
9910 err_printf(m, " HTOTAL: %08x\n", error->pipe[i].htotal);
9911 err_printf(m, " HBLANK: %08x\n", error->pipe[i].hblank);
9912 err_printf(m, " HSYNC: %08x\n", error->pipe[i].hsync);
9913 err_printf(m, " VTOTAL: %08x\n", error->pipe[i].vtotal);
9914 err_printf(m, " VBLANK: %08x\n", error->pipe[i].vblank);
9915 err_printf(m, " VSYNC: %08x\n", error->pipe[i].vsync);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00009916
Mika Kuoppalaedc3d882013-05-23 13:55:35 +03009917 err_printf(m, "Plane [%d]:\n", i);
9918 err_printf(m, " CNTR: %08x\n", error->plane[i].control);
9919 err_printf(m, " STRIDE: %08x\n", error->plane[i].stride);
Paulo Zanoni80ca3782013-03-22 14:20:57 -03009920 if (INTEL_INFO(dev)->gen <= 3) {
Mika Kuoppalaedc3d882013-05-23 13:55:35 +03009921 err_printf(m, " SIZE: %08x\n", error->plane[i].size);
9922 err_printf(m, " POS: %08x\n", error->plane[i].pos);
Paulo Zanoni80ca3782013-03-22 14:20:57 -03009923 }
Paulo Zanoni4b71a572013-03-22 14:19:21 -03009924 if (INTEL_INFO(dev)->gen <= 7 && !IS_HASWELL(dev))
Mika Kuoppalaedc3d882013-05-23 13:55:35 +03009925 err_printf(m, " ADDR: %08x\n", error->plane[i].addr);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00009926 if (INTEL_INFO(dev)->gen >= 4) {
Mika Kuoppalaedc3d882013-05-23 13:55:35 +03009927 err_printf(m, " SURF: %08x\n", error->plane[i].surface);
9928 err_printf(m, " TILEOFF: %08x\n", error->plane[i].tile_offset);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00009929 }
9930
Mika Kuoppalaedc3d882013-05-23 13:55:35 +03009931 err_printf(m, "Cursor [%d]:\n", i);
9932 err_printf(m, " CNTR: %08x\n", error->cursor[i].control);
9933 err_printf(m, " POS: %08x\n", error->cursor[i].position);
9934 err_printf(m, " BASE: %08x\n", error->cursor[i].base);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00009935 }
9936}
9937#endif