blob: fb1b6184ddf2edfd9016dc0aebcc13ff2a39adac [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
Chon Ming Leeef9348c2014-04-09 13:28:18 +030044#define DIV_ROUND_CLOSEST_ULL(ll, d) \
45 ({ unsigned long long _tmp = (ll)+(d)/2; do_div(_tmp, d); _tmp; })
46
Daniel Vetter3dec0092010-08-20 21:40:52 +020047static void intel_increase_pllclock(struct drm_crtc *crtc);
Chris Wilson6b383a72010-09-13 13:54:26 +010048static void intel_crtc_update_cursor(struct drm_crtc *crtc, bool on);
Jesse Barnes79e53942008-11-07 14:24:08 -080049
Jesse Barnesf1f644d2013-06-27 00:39:25 +030050static void i9xx_crtc_clock_get(struct intel_crtc *crtc,
51 struct intel_crtc_config *pipe_config);
Ville Syrjälä18442d02013-09-13 16:00:08 +030052static void ironlake_pch_clock_get(struct intel_crtc *crtc,
53 struct intel_crtc_config *pipe_config);
Jesse Barnesf1f644d2013-06-27 00:39:25 +030054
Damien Lespiaue7457a92013-08-08 22:28:59 +010055static int intel_set_mode(struct drm_crtc *crtc, struct drm_display_mode *mode,
56 int x, int y, struct drm_framebuffer *old_fb);
Jesse Barneseb1bfe82014-02-12 12:26:25 -080057static int intel_framebuffer_init(struct drm_device *dev,
58 struct intel_framebuffer *ifb,
59 struct drm_mode_fb_cmd2 *mode_cmd,
60 struct drm_i915_gem_object *obj);
Daniel Vetter5b18e572014-04-24 23:55:06 +020061static void intel_dp_set_m_n(struct intel_crtc *crtc);
62static void i9xx_set_pipeconf(struct intel_crtc *intel_crtc);
63static void intel_set_pipe_timings(struct intel_crtc *intel_crtc);
Daniel Vetter29407aa2014-04-24 23:55:08 +020064static void intel_cpu_transcoder_set_m_n(struct intel_crtc *crtc,
65 struct intel_link_m_n *m_n);
66static void ironlake_set_pipeconf(struct drm_crtc *crtc);
Daniel Vetter229fca92014-04-24 23:55:09 +020067static void haswell_set_pipeconf(struct drm_crtc *crtc);
68static void intel_set_pipe_csc(struct drm_crtc *crtc);
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +020069static void vlv_prepare_pll(struct intel_crtc *crtc);
Damien Lespiaue7457a92013-08-08 22:28:59 +010070
Jesse Barnes79e53942008-11-07 14:24:08 -080071typedef struct {
Akshay Joshi0206e352011-08-16 15:34:10 -040072 int min, max;
Jesse Barnes79e53942008-11-07 14:24:08 -080073} intel_range_t;
74
75typedef struct {
Akshay Joshi0206e352011-08-16 15:34:10 -040076 int dot_limit;
77 int p2_slow, p2_fast;
Jesse Barnes79e53942008-11-07 14:24:08 -080078} intel_p2_t;
79
Ma Lingd4906092009-03-18 20:13:27 +080080typedef struct intel_limit intel_limit_t;
81struct intel_limit {
Akshay Joshi0206e352011-08-16 15:34:10 -040082 intel_range_t dot, vco, n, m, m1, m2, p, p1;
83 intel_p2_t p2;
Ma Lingd4906092009-03-18 20:13:27 +080084};
Jesse Barnes79e53942008-11-07 14:24:08 -080085
Daniel Vetterd2acd212012-10-20 20:57:43 +020086int
87intel_pch_rawclk(struct drm_device *dev)
88{
89 struct drm_i915_private *dev_priv = dev->dev_private;
90
91 WARN_ON(!HAS_PCH_SPLIT(dev));
92
93 return I915_READ(PCH_RAWCLK_FREQ) & RAWCLK_FREQ_MASK;
94}
95
Chris Wilson021357a2010-09-07 20:54:59 +010096static inline u32 /* units of 100MHz */
97intel_fdi_link_freq(struct drm_device *dev)
98{
Chris Wilson8b99e682010-10-13 09:59:17 +010099 if (IS_GEN5(dev)) {
100 struct drm_i915_private *dev_priv = dev->dev_private;
101 return (I915_READ(FDI_PLL_BIOS_0) & FDI_PLL_FB_CLOCK_MASK) + 2;
102 } else
103 return 27;
Chris Wilson021357a2010-09-07 20:54:59 +0100104}
105
Daniel Vetter5d536e22013-07-06 12:52:06 +0200106static const intel_limit_t intel_limits_i8xx_dac = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400107 .dot = { .min = 25000, .max = 350000 },
Ville Syrjälä9c333712013-12-09 18:54:17 +0200108 .vco = { .min = 908000, .max = 1512000 },
Ville Syrjälä91dbe5f2013-12-09 18:54:14 +0200109 .n = { .min = 2, .max = 16 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400110 .m = { .min = 96, .max = 140 },
111 .m1 = { .min = 18, .max = 26 },
112 .m2 = { .min = 6, .max = 16 },
113 .p = { .min = 4, .max = 128 },
114 .p1 = { .min = 2, .max = 33 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700115 .p2 = { .dot_limit = 165000,
116 .p2_slow = 4, .p2_fast = 2 },
Keith Packarde4b36692009-06-05 19:22:17 -0700117};
118
Daniel Vetter5d536e22013-07-06 12:52:06 +0200119static const intel_limit_t intel_limits_i8xx_dvo = {
120 .dot = { .min = 25000, .max = 350000 },
Ville Syrjälä9c333712013-12-09 18:54:17 +0200121 .vco = { .min = 908000, .max = 1512000 },
Ville Syrjälä91dbe5f2013-12-09 18:54:14 +0200122 .n = { .min = 2, .max = 16 },
Daniel Vetter5d536e22013-07-06 12:52:06 +0200123 .m = { .min = 96, .max = 140 },
124 .m1 = { .min = 18, .max = 26 },
125 .m2 = { .min = 6, .max = 16 },
126 .p = { .min = 4, .max = 128 },
127 .p1 = { .min = 2, .max = 33 },
128 .p2 = { .dot_limit = 165000,
129 .p2_slow = 4, .p2_fast = 4 },
130};
131
Keith Packarde4b36692009-06-05 19:22:17 -0700132static const intel_limit_t intel_limits_i8xx_lvds = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400133 .dot = { .min = 25000, .max = 350000 },
Ville Syrjälä9c333712013-12-09 18:54:17 +0200134 .vco = { .min = 908000, .max = 1512000 },
Ville Syrjälä91dbe5f2013-12-09 18:54:14 +0200135 .n = { .min = 2, .max = 16 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400136 .m = { .min = 96, .max = 140 },
137 .m1 = { .min = 18, .max = 26 },
138 .m2 = { .min = 6, .max = 16 },
139 .p = { .min = 4, .max = 128 },
140 .p1 = { .min = 1, .max = 6 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700141 .p2 = { .dot_limit = 165000,
142 .p2_slow = 14, .p2_fast = 7 },
Keith Packarde4b36692009-06-05 19:22:17 -0700143};
Eric Anholt273e27c2011-03-30 13:01:10 -0700144
Keith Packarde4b36692009-06-05 19:22:17 -0700145static const intel_limit_t intel_limits_i9xx_sdvo = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400146 .dot = { .min = 20000, .max = 400000 },
147 .vco = { .min = 1400000, .max = 2800000 },
148 .n = { .min = 1, .max = 6 },
149 .m = { .min = 70, .max = 120 },
Patrik Jakobsson4f7dfb62013-02-13 22:20:22 +0100150 .m1 = { .min = 8, .max = 18 },
151 .m2 = { .min = 3, .max = 7 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400152 .p = { .min = 5, .max = 80 },
153 .p1 = { .min = 1, .max = 8 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700154 .p2 = { .dot_limit = 200000,
155 .p2_slow = 10, .p2_fast = 5 },
Keith Packarde4b36692009-06-05 19:22:17 -0700156};
157
158static const intel_limit_t intel_limits_i9xx_lvds = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400159 .dot = { .min = 20000, .max = 400000 },
160 .vco = { .min = 1400000, .max = 2800000 },
161 .n = { .min = 1, .max = 6 },
162 .m = { .min = 70, .max = 120 },
Patrik Jakobsson53a7d2d2013-02-13 22:20:21 +0100163 .m1 = { .min = 8, .max = 18 },
164 .m2 = { .min = 3, .max = 7 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400165 .p = { .min = 7, .max = 98 },
166 .p1 = { .min = 1, .max = 8 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700167 .p2 = { .dot_limit = 112000,
168 .p2_slow = 14, .p2_fast = 7 },
Keith Packarde4b36692009-06-05 19:22:17 -0700169};
170
Eric Anholt273e27c2011-03-30 13:01:10 -0700171
Keith Packarde4b36692009-06-05 19:22:17 -0700172static const intel_limit_t intel_limits_g4x_sdvo = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700173 .dot = { .min = 25000, .max = 270000 },
174 .vco = { .min = 1750000, .max = 3500000},
175 .n = { .min = 1, .max = 4 },
176 .m = { .min = 104, .max = 138 },
177 .m1 = { .min = 17, .max = 23 },
178 .m2 = { .min = 5, .max = 11 },
179 .p = { .min = 10, .max = 30 },
180 .p1 = { .min = 1, .max = 3},
181 .p2 = { .dot_limit = 270000,
182 .p2_slow = 10,
183 .p2_fast = 10
Ma Ling044c7c42009-03-18 20:13:23 +0800184 },
Keith Packarde4b36692009-06-05 19:22:17 -0700185};
186
187static const intel_limit_t intel_limits_g4x_hdmi = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700188 .dot = { .min = 22000, .max = 400000 },
189 .vco = { .min = 1750000, .max = 3500000},
190 .n = { .min = 1, .max = 4 },
191 .m = { .min = 104, .max = 138 },
192 .m1 = { .min = 16, .max = 23 },
193 .m2 = { .min = 5, .max = 11 },
194 .p = { .min = 5, .max = 80 },
195 .p1 = { .min = 1, .max = 8},
196 .p2 = { .dot_limit = 165000,
197 .p2_slow = 10, .p2_fast = 5 },
Keith Packarde4b36692009-06-05 19:22:17 -0700198};
199
200static const intel_limit_t intel_limits_g4x_single_channel_lvds = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700201 .dot = { .min = 20000, .max = 115000 },
202 .vco = { .min = 1750000, .max = 3500000 },
203 .n = { .min = 1, .max = 3 },
204 .m = { .min = 104, .max = 138 },
205 .m1 = { .min = 17, .max = 23 },
206 .m2 = { .min = 5, .max = 11 },
207 .p = { .min = 28, .max = 112 },
208 .p1 = { .min = 2, .max = 8 },
209 .p2 = { .dot_limit = 0,
210 .p2_slow = 14, .p2_fast = 14
Ma Ling044c7c42009-03-18 20:13:23 +0800211 },
Keith Packarde4b36692009-06-05 19:22:17 -0700212};
213
214static const intel_limit_t intel_limits_g4x_dual_channel_lvds = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700215 .dot = { .min = 80000, .max = 224000 },
216 .vco = { .min = 1750000, .max = 3500000 },
217 .n = { .min = 1, .max = 3 },
218 .m = { .min = 104, .max = 138 },
219 .m1 = { .min = 17, .max = 23 },
220 .m2 = { .min = 5, .max = 11 },
221 .p = { .min = 14, .max = 42 },
222 .p1 = { .min = 2, .max = 6 },
223 .p2 = { .dot_limit = 0,
224 .p2_slow = 7, .p2_fast = 7
Ma Ling044c7c42009-03-18 20:13:23 +0800225 },
Keith Packarde4b36692009-06-05 19:22:17 -0700226};
227
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500228static const intel_limit_t intel_limits_pineview_sdvo = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400229 .dot = { .min = 20000, .max = 400000},
230 .vco = { .min = 1700000, .max = 3500000 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700231 /* Pineview's Ncounter is a ring counter */
Akshay Joshi0206e352011-08-16 15:34:10 -0400232 .n = { .min = 3, .max = 6 },
233 .m = { .min = 2, .max = 256 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700234 /* Pineview only has one combined m divider, which we treat as m2. */
Akshay Joshi0206e352011-08-16 15:34:10 -0400235 .m1 = { .min = 0, .max = 0 },
236 .m2 = { .min = 0, .max = 254 },
237 .p = { .min = 5, .max = 80 },
238 .p1 = { .min = 1, .max = 8 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700239 .p2 = { .dot_limit = 200000,
240 .p2_slow = 10, .p2_fast = 5 },
Keith Packarde4b36692009-06-05 19:22:17 -0700241};
242
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500243static const intel_limit_t intel_limits_pineview_lvds = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400244 .dot = { .min = 20000, .max = 400000 },
245 .vco = { .min = 1700000, .max = 3500000 },
246 .n = { .min = 3, .max = 6 },
247 .m = { .min = 2, .max = 256 },
248 .m1 = { .min = 0, .max = 0 },
249 .m2 = { .min = 0, .max = 254 },
250 .p = { .min = 7, .max = 112 },
251 .p1 = { .min = 1, .max = 8 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700252 .p2 = { .dot_limit = 112000,
253 .p2_slow = 14, .p2_fast = 14 },
Keith Packarde4b36692009-06-05 19:22:17 -0700254};
255
Eric Anholt273e27c2011-03-30 13:01:10 -0700256/* Ironlake / Sandybridge
257 *
258 * We calculate clock using (register_value + 2) for N/M1/M2, so here
259 * the range value for them is (actual_value - 2).
260 */
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800261static const intel_limit_t intel_limits_ironlake_dac = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700262 .dot = { .min = 25000, .max = 350000 },
263 .vco = { .min = 1760000, .max = 3510000 },
264 .n = { .min = 1, .max = 5 },
265 .m = { .min = 79, .max = 127 },
266 .m1 = { .min = 12, .max = 22 },
267 .m2 = { .min = 5, .max = 9 },
268 .p = { .min = 5, .max = 80 },
269 .p1 = { .min = 1, .max = 8 },
270 .p2 = { .dot_limit = 225000,
271 .p2_slow = 10, .p2_fast = 5 },
Keith Packarde4b36692009-06-05 19:22:17 -0700272};
273
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800274static const intel_limit_t intel_limits_ironlake_single_lvds = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700275 .dot = { .min = 25000, .max = 350000 },
276 .vco = { .min = 1760000, .max = 3510000 },
277 .n = { .min = 1, .max = 3 },
278 .m = { .min = 79, .max = 118 },
279 .m1 = { .min = 12, .max = 22 },
280 .m2 = { .min = 5, .max = 9 },
281 .p = { .min = 28, .max = 112 },
282 .p1 = { .min = 2, .max = 8 },
283 .p2 = { .dot_limit = 225000,
284 .p2_slow = 14, .p2_fast = 14 },
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800285};
286
287static const intel_limit_t intel_limits_ironlake_dual_lvds = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700288 .dot = { .min = 25000, .max = 350000 },
289 .vco = { .min = 1760000, .max = 3510000 },
290 .n = { .min = 1, .max = 3 },
291 .m = { .min = 79, .max = 127 },
292 .m1 = { .min = 12, .max = 22 },
293 .m2 = { .min = 5, .max = 9 },
294 .p = { .min = 14, .max = 56 },
295 .p1 = { .min = 2, .max = 8 },
296 .p2 = { .dot_limit = 225000,
297 .p2_slow = 7, .p2_fast = 7 },
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800298};
299
Eric Anholt273e27c2011-03-30 13:01:10 -0700300/* LVDS 100mhz refclk limits. */
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800301static const intel_limit_t intel_limits_ironlake_single_lvds_100m = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700302 .dot = { .min = 25000, .max = 350000 },
303 .vco = { .min = 1760000, .max = 3510000 },
304 .n = { .min = 1, .max = 2 },
305 .m = { .min = 79, .max = 126 },
306 .m1 = { .min = 12, .max = 22 },
307 .m2 = { .min = 5, .max = 9 },
308 .p = { .min = 28, .max = 112 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400309 .p1 = { .min = 2, .max = 8 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700310 .p2 = { .dot_limit = 225000,
311 .p2_slow = 14, .p2_fast = 14 },
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800312};
313
314static const intel_limit_t intel_limits_ironlake_dual_lvds_100m = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700315 .dot = { .min = 25000, .max = 350000 },
316 .vco = { .min = 1760000, .max = 3510000 },
317 .n = { .min = 1, .max = 3 },
318 .m = { .min = 79, .max = 126 },
319 .m1 = { .min = 12, .max = 22 },
320 .m2 = { .min = 5, .max = 9 },
321 .p = { .min = 14, .max = 42 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400322 .p1 = { .min = 2, .max = 6 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700323 .p2 = { .dot_limit = 225000,
324 .p2_slow = 7, .p2_fast = 7 },
Zhao Yakui45476682009-12-31 16:06:04 +0800325};
326
Ville Syrjälädc730512013-09-24 21:26:30 +0300327static const intel_limit_t intel_limits_vlv = {
Ville Syrjäläf01b7962013-09-27 16:55:49 +0300328 /*
329 * These are the data rate limits (measured in fast clocks)
330 * since those are the strictest limits we have. The fast
331 * clock and actual rate limits are more relaxed, so checking
332 * them would make no difference.
333 */
334 .dot = { .min = 25000 * 5, .max = 270000 * 5 },
Daniel Vetter75e53982013-04-18 21:10:43 +0200335 .vco = { .min = 4000000, .max = 6000000 },
Jesse Barnesa0c4da22012-06-15 11:55:13 -0700336 .n = { .min = 1, .max = 7 },
Jesse Barnesa0c4da22012-06-15 11:55:13 -0700337 .m1 = { .min = 2, .max = 3 },
338 .m2 = { .min = 11, .max = 156 },
Ville Syrjäläb99ab662013-09-24 21:26:26 +0300339 .p1 = { .min = 2, .max = 3 },
Ville Syrjälä5fdc9c492013-09-24 21:26:29 +0300340 .p2 = { .p2_slow = 2, .p2_fast = 20 }, /* slow=min, fast=max */
Jesse Barnesa0c4da22012-06-15 11:55:13 -0700341};
342
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300343static const intel_limit_t intel_limits_chv = {
344 /*
345 * These are the data rate limits (measured in fast clocks)
346 * since those are the strictest limits we have. The fast
347 * clock and actual rate limits are more relaxed, so checking
348 * them would make no difference.
349 */
350 .dot = { .min = 25000 * 5, .max = 540000 * 5},
351 .vco = { .min = 4860000, .max = 6700000 },
352 .n = { .min = 1, .max = 1 },
353 .m1 = { .min = 2, .max = 2 },
354 .m2 = { .min = 24 << 22, .max = 175 << 22 },
355 .p1 = { .min = 2, .max = 4 },
356 .p2 = { .p2_slow = 1, .p2_fast = 14 },
357};
358
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300359static void vlv_clock(int refclk, intel_clock_t *clock)
360{
361 clock->m = clock->m1 * clock->m2;
362 clock->p = clock->p1 * clock->p2;
Ville Syrjäläed5ca772013-12-02 19:00:45 +0200363 if (WARN_ON(clock->n == 0 || clock->p == 0))
364 return;
Ville Syrjäläfb03ac02013-10-14 14:50:30 +0300365 clock->vco = DIV_ROUND_CLOSEST(refclk * clock->m, clock->n);
366 clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p);
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300367}
368
Paulo Zanonie0638cd2013-09-24 13:52:54 -0300369/**
370 * Returns whether any output on the specified pipe is of the specified type
371 */
372static bool intel_pipe_has_type(struct drm_crtc *crtc, int type)
373{
374 struct drm_device *dev = crtc->dev;
375 struct intel_encoder *encoder;
376
377 for_each_encoder_on_crtc(dev, crtc, encoder)
378 if (encoder->type == type)
379 return true;
380
381 return false;
382}
383
Chris Wilson1b894b52010-12-14 20:04:54 +0000384static const intel_limit_t *intel_ironlake_limit(struct drm_crtc *crtc,
385 int refclk)
Zhenyu Wang2c072452009-06-05 15:38:42 +0800386{
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800387 struct drm_device *dev = crtc->dev;
Zhenyu Wang2c072452009-06-05 15:38:42 +0800388 const intel_limit_t *limit;
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800389
390 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
Daniel Vetter1974cad2012-11-26 17:22:09 +0100391 if (intel_is_dual_link_lvds(dev)) {
Chris Wilson1b894b52010-12-14 20:04:54 +0000392 if (refclk == 100000)
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800393 limit = &intel_limits_ironlake_dual_lvds_100m;
394 else
395 limit = &intel_limits_ironlake_dual_lvds;
396 } else {
Chris Wilson1b894b52010-12-14 20:04:54 +0000397 if (refclk == 100000)
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800398 limit = &intel_limits_ironlake_single_lvds_100m;
399 else
400 limit = &intel_limits_ironlake_single_lvds;
401 }
Daniel Vetterc6bb3532013-04-19 11:14:33 +0200402 } else
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800403 limit = &intel_limits_ironlake_dac;
Zhenyu Wang2c072452009-06-05 15:38:42 +0800404
405 return limit;
406}
407
Ma Ling044c7c42009-03-18 20:13:23 +0800408static const intel_limit_t *intel_g4x_limit(struct drm_crtc *crtc)
409{
410 struct drm_device *dev = crtc->dev;
Ma Ling044c7c42009-03-18 20:13:23 +0800411 const intel_limit_t *limit;
412
413 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
Daniel Vetter1974cad2012-11-26 17:22:09 +0100414 if (intel_is_dual_link_lvds(dev))
Keith Packarde4b36692009-06-05 19:22:17 -0700415 limit = &intel_limits_g4x_dual_channel_lvds;
Ma Ling044c7c42009-03-18 20:13:23 +0800416 else
Keith Packarde4b36692009-06-05 19:22:17 -0700417 limit = &intel_limits_g4x_single_channel_lvds;
Ma Ling044c7c42009-03-18 20:13:23 +0800418 } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI) ||
419 intel_pipe_has_type(crtc, INTEL_OUTPUT_ANALOG)) {
Keith Packarde4b36692009-06-05 19:22:17 -0700420 limit = &intel_limits_g4x_hdmi;
Ma Ling044c7c42009-03-18 20:13:23 +0800421 } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_SDVO)) {
Keith Packarde4b36692009-06-05 19:22:17 -0700422 limit = &intel_limits_g4x_sdvo;
Ma Ling044c7c42009-03-18 20:13:23 +0800423 } else /* The option is for other outputs */
Keith Packarde4b36692009-06-05 19:22:17 -0700424 limit = &intel_limits_i9xx_sdvo;
Ma Ling044c7c42009-03-18 20:13:23 +0800425
426 return limit;
427}
428
Chris Wilson1b894b52010-12-14 20:04:54 +0000429static const intel_limit_t *intel_limit(struct drm_crtc *crtc, int refclk)
Jesse Barnes79e53942008-11-07 14:24:08 -0800430{
431 struct drm_device *dev = crtc->dev;
432 const intel_limit_t *limit;
433
Eric Anholtbad720f2009-10-22 16:11:14 -0700434 if (HAS_PCH_SPLIT(dev))
Chris Wilson1b894b52010-12-14 20:04:54 +0000435 limit = intel_ironlake_limit(crtc, refclk);
Zhenyu Wang2c072452009-06-05 15:38:42 +0800436 else if (IS_G4X(dev)) {
Ma Ling044c7c42009-03-18 20:13:23 +0800437 limit = intel_g4x_limit(crtc);
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500438 } else if (IS_PINEVIEW(dev)) {
Shaohua Li21778322009-02-23 15:19:16 +0800439 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS))
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500440 limit = &intel_limits_pineview_lvds;
Shaohua Li21778322009-02-23 15:19:16 +0800441 else
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500442 limit = &intel_limits_pineview_sdvo;
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300443 } else if (IS_CHERRYVIEW(dev)) {
444 limit = &intel_limits_chv;
Jesse Barnesa0c4da22012-06-15 11:55:13 -0700445 } else if (IS_VALLEYVIEW(dev)) {
Ville Syrjälädc730512013-09-24 21:26:30 +0300446 limit = &intel_limits_vlv;
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100447 } else if (!IS_GEN2(dev)) {
448 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS))
449 limit = &intel_limits_i9xx_lvds;
450 else
451 limit = &intel_limits_i9xx_sdvo;
Jesse Barnes79e53942008-11-07 14:24:08 -0800452 } else {
453 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS))
Keith Packarde4b36692009-06-05 19:22:17 -0700454 limit = &intel_limits_i8xx_lvds;
Daniel Vetter5d536e22013-07-06 12:52:06 +0200455 else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DVO))
Keith Packarde4b36692009-06-05 19:22:17 -0700456 limit = &intel_limits_i8xx_dvo;
Daniel Vetter5d536e22013-07-06 12:52:06 +0200457 else
458 limit = &intel_limits_i8xx_dac;
Jesse Barnes79e53942008-11-07 14:24:08 -0800459 }
460 return limit;
461}
462
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500463/* m1 is reserved as 0 in Pineview, n is a ring counter */
464static void pineview_clock(int refclk, intel_clock_t *clock)
Jesse Barnes79e53942008-11-07 14:24:08 -0800465{
Shaohua Li21778322009-02-23 15:19:16 +0800466 clock->m = clock->m2 + 2;
467 clock->p = clock->p1 * clock->p2;
Ville Syrjäläed5ca772013-12-02 19:00:45 +0200468 if (WARN_ON(clock->n == 0 || clock->p == 0))
469 return;
Ville Syrjäläfb03ac02013-10-14 14:50:30 +0300470 clock->vco = DIV_ROUND_CLOSEST(refclk * clock->m, clock->n);
471 clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p);
Shaohua Li21778322009-02-23 15:19:16 +0800472}
473
Daniel Vetter7429e9d2013-04-20 17:19:46 +0200474static uint32_t i9xx_dpll_compute_m(struct dpll *dpll)
475{
476 return 5 * (dpll->m1 + 2) + (dpll->m2 + 2);
477}
478
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200479static void i9xx_clock(int refclk, intel_clock_t *clock)
Shaohua Li21778322009-02-23 15:19:16 +0800480{
Daniel Vetter7429e9d2013-04-20 17:19:46 +0200481 clock->m = i9xx_dpll_compute_m(clock);
Jesse Barnes79e53942008-11-07 14:24:08 -0800482 clock->p = clock->p1 * clock->p2;
Ville Syrjäläed5ca772013-12-02 19:00:45 +0200483 if (WARN_ON(clock->n + 2 == 0 || clock->p == 0))
484 return;
Ville Syrjäläfb03ac02013-10-14 14:50:30 +0300485 clock->vco = DIV_ROUND_CLOSEST(refclk * clock->m, clock->n + 2);
486 clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p);
Jesse Barnes79e53942008-11-07 14:24:08 -0800487}
488
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300489static void chv_clock(int refclk, intel_clock_t *clock)
490{
491 clock->m = clock->m1 * clock->m2;
492 clock->p = clock->p1 * clock->p2;
493 if (WARN_ON(clock->n == 0 || clock->p == 0))
494 return;
495 clock->vco = DIV_ROUND_CLOSEST_ULL((uint64_t)refclk * clock->m,
496 clock->n << 22);
497 clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p);
498}
499
Jesse Barnes7c04d1d2009-02-23 15:36:40 -0800500#define INTELPllInvalid(s) do { /* DRM_DEBUG(s); */ return false; } while (0)
Jesse Barnes79e53942008-11-07 14:24:08 -0800501/**
502 * Returns whether the given set of divisors are valid for a given refclk with
503 * the given connectors.
504 */
505
Chris Wilson1b894b52010-12-14 20:04:54 +0000506static bool intel_PLL_is_valid(struct drm_device *dev,
507 const intel_limit_t *limit,
508 const intel_clock_t *clock)
Jesse Barnes79e53942008-11-07 14:24:08 -0800509{
Ville Syrjäläf01b7962013-09-27 16:55:49 +0300510 if (clock->n < limit->n.min || limit->n.max < clock->n)
511 INTELPllInvalid("n out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800512 if (clock->p1 < limit->p1.min || limit->p1.max < clock->p1)
Akshay Joshi0206e352011-08-16 15:34:10 -0400513 INTELPllInvalid("p1 out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800514 if (clock->m2 < limit->m2.min || limit->m2.max < clock->m2)
Akshay Joshi0206e352011-08-16 15:34:10 -0400515 INTELPllInvalid("m2 out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800516 if (clock->m1 < limit->m1.min || limit->m1.max < clock->m1)
Akshay Joshi0206e352011-08-16 15:34:10 -0400517 INTELPllInvalid("m1 out of range\n");
Ville Syrjäläf01b7962013-09-27 16:55:49 +0300518
519 if (!IS_PINEVIEW(dev) && !IS_VALLEYVIEW(dev))
520 if (clock->m1 <= clock->m2)
521 INTELPllInvalid("m1 <= m2\n");
522
523 if (!IS_VALLEYVIEW(dev)) {
524 if (clock->p < limit->p.min || limit->p.max < clock->p)
525 INTELPllInvalid("p out of range\n");
526 if (clock->m < limit->m.min || limit->m.max < clock->m)
527 INTELPllInvalid("m out of range\n");
528 }
529
Jesse Barnes79e53942008-11-07 14:24:08 -0800530 if (clock->vco < limit->vco.min || limit->vco.max < clock->vco)
Akshay Joshi0206e352011-08-16 15:34:10 -0400531 INTELPllInvalid("vco out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800532 /* XXX: We may need to be checking "Dot clock" depending on the multiplier,
533 * connector, etc., rather than just a single range.
534 */
535 if (clock->dot < limit->dot.min || limit->dot.max < clock->dot)
Akshay Joshi0206e352011-08-16 15:34:10 -0400536 INTELPllInvalid("dot out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800537
538 return true;
539}
540
Ma Lingd4906092009-03-18 20:13:27 +0800541static bool
Daniel Vetteree9300b2013-06-03 22:40:22 +0200542i9xx_find_best_dpll(const intel_limit_t *limit, struct drm_crtc *crtc,
Sean Paulcec2f352012-01-10 15:09:36 -0800543 int target, int refclk, intel_clock_t *match_clock,
544 intel_clock_t *best_clock)
Jesse Barnes79e53942008-11-07 14:24:08 -0800545{
546 struct drm_device *dev = crtc->dev;
Jesse Barnes79e53942008-11-07 14:24:08 -0800547 intel_clock_t clock;
Jesse Barnes79e53942008-11-07 14:24:08 -0800548 int err = target;
549
Daniel Vettera210b022012-11-26 17:22:08 +0100550 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
Jesse Barnes79e53942008-11-07 14:24:08 -0800551 /*
Daniel Vettera210b022012-11-26 17:22:08 +0100552 * For LVDS just rely on its current settings for dual-channel.
553 * We haven't figured out how to reliably set up different
554 * single/dual channel state, if we even can.
Jesse Barnes79e53942008-11-07 14:24:08 -0800555 */
Daniel Vetter1974cad2012-11-26 17:22:09 +0100556 if (intel_is_dual_link_lvds(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -0800557 clock.p2 = limit->p2.p2_fast;
558 else
559 clock.p2 = limit->p2.p2_slow;
560 } else {
561 if (target < limit->p2.dot_limit)
562 clock.p2 = limit->p2.p2_slow;
563 else
564 clock.p2 = limit->p2.p2_fast;
565 }
566
Akshay Joshi0206e352011-08-16 15:34:10 -0400567 memset(best_clock, 0, sizeof(*best_clock));
Jesse Barnes79e53942008-11-07 14:24:08 -0800568
Zhao Yakui42158662009-11-20 11:24:18 +0800569 for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max;
570 clock.m1++) {
571 for (clock.m2 = limit->m2.min;
572 clock.m2 <= limit->m2.max; clock.m2++) {
Daniel Vetterc0efc382013-06-03 20:56:24 +0200573 if (clock.m2 >= clock.m1)
Zhao Yakui42158662009-11-20 11:24:18 +0800574 break;
575 for (clock.n = limit->n.min;
576 clock.n <= limit->n.max; clock.n++) {
577 for (clock.p1 = limit->p1.min;
578 clock.p1 <= limit->p1.max; clock.p1++) {
Jesse Barnes79e53942008-11-07 14:24:08 -0800579 int this_err;
580
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200581 i9xx_clock(refclk, &clock);
Chris Wilson1b894b52010-12-14 20:04:54 +0000582 if (!intel_PLL_is_valid(dev, limit,
583 &clock))
Jesse Barnes79e53942008-11-07 14:24:08 -0800584 continue;
Sean Paulcec2f352012-01-10 15:09:36 -0800585 if (match_clock &&
586 clock.p != match_clock->p)
587 continue;
Jesse Barnes79e53942008-11-07 14:24:08 -0800588
589 this_err = abs(clock.dot - target);
590 if (this_err < err) {
591 *best_clock = clock;
592 err = this_err;
593 }
594 }
595 }
596 }
597 }
598
599 return (err != target);
600}
601
Ma Lingd4906092009-03-18 20:13:27 +0800602static bool
Daniel Vetteree9300b2013-06-03 22:40:22 +0200603pnv_find_best_dpll(const intel_limit_t *limit, struct drm_crtc *crtc,
604 int target, int refclk, intel_clock_t *match_clock,
605 intel_clock_t *best_clock)
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200606{
607 struct drm_device *dev = crtc->dev;
608 intel_clock_t clock;
609 int err = target;
610
611 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
612 /*
613 * For LVDS just rely on its current settings for dual-channel.
614 * We haven't figured out how to reliably set up different
615 * single/dual channel state, if we even can.
616 */
617 if (intel_is_dual_link_lvds(dev))
618 clock.p2 = limit->p2.p2_fast;
619 else
620 clock.p2 = limit->p2.p2_slow;
621 } else {
622 if (target < limit->p2.dot_limit)
623 clock.p2 = limit->p2.p2_slow;
624 else
625 clock.p2 = limit->p2.p2_fast;
626 }
627
628 memset(best_clock, 0, sizeof(*best_clock));
629
630 for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max;
631 clock.m1++) {
632 for (clock.m2 = limit->m2.min;
633 clock.m2 <= limit->m2.max; clock.m2++) {
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200634 for (clock.n = limit->n.min;
635 clock.n <= limit->n.max; clock.n++) {
636 for (clock.p1 = limit->p1.min;
637 clock.p1 <= limit->p1.max; clock.p1++) {
638 int this_err;
639
640 pineview_clock(refclk, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -0800641 if (!intel_PLL_is_valid(dev, limit,
642 &clock))
643 continue;
644 if (match_clock &&
645 clock.p != match_clock->p)
646 continue;
647
648 this_err = abs(clock.dot - target);
649 if (this_err < err) {
650 *best_clock = clock;
651 err = this_err;
652 }
653 }
654 }
655 }
656 }
657
658 return (err != target);
659}
660
Ma Lingd4906092009-03-18 20:13:27 +0800661static bool
Daniel Vetteree9300b2013-06-03 22:40:22 +0200662g4x_find_best_dpll(const intel_limit_t *limit, struct drm_crtc *crtc,
663 int target, int refclk, intel_clock_t *match_clock,
664 intel_clock_t *best_clock)
Ma Lingd4906092009-03-18 20:13:27 +0800665{
666 struct drm_device *dev = crtc->dev;
Ma Lingd4906092009-03-18 20:13:27 +0800667 intel_clock_t clock;
668 int max_n;
669 bool found;
Adam Jackson6ba770d2010-07-02 16:43:30 -0400670 /* approximately equals target * 0.00585 */
671 int err_most = (target >> 8) + (target >> 9);
Ma Lingd4906092009-03-18 20:13:27 +0800672 found = false;
673
674 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
Daniel Vetter1974cad2012-11-26 17:22:09 +0100675 if (intel_is_dual_link_lvds(dev))
Ma Lingd4906092009-03-18 20:13:27 +0800676 clock.p2 = limit->p2.p2_fast;
677 else
678 clock.p2 = limit->p2.p2_slow;
679 } else {
680 if (target < limit->p2.dot_limit)
681 clock.p2 = limit->p2.p2_slow;
682 else
683 clock.p2 = limit->p2.p2_fast;
684 }
685
686 memset(best_clock, 0, sizeof(*best_clock));
687 max_n = limit->n.max;
Gilles Espinassef77f13e2010-03-29 15:41:47 +0200688 /* based on hardware requirement, prefer smaller n to precision */
Ma Lingd4906092009-03-18 20:13:27 +0800689 for (clock.n = limit->n.min; clock.n <= max_n; clock.n++) {
Gilles Espinassef77f13e2010-03-29 15:41:47 +0200690 /* based on hardware requirement, prefere larger m1,m2 */
Ma Lingd4906092009-03-18 20:13:27 +0800691 for (clock.m1 = limit->m1.max;
692 clock.m1 >= limit->m1.min; clock.m1--) {
693 for (clock.m2 = limit->m2.max;
694 clock.m2 >= limit->m2.min; clock.m2--) {
695 for (clock.p1 = limit->p1.max;
696 clock.p1 >= limit->p1.min; clock.p1--) {
697 int this_err;
698
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200699 i9xx_clock(refclk, &clock);
Chris Wilson1b894b52010-12-14 20:04:54 +0000700 if (!intel_PLL_is_valid(dev, limit,
701 &clock))
Ma Lingd4906092009-03-18 20:13:27 +0800702 continue;
Chris Wilson1b894b52010-12-14 20:04:54 +0000703
704 this_err = abs(clock.dot - target);
Ma Lingd4906092009-03-18 20:13:27 +0800705 if (this_err < err_most) {
706 *best_clock = clock;
707 err_most = this_err;
708 max_n = clock.n;
709 found = true;
710 }
711 }
712 }
713 }
714 }
Zhenyu Wang2c072452009-06-05 15:38:42 +0800715 return found;
716}
Ma Lingd4906092009-03-18 20:13:27 +0800717
Zhenyu Wang2c072452009-06-05 15:38:42 +0800718static bool
Daniel Vetteree9300b2013-06-03 22:40:22 +0200719vlv_find_best_dpll(const intel_limit_t *limit, struct drm_crtc *crtc,
720 int target, int refclk, intel_clock_t *match_clock,
721 intel_clock_t *best_clock)
Jesse Barnesa0c4da22012-06-15 11:55:13 -0700722{
Ville Syrjäläf01b7962013-09-27 16:55:49 +0300723 struct drm_device *dev = crtc->dev;
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300724 intel_clock_t clock;
Ville Syrjälä69e4f9002013-09-24 21:26:20 +0300725 unsigned int bestppm = 1000000;
Ville Syrjälä27e639b2013-09-24 21:26:24 +0300726 /* min update 19.2 MHz */
727 int max_n = min(limit->n.max, refclk / 19200);
Ville Syrjälä49e497e2013-09-24 21:26:31 +0300728 bool found = false;
Jesse Barnesa0c4da22012-06-15 11:55:13 -0700729
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300730 target *= 5; /* fast clock */
731
732 memset(best_clock, 0, sizeof(*best_clock));
Jesse Barnesa0c4da22012-06-15 11:55:13 -0700733
734 /* based on hardware requirement, prefer smaller n to precision */
Ville Syrjälä27e639b2013-09-24 21:26:24 +0300735 for (clock.n = limit->n.min; clock.n <= max_n; clock.n++) {
Ville Syrjälä811bbf02013-09-24 21:26:25 +0300736 for (clock.p1 = limit->p1.max; clock.p1 >= limit->p1.min; clock.p1--) {
Ville Syrjälä889059d2013-09-24 21:26:27 +0300737 for (clock.p2 = limit->p2.p2_fast; clock.p2 >= limit->p2.p2_slow;
Ville Syrjäläc1a9ae42013-09-24 21:26:23 +0300738 clock.p2 -= clock.p2 > 10 ? 2 : 1) {
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300739 clock.p = clock.p1 * clock.p2;
Jesse Barnesa0c4da22012-06-15 11:55:13 -0700740 /* based on hardware requirement, prefer bigger m1,m2 values */
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300741 for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max; clock.m1++) {
Ville Syrjälä69e4f9002013-09-24 21:26:20 +0300742 unsigned int ppm, diff;
743
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300744 clock.m2 = DIV_ROUND_CLOSEST(target * clock.p * clock.n,
745 refclk * clock.m1);
Ville Syrjälä43b0ac52013-09-24 21:26:18 +0300746
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300747 vlv_clock(refclk, &clock);
748
Ville Syrjäläf01b7962013-09-27 16:55:49 +0300749 if (!intel_PLL_is_valid(dev, limit,
750 &clock))
Ville Syrjälä43b0ac52013-09-24 21:26:18 +0300751 continue;
752
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300753 diff = abs(clock.dot - target);
754 ppm = div_u64(1000000ULL * diff, target);
755
756 if (ppm < 100 && clock.p > best_clock->p) {
Ville Syrjälä43b0ac52013-09-24 21:26:18 +0300757 bestppm = 0;
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300758 *best_clock = clock;
Ville Syrjälä49e497e2013-09-24 21:26:31 +0300759 found = true;
Ville Syrjälä43b0ac52013-09-24 21:26:18 +0300760 }
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300761
Ville Syrjäläc6861222013-09-24 21:26:21 +0300762 if (bestppm >= 10 && ppm < bestppm - 10) {
Ville Syrjälä69e4f9002013-09-24 21:26:20 +0300763 bestppm = ppm;
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300764 *best_clock = clock;
Ville Syrjälä49e497e2013-09-24 21:26:31 +0300765 found = true;
Jesse Barnesa0c4da22012-06-15 11:55:13 -0700766 }
767 }
768 }
769 }
770 }
Jesse Barnesa0c4da22012-06-15 11:55:13 -0700771
Ville Syrjälä49e497e2013-09-24 21:26:31 +0300772 return found;
Jesse Barnesa0c4da22012-06-15 11:55:13 -0700773}
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700774
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300775static bool
776chv_find_best_dpll(const intel_limit_t *limit, struct drm_crtc *crtc,
777 int target, int refclk, intel_clock_t *match_clock,
778 intel_clock_t *best_clock)
779{
780 struct drm_device *dev = crtc->dev;
781 intel_clock_t clock;
782 uint64_t m2;
783 int found = false;
784
785 memset(best_clock, 0, sizeof(*best_clock));
786
787 /*
788 * Based on hardware doc, the n always set to 1, and m1 always
789 * set to 2. If requires to support 200Mhz refclk, we need to
790 * revisit this because n may not 1 anymore.
791 */
792 clock.n = 1, clock.m1 = 2;
793 target *= 5; /* fast clock */
794
795 for (clock.p1 = limit->p1.max; clock.p1 >= limit->p1.min; clock.p1--) {
796 for (clock.p2 = limit->p2.p2_fast;
797 clock.p2 >= limit->p2.p2_slow;
798 clock.p2 -= clock.p2 > 10 ? 2 : 1) {
799
800 clock.p = clock.p1 * clock.p2;
801
802 m2 = DIV_ROUND_CLOSEST_ULL(((uint64_t)target * clock.p *
803 clock.n) << 22, refclk * clock.m1);
804
805 if (m2 > INT_MAX/clock.m1)
806 continue;
807
808 clock.m2 = m2;
809
810 chv_clock(refclk, &clock);
811
812 if (!intel_PLL_is_valid(dev, limit, &clock))
813 continue;
814
815 /* based on hardware requirement, prefer bigger p
816 */
817 if (clock.p > best_clock->p) {
818 *best_clock = clock;
819 found = true;
820 }
821 }
822 }
823
824 return found;
825}
826
Ville Syrjälä20ddf662013-09-04 18:25:25 +0300827bool intel_crtc_active(struct drm_crtc *crtc)
828{
829 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
830
831 /* Be paranoid as we can arrive here with only partial
832 * state retrieved from the hardware during setup.
833 *
Damien Lespiau241bfc32013-09-25 16:45:37 +0100834 * We can ditch the adjusted_mode.crtc_clock check as soon
Ville Syrjälä20ddf662013-09-04 18:25:25 +0300835 * as Haswell has gained clock readout/fastboot support.
836 *
Dave Airlie66e514c2014-04-03 07:51:54 +1000837 * We can ditch the crtc->primary->fb check as soon as we can
Ville Syrjälä20ddf662013-09-04 18:25:25 +0300838 * properly reconstruct framebuffers.
839 */
Matt Roperf4510a22014-04-01 15:22:40 -0700840 return intel_crtc->active && crtc->primary->fb &&
Damien Lespiau241bfc32013-09-25 16:45:37 +0100841 intel_crtc->config.adjusted_mode.crtc_clock;
Ville Syrjälä20ddf662013-09-04 18:25:25 +0300842}
843
Paulo Zanonia5c961d2012-10-24 15:59:34 -0200844enum transcoder intel_pipe_to_cpu_transcoder(struct drm_i915_private *dev_priv,
845 enum pipe pipe)
846{
847 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
848 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
849
Daniel Vetter3b117c82013-04-17 20:15:07 +0200850 return intel_crtc->config.cpu_transcoder;
Paulo Zanonia5c961d2012-10-24 15:59:34 -0200851}
852
Ville Syrjälä57e22f42013-11-06 13:56:28 -0200853static void g4x_wait_for_vblank(struct drm_device *dev, int pipe)
Paulo Zanonia928d532012-05-04 17:18:15 -0300854{
855 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä57e22f42013-11-06 13:56:28 -0200856 u32 frame, frame_reg = PIPE_FRMCOUNT_GM45(pipe);
Paulo Zanonia928d532012-05-04 17:18:15 -0300857
858 frame = I915_READ(frame_reg);
859
860 if (wait_for(I915_READ_NOTRACE(frame_reg) != frame, 50))
Jesse Barnes93937072014-04-04 16:12:09 -0700861 WARN(1, "vblank wait timed out\n");
Paulo Zanonia928d532012-05-04 17:18:15 -0300862}
863
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700864/**
865 * intel_wait_for_vblank - wait for vblank on a given pipe
866 * @dev: drm device
867 * @pipe: pipe to wait for
868 *
869 * Wait for vblank to occur on a given pipe. Needed for various bits of
870 * mode setting code.
871 */
872void intel_wait_for_vblank(struct drm_device *dev, int pipe)
Jesse Barnes79e53942008-11-07 14:24:08 -0800873{
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700874 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800875 int pipestat_reg = PIPESTAT(pipe);
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700876
Ville Syrjälä57e22f42013-11-06 13:56:28 -0200877 if (IS_G4X(dev) || INTEL_INFO(dev)->gen >= 5) {
878 g4x_wait_for_vblank(dev, pipe);
Paulo Zanonia928d532012-05-04 17:18:15 -0300879 return;
880 }
881
Chris Wilson300387c2010-09-05 20:25:43 +0100882 /* Clear existing vblank status. Note this will clear any other
883 * sticky status fields as well.
884 *
885 * This races with i915_driver_irq_handler() with the result
886 * that either function could miss a vblank event. Here it is not
887 * fatal, as we will either wait upon the next vblank interrupt or
888 * timeout. Generally speaking intel_wait_for_vblank() is only
889 * called during modeset at which time the GPU should be idle and
890 * should *not* be performing page flips and thus not waiting on
891 * vblanks...
892 * Currently, the result of us stealing a vblank from the irq
893 * handler is that a single frame will be skipped during swapbuffers.
894 */
895 I915_WRITE(pipestat_reg,
896 I915_READ(pipestat_reg) | PIPE_VBLANK_INTERRUPT_STATUS);
897
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700898 /* Wait for vblank interrupt bit to set */
Chris Wilson481b6af2010-08-23 17:43:35 +0100899 if (wait_for(I915_READ(pipestat_reg) &
900 PIPE_VBLANK_INTERRUPT_STATUS,
901 50))
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700902 DRM_DEBUG_KMS("vblank wait timed out\n");
903}
904
Ville Syrjäläfbf49ea2013-10-11 14:21:31 +0300905static bool pipe_dsl_stopped(struct drm_device *dev, enum pipe pipe)
906{
907 struct drm_i915_private *dev_priv = dev->dev_private;
908 u32 reg = PIPEDSL(pipe);
909 u32 line1, line2;
910 u32 line_mask;
911
912 if (IS_GEN2(dev))
913 line_mask = DSL_LINEMASK_GEN2;
914 else
915 line_mask = DSL_LINEMASK_GEN3;
916
917 line1 = I915_READ(reg) & line_mask;
918 mdelay(5);
919 line2 = I915_READ(reg) & line_mask;
920
921 return line1 == line2;
922}
923
Keith Packardab7ad7f2010-10-03 00:33:06 -0700924/*
925 * intel_wait_for_pipe_off - wait for pipe to turn off
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700926 * @dev: drm device
927 * @pipe: pipe to wait for
928 *
929 * After disabling a pipe, we can't wait for vblank in the usual way,
930 * spinning on the vblank interrupt status bit, since we won't actually
931 * see an interrupt when the pipe is disabled.
932 *
Keith Packardab7ad7f2010-10-03 00:33:06 -0700933 * On Gen4 and above:
934 * wait for the pipe register state bit to turn off
935 *
936 * Otherwise:
937 * wait for the display line value to settle (it usually
938 * ends up stopping at the start of the next frame).
Chris Wilson58e10eb2010-10-03 10:56:11 +0100939 *
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700940 */
Chris Wilson58e10eb2010-10-03 10:56:11 +0100941void intel_wait_for_pipe_off(struct drm_device *dev, int pipe)
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700942{
943 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni702e7a52012-10-23 18:29:59 -0200944 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
945 pipe);
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700946
Keith Packardab7ad7f2010-10-03 00:33:06 -0700947 if (INTEL_INFO(dev)->gen >= 4) {
Paulo Zanoni702e7a52012-10-23 18:29:59 -0200948 int reg = PIPECONF(cpu_transcoder);
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700949
Keith Packardab7ad7f2010-10-03 00:33:06 -0700950 /* Wait for the Pipe State to go off */
Chris Wilson58e10eb2010-10-03 10:56:11 +0100951 if (wait_for((I915_READ(reg) & I965_PIPECONF_ACTIVE) == 0,
952 100))
Daniel Vetter284637d2012-07-09 09:51:57 +0200953 WARN(1, "pipe_off wait timed out\n");
Keith Packardab7ad7f2010-10-03 00:33:06 -0700954 } else {
Keith Packardab7ad7f2010-10-03 00:33:06 -0700955 /* Wait for the display line to settle */
Ville Syrjäläfbf49ea2013-10-11 14:21:31 +0300956 if (wait_for(pipe_dsl_stopped(dev, pipe), 100))
Daniel Vetter284637d2012-07-09 09:51:57 +0200957 WARN(1, "pipe_off wait timed out\n");
Keith Packardab7ad7f2010-10-03 00:33:06 -0700958 }
Jesse Barnes79e53942008-11-07 14:24:08 -0800959}
960
Damien Lespiaub0ea7d32012-12-13 16:09:00 +0000961/*
962 * ibx_digital_port_connected - is the specified port connected?
963 * @dev_priv: i915 private structure
964 * @port: the port to test
965 *
966 * Returns true if @port is connected, false otherwise.
967 */
968bool ibx_digital_port_connected(struct drm_i915_private *dev_priv,
969 struct intel_digital_port *port)
970{
971 u32 bit;
972
Damien Lespiauc36346e2012-12-13 16:09:03 +0000973 if (HAS_PCH_IBX(dev_priv->dev)) {
Robin Schroereba905b2014-05-18 02:24:50 +0200974 switch (port->port) {
Damien Lespiauc36346e2012-12-13 16:09:03 +0000975 case PORT_B:
976 bit = SDE_PORTB_HOTPLUG;
977 break;
978 case PORT_C:
979 bit = SDE_PORTC_HOTPLUG;
980 break;
981 case PORT_D:
982 bit = SDE_PORTD_HOTPLUG;
983 break;
984 default:
985 return true;
986 }
987 } else {
Robin Schroereba905b2014-05-18 02:24:50 +0200988 switch (port->port) {
Damien Lespiauc36346e2012-12-13 16:09:03 +0000989 case PORT_B:
990 bit = SDE_PORTB_HOTPLUG_CPT;
991 break;
992 case PORT_C:
993 bit = SDE_PORTC_HOTPLUG_CPT;
994 break;
995 case PORT_D:
996 bit = SDE_PORTD_HOTPLUG_CPT;
997 break;
998 default:
999 return true;
1000 }
Damien Lespiaub0ea7d32012-12-13 16:09:00 +00001001 }
1002
1003 return I915_READ(SDEISR) & bit;
1004}
1005
Jesse Barnesb24e7172011-01-04 15:09:30 -08001006static const char *state_string(bool enabled)
1007{
1008 return enabled ? "on" : "off";
1009}
1010
1011/* Only for pre-ILK configs */
Daniel Vetter55607e82013-06-16 21:42:39 +02001012void assert_pll(struct drm_i915_private *dev_priv,
1013 enum pipe pipe, bool state)
Jesse Barnesb24e7172011-01-04 15:09:30 -08001014{
1015 int reg;
1016 u32 val;
1017 bool cur_state;
1018
1019 reg = DPLL(pipe);
1020 val = I915_READ(reg);
1021 cur_state = !!(val & DPLL_VCO_ENABLE);
1022 WARN(cur_state != state,
1023 "PLL state assertion failure (expected %s, current %s)\n",
1024 state_string(state), state_string(cur_state));
1025}
Jesse Barnesb24e7172011-01-04 15:09:30 -08001026
Jani Nikula23538ef2013-08-27 15:12:22 +03001027/* XXX: the dsi pll is shared between MIPI DSI ports */
1028static void assert_dsi_pll(struct drm_i915_private *dev_priv, bool state)
1029{
1030 u32 val;
1031 bool cur_state;
1032
1033 mutex_lock(&dev_priv->dpio_lock);
1034 val = vlv_cck_read(dev_priv, CCK_REG_DSI_PLL_CONTROL);
1035 mutex_unlock(&dev_priv->dpio_lock);
1036
1037 cur_state = val & DSI_PLL_VCO_EN;
1038 WARN(cur_state != state,
1039 "DSI PLL state assertion failure (expected %s, current %s)\n",
1040 state_string(state), state_string(cur_state));
1041}
1042#define assert_dsi_pll_enabled(d) assert_dsi_pll(d, true)
1043#define assert_dsi_pll_disabled(d) assert_dsi_pll(d, false)
1044
Daniel Vetter55607e82013-06-16 21:42:39 +02001045struct intel_shared_dpll *
Daniel Vettere2b78262013-06-07 23:10:03 +02001046intel_crtc_to_shared_dpll(struct intel_crtc *crtc)
Jesse Barnes040484a2011-01-03 12:14:26 -08001047{
Daniel Vettere2b78262013-06-07 23:10:03 +02001048 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
1049
Daniel Vettera43f6e02013-06-07 23:10:32 +02001050 if (crtc->config.shared_dpll < 0)
Daniel Vettere2b78262013-06-07 23:10:03 +02001051 return NULL;
1052
Daniel Vettera43f6e02013-06-07 23:10:32 +02001053 return &dev_priv->shared_dplls[crtc->config.shared_dpll];
Daniel Vettere2b78262013-06-07 23:10:03 +02001054}
1055
Jesse Barnesb24e7172011-01-04 15:09:30 -08001056/* For ILK+ */
Daniel Vetter55607e82013-06-16 21:42:39 +02001057void assert_shared_dpll(struct drm_i915_private *dev_priv,
1058 struct intel_shared_dpll *pll,
1059 bool state)
Jesse Barnes040484a2011-01-03 12:14:26 -08001060{
Jesse Barnes040484a2011-01-03 12:14:26 -08001061 bool cur_state;
Daniel Vetter53589012013-06-05 13:34:16 +02001062 struct intel_dpll_hw_state hw_state;
Jesse Barnes040484a2011-01-03 12:14:26 -08001063
Eugeni Dodonov9d82aa12012-05-09 15:37:17 -03001064 if (HAS_PCH_LPT(dev_priv->dev)) {
1065 DRM_DEBUG_DRIVER("LPT detected: skipping PCH PLL test\n");
1066 return;
1067 }
1068
Chris Wilson92b27b02012-05-20 18:10:50 +01001069 if (WARN (!pll,
Daniel Vetter46edb022013-06-05 13:34:12 +02001070 "asserting DPLL %s with no DPLL\n", state_string(state)))
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001071 return;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001072
Daniel Vetter53589012013-06-05 13:34:16 +02001073 cur_state = pll->get_hw_state(dev_priv, pll, &hw_state);
Chris Wilson92b27b02012-05-20 18:10:50 +01001074 WARN(cur_state != state,
Daniel Vetter53589012013-06-05 13:34:16 +02001075 "%s assertion failure (expected %s, current %s)\n",
1076 pll->name, state_string(state), state_string(cur_state));
Jesse Barnes040484a2011-01-03 12:14:26 -08001077}
Jesse Barnes040484a2011-01-03 12:14:26 -08001078
1079static void assert_fdi_tx(struct drm_i915_private *dev_priv,
1080 enum pipe pipe, bool state)
1081{
1082 int reg;
1083 u32 val;
1084 bool cur_state;
Paulo Zanoniad80a812012-10-24 16:06:19 -02001085 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
1086 pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08001087
Paulo Zanoniaffa9352012-11-23 15:30:39 -02001088 if (HAS_DDI(dev_priv->dev)) {
1089 /* DDI does not have a specific FDI_TX register */
Paulo Zanoniad80a812012-10-24 16:06:19 -02001090 reg = TRANS_DDI_FUNC_CTL(cpu_transcoder);
Eugeni Dodonovbf507ef2012-05-09 15:37:18 -03001091 val = I915_READ(reg);
Paulo Zanoniad80a812012-10-24 16:06:19 -02001092 cur_state = !!(val & TRANS_DDI_FUNC_ENABLE);
Eugeni Dodonovbf507ef2012-05-09 15:37:18 -03001093 } else {
1094 reg = FDI_TX_CTL(pipe);
1095 val = I915_READ(reg);
1096 cur_state = !!(val & FDI_TX_ENABLE);
1097 }
Jesse Barnes040484a2011-01-03 12:14:26 -08001098 WARN(cur_state != state,
1099 "FDI TX state assertion failure (expected %s, current %s)\n",
1100 state_string(state), state_string(cur_state));
1101}
1102#define assert_fdi_tx_enabled(d, p) assert_fdi_tx(d, p, true)
1103#define assert_fdi_tx_disabled(d, p) assert_fdi_tx(d, p, false)
1104
1105static void assert_fdi_rx(struct drm_i915_private *dev_priv,
1106 enum pipe pipe, bool state)
1107{
1108 int reg;
1109 u32 val;
1110 bool cur_state;
1111
Paulo Zanonid63fa0d2012-11-20 13:27:35 -02001112 reg = FDI_RX_CTL(pipe);
1113 val = I915_READ(reg);
1114 cur_state = !!(val & FDI_RX_ENABLE);
Jesse Barnes040484a2011-01-03 12:14:26 -08001115 WARN(cur_state != state,
1116 "FDI RX state assertion failure (expected %s, current %s)\n",
1117 state_string(state), state_string(cur_state));
1118}
1119#define assert_fdi_rx_enabled(d, p) assert_fdi_rx(d, p, true)
1120#define assert_fdi_rx_disabled(d, p) assert_fdi_rx(d, p, false)
1121
1122static void assert_fdi_tx_pll_enabled(struct drm_i915_private *dev_priv,
1123 enum pipe pipe)
1124{
1125 int reg;
1126 u32 val;
1127
1128 /* ILK FDI PLL is always enabled */
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001129 if (INTEL_INFO(dev_priv->dev)->gen == 5)
Jesse Barnes040484a2011-01-03 12:14:26 -08001130 return;
1131
Eugeni Dodonovbf507ef2012-05-09 15:37:18 -03001132 /* On Haswell, DDI ports are responsible for the FDI PLL setup */
Paulo Zanoniaffa9352012-11-23 15:30:39 -02001133 if (HAS_DDI(dev_priv->dev))
Eugeni Dodonovbf507ef2012-05-09 15:37:18 -03001134 return;
1135
Jesse Barnes040484a2011-01-03 12:14:26 -08001136 reg = FDI_TX_CTL(pipe);
1137 val = I915_READ(reg);
1138 WARN(!(val & FDI_TX_PLL_ENABLE), "FDI TX PLL assertion failure, should be active but is disabled\n");
1139}
1140
Daniel Vetter55607e82013-06-16 21:42:39 +02001141void assert_fdi_rx_pll(struct drm_i915_private *dev_priv,
1142 enum pipe pipe, bool state)
Jesse Barnes040484a2011-01-03 12:14:26 -08001143{
1144 int reg;
1145 u32 val;
Daniel Vetter55607e82013-06-16 21:42:39 +02001146 bool cur_state;
Jesse Barnes040484a2011-01-03 12:14:26 -08001147
1148 reg = FDI_RX_CTL(pipe);
1149 val = I915_READ(reg);
Daniel Vetter55607e82013-06-16 21:42:39 +02001150 cur_state = !!(val & FDI_RX_PLL_ENABLE);
1151 WARN(cur_state != state,
1152 "FDI RX PLL assertion failure (expected %s, current %s)\n",
1153 state_string(state), state_string(cur_state));
Jesse Barnes040484a2011-01-03 12:14:26 -08001154}
1155
Jesse Barnesea0760c2011-01-04 15:09:32 -08001156static void assert_panel_unlocked(struct drm_i915_private *dev_priv,
1157 enum pipe pipe)
1158{
1159 int pp_reg, lvds_reg;
1160 u32 val;
1161 enum pipe panel_pipe = PIPE_A;
Thomas Jarosch0de3b482011-08-25 15:37:45 +02001162 bool locked = true;
Jesse Barnesea0760c2011-01-04 15:09:32 -08001163
1164 if (HAS_PCH_SPLIT(dev_priv->dev)) {
1165 pp_reg = PCH_PP_CONTROL;
1166 lvds_reg = PCH_LVDS;
1167 } else {
1168 pp_reg = PP_CONTROL;
1169 lvds_reg = LVDS;
1170 }
1171
1172 val = I915_READ(pp_reg);
1173 if (!(val & PANEL_POWER_ON) ||
1174 ((val & PANEL_UNLOCK_REGS) == PANEL_UNLOCK_REGS))
1175 locked = false;
1176
1177 if (I915_READ(lvds_reg) & LVDS_PIPEB_SELECT)
1178 panel_pipe = PIPE_B;
1179
1180 WARN(panel_pipe == pipe && locked,
1181 "panel assertion failure, pipe %c regs locked\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001182 pipe_name(pipe));
Jesse Barnesea0760c2011-01-04 15:09:32 -08001183}
1184
Jani Nikula93ce0ba2013-09-13 11:03:08 +03001185static void assert_cursor(struct drm_i915_private *dev_priv,
1186 enum pipe pipe, bool state)
1187{
1188 struct drm_device *dev = dev_priv->dev;
1189 bool cur_state;
1190
Paulo Zanonid9d82082014-02-27 16:30:56 -03001191 if (IS_845G(dev) || IS_I865G(dev))
Jani Nikula93ce0ba2013-09-13 11:03:08 +03001192 cur_state = I915_READ(_CURACNTR) & CURSOR_ENABLE;
Paulo Zanonid9d82082014-02-27 16:30:56 -03001193 else
Ville Syrjälä5efb3e22014-04-09 13:28:53 +03001194 cur_state = I915_READ(CURCNTR(pipe)) & CURSOR_MODE;
Jani Nikula93ce0ba2013-09-13 11:03:08 +03001195
1196 WARN(cur_state != state,
1197 "cursor on pipe %c assertion failure (expected %s, current %s)\n",
1198 pipe_name(pipe), state_string(state), state_string(cur_state));
1199}
1200#define assert_cursor_enabled(d, p) assert_cursor(d, p, true)
1201#define assert_cursor_disabled(d, p) assert_cursor(d, p, false)
1202
Jesse Barnesb840d907f2011-12-13 13:19:38 -08001203void assert_pipe(struct drm_i915_private *dev_priv,
1204 enum pipe pipe, bool state)
Jesse Barnesb24e7172011-01-04 15:09:30 -08001205{
1206 int reg;
1207 u32 val;
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001208 bool cur_state;
Paulo Zanoni702e7a52012-10-23 18:29:59 -02001209 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
1210 pipe);
Jesse Barnesb24e7172011-01-04 15:09:30 -08001211
Daniel Vetter8e636782012-01-22 01:36:48 +01001212 /* if we need the pipe A quirk it must be always on */
1213 if (pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE)
1214 state = true;
1215
Imre Deakda7e29b2014-02-18 00:02:02 +02001216 if (!intel_display_power_enabled(dev_priv,
Paulo Zanonib97186f2013-05-03 12:15:36 -03001217 POWER_DOMAIN_TRANSCODER(cpu_transcoder))) {
Paulo Zanoni69310162013-01-29 16:35:19 -02001218 cur_state = false;
1219 } else {
1220 reg = PIPECONF(cpu_transcoder);
1221 val = I915_READ(reg);
1222 cur_state = !!(val & PIPECONF_ENABLE);
1223 }
1224
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001225 WARN(cur_state != state,
1226 "pipe %c assertion failure (expected %s, current %s)\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001227 pipe_name(pipe), state_string(state), state_string(cur_state));
Jesse Barnesb24e7172011-01-04 15:09:30 -08001228}
1229
Chris Wilson931872f2012-01-16 23:01:13 +00001230static void assert_plane(struct drm_i915_private *dev_priv,
1231 enum plane plane, bool state)
Jesse Barnesb24e7172011-01-04 15:09:30 -08001232{
1233 int reg;
1234 u32 val;
Chris Wilson931872f2012-01-16 23:01:13 +00001235 bool cur_state;
Jesse Barnesb24e7172011-01-04 15:09:30 -08001236
1237 reg = DSPCNTR(plane);
1238 val = I915_READ(reg);
Chris Wilson931872f2012-01-16 23:01:13 +00001239 cur_state = !!(val & DISPLAY_PLANE_ENABLE);
1240 WARN(cur_state != state,
1241 "plane %c assertion failure (expected %s, current %s)\n",
1242 plane_name(plane), state_string(state), state_string(cur_state));
Jesse Barnesb24e7172011-01-04 15:09:30 -08001243}
1244
Chris Wilson931872f2012-01-16 23:01:13 +00001245#define assert_plane_enabled(d, p) assert_plane(d, p, true)
1246#define assert_plane_disabled(d, p) assert_plane(d, p, false)
1247
Jesse Barnesb24e7172011-01-04 15:09:30 -08001248static void assert_planes_disabled(struct drm_i915_private *dev_priv,
1249 enum pipe pipe)
1250{
Ville Syrjälä653e1022013-06-04 13:49:05 +03001251 struct drm_device *dev = dev_priv->dev;
Jesse Barnesb24e7172011-01-04 15:09:30 -08001252 int reg, i;
1253 u32 val;
1254 int cur_pipe;
1255
Ville Syrjälä653e1022013-06-04 13:49:05 +03001256 /* Primary planes are fixed to pipes on gen4+ */
1257 if (INTEL_INFO(dev)->gen >= 4) {
Adam Jackson28c057942011-10-07 14:38:42 -04001258 reg = DSPCNTR(pipe);
1259 val = I915_READ(reg);
Damien Lespiau83f26f12014-03-17 17:59:48 +00001260 WARN(val & DISPLAY_PLANE_ENABLE,
Adam Jackson28c057942011-10-07 14:38:42 -04001261 "plane %c assertion failure, should be disabled but not\n",
1262 plane_name(pipe));
Jesse Barnes19ec1352011-02-02 12:28:02 -08001263 return;
Adam Jackson28c057942011-10-07 14:38:42 -04001264 }
Jesse Barnes19ec1352011-02-02 12:28:02 -08001265
Jesse Barnesb24e7172011-01-04 15:09:30 -08001266 /* Need to check both planes against the pipe */
Damien Lespiau08e2a7d2013-07-11 20:10:54 +01001267 for_each_pipe(i) {
Jesse Barnesb24e7172011-01-04 15:09:30 -08001268 reg = DSPCNTR(i);
1269 val = I915_READ(reg);
1270 cur_pipe = (val & DISPPLANE_SEL_PIPE_MASK) >>
1271 DISPPLANE_SEL_PIPE_SHIFT;
1272 WARN((val & DISPLAY_PLANE_ENABLE) && pipe == cur_pipe,
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001273 "plane %c assertion failure, should be off on pipe %c but is still active\n",
1274 plane_name(i), pipe_name(pipe));
Jesse Barnesb24e7172011-01-04 15:09:30 -08001275 }
1276}
1277
Jesse Barnes19332d72013-03-28 09:55:38 -07001278static void assert_sprites_disabled(struct drm_i915_private *dev_priv,
1279 enum pipe pipe)
1280{
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001281 struct drm_device *dev = dev_priv->dev;
Damien Lespiau1fe47782014-03-03 17:31:47 +00001282 int reg, sprite;
Jesse Barnes19332d72013-03-28 09:55:38 -07001283 u32 val;
1284
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001285 if (IS_VALLEYVIEW(dev)) {
Damien Lespiau1fe47782014-03-03 17:31:47 +00001286 for_each_sprite(pipe, sprite) {
1287 reg = SPCNTR(pipe, sprite);
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001288 val = I915_READ(reg);
Damien Lespiau83f26f12014-03-17 17:59:48 +00001289 WARN(val & SP_ENABLE,
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001290 "sprite %c assertion failure, should be off on pipe %c but is still active\n",
Damien Lespiau1fe47782014-03-03 17:31:47 +00001291 sprite_name(pipe, sprite), pipe_name(pipe));
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001292 }
1293 } else if (INTEL_INFO(dev)->gen >= 7) {
1294 reg = SPRCTL(pipe);
Jesse Barnes19332d72013-03-28 09:55:38 -07001295 val = I915_READ(reg);
Damien Lespiau83f26f12014-03-17 17:59:48 +00001296 WARN(val & SPRITE_ENABLE,
Ville Syrjälä06da8da2013-04-17 17:48:51 +03001297 "sprite %c assertion failure, should be off on pipe %c but is still active\n",
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001298 plane_name(pipe), pipe_name(pipe));
1299 } else if (INTEL_INFO(dev)->gen >= 5) {
1300 reg = DVSCNTR(pipe);
1301 val = I915_READ(reg);
Damien Lespiau83f26f12014-03-17 17:59:48 +00001302 WARN(val & DVS_ENABLE,
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001303 "sprite %c assertion failure, should be off on pipe %c but is still active\n",
1304 plane_name(pipe), pipe_name(pipe));
Jesse Barnes19332d72013-03-28 09:55:38 -07001305 }
1306}
1307
Paulo Zanoni89eff4b2014-01-08 11:12:28 -02001308static void ibx_assert_pch_refclk_enabled(struct drm_i915_private *dev_priv)
Jesse Barnes92f25842011-01-04 15:09:34 -08001309{
1310 u32 val;
1311 bool enabled;
1312
Paulo Zanoni89eff4b2014-01-08 11:12:28 -02001313 WARN_ON(!(HAS_PCH_IBX(dev_priv->dev) || HAS_PCH_CPT(dev_priv->dev)));
Eugeni Dodonov9d82aa12012-05-09 15:37:17 -03001314
Jesse Barnes92f25842011-01-04 15:09:34 -08001315 val = I915_READ(PCH_DREF_CONTROL);
1316 enabled = !!(val & (DREF_SSC_SOURCE_MASK | DREF_NONSPREAD_SOURCE_MASK |
1317 DREF_SUPERSPREAD_SOURCE_MASK));
1318 WARN(!enabled, "PCH refclk assertion failure, should be active but is disabled\n");
1319}
1320
Daniel Vetterab9412b2013-05-03 11:49:46 +02001321static void assert_pch_transcoder_disabled(struct drm_i915_private *dev_priv,
1322 enum pipe pipe)
Jesse Barnes92f25842011-01-04 15:09:34 -08001323{
1324 int reg;
1325 u32 val;
1326 bool enabled;
1327
Daniel Vetterab9412b2013-05-03 11:49:46 +02001328 reg = PCH_TRANSCONF(pipe);
Jesse Barnes92f25842011-01-04 15:09:34 -08001329 val = I915_READ(reg);
1330 enabled = !!(val & TRANS_ENABLE);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001331 WARN(enabled,
1332 "transcoder assertion failed, should be off on pipe %c but is still active\n",
1333 pipe_name(pipe));
Jesse Barnes92f25842011-01-04 15:09:34 -08001334}
1335
Keith Packard4e634382011-08-06 10:39:45 -07001336static bool dp_pipe_enabled(struct drm_i915_private *dev_priv,
1337 enum pipe pipe, u32 port_sel, u32 val)
Keith Packardf0575e92011-07-25 22:12:43 -07001338{
1339 if ((val & DP_PORT_EN) == 0)
1340 return false;
1341
1342 if (HAS_PCH_CPT(dev_priv->dev)) {
1343 u32 trans_dp_ctl_reg = TRANS_DP_CTL(pipe);
1344 u32 trans_dp_ctl = I915_READ(trans_dp_ctl_reg);
1345 if ((trans_dp_ctl & TRANS_DP_PORT_SEL_MASK) != port_sel)
1346 return false;
Chon Ming Lee44f37d12014-04-09 13:28:21 +03001347 } else if (IS_CHERRYVIEW(dev_priv->dev)) {
1348 if ((val & DP_PIPE_MASK_CHV) != DP_PIPE_SELECT_CHV(pipe))
1349 return false;
Keith Packardf0575e92011-07-25 22:12:43 -07001350 } else {
1351 if ((val & DP_PIPE_MASK) != (pipe << 30))
1352 return false;
1353 }
1354 return true;
1355}
1356
Keith Packard1519b992011-08-06 10:35:34 -07001357static bool hdmi_pipe_enabled(struct drm_i915_private *dev_priv,
1358 enum pipe pipe, u32 val)
1359{
Paulo Zanonidc0fa712013-02-19 16:21:46 -03001360 if ((val & SDVO_ENABLE) == 0)
Keith Packard1519b992011-08-06 10:35:34 -07001361 return false;
1362
1363 if (HAS_PCH_CPT(dev_priv->dev)) {
Paulo Zanonidc0fa712013-02-19 16:21:46 -03001364 if ((val & SDVO_PIPE_SEL_MASK_CPT) != SDVO_PIPE_SEL_CPT(pipe))
Keith Packard1519b992011-08-06 10:35:34 -07001365 return false;
Chon Ming Lee44f37d12014-04-09 13:28:21 +03001366 } else if (IS_CHERRYVIEW(dev_priv->dev)) {
1367 if ((val & SDVO_PIPE_SEL_MASK_CHV) != SDVO_PIPE_SEL_CHV(pipe))
1368 return false;
Keith Packard1519b992011-08-06 10:35:34 -07001369 } else {
Paulo Zanonidc0fa712013-02-19 16:21:46 -03001370 if ((val & SDVO_PIPE_SEL_MASK) != SDVO_PIPE_SEL(pipe))
Keith Packard1519b992011-08-06 10:35:34 -07001371 return false;
1372 }
1373 return true;
1374}
1375
1376static bool lvds_pipe_enabled(struct drm_i915_private *dev_priv,
1377 enum pipe pipe, u32 val)
1378{
1379 if ((val & LVDS_PORT_EN) == 0)
1380 return false;
1381
1382 if (HAS_PCH_CPT(dev_priv->dev)) {
1383 if ((val & PORT_TRANS_SEL_MASK) != PORT_TRANS_SEL_CPT(pipe))
1384 return false;
1385 } else {
1386 if ((val & LVDS_PIPE_MASK) != LVDS_PIPE(pipe))
1387 return false;
1388 }
1389 return true;
1390}
1391
1392static bool adpa_pipe_enabled(struct drm_i915_private *dev_priv,
1393 enum pipe pipe, u32 val)
1394{
1395 if ((val & ADPA_DAC_ENABLE) == 0)
1396 return false;
1397 if (HAS_PCH_CPT(dev_priv->dev)) {
1398 if ((val & PORT_TRANS_SEL_MASK) != PORT_TRANS_SEL_CPT(pipe))
1399 return false;
1400 } else {
1401 if ((val & ADPA_PIPE_SELECT_MASK) != ADPA_PIPE_SELECT(pipe))
1402 return false;
1403 }
1404 return true;
1405}
1406
Jesse Barnes291906f2011-02-02 12:28:03 -08001407static void assert_pch_dp_disabled(struct drm_i915_private *dev_priv,
Keith Packardf0575e92011-07-25 22:12:43 -07001408 enum pipe pipe, int reg, u32 port_sel)
Jesse Barnes291906f2011-02-02 12:28:03 -08001409{
Jesse Barnes47a05ec2011-02-07 13:46:40 -08001410 u32 val = I915_READ(reg);
Keith Packard4e634382011-08-06 10:39:45 -07001411 WARN(dp_pipe_enabled(dev_priv, pipe, port_sel, val),
Jesse Barnes291906f2011-02-02 12:28:03 -08001412 "PCH DP (0x%08x) enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001413 reg, pipe_name(pipe));
Daniel Vetterde9a35a2012-06-05 11:03:40 +02001414
Daniel Vetter75c5da22012-09-10 21:58:29 +02001415 WARN(HAS_PCH_IBX(dev_priv->dev) && (val & DP_PORT_EN) == 0
1416 && (val & DP_PIPEB_SELECT),
Daniel Vetterde9a35a2012-06-05 11:03:40 +02001417 "IBX PCH dp port still using transcoder B\n");
Jesse Barnes291906f2011-02-02 12:28:03 -08001418}
1419
1420static void assert_pch_hdmi_disabled(struct drm_i915_private *dev_priv,
1421 enum pipe pipe, int reg)
1422{
Jesse Barnes47a05ec2011-02-07 13:46:40 -08001423 u32 val = I915_READ(reg);
Xu, Anhuab70ad582012-08-13 03:08:33 +00001424 WARN(hdmi_pipe_enabled(dev_priv, pipe, val),
Adam Jackson23c99e72011-10-07 14:38:43 -04001425 "PCH HDMI (0x%08x) enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001426 reg, pipe_name(pipe));
Daniel Vetterde9a35a2012-06-05 11:03:40 +02001427
Paulo Zanonidc0fa712013-02-19 16:21:46 -03001428 WARN(HAS_PCH_IBX(dev_priv->dev) && (val & SDVO_ENABLE) == 0
Daniel Vetter75c5da22012-09-10 21:58:29 +02001429 && (val & SDVO_PIPE_B_SELECT),
Daniel Vetterde9a35a2012-06-05 11:03:40 +02001430 "IBX PCH hdmi port still using transcoder B\n");
Jesse Barnes291906f2011-02-02 12:28:03 -08001431}
1432
1433static void assert_pch_ports_disabled(struct drm_i915_private *dev_priv,
1434 enum pipe pipe)
1435{
1436 int reg;
1437 u32 val;
Jesse Barnes291906f2011-02-02 12:28:03 -08001438
Keith Packardf0575e92011-07-25 22:12:43 -07001439 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_B, TRANS_DP_PORT_SEL_B);
1440 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_C, TRANS_DP_PORT_SEL_C);
1441 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_D, TRANS_DP_PORT_SEL_D);
Jesse Barnes291906f2011-02-02 12:28:03 -08001442
1443 reg = PCH_ADPA;
1444 val = I915_READ(reg);
Xu, Anhuab70ad582012-08-13 03:08:33 +00001445 WARN(adpa_pipe_enabled(dev_priv, pipe, val),
Jesse Barnes291906f2011-02-02 12:28:03 -08001446 "PCH VGA enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001447 pipe_name(pipe));
Jesse Barnes291906f2011-02-02 12:28:03 -08001448
1449 reg = PCH_LVDS;
1450 val = I915_READ(reg);
Xu, Anhuab70ad582012-08-13 03:08:33 +00001451 WARN(lvds_pipe_enabled(dev_priv, pipe, val),
Jesse Barnes291906f2011-02-02 12:28:03 -08001452 "PCH LVDS enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001453 pipe_name(pipe));
Jesse Barnes291906f2011-02-02 12:28:03 -08001454
Paulo Zanonie2debe92013-02-18 19:00:27 -03001455 assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMIB);
1456 assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMIC);
1457 assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMID);
Jesse Barnes291906f2011-02-02 12:28:03 -08001458}
1459
Jesse Barnes40e9cf62013-10-03 11:35:46 -07001460static void intel_init_dpio(struct drm_device *dev)
1461{
1462 struct drm_i915_private *dev_priv = dev->dev_private;
1463
1464 if (!IS_VALLEYVIEW(dev))
1465 return;
1466
Chon Ming Leea09cadd2014-04-09 13:28:14 +03001467 /*
1468 * IOSF_PORT_DPIO is used for VLV x2 PHY (DP/HDMI B and C),
1469 * CHV x1 PHY (DP/HDMI D)
1470 * IOSF_PORT_DPIO_2 is used for CHV x2 PHY (DP/HDMI B and C)
1471 */
1472 if (IS_CHERRYVIEW(dev)) {
1473 DPIO_PHY_IOSF_PORT(DPIO_PHY0) = IOSF_PORT_DPIO_2;
1474 DPIO_PHY_IOSF_PORT(DPIO_PHY1) = IOSF_PORT_DPIO;
1475 } else {
1476 DPIO_PHY_IOSF_PORT(DPIO_PHY0) = IOSF_PORT_DPIO;
1477 }
Jesse Barnes5382f5f352013-12-16 16:34:24 -08001478}
1479
1480static void intel_reset_dpio(struct drm_device *dev)
1481{
1482 struct drm_i915_private *dev_priv = dev->dev_private;
1483
1484 if (!IS_VALLEYVIEW(dev))
1485 return;
1486
Imre Deake5cbfbf2014-01-09 17:08:16 +02001487 /*
1488 * Enable the CRI clock source so we can get at the display and the
1489 * reference clock for VGA hotplug / manual detection.
1490 */
Imre Deak404faab2014-01-09 17:08:15 +02001491 I915_WRITE(DPLL(PIPE_B), I915_READ(DPLL(PIPE_B)) |
Imre Deake5cbfbf2014-01-09 17:08:16 +02001492 DPLL_REFA_CLK_ENABLE_VLV |
Imre Deak404faab2014-01-09 17:08:15 +02001493 DPLL_INTEGRATED_CRI_CLK_VLV);
1494
Chon Ming Lee076ed3b2014-04-09 13:28:17 +03001495 if (IS_CHERRYVIEW(dev)) {
1496 enum dpio_phy phy;
1497 u32 val;
1498
1499 for (phy = DPIO_PHY0; phy < I915_NUM_PHYS_VLV; phy++) {
1500 /* Poll for phypwrgood signal */
1501 if (wait_for(I915_READ(DISPLAY_PHY_STATUS) &
1502 PHY_POWERGOOD(phy), 1))
1503 DRM_ERROR("Display PHY %d is not power up\n", phy);
1504
1505 /*
1506 * Deassert common lane reset for PHY.
1507 *
1508 * This should only be done on init and resume from S3
1509 * with both PLLs disabled, or we risk losing DPIO and
1510 * PLL synchronization.
1511 */
1512 val = I915_READ(DISPLAY_PHY_CONTROL);
1513 I915_WRITE(DISPLAY_PHY_CONTROL,
1514 PHY_COM_LANE_RESET_DEASSERT(phy, val));
1515 }
1516
1517 } else {
1518 /*
1519 * From VLV2A0_DP_eDP_DPIO_driver_vbios_notes_10.docx -
1520 * 6. De-assert cmn_reset/side_reset. Same as VLV X0.
1521 * a. GUnit 0x2110 bit[0] set to 1 (def 0)
1522 * b. The other bits such as sfr settings / modesel may all
1523 * be set to 0.
1524 *
1525 * This should only be done on init and resume from S3 with
1526 * both PLLs disabled, or we risk losing DPIO and PLL
1527 * synchronization.
1528 */
1529 I915_WRITE(DPIO_CTL, I915_READ(DPIO_CTL) | DPIO_CMNRST);
1530 }
Jesse Barnes40e9cf62013-10-03 11:35:46 -07001531}
1532
Daniel Vetter426115c2013-07-11 22:13:42 +02001533static void vlv_enable_pll(struct intel_crtc *crtc)
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001534{
Daniel Vetter426115c2013-07-11 22:13:42 +02001535 struct drm_device *dev = crtc->base.dev;
1536 struct drm_i915_private *dev_priv = dev->dev_private;
1537 int reg = DPLL(crtc->pipe);
1538 u32 dpll = crtc->config.dpll_hw_state.dpll;
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001539
Daniel Vetter426115c2013-07-11 22:13:42 +02001540 assert_pipe_disabled(dev_priv, crtc->pipe);
Daniel Vetter58c6eaa2013-04-11 16:29:09 +02001541
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001542 /* No really, not for ILK+ */
Daniel Vetter87442f72013-06-06 00:52:17 +02001543 BUG_ON(!IS_VALLEYVIEW(dev_priv->dev));
1544
1545 /* PLL is protected by panel, make sure we can write it */
1546 if (IS_MOBILE(dev_priv->dev) && !IS_I830(dev_priv->dev))
Daniel Vetter426115c2013-07-11 22:13:42 +02001547 assert_panel_unlocked(dev_priv, crtc->pipe);
Daniel Vetter87442f72013-06-06 00:52:17 +02001548
Daniel Vetter426115c2013-07-11 22:13:42 +02001549 I915_WRITE(reg, dpll);
1550 POSTING_READ(reg);
1551 udelay(150);
1552
1553 if (wait_for(((I915_READ(reg) & DPLL_LOCK_VLV) == DPLL_LOCK_VLV), 1))
1554 DRM_ERROR("DPLL %d failed to lock\n", crtc->pipe);
1555
1556 I915_WRITE(DPLL_MD(crtc->pipe), crtc->config.dpll_hw_state.dpll_md);
1557 POSTING_READ(DPLL_MD(crtc->pipe));
Daniel Vetter87442f72013-06-06 00:52:17 +02001558
1559 /* We do this three times for luck */
Daniel Vetter426115c2013-07-11 22:13:42 +02001560 I915_WRITE(reg, dpll);
Daniel Vetter87442f72013-06-06 00:52:17 +02001561 POSTING_READ(reg);
1562 udelay(150); /* wait for warmup */
Daniel Vetter426115c2013-07-11 22:13:42 +02001563 I915_WRITE(reg, dpll);
Daniel Vetter87442f72013-06-06 00:52:17 +02001564 POSTING_READ(reg);
1565 udelay(150); /* wait for warmup */
Daniel Vetter426115c2013-07-11 22:13:42 +02001566 I915_WRITE(reg, dpll);
Daniel Vetter87442f72013-06-06 00:52:17 +02001567 POSTING_READ(reg);
1568 udelay(150); /* wait for warmup */
1569}
1570
Chon Ming Lee9d556c92014-05-02 14:27:47 +03001571static void chv_enable_pll(struct intel_crtc *crtc)
1572{
1573 struct drm_device *dev = crtc->base.dev;
1574 struct drm_i915_private *dev_priv = dev->dev_private;
1575 int pipe = crtc->pipe;
1576 enum dpio_channel port = vlv_pipe_to_channel(pipe);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03001577 u32 tmp;
1578
1579 assert_pipe_disabled(dev_priv, crtc->pipe);
1580
1581 BUG_ON(!IS_CHERRYVIEW(dev_priv->dev));
1582
1583 mutex_lock(&dev_priv->dpio_lock);
1584
1585 /* Enable back the 10bit clock to display controller */
1586 tmp = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW14(port));
1587 tmp |= DPIO_DCLKP_EN;
1588 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port), tmp);
1589
1590 /*
1591 * Need to wait > 100ns between dclkp clock enable bit and PLL enable.
1592 */
1593 udelay(1);
1594
1595 /* Enable PLL */
Ville Syrjäläa11b0702014-04-09 13:28:57 +03001596 I915_WRITE(DPLL(pipe), crtc->config.dpll_hw_state.dpll);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03001597
1598 /* Check PLL is locked */
Ville Syrjäläa11b0702014-04-09 13:28:57 +03001599 if (wait_for(((I915_READ(DPLL(pipe)) & DPLL_LOCK_VLV) == DPLL_LOCK_VLV), 1))
Chon Ming Lee9d556c92014-05-02 14:27:47 +03001600 DRM_ERROR("PLL %d failed to lock\n", pipe);
1601
Ville Syrjäläa11b0702014-04-09 13:28:57 +03001602 /* not sure when this should be written */
1603 I915_WRITE(DPLL_MD(pipe), crtc->config.dpll_hw_state.dpll_md);
1604 POSTING_READ(DPLL_MD(pipe));
1605
Chon Ming Lee9d556c92014-05-02 14:27:47 +03001606 /* Deassert soft data lane reset*/
1607 tmp = vlv_dpio_read(dev_priv, pipe, VLV_PCS_DW0(port));
1608 tmp |= (DPIO_PCS_TX_LANE2_RESET | DPIO_PCS_TX_LANE1_RESET);
1609 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW0(port), tmp);
1610
Chon Ming Lee9d556c92014-05-02 14:27:47 +03001611 mutex_unlock(&dev_priv->dpio_lock);
1612}
1613
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001614static void i9xx_enable_pll(struct intel_crtc *crtc)
Daniel Vetter87442f72013-06-06 00:52:17 +02001615{
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001616 struct drm_device *dev = crtc->base.dev;
1617 struct drm_i915_private *dev_priv = dev->dev_private;
1618 int reg = DPLL(crtc->pipe);
1619 u32 dpll = crtc->config.dpll_hw_state.dpll;
Daniel Vetter87442f72013-06-06 00:52:17 +02001620
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001621 assert_pipe_disabled(dev_priv, crtc->pipe);
Daniel Vetter87442f72013-06-06 00:52:17 +02001622
1623 /* No really, not for ILK+ */
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001624 BUG_ON(INTEL_INFO(dev)->gen >= 5);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001625
1626 /* PLL is protected by panel, make sure we can write it */
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001627 if (IS_MOBILE(dev) && !IS_I830(dev))
1628 assert_panel_unlocked(dev_priv, crtc->pipe);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001629
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001630 I915_WRITE(reg, dpll);
1631
1632 /* Wait for the clocks to stabilize. */
1633 POSTING_READ(reg);
1634 udelay(150);
1635
1636 if (INTEL_INFO(dev)->gen >= 4) {
1637 I915_WRITE(DPLL_MD(crtc->pipe),
1638 crtc->config.dpll_hw_state.dpll_md);
1639 } else {
1640 /* The pixel multiplier can only be updated once the
1641 * DPLL is enabled and the clocks are stable.
1642 *
1643 * So write it again.
1644 */
1645 I915_WRITE(reg, dpll);
1646 }
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001647
1648 /* We do this three times for luck */
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001649 I915_WRITE(reg, dpll);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001650 POSTING_READ(reg);
1651 udelay(150); /* wait for warmup */
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001652 I915_WRITE(reg, dpll);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001653 POSTING_READ(reg);
1654 udelay(150); /* wait for warmup */
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001655 I915_WRITE(reg, dpll);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001656 POSTING_READ(reg);
1657 udelay(150); /* wait for warmup */
1658}
1659
1660/**
Daniel Vetter50b44a42013-06-05 13:34:33 +02001661 * i9xx_disable_pll - disable a PLL
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001662 * @dev_priv: i915 private structure
1663 * @pipe: pipe PLL to disable
1664 *
1665 * Disable the PLL for @pipe, making sure the pipe is off first.
1666 *
1667 * Note! This is for pre-ILK only.
1668 */
Daniel Vetter50b44a42013-06-05 13:34:33 +02001669static void i9xx_disable_pll(struct drm_i915_private *dev_priv, enum pipe pipe)
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001670{
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001671 /* Don't disable pipe A or pipe A PLLs if needed */
1672 if (pipe == PIPE_A && (dev_priv->quirks & QUIRK_PIPEA_FORCE))
1673 return;
1674
1675 /* Make sure the pipe isn't still relying on us */
1676 assert_pipe_disabled(dev_priv, pipe);
1677
Daniel Vetter50b44a42013-06-05 13:34:33 +02001678 I915_WRITE(DPLL(pipe), 0);
1679 POSTING_READ(DPLL(pipe));
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001680}
1681
Jesse Barnesf6071162013-10-01 10:41:38 -07001682static void vlv_disable_pll(struct drm_i915_private *dev_priv, enum pipe pipe)
1683{
1684 u32 val = 0;
1685
1686 /* Make sure the pipe isn't still relying on us */
1687 assert_pipe_disabled(dev_priv, pipe);
1688
Imre Deake5cbfbf2014-01-09 17:08:16 +02001689 /*
1690 * Leave integrated clock source and reference clock enabled for pipe B.
1691 * The latter is needed for VGA hotplug / manual detection.
1692 */
Jesse Barnesf6071162013-10-01 10:41:38 -07001693 if (pipe == PIPE_B)
Imre Deake5cbfbf2014-01-09 17:08:16 +02001694 val = DPLL_INTEGRATED_CRI_CLK_VLV | DPLL_REFA_CLK_ENABLE_VLV;
Jesse Barnesf6071162013-10-01 10:41:38 -07001695 I915_WRITE(DPLL(pipe), val);
1696 POSTING_READ(DPLL(pipe));
Chon Ming Lee076ed3b2014-04-09 13:28:17 +03001697
1698}
1699
1700static void chv_disable_pll(struct drm_i915_private *dev_priv, enum pipe pipe)
1701{
Chon Ming Lee076ed3b2014-04-09 13:28:17 +03001702 u32 val;
1703
Ville Syrjäläa11b0702014-04-09 13:28:57 +03001704 /* Make sure the pipe isn't still relying on us */
1705 assert_pipe_disabled(dev_priv, pipe);
Chon Ming Lee076ed3b2014-04-09 13:28:17 +03001706
Ville Syrjäläa11b0702014-04-09 13:28:57 +03001707 /* Set PLL en = 0 */
1708 val = DPLL_SSC_REF_CLOCK_CHV;
1709 if (pipe != PIPE_A)
1710 val |= DPLL_INTEGRATED_CRI_CLK_VLV;
1711 I915_WRITE(DPLL(pipe), val);
1712 POSTING_READ(DPLL(pipe));
Jesse Barnesf6071162013-10-01 10:41:38 -07001713}
1714
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001715void vlv_wait_port_ready(struct drm_i915_private *dev_priv,
1716 struct intel_digital_port *dport)
Jesse Barnes89b667f2013-04-18 14:51:36 -07001717{
1718 u32 port_mask;
Chon Ming Lee00fc31b2014-04-09 13:28:15 +03001719 int dpll_reg;
Jesse Barnes89b667f2013-04-18 14:51:36 -07001720
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001721 switch (dport->port) {
1722 case PORT_B:
Jesse Barnes89b667f2013-04-18 14:51:36 -07001723 port_mask = DPLL_PORTB_READY_MASK;
Chon Ming Lee00fc31b2014-04-09 13:28:15 +03001724 dpll_reg = DPLL(0);
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001725 break;
1726 case PORT_C:
Jesse Barnes89b667f2013-04-18 14:51:36 -07001727 port_mask = DPLL_PORTC_READY_MASK;
Chon Ming Lee00fc31b2014-04-09 13:28:15 +03001728 dpll_reg = DPLL(0);
1729 break;
1730 case PORT_D:
1731 port_mask = DPLL_PORTD_READY_MASK;
1732 dpll_reg = DPIO_PHY_STATUS;
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001733 break;
1734 default:
1735 BUG();
1736 }
Jesse Barnes89b667f2013-04-18 14:51:36 -07001737
Chon Ming Lee00fc31b2014-04-09 13:28:15 +03001738 if (wait_for((I915_READ(dpll_reg) & port_mask) == 0, 1000))
Jesse Barnes89b667f2013-04-18 14:51:36 -07001739 WARN(1, "timed out waiting for port %c ready: 0x%08x\n",
Chon Ming Lee00fc31b2014-04-09 13:28:15 +03001740 port_name(dport->port), I915_READ(dpll_reg));
Jesse Barnes89b667f2013-04-18 14:51:36 -07001741}
1742
Daniel Vetterb14b1052014-04-24 23:55:13 +02001743static void intel_prepare_shared_dpll(struct intel_crtc *crtc)
1744{
1745 struct drm_device *dev = crtc->base.dev;
1746 struct drm_i915_private *dev_priv = dev->dev_private;
1747 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
1748
1749 WARN_ON(!pll->refcount);
1750 if (pll->active == 0) {
1751 DRM_DEBUG_DRIVER("setting up %s\n", pll->name);
1752 WARN_ON(pll->on);
1753 assert_shared_dpll_disabled(dev_priv, pll);
1754
1755 pll->mode_set(dev_priv, pll);
1756 }
1757}
1758
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001759/**
Daniel Vetter85b38942014-04-24 23:55:14 +02001760 * intel_enable_shared_dpll - enable PCH PLL
Jesse Barnes92f25842011-01-04 15:09:34 -08001761 * @dev_priv: i915 private structure
1762 * @pipe: pipe PLL to enable
1763 *
1764 * The PCH PLL needs to be enabled before the PCH transcoder, since it
1765 * drives the transcoder clock.
1766 */
Daniel Vetter85b38942014-04-24 23:55:14 +02001767static void intel_enable_shared_dpll(struct intel_crtc *crtc)
Jesse Barnes92f25842011-01-04 15:09:34 -08001768{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001769 struct drm_device *dev = crtc->base.dev;
1770 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vettere2b78262013-06-07 23:10:03 +02001771 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
Jesse Barnes92f25842011-01-04 15:09:34 -08001772
Daniel Vetter87a875b2013-06-05 13:34:19 +02001773 if (WARN_ON(pll == NULL))
Chris Wilson48da64a2012-05-13 20:16:12 +01001774 return;
1775
1776 if (WARN_ON(pll->refcount == 0))
1777 return;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001778
Daniel Vetter46edb022013-06-05 13:34:12 +02001779 DRM_DEBUG_KMS("enable %s (active %d, on? %d)for crtc %d\n",
1780 pll->name, pll->active, pll->on,
Daniel Vettere2b78262013-06-07 23:10:03 +02001781 crtc->base.base.id);
Jesse Barnes92f25842011-01-04 15:09:34 -08001782
Daniel Vettercdbd2312013-06-05 13:34:03 +02001783 if (pll->active++) {
1784 WARN_ON(!pll->on);
Daniel Vettere9d69442013-06-05 13:34:15 +02001785 assert_shared_dpll_enabled(dev_priv, pll);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001786 return;
1787 }
Daniel Vetterf4a091c2013-06-10 17:28:22 +02001788 WARN_ON(pll->on);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001789
Daniel Vetter46edb022013-06-05 13:34:12 +02001790 DRM_DEBUG_KMS("enabling %s\n", pll->name);
Daniel Vettere7b903d2013-06-05 13:34:14 +02001791 pll->enable(dev_priv, pll);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001792 pll->on = true;
Jesse Barnes92f25842011-01-04 15:09:34 -08001793}
1794
Daniel Vettere2b78262013-06-07 23:10:03 +02001795static void intel_disable_shared_dpll(struct intel_crtc *crtc)
Jesse Barnes92f25842011-01-04 15:09:34 -08001796{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001797 struct drm_device *dev = crtc->base.dev;
1798 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vettere2b78262013-06-07 23:10:03 +02001799 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
Jesse Barnes4c609cb2011-09-02 12:52:11 -07001800
Jesse Barnes92f25842011-01-04 15:09:34 -08001801 /* PCH only available on ILK+ */
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001802 BUG_ON(INTEL_INFO(dev)->gen < 5);
Daniel Vetter87a875b2013-06-05 13:34:19 +02001803 if (WARN_ON(pll == NULL))
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001804 return;
1805
Chris Wilson48da64a2012-05-13 20:16:12 +01001806 if (WARN_ON(pll->refcount == 0))
1807 return;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001808
Daniel Vetter46edb022013-06-05 13:34:12 +02001809 DRM_DEBUG_KMS("disable %s (active %d, on? %d) for crtc %d\n",
1810 pll->name, pll->active, pll->on,
Daniel Vettere2b78262013-06-07 23:10:03 +02001811 crtc->base.base.id);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001812
Chris Wilson48da64a2012-05-13 20:16:12 +01001813 if (WARN_ON(pll->active == 0)) {
Daniel Vettere9d69442013-06-05 13:34:15 +02001814 assert_shared_dpll_disabled(dev_priv, pll);
Chris Wilson48da64a2012-05-13 20:16:12 +01001815 return;
1816 }
1817
Daniel Vettere9d69442013-06-05 13:34:15 +02001818 assert_shared_dpll_enabled(dev_priv, pll);
Daniel Vetterf4a091c2013-06-10 17:28:22 +02001819 WARN_ON(!pll->on);
Daniel Vettercdbd2312013-06-05 13:34:03 +02001820 if (--pll->active)
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001821 return;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001822
Daniel Vetter46edb022013-06-05 13:34:12 +02001823 DRM_DEBUG_KMS("disabling %s\n", pll->name);
Daniel Vettere7b903d2013-06-05 13:34:14 +02001824 pll->disable(dev_priv, pll);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001825 pll->on = false;
Jesse Barnes92f25842011-01-04 15:09:34 -08001826}
1827
Paulo Zanonib8a4f402012-10-31 18:12:42 -02001828static void ironlake_enable_pch_transcoder(struct drm_i915_private *dev_priv,
1829 enum pipe pipe)
Jesse Barnes040484a2011-01-03 12:14:26 -08001830{
Daniel Vetter23670b322012-11-01 09:15:30 +01001831 struct drm_device *dev = dev_priv->dev;
Paulo Zanoni7c26e5c2012-02-14 17:07:09 -02001832 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
Daniel Vettere2b78262013-06-07 23:10:03 +02001833 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter23670b322012-11-01 09:15:30 +01001834 uint32_t reg, val, pipeconf_val;
Jesse Barnes040484a2011-01-03 12:14:26 -08001835
1836 /* PCH only available on ILK+ */
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001837 BUG_ON(INTEL_INFO(dev)->gen < 5);
Jesse Barnes040484a2011-01-03 12:14:26 -08001838
1839 /* Make sure PCH DPLL is enabled */
Daniel Vettere72f9fb2013-06-05 13:34:06 +02001840 assert_shared_dpll_enabled(dev_priv,
Daniel Vettere9d69442013-06-05 13:34:15 +02001841 intel_crtc_to_shared_dpll(intel_crtc));
Jesse Barnes040484a2011-01-03 12:14:26 -08001842
1843 /* FDI must be feeding us bits for PCH ports */
1844 assert_fdi_tx_enabled(dev_priv, pipe);
1845 assert_fdi_rx_enabled(dev_priv, pipe);
1846
Daniel Vetter23670b322012-11-01 09:15:30 +01001847 if (HAS_PCH_CPT(dev)) {
1848 /* Workaround: Set the timing override bit before enabling the
1849 * pch transcoder. */
1850 reg = TRANS_CHICKEN2(pipe);
1851 val = I915_READ(reg);
1852 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
1853 I915_WRITE(reg, val);
Eugeni Dodonov59c859d2012-05-09 15:37:19 -03001854 }
Daniel Vetter23670b322012-11-01 09:15:30 +01001855
Daniel Vetterab9412b2013-05-03 11:49:46 +02001856 reg = PCH_TRANSCONF(pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08001857 val = I915_READ(reg);
Paulo Zanoni5f7f7262012-02-03 17:47:15 -02001858 pipeconf_val = I915_READ(PIPECONF(pipe));
Jesse Barnese9bcff52011-06-24 12:19:20 -07001859
1860 if (HAS_PCH_IBX(dev_priv->dev)) {
1861 /*
1862 * make the BPC in transcoder be consistent with
1863 * that in pipeconf reg.
1864 */
Daniel Vetterdfd07d72012-12-17 11:21:38 +01001865 val &= ~PIPECONF_BPC_MASK;
1866 val |= pipeconf_val & PIPECONF_BPC_MASK;
Jesse Barnese9bcff52011-06-24 12:19:20 -07001867 }
Paulo Zanoni5f7f7262012-02-03 17:47:15 -02001868
1869 val &= ~TRANS_INTERLACE_MASK;
1870 if ((pipeconf_val & PIPECONF_INTERLACE_MASK) == PIPECONF_INTERLACED_ILK)
Paulo Zanoni7c26e5c2012-02-14 17:07:09 -02001871 if (HAS_PCH_IBX(dev_priv->dev) &&
1872 intel_pipe_has_type(crtc, INTEL_OUTPUT_SDVO))
1873 val |= TRANS_LEGACY_INTERLACED_ILK;
1874 else
1875 val |= TRANS_INTERLACED;
Paulo Zanoni5f7f7262012-02-03 17:47:15 -02001876 else
1877 val |= TRANS_PROGRESSIVE;
1878
Jesse Barnes040484a2011-01-03 12:14:26 -08001879 I915_WRITE(reg, val | TRANS_ENABLE);
1880 if (wait_for(I915_READ(reg) & TRANS_STATE_ENABLE, 100))
Ville Syrjälä4bb6f1f2013-04-17 17:48:50 +03001881 DRM_ERROR("failed to enable transcoder %c\n", pipe_name(pipe));
Jesse Barnes040484a2011-01-03 12:14:26 -08001882}
1883
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001884static void lpt_enable_pch_transcoder(struct drm_i915_private *dev_priv,
Paulo Zanoni937bb612012-10-31 18:12:47 -02001885 enum transcoder cpu_transcoder)
Jesse Barnes040484a2011-01-03 12:14:26 -08001886{
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001887 u32 val, pipeconf_val;
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001888
1889 /* PCH only available on ILK+ */
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001890 BUG_ON(INTEL_INFO(dev_priv->dev)->gen < 5);
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001891
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001892 /* FDI must be feeding us bits for PCH ports */
Daniel Vetter1a240d42012-11-29 22:18:51 +01001893 assert_fdi_tx_enabled(dev_priv, (enum pipe) cpu_transcoder);
Paulo Zanoni937bb612012-10-31 18:12:47 -02001894 assert_fdi_rx_enabled(dev_priv, TRANSCODER_A);
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001895
Paulo Zanoni223a6fd2012-10-31 18:12:52 -02001896 /* Workaround: set timing override bit. */
1897 val = I915_READ(_TRANSA_CHICKEN2);
Daniel Vetter23670b322012-11-01 09:15:30 +01001898 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
Paulo Zanoni223a6fd2012-10-31 18:12:52 -02001899 I915_WRITE(_TRANSA_CHICKEN2, val);
1900
Paulo Zanoni25f3ef12012-10-31 18:12:49 -02001901 val = TRANS_ENABLE;
Paulo Zanoni937bb612012-10-31 18:12:47 -02001902 pipeconf_val = I915_READ(PIPECONF(cpu_transcoder));
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001903
Paulo Zanoni9a76b1c2012-10-31 18:12:48 -02001904 if ((pipeconf_val & PIPECONF_INTERLACE_MASK_HSW) ==
1905 PIPECONF_INTERLACED_ILK)
Paulo Zanonia35f2672012-10-31 18:12:45 -02001906 val |= TRANS_INTERLACED;
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001907 else
1908 val |= TRANS_PROGRESSIVE;
1909
Daniel Vetterab9412b2013-05-03 11:49:46 +02001910 I915_WRITE(LPT_TRANSCONF, val);
1911 if (wait_for(I915_READ(LPT_TRANSCONF) & TRANS_STATE_ENABLE, 100))
Paulo Zanoni937bb612012-10-31 18:12:47 -02001912 DRM_ERROR("Failed to enable PCH transcoder\n");
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001913}
1914
Paulo Zanonib8a4f402012-10-31 18:12:42 -02001915static void ironlake_disable_pch_transcoder(struct drm_i915_private *dev_priv,
1916 enum pipe pipe)
Jesse Barnes040484a2011-01-03 12:14:26 -08001917{
Daniel Vetter23670b322012-11-01 09:15:30 +01001918 struct drm_device *dev = dev_priv->dev;
1919 uint32_t reg, val;
Jesse Barnes040484a2011-01-03 12:14:26 -08001920
1921 /* FDI relies on the transcoder */
1922 assert_fdi_tx_disabled(dev_priv, pipe);
1923 assert_fdi_rx_disabled(dev_priv, pipe);
1924
Jesse Barnes291906f2011-02-02 12:28:03 -08001925 /* Ports must be off as well */
1926 assert_pch_ports_disabled(dev_priv, pipe);
1927
Daniel Vetterab9412b2013-05-03 11:49:46 +02001928 reg = PCH_TRANSCONF(pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08001929 val = I915_READ(reg);
1930 val &= ~TRANS_ENABLE;
1931 I915_WRITE(reg, val);
1932 /* wait for PCH transcoder off, transcoder state */
1933 if (wait_for((I915_READ(reg) & TRANS_STATE_ENABLE) == 0, 50))
Ville Syrjälä4bb6f1f2013-04-17 17:48:50 +03001934 DRM_ERROR("failed to disable transcoder %c\n", pipe_name(pipe));
Daniel Vetter23670b322012-11-01 09:15:30 +01001935
1936 if (!HAS_PCH_IBX(dev)) {
1937 /* Workaround: Clear the timing override chicken bit again. */
1938 reg = TRANS_CHICKEN2(pipe);
1939 val = I915_READ(reg);
1940 val &= ~TRANS_CHICKEN2_TIMING_OVERRIDE;
1941 I915_WRITE(reg, val);
1942 }
Jesse Barnes040484a2011-01-03 12:14:26 -08001943}
1944
Paulo Zanoniab4d9662012-10-31 18:12:55 -02001945static void lpt_disable_pch_transcoder(struct drm_i915_private *dev_priv)
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001946{
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001947 u32 val;
1948
Daniel Vetterab9412b2013-05-03 11:49:46 +02001949 val = I915_READ(LPT_TRANSCONF);
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001950 val &= ~TRANS_ENABLE;
Daniel Vetterab9412b2013-05-03 11:49:46 +02001951 I915_WRITE(LPT_TRANSCONF, val);
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001952 /* wait for PCH transcoder off, transcoder state */
Daniel Vetterab9412b2013-05-03 11:49:46 +02001953 if (wait_for((I915_READ(LPT_TRANSCONF) & TRANS_STATE_ENABLE) == 0, 50))
Paulo Zanoni8a52fd92012-10-31 18:12:51 -02001954 DRM_ERROR("Failed to disable PCH transcoder\n");
Paulo Zanoni223a6fd2012-10-31 18:12:52 -02001955
1956 /* Workaround: clear timing override bit. */
1957 val = I915_READ(_TRANSA_CHICKEN2);
Daniel Vetter23670b322012-11-01 09:15:30 +01001958 val &= ~TRANS_CHICKEN2_TIMING_OVERRIDE;
Paulo Zanoni223a6fd2012-10-31 18:12:52 -02001959 I915_WRITE(_TRANSA_CHICKEN2, val);
Jesse Barnes92f25842011-01-04 15:09:34 -08001960}
1961
1962/**
Chris Wilson309cfea2011-01-28 13:54:53 +00001963 * intel_enable_pipe - enable a pipe, asserting requirements
Paulo Zanoni03722642014-01-17 13:51:09 -02001964 * @crtc: crtc responsible for the pipe
Jesse Barnesb24e7172011-01-04 15:09:30 -08001965 *
Paulo Zanoni03722642014-01-17 13:51:09 -02001966 * Enable @crtc's pipe, making sure that various hardware specific requirements
Jesse Barnesb24e7172011-01-04 15:09:30 -08001967 * are met, if applicable, e.g. PLL enabled, LVDS pairs enabled, etc.
Jesse Barnesb24e7172011-01-04 15:09:30 -08001968 */
Paulo Zanonie1fdc472014-01-17 13:51:12 -02001969static void intel_enable_pipe(struct intel_crtc *crtc)
Jesse Barnesb24e7172011-01-04 15:09:30 -08001970{
Paulo Zanoni03722642014-01-17 13:51:09 -02001971 struct drm_device *dev = crtc->base.dev;
1972 struct drm_i915_private *dev_priv = dev->dev_private;
1973 enum pipe pipe = crtc->pipe;
Paulo Zanoni702e7a52012-10-23 18:29:59 -02001974 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
1975 pipe);
Daniel Vetter1a240d42012-11-29 22:18:51 +01001976 enum pipe pch_transcoder;
Jesse Barnesb24e7172011-01-04 15:09:30 -08001977 int reg;
1978 u32 val;
1979
Daniel Vetter58c6eaa2013-04-11 16:29:09 +02001980 assert_planes_disabled(dev_priv, pipe);
Jani Nikula93ce0ba2013-09-13 11:03:08 +03001981 assert_cursor_disabled(dev_priv, pipe);
Daniel Vetter58c6eaa2013-04-11 16:29:09 +02001982 assert_sprites_disabled(dev_priv, pipe);
1983
Paulo Zanoni681e5812012-12-06 11:12:38 -02001984 if (HAS_PCH_LPT(dev_priv->dev))
Paulo Zanonicc391bb2012-11-20 13:27:37 -02001985 pch_transcoder = TRANSCODER_A;
1986 else
1987 pch_transcoder = pipe;
1988
Jesse Barnesb24e7172011-01-04 15:09:30 -08001989 /*
1990 * A pipe without a PLL won't actually be able to drive bits from
1991 * a plane. On ILK+ the pipe PLLs are integrated, so we don't
1992 * need the check.
1993 */
1994 if (!HAS_PCH_SPLIT(dev_priv->dev))
Paulo Zanonifbf32182014-01-17 13:51:11 -02001995 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_DSI))
Jani Nikula23538ef2013-08-27 15:12:22 +03001996 assert_dsi_pll_enabled(dev_priv);
1997 else
1998 assert_pll_enabled(dev_priv, pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08001999 else {
Paulo Zanoni30421c42014-01-17 13:51:10 -02002000 if (crtc->config.has_pch_encoder) {
Jesse Barnes040484a2011-01-03 12:14:26 -08002001 /* if driving the PCH, we need FDI enabled */
Paulo Zanonicc391bb2012-11-20 13:27:37 -02002002 assert_fdi_rx_pll_enabled(dev_priv, pch_transcoder);
Daniel Vetter1a240d42012-11-29 22:18:51 +01002003 assert_fdi_tx_pll_enabled(dev_priv,
2004 (enum pipe) cpu_transcoder);
Jesse Barnes040484a2011-01-03 12:14:26 -08002005 }
2006 /* FIXME: assert CPU port conditions for SNB+ */
2007 }
Jesse Barnesb24e7172011-01-04 15:09:30 -08002008
Paulo Zanoni702e7a52012-10-23 18:29:59 -02002009 reg = PIPECONF(cpu_transcoder);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002010 val = I915_READ(reg);
Paulo Zanoni7ad25d42014-01-17 13:51:13 -02002011 if (val & PIPECONF_ENABLE) {
2012 WARN_ON(!(pipe == PIPE_A &&
2013 dev_priv->quirks & QUIRK_PIPEA_FORCE));
Chris Wilson00d70b12011-03-17 07:18:29 +00002014 return;
Paulo Zanoni7ad25d42014-01-17 13:51:13 -02002015 }
Chris Wilson00d70b12011-03-17 07:18:29 +00002016
2017 I915_WRITE(reg, val | PIPECONF_ENABLE);
Paulo Zanoni851855d2013-12-19 19:12:29 -02002018 POSTING_READ(reg);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002019}
2020
2021/**
Chris Wilson309cfea2011-01-28 13:54:53 +00002022 * intel_disable_pipe - disable a pipe, asserting requirements
Jesse Barnesb24e7172011-01-04 15:09:30 -08002023 * @dev_priv: i915 private structure
2024 * @pipe: pipe to disable
2025 *
2026 * Disable @pipe, making sure that various hardware specific requirements
2027 * are met, if applicable, e.g. plane disabled, panel fitter off, etc.
2028 *
2029 * @pipe should be %PIPE_A or %PIPE_B.
2030 *
2031 * Will wait until the pipe has shut down before returning.
2032 */
2033static void intel_disable_pipe(struct drm_i915_private *dev_priv,
2034 enum pipe pipe)
2035{
Paulo Zanoni702e7a52012-10-23 18:29:59 -02002036 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
2037 pipe);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002038 int reg;
2039 u32 val;
2040
2041 /*
2042 * Make sure planes won't keep trying to pump pixels to us,
2043 * or we might hang the display.
2044 */
2045 assert_planes_disabled(dev_priv, pipe);
Jani Nikula93ce0ba2013-09-13 11:03:08 +03002046 assert_cursor_disabled(dev_priv, pipe);
Jesse Barnes19332d72013-03-28 09:55:38 -07002047 assert_sprites_disabled(dev_priv, pipe);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002048
2049 /* Don't disable pipe A or pipe A PLLs if needed */
2050 if (pipe == PIPE_A && (dev_priv->quirks & QUIRK_PIPEA_FORCE))
2051 return;
2052
Paulo Zanoni702e7a52012-10-23 18:29:59 -02002053 reg = PIPECONF(cpu_transcoder);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002054 val = I915_READ(reg);
Chris Wilson00d70b12011-03-17 07:18:29 +00002055 if ((val & PIPECONF_ENABLE) == 0)
2056 return;
2057
2058 I915_WRITE(reg, val & ~PIPECONF_ENABLE);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002059 intel_wait_for_pipe_off(dev_priv->dev, pipe);
2060}
2061
Keith Packardd74362c2011-07-28 14:47:14 -07002062/*
2063 * Plane regs are double buffered, going from enabled->disabled needs a
2064 * trigger in order to latch. The display address reg provides this.
2065 */
Ville Syrjälä1dba99f2013-10-01 18:02:18 +03002066void intel_flush_primary_plane(struct drm_i915_private *dev_priv,
2067 enum plane plane)
Keith Packardd74362c2011-07-28 14:47:14 -07002068{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00002069 struct drm_device *dev = dev_priv->dev;
2070 u32 reg = INTEL_INFO(dev)->gen >= 4 ? DSPSURF(plane) : DSPADDR(plane);
Ville Syrjälä1dba99f2013-10-01 18:02:18 +03002071
2072 I915_WRITE(reg, I915_READ(reg));
2073 POSTING_READ(reg);
Keith Packardd74362c2011-07-28 14:47:14 -07002074}
2075
Jesse Barnesb24e7172011-01-04 15:09:30 -08002076/**
Matt Roper262ca2b2014-03-18 17:22:55 -07002077 * intel_enable_primary_hw_plane - enable the primary plane on a given pipe
Jesse Barnesb24e7172011-01-04 15:09:30 -08002078 * @dev_priv: i915 private structure
2079 * @plane: plane to enable
2080 * @pipe: pipe being fed
2081 *
2082 * Enable @plane on @pipe, making sure that @pipe is running first.
2083 */
Matt Roper262ca2b2014-03-18 17:22:55 -07002084static void intel_enable_primary_hw_plane(struct drm_i915_private *dev_priv,
2085 enum plane plane, enum pipe pipe)
Jesse Barnesb24e7172011-01-04 15:09:30 -08002086{
Ville Syrjälä939c2fe2013-10-01 18:02:10 +03002087 struct intel_crtc *intel_crtc =
2088 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002089 int reg;
2090 u32 val;
2091
2092 /* If the pipe isn't enabled, we can't pump pixels and may hang */
2093 assert_pipe_enabled(dev_priv, pipe);
2094
Ville Syrjälä98ec7732014-04-30 17:43:01 +03002095 if (intel_crtc->primary_enabled)
2096 return;
Ville Syrjälä0037f712013-10-01 18:02:20 +03002097
Ville Syrjälä4c445e02013-10-09 17:24:58 +03002098 intel_crtc->primary_enabled = true;
Ville Syrjälä939c2fe2013-10-01 18:02:10 +03002099
Jesse Barnesb24e7172011-01-04 15:09:30 -08002100 reg = DSPCNTR(plane);
2101 val = I915_READ(reg);
Ville Syrjälä10efa932014-04-28 15:53:25 +03002102 WARN_ON(val & DISPLAY_PLANE_ENABLE);
Chris Wilson00d70b12011-03-17 07:18:29 +00002103
2104 I915_WRITE(reg, val | DISPLAY_PLANE_ENABLE);
Ville Syrjälä1dba99f2013-10-01 18:02:18 +03002105 intel_flush_primary_plane(dev_priv, plane);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002106 intel_wait_for_vblank(dev_priv->dev, pipe);
2107}
2108
Jesse Barnesb24e7172011-01-04 15:09:30 -08002109/**
Matt Roper262ca2b2014-03-18 17:22:55 -07002110 * intel_disable_primary_hw_plane - disable the primary hardware plane
Jesse Barnesb24e7172011-01-04 15:09:30 -08002111 * @dev_priv: i915 private structure
2112 * @plane: plane to disable
2113 * @pipe: pipe consuming the data
2114 *
2115 * Disable @plane; should be an independent operation.
2116 */
Matt Roper262ca2b2014-03-18 17:22:55 -07002117static void intel_disable_primary_hw_plane(struct drm_i915_private *dev_priv,
2118 enum plane plane, enum pipe pipe)
Jesse Barnesb24e7172011-01-04 15:09:30 -08002119{
Ville Syrjälä939c2fe2013-10-01 18:02:10 +03002120 struct intel_crtc *intel_crtc =
2121 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002122 int reg;
2123 u32 val;
2124
Ville Syrjälä98ec7732014-04-30 17:43:01 +03002125 if (!intel_crtc->primary_enabled)
2126 return;
Ville Syrjälä0037f712013-10-01 18:02:20 +03002127
Ville Syrjälä4c445e02013-10-09 17:24:58 +03002128 intel_crtc->primary_enabled = false;
Ville Syrjälä939c2fe2013-10-01 18:02:10 +03002129
Jesse Barnesb24e7172011-01-04 15:09:30 -08002130 reg = DSPCNTR(plane);
2131 val = I915_READ(reg);
Ville Syrjälä10efa932014-04-28 15:53:25 +03002132 WARN_ON((val & DISPLAY_PLANE_ENABLE) == 0);
Chris Wilson00d70b12011-03-17 07:18:29 +00002133
2134 I915_WRITE(reg, val & ~DISPLAY_PLANE_ENABLE);
Ville Syrjälä1dba99f2013-10-01 18:02:18 +03002135 intel_flush_primary_plane(dev_priv, plane);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002136 intel_wait_for_vblank(dev_priv->dev, pipe);
2137}
2138
Chris Wilson693db182013-03-05 14:52:39 +00002139static bool need_vtd_wa(struct drm_device *dev)
2140{
2141#ifdef CONFIG_INTEL_IOMMU
2142 if (INTEL_INFO(dev)->gen >= 6 && intel_iommu_gfx_mapped)
2143 return true;
2144#endif
2145 return false;
2146}
2147
Jesse Barnesa57ce0b2014-02-07 12:10:35 -08002148static int intel_align_height(struct drm_device *dev, int height, bool tiled)
2149{
2150 int tile_height;
2151
2152 tile_height = tiled ? (IS_GEN2(dev) ? 16 : 8) : 1;
2153 return ALIGN(height, tile_height);
2154}
2155
Chris Wilson127bd2a2010-07-23 23:32:05 +01002156int
Chris Wilson48b956c2010-09-14 12:50:34 +01002157intel_pin_and_fence_fb_obj(struct drm_device *dev,
Chris Wilson05394f32010-11-08 19:18:58 +00002158 struct drm_i915_gem_object *obj,
Chris Wilson919926a2010-11-12 13:42:53 +00002159 struct intel_ring_buffer *pipelined)
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002160{
Chris Wilsonce453d82011-02-21 14:43:56 +00002161 struct drm_i915_private *dev_priv = dev->dev_private;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002162 u32 alignment;
2163 int ret;
2164
Chris Wilson05394f32010-11-08 19:18:58 +00002165 switch (obj->tiling_mode) {
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002166 case I915_TILING_NONE:
Chris Wilson534843d2010-07-05 18:01:46 +01002167 if (IS_BROADWATER(dev) || IS_CRESTLINE(dev))
2168 alignment = 128 * 1024;
Chris Wilsona6c45cf2010-09-17 00:32:17 +01002169 else if (INTEL_INFO(dev)->gen >= 4)
Chris Wilson534843d2010-07-05 18:01:46 +01002170 alignment = 4 * 1024;
2171 else
2172 alignment = 64 * 1024;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002173 break;
2174 case I915_TILING_X:
2175 /* pin() will align the object as required by fence */
2176 alignment = 0;
2177 break;
2178 case I915_TILING_Y:
Daniel Vetter80075d42013-10-09 21:23:52 +02002179 WARN(1, "Y tiled bo slipped through, driver bug!\n");
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002180 return -EINVAL;
2181 default:
2182 BUG();
2183 }
2184
Chris Wilson693db182013-03-05 14:52:39 +00002185 /* Note that the w/a also requires 64 PTE of padding following the
2186 * bo. We currently fill all unused PTE with the shadow page and so
2187 * we should always have valid PTE following the scanout preventing
2188 * the VT-d warning.
2189 */
2190 if (need_vtd_wa(dev) && alignment < 256 * 1024)
2191 alignment = 256 * 1024;
2192
Chris Wilsonce453d82011-02-21 14:43:56 +00002193 dev_priv->mm.interruptible = false;
Chris Wilson2da3b9b2011-04-14 09:41:17 +01002194 ret = i915_gem_object_pin_to_display_plane(obj, alignment, pipelined);
Chris Wilson48b956c2010-09-14 12:50:34 +01002195 if (ret)
Chris Wilsonce453d82011-02-21 14:43:56 +00002196 goto err_interruptible;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002197
2198 /* Install a fence for tiled scan-out. Pre-i965 always needs a
2199 * fence, whereas 965+ only requires a fence if using
2200 * framebuffer compression. For simplicity, we always install
2201 * a fence as the cost is not that onerous.
2202 */
Chris Wilson06d98132012-04-17 15:31:24 +01002203 ret = i915_gem_object_get_fence(obj);
Chris Wilson9a5a53b2012-03-22 15:10:00 +00002204 if (ret)
2205 goto err_unpin;
Chris Wilson1690e1e2011-12-14 13:57:08 +01002206
Chris Wilson9a5a53b2012-03-22 15:10:00 +00002207 i915_gem_object_pin_fence(obj);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002208
Chris Wilsonce453d82011-02-21 14:43:56 +00002209 dev_priv->mm.interruptible = true;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002210 return 0;
Chris Wilson48b956c2010-09-14 12:50:34 +01002211
2212err_unpin:
Chris Wilsoncc98b412013-08-09 12:25:09 +01002213 i915_gem_object_unpin_from_display_plane(obj);
Chris Wilsonce453d82011-02-21 14:43:56 +00002214err_interruptible:
2215 dev_priv->mm.interruptible = true;
Chris Wilson48b956c2010-09-14 12:50:34 +01002216 return ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002217}
2218
Chris Wilson1690e1e2011-12-14 13:57:08 +01002219void intel_unpin_fb_obj(struct drm_i915_gem_object *obj)
2220{
2221 i915_gem_object_unpin_fence(obj);
Chris Wilsoncc98b412013-08-09 12:25:09 +01002222 i915_gem_object_unpin_from_display_plane(obj);
Chris Wilson1690e1e2011-12-14 13:57:08 +01002223}
2224
Daniel Vetterc2c75132012-07-05 12:17:30 +02002225/* Computes the linear offset to the base tile and adjusts x, y. bytes per pixel
2226 * is assumed to be a power-of-two. */
Chris Wilsonbc752862013-02-21 20:04:31 +00002227unsigned long intel_gen4_compute_page_offset(int *x, int *y,
2228 unsigned int tiling_mode,
2229 unsigned int cpp,
2230 unsigned int pitch)
Daniel Vetterc2c75132012-07-05 12:17:30 +02002231{
Chris Wilsonbc752862013-02-21 20:04:31 +00002232 if (tiling_mode != I915_TILING_NONE) {
2233 unsigned int tile_rows, tiles;
Daniel Vetterc2c75132012-07-05 12:17:30 +02002234
Chris Wilsonbc752862013-02-21 20:04:31 +00002235 tile_rows = *y / 8;
2236 *y %= 8;
Daniel Vetterc2c75132012-07-05 12:17:30 +02002237
Chris Wilsonbc752862013-02-21 20:04:31 +00002238 tiles = *x / (512/cpp);
2239 *x %= 512/cpp;
2240
2241 return tile_rows * pitch * 8 + tiles * 4096;
2242 } else {
2243 unsigned int offset;
2244
2245 offset = *y * pitch + *x * cpp;
2246 *y = 0;
2247 *x = (offset & 4095) / cpp;
2248 return offset & -4096;
2249 }
Daniel Vetterc2c75132012-07-05 12:17:30 +02002250}
2251
Jesse Barnes46f297f2014-03-07 08:57:48 -08002252int intel_format_to_fourcc(int format)
2253{
2254 switch (format) {
2255 case DISPPLANE_8BPP:
2256 return DRM_FORMAT_C8;
2257 case DISPPLANE_BGRX555:
2258 return DRM_FORMAT_XRGB1555;
2259 case DISPPLANE_BGRX565:
2260 return DRM_FORMAT_RGB565;
2261 default:
2262 case DISPPLANE_BGRX888:
2263 return DRM_FORMAT_XRGB8888;
2264 case DISPPLANE_RGBX888:
2265 return DRM_FORMAT_XBGR8888;
2266 case DISPPLANE_BGRX101010:
2267 return DRM_FORMAT_XRGB2101010;
2268 case DISPPLANE_RGBX101010:
2269 return DRM_FORMAT_XBGR2101010;
2270 }
2271}
2272
Jesse Barnes484b41d2014-03-07 08:57:55 -08002273static bool intel_alloc_plane_obj(struct intel_crtc *crtc,
Jesse Barnes46f297f2014-03-07 08:57:48 -08002274 struct intel_plane_config *plane_config)
2275{
2276 struct drm_device *dev = crtc->base.dev;
2277 struct drm_i915_gem_object *obj = NULL;
2278 struct drm_mode_fb_cmd2 mode_cmd = { 0 };
2279 u32 base = plane_config->base;
2280
Chris Wilsonff2652e2014-03-10 08:07:02 +00002281 if (plane_config->size == 0)
2282 return false;
2283
Jesse Barnes46f297f2014-03-07 08:57:48 -08002284 obj = i915_gem_object_create_stolen_for_preallocated(dev, base, base,
2285 plane_config->size);
2286 if (!obj)
Jesse Barnes484b41d2014-03-07 08:57:55 -08002287 return false;
Jesse Barnes46f297f2014-03-07 08:57:48 -08002288
2289 if (plane_config->tiled) {
2290 obj->tiling_mode = I915_TILING_X;
Dave Airlie66e514c2014-04-03 07:51:54 +10002291 obj->stride = crtc->base.primary->fb->pitches[0];
Jesse Barnes46f297f2014-03-07 08:57:48 -08002292 }
2293
Dave Airlie66e514c2014-04-03 07:51:54 +10002294 mode_cmd.pixel_format = crtc->base.primary->fb->pixel_format;
2295 mode_cmd.width = crtc->base.primary->fb->width;
2296 mode_cmd.height = crtc->base.primary->fb->height;
2297 mode_cmd.pitches[0] = crtc->base.primary->fb->pitches[0];
Jesse Barnes46f297f2014-03-07 08:57:48 -08002298
2299 mutex_lock(&dev->struct_mutex);
2300
Dave Airlie66e514c2014-04-03 07:51:54 +10002301 if (intel_framebuffer_init(dev, to_intel_framebuffer(crtc->base.primary->fb),
Jesse Barnes484b41d2014-03-07 08:57:55 -08002302 &mode_cmd, obj)) {
Jesse Barnes46f297f2014-03-07 08:57:48 -08002303 DRM_DEBUG_KMS("intel fb init failed\n");
2304 goto out_unref_obj;
2305 }
2306
2307 mutex_unlock(&dev->struct_mutex);
Jesse Barnes484b41d2014-03-07 08:57:55 -08002308
2309 DRM_DEBUG_KMS("plane fb obj %p\n", obj);
2310 return true;
Jesse Barnes46f297f2014-03-07 08:57:48 -08002311
2312out_unref_obj:
2313 drm_gem_object_unreference(&obj->base);
2314 mutex_unlock(&dev->struct_mutex);
Jesse Barnes484b41d2014-03-07 08:57:55 -08002315 return false;
2316}
2317
2318static void intel_find_plane_obj(struct intel_crtc *intel_crtc,
2319 struct intel_plane_config *plane_config)
2320{
2321 struct drm_device *dev = intel_crtc->base.dev;
2322 struct drm_crtc *c;
2323 struct intel_crtc *i;
2324 struct intel_framebuffer *fb;
2325
Dave Airlie66e514c2014-04-03 07:51:54 +10002326 if (!intel_crtc->base.primary->fb)
Jesse Barnes484b41d2014-03-07 08:57:55 -08002327 return;
2328
2329 if (intel_alloc_plane_obj(intel_crtc, plane_config))
2330 return;
2331
Dave Airlie66e514c2014-04-03 07:51:54 +10002332 kfree(intel_crtc->base.primary->fb);
2333 intel_crtc->base.primary->fb = NULL;
Jesse Barnes484b41d2014-03-07 08:57:55 -08002334
2335 /*
2336 * Failed to alloc the obj, check to see if we should share
2337 * an fb with another CRTC instead
2338 */
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01002339 for_each_crtc(dev, c) {
Jesse Barnes484b41d2014-03-07 08:57:55 -08002340 i = to_intel_crtc(c);
2341
2342 if (c == &intel_crtc->base)
2343 continue;
2344
Dave Airlie66e514c2014-04-03 07:51:54 +10002345 if (!i->active || !c->primary->fb)
Jesse Barnes484b41d2014-03-07 08:57:55 -08002346 continue;
2347
Dave Airlie66e514c2014-04-03 07:51:54 +10002348 fb = to_intel_framebuffer(c->primary->fb);
Jesse Barnes484b41d2014-03-07 08:57:55 -08002349 if (i915_gem_obj_ggtt_offset(fb->obj) == plane_config->base) {
Dave Airlie66e514c2014-04-03 07:51:54 +10002350 drm_framebuffer_reference(c->primary->fb);
2351 intel_crtc->base.primary->fb = c->primary->fb;
Jesse Barnes484b41d2014-03-07 08:57:55 -08002352 break;
2353 }
2354 }
Jesse Barnes46f297f2014-03-07 08:57:48 -08002355}
2356
Daniel Vetter29b9bde2014-04-24 23:55:01 +02002357static void i9xx_update_primary_plane(struct drm_crtc *crtc,
2358 struct drm_framebuffer *fb,
2359 int x, int y)
Jesse Barnes81255562010-08-02 12:07:50 -07002360{
2361 struct drm_device *dev = crtc->dev;
2362 struct drm_i915_private *dev_priv = dev->dev_private;
2363 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2364 struct intel_framebuffer *intel_fb;
Chris Wilson05394f32010-11-08 19:18:58 +00002365 struct drm_i915_gem_object *obj;
Jesse Barnes81255562010-08-02 12:07:50 -07002366 int plane = intel_crtc->plane;
Daniel Vettere506a0c2012-07-05 12:17:29 +02002367 unsigned long linear_offset;
Jesse Barnes81255562010-08-02 12:07:50 -07002368 u32 dspcntr;
Chris Wilson5eddb702010-09-11 13:48:45 +01002369 u32 reg;
Jesse Barnes81255562010-08-02 12:07:50 -07002370
Jesse Barnes81255562010-08-02 12:07:50 -07002371 intel_fb = to_intel_framebuffer(fb);
2372 obj = intel_fb->obj;
Jesse Barnes81255562010-08-02 12:07:50 -07002373
Chris Wilson5eddb702010-09-11 13:48:45 +01002374 reg = DSPCNTR(plane);
2375 dspcntr = I915_READ(reg);
Jesse Barnes81255562010-08-02 12:07:50 -07002376 /* Mask out pixel format bits in case we change it */
2377 dspcntr &= ~DISPPLANE_PIXFORMAT_MASK;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002378 switch (fb->pixel_format) {
2379 case DRM_FORMAT_C8:
Jesse Barnes81255562010-08-02 12:07:50 -07002380 dspcntr |= DISPPLANE_8BPP;
2381 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002382 case DRM_FORMAT_XRGB1555:
2383 case DRM_FORMAT_ARGB1555:
2384 dspcntr |= DISPPLANE_BGRX555;
Jesse Barnes81255562010-08-02 12:07:50 -07002385 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002386 case DRM_FORMAT_RGB565:
2387 dspcntr |= DISPPLANE_BGRX565;
2388 break;
2389 case DRM_FORMAT_XRGB8888:
2390 case DRM_FORMAT_ARGB8888:
2391 dspcntr |= DISPPLANE_BGRX888;
2392 break;
2393 case DRM_FORMAT_XBGR8888:
2394 case DRM_FORMAT_ABGR8888:
2395 dspcntr |= DISPPLANE_RGBX888;
2396 break;
2397 case DRM_FORMAT_XRGB2101010:
2398 case DRM_FORMAT_ARGB2101010:
2399 dspcntr |= DISPPLANE_BGRX101010;
2400 break;
2401 case DRM_FORMAT_XBGR2101010:
2402 case DRM_FORMAT_ABGR2101010:
2403 dspcntr |= DISPPLANE_RGBX101010;
Jesse Barnes81255562010-08-02 12:07:50 -07002404 break;
2405 default:
Daniel Vetterbaba1332013-03-27 00:45:00 +01002406 BUG();
Jesse Barnes81255562010-08-02 12:07:50 -07002407 }
Ville Syrjälä57779d02012-10-31 17:50:14 +02002408
Chris Wilsona6c45cf2010-09-17 00:32:17 +01002409 if (INTEL_INFO(dev)->gen >= 4) {
Chris Wilson05394f32010-11-08 19:18:58 +00002410 if (obj->tiling_mode != I915_TILING_NONE)
Jesse Barnes81255562010-08-02 12:07:50 -07002411 dspcntr |= DISPPLANE_TILED;
2412 else
2413 dspcntr &= ~DISPPLANE_TILED;
2414 }
2415
Ville Syrjäläde1aa622013-06-07 10:47:01 +03002416 if (IS_G4X(dev))
2417 dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE;
2418
Chris Wilson5eddb702010-09-11 13:48:45 +01002419 I915_WRITE(reg, dspcntr);
Jesse Barnes81255562010-08-02 12:07:50 -07002420
Daniel Vettere506a0c2012-07-05 12:17:29 +02002421 linear_offset = y * fb->pitches[0] + x * (fb->bits_per_pixel / 8);
Jesse Barnes81255562010-08-02 12:07:50 -07002422
Daniel Vetterc2c75132012-07-05 12:17:30 +02002423 if (INTEL_INFO(dev)->gen >= 4) {
2424 intel_crtc->dspaddr_offset =
Chris Wilsonbc752862013-02-21 20:04:31 +00002425 intel_gen4_compute_page_offset(&x, &y, obj->tiling_mode,
2426 fb->bits_per_pixel / 8,
2427 fb->pitches[0]);
Daniel Vetterc2c75132012-07-05 12:17:30 +02002428 linear_offset -= intel_crtc->dspaddr_offset;
2429 } else {
Daniel Vettere506a0c2012-07-05 12:17:29 +02002430 intel_crtc->dspaddr_offset = linear_offset;
Daniel Vetterc2c75132012-07-05 12:17:30 +02002431 }
Daniel Vettere506a0c2012-07-05 12:17:29 +02002432
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002433 DRM_DEBUG_KMS("Writing base %08lX %08lX %d %d %d\n",
2434 i915_gem_obj_ggtt_offset(obj), linear_offset, x, y,
2435 fb->pitches[0]);
Ville Syrjälä01f2c772011-12-20 00:06:49 +02002436 I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]);
Chris Wilsona6c45cf2010-09-17 00:32:17 +01002437 if (INTEL_INFO(dev)->gen >= 4) {
Daniel Vetter85ba7b72014-01-24 10:31:44 +01002438 I915_WRITE(DSPSURF(plane),
2439 i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset);
Chris Wilson5eddb702010-09-11 13:48:45 +01002440 I915_WRITE(DSPTILEOFF(plane), (y << 16) | x);
Daniel Vettere506a0c2012-07-05 12:17:29 +02002441 I915_WRITE(DSPLINOFF(plane), linear_offset);
Chris Wilson5eddb702010-09-11 13:48:45 +01002442 } else
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002443 I915_WRITE(DSPADDR(plane), i915_gem_obj_ggtt_offset(obj) + linear_offset);
Chris Wilson5eddb702010-09-11 13:48:45 +01002444 POSTING_READ(reg);
Jesse Barnes17638cd2011-06-24 12:19:23 -07002445}
2446
Daniel Vetter29b9bde2014-04-24 23:55:01 +02002447static void ironlake_update_primary_plane(struct drm_crtc *crtc,
2448 struct drm_framebuffer *fb,
2449 int x, int y)
Jesse Barnes17638cd2011-06-24 12:19:23 -07002450{
2451 struct drm_device *dev = crtc->dev;
2452 struct drm_i915_private *dev_priv = dev->dev_private;
2453 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2454 struct intel_framebuffer *intel_fb;
2455 struct drm_i915_gem_object *obj;
2456 int plane = intel_crtc->plane;
Daniel Vettere506a0c2012-07-05 12:17:29 +02002457 unsigned long linear_offset;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002458 u32 dspcntr;
2459 u32 reg;
2460
Jesse Barnes17638cd2011-06-24 12:19:23 -07002461 intel_fb = to_intel_framebuffer(fb);
2462 obj = intel_fb->obj;
2463
2464 reg = DSPCNTR(plane);
2465 dspcntr = I915_READ(reg);
2466 /* Mask out pixel format bits in case we change it */
2467 dspcntr &= ~DISPPLANE_PIXFORMAT_MASK;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002468 switch (fb->pixel_format) {
2469 case DRM_FORMAT_C8:
Jesse Barnes17638cd2011-06-24 12:19:23 -07002470 dspcntr |= DISPPLANE_8BPP;
2471 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002472 case DRM_FORMAT_RGB565:
2473 dspcntr |= DISPPLANE_BGRX565;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002474 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002475 case DRM_FORMAT_XRGB8888:
2476 case DRM_FORMAT_ARGB8888:
2477 dspcntr |= DISPPLANE_BGRX888;
2478 break;
2479 case DRM_FORMAT_XBGR8888:
2480 case DRM_FORMAT_ABGR8888:
2481 dspcntr |= DISPPLANE_RGBX888;
2482 break;
2483 case DRM_FORMAT_XRGB2101010:
2484 case DRM_FORMAT_ARGB2101010:
2485 dspcntr |= DISPPLANE_BGRX101010;
2486 break;
2487 case DRM_FORMAT_XBGR2101010:
2488 case DRM_FORMAT_ABGR2101010:
2489 dspcntr |= DISPPLANE_RGBX101010;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002490 break;
2491 default:
Daniel Vetterbaba1332013-03-27 00:45:00 +01002492 BUG();
Jesse Barnes17638cd2011-06-24 12:19:23 -07002493 }
2494
2495 if (obj->tiling_mode != I915_TILING_NONE)
2496 dspcntr |= DISPPLANE_TILED;
2497 else
2498 dspcntr &= ~DISPPLANE_TILED;
2499
Ville Syrjäläb42c6002013-11-03 13:47:27 +02002500 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Paulo Zanoni1f5d76d2013-08-23 19:51:28 -03002501 dspcntr &= ~DISPPLANE_TRICKLE_FEED_DISABLE;
2502 else
2503 dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002504
2505 I915_WRITE(reg, dspcntr);
2506
Daniel Vettere506a0c2012-07-05 12:17:29 +02002507 linear_offset = y * fb->pitches[0] + x * (fb->bits_per_pixel / 8);
Daniel Vetterc2c75132012-07-05 12:17:30 +02002508 intel_crtc->dspaddr_offset =
Chris Wilsonbc752862013-02-21 20:04:31 +00002509 intel_gen4_compute_page_offset(&x, &y, obj->tiling_mode,
2510 fb->bits_per_pixel / 8,
2511 fb->pitches[0]);
Daniel Vetterc2c75132012-07-05 12:17:30 +02002512 linear_offset -= intel_crtc->dspaddr_offset;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002513
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002514 DRM_DEBUG_KMS("Writing base %08lX %08lX %d %d %d\n",
2515 i915_gem_obj_ggtt_offset(obj), linear_offset, x, y,
2516 fb->pitches[0]);
Ville Syrjälä01f2c772011-12-20 00:06:49 +02002517 I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]);
Daniel Vetter85ba7b72014-01-24 10:31:44 +01002518 I915_WRITE(DSPSURF(plane),
2519 i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset);
Paulo Zanonib3dc6852013-11-02 21:07:33 -07002520 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Damien Lespiaubc1c91e2012-10-29 12:14:21 +00002521 I915_WRITE(DSPOFFSET(plane), (y << 16) | x);
2522 } else {
2523 I915_WRITE(DSPTILEOFF(plane), (y << 16) | x);
2524 I915_WRITE(DSPLINOFF(plane), linear_offset);
2525 }
Jesse Barnes17638cd2011-06-24 12:19:23 -07002526 POSTING_READ(reg);
Jesse Barnes17638cd2011-06-24 12:19:23 -07002527}
2528
2529/* Assume fb object is pinned & idle & fenced and just update base pointers */
2530static int
2531intel_pipe_set_base_atomic(struct drm_crtc *crtc, struct drm_framebuffer *fb,
2532 int x, int y, enum mode_set_atomic state)
2533{
2534 struct drm_device *dev = crtc->dev;
2535 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002536
Chris Wilson6b8e6ed2012-04-17 15:08:19 +01002537 if (dev_priv->display.disable_fbc)
2538 dev_priv->display.disable_fbc(dev);
Daniel Vetter3dec0092010-08-20 21:40:52 +02002539 intel_increase_pllclock(crtc);
Jesse Barnes81255562010-08-02 12:07:50 -07002540
Daniel Vetter29b9bde2014-04-24 23:55:01 +02002541 dev_priv->display.update_primary_plane(crtc, fb, x, y);
2542
2543 return 0;
Jesse Barnes81255562010-08-02 12:07:50 -07002544}
2545
Ville Syrjälä96a02912013-02-18 19:08:49 +02002546void intel_display_handle_reset(struct drm_device *dev)
2547{
2548 struct drm_i915_private *dev_priv = dev->dev_private;
2549 struct drm_crtc *crtc;
2550
2551 /*
2552 * Flips in the rings have been nuked by the reset,
2553 * so complete all pending flips so that user space
2554 * will get its events and not get stuck.
2555 *
2556 * Also update the base address of all primary
2557 * planes to the the last fb to make sure we're
2558 * showing the correct fb after a reset.
2559 *
2560 * Need to make two loops over the crtcs so that we
2561 * don't try to grab a crtc mutex before the
2562 * pending_flip_queue really got woken up.
2563 */
2564
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01002565 for_each_crtc(dev, crtc) {
Ville Syrjälä96a02912013-02-18 19:08:49 +02002566 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2567 enum plane plane = intel_crtc->plane;
2568
2569 intel_prepare_page_flip(dev, plane);
2570 intel_finish_page_flip_plane(dev, plane);
2571 }
2572
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01002573 for_each_crtc(dev, crtc) {
Ville Syrjälä96a02912013-02-18 19:08:49 +02002574 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2575
2576 mutex_lock(&crtc->mutex);
Chris Wilson947fdaadf2013-11-27 12:01:32 +00002577 /*
2578 * FIXME: Once we have proper support for primary planes (and
2579 * disabling them without disabling the entire crtc) allow again
Dave Airlie66e514c2014-04-03 07:51:54 +10002580 * a NULL crtc->primary->fb.
Chris Wilson947fdaadf2013-11-27 12:01:32 +00002581 */
Matt Roperf4510a22014-04-01 15:22:40 -07002582 if (intel_crtc->active && crtc->primary->fb)
Matt Roper262ca2b2014-03-18 17:22:55 -07002583 dev_priv->display.update_primary_plane(crtc,
Dave Airlie66e514c2014-04-03 07:51:54 +10002584 crtc->primary->fb,
Matt Roper262ca2b2014-03-18 17:22:55 -07002585 crtc->x,
2586 crtc->y);
Ville Syrjälä96a02912013-02-18 19:08:49 +02002587 mutex_unlock(&crtc->mutex);
2588 }
2589}
2590
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002591static int
Chris Wilson14667a42012-04-03 17:58:35 +01002592intel_finish_fb(struct drm_framebuffer *old_fb)
2593{
2594 struct drm_i915_gem_object *obj = to_intel_framebuffer(old_fb)->obj;
2595 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
2596 bool was_interruptible = dev_priv->mm.interruptible;
2597 int ret;
2598
Chris Wilson14667a42012-04-03 17:58:35 +01002599 /* Big Hammer, we also need to ensure that any pending
2600 * MI_WAIT_FOR_EVENT inside a user batch buffer on the
2601 * current scanout is retired before unpinning the old
2602 * framebuffer.
2603 *
2604 * This should only fail upon a hung GPU, in which case we
2605 * can safely continue.
2606 */
2607 dev_priv->mm.interruptible = false;
2608 ret = i915_gem_object_finish_gpu(obj);
2609 dev_priv->mm.interruptible = was_interruptible;
2610
2611 return ret;
2612}
2613
Chris Wilson7d5e3792014-03-04 13:15:08 +00002614static bool intel_crtc_has_pending_flip(struct drm_crtc *crtc)
2615{
2616 struct drm_device *dev = crtc->dev;
2617 struct drm_i915_private *dev_priv = dev->dev_private;
2618 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2619 unsigned long flags;
2620 bool pending;
2621
2622 if (i915_reset_in_progress(&dev_priv->gpu_error) ||
2623 intel_crtc->reset_counter != atomic_read(&dev_priv->gpu_error.reset_counter))
2624 return false;
2625
2626 spin_lock_irqsave(&dev->event_lock, flags);
2627 pending = to_intel_crtc(crtc)->unpin_work != NULL;
2628 spin_unlock_irqrestore(&dev->event_lock, flags);
2629
2630 return pending;
2631}
2632
Chris Wilson14667a42012-04-03 17:58:35 +01002633static int
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -05002634intel_pipe_set_base(struct drm_crtc *crtc, int x, int y,
Daniel Vetter94352cf2012-07-05 22:51:56 +02002635 struct drm_framebuffer *fb)
Jesse Barnes79e53942008-11-07 14:24:08 -08002636{
2637 struct drm_device *dev = crtc->dev;
Chris Wilson6b8e6ed2012-04-17 15:08:19 +01002638 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -08002639 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter94352cf2012-07-05 22:51:56 +02002640 struct drm_framebuffer *old_fb;
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002641 int ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08002642
Chris Wilson7d5e3792014-03-04 13:15:08 +00002643 if (intel_crtc_has_pending_flip(crtc)) {
2644 DRM_ERROR("pipe is still busy with an old pageflip\n");
2645 return -EBUSY;
2646 }
2647
Jesse Barnes79e53942008-11-07 14:24:08 -08002648 /* no fb bound */
Daniel Vetter94352cf2012-07-05 22:51:56 +02002649 if (!fb) {
Jesse Barnesa5071c22011-07-19 15:38:56 -07002650 DRM_ERROR("No FB bound\n");
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002651 return 0;
2652 }
2653
Ben Widawsky7eb552a2013-03-13 14:05:41 -07002654 if (intel_crtc->plane > INTEL_INFO(dev)->num_pipes) {
Ville Syrjälä84f44ce2013-04-17 17:48:49 +03002655 DRM_ERROR("no plane for crtc: plane %c, num_pipes %d\n",
2656 plane_name(intel_crtc->plane),
2657 INTEL_INFO(dev)->num_pipes);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002658 return -EINVAL;
Jesse Barnes79e53942008-11-07 14:24:08 -08002659 }
2660
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002661 mutex_lock(&dev->struct_mutex);
Chris Wilson265db952010-09-20 15:41:01 +01002662 ret = intel_pin_and_fence_fb_obj(dev,
Daniel Vetter94352cf2012-07-05 22:51:56 +02002663 to_intel_framebuffer(fb)->obj,
Chris Wilson919926a2010-11-12 13:42:53 +00002664 NULL);
Ville Syrjälä8ac36ec2014-03-11 19:37:33 +02002665 mutex_unlock(&dev->struct_mutex);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002666 if (ret != 0) {
Jesse Barnesa5071c22011-07-19 15:38:56 -07002667 DRM_ERROR("pin & fence failed\n");
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002668 return ret;
2669 }
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -05002670
Damien Lespiaubb2043d2013-09-30 14:21:49 +01002671 /*
2672 * Update pipe size and adjust fitter if needed: the reason for this is
2673 * that in compute_mode_changes we check the native mode (not the pfit
2674 * mode) to see if we can flip rather than do a full mode set. In the
2675 * fastboot case, we'll flip, but if we don't update the pipesrc and
2676 * pfit state, we'll end up with a big fb scanned out into the wrong
2677 * sized surface.
2678 *
2679 * To fix this properly, we need to hoist the checks up into
2680 * compute_mode_changes (or above), check the actual pfit state and
2681 * whether the platform allows pfit disable with pipe active, and only
2682 * then update the pipesrc and pfit state, even on the flip path.
2683 */
Jani Nikulad330a952014-01-21 11:24:25 +02002684 if (i915.fastboot) {
Damien Lespiaud7bf63f2013-09-30 14:21:50 +01002685 const struct drm_display_mode *adjusted_mode =
2686 &intel_crtc->config.adjusted_mode;
2687
Jesse Barnes4d6a3e62013-06-26 01:38:18 +03002688 I915_WRITE(PIPESRC(intel_crtc->pipe),
Damien Lespiaud7bf63f2013-09-30 14:21:50 +01002689 ((adjusted_mode->crtc_hdisplay - 1) << 16) |
2690 (adjusted_mode->crtc_vdisplay - 1));
Chris Wilsonfd4daa92013-08-27 17:04:17 +01002691 if (!intel_crtc->config.pch_pfit.enabled &&
Jesse Barnes4d6a3e62013-06-26 01:38:18 +03002692 (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) ||
2693 intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP))) {
2694 I915_WRITE(PF_CTL(intel_crtc->pipe), 0);
2695 I915_WRITE(PF_WIN_POS(intel_crtc->pipe), 0);
2696 I915_WRITE(PF_WIN_SZ(intel_crtc->pipe), 0);
2697 }
Jesse Barnes0637d602013-12-19 10:48:01 -08002698 intel_crtc->config.pipe_src_w = adjusted_mode->crtc_hdisplay;
2699 intel_crtc->config.pipe_src_h = adjusted_mode->crtc_vdisplay;
Jesse Barnes4d6a3e62013-06-26 01:38:18 +03002700 }
2701
Daniel Vetter29b9bde2014-04-24 23:55:01 +02002702 dev_priv->display.update_primary_plane(crtc, fb, x, y);
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -05002703
Matt Roperf4510a22014-04-01 15:22:40 -07002704 old_fb = crtc->primary->fb;
2705 crtc->primary->fb = fb;
Daniel Vetter6c4c86f2012-09-10 21:58:30 +02002706 crtc->x = x;
2707 crtc->y = y;
Daniel Vetter94352cf2012-07-05 22:51:56 +02002708
Chris Wilsonb7f1de22010-12-14 16:09:31 +00002709 if (old_fb) {
Daniel Vetterd7697ee2013-06-02 17:23:01 +02002710 if (intel_crtc->active && old_fb != fb)
2711 intel_wait_for_vblank(dev, intel_crtc->pipe);
Ville Syrjälä8ac36ec2014-03-11 19:37:33 +02002712 mutex_lock(&dev->struct_mutex);
Chris Wilson1690e1e2011-12-14 13:57:08 +01002713 intel_unpin_fb_obj(to_intel_framebuffer(old_fb)->obj);
Ville Syrjälä8ac36ec2014-03-11 19:37:33 +02002714 mutex_unlock(&dev->struct_mutex);
Chris Wilsonb7f1de22010-12-14 16:09:31 +00002715 }
Jesse Barnes652c3932009-08-17 13:31:43 -07002716
Ville Syrjälä8ac36ec2014-03-11 19:37:33 +02002717 mutex_lock(&dev->struct_mutex);
Chris Wilson6b8e6ed2012-04-17 15:08:19 +01002718 intel_update_fbc(dev);
Rodrigo Vivi49065572013-07-11 18:45:05 -03002719 intel_edp_psr_update(dev);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002720 mutex_unlock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -08002721
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002722 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08002723}
2724
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08002725static void intel_fdi_normal_train(struct drm_crtc *crtc)
2726{
2727 struct drm_device *dev = crtc->dev;
2728 struct drm_i915_private *dev_priv = dev->dev_private;
2729 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2730 int pipe = intel_crtc->pipe;
2731 u32 reg, temp;
2732
2733 /* enable normal train */
2734 reg = FDI_TX_CTL(pipe);
2735 temp = I915_READ(reg);
Keith Packard61e499b2011-05-17 16:13:52 -07002736 if (IS_IVYBRIDGE(dev)) {
Jesse Barnes357555c2011-04-28 15:09:55 -07002737 temp &= ~FDI_LINK_TRAIN_NONE_IVB;
2738 temp |= FDI_LINK_TRAIN_NONE_IVB | FDI_TX_ENHANCE_FRAME_ENABLE;
Keith Packard61e499b2011-05-17 16:13:52 -07002739 } else {
2740 temp &= ~FDI_LINK_TRAIN_NONE;
2741 temp |= FDI_LINK_TRAIN_NONE | FDI_TX_ENHANCE_FRAME_ENABLE;
Jesse Barnes357555c2011-04-28 15:09:55 -07002742 }
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08002743 I915_WRITE(reg, temp);
2744
2745 reg = FDI_RX_CTL(pipe);
2746 temp = I915_READ(reg);
2747 if (HAS_PCH_CPT(dev)) {
2748 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2749 temp |= FDI_LINK_TRAIN_NORMAL_CPT;
2750 } else {
2751 temp &= ~FDI_LINK_TRAIN_NONE;
2752 temp |= FDI_LINK_TRAIN_NONE;
2753 }
2754 I915_WRITE(reg, temp | FDI_RX_ENHANCE_FRAME_ENABLE);
2755
2756 /* wait one idle pattern time */
2757 POSTING_READ(reg);
2758 udelay(1000);
Jesse Barnes357555c2011-04-28 15:09:55 -07002759
2760 /* IVB wants error correction enabled */
2761 if (IS_IVYBRIDGE(dev))
2762 I915_WRITE(reg, I915_READ(reg) | FDI_FS_ERRC_ENABLE |
2763 FDI_FE_ERRC_ENABLE);
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08002764}
2765
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01002766static bool pipe_has_enabled_pch(struct intel_crtc *crtc)
Daniel Vetter1e833f42013-02-19 22:31:57 +01002767{
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01002768 return crtc->base.enabled && crtc->active &&
2769 crtc->config.has_pch_encoder;
Daniel Vetter1e833f42013-02-19 22:31:57 +01002770}
2771
Daniel Vetter01a415f2012-10-27 15:58:40 +02002772static void ivb_modeset_global_resources(struct drm_device *dev)
2773{
2774 struct drm_i915_private *dev_priv = dev->dev_private;
2775 struct intel_crtc *pipe_B_crtc =
2776 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[PIPE_B]);
2777 struct intel_crtc *pipe_C_crtc =
2778 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[PIPE_C]);
2779 uint32_t temp;
2780
Daniel Vetter1e833f42013-02-19 22:31:57 +01002781 /*
2782 * When everything is off disable fdi C so that we could enable fdi B
2783 * with all lanes. Note that we don't care about enabled pipes without
2784 * an enabled pch encoder.
2785 */
2786 if (!pipe_has_enabled_pch(pipe_B_crtc) &&
2787 !pipe_has_enabled_pch(pipe_C_crtc)) {
Daniel Vetter01a415f2012-10-27 15:58:40 +02002788 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_B)) & FDI_RX_ENABLE);
2789 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_C)) & FDI_RX_ENABLE);
2790
2791 temp = I915_READ(SOUTH_CHICKEN1);
2792 temp &= ~FDI_BC_BIFURCATION_SELECT;
2793 DRM_DEBUG_KMS("disabling fdi C rx\n");
2794 I915_WRITE(SOUTH_CHICKEN1, temp);
2795 }
2796}
2797
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002798/* The FDI link training functions for ILK/Ibexpeak. */
2799static void ironlake_fdi_link_train(struct drm_crtc *crtc)
2800{
2801 struct drm_device *dev = crtc->dev;
2802 struct drm_i915_private *dev_priv = dev->dev_private;
2803 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2804 int pipe = intel_crtc->pipe;
Chris Wilson5eddb702010-09-11 13:48:45 +01002805 u32 reg, temp, tries;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002806
Ville Syrjälä1c8562f2014-04-25 22:12:07 +03002807 /* FDI needs bits from pipe first */
Jesse Barnes0fc932b2011-01-04 15:09:37 -08002808 assert_pipe_enabled(dev_priv, pipe);
Jesse Barnes0fc932b2011-01-04 15:09:37 -08002809
Adam Jacksone1a44742010-06-25 15:32:14 -04002810 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
2811 for train result */
Chris Wilson5eddb702010-09-11 13:48:45 +01002812 reg = FDI_RX_IMR(pipe);
2813 temp = I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04002814 temp &= ~FDI_RX_SYMBOL_LOCK;
2815 temp &= ~FDI_RX_BIT_LOCK;
Chris Wilson5eddb702010-09-11 13:48:45 +01002816 I915_WRITE(reg, temp);
2817 I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04002818 udelay(150);
2819
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002820 /* enable CPU FDI TX and PCH FDI RX */
Chris Wilson5eddb702010-09-11 13:48:45 +01002821 reg = FDI_TX_CTL(pipe);
2822 temp = I915_READ(reg);
Daniel Vetter627eb5a2013-04-29 19:33:42 +02002823 temp &= ~FDI_DP_PORT_WIDTH_MASK;
2824 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config.fdi_lanes);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002825 temp &= ~FDI_LINK_TRAIN_NONE;
2826 temp |= FDI_LINK_TRAIN_PATTERN_1;
Chris Wilson5eddb702010-09-11 13:48:45 +01002827 I915_WRITE(reg, temp | FDI_TX_ENABLE);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002828
Chris Wilson5eddb702010-09-11 13:48:45 +01002829 reg = FDI_RX_CTL(pipe);
2830 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002831 temp &= ~FDI_LINK_TRAIN_NONE;
2832 temp |= FDI_LINK_TRAIN_PATTERN_1;
Chris Wilson5eddb702010-09-11 13:48:45 +01002833 I915_WRITE(reg, temp | FDI_RX_ENABLE);
2834
2835 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002836 udelay(150);
2837
Jesse Barnes5b2adf82010-10-07 16:01:15 -07002838 /* Ironlake workaround, enable clock pointer after FDI enable*/
Daniel Vetter8f5718a2012-10-31 22:52:28 +01002839 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR);
2840 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR |
2841 FDI_RX_PHASE_SYNC_POINTER_EN);
Jesse Barnes5b2adf82010-10-07 16:01:15 -07002842
Chris Wilson5eddb702010-09-11 13:48:45 +01002843 reg = FDI_RX_IIR(pipe);
Adam Jacksone1a44742010-06-25 15:32:14 -04002844 for (tries = 0; tries < 5; tries++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002845 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002846 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2847
2848 if ((temp & FDI_RX_BIT_LOCK)) {
2849 DRM_DEBUG_KMS("FDI train 1 done.\n");
Chris Wilson5eddb702010-09-11 13:48:45 +01002850 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002851 break;
2852 }
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002853 }
Adam Jacksone1a44742010-06-25 15:32:14 -04002854 if (tries == 5)
Chris Wilson5eddb702010-09-11 13:48:45 +01002855 DRM_ERROR("FDI train 1 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002856
2857 /* Train 2 */
Chris Wilson5eddb702010-09-11 13:48:45 +01002858 reg = FDI_TX_CTL(pipe);
2859 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002860 temp &= ~FDI_LINK_TRAIN_NONE;
2861 temp |= FDI_LINK_TRAIN_PATTERN_2;
Chris Wilson5eddb702010-09-11 13:48:45 +01002862 I915_WRITE(reg, temp);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002863
Chris Wilson5eddb702010-09-11 13:48:45 +01002864 reg = FDI_RX_CTL(pipe);
2865 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002866 temp &= ~FDI_LINK_TRAIN_NONE;
2867 temp |= FDI_LINK_TRAIN_PATTERN_2;
Chris Wilson5eddb702010-09-11 13:48:45 +01002868 I915_WRITE(reg, temp);
2869
2870 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002871 udelay(150);
2872
Chris Wilson5eddb702010-09-11 13:48:45 +01002873 reg = FDI_RX_IIR(pipe);
Adam Jacksone1a44742010-06-25 15:32:14 -04002874 for (tries = 0; tries < 5; tries++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002875 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002876 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2877
2878 if (temp & FDI_RX_SYMBOL_LOCK) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002879 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002880 DRM_DEBUG_KMS("FDI train 2 done.\n");
2881 break;
2882 }
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002883 }
Adam Jacksone1a44742010-06-25 15:32:14 -04002884 if (tries == 5)
Chris Wilson5eddb702010-09-11 13:48:45 +01002885 DRM_ERROR("FDI train 2 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002886
2887 DRM_DEBUG_KMS("FDI train done\n");
Jesse Barnes5c5313c2010-10-07 16:01:11 -07002888
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002889}
2890
Akshay Joshi0206e352011-08-16 15:34:10 -04002891static const int snb_b_fdi_train_param[] = {
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002892 FDI_LINK_TRAIN_400MV_0DB_SNB_B,
2893 FDI_LINK_TRAIN_400MV_6DB_SNB_B,
2894 FDI_LINK_TRAIN_600MV_3_5DB_SNB_B,
2895 FDI_LINK_TRAIN_800MV_0DB_SNB_B,
2896};
2897
2898/* The FDI link training functions for SNB/Cougarpoint. */
2899static void gen6_fdi_link_train(struct drm_crtc *crtc)
2900{
2901 struct drm_device *dev = crtc->dev;
2902 struct drm_i915_private *dev_priv = dev->dev_private;
2903 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2904 int pipe = intel_crtc->pipe;
Sean Paulfa37d392012-03-02 12:53:39 -05002905 u32 reg, temp, i, retry;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002906
Adam Jacksone1a44742010-06-25 15:32:14 -04002907 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
2908 for train result */
Chris Wilson5eddb702010-09-11 13:48:45 +01002909 reg = FDI_RX_IMR(pipe);
2910 temp = I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04002911 temp &= ~FDI_RX_SYMBOL_LOCK;
2912 temp &= ~FDI_RX_BIT_LOCK;
Chris Wilson5eddb702010-09-11 13:48:45 +01002913 I915_WRITE(reg, temp);
2914
2915 POSTING_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04002916 udelay(150);
2917
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002918 /* enable CPU FDI TX and PCH FDI RX */
Chris Wilson5eddb702010-09-11 13:48:45 +01002919 reg = FDI_TX_CTL(pipe);
2920 temp = I915_READ(reg);
Daniel Vetter627eb5a2013-04-29 19:33:42 +02002921 temp &= ~FDI_DP_PORT_WIDTH_MASK;
2922 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config.fdi_lanes);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002923 temp &= ~FDI_LINK_TRAIN_NONE;
2924 temp |= FDI_LINK_TRAIN_PATTERN_1;
2925 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2926 /* SNB-B */
2927 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
Chris Wilson5eddb702010-09-11 13:48:45 +01002928 I915_WRITE(reg, temp | FDI_TX_ENABLE);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002929
Daniel Vetterd74cf322012-10-26 10:58:13 +02002930 I915_WRITE(FDI_RX_MISC(pipe),
2931 FDI_RX_TP1_TO_TP2_48 | FDI_RX_FDI_DELAY_90);
2932
Chris Wilson5eddb702010-09-11 13:48:45 +01002933 reg = FDI_RX_CTL(pipe);
2934 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002935 if (HAS_PCH_CPT(dev)) {
2936 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2937 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
2938 } else {
2939 temp &= ~FDI_LINK_TRAIN_NONE;
2940 temp |= FDI_LINK_TRAIN_PATTERN_1;
2941 }
Chris Wilson5eddb702010-09-11 13:48:45 +01002942 I915_WRITE(reg, temp | FDI_RX_ENABLE);
2943
2944 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002945 udelay(150);
2946
Akshay Joshi0206e352011-08-16 15:34:10 -04002947 for (i = 0; i < 4; i++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002948 reg = FDI_TX_CTL(pipe);
2949 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002950 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2951 temp |= snb_b_fdi_train_param[i];
Chris Wilson5eddb702010-09-11 13:48:45 +01002952 I915_WRITE(reg, temp);
2953
2954 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002955 udelay(500);
2956
Sean Paulfa37d392012-03-02 12:53:39 -05002957 for (retry = 0; retry < 5; retry++) {
2958 reg = FDI_RX_IIR(pipe);
2959 temp = I915_READ(reg);
2960 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2961 if (temp & FDI_RX_BIT_LOCK) {
2962 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
2963 DRM_DEBUG_KMS("FDI train 1 done.\n");
2964 break;
2965 }
2966 udelay(50);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002967 }
Sean Paulfa37d392012-03-02 12:53:39 -05002968 if (retry < 5)
2969 break;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002970 }
2971 if (i == 4)
Chris Wilson5eddb702010-09-11 13:48:45 +01002972 DRM_ERROR("FDI train 1 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002973
2974 /* Train 2 */
Chris Wilson5eddb702010-09-11 13:48:45 +01002975 reg = FDI_TX_CTL(pipe);
2976 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002977 temp &= ~FDI_LINK_TRAIN_NONE;
2978 temp |= FDI_LINK_TRAIN_PATTERN_2;
2979 if (IS_GEN6(dev)) {
2980 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2981 /* SNB-B */
2982 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
2983 }
Chris Wilson5eddb702010-09-11 13:48:45 +01002984 I915_WRITE(reg, temp);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002985
Chris Wilson5eddb702010-09-11 13:48:45 +01002986 reg = FDI_RX_CTL(pipe);
2987 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002988 if (HAS_PCH_CPT(dev)) {
2989 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2990 temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
2991 } else {
2992 temp &= ~FDI_LINK_TRAIN_NONE;
2993 temp |= FDI_LINK_TRAIN_PATTERN_2;
2994 }
Chris Wilson5eddb702010-09-11 13:48:45 +01002995 I915_WRITE(reg, temp);
2996
2997 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002998 udelay(150);
2999
Akshay Joshi0206e352011-08-16 15:34:10 -04003000 for (i = 0; i < 4; i++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01003001 reg = FDI_TX_CTL(pipe);
3002 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003003 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3004 temp |= snb_b_fdi_train_param[i];
Chris Wilson5eddb702010-09-11 13:48:45 +01003005 I915_WRITE(reg, temp);
3006
3007 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003008 udelay(500);
3009
Sean Paulfa37d392012-03-02 12:53:39 -05003010 for (retry = 0; retry < 5; retry++) {
3011 reg = FDI_RX_IIR(pipe);
3012 temp = I915_READ(reg);
3013 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3014 if (temp & FDI_RX_SYMBOL_LOCK) {
3015 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
3016 DRM_DEBUG_KMS("FDI train 2 done.\n");
3017 break;
3018 }
3019 udelay(50);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003020 }
Sean Paulfa37d392012-03-02 12:53:39 -05003021 if (retry < 5)
3022 break;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003023 }
3024 if (i == 4)
Chris Wilson5eddb702010-09-11 13:48:45 +01003025 DRM_ERROR("FDI train 2 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003026
3027 DRM_DEBUG_KMS("FDI train done.\n");
3028}
3029
Jesse Barnes357555c2011-04-28 15:09:55 -07003030/* Manual link training for Ivy Bridge A0 parts */
3031static void ivb_manual_fdi_link_train(struct drm_crtc *crtc)
3032{
3033 struct drm_device *dev = crtc->dev;
3034 struct drm_i915_private *dev_priv = dev->dev_private;
3035 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3036 int pipe = intel_crtc->pipe;
Jesse Barnes139ccd32013-08-19 11:04:55 -07003037 u32 reg, temp, i, j;
Jesse Barnes357555c2011-04-28 15:09:55 -07003038
3039 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
3040 for train result */
3041 reg = FDI_RX_IMR(pipe);
3042 temp = I915_READ(reg);
3043 temp &= ~FDI_RX_SYMBOL_LOCK;
3044 temp &= ~FDI_RX_BIT_LOCK;
3045 I915_WRITE(reg, temp);
3046
3047 POSTING_READ(reg);
3048 udelay(150);
3049
Daniel Vetter01a415f2012-10-27 15:58:40 +02003050 DRM_DEBUG_KMS("FDI_RX_IIR before link train 0x%x\n",
3051 I915_READ(FDI_RX_IIR(pipe)));
3052
Jesse Barnes139ccd32013-08-19 11:04:55 -07003053 /* Try each vswing and preemphasis setting twice before moving on */
3054 for (j = 0; j < ARRAY_SIZE(snb_b_fdi_train_param) * 2; j++) {
3055 /* disable first in case we need to retry */
Jesse Barnes357555c2011-04-28 15:09:55 -07003056 reg = FDI_TX_CTL(pipe);
3057 temp = I915_READ(reg);
Jesse Barnes139ccd32013-08-19 11:04:55 -07003058 temp &= ~(FDI_LINK_TRAIN_AUTO | FDI_LINK_TRAIN_NONE_IVB);
3059 temp &= ~FDI_TX_ENABLE;
3060 I915_WRITE(reg, temp);
3061
3062 reg = FDI_RX_CTL(pipe);
3063 temp = I915_READ(reg);
3064 temp &= ~FDI_LINK_TRAIN_AUTO;
3065 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3066 temp &= ~FDI_RX_ENABLE;
3067 I915_WRITE(reg, temp);
3068
3069 /* enable CPU FDI TX and PCH FDI RX */
3070 reg = FDI_TX_CTL(pipe);
3071 temp = I915_READ(reg);
3072 temp &= ~FDI_DP_PORT_WIDTH_MASK;
3073 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config.fdi_lanes);
3074 temp |= FDI_LINK_TRAIN_PATTERN_1_IVB;
Jesse Barnes357555c2011-04-28 15:09:55 -07003075 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
Jesse Barnes139ccd32013-08-19 11:04:55 -07003076 temp |= snb_b_fdi_train_param[j/2];
3077 temp |= FDI_COMPOSITE_SYNC;
3078 I915_WRITE(reg, temp | FDI_TX_ENABLE);
3079
3080 I915_WRITE(FDI_RX_MISC(pipe),
3081 FDI_RX_TP1_TO_TP2_48 | FDI_RX_FDI_DELAY_90);
3082
3083 reg = FDI_RX_CTL(pipe);
3084 temp = I915_READ(reg);
3085 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
3086 temp |= FDI_COMPOSITE_SYNC;
3087 I915_WRITE(reg, temp | FDI_RX_ENABLE);
3088
3089 POSTING_READ(reg);
3090 udelay(1); /* should be 0.5us */
3091
3092 for (i = 0; i < 4; i++) {
3093 reg = FDI_RX_IIR(pipe);
3094 temp = I915_READ(reg);
3095 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3096
3097 if (temp & FDI_RX_BIT_LOCK ||
3098 (I915_READ(reg) & FDI_RX_BIT_LOCK)) {
3099 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
3100 DRM_DEBUG_KMS("FDI train 1 done, level %i.\n",
3101 i);
3102 break;
3103 }
3104 udelay(1); /* should be 0.5us */
3105 }
3106 if (i == 4) {
3107 DRM_DEBUG_KMS("FDI train 1 fail on vswing %d\n", j / 2);
3108 continue;
3109 }
3110
3111 /* Train 2 */
3112 reg = FDI_TX_CTL(pipe);
3113 temp = I915_READ(reg);
3114 temp &= ~FDI_LINK_TRAIN_NONE_IVB;
3115 temp |= FDI_LINK_TRAIN_PATTERN_2_IVB;
3116 I915_WRITE(reg, temp);
3117
3118 reg = FDI_RX_CTL(pipe);
3119 temp = I915_READ(reg);
3120 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3121 temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
Jesse Barnes357555c2011-04-28 15:09:55 -07003122 I915_WRITE(reg, temp);
3123
3124 POSTING_READ(reg);
Jesse Barnes139ccd32013-08-19 11:04:55 -07003125 udelay(2); /* should be 1.5us */
Jesse Barnes357555c2011-04-28 15:09:55 -07003126
Jesse Barnes139ccd32013-08-19 11:04:55 -07003127 for (i = 0; i < 4; i++) {
3128 reg = FDI_RX_IIR(pipe);
3129 temp = I915_READ(reg);
3130 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
Jesse Barnes357555c2011-04-28 15:09:55 -07003131
Jesse Barnes139ccd32013-08-19 11:04:55 -07003132 if (temp & FDI_RX_SYMBOL_LOCK ||
3133 (I915_READ(reg) & FDI_RX_SYMBOL_LOCK)) {
3134 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
3135 DRM_DEBUG_KMS("FDI train 2 done, level %i.\n",
3136 i);
3137 goto train_done;
3138 }
3139 udelay(2); /* should be 1.5us */
Jesse Barnes357555c2011-04-28 15:09:55 -07003140 }
Jesse Barnes139ccd32013-08-19 11:04:55 -07003141 if (i == 4)
3142 DRM_DEBUG_KMS("FDI train 2 fail on vswing %d\n", j / 2);
Jesse Barnes357555c2011-04-28 15:09:55 -07003143 }
Jesse Barnes357555c2011-04-28 15:09:55 -07003144
Jesse Barnes139ccd32013-08-19 11:04:55 -07003145train_done:
Jesse Barnes357555c2011-04-28 15:09:55 -07003146 DRM_DEBUG_KMS("FDI train done.\n");
3147}
3148
Daniel Vetter88cefb62012-08-12 19:27:14 +02003149static void ironlake_fdi_pll_enable(struct intel_crtc *intel_crtc)
Jesse Barnes0e23b992010-09-10 11:10:00 -07003150{
Daniel Vetter88cefb62012-08-12 19:27:14 +02003151 struct drm_device *dev = intel_crtc->base.dev;
Jesse Barnes0e23b992010-09-10 11:10:00 -07003152 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes0e23b992010-09-10 11:10:00 -07003153 int pipe = intel_crtc->pipe;
Chris Wilson5eddb702010-09-11 13:48:45 +01003154 u32 reg, temp;
Jesse Barnes0e23b992010-09-10 11:10:00 -07003155
Jesse Barnesc64e3112010-09-10 11:27:03 -07003156
Jesse Barnes0e23b992010-09-10 11:10:00 -07003157 /* enable PCH FDI RX PLL, wait warmup plus DMI latency */
Chris Wilson5eddb702010-09-11 13:48:45 +01003158 reg = FDI_RX_CTL(pipe);
3159 temp = I915_READ(reg);
Daniel Vetter627eb5a2013-04-29 19:33:42 +02003160 temp &= ~(FDI_DP_PORT_WIDTH_MASK | (0x7 << 16));
3161 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config.fdi_lanes);
Daniel Vetterdfd07d72012-12-17 11:21:38 +01003162 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
Chris Wilson5eddb702010-09-11 13:48:45 +01003163 I915_WRITE(reg, temp | FDI_RX_PLL_ENABLE);
3164
3165 POSTING_READ(reg);
Jesse Barnes0e23b992010-09-10 11:10:00 -07003166 udelay(200);
3167
3168 /* Switch from Rawclk to PCDclk */
Chris Wilson5eddb702010-09-11 13:48:45 +01003169 temp = I915_READ(reg);
3170 I915_WRITE(reg, temp | FDI_PCDCLK);
3171
3172 POSTING_READ(reg);
Jesse Barnes0e23b992010-09-10 11:10:00 -07003173 udelay(200);
3174
Paulo Zanoni20749732012-11-23 15:30:38 -02003175 /* Enable CPU FDI TX PLL, always on for Ironlake */
3176 reg = FDI_TX_CTL(pipe);
3177 temp = I915_READ(reg);
3178 if ((temp & FDI_TX_PLL_ENABLE) == 0) {
3179 I915_WRITE(reg, temp | FDI_TX_PLL_ENABLE);
Chris Wilson5eddb702010-09-11 13:48:45 +01003180
Paulo Zanoni20749732012-11-23 15:30:38 -02003181 POSTING_READ(reg);
3182 udelay(100);
Jesse Barnes0e23b992010-09-10 11:10:00 -07003183 }
3184}
3185
Daniel Vetter88cefb62012-08-12 19:27:14 +02003186static void ironlake_fdi_pll_disable(struct intel_crtc *intel_crtc)
3187{
3188 struct drm_device *dev = intel_crtc->base.dev;
3189 struct drm_i915_private *dev_priv = dev->dev_private;
3190 int pipe = intel_crtc->pipe;
3191 u32 reg, temp;
3192
3193 /* Switch from PCDclk to Rawclk */
3194 reg = FDI_RX_CTL(pipe);
3195 temp = I915_READ(reg);
3196 I915_WRITE(reg, temp & ~FDI_PCDCLK);
3197
3198 /* Disable CPU FDI TX PLL */
3199 reg = FDI_TX_CTL(pipe);
3200 temp = I915_READ(reg);
3201 I915_WRITE(reg, temp & ~FDI_TX_PLL_ENABLE);
3202
3203 POSTING_READ(reg);
3204 udelay(100);
3205
3206 reg = FDI_RX_CTL(pipe);
3207 temp = I915_READ(reg);
3208 I915_WRITE(reg, temp & ~FDI_RX_PLL_ENABLE);
3209
3210 /* Wait for the clocks to turn off. */
3211 POSTING_READ(reg);
3212 udelay(100);
3213}
3214
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003215static void ironlake_fdi_disable(struct drm_crtc *crtc)
3216{
3217 struct drm_device *dev = crtc->dev;
3218 struct drm_i915_private *dev_priv = dev->dev_private;
3219 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3220 int pipe = intel_crtc->pipe;
3221 u32 reg, temp;
3222
3223 /* disable CPU FDI tx and PCH FDI rx */
3224 reg = FDI_TX_CTL(pipe);
3225 temp = I915_READ(reg);
3226 I915_WRITE(reg, temp & ~FDI_TX_ENABLE);
3227 POSTING_READ(reg);
3228
3229 reg = FDI_RX_CTL(pipe);
3230 temp = I915_READ(reg);
3231 temp &= ~(0x7 << 16);
Daniel Vetterdfd07d72012-12-17 11:21:38 +01003232 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003233 I915_WRITE(reg, temp & ~FDI_RX_ENABLE);
3234
3235 POSTING_READ(reg);
3236 udelay(100);
3237
3238 /* Ironlake workaround, disable clock pointer after downing FDI */
Robin Schroereba905b2014-05-18 02:24:50 +02003239 if (HAS_PCH_IBX(dev))
Jesse Barnes6f06ce12011-01-04 15:09:38 -08003240 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR);
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003241
3242 /* still set train pattern 1 */
3243 reg = FDI_TX_CTL(pipe);
3244 temp = I915_READ(reg);
3245 temp &= ~FDI_LINK_TRAIN_NONE;
3246 temp |= FDI_LINK_TRAIN_PATTERN_1;
3247 I915_WRITE(reg, temp);
3248
3249 reg = FDI_RX_CTL(pipe);
3250 temp = I915_READ(reg);
3251 if (HAS_PCH_CPT(dev)) {
3252 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3253 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
3254 } else {
3255 temp &= ~FDI_LINK_TRAIN_NONE;
3256 temp |= FDI_LINK_TRAIN_PATTERN_1;
3257 }
3258 /* BPC in FDI rx is consistent with that in PIPECONF */
3259 temp &= ~(0x07 << 16);
Daniel Vetterdfd07d72012-12-17 11:21:38 +01003260 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003261 I915_WRITE(reg, temp);
3262
3263 POSTING_READ(reg);
3264 udelay(100);
3265}
3266
Chris Wilson5dce5b932014-01-20 10:17:36 +00003267bool intel_has_pending_fb_unpin(struct drm_device *dev)
3268{
3269 struct intel_crtc *crtc;
3270
3271 /* Note that we don't need to be called with mode_config.lock here
3272 * as our list of CRTC objects is static for the lifetime of the
3273 * device and so cannot disappear as we iterate. Similarly, we can
3274 * happily treat the predicates as racy, atomic checks as userspace
3275 * cannot claim and pin a new fb without at least acquring the
3276 * struct_mutex and so serialising with us.
3277 */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01003278 for_each_intel_crtc(dev, crtc) {
Chris Wilson5dce5b932014-01-20 10:17:36 +00003279 if (atomic_read(&crtc->unpin_work_count) == 0)
3280 continue;
3281
3282 if (crtc->unpin_work)
3283 intel_wait_for_vblank(dev, crtc->pipe);
3284
3285 return true;
3286 }
3287
3288 return false;
3289}
3290
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01003291static void intel_crtc_wait_for_pending_flips(struct drm_crtc *crtc)
3292{
Chris Wilson0f911282012-04-17 10:05:38 +01003293 struct drm_device *dev = crtc->dev;
Chris Wilson5bb61642012-09-27 21:25:58 +01003294 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01003295
Matt Roperf4510a22014-04-01 15:22:40 -07003296 if (crtc->primary->fb == NULL)
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01003297 return;
3298
Daniel Vetter2c10d572012-12-20 21:24:07 +01003299 WARN_ON(waitqueue_active(&dev_priv->pending_flip_queue));
3300
Daniel Vettereed6d672014-05-19 16:09:35 +02003301 WARN_ON(wait_event_timeout(dev_priv->pending_flip_queue,
3302 !intel_crtc_has_pending_flip(crtc),
3303 60*HZ) == 0);
Chris Wilson5bb61642012-09-27 21:25:58 +01003304
Chris Wilson0f911282012-04-17 10:05:38 +01003305 mutex_lock(&dev->struct_mutex);
Matt Roperf4510a22014-04-01 15:22:40 -07003306 intel_finish_fb(crtc->primary->fb);
Chris Wilson0f911282012-04-17 10:05:38 +01003307 mutex_unlock(&dev->struct_mutex);
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01003308}
3309
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003310/* Program iCLKIP clock to the desired frequency */
3311static void lpt_program_iclkip(struct drm_crtc *crtc)
3312{
3313 struct drm_device *dev = crtc->dev;
3314 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiau241bfc32013-09-25 16:45:37 +01003315 int clock = to_intel_crtc(crtc)->config.adjusted_mode.crtc_clock;
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003316 u32 divsel, phaseinc, auxdiv, phasedir = 0;
3317 u32 temp;
3318
Daniel Vetter09153002012-12-12 14:06:44 +01003319 mutex_lock(&dev_priv->dpio_lock);
3320
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003321 /* It is necessary to ungate the pixclk gate prior to programming
3322 * the divisors, and gate it back when it is done.
3323 */
3324 I915_WRITE(PIXCLK_GATE, PIXCLK_GATE_GATE);
3325
3326 /* Disable SSCCTL */
3327 intel_sbi_write(dev_priv, SBI_SSCCTL6,
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003328 intel_sbi_read(dev_priv, SBI_SSCCTL6, SBI_ICLK) |
3329 SBI_SSCCTL_DISABLE,
3330 SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003331
3332 /* 20MHz is a corner case which is out of range for the 7-bit divisor */
Ville Syrjälä12d7cee2013-09-04 18:25:19 +03003333 if (clock == 20000) {
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003334 auxdiv = 1;
3335 divsel = 0x41;
3336 phaseinc = 0x20;
3337 } else {
3338 /* The iCLK virtual clock root frequency is in MHz,
Damien Lespiau241bfc32013-09-25 16:45:37 +01003339 * but the adjusted_mode->crtc_clock in in KHz. To get the
3340 * divisors, it is necessary to divide one by another, so we
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003341 * convert the virtual clock precision to KHz here for higher
3342 * precision.
3343 */
3344 u32 iclk_virtual_root_freq = 172800 * 1000;
3345 u32 iclk_pi_range = 64;
3346 u32 desired_divisor, msb_divisor_value, pi_value;
3347
Ville Syrjälä12d7cee2013-09-04 18:25:19 +03003348 desired_divisor = (iclk_virtual_root_freq / clock);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003349 msb_divisor_value = desired_divisor / iclk_pi_range;
3350 pi_value = desired_divisor % iclk_pi_range;
3351
3352 auxdiv = 0;
3353 divsel = msb_divisor_value - 2;
3354 phaseinc = pi_value;
3355 }
3356
3357 /* This should not happen with any sane values */
3358 WARN_ON(SBI_SSCDIVINTPHASE_DIVSEL(divsel) &
3359 ~SBI_SSCDIVINTPHASE_DIVSEL_MASK);
3360 WARN_ON(SBI_SSCDIVINTPHASE_DIR(phasedir) &
3361 ~SBI_SSCDIVINTPHASE_INCVAL_MASK);
3362
3363 DRM_DEBUG_KMS("iCLKIP clock: found settings for %dKHz refresh rate: auxdiv=%x, divsel=%x, phasedir=%x, phaseinc=%x\n",
Ville Syrjälä12d7cee2013-09-04 18:25:19 +03003364 clock,
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003365 auxdiv,
3366 divsel,
3367 phasedir,
3368 phaseinc);
3369
3370 /* Program SSCDIVINTPHASE6 */
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003371 temp = intel_sbi_read(dev_priv, SBI_SSCDIVINTPHASE6, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003372 temp &= ~SBI_SSCDIVINTPHASE_DIVSEL_MASK;
3373 temp |= SBI_SSCDIVINTPHASE_DIVSEL(divsel);
3374 temp &= ~SBI_SSCDIVINTPHASE_INCVAL_MASK;
3375 temp |= SBI_SSCDIVINTPHASE_INCVAL(phaseinc);
3376 temp |= SBI_SSCDIVINTPHASE_DIR(phasedir);
3377 temp |= SBI_SSCDIVINTPHASE_PROPAGATE;
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003378 intel_sbi_write(dev_priv, SBI_SSCDIVINTPHASE6, temp, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003379
3380 /* Program SSCAUXDIV */
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003381 temp = intel_sbi_read(dev_priv, SBI_SSCAUXDIV6, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003382 temp &= ~SBI_SSCAUXDIV_FINALDIV2SEL(1);
3383 temp |= SBI_SSCAUXDIV_FINALDIV2SEL(auxdiv);
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003384 intel_sbi_write(dev_priv, SBI_SSCAUXDIV6, temp, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003385
3386 /* Enable modulator and associated divider */
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003387 temp = intel_sbi_read(dev_priv, SBI_SSCCTL6, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003388 temp &= ~SBI_SSCCTL_DISABLE;
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003389 intel_sbi_write(dev_priv, SBI_SSCCTL6, temp, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003390
3391 /* Wait for initialization time */
3392 udelay(24);
3393
3394 I915_WRITE(PIXCLK_GATE, PIXCLK_GATE_UNGATE);
Daniel Vetter09153002012-12-12 14:06:44 +01003395
3396 mutex_unlock(&dev_priv->dpio_lock);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003397}
3398
Daniel Vetter275f01b22013-05-03 11:49:47 +02003399static void ironlake_pch_transcoder_set_timings(struct intel_crtc *crtc,
3400 enum pipe pch_transcoder)
3401{
3402 struct drm_device *dev = crtc->base.dev;
3403 struct drm_i915_private *dev_priv = dev->dev_private;
3404 enum transcoder cpu_transcoder = crtc->config.cpu_transcoder;
3405
3406 I915_WRITE(PCH_TRANS_HTOTAL(pch_transcoder),
3407 I915_READ(HTOTAL(cpu_transcoder)));
3408 I915_WRITE(PCH_TRANS_HBLANK(pch_transcoder),
3409 I915_READ(HBLANK(cpu_transcoder)));
3410 I915_WRITE(PCH_TRANS_HSYNC(pch_transcoder),
3411 I915_READ(HSYNC(cpu_transcoder)));
3412
3413 I915_WRITE(PCH_TRANS_VTOTAL(pch_transcoder),
3414 I915_READ(VTOTAL(cpu_transcoder)));
3415 I915_WRITE(PCH_TRANS_VBLANK(pch_transcoder),
3416 I915_READ(VBLANK(cpu_transcoder)));
3417 I915_WRITE(PCH_TRANS_VSYNC(pch_transcoder),
3418 I915_READ(VSYNC(cpu_transcoder)));
3419 I915_WRITE(PCH_TRANS_VSYNCSHIFT(pch_transcoder),
3420 I915_READ(VSYNCSHIFT(cpu_transcoder)));
3421}
3422
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01003423static void cpt_enable_fdi_bc_bifurcation(struct drm_device *dev)
3424{
3425 struct drm_i915_private *dev_priv = dev->dev_private;
3426 uint32_t temp;
3427
3428 temp = I915_READ(SOUTH_CHICKEN1);
3429 if (temp & FDI_BC_BIFURCATION_SELECT)
3430 return;
3431
3432 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_B)) & FDI_RX_ENABLE);
3433 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_C)) & FDI_RX_ENABLE);
3434
3435 temp |= FDI_BC_BIFURCATION_SELECT;
3436 DRM_DEBUG_KMS("enabling fdi C rx\n");
3437 I915_WRITE(SOUTH_CHICKEN1, temp);
3438 POSTING_READ(SOUTH_CHICKEN1);
3439}
3440
3441static void ivybridge_update_fdi_bc_bifurcation(struct intel_crtc *intel_crtc)
3442{
3443 struct drm_device *dev = intel_crtc->base.dev;
3444 struct drm_i915_private *dev_priv = dev->dev_private;
3445
3446 switch (intel_crtc->pipe) {
3447 case PIPE_A:
3448 break;
3449 case PIPE_B:
3450 if (intel_crtc->config.fdi_lanes > 2)
3451 WARN_ON(I915_READ(SOUTH_CHICKEN1) & FDI_BC_BIFURCATION_SELECT);
3452 else
3453 cpt_enable_fdi_bc_bifurcation(dev);
3454
3455 break;
3456 case PIPE_C:
3457 cpt_enable_fdi_bc_bifurcation(dev);
3458
3459 break;
3460 default:
3461 BUG();
3462 }
3463}
3464
Jesse Barnesf67a5592011-01-05 10:31:48 -08003465/*
3466 * Enable PCH resources required for PCH ports:
3467 * - PCH PLLs
3468 * - FDI training & RX/TX
3469 * - update transcoder timings
3470 * - DP transcoding bits
3471 * - transcoder
3472 */
3473static void ironlake_pch_enable(struct drm_crtc *crtc)
Jesse Barnes79e53942008-11-07 14:24:08 -08003474{
3475 struct drm_device *dev = crtc->dev;
Zhenyu Wang2c072452009-06-05 15:38:42 +08003476 struct drm_i915_private *dev_priv = dev->dev_private;
3477 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3478 int pipe = intel_crtc->pipe;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003479 u32 reg, temp;
Jesse Barnes6be4a602010-09-10 10:26:01 -07003480
Daniel Vetterab9412b2013-05-03 11:49:46 +02003481 assert_pch_transcoder_disabled(dev_priv, pipe);
Chris Wilsone7e164d2012-05-11 09:21:25 +01003482
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01003483 if (IS_IVYBRIDGE(dev))
3484 ivybridge_update_fdi_bc_bifurcation(intel_crtc);
3485
Daniel Vettercd986ab2012-10-26 10:58:12 +02003486 /* Write the TU size bits before fdi link training, so that error
3487 * detection works. */
3488 I915_WRITE(FDI_RX_TUSIZE1(pipe),
3489 I915_READ(PIPE_DATA_M1(pipe)) & TU_SIZE_MASK);
3490
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003491 /* For PCH output, training FDI link */
Jesse Barnes674cf962011-04-28 14:27:04 -07003492 dev_priv->display.fdi_link_train(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003493
Daniel Vetter3ad8a202013-06-05 13:34:32 +02003494 /* We need to program the right clock selection before writing the pixel
3495 * mutliplier into the DPLL. */
Paulo Zanoni303b81e2012-10-31 18:12:23 -02003496 if (HAS_PCH_CPT(dev)) {
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003497 u32 sel;
Jesse Barnes4b645f12011-10-12 09:51:31 -07003498
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003499 temp = I915_READ(PCH_DPLL_SEL);
Daniel Vetter11887392013-06-05 13:34:09 +02003500 temp |= TRANS_DPLL_ENABLE(pipe);
3501 sel = TRANS_DPLLB_SEL(pipe);
Daniel Vettera43f6e02013-06-07 23:10:32 +02003502 if (intel_crtc->config.shared_dpll == DPLL_ID_PCH_PLL_B)
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003503 temp |= sel;
3504 else
3505 temp &= ~sel;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003506 I915_WRITE(PCH_DPLL_SEL, temp);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003507 }
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003508
Daniel Vetter3ad8a202013-06-05 13:34:32 +02003509 /* XXX: pch pll's can be enabled any time before we enable the PCH
3510 * transcoder, and we actually should do this to not upset any PCH
3511 * transcoder that already use the clock when we share it.
3512 *
3513 * Note that enable_shared_dpll tries to do the right thing, but
3514 * get_shared_dpll unconditionally resets the pll - we need that to have
3515 * the right LVDS enable sequence. */
Daniel Vetter85b38942014-04-24 23:55:14 +02003516 intel_enable_shared_dpll(intel_crtc);
Daniel Vetter3ad8a202013-06-05 13:34:32 +02003517
Jesse Barnesd9b6cb52011-01-04 15:09:35 -08003518 /* set transcoder timing, panel must allow it */
3519 assert_panel_unlocked(dev_priv, pipe);
Daniel Vetter275f01b22013-05-03 11:49:47 +02003520 ironlake_pch_transcoder_set_timings(intel_crtc, pipe);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003521
Paulo Zanoni303b81e2012-10-31 18:12:23 -02003522 intel_fdi_normal_train(crtc);
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08003523
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003524 /* For PCH DP, enable TRANS_DP_CTL */
3525 if (HAS_PCH_CPT(dev) &&
Keith Packard417e8222011-11-01 19:54:11 -07003526 (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT) ||
3527 intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP))) {
Daniel Vetterdfd07d72012-12-17 11:21:38 +01003528 u32 bpc = (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) >> 5;
Chris Wilson5eddb702010-09-11 13:48:45 +01003529 reg = TRANS_DP_CTL(pipe);
3530 temp = I915_READ(reg);
3531 temp &= ~(TRANS_DP_PORT_SEL_MASK |
Eric Anholt220cad32010-11-18 09:32:58 +08003532 TRANS_DP_SYNC_MASK |
3533 TRANS_DP_BPC_MASK);
Chris Wilson5eddb702010-09-11 13:48:45 +01003534 temp |= (TRANS_DP_OUTPUT_ENABLE |
3535 TRANS_DP_ENH_FRAMING);
Jesse Barnes9325c9f2011-06-24 12:19:21 -07003536 temp |= bpc << 9; /* same format but at 11:9 */
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003537
3538 if (crtc->mode.flags & DRM_MODE_FLAG_PHSYNC)
Chris Wilson5eddb702010-09-11 13:48:45 +01003539 temp |= TRANS_DP_HSYNC_ACTIVE_HIGH;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003540 if (crtc->mode.flags & DRM_MODE_FLAG_PVSYNC)
Chris Wilson5eddb702010-09-11 13:48:45 +01003541 temp |= TRANS_DP_VSYNC_ACTIVE_HIGH;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003542
3543 switch (intel_trans_dp_port_sel(crtc)) {
3544 case PCH_DP_B:
Chris Wilson5eddb702010-09-11 13:48:45 +01003545 temp |= TRANS_DP_PORT_SEL_B;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003546 break;
3547 case PCH_DP_C:
Chris Wilson5eddb702010-09-11 13:48:45 +01003548 temp |= TRANS_DP_PORT_SEL_C;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003549 break;
3550 case PCH_DP_D:
Chris Wilson5eddb702010-09-11 13:48:45 +01003551 temp |= TRANS_DP_PORT_SEL_D;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003552 break;
3553 default:
Daniel Vettere95d41e2012-10-26 10:58:16 +02003554 BUG();
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003555 }
3556
Chris Wilson5eddb702010-09-11 13:48:45 +01003557 I915_WRITE(reg, temp);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003558 }
3559
Paulo Zanonib8a4f402012-10-31 18:12:42 -02003560 ironlake_enable_pch_transcoder(dev_priv, pipe);
Jesse Barnesf67a5592011-01-05 10:31:48 -08003561}
3562
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003563static void lpt_pch_enable(struct drm_crtc *crtc)
3564{
3565 struct drm_device *dev = crtc->dev;
3566 struct drm_i915_private *dev_priv = dev->dev_private;
3567 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter3b117c82013-04-17 20:15:07 +02003568 enum transcoder cpu_transcoder = intel_crtc->config.cpu_transcoder;
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003569
Daniel Vetterab9412b2013-05-03 11:49:46 +02003570 assert_pch_transcoder_disabled(dev_priv, TRANSCODER_A);
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003571
Paulo Zanoni8c52b5e2012-10-31 18:12:24 -02003572 lpt_program_iclkip(crtc);
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003573
Paulo Zanoni0540e482012-10-31 18:12:40 -02003574 /* Set transcoder timing. */
Daniel Vetter275f01b22013-05-03 11:49:47 +02003575 ironlake_pch_transcoder_set_timings(intel_crtc, PIPE_A);
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003576
Paulo Zanoni937bb612012-10-31 18:12:47 -02003577 lpt_enable_pch_transcoder(dev_priv, cpu_transcoder);
Jesse Barnesf67a5592011-01-05 10:31:48 -08003578}
3579
Daniel Vettere2b78262013-06-07 23:10:03 +02003580static void intel_put_shared_dpll(struct intel_crtc *crtc)
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003581{
Daniel Vettere2b78262013-06-07 23:10:03 +02003582 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003583
3584 if (pll == NULL)
3585 return;
3586
3587 if (pll->refcount == 0) {
Daniel Vetter46edb022013-06-05 13:34:12 +02003588 WARN(1, "bad %s refcount\n", pll->name);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003589 return;
3590 }
3591
Daniel Vetterf4a091c2013-06-10 17:28:22 +02003592 if (--pll->refcount == 0) {
3593 WARN_ON(pll->on);
3594 WARN_ON(pll->active);
3595 }
3596
Daniel Vettera43f6e02013-06-07 23:10:32 +02003597 crtc->config.shared_dpll = DPLL_ID_PRIVATE;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003598}
3599
Daniel Vetterb89a1d32013-06-05 13:34:24 +02003600static struct intel_shared_dpll *intel_get_shared_dpll(struct intel_crtc *crtc)
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003601{
Daniel Vettere2b78262013-06-07 23:10:03 +02003602 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
3603 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
3604 enum intel_dpll_id i;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003605
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003606 if (pll) {
Daniel Vetter46edb022013-06-05 13:34:12 +02003607 DRM_DEBUG_KMS("CRTC:%d dropping existing %s\n",
3608 crtc->base.base.id, pll->name);
Daniel Vettere2b78262013-06-07 23:10:03 +02003609 intel_put_shared_dpll(crtc);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003610 }
3611
Daniel Vetter98b6bd92012-05-20 20:00:25 +02003612 if (HAS_PCH_IBX(dev_priv->dev)) {
3613 /* Ironlake PCH has a fixed PLL->PCH pipe mapping. */
Daniel Vetterd94ab062013-07-04 12:01:16 +02003614 i = (enum intel_dpll_id) crtc->pipe;
Daniel Vettere72f9fb2013-06-05 13:34:06 +02003615 pll = &dev_priv->shared_dplls[i];
Daniel Vetter98b6bd92012-05-20 20:00:25 +02003616
Daniel Vetter46edb022013-06-05 13:34:12 +02003617 DRM_DEBUG_KMS("CRTC:%d using pre-allocated %s\n",
3618 crtc->base.base.id, pll->name);
Daniel Vetter98b6bd92012-05-20 20:00:25 +02003619
Daniel Vetterf2a69f42014-05-20 15:19:19 +02003620 WARN_ON(pll->refcount);
3621
Daniel Vetter98b6bd92012-05-20 20:00:25 +02003622 goto found;
3623 }
3624
Daniel Vettere72f9fb2013-06-05 13:34:06 +02003625 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
3626 pll = &dev_priv->shared_dplls[i];
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003627
3628 /* Only want to check enabled timings first */
3629 if (pll->refcount == 0)
3630 continue;
3631
Daniel Vetterb89a1d32013-06-05 13:34:24 +02003632 if (memcmp(&crtc->config.dpll_hw_state, &pll->hw_state,
3633 sizeof(pll->hw_state)) == 0) {
Daniel Vetter46edb022013-06-05 13:34:12 +02003634 DRM_DEBUG_KMS("CRTC:%d sharing existing %s (refcount %d, ative %d)\n",
Daniel Vettere2b78262013-06-07 23:10:03 +02003635 crtc->base.base.id,
Daniel Vetter46edb022013-06-05 13:34:12 +02003636 pll->name, pll->refcount, pll->active);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003637
3638 goto found;
3639 }
3640 }
3641
3642 /* Ok no matching timings, maybe there's a free one? */
Daniel Vettere72f9fb2013-06-05 13:34:06 +02003643 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
3644 pll = &dev_priv->shared_dplls[i];
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003645 if (pll->refcount == 0) {
Daniel Vetter46edb022013-06-05 13:34:12 +02003646 DRM_DEBUG_KMS("CRTC:%d allocated %s\n",
3647 crtc->base.base.id, pll->name);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003648 goto found;
3649 }
3650 }
3651
3652 return NULL;
3653
3654found:
Daniel Vetterf2a69f42014-05-20 15:19:19 +02003655 if (pll->refcount == 0)
3656 pll->hw_state = crtc->config.dpll_hw_state;
3657
Daniel Vettera43f6e02013-06-07 23:10:32 +02003658 crtc->config.shared_dpll = i;
Daniel Vetter46edb022013-06-05 13:34:12 +02003659 DRM_DEBUG_DRIVER("using %s for pipe %c\n", pll->name,
3660 pipe_name(crtc->pipe));
Daniel Vetter66e985c2013-06-05 13:34:20 +02003661
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003662 pll->refcount++;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003663
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003664 return pll;
3665}
3666
Daniel Vettera1520312013-05-03 11:49:50 +02003667static void cpt_verify_modeset(struct drm_device *dev, int pipe)
Jesse Barnesd4270e52011-10-11 10:43:02 -07003668{
3669 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter23670b322012-11-01 09:15:30 +01003670 int dslreg = PIPEDSL(pipe);
Jesse Barnesd4270e52011-10-11 10:43:02 -07003671 u32 temp;
3672
3673 temp = I915_READ(dslreg);
3674 udelay(500);
3675 if (wait_for(I915_READ(dslreg) != temp, 5)) {
Jesse Barnesd4270e52011-10-11 10:43:02 -07003676 if (wait_for(I915_READ(dslreg) != temp, 5))
Ville Syrjälä84f44ce2013-04-17 17:48:49 +03003677 DRM_ERROR("mode set failed: pipe %c stuck\n", pipe_name(pipe));
Jesse Barnesd4270e52011-10-11 10:43:02 -07003678 }
3679}
3680
Jesse Barnesb074cec2013-04-25 12:55:02 -07003681static void ironlake_pfit_enable(struct intel_crtc *crtc)
3682{
3683 struct drm_device *dev = crtc->base.dev;
3684 struct drm_i915_private *dev_priv = dev->dev_private;
3685 int pipe = crtc->pipe;
3686
Chris Wilsonfd4daa92013-08-27 17:04:17 +01003687 if (crtc->config.pch_pfit.enabled) {
Jesse Barnesb074cec2013-04-25 12:55:02 -07003688 /* Force use of hard-coded filter coefficients
3689 * as some pre-programmed values are broken,
3690 * e.g. x201.
3691 */
3692 if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev))
3693 I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3 |
3694 PF_PIPE_SEL_IVB(pipe));
3695 else
3696 I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3);
3697 I915_WRITE(PF_WIN_POS(pipe), crtc->config.pch_pfit.pos);
3698 I915_WRITE(PF_WIN_SZ(pipe), crtc->config.pch_pfit.size);
Jesse Barnes040484a2011-01-03 12:14:26 -08003699 }
Jesse Barnesf67a5592011-01-05 10:31:48 -08003700}
3701
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03003702static void intel_enable_planes(struct drm_crtc *crtc)
3703{
3704 struct drm_device *dev = crtc->dev;
3705 enum pipe pipe = to_intel_crtc(crtc)->pipe;
Matt Roperaf2b6532014-04-01 15:22:32 -07003706 struct drm_plane *plane;
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03003707 struct intel_plane *intel_plane;
3708
Matt Roperaf2b6532014-04-01 15:22:32 -07003709 drm_for_each_legacy_plane(plane, &dev->mode_config.plane_list) {
3710 intel_plane = to_intel_plane(plane);
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03003711 if (intel_plane->pipe == pipe)
3712 intel_plane_restore(&intel_plane->base);
Matt Roperaf2b6532014-04-01 15:22:32 -07003713 }
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03003714}
3715
3716static void intel_disable_planes(struct drm_crtc *crtc)
3717{
3718 struct drm_device *dev = crtc->dev;
3719 enum pipe pipe = to_intel_crtc(crtc)->pipe;
Matt Roperaf2b6532014-04-01 15:22:32 -07003720 struct drm_plane *plane;
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03003721 struct intel_plane *intel_plane;
3722
Matt Roperaf2b6532014-04-01 15:22:32 -07003723 drm_for_each_legacy_plane(plane, &dev->mode_config.plane_list) {
3724 intel_plane = to_intel_plane(plane);
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03003725 if (intel_plane->pipe == pipe)
3726 intel_plane_disable(&intel_plane->base);
Matt Roperaf2b6532014-04-01 15:22:32 -07003727 }
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03003728}
3729
Ville Syrjälä20bc86732013-10-01 18:02:17 +03003730void hsw_enable_ips(struct intel_crtc *crtc)
Paulo Zanonid77e4532013-09-24 13:52:55 -03003731{
3732 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
3733
3734 if (!crtc->config.ips_enabled)
3735 return;
3736
3737 /* We can only enable IPS after we enable a plane and wait for a vblank.
3738 * We guarantee that the plane is enabled by calling intel_enable_ips
3739 * only after intel_enable_plane. And intel_enable_plane already waits
3740 * for a vblank, so all we need to do here is to enable the IPS bit. */
3741 assert_plane_enabled(dev_priv, crtc->plane);
Ben Widawsky2a114cc2013-11-02 21:07:47 -07003742 if (IS_BROADWELL(crtc->base.dev)) {
3743 mutex_lock(&dev_priv->rps.hw_lock);
3744 WARN_ON(sandybridge_pcode_write(dev_priv, DISPLAY_IPS_CONTROL, 0xc0000000));
3745 mutex_unlock(&dev_priv->rps.hw_lock);
3746 /* Quoting Art Runyan: "its not safe to expect any particular
3747 * value in IPS_CTL bit 31 after enabling IPS through the
Jesse Barnese59150d2014-01-07 13:30:45 -08003748 * mailbox." Moreover, the mailbox may return a bogus state,
3749 * so we need to just enable it and continue on.
Ben Widawsky2a114cc2013-11-02 21:07:47 -07003750 */
3751 } else {
3752 I915_WRITE(IPS_CTL, IPS_ENABLE);
3753 /* The bit only becomes 1 in the next vblank, so this wait here
3754 * is essentially intel_wait_for_vblank. If we don't have this
3755 * and don't wait for vblanks until the end of crtc_enable, then
3756 * the HW state readout code will complain that the expected
3757 * IPS_CTL value is not the one we read. */
3758 if (wait_for(I915_READ_NOTRACE(IPS_CTL) & IPS_ENABLE, 50))
3759 DRM_ERROR("Timed out waiting for IPS enable\n");
3760 }
Paulo Zanonid77e4532013-09-24 13:52:55 -03003761}
3762
Ville Syrjälä20bc86732013-10-01 18:02:17 +03003763void hsw_disable_ips(struct intel_crtc *crtc)
Paulo Zanonid77e4532013-09-24 13:52:55 -03003764{
3765 struct drm_device *dev = crtc->base.dev;
3766 struct drm_i915_private *dev_priv = dev->dev_private;
3767
3768 if (!crtc->config.ips_enabled)
3769 return;
3770
3771 assert_plane_enabled(dev_priv, crtc->plane);
Ben Widawsky23d0b132014-04-10 14:32:41 -07003772 if (IS_BROADWELL(dev)) {
Ben Widawsky2a114cc2013-11-02 21:07:47 -07003773 mutex_lock(&dev_priv->rps.hw_lock);
3774 WARN_ON(sandybridge_pcode_write(dev_priv, DISPLAY_IPS_CONTROL, 0));
3775 mutex_unlock(&dev_priv->rps.hw_lock);
Ben Widawsky23d0b132014-04-10 14:32:41 -07003776 /* wait for pcode to finish disabling IPS, which may take up to 42ms */
3777 if (wait_for((I915_READ(IPS_CTL) & IPS_ENABLE) == 0, 42))
3778 DRM_ERROR("Timed out waiting for IPS disable\n");
Jesse Barnese59150d2014-01-07 13:30:45 -08003779 } else {
Ben Widawsky2a114cc2013-11-02 21:07:47 -07003780 I915_WRITE(IPS_CTL, 0);
Jesse Barnese59150d2014-01-07 13:30:45 -08003781 POSTING_READ(IPS_CTL);
3782 }
Paulo Zanonid77e4532013-09-24 13:52:55 -03003783
3784 /* We need to wait for a vblank before we can disable the plane. */
3785 intel_wait_for_vblank(dev, crtc->pipe);
3786}
3787
3788/** Loads the palette/gamma unit for the CRTC with the prepared values */
3789static void intel_crtc_load_lut(struct drm_crtc *crtc)
3790{
3791 struct drm_device *dev = crtc->dev;
3792 struct drm_i915_private *dev_priv = dev->dev_private;
3793 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3794 enum pipe pipe = intel_crtc->pipe;
3795 int palreg = PALETTE(pipe);
3796 int i;
3797 bool reenable_ips = false;
3798
3799 /* The clocks have to be on to load the palette. */
3800 if (!crtc->enabled || !intel_crtc->active)
3801 return;
3802
3803 if (!HAS_PCH_SPLIT(dev_priv->dev)) {
3804 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DSI))
3805 assert_dsi_pll_enabled(dev_priv);
3806 else
3807 assert_pll_enabled(dev_priv, pipe);
3808 }
3809
3810 /* use legacy palette for Ironlake */
3811 if (HAS_PCH_SPLIT(dev))
3812 palreg = LGC_PALETTE(pipe);
3813
3814 /* Workaround : Do not read or write the pipe palette/gamma data while
3815 * GAMMA_MODE is configured for split gamma and IPS_CTL has IPS enabled.
3816 */
Paulo Zanoni41e6fc42014-01-08 17:26:31 -02003817 if (IS_HASWELL(dev) && intel_crtc->config.ips_enabled &&
Paulo Zanonid77e4532013-09-24 13:52:55 -03003818 ((I915_READ(GAMMA_MODE(pipe)) & GAMMA_MODE_MODE_MASK) ==
3819 GAMMA_MODE_MODE_SPLIT)) {
3820 hsw_disable_ips(intel_crtc);
3821 reenable_ips = true;
3822 }
3823
3824 for (i = 0; i < 256; i++) {
3825 I915_WRITE(palreg + 4 * i,
3826 (intel_crtc->lut_r[i] << 16) |
3827 (intel_crtc->lut_g[i] << 8) |
3828 intel_crtc->lut_b[i]);
3829 }
3830
3831 if (reenable_ips)
3832 hsw_enable_ips(intel_crtc);
3833}
3834
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03003835static void intel_crtc_dpms_overlay(struct intel_crtc *intel_crtc, bool enable)
3836{
3837 if (!enable && intel_crtc->overlay) {
3838 struct drm_device *dev = intel_crtc->base.dev;
3839 struct drm_i915_private *dev_priv = dev->dev_private;
3840
3841 mutex_lock(&dev->struct_mutex);
3842 dev_priv->mm.interruptible = false;
3843 (void) intel_overlay_switch_off(intel_crtc->overlay);
3844 dev_priv->mm.interruptible = true;
3845 mutex_unlock(&dev->struct_mutex);
3846 }
3847
3848 /* Let userspace switch the overlay on again. In most cases userspace
3849 * has to recompute where to put it anyway.
3850 */
3851}
3852
3853/**
3854 * i9xx_fixup_plane - ugly workaround for G45 to fire up the hardware
3855 * cursor plane briefly if not already running after enabling the display
3856 * plane.
3857 * This workaround avoids occasional blank screens when self refresh is
3858 * enabled.
3859 */
3860static void
3861g4x_fixup_plane(struct drm_i915_private *dev_priv, enum pipe pipe)
3862{
3863 u32 cntl = I915_READ(CURCNTR(pipe));
3864
3865 if ((cntl & CURSOR_MODE) == 0) {
3866 u32 fw_bcl_self = I915_READ(FW_BLC_SELF);
3867
3868 I915_WRITE(FW_BLC_SELF, fw_bcl_self & ~FW_BLC_SELF_EN);
3869 I915_WRITE(CURCNTR(pipe), CURSOR_MODE_64_ARGB_AX);
3870 intel_wait_for_vblank(dev_priv->dev, pipe);
3871 I915_WRITE(CURCNTR(pipe), cntl);
3872 I915_WRITE(CURBASE(pipe), I915_READ(CURBASE(pipe)));
3873 I915_WRITE(FW_BLC_SELF, fw_bcl_self);
3874 }
3875}
3876
3877static void intel_crtc_enable_planes(struct drm_crtc *crtc)
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02003878{
3879 struct drm_device *dev = crtc->dev;
3880 struct drm_i915_private *dev_priv = dev->dev_private;
3881 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3882 int pipe = intel_crtc->pipe;
3883 int plane = intel_crtc->plane;
3884
3885 intel_enable_primary_hw_plane(dev_priv, plane, pipe);
3886 intel_enable_planes(crtc);
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03003887 /* The fixup needs to happen before cursor is enabled */
3888 if (IS_G4X(dev))
3889 g4x_fixup_plane(dev_priv, pipe);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02003890 intel_crtc_update_cursor(crtc, true);
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03003891 intel_crtc_dpms_overlay(intel_crtc, true);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02003892
3893 hsw_enable_ips(intel_crtc);
3894
3895 mutex_lock(&dev->struct_mutex);
3896 intel_update_fbc(dev);
Daniel Vetter71b1c372014-04-24 23:55:03 +02003897 intel_edp_psr_update(dev);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02003898 mutex_unlock(&dev->struct_mutex);
3899}
3900
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03003901static void intel_crtc_disable_planes(struct drm_crtc *crtc)
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02003902{
3903 struct drm_device *dev = crtc->dev;
3904 struct drm_i915_private *dev_priv = dev->dev_private;
3905 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3906 int pipe = intel_crtc->pipe;
3907 int plane = intel_crtc->plane;
3908
3909 intel_crtc_wait_for_pending_flips(crtc);
3910 drm_vblank_off(dev, pipe);
3911
3912 if (dev_priv->fbc.plane == plane)
3913 intel_disable_fbc(dev);
3914
3915 hsw_disable_ips(intel_crtc);
3916
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03003917 intel_crtc_dpms_overlay(intel_crtc, false);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02003918 intel_crtc_update_cursor(crtc, false);
3919 intel_disable_planes(crtc);
3920 intel_disable_primary_hw_plane(dev_priv, plane, pipe);
3921}
3922
Jesse Barnesf67a5592011-01-05 10:31:48 -08003923static void ironlake_crtc_enable(struct drm_crtc *crtc)
3924{
3925 struct drm_device *dev = crtc->dev;
3926 struct drm_i915_private *dev_priv = dev->dev_private;
3927 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02003928 struct intel_encoder *encoder;
Jesse Barnesf67a5592011-01-05 10:31:48 -08003929 int pipe = intel_crtc->pipe;
Daniel Vetter29407aa2014-04-24 23:55:08 +02003930 enum plane plane = intel_crtc->plane;
Jesse Barnesf67a5592011-01-05 10:31:48 -08003931
Daniel Vetter08a48462012-07-02 11:43:47 +02003932 WARN_ON(!crtc->enabled);
3933
Jesse Barnesf67a5592011-01-05 10:31:48 -08003934 if (intel_crtc->active)
3935 return;
3936
Daniel Vetterb14b1052014-04-24 23:55:13 +02003937 if (intel_crtc->config.has_pch_encoder)
3938 intel_prepare_shared_dpll(intel_crtc);
3939
Daniel Vetter29407aa2014-04-24 23:55:08 +02003940 if (intel_crtc->config.has_dp_encoder)
3941 intel_dp_set_m_n(intel_crtc);
3942
3943 intel_set_pipe_timings(intel_crtc);
3944
3945 if (intel_crtc->config.has_pch_encoder) {
3946 intel_cpu_transcoder_set_m_n(intel_crtc,
3947 &intel_crtc->config.fdi_m_n);
3948 }
3949
3950 ironlake_set_pipeconf(crtc);
3951
3952 /* Set up the display plane register */
3953 I915_WRITE(DSPCNTR(plane), DISPPLANE_GAMMA_ENABLE);
3954 POSTING_READ(DSPCNTR(plane));
3955
3956 dev_priv->display.update_primary_plane(crtc, crtc->primary->fb,
3957 crtc->x, crtc->y);
3958
Jesse Barnesf67a5592011-01-05 10:31:48 -08003959 intel_crtc->active = true;
Paulo Zanoni86642812013-04-12 17:57:57 -03003960
3961 intel_set_cpu_fifo_underrun_reporting(dev, pipe, true);
3962 intel_set_pch_fifo_underrun_reporting(dev, pipe, true);
3963
Daniel Vetterf6736a12013-06-05 13:34:30 +02003964 for_each_encoder_on_crtc(dev, crtc, encoder)
Daniel Vetter952735e2013-06-05 13:34:27 +02003965 if (encoder->pre_enable)
3966 encoder->pre_enable(encoder);
Jesse Barnesf67a5592011-01-05 10:31:48 -08003967
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01003968 if (intel_crtc->config.has_pch_encoder) {
Daniel Vetterfff367c2012-10-27 15:50:28 +02003969 /* Note: FDI PLL enabling _must_ be done before we enable the
3970 * cpu pipes, hence this is separate from all the other fdi/pch
3971 * enabling. */
Daniel Vetter88cefb62012-08-12 19:27:14 +02003972 ironlake_fdi_pll_enable(intel_crtc);
Daniel Vetter46b6f812012-09-06 22:08:33 +02003973 } else {
3974 assert_fdi_tx_disabled(dev_priv, pipe);
3975 assert_fdi_rx_disabled(dev_priv, pipe);
3976 }
Jesse Barnesf67a5592011-01-05 10:31:48 -08003977
Jesse Barnesb074cec2013-04-25 12:55:02 -07003978 ironlake_pfit_enable(intel_crtc);
Jesse Barnesf67a5592011-01-05 10:31:48 -08003979
Jesse Barnes9c54c0d2011-06-15 23:32:33 +02003980 /*
3981 * On ILK+ LUT must be loaded before the pipe is running but with
3982 * clocks enabled
3983 */
3984 intel_crtc_load_lut(crtc);
3985
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03003986 intel_update_watermarks(crtc);
Paulo Zanonie1fdc472014-01-17 13:51:12 -02003987 intel_enable_pipe(intel_crtc);
Jesse Barnesf67a5592011-01-05 10:31:48 -08003988
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01003989 if (intel_crtc->config.has_pch_encoder)
Jesse Barnesf67a5592011-01-05 10:31:48 -08003990 ironlake_pch_enable(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003991
Daniel Vetterfa5c73b2012-07-01 23:24:36 +02003992 for_each_encoder_on_crtc(dev, crtc, encoder)
3993 encoder->enable(encoder);
Daniel Vetter61b77dd2012-07-02 00:16:19 +02003994
3995 if (HAS_PCH_CPT(dev))
Daniel Vettera1520312013-05-03 11:49:50 +02003996 cpt_verify_modeset(dev, intel_crtc->pipe);
Daniel Vetter6ce94102012-10-04 19:20:03 +02003997
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03003998 intel_crtc_enable_planes(crtc);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02003999
Daniel Vetter6ce94102012-10-04 19:20:03 +02004000 /*
4001 * There seems to be a race in PCH platform hw (at least on some
4002 * outputs) where an enabled pipe still completes any pageflip right
4003 * away (as if the pipe is off) instead of waiting for vblank. As soon
4004 * as the first vblank happend, everything works as expected. Hence just
4005 * wait for one vblank before returning to avoid strange things
4006 * happening.
4007 */
4008 intel_wait_for_vblank(dev, intel_crtc->pipe);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004009}
4010
Paulo Zanoni42db64e2013-05-31 16:33:22 -03004011/* IPS only exists on ULT machines and is tied to pipe A. */
4012static bool hsw_crtc_supports_ips(struct intel_crtc *crtc)
4013{
Damien Lespiauf5adf942013-06-24 18:29:34 +01004014 return HAS_IPS(crtc->base.dev) && crtc->pipe == PIPE_A;
Paulo Zanoni42db64e2013-05-31 16:33:22 -03004015}
4016
Paulo Zanonie4916942013-09-20 16:21:19 -03004017/*
4018 * This implements the workaround described in the "notes" section of the mode
4019 * set sequence documentation. When going from no pipes or single pipe to
4020 * multiple pipes, and planes are enabled after the pipe, we need to wait at
4021 * least 2 vblanks on the first pipe before enabling planes on the second pipe.
4022 */
4023static void haswell_mode_set_planes_workaround(struct intel_crtc *crtc)
4024{
4025 struct drm_device *dev = crtc->base.dev;
4026 struct intel_crtc *crtc_it, *other_active_crtc = NULL;
4027
4028 /* We want to get the other_active_crtc only if there's only 1 other
4029 * active crtc. */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01004030 for_each_intel_crtc(dev, crtc_it) {
Paulo Zanonie4916942013-09-20 16:21:19 -03004031 if (!crtc_it->active || crtc_it == crtc)
4032 continue;
4033
4034 if (other_active_crtc)
4035 return;
4036
4037 other_active_crtc = crtc_it;
4038 }
4039 if (!other_active_crtc)
4040 return;
4041
4042 intel_wait_for_vblank(dev, other_active_crtc->pipe);
4043 intel_wait_for_vblank(dev, other_active_crtc->pipe);
4044}
4045
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004046static void haswell_crtc_enable(struct drm_crtc *crtc)
4047{
4048 struct drm_device *dev = crtc->dev;
4049 struct drm_i915_private *dev_priv = dev->dev_private;
4050 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4051 struct intel_encoder *encoder;
4052 int pipe = intel_crtc->pipe;
Daniel Vetter229fca92014-04-24 23:55:09 +02004053 enum plane plane = intel_crtc->plane;
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004054
4055 WARN_ON(!crtc->enabled);
4056
4057 if (intel_crtc->active)
4058 return;
4059
Daniel Vetter229fca92014-04-24 23:55:09 +02004060 if (intel_crtc->config.has_dp_encoder)
4061 intel_dp_set_m_n(intel_crtc);
4062
4063 intel_set_pipe_timings(intel_crtc);
4064
4065 if (intel_crtc->config.has_pch_encoder) {
4066 intel_cpu_transcoder_set_m_n(intel_crtc,
4067 &intel_crtc->config.fdi_m_n);
4068 }
4069
4070 haswell_set_pipeconf(crtc);
4071
4072 intel_set_pipe_csc(crtc);
4073
4074 /* Set up the display plane register */
4075 I915_WRITE(DSPCNTR(plane), DISPPLANE_GAMMA_ENABLE | DISPPLANE_PIPE_CSC_ENABLE);
4076 POSTING_READ(DSPCNTR(plane));
4077
4078 dev_priv->display.update_primary_plane(crtc, crtc->primary->fb,
4079 crtc->x, crtc->y);
4080
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004081 intel_crtc->active = true;
Paulo Zanoni86642812013-04-12 17:57:57 -03004082
4083 intel_set_cpu_fifo_underrun_reporting(dev, pipe, true);
4084 if (intel_crtc->config.has_pch_encoder)
4085 intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_A, true);
4086
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01004087 if (intel_crtc->config.has_pch_encoder)
Paulo Zanoni04945642012-11-01 21:00:59 -02004088 dev_priv->display.fdi_link_train(crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004089
4090 for_each_encoder_on_crtc(dev, crtc, encoder)
4091 if (encoder->pre_enable)
4092 encoder->pre_enable(encoder);
4093
Paulo Zanoni1f544382012-10-24 11:32:00 -02004094 intel_ddi_enable_pipe_clock(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004095
Jesse Barnesb074cec2013-04-25 12:55:02 -07004096 ironlake_pfit_enable(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004097
4098 /*
4099 * On ILK+ LUT must be loaded before the pipe is running but with
4100 * clocks enabled
4101 */
4102 intel_crtc_load_lut(crtc);
4103
Paulo Zanoni1f544382012-10-24 11:32:00 -02004104 intel_ddi_set_pipe_settings(crtc);
Damien Lespiau8228c252013-03-07 15:30:27 +00004105 intel_ddi_enable_transcoder_func(crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004106
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03004107 intel_update_watermarks(crtc);
Paulo Zanonie1fdc472014-01-17 13:51:12 -02004108 intel_enable_pipe(intel_crtc);
Paulo Zanoni42db64e2013-05-31 16:33:22 -03004109
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01004110 if (intel_crtc->config.has_pch_encoder)
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02004111 lpt_pch_enable(crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004112
Jani Nikula8807e552013-08-30 19:40:32 +03004113 for_each_encoder_on_crtc(dev, crtc, encoder) {
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004114 encoder->enable(encoder);
Jani Nikula8807e552013-08-30 19:40:32 +03004115 intel_opregion_notify_encoder(encoder, true);
4116 }
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004117
Paulo Zanonie4916942013-09-20 16:21:19 -03004118 /* If we change the relative order between pipe/planes enabling, we need
4119 * to change the workaround. */
4120 haswell_mode_set_planes_workaround(intel_crtc);
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004121 intel_crtc_enable_planes(crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004122}
4123
Daniel Vetter3f8dce32013-05-08 10:36:30 +02004124static void ironlake_pfit_disable(struct intel_crtc *crtc)
4125{
4126 struct drm_device *dev = crtc->base.dev;
4127 struct drm_i915_private *dev_priv = dev->dev_private;
4128 int pipe = crtc->pipe;
4129
4130 /* To avoid upsetting the power well on haswell only disable the pfit if
4131 * it's in use. The hw state code will make sure we get this right. */
Chris Wilsonfd4daa92013-08-27 17:04:17 +01004132 if (crtc->config.pch_pfit.enabled) {
Daniel Vetter3f8dce32013-05-08 10:36:30 +02004133 I915_WRITE(PF_CTL(pipe), 0);
4134 I915_WRITE(PF_WIN_POS(pipe), 0);
4135 I915_WRITE(PF_WIN_SZ(pipe), 0);
4136 }
4137}
4138
Jesse Barnes6be4a602010-09-10 10:26:01 -07004139static void ironlake_crtc_disable(struct drm_crtc *crtc)
4140{
4141 struct drm_device *dev = crtc->dev;
4142 struct drm_i915_private *dev_priv = dev->dev_private;
4143 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02004144 struct intel_encoder *encoder;
Jesse Barnes6be4a602010-09-10 10:26:01 -07004145 int pipe = intel_crtc->pipe;
Chris Wilson5eddb702010-09-11 13:48:45 +01004146 u32 reg, temp;
Jesse Barnes6be4a602010-09-10 10:26:01 -07004147
Chris Wilsonf7abfe82010-09-13 14:19:16 +01004148 if (!intel_crtc->active)
4149 return;
4150
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004151 intel_crtc_disable_planes(crtc);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004152
Daniel Vetterea9d7582012-07-10 10:42:52 +02004153 for_each_encoder_on_crtc(dev, crtc, encoder)
4154 encoder->disable(encoder);
4155
Daniel Vetterd925c592013-06-05 13:34:04 +02004156 if (intel_crtc->config.has_pch_encoder)
4157 intel_set_pch_fifo_underrun_reporting(dev, pipe, false);
4158
Jesse Barnesb24e7172011-01-04 15:09:30 -08004159 intel_disable_pipe(dev_priv, pipe);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004160
Daniel Vetter3f8dce32013-05-08 10:36:30 +02004161 ironlake_pfit_disable(intel_crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004162
Daniel Vetterbf49ec82012-09-06 22:15:40 +02004163 for_each_encoder_on_crtc(dev, crtc, encoder)
4164 if (encoder->post_disable)
4165 encoder->post_disable(encoder);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004166
Daniel Vetterd925c592013-06-05 13:34:04 +02004167 if (intel_crtc->config.has_pch_encoder) {
4168 ironlake_fdi_disable(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004169
Daniel Vetterd925c592013-06-05 13:34:04 +02004170 ironlake_disable_pch_transcoder(dev_priv, pipe);
4171 intel_set_pch_fifo_underrun_reporting(dev, pipe, true);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004172
Daniel Vetterd925c592013-06-05 13:34:04 +02004173 if (HAS_PCH_CPT(dev)) {
4174 /* disable TRANS_DP_CTL */
4175 reg = TRANS_DP_CTL(pipe);
4176 temp = I915_READ(reg);
4177 temp &= ~(TRANS_DP_OUTPUT_ENABLE |
4178 TRANS_DP_PORT_SEL_MASK);
4179 temp |= TRANS_DP_PORT_SEL_NONE;
4180 I915_WRITE(reg, temp);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004181
Daniel Vetterd925c592013-06-05 13:34:04 +02004182 /* disable DPLL_SEL */
4183 temp = I915_READ(PCH_DPLL_SEL);
Daniel Vetter11887392013-06-05 13:34:09 +02004184 temp &= ~(TRANS_DPLL_ENABLE(pipe) | TRANS_DPLLB_SEL(pipe));
Daniel Vetterd925c592013-06-05 13:34:04 +02004185 I915_WRITE(PCH_DPLL_SEL, temp);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08004186 }
Daniel Vetterd925c592013-06-05 13:34:04 +02004187
4188 /* disable PCH DPLL */
Daniel Vettere72f9fb2013-06-05 13:34:06 +02004189 intel_disable_shared_dpll(intel_crtc);
Daniel Vetterd925c592013-06-05 13:34:04 +02004190
4191 ironlake_fdi_pll_disable(intel_crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004192 }
4193
Chris Wilsonf7abfe82010-09-13 14:19:16 +01004194 intel_crtc->active = false;
Ville Syrjälä46ba6142013-09-10 11:40:40 +03004195 intel_update_watermarks(crtc);
Ben Widawskyd1ebd8162011-04-25 20:11:50 +01004196
4197 mutex_lock(&dev->struct_mutex);
Chris Wilson6b383a72010-09-13 13:54:26 +01004198 intel_update_fbc(dev);
Daniel Vetter71b1c372014-04-24 23:55:03 +02004199 intel_edp_psr_update(dev);
Ben Widawskyd1ebd8162011-04-25 20:11:50 +01004200 mutex_unlock(&dev->struct_mutex);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004201}
4202
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004203static void haswell_crtc_disable(struct drm_crtc *crtc)
4204{
4205 struct drm_device *dev = crtc->dev;
4206 struct drm_i915_private *dev_priv = dev->dev_private;
4207 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4208 struct intel_encoder *encoder;
4209 int pipe = intel_crtc->pipe;
Daniel Vetter3b117c82013-04-17 20:15:07 +02004210 enum transcoder cpu_transcoder = intel_crtc->config.cpu_transcoder;
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004211
4212 if (!intel_crtc->active)
4213 return;
4214
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004215 intel_crtc_disable_planes(crtc);
Ville Syrjälädda9a662013-09-19 17:00:37 -03004216
Jani Nikula8807e552013-08-30 19:40:32 +03004217 for_each_encoder_on_crtc(dev, crtc, encoder) {
4218 intel_opregion_notify_encoder(encoder, false);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004219 encoder->disable(encoder);
Jani Nikula8807e552013-08-30 19:40:32 +03004220 }
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004221
Paulo Zanoni86642812013-04-12 17:57:57 -03004222 if (intel_crtc->config.has_pch_encoder)
4223 intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_A, false);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004224 intel_disable_pipe(dev_priv, pipe);
4225
Paulo Zanoniad80a812012-10-24 16:06:19 -02004226 intel_ddi_disable_transcoder_func(dev_priv, cpu_transcoder);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004227
Daniel Vetter3f8dce32013-05-08 10:36:30 +02004228 ironlake_pfit_disable(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004229
Paulo Zanoni1f544382012-10-24 11:32:00 -02004230 intel_ddi_disable_pipe_clock(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004231
4232 for_each_encoder_on_crtc(dev, crtc, encoder)
4233 if (encoder->post_disable)
4234 encoder->post_disable(encoder);
4235
Daniel Vetter88adfff2013-03-28 10:42:01 +01004236 if (intel_crtc->config.has_pch_encoder) {
Paulo Zanoniab4d9662012-10-31 18:12:55 -02004237 lpt_disable_pch_transcoder(dev_priv);
Paulo Zanoni86642812013-04-12 17:57:57 -03004238 intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_A, true);
Paulo Zanoni1ad960f2012-11-01 21:05:05 -02004239 intel_ddi_fdi_disable(crtc);
Paulo Zanoni83616632012-10-23 18:29:54 -02004240 }
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004241
4242 intel_crtc->active = false;
Ville Syrjälä46ba6142013-09-10 11:40:40 +03004243 intel_update_watermarks(crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004244
4245 mutex_lock(&dev->struct_mutex);
4246 intel_update_fbc(dev);
Daniel Vetter71b1c372014-04-24 23:55:03 +02004247 intel_edp_psr_update(dev);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004248 mutex_unlock(&dev->struct_mutex);
4249}
4250
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004251static void ironlake_crtc_off(struct drm_crtc *crtc)
4252{
4253 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vettere72f9fb2013-06-05 13:34:06 +02004254 intel_put_shared_dpll(intel_crtc);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004255}
4256
Paulo Zanoni6441ab52012-10-05 12:05:58 -03004257static void haswell_crtc_off(struct drm_crtc *crtc)
4258{
4259 intel_ddi_put_crtc_pll(crtc);
4260}
4261
Jesse Barnes2dd24552013-04-25 12:55:01 -07004262static void i9xx_pfit_enable(struct intel_crtc *crtc)
4263{
4264 struct drm_device *dev = crtc->base.dev;
4265 struct drm_i915_private *dev_priv = dev->dev_private;
4266 struct intel_crtc_config *pipe_config = &crtc->config;
4267
Daniel Vetter328d8e82013-05-08 10:36:31 +02004268 if (!crtc->config.gmch_pfit.control)
Jesse Barnes2dd24552013-04-25 12:55:01 -07004269 return;
4270
Daniel Vetterc0b03412013-05-28 12:05:54 +02004271 /*
4272 * The panel fitter should only be adjusted whilst the pipe is disabled,
4273 * according to register description and PRM.
4274 */
Jesse Barnes2dd24552013-04-25 12:55:01 -07004275 WARN_ON(I915_READ(PFIT_CONTROL) & PFIT_ENABLE);
4276 assert_pipe_disabled(dev_priv, crtc->pipe);
4277
Jesse Barnesb074cec2013-04-25 12:55:02 -07004278 I915_WRITE(PFIT_PGM_RATIOS, pipe_config->gmch_pfit.pgm_ratios);
4279 I915_WRITE(PFIT_CONTROL, pipe_config->gmch_pfit.control);
Daniel Vetter5a80c452013-04-25 22:52:18 +02004280
4281 /* Border color in case we don't scale up to the full screen. Black by
4282 * default, change to something else for debugging. */
4283 I915_WRITE(BCLRPAT(crtc->pipe), 0);
Jesse Barnes2dd24552013-04-25 12:55:01 -07004284}
4285
Imre Deak77d22dc2014-03-05 16:20:52 +02004286#define for_each_power_domain(domain, mask) \
4287 for ((domain) = 0; (domain) < POWER_DOMAIN_NUM; (domain)++) \
4288 if ((1 << (domain)) & (mask))
4289
Imre Deak319be8a2014-03-04 19:22:57 +02004290enum intel_display_power_domain
4291intel_display_port_power_domain(struct intel_encoder *intel_encoder)
Imre Deak77d22dc2014-03-05 16:20:52 +02004292{
Imre Deak319be8a2014-03-04 19:22:57 +02004293 struct drm_device *dev = intel_encoder->base.dev;
4294 struct intel_digital_port *intel_dig_port;
4295
4296 switch (intel_encoder->type) {
4297 case INTEL_OUTPUT_UNKNOWN:
4298 /* Only DDI platforms should ever use this output type */
4299 WARN_ON_ONCE(!HAS_DDI(dev));
4300 case INTEL_OUTPUT_DISPLAYPORT:
4301 case INTEL_OUTPUT_HDMI:
4302 case INTEL_OUTPUT_EDP:
4303 intel_dig_port = enc_to_dig_port(&intel_encoder->base);
4304 switch (intel_dig_port->port) {
4305 case PORT_A:
4306 return POWER_DOMAIN_PORT_DDI_A_4_LANES;
4307 case PORT_B:
4308 return POWER_DOMAIN_PORT_DDI_B_4_LANES;
4309 case PORT_C:
4310 return POWER_DOMAIN_PORT_DDI_C_4_LANES;
4311 case PORT_D:
4312 return POWER_DOMAIN_PORT_DDI_D_4_LANES;
4313 default:
4314 WARN_ON_ONCE(1);
4315 return POWER_DOMAIN_PORT_OTHER;
4316 }
4317 case INTEL_OUTPUT_ANALOG:
4318 return POWER_DOMAIN_PORT_CRT;
4319 case INTEL_OUTPUT_DSI:
4320 return POWER_DOMAIN_PORT_DSI;
4321 default:
4322 return POWER_DOMAIN_PORT_OTHER;
4323 }
4324}
4325
4326static unsigned long get_crtc_power_domains(struct drm_crtc *crtc)
4327{
4328 struct drm_device *dev = crtc->dev;
4329 struct intel_encoder *intel_encoder;
4330 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4331 enum pipe pipe = intel_crtc->pipe;
4332 bool pfit_enabled = intel_crtc->config.pch_pfit.enabled;
Imre Deak77d22dc2014-03-05 16:20:52 +02004333 unsigned long mask;
4334 enum transcoder transcoder;
4335
4336 transcoder = intel_pipe_to_cpu_transcoder(dev->dev_private, pipe);
4337
4338 mask = BIT(POWER_DOMAIN_PIPE(pipe));
4339 mask |= BIT(POWER_DOMAIN_TRANSCODER(transcoder));
4340 if (pfit_enabled)
4341 mask |= BIT(POWER_DOMAIN_PIPE_PANEL_FITTER(pipe));
4342
Imre Deak319be8a2014-03-04 19:22:57 +02004343 for_each_encoder_on_crtc(dev, crtc, intel_encoder)
4344 mask |= BIT(intel_display_port_power_domain(intel_encoder));
4345
Imre Deak77d22dc2014-03-05 16:20:52 +02004346 return mask;
4347}
4348
4349void intel_display_set_init_power(struct drm_i915_private *dev_priv,
4350 bool enable)
4351{
4352 if (dev_priv->power_domains.init_power_on == enable)
4353 return;
4354
4355 if (enable)
4356 intel_display_power_get(dev_priv, POWER_DOMAIN_INIT);
4357 else
4358 intel_display_power_put(dev_priv, POWER_DOMAIN_INIT);
4359
4360 dev_priv->power_domains.init_power_on = enable;
4361}
4362
4363static void modeset_update_crtc_power_domains(struct drm_device *dev)
4364{
4365 struct drm_i915_private *dev_priv = dev->dev_private;
4366 unsigned long pipe_domains[I915_MAX_PIPES] = { 0, };
4367 struct intel_crtc *crtc;
4368
4369 /*
4370 * First get all needed power domains, then put all unneeded, to avoid
4371 * any unnecessary toggling of the power wells.
4372 */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01004373 for_each_intel_crtc(dev, crtc) {
Imre Deak77d22dc2014-03-05 16:20:52 +02004374 enum intel_display_power_domain domain;
4375
4376 if (!crtc->base.enabled)
4377 continue;
4378
Imre Deak319be8a2014-03-04 19:22:57 +02004379 pipe_domains[crtc->pipe] = get_crtc_power_domains(&crtc->base);
Imre Deak77d22dc2014-03-05 16:20:52 +02004380
4381 for_each_power_domain(domain, pipe_domains[crtc->pipe])
4382 intel_display_power_get(dev_priv, domain);
4383 }
4384
Damien Lespiaud3fcc802014-05-13 23:32:22 +01004385 for_each_intel_crtc(dev, crtc) {
Imre Deak77d22dc2014-03-05 16:20:52 +02004386 enum intel_display_power_domain domain;
4387
4388 for_each_power_domain(domain, crtc->enabled_power_domains)
4389 intel_display_power_put(dev_priv, domain);
4390
4391 crtc->enabled_power_domains = pipe_domains[crtc->pipe];
4392 }
4393
4394 intel_display_set_init_power(dev_priv, false);
4395}
4396
Jesse Barnes586f49d2013-11-04 16:06:59 -08004397int valleyview_get_vco(struct drm_i915_private *dev_priv)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004398{
Jesse Barnes586f49d2013-11-04 16:06:59 -08004399 int hpll_freq, vco_freq[] = { 800, 1600, 2000, 2400 };
Jesse Barnes30a970c2013-11-04 13:48:12 -08004400
Jesse Barnes586f49d2013-11-04 16:06:59 -08004401 /* Obtain SKU information */
4402 mutex_lock(&dev_priv->dpio_lock);
4403 hpll_freq = vlv_cck_read(dev_priv, CCK_FUSE_REG) &
4404 CCK_FUSE_HPLL_FREQ_MASK;
4405 mutex_unlock(&dev_priv->dpio_lock);
Jesse Barnes30a970c2013-11-04 13:48:12 -08004406
Jesse Barnes586f49d2013-11-04 16:06:59 -08004407 return vco_freq[hpll_freq];
Jesse Barnes30a970c2013-11-04 13:48:12 -08004408}
4409
4410/* Adjust CDclk dividers to allow high res or save power if possible */
4411static void valleyview_set_cdclk(struct drm_device *dev, int cdclk)
4412{
4413 struct drm_i915_private *dev_priv = dev->dev_private;
4414 u32 val, cmd;
4415
Imre Deakd60c4472014-03-27 17:45:10 +02004416 WARN_ON(valleyview_cur_cdclk(dev_priv) != dev_priv->vlv_cdclk_freq);
4417 dev_priv->vlv_cdclk_freq = cdclk;
4418
Jesse Barnes30a970c2013-11-04 13:48:12 -08004419 if (cdclk >= 320) /* jump to highest voltage for 400MHz too */
4420 cmd = 2;
4421 else if (cdclk == 266)
4422 cmd = 1;
4423 else
4424 cmd = 0;
4425
4426 mutex_lock(&dev_priv->rps.hw_lock);
4427 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
4428 val &= ~DSPFREQGUAR_MASK;
4429 val |= (cmd << DSPFREQGUAR_SHIFT);
4430 vlv_punit_write(dev_priv, PUNIT_REG_DSPFREQ, val);
4431 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ) &
4432 DSPFREQSTAT_MASK) == (cmd << DSPFREQSTAT_SHIFT),
4433 50)) {
4434 DRM_ERROR("timed out waiting for CDclk change\n");
4435 }
4436 mutex_unlock(&dev_priv->rps.hw_lock);
4437
4438 if (cdclk == 400) {
4439 u32 divider, vco;
4440
4441 vco = valleyview_get_vco(dev_priv);
4442 divider = ((vco << 1) / cdclk) - 1;
4443
4444 mutex_lock(&dev_priv->dpio_lock);
4445 /* adjust cdclk divider */
4446 val = vlv_cck_read(dev_priv, CCK_DISPLAY_CLOCK_CONTROL);
4447 val &= ~0xf;
4448 val |= divider;
4449 vlv_cck_write(dev_priv, CCK_DISPLAY_CLOCK_CONTROL, val);
4450 mutex_unlock(&dev_priv->dpio_lock);
4451 }
4452
4453 mutex_lock(&dev_priv->dpio_lock);
4454 /* adjust self-refresh exit latency value */
4455 val = vlv_bunit_read(dev_priv, BUNIT_REG_BISOC);
4456 val &= ~0x7f;
4457
4458 /*
4459 * For high bandwidth configs, we set a higher latency in the bunit
4460 * so that the core display fetch happens in time to avoid underruns.
4461 */
4462 if (cdclk == 400)
4463 val |= 4500 / 250; /* 4.5 usec */
4464 else
4465 val |= 3000 / 250; /* 3.0 usec */
4466 vlv_bunit_write(dev_priv, BUNIT_REG_BISOC, val);
4467 mutex_unlock(&dev_priv->dpio_lock);
4468
4469 /* Since we changed the CDclk, we need to update the GMBUSFREQ too */
4470 intel_i2c_reset(dev);
4471}
4472
Imre Deakd60c4472014-03-27 17:45:10 +02004473int valleyview_cur_cdclk(struct drm_i915_private *dev_priv)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004474{
4475 int cur_cdclk, vco;
4476 int divider;
4477
4478 vco = valleyview_get_vco(dev_priv);
4479
4480 mutex_lock(&dev_priv->dpio_lock);
4481 divider = vlv_cck_read(dev_priv, CCK_DISPLAY_CLOCK_CONTROL);
4482 mutex_unlock(&dev_priv->dpio_lock);
4483
4484 divider &= 0xf;
4485
4486 cur_cdclk = (vco << 1) / (divider + 1);
4487
4488 return cur_cdclk;
4489}
4490
4491static int valleyview_calc_cdclk(struct drm_i915_private *dev_priv,
4492 int max_pixclk)
4493{
Jesse Barnes30a970c2013-11-04 13:48:12 -08004494 /*
4495 * Really only a few cases to deal with, as only 4 CDclks are supported:
4496 * 200MHz
4497 * 267MHz
4498 * 320MHz
4499 * 400MHz
4500 * So we check to see whether we're above 90% of the lower bin and
4501 * adjust if needed.
4502 */
4503 if (max_pixclk > 288000) {
4504 return 400;
4505 } else if (max_pixclk > 240000) {
4506 return 320;
4507 } else
4508 return 266;
4509 /* Looks like the 200MHz CDclk freq doesn't work on some configs */
4510}
4511
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +02004512/* compute the max pixel clock for new configuration */
4513static int intel_mode_max_pixclk(struct drm_i915_private *dev_priv)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004514{
4515 struct drm_device *dev = dev_priv->dev;
4516 struct intel_crtc *intel_crtc;
4517 int max_pixclk = 0;
4518
Damien Lespiaud3fcc802014-05-13 23:32:22 +01004519 for_each_intel_crtc(dev, intel_crtc) {
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +02004520 if (intel_crtc->new_enabled)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004521 max_pixclk = max(max_pixclk,
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +02004522 intel_crtc->new_config->adjusted_mode.crtc_clock);
Jesse Barnes30a970c2013-11-04 13:48:12 -08004523 }
4524
4525 return max_pixclk;
4526}
4527
4528static void valleyview_modeset_global_pipes(struct drm_device *dev,
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +02004529 unsigned *prepare_pipes)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004530{
4531 struct drm_i915_private *dev_priv = dev->dev_private;
4532 struct intel_crtc *intel_crtc;
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +02004533 int max_pixclk = intel_mode_max_pixclk(dev_priv);
Jesse Barnes30a970c2013-11-04 13:48:12 -08004534
Imre Deakd60c4472014-03-27 17:45:10 +02004535 if (valleyview_calc_cdclk(dev_priv, max_pixclk) ==
4536 dev_priv->vlv_cdclk_freq)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004537 return;
4538
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +02004539 /* disable/enable all currently active pipes while we change cdclk */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01004540 for_each_intel_crtc(dev, intel_crtc)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004541 if (intel_crtc->base.enabled)
4542 *prepare_pipes |= (1 << intel_crtc->pipe);
4543}
4544
4545static void valleyview_modeset_global_resources(struct drm_device *dev)
4546{
4547 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +02004548 int max_pixclk = intel_mode_max_pixclk(dev_priv);
Jesse Barnes30a970c2013-11-04 13:48:12 -08004549 int req_cdclk = valleyview_calc_cdclk(dev_priv, max_pixclk);
4550
Imre Deakd60c4472014-03-27 17:45:10 +02004551 if (req_cdclk != dev_priv->vlv_cdclk_freq)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004552 valleyview_set_cdclk(dev, req_cdclk);
Imre Deak77961eb2014-03-05 16:20:56 +02004553 modeset_update_crtc_power_domains(dev);
Jesse Barnes30a970c2013-11-04 13:48:12 -08004554}
4555
Jesse Barnes89b667f2013-04-18 14:51:36 -07004556static void valleyview_crtc_enable(struct drm_crtc *crtc)
4557{
4558 struct drm_device *dev = crtc->dev;
Daniel Vetter5b18e572014-04-24 23:55:06 +02004559 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes89b667f2013-04-18 14:51:36 -07004560 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4561 struct intel_encoder *encoder;
4562 int pipe = intel_crtc->pipe;
Daniel Vetter5b18e572014-04-24 23:55:06 +02004563 int plane = intel_crtc->plane;
Jani Nikula23538ef2013-08-27 15:12:22 +03004564 bool is_dsi;
Daniel Vetter5b18e572014-04-24 23:55:06 +02004565 u32 dspcntr;
Jesse Barnes89b667f2013-04-18 14:51:36 -07004566
4567 WARN_ON(!crtc->enabled);
4568
4569 if (intel_crtc->active)
4570 return;
4571
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02004572 vlv_prepare_pll(intel_crtc);
4573
Daniel Vetter5b18e572014-04-24 23:55:06 +02004574 /* Set up the display plane register */
4575 dspcntr = DISPPLANE_GAMMA_ENABLE;
4576
4577 if (intel_crtc->config.has_dp_encoder)
4578 intel_dp_set_m_n(intel_crtc);
4579
4580 intel_set_pipe_timings(intel_crtc);
4581
4582 /* pipesrc and dspsize control the size that is scaled from,
4583 * which should always be the user's requested size.
4584 */
4585 I915_WRITE(DSPSIZE(plane),
4586 ((intel_crtc->config.pipe_src_h - 1) << 16) |
4587 (intel_crtc->config.pipe_src_w - 1));
4588 I915_WRITE(DSPPOS(plane), 0);
4589
4590 i9xx_set_pipeconf(intel_crtc);
4591
4592 I915_WRITE(DSPCNTR(plane), dspcntr);
4593 POSTING_READ(DSPCNTR(plane));
4594
4595 dev_priv->display.update_primary_plane(crtc, crtc->primary->fb,
4596 crtc->x, crtc->y);
4597
Jesse Barnes89b667f2013-04-18 14:51:36 -07004598 intel_crtc->active = true;
Jesse Barnes89b667f2013-04-18 14:51:36 -07004599
Jesse Barnes89b667f2013-04-18 14:51:36 -07004600 for_each_encoder_on_crtc(dev, crtc, encoder)
4601 if (encoder->pre_pll_enable)
4602 encoder->pre_pll_enable(encoder);
4603
Jani Nikula23538ef2013-08-27 15:12:22 +03004604 is_dsi = intel_pipe_has_type(crtc, INTEL_OUTPUT_DSI);
4605
Chon Ming Lee9d556c92014-05-02 14:27:47 +03004606 if (!is_dsi) {
4607 if (IS_CHERRYVIEW(dev))
4608 chv_enable_pll(intel_crtc);
4609 else
4610 vlv_enable_pll(intel_crtc);
4611 }
Jesse Barnes89b667f2013-04-18 14:51:36 -07004612
4613 for_each_encoder_on_crtc(dev, crtc, encoder)
4614 if (encoder->pre_enable)
4615 encoder->pre_enable(encoder);
4616
Jesse Barnes2dd24552013-04-25 12:55:01 -07004617 i9xx_pfit_enable(intel_crtc);
4618
Ville Syrjälä63cbb072013-06-04 13:48:59 +03004619 intel_crtc_load_lut(crtc);
4620
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03004621 intel_update_watermarks(crtc);
Paulo Zanonie1fdc472014-01-17 13:51:12 -02004622 intel_enable_pipe(intel_crtc);
Ville Syrjälä2d9d2b02014-01-17 11:44:31 +02004623 intel_set_cpu_fifo_underrun_reporting(dev, pipe, true);
Daniel Vetterbe6a6f82014-04-15 18:41:22 +02004624
Jani Nikula50049452013-07-30 12:20:32 +03004625 for_each_encoder_on_crtc(dev, crtc, encoder)
4626 encoder->enable(encoder);
Ville Syrjälä9ab04602014-05-08 19:23:14 +03004627
4628 intel_crtc_enable_planes(crtc);
Jesse Barnes89b667f2013-04-18 14:51:36 -07004629}
4630
Daniel Vetterf13c2ef2014-04-24 23:55:10 +02004631static void i9xx_set_pll_dividers(struct intel_crtc *crtc)
4632{
4633 struct drm_device *dev = crtc->base.dev;
4634 struct drm_i915_private *dev_priv = dev->dev_private;
4635
4636 I915_WRITE(FP0(crtc->pipe), crtc->config.dpll_hw_state.fp0);
4637 I915_WRITE(FP1(crtc->pipe), crtc->config.dpll_hw_state.fp1);
4638}
4639
Jesse Barnes0b8765c62010-09-10 10:31:34 -07004640static void i9xx_crtc_enable(struct drm_crtc *crtc)
Zhenyu Wang2c072452009-06-05 15:38:42 +08004641{
4642 struct drm_device *dev = crtc->dev;
Daniel Vetter5b18e572014-04-24 23:55:06 +02004643 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -08004644 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02004645 struct intel_encoder *encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08004646 int pipe = intel_crtc->pipe;
Daniel Vetter5b18e572014-04-24 23:55:06 +02004647 int plane = intel_crtc->plane;
4648 u32 dspcntr;
Jesse Barnes79e53942008-11-07 14:24:08 -08004649
Daniel Vetter08a48462012-07-02 11:43:47 +02004650 WARN_ON(!crtc->enabled);
4651
Chris Wilsonf7abfe82010-09-13 14:19:16 +01004652 if (intel_crtc->active)
4653 return;
4654
Daniel Vetterf13c2ef2014-04-24 23:55:10 +02004655 i9xx_set_pll_dividers(intel_crtc);
4656
Daniel Vetter5b18e572014-04-24 23:55:06 +02004657 /* Set up the display plane register */
4658 dspcntr = DISPPLANE_GAMMA_ENABLE;
4659
4660 if (pipe == 0)
4661 dspcntr &= ~DISPPLANE_SEL_PIPE_MASK;
4662 else
4663 dspcntr |= DISPPLANE_SEL_PIPE_B;
4664
4665 if (intel_crtc->config.has_dp_encoder)
4666 intel_dp_set_m_n(intel_crtc);
4667
4668 intel_set_pipe_timings(intel_crtc);
4669
4670 /* pipesrc and dspsize control the size that is scaled from,
4671 * which should always be the user's requested size.
4672 */
4673 I915_WRITE(DSPSIZE(plane),
4674 ((intel_crtc->config.pipe_src_h - 1) << 16) |
4675 (intel_crtc->config.pipe_src_w - 1));
4676 I915_WRITE(DSPPOS(plane), 0);
4677
4678 i9xx_set_pipeconf(intel_crtc);
4679
4680 I915_WRITE(DSPCNTR(plane), dspcntr);
4681 POSTING_READ(DSPCNTR(plane));
4682
4683 dev_priv->display.update_primary_plane(crtc, crtc->primary->fb,
4684 crtc->x, crtc->y);
4685
Chris Wilsonf7abfe82010-09-13 14:19:16 +01004686 intel_crtc->active = true;
Chris Wilson6b383a72010-09-13 13:54:26 +01004687
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02004688 for_each_encoder_on_crtc(dev, crtc, encoder)
Mika Kuoppala9d6d9f12013-02-08 16:35:38 +02004689 if (encoder->pre_enable)
4690 encoder->pre_enable(encoder);
4691
Daniel Vetterf6736a12013-06-05 13:34:30 +02004692 i9xx_enable_pll(intel_crtc);
4693
Jesse Barnes2dd24552013-04-25 12:55:01 -07004694 i9xx_pfit_enable(intel_crtc);
4695
Ville Syrjälä63cbb072013-06-04 13:48:59 +03004696 intel_crtc_load_lut(crtc);
4697
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03004698 intel_update_watermarks(crtc);
Paulo Zanonie1fdc472014-01-17 13:51:12 -02004699 intel_enable_pipe(intel_crtc);
Ville Syrjälä2d9d2b02014-01-17 11:44:31 +02004700 intel_set_cpu_fifo_underrun_reporting(dev, pipe, true);
Daniel Vetterbe6a6f82014-04-15 18:41:22 +02004701
Daniel Vetterfa5c73b2012-07-01 23:24:36 +02004702 for_each_encoder_on_crtc(dev, crtc, encoder)
4703 encoder->enable(encoder);
Ville Syrjälä9ab04602014-05-08 19:23:14 +03004704
4705 intel_crtc_enable_planes(crtc);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07004706}
4707
Daniel Vetter87476d62013-04-11 16:29:06 +02004708static void i9xx_pfit_disable(struct intel_crtc *crtc)
4709{
4710 struct drm_device *dev = crtc->base.dev;
4711 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter328d8e82013-05-08 10:36:31 +02004712
4713 if (!crtc->config.gmch_pfit.control)
4714 return;
Daniel Vetter87476d62013-04-11 16:29:06 +02004715
4716 assert_pipe_disabled(dev_priv, crtc->pipe);
4717
Daniel Vetter328d8e82013-05-08 10:36:31 +02004718 DRM_DEBUG_DRIVER("disabling pfit, current: 0x%08x\n",
4719 I915_READ(PFIT_CONTROL));
4720 I915_WRITE(PFIT_CONTROL, 0);
Daniel Vetter87476d62013-04-11 16:29:06 +02004721}
4722
Jesse Barnes0b8765c62010-09-10 10:31:34 -07004723static void i9xx_crtc_disable(struct drm_crtc *crtc)
4724{
4725 struct drm_device *dev = crtc->dev;
4726 struct drm_i915_private *dev_priv = dev->dev_private;
4727 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02004728 struct intel_encoder *encoder;
Jesse Barnes0b8765c62010-09-10 10:31:34 -07004729 int pipe = intel_crtc->pipe;
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02004730
Chris Wilsonf7abfe82010-09-13 14:19:16 +01004731 if (!intel_crtc->active)
4732 return;
4733
Ville Syrjälä9ab04602014-05-08 19:23:14 +03004734 intel_crtc_disable_planes(crtc);
4735
Daniel Vetterea9d7582012-07-10 10:42:52 +02004736 for_each_encoder_on_crtc(dev, crtc, encoder)
4737 encoder->disable(encoder);
4738
Ville Syrjälä2d9d2b02014-01-17 11:44:31 +02004739 intel_set_cpu_fifo_underrun_reporting(dev, pipe, false);
Jesse Barnesb24e7172011-01-04 15:09:30 -08004740 intel_disable_pipe(dev_priv, pipe);
Mika Kuoppala24a1f162013-02-08 16:35:37 +02004741
Daniel Vetter87476d62013-04-11 16:29:06 +02004742 i9xx_pfit_disable(intel_crtc);
Mika Kuoppala24a1f162013-02-08 16:35:37 +02004743
Jesse Barnes89b667f2013-04-18 14:51:36 -07004744 for_each_encoder_on_crtc(dev, crtc, encoder)
4745 if (encoder->post_disable)
4746 encoder->post_disable(encoder);
4747
Chon Ming Lee076ed3b2014-04-09 13:28:17 +03004748 if (!intel_pipe_has_type(crtc, INTEL_OUTPUT_DSI)) {
4749 if (IS_CHERRYVIEW(dev))
4750 chv_disable_pll(dev_priv, pipe);
4751 else if (IS_VALLEYVIEW(dev))
4752 vlv_disable_pll(dev_priv, pipe);
4753 else
4754 i9xx_disable_pll(dev_priv, pipe);
4755 }
Jesse Barnes0b8765c62010-09-10 10:31:34 -07004756
Chris Wilsonf7abfe82010-09-13 14:19:16 +01004757 intel_crtc->active = false;
Ville Syrjälä46ba6142013-09-10 11:40:40 +03004758 intel_update_watermarks(crtc);
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03004759
Daniel Vetterefa96242014-04-24 23:55:02 +02004760 mutex_lock(&dev->struct_mutex);
Chris Wilson6b383a72010-09-13 13:54:26 +01004761 intel_update_fbc(dev);
Daniel Vetter71b1c372014-04-24 23:55:03 +02004762 intel_edp_psr_update(dev);
Daniel Vetterefa96242014-04-24 23:55:02 +02004763 mutex_unlock(&dev->struct_mutex);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07004764}
4765
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004766static void i9xx_crtc_off(struct drm_crtc *crtc)
4767{
4768}
4769
Daniel Vetter976f8a22012-07-08 22:34:21 +02004770static void intel_crtc_update_sarea(struct drm_crtc *crtc,
4771 bool enabled)
Zhenyu Wang2c072452009-06-05 15:38:42 +08004772{
4773 struct drm_device *dev = crtc->dev;
4774 struct drm_i915_master_private *master_priv;
4775 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4776 int pipe = intel_crtc->pipe;
Jesse Barnes79e53942008-11-07 14:24:08 -08004777
4778 if (!dev->primary->master)
4779 return;
4780
4781 master_priv = dev->primary->master->driver_priv;
4782 if (!master_priv->sarea_priv)
4783 return;
4784
Jesse Barnes79e53942008-11-07 14:24:08 -08004785 switch (pipe) {
4786 case 0:
4787 master_priv->sarea_priv->pipeA_w = enabled ? crtc->mode.hdisplay : 0;
4788 master_priv->sarea_priv->pipeA_h = enabled ? crtc->mode.vdisplay : 0;
4789 break;
4790 case 1:
4791 master_priv->sarea_priv->pipeB_w = enabled ? crtc->mode.hdisplay : 0;
4792 master_priv->sarea_priv->pipeB_h = enabled ? crtc->mode.vdisplay : 0;
4793 break;
4794 default:
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08004795 DRM_ERROR("Can't update pipe %c in SAREA\n", pipe_name(pipe));
Jesse Barnes79e53942008-11-07 14:24:08 -08004796 break;
4797 }
Jesse Barnes79e53942008-11-07 14:24:08 -08004798}
4799
Daniel Vetter976f8a22012-07-08 22:34:21 +02004800/**
4801 * Sets the power management mode of the pipe and plane.
4802 */
4803void intel_crtc_update_dpms(struct drm_crtc *crtc)
Chris Wilsoncdd59982010-09-08 16:30:16 +01004804{
Chris Wilsoncdd59982010-09-08 16:30:16 +01004805 struct drm_device *dev = crtc->dev;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004806 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter976f8a22012-07-08 22:34:21 +02004807 struct intel_encoder *intel_encoder;
4808 bool enable = false;
Chris Wilsoncdd59982010-09-08 16:30:16 +01004809
Daniel Vetter976f8a22012-07-08 22:34:21 +02004810 for_each_encoder_on_crtc(dev, crtc, intel_encoder)
4811 enable |= intel_encoder->connectors_active;
4812
4813 if (enable)
4814 dev_priv->display.crtc_enable(crtc);
4815 else
4816 dev_priv->display.crtc_disable(crtc);
4817
4818 intel_crtc_update_sarea(crtc, enable);
4819}
4820
Daniel Vetter976f8a22012-07-08 22:34:21 +02004821static void intel_crtc_disable(struct drm_crtc *crtc)
4822{
4823 struct drm_device *dev = crtc->dev;
4824 struct drm_connector *connector;
4825 struct drm_i915_private *dev_priv = dev->dev_private;
4826
4827 /* crtc should still be enabled when we disable it. */
4828 WARN_ON(!crtc->enabled);
4829
4830 dev_priv->display.crtc_disable(crtc);
4831 intel_crtc_update_sarea(crtc, false);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004832 dev_priv->display.off(crtc);
4833
Chris Wilson931872f2012-01-16 23:01:13 +00004834 assert_plane_disabled(dev->dev_private, to_intel_crtc(crtc)->plane);
Jani Nikula93ce0ba2013-09-13 11:03:08 +03004835 assert_cursor_disabled(dev_priv, to_intel_crtc(crtc)->pipe);
Chris Wilson931872f2012-01-16 23:01:13 +00004836 assert_pipe_disabled(dev->dev_private, to_intel_crtc(crtc)->pipe);
Chris Wilsoncdd59982010-09-08 16:30:16 +01004837
Matt Roperf4510a22014-04-01 15:22:40 -07004838 if (crtc->primary->fb) {
Chris Wilsoncdd59982010-09-08 16:30:16 +01004839 mutex_lock(&dev->struct_mutex);
Matt Roperf4510a22014-04-01 15:22:40 -07004840 intel_unpin_fb_obj(to_intel_framebuffer(crtc->primary->fb)->obj);
Chris Wilsoncdd59982010-09-08 16:30:16 +01004841 mutex_unlock(&dev->struct_mutex);
Matt Roperf4510a22014-04-01 15:22:40 -07004842 crtc->primary->fb = NULL;
Daniel Vetter976f8a22012-07-08 22:34:21 +02004843 }
4844
4845 /* Update computed state. */
4846 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
4847 if (!connector->encoder || !connector->encoder->crtc)
4848 continue;
4849
4850 if (connector->encoder->crtc != crtc)
4851 continue;
4852
4853 connector->dpms = DRM_MODE_DPMS_OFF;
4854 to_intel_encoder(connector->encoder)->connectors_active = false;
Chris Wilsoncdd59982010-09-08 16:30:16 +01004855 }
4856}
4857
Chris Wilsonea5b2132010-08-04 13:50:23 +01004858void intel_encoder_destroy(struct drm_encoder *encoder)
4859{
Chris Wilson4ef69c72010-09-09 15:14:28 +01004860 struct intel_encoder *intel_encoder = to_intel_encoder(encoder);
Chris Wilsonea5b2132010-08-04 13:50:23 +01004861
Chris Wilsonea5b2132010-08-04 13:50:23 +01004862 drm_encoder_cleanup(encoder);
4863 kfree(intel_encoder);
4864}
4865
Damien Lespiau92373292013-08-08 22:28:57 +01004866/* Simple dpms helper for encoders with just one connector, no cloning and only
Daniel Vetter5ab432e2012-06-30 08:59:56 +02004867 * one kind of off state. It clamps all !ON modes to fully OFF and changes the
4868 * state of the entire output pipe. */
Damien Lespiau92373292013-08-08 22:28:57 +01004869static void intel_encoder_dpms(struct intel_encoder *encoder, int mode)
Daniel Vetter5ab432e2012-06-30 08:59:56 +02004870{
4871 if (mode == DRM_MODE_DPMS_ON) {
4872 encoder->connectors_active = true;
4873
Daniel Vetterb2cabb02012-07-01 22:42:24 +02004874 intel_crtc_update_dpms(encoder->base.crtc);
Daniel Vetter5ab432e2012-06-30 08:59:56 +02004875 } else {
4876 encoder->connectors_active = false;
4877
Daniel Vetterb2cabb02012-07-01 22:42:24 +02004878 intel_crtc_update_dpms(encoder->base.crtc);
Daniel Vetter5ab432e2012-06-30 08:59:56 +02004879 }
4880}
4881
Daniel Vetter0a91ca22012-07-02 21:54:27 +02004882/* Cross check the actual hw state with our own modeset state tracking (and it's
4883 * internal consistency). */
Daniel Vetterb9805142012-08-31 17:37:33 +02004884static void intel_connector_check_state(struct intel_connector *connector)
Daniel Vetter0a91ca22012-07-02 21:54:27 +02004885{
4886 if (connector->get_hw_state(connector)) {
4887 struct intel_encoder *encoder = connector->encoder;
4888 struct drm_crtc *crtc;
4889 bool encoder_enabled;
4890 enum pipe pipe;
4891
4892 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
4893 connector->base.base.id,
4894 drm_get_connector_name(&connector->base));
4895
4896 WARN(connector->base.dpms == DRM_MODE_DPMS_OFF,
4897 "wrong connector dpms state\n");
4898 WARN(connector->base.encoder != &encoder->base,
4899 "active connector not linked to encoder\n");
4900 WARN(!encoder->connectors_active,
4901 "encoder->connectors_active not set\n");
4902
4903 encoder_enabled = encoder->get_hw_state(encoder, &pipe);
4904 WARN(!encoder_enabled, "encoder not enabled\n");
4905 if (WARN_ON(!encoder->base.crtc))
4906 return;
4907
4908 crtc = encoder->base.crtc;
4909
4910 WARN(!crtc->enabled, "crtc not enabled\n");
4911 WARN(!to_intel_crtc(crtc)->active, "crtc not active\n");
4912 WARN(pipe != to_intel_crtc(crtc)->pipe,
4913 "encoder active on the wrong pipe\n");
4914 }
4915}
4916
Daniel Vetter5ab432e2012-06-30 08:59:56 +02004917/* Even simpler default implementation, if there's really no special case to
4918 * consider. */
4919void intel_connector_dpms(struct drm_connector *connector, int mode)
4920{
Daniel Vetter5ab432e2012-06-30 08:59:56 +02004921 /* All the simple cases only support two dpms states. */
4922 if (mode != DRM_MODE_DPMS_ON)
4923 mode = DRM_MODE_DPMS_OFF;
4924
4925 if (mode == connector->dpms)
4926 return;
4927
4928 connector->dpms = mode;
4929
4930 /* Only need to change hw state when actually enabled */
Chris Wilsonc9976dc2013-09-29 19:15:07 +01004931 if (connector->encoder)
4932 intel_encoder_dpms(to_intel_encoder(connector->encoder), mode);
Daniel Vetter0a91ca22012-07-02 21:54:27 +02004933
Daniel Vetterb9805142012-08-31 17:37:33 +02004934 intel_modeset_check_state(connector->dev);
Daniel Vetter5ab432e2012-06-30 08:59:56 +02004935}
4936
Daniel Vetterf0947c32012-07-02 13:10:34 +02004937/* Simple connector->get_hw_state implementation for encoders that support only
4938 * one connector and no cloning and hence the encoder state determines the state
4939 * of the connector. */
4940bool intel_connector_get_hw_state(struct intel_connector *connector)
4941{
Daniel Vetter24929352012-07-02 20:28:59 +02004942 enum pipe pipe = 0;
Daniel Vetterf0947c32012-07-02 13:10:34 +02004943 struct intel_encoder *encoder = connector->encoder;
4944
4945 return encoder->get_hw_state(encoder, &pipe);
4946}
4947
Daniel Vetter1857e1d2013-04-29 19:34:16 +02004948static bool ironlake_check_fdi_lanes(struct drm_device *dev, enum pipe pipe,
4949 struct intel_crtc_config *pipe_config)
4950{
4951 struct drm_i915_private *dev_priv = dev->dev_private;
4952 struct intel_crtc *pipe_B_crtc =
4953 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[PIPE_B]);
4954
4955 DRM_DEBUG_KMS("checking fdi config on pipe %c, lanes %i\n",
4956 pipe_name(pipe), pipe_config->fdi_lanes);
4957 if (pipe_config->fdi_lanes > 4) {
4958 DRM_DEBUG_KMS("invalid fdi lane config on pipe %c: %i lanes\n",
4959 pipe_name(pipe), pipe_config->fdi_lanes);
4960 return false;
4961 }
4962
Paulo Zanonibafb6552013-11-02 21:07:44 -07004963 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Daniel Vetter1857e1d2013-04-29 19:34:16 +02004964 if (pipe_config->fdi_lanes > 2) {
4965 DRM_DEBUG_KMS("only 2 lanes on haswell, required: %i lanes\n",
4966 pipe_config->fdi_lanes);
4967 return false;
4968 } else {
4969 return true;
4970 }
4971 }
4972
4973 if (INTEL_INFO(dev)->num_pipes == 2)
4974 return true;
4975
4976 /* Ivybridge 3 pipe is really complicated */
4977 switch (pipe) {
4978 case PIPE_A:
4979 return true;
4980 case PIPE_B:
4981 if (dev_priv->pipe_to_crtc_mapping[PIPE_C]->enabled &&
4982 pipe_config->fdi_lanes > 2) {
4983 DRM_DEBUG_KMS("invalid shared fdi lane config on pipe %c: %i lanes\n",
4984 pipe_name(pipe), pipe_config->fdi_lanes);
4985 return false;
4986 }
4987 return true;
4988 case PIPE_C:
Daniel Vetter1e833f42013-02-19 22:31:57 +01004989 if (!pipe_has_enabled_pch(pipe_B_crtc) ||
Daniel Vetter1857e1d2013-04-29 19:34:16 +02004990 pipe_B_crtc->config.fdi_lanes <= 2) {
4991 if (pipe_config->fdi_lanes > 2) {
4992 DRM_DEBUG_KMS("invalid shared fdi lane config on pipe %c: %i lanes\n",
4993 pipe_name(pipe), pipe_config->fdi_lanes);
4994 return false;
4995 }
4996 } else {
4997 DRM_DEBUG_KMS("fdi link B uses too many lanes to enable link C\n");
4998 return false;
4999 }
5000 return true;
5001 default:
5002 BUG();
5003 }
5004}
5005
Daniel Vettere29c22c2013-02-21 00:00:16 +01005006#define RETRY 1
5007static int ironlake_fdi_compute_config(struct intel_crtc *intel_crtc,
5008 struct intel_crtc_config *pipe_config)
Daniel Vetter877d48d2013-04-19 11:24:43 +02005009{
Daniel Vetter1857e1d2013-04-29 19:34:16 +02005010 struct drm_device *dev = intel_crtc->base.dev;
Daniel Vetter877d48d2013-04-19 11:24:43 +02005011 struct drm_display_mode *adjusted_mode = &pipe_config->adjusted_mode;
Daniel Vetterff9a6752013-06-01 17:16:21 +02005012 int lane, link_bw, fdi_dotclock;
Daniel Vettere29c22c2013-02-21 00:00:16 +01005013 bool setup_ok, needs_recompute = false;
Daniel Vetter877d48d2013-04-19 11:24:43 +02005014
Daniel Vettere29c22c2013-02-21 00:00:16 +01005015retry:
Daniel Vetter877d48d2013-04-19 11:24:43 +02005016 /* FDI is a binary signal running at ~2.7GHz, encoding
5017 * each output octet as 10 bits. The actual frequency
5018 * is stored as a divider into a 100MHz clock, and the
5019 * mode pixel clock is stored in units of 1KHz.
5020 * Hence the bw of each lane in terms of the mode signal
5021 * is:
5022 */
5023 link_bw = intel_fdi_link_freq(dev) * MHz(100)/KHz(1)/10;
5024
Damien Lespiau241bfc32013-09-25 16:45:37 +01005025 fdi_dotclock = adjusted_mode->crtc_clock;
Daniel Vetter877d48d2013-04-19 11:24:43 +02005026
Daniel Vetter2bd89a02013-06-01 17:16:19 +02005027 lane = ironlake_get_lanes_required(fdi_dotclock, link_bw,
Daniel Vetter877d48d2013-04-19 11:24:43 +02005028 pipe_config->pipe_bpp);
5029
5030 pipe_config->fdi_lanes = lane;
5031
Daniel Vetter2bd89a02013-06-01 17:16:19 +02005032 intel_link_compute_m_n(pipe_config->pipe_bpp, lane, fdi_dotclock,
Daniel Vetter877d48d2013-04-19 11:24:43 +02005033 link_bw, &pipe_config->fdi_m_n);
Daniel Vetter1857e1d2013-04-29 19:34:16 +02005034
Daniel Vettere29c22c2013-02-21 00:00:16 +01005035 setup_ok = ironlake_check_fdi_lanes(intel_crtc->base.dev,
5036 intel_crtc->pipe, pipe_config);
5037 if (!setup_ok && pipe_config->pipe_bpp > 6*3) {
5038 pipe_config->pipe_bpp -= 2*3;
5039 DRM_DEBUG_KMS("fdi link bw constraint, reducing pipe bpp to %i\n",
5040 pipe_config->pipe_bpp);
5041 needs_recompute = true;
5042 pipe_config->bw_constrained = true;
5043
5044 goto retry;
5045 }
5046
5047 if (needs_recompute)
5048 return RETRY;
5049
5050 return setup_ok ? 0 : -EINVAL;
Daniel Vetter877d48d2013-04-19 11:24:43 +02005051}
5052
Paulo Zanoni42db64e2013-05-31 16:33:22 -03005053static void hsw_compute_ips_config(struct intel_crtc *crtc,
5054 struct intel_crtc_config *pipe_config)
5055{
Jani Nikulad330a952014-01-21 11:24:25 +02005056 pipe_config->ips_enabled = i915.enable_ips &&
Paulo Zanoni3c4ca582013-05-31 16:33:23 -03005057 hsw_crtc_supports_ips(crtc) &&
Jesse Barnesb6dfdc92013-07-25 10:06:50 -07005058 pipe_config->pipe_bpp <= 24;
Paulo Zanoni42db64e2013-05-31 16:33:22 -03005059}
5060
Daniel Vettera43f6e02013-06-07 23:10:32 +02005061static int intel_crtc_compute_config(struct intel_crtc *crtc,
Daniel Vettere29c22c2013-02-21 00:00:16 +01005062 struct intel_crtc_config *pipe_config)
Jesse Barnes79e53942008-11-07 14:24:08 -08005063{
Daniel Vettera43f6e02013-06-07 23:10:32 +02005064 struct drm_device *dev = crtc->base.dev;
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01005065 struct drm_display_mode *adjusted_mode = &pipe_config->adjusted_mode;
Chris Wilson89749352010-09-12 18:25:19 +01005066
Ville Syrjäläad3a4472013-09-04 18:30:04 +03005067 /* FIXME should check pixel clock limits on all platforms */
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03005068 if (INTEL_INFO(dev)->gen < 4) {
5069 struct drm_i915_private *dev_priv = dev->dev_private;
5070 int clock_limit =
5071 dev_priv->display.get_display_clock_speed(dev);
5072
5073 /*
5074 * Enable pixel doubling when the dot clock
5075 * is > 90% of the (display) core speed.
5076 *
Ville Syrjäläb397c962013-09-04 18:30:06 +03005077 * GDG double wide on either pipe,
5078 * otherwise pipe A only.
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03005079 */
Ville Syrjäläb397c962013-09-04 18:30:06 +03005080 if ((crtc->pipe == PIPE_A || IS_I915G(dev)) &&
Damien Lespiau241bfc32013-09-25 16:45:37 +01005081 adjusted_mode->crtc_clock > clock_limit * 9 / 10) {
Ville Syrjäläad3a4472013-09-04 18:30:04 +03005082 clock_limit *= 2;
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03005083 pipe_config->double_wide = true;
Ville Syrjäläad3a4472013-09-04 18:30:04 +03005084 }
5085
Damien Lespiau241bfc32013-09-25 16:45:37 +01005086 if (adjusted_mode->crtc_clock > clock_limit * 9 / 10)
Daniel Vettere29c22c2013-02-21 00:00:16 +01005087 return -EINVAL;
Zhenyu Wang2c072452009-06-05 15:38:42 +08005088 }
Chris Wilson89749352010-09-12 18:25:19 +01005089
Ville Syrjälä1d1d0e22013-09-04 18:30:05 +03005090 /*
5091 * Pipe horizontal size must be even in:
5092 * - DVO ganged mode
5093 * - LVDS dual channel mode
5094 * - Double wide pipe
5095 */
5096 if ((intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_LVDS) &&
5097 intel_is_dual_link_lvds(dev)) || pipe_config->double_wide)
5098 pipe_config->pipe_src_w &= ~1;
5099
Damien Lespiau8693a822013-05-03 18:48:11 +01005100 /* Cantiga+ cannot handle modes with a hsync front porch of 0.
5101 * WaPruneModeWithIncorrectHsyncOffset:ctg,elk,ilk,snb,ivb,vlv,hsw.
Chris Wilson44f46b422012-06-21 13:19:59 +03005102 */
5103 if ((INTEL_INFO(dev)->gen > 4 || IS_G4X(dev)) &&
5104 adjusted_mode->hsync_start == adjusted_mode->hdisplay)
Daniel Vettere29c22c2013-02-21 00:00:16 +01005105 return -EINVAL;
Chris Wilson44f46b422012-06-21 13:19:59 +03005106
Daniel Vetterbd080ee2013-04-17 20:01:39 +02005107 if ((IS_G4X(dev) || IS_VALLEYVIEW(dev)) && pipe_config->pipe_bpp > 10*3) {
Daniel Vetter5d2d38d2013-03-27 00:45:01 +01005108 pipe_config->pipe_bpp = 10*3; /* 12bpc is gen5+ */
Daniel Vetterbd080ee2013-04-17 20:01:39 +02005109 } else if (INTEL_INFO(dev)->gen <= 4 && pipe_config->pipe_bpp > 8*3) {
Daniel Vetter5d2d38d2013-03-27 00:45:01 +01005110 /* only a 8bpc pipe, with 6bpc dither through the panel fitter
5111 * for lvds. */
5112 pipe_config->pipe_bpp = 8*3;
5113 }
5114
Damien Lespiauf5adf942013-06-24 18:29:34 +01005115 if (HAS_IPS(dev))
Daniel Vettera43f6e02013-06-07 23:10:32 +02005116 hsw_compute_ips_config(crtc, pipe_config);
5117
5118 /* XXX: PCH clock sharing is done in ->mode_set, so make sure the old
5119 * clock survives for now. */
5120 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev))
5121 pipe_config->shared_dpll = crtc->config.shared_dpll;
Paulo Zanoni42db64e2013-05-31 16:33:22 -03005122
Daniel Vetter877d48d2013-04-19 11:24:43 +02005123 if (pipe_config->has_pch_encoder)
Daniel Vettera43f6e02013-06-07 23:10:32 +02005124 return ironlake_fdi_compute_config(crtc, pipe_config);
Daniel Vetter877d48d2013-04-19 11:24:43 +02005125
Daniel Vettere29c22c2013-02-21 00:00:16 +01005126 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08005127}
5128
Jesse Barnes25eb05fc2012-03-28 13:39:23 -07005129static int valleyview_get_display_clock_speed(struct drm_device *dev)
5130{
5131 return 400000; /* FIXME */
5132}
5133
Jesse Barnese70236a2009-09-21 10:42:27 -07005134static int i945_get_display_clock_speed(struct drm_device *dev)
Jesse Barnes79e53942008-11-07 14:24:08 -08005135{
Jesse Barnese70236a2009-09-21 10:42:27 -07005136 return 400000;
5137}
Jesse Barnes79e53942008-11-07 14:24:08 -08005138
Jesse Barnese70236a2009-09-21 10:42:27 -07005139static int i915_get_display_clock_speed(struct drm_device *dev)
5140{
5141 return 333000;
5142}
Jesse Barnes79e53942008-11-07 14:24:08 -08005143
Jesse Barnese70236a2009-09-21 10:42:27 -07005144static int i9xx_misc_get_display_clock_speed(struct drm_device *dev)
5145{
5146 return 200000;
5147}
Jesse Barnes79e53942008-11-07 14:24:08 -08005148
Daniel Vetter257a7ff2013-07-26 08:35:42 +02005149static int pnv_get_display_clock_speed(struct drm_device *dev)
5150{
5151 u16 gcfgc = 0;
5152
5153 pci_read_config_word(dev->pdev, GCFGC, &gcfgc);
5154
5155 switch (gcfgc & GC_DISPLAY_CLOCK_MASK) {
5156 case GC_DISPLAY_CLOCK_267_MHZ_PNV:
5157 return 267000;
5158 case GC_DISPLAY_CLOCK_333_MHZ_PNV:
5159 return 333000;
5160 case GC_DISPLAY_CLOCK_444_MHZ_PNV:
5161 return 444000;
5162 case GC_DISPLAY_CLOCK_200_MHZ_PNV:
5163 return 200000;
5164 default:
5165 DRM_ERROR("Unknown pnv display core clock 0x%04x\n", gcfgc);
5166 case GC_DISPLAY_CLOCK_133_MHZ_PNV:
5167 return 133000;
5168 case GC_DISPLAY_CLOCK_167_MHZ_PNV:
5169 return 167000;
5170 }
5171}
5172
Jesse Barnese70236a2009-09-21 10:42:27 -07005173static int i915gm_get_display_clock_speed(struct drm_device *dev)
5174{
5175 u16 gcfgc = 0;
5176
5177 pci_read_config_word(dev->pdev, GCFGC, &gcfgc);
5178
5179 if (gcfgc & GC_LOW_FREQUENCY_ENABLE)
Jesse Barnes79e53942008-11-07 14:24:08 -08005180 return 133000;
Jesse Barnese70236a2009-09-21 10:42:27 -07005181 else {
5182 switch (gcfgc & GC_DISPLAY_CLOCK_MASK) {
5183 case GC_DISPLAY_CLOCK_333_MHZ:
5184 return 333000;
5185 default:
5186 case GC_DISPLAY_CLOCK_190_200_MHZ:
5187 return 190000;
5188 }
5189 }
5190}
Jesse Barnes79e53942008-11-07 14:24:08 -08005191
Jesse Barnese70236a2009-09-21 10:42:27 -07005192static int i865_get_display_clock_speed(struct drm_device *dev)
5193{
5194 return 266000;
5195}
5196
5197static int i855_get_display_clock_speed(struct drm_device *dev)
5198{
5199 u16 hpllcc = 0;
5200 /* Assume that the hardware is in the high speed state. This
5201 * should be the default.
5202 */
5203 switch (hpllcc & GC_CLOCK_CONTROL_MASK) {
5204 case GC_CLOCK_133_200:
5205 case GC_CLOCK_100_200:
5206 return 200000;
5207 case GC_CLOCK_166_250:
5208 return 250000;
5209 case GC_CLOCK_100_133:
5210 return 133000;
5211 }
5212
5213 /* Shouldn't happen */
5214 return 0;
5215}
5216
5217static int i830_get_display_clock_speed(struct drm_device *dev)
5218{
5219 return 133000;
Jesse Barnes79e53942008-11-07 14:24:08 -08005220}
5221
Zhenyu Wang2c072452009-06-05 15:38:42 +08005222static void
Ville Syrjäläa65851a2013-04-23 15:03:34 +03005223intel_reduce_m_n_ratio(uint32_t *num, uint32_t *den)
Zhenyu Wang2c072452009-06-05 15:38:42 +08005224{
Ville Syrjäläa65851a2013-04-23 15:03:34 +03005225 while (*num > DATA_LINK_M_N_MASK ||
5226 *den > DATA_LINK_M_N_MASK) {
Zhenyu Wang2c072452009-06-05 15:38:42 +08005227 *num >>= 1;
5228 *den >>= 1;
5229 }
5230}
5231
Ville Syrjäläa65851a2013-04-23 15:03:34 +03005232static void compute_m_n(unsigned int m, unsigned int n,
5233 uint32_t *ret_m, uint32_t *ret_n)
5234{
5235 *ret_n = min_t(unsigned int, roundup_pow_of_two(n), DATA_LINK_N_MAX);
5236 *ret_m = div_u64((uint64_t) m * *ret_n, n);
5237 intel_reduce_m_n_ratio(ret_m, ret_n);
5238}
5239
Daniel Vettere69d0bc2012-11-29 15:59:36 +01005240void
5241intel_link_compute_m_n(int bits_per_pixel, int nlanes,
5242 int pixel_clock, int link_clock,
5243 struct intel_link_m_n *m_n)
Zhenyu Wang2c072452009-06-05 15:38:42 +08005244{
Daniel Vettere69d0bc2012-11-29 15:59:36 +01005245 m_n->tu = 64;
Ville Syrjäläa65851a2013-04-23 15:03:34 +03005246
5247 compute_m_n(bits_per_pixel * pixel_clock,
5248 link_clock * nlanes * 8,
5249 &m_n->gmch_m, &m_n->gmch_n);
5250
5251 compute_m_n(pixel_clock, link_clock,
5252 &m_n->link_m, &m_n->link_n);
Zhenyu Wang2c072452009-06-05 15:38:42 +08005253}
5254
Chris Wilsona7615032011-01-12 17:04:08 +00005255static inline bool intel_panel_use_ssc(struct drm_i915_private *dev_priv)
5256{
Jani Nikulad330a952014-01-21 11:24:25 +02005257 if (i915.panel_use_ssc >= 0)
5258 return i915.panel_use_ssc != 0;
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03005259 return dev_priv->vbt.lvds_use_ssc
Keith Packard435793d2011-07-12 14:56:22 -07005260 && !(dev_priv->quirks & QUIRK_LVDS_SSC_DISABLE);
Chris Wilsona7615032011-01-12 17:04:08 +00005261}
5262
Jesse Barnesc65d77d2011-12-15 12:30:36 -08005263static int i9xx_get_refclk(struct drm_crtc *crtc, int num_connectors)
5264{
5265 struct drm_device *dev = crtc->dev;
5266 struct drm_i915_private *dev_priv = dev->dev_private;
5267 int refclk;
5268
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005269 if (IS_VALLEYVIEW(dev)) {
Daniel Vetter9a0ea492013-09-16 11:29:34 +02005270 refclk = 100000;
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005271 } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) &&
Jesse Barnesc65d77d2011-12-15 12:30:36 -08005272 intel_panel_use_ssc(dev_priv) && num_connectors < 2) {
Ville Syrjäläe91e9412013-12-09 18:54:16 +02005273 refclk = dev_priv->vbt.lvds_ssc_freq;
5274 DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n", refclk);
Jesse Barnesc65d77d2011-12-15 12:30:36 -08005275 } else if (!IS_GEN2(dev)) {
5276 refclk = 96000;
5277 } else {
5278 refclk = 48000;
5279 }
5280
5281 return refclk;
5282}
5283
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005284static uint32_t pnv_dpll_compute_fp(struct dpll *dpll)
Jesse Barnesc65d77d2011-12-15 12:30:36 -08005285{
Daniel Vetter7df00d72013-05-21 21:54:55 +02005286 return (1 << dpll->n) << 16 | dpll->m2;
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005287}
Daniel Vetterf47709a2013-03-28 10:42:02 +01005288
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005289static uint32_t i9xx_dpll_compute_fp(struct dpll *dpll)
5290{
5291 return dpll->n << 16 | dpll->m1 << 8 | dpll->m2;
Jesse Barnesc65d77d2011-12-15 12:30:36 -08005292}
5293
Daniel Vetterf47709a2013-03-28 10:42:02 +01005294static void i9xx_update_pll_dividers(struct intel_crtc *crtc,
Jesse Barnesa7516a02011-12-15 12:30:37 -08005295 intel_clock_t *reduced_clock)
5296{
Daniel Vetterf47709a2013-03-28 10:42:02 +01005297 struct drm_device *dev = crtc->base.dev;
Jesse Barnesa7516a02011-12-15 12:30:37 -08005298 u32 fp, fp2 = 0;
5299
5300 if (IS_PINEVIEW(dev)) {
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005301 fp = pnv_dpll_compute_fp(&crtc->config.dpll);
Jesse Barnesa7516a02011-12-15 12:30:37 -08005302 if (reduced_clock)
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005303 fp2 = pnv_dpll_compute_fp(reduced_clock);
Jesse Barnesa7516a02011-12-15 12:30:37 -08005304 } else {
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005305 fp = i9xx_dpll_compute_fp(&crtc->config.dpll);
Jesse Barnesa7516a02011-12-15 12:30:37 -08005306 if (reduced_clock)
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005307 fp2 = i9xx_dpll_compute_fp(reduced_clock);
Jesse Barnesa7516a02011-12-15 12:30:37 -08005308 }
5309
Daniel Vetter8bcc2792013-06-05 13:34:28 +02005310 crtc->config.dpll_hw_state.fp0 = fp;
Jesse Barnesa7516a02011-12-15 12:30:37 -08005311
Daniel Vetterf47709a2013-03-28 10:42:02 +01005312 crtc->lowfreq_avail = false;
5313 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_LVDS) &&
Jani Nikulad330a952014-01-21 11:24:25 +02005314 reduced_clock && i915.powersave) {
Daniel Vetter8bcc2792013-06-05 13:34:28 +02005315 crtc->config.dpll_hw_state.fp1 = fp2;
Daniel Vetterf47709a2013-03-28 10:42:02 +01005316 crtc->lowfreq_avail = true;
Jesse Barnesa7516a02011-12-15 12:30:37 -08005317 } else {
Daniel Vetter8bcc2792013-06-05 13:34:28 +02005318 crtc->config.dpll_hw_state.fp1 = fp;
Jesse Barnesa7516a02011-12-15 12:30:37 -08005319 }
5320}
5321
Chon Ming Lee5e69f972013-09-05 20:41:49 +08005322static void vlv_pllb_recal_opamp(struct drm_i915_private *dev_priv, enum pipe
5323 pipe)
Jesse Barnes89b667f2013-04-18 14:51:36 -07005324{
5325 u32 reg_val;
5326
5327 /*
5328 * PLLB opamp always calibrates to max value of 0x3f, force enable it
5329 * and set it to a reasonable value instead.
5330 */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005331 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW9(1));
Jesse Barnes89b667f2013-04-18 14:51:36 -07005332 reg_val &= 0xffffff00;
5333 reg_val |= 0x00000030;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005334 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9(1), reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005335
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005336 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_REF_DW13);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005337 reg_val &= 0x8cffffff;
5338 reg_val = 0x8c000000;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005339 vlv_dpio_write(dev_priv, pipe, VLV_REF_DW13, reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005340
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005341 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW9(1));
Jesse Barnes89b667f2013-04-18 14:51:36 -07005342 reg_val &= 0xffffff00;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005343 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9(1), reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005344
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005345 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_REF_DW13);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005346 reg_val &= 0x00ffffff;
5347 reg_val |= 0xb0000000;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005348 vlv_dpio_write(dev_priv, pipe, VLV_REF_DW13, reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005349}
5350
Daniel Vetterb5518422013-05-03 11:49:48 +02005351static void intel_pch_transcoder_set_m_n(struct intel_crtc *crtc,
5352 struct intel_link_m_n *m_n)
5353{
5354 struct drm_device *dev = crtc->base.dev;
5355 struct drm_i915_private *dev_priv = dev->dev_private;
5356 int pipe = crtc->pipe;
5357
Daniel Vettere3b95f12013-05-03 11:49:49 +02005358 I915_WRITE(PCH_TRANS_DATA_M1(pipe), TU_SIZE(m_n->tu) | m_n->gmch_m);
5359 I915_WRITE(PCH_TRANS_DATA_N1(pipe), m_n->gmch_n);
5360 I915_WRITE(PCH_TRANS_LINK_M1(pipe), m_n->link_m);
5361 I915_WRITE(PCH_TRANS_LINK_N1(pipe), m_n->link_n);
Daniel Vetterb5518422013-05-03 11:49:48 +02005362}
5363
5364static void intel_cpu_transcoder_set_m_n(struct intel_crtc *crtc,
5365 struct intel_link_m_n *m_n)
5366{
5367 struct drm_device *dev = crtc->base.dev;
5368 struct drm_i915_private *dev_priv = dev->dev_private;
5369 int pipe = crtc->pipe;
5370 enum transcoder transcoder = crtc->config.cpu_transcoder;
5371
5372 if (INTEL_INFO(dev)->gen >= 5) {
5373 I915_WRITE(PIPE_DATA_M1(transcoder), TU_SIZE(m_n->tu) | m_n->gmch_m);
5374 I915_WRITE(PIPE_DATA_N1(transcoder), m_n->gmch_n);
5375 I915_WRITE(PIPE_LINK_M1(transcoder), m_n->link_m);
5376 I915_WRITE(PIPE_LINK_N1(transcoder), m_n->link_n);
5377 } else {
Daniel Vettere3b95f12013-05-03 11:49:49 +02005378 I915_WRITE(PIPE_DATA_M_G4X(pipe), TU_SIZE(m_n->tu) | m_n->gmch_m);
5379 I915_WRITE(PIPE_DATA_N_G4X(pipe), m_n->gmch_n);
5380 I915_WRITE(PIPE_LINK_M_G4X(pipe), m_n->link_m);
5381 I915_WRITE(PIPE_LINK_N_G4X(pipe), m_n->link_n);
Daniel Vetterb5518422013-05-03 11:49:48 +02005382 }
5383}
5384
Daniel Vetter03afc4a2013-04-02 23:42:31 +02005385static void intel_dp_set_m_n(struct intel_crtc *crtc)
5386{
5387 if (crtc->config.has_pch_encoder)
5388 intel_pch_transcoder_set_m_n(crtc, &crtc->config.dp_m_n);
5389 else
5390 intel_cpu_transcoder_set_m_n(crtc, &crtc->config.dp_m_n);
5391}
5392
Daniel Vetterf47709a2013-03-28 10:42:02 +01005393static void vlv_update_pll(struct intel_crtc *crtc)
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005394{
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02005395 u32 dpll, dpll_md;
5396
5397 /*
5398 * Enable DPIO clock input. We should never disable the reference
5399 * clock for pipe B, since VGA hotplug / manual detection depends
5400 * on it.
5401 */
5402 dpll = DPLL_EXT_BUFFER_ENABLE_VLV | DPLL_REFA_CLK_ENABLE_VLV |
5403 DPLL_VGA_MODE_DIS | DPLL_INTEGRATED_CLOCK_VLV;
5404 /* We should never disable this, set it here for state tracking */
5405 if (crtc->pipe == PIPE_B)
5406 dpll |= DPLL_INTEGRATED_CRI_CLK_VLV;
5407 dpll |= DPLL_VCO_ENABLE;
5408 crtc->config.dpll_hw_state.dpll = dpll;
5409
5410 dpll_md = (crtc->config.pixel_multiplier - 1)
5411 << DPLL_MD_UDI_MULTIPLIER_SHIFT;
5412 crtc->config.dpll_hw_state.dpll_md = dpll_md;
5413}
5414
5415static void vlv_prepare_pll(struct intel_crtc *crtc)
5416{
Daniel Vetterf47709a2013-03-28 10:42:02 +01005417 struct drm_device *dev = crtc->base.dev;
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005418 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterf47709a2013-03-28 10:42:02 +01005419 int pipe = crtc->pipe;
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02005420 u32 mdiv;
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005421 u32 bestn, bestm1, bestm2, bestp1, bestp2;
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02005422 u32 coreclk, reg_val;
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005423
Daniel Vetter09153002012-12-12 14:06:44 +01005424 mutex_lock(&dev_priv->dpio_lock);
5425
Daniel Vetterf47709a2013-03-28 10:42:02 +01005426 bestn = crtc->config.dpll.n;
5427 bestm1 = crtc->config.dpll.m1;
5428 bestm2 = crtc->config.dpll.m2;
5429 bestp1 = crtc->config.dpll.p1;
5430 bestp2 = crtc->config.dpll.p2;
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005431
Jesse Barnes89b667f2013-04-18 14:51:36 -07005432 /* See eDP HDMI DPIO driver vbios notes doc */
5433
5434 /* PLL B needs special handling */
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02005435 if (pipe == PIPE_B)
Chon Ming Lee5e69f972013-09-05 20:41:49 +08005436 vlv_pllb_recal_opamp(dev_priv, pipe);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005437
5438 /* Set up Tx target for periodic Rcomp update */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005439 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9_BCAST, 0x0100000f);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005440
5441 /* Disable target IRef on PLL */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005442 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW8(pipe));
Jesse Barnes89b667f2013-04-18 14:51:36 -07005443 reg_val &= 0x00ffffff;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005444 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW8(pipe), reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005445
5446 /* Disable fast lock */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005447 vlv_dpio_write(dev_priv, pipe, VLV_CMN_DW0, 0x610);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005448
5449 /* Set idtafcrecal before PLL is enabled */
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005450 mdiv = ((bestm1 << DPIO_M1DIV_SHIFT) | (bestm2 & DPIO_M2DIV_MASK));
5451 mdiv |= ((bestp1 << DPIO_P1_SHIFT) | (bestp2 << DPIO_P2_SHIFT));
5452 mdiv |= ((bestn << DPIO_N_SHIFT));
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005453 mdiv |= (1 << DPIO_K_SHIFT);
Jesse Barnes7df50802013-05-02 10:48:09 -07005454
5455 /*
5456 * Post divider depends on pixel clock rate, DAC vs digital (and LVDS,
5457 * but we don't support that).
5458 * Note: don't use the DAC post divider as it seems unstable.
5459 */
5460 mdiv |= (DPIO_POST_DIV_HDMIDP << DPIO_POST_DIV_SHIFT);
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005461 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW3(pipe), mdiv);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005462
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005463 mdiv |= DPIO_ENABLE_CALIBRATION;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005464 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW3(pipe), mdiv);
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005465
Jesse Barnes89b667f2013-04-18 14:51:36 -07005466 /* Set HBR and RBR LPF coefficients */
Daniel Vetterff9a6752013-06-01 17:16:21 +02005467 if (crtc->config.port_clock == 162000 ||
Ville Syrjälä99750bd2013-06-14 14:02:52 +03005468 intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_ANALOG) ||
Jesse Barnes89b667f2013-04-18 14:51:36 -07005469 intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_HDMI))
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005470 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW10(pipe),
Ville Syrjälä885b0122013-07-05 19:21:38 +03005471 0x009f0003);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005472 else
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005473 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW10(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07005474 0x00d0000f);
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005475
Jesse Barnes89b667f2013-04-18 14:51:36 -07005476 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_EDP) ||
5477 intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_DISPLAYPORT)) {
5478 /* Use SSC source */
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02005479 if (pipe == PIPE_A)
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005480 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07005481 0x0df40000);
5482 else
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005483 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07005484 0x0df70000);
5485 } else { /* HDMI or VGA */
5486 /* Use bend source */
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02005487 if (pipe == PIPE_A)
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005488 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07005489 0x0df70000);
5490 else
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005491 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07005492 0x0df40000);
5493 }
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005494
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005495 coreclk = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW7(pipe));
Jesse Barnes89b667f2013-04-18 14:51:36 -07005496 coreclk = (coreclk & 0x0000ff00) | 0x01c00000;
5497 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_DISPLAYPORT) ||
5498 intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_EDP))
5499 coreclk |= 0x01000000;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005500 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW7(pipe), coreclk);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005501
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005502 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW11(pipe), 0x87871000);
Daniel Vetter09153002012-12-12 14:06:44 +01005503 mutex_unlock(&dev_priv->dpio_lock);
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005504}
5505
Chon Ming Lee9d556c92014-05-02 14:27:47 +03005506static void chv_update_pll(struct intel_crtc *crtc)
5507{
5508 struct drm_device *dev = crtc->base.dev;
5509 struct drm_i915_private *dev_priv = dev->dev_private;
5510 int pipe = crtc->pipe;
5511 int dpll_reg = DPLL(crtc->pipe);
5512 enum dpio_channel port = vlv_pipe_to_channel(pipe);
5513 u32 val, loopfilter, intcoeff;
5514 u32 bestn, bestm1, bestm2, bestp1, bestp2, bestm2_frac;
5515 int refclk;
5516
Ville Syrjäläa11b0702014-04-09 13:28:57 +03005517 crtc->config.dpll_hw_state.dpll = DPLL_SSC_REF_CLOCK_CHV |
5518 DPLL_REFA_CLK_ENABLE_VLV | DPLL_VGA_MODE_DIS |
5519 DPLL_VCO_ENABLE;
5520 if (pipe != PIPE_A)
5521 crtc->config.dpll_hw_state.dpll |= DPLL_INTEGRATED_CRI_CLK_VLV;
5522
5523 crtc->config.dpll_hw_state.dpll_md =
5524 (crtc->config.pixel_multiplier - 1) << DPLL_MD_UDI_MULTIPLIER_SHIFT;
Chon Ming Lee9d556c92014-05-02 14:27:47 +03005525
5526 bestn = crtc->config.dpll.n;
5527 bestm2_frac = crtc->config.dpll.m2 & 0x3fffff;
5528 bestm1 = crtc->config.dpll.m1;
5529 bestm2 = crtc->config.dpll.m2 >> 22;
5530 bestp1 = crtc->config.dpll.p1;
5531 bestp2 = crtc->config.dpll.p2;
5532
5533 /*
5534 * Enable Refclk and SSC
5535 */
Ville Syrjäläa11b0702014-04-09 13:28:57 +03005536 I915_WRITE(dpll_reg,
5537 crtc->config.dpll_hw_state.dpll & ~DPLL_VCO_ENABLE);
5538
5539 mutex_lock(&dev_priv->dpio_lock);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03005540
5541 /* Propagate soft reset to data lane reset */
5542 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS_DW0(port));
5543 val &= ~(DPIO_PCS_TX_LANE2_RESET | DPIO_PCS_TX_LANE1_RESET);
5544 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW0(port), val);
5545
5546 /* Disable 10bit clock to display controller */
5547 val = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW14(port));
5548 val &= ~DPIO_DCLKP_EN;
5549 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port), val);
5550
5551 /* p1 and p2 divider */
5552 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW13(port),
5553 5 << DPIO_CHV_S1_DIV_SHIFT |
5554 bestp1 << DPIO_CHV_P1_DIV_SHIFT |
5555 bestp2 << DPIO_CHV_P2_DIV_SHIFT |
5556 1 << DPIO_CHV_K_DIV_SHIFT);
5557
5558 /* Feedback post-divider - m2 */
5559 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW0(port), bestm2);
5560
5561 /* Feedback refclk divider - n and m1 */
5562 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW1(port),
5563 DPIO_CHV_M1_DIV_BY_2 |
5564 1 << DPIO_CHV_N_DIV_SHIFT);
5565
5566 /* M2 fraction division */
5567 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW2(port), bestm2_frac);
5568
5569 /* M2 fraction division enable */
5570 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW3(port),
5571 DPIO_CHV_FRAC_DIV_EN |
5572 (2 << DPIO_CHV_FEEDFWD_GAIN_SHIFT));
5573
5574 /* Loop filter */
5575 refclk = i9xx_get_refclk(&crtc->base, 0);
5576 loopfilter = 5 << DPIO_CHV_PROP_COEFF_SHIFT |
5577 2 << DPIO_CHV_GAIN_CTRL_SHIFT;
5578 if (refclk == 100000)
5579 intcoeff = 11;
5580 else if (refclk == 38400)
5581 intcoeff = 10;
5582 else
5583 intcoeff = 9;
5584 loopfilter |= intcoeff << DPIO_CHV_INT_COEFF_SHIFT;
5585 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW6(port), loopfilter);
5586
5587 /* AFC Recal */
5588 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port),
5589 vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW14(port)) |
5590 DPIO_AFC_RECAL);
5591
5592 mutex_unlock(&dev_priv->dpio_lock);
5593}
5594
Daniel Vetterf47709a2013-03-28 10:42:02 +01005595static void i9xx_update_pll(struct intel_crtc *crtc,
5596 intel_clock_t *reduced_clock,
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005597 int num_connectors)
5598{
Daniel Vetterf47709a2013-03-28 10:42:02 +01005599 struct drm_device *dev = crtc->base.dev;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005600 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005601 u32 dpll;
5602 bool is_sdvo;
Daniel Vetterf47709a2013-03-28 10:42:02 +01005603 struct dpll *clock = &crtc->config.dpll;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005604
Daniel Vetterf47709a2013-03-28 10:42:02 +01005605 i9xx_update_pll_dividers(crtc, reduced_clock);
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05305606
Daniel Vetterf47709a2013-03-28 10:42:02 +01005607 is_sdvo = intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_SDVO) ||
5608 intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_HDMI);
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005609
5610 dpll = DPLL_VGA_MODE_DIS;
5611
Daniel Vetterf47709a2013-03-28 10:42:02 +01005612 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_LVDS))
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005613 dpll |= DPLLB_MODE_LVDS;
5614 else
5615 dpll |= DPLLB_MODE_DAC_SERIAL;
Daniel Vetter6cc5f342013-03-27 00:44:53 +01005616
Daniel Vetteref1b4602013-06-01 17:17:04 +02005617 if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev)) {
Daniel Vetter198a037f2013-04-19 11:14:37 +02005618 dpll |= (crtc->config.pixel_multiplier - 1)
5619 << SDVO_MULTIPLIER_SHIFT_HIRES;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005620 }
Daniel Vetter198a037f2013-04-19 11:14:37 +02005621
5622 if (is_sdvo)
Daniel Vetter4a33e482013-07-06 12:52:05 +02005623 dpll |= DPLL_SDVO_HIGH_SPEED;
Daniel Vetter198a037f2013-04-19 11:14:37 +02005624
Daniel Vetterf47709a2013-03-28 10:42:02 +01005625 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_DISPLAYPORT))
Daniel Vetter4a33e482013-07-06 12:52:05 +02005626 dpll |= DPLL_SDVO_HIGH_SPEED;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005627
5628 /* compute bitmask from p1 value */
5629 if (IS_PINEVIEW(dev))
5630 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW;
5631 else {
5632 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
5633 if (IS_G4X(dev) && reduced_clock)
5634 dpll |= (1 << (reduced_clock->p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
5635 }
5636 switch (clock->p2) {
5637 case 5:
5638 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
5639 break;
5640 case 7:
5641 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
5642 break;
5643 case 10:
5644 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
5645 break;
5646 case 14:
5647 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
5648 break;
5649 }
5650 if (INTEL_INFO(dev)->gen >= 4)
5651 dpll |= (6 << PLL_LOAD_PULSE_PHASE_SHIFT);
5652
Daniel Vetter09ede542013-04-30 14:01:45 +02005653 if (crtc->config.sdvo_tv_clock)
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005654 dpll |= PLL_REF_INPUT_TVCLKINBC;
Daniel Vetterf47709a2013-03-28 10:42:02 +01005655 else if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_LVDS) &&
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005656 intel_panel_use_ssc(dev_priv) && num_connectors < 2)
5657 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
5658 else
5659 dpll |= PLL_REF_INPUT_DREFCLK;
5660
5661 dpll |= DPLL_VCO_ENABLE;
Daniel Vetter8bcc2792013-06-05 13:34:28 +02005662 crtc->config.dpll_hw_state.dpll = dpll;
5663
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005664 if (INTEL_INFO(dev)->gen >= 4) {
Daniel Vetteref1b4602013-06-01 17:17:04 +02005665 u32 dpll_md = (crtc->config.pixel_multiplier - 1)
5666 << DPLL_MD_UDI_MULTIPLIER_SHIFT;
Daniel Vetter8bcc2792013-06-05 13:34:28 +02005667 crtc->config.dpll_hw_state.dpll_md = dpll_md;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005668 }
5669}
5670
Daniel Vetterf47709a2013-03-28 10:42:02 +01005671static void i8xx_update_pll(struct intel_crtc *crtc,
Daniel Vetterf47709a2013-03-28 10:42:02 +01005672 intel_clock_t *reduced_clock,
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005673 int num_connectors)
5674{
Daniel Vetterf47709a2013-03-28 10:42:02 +01005675 struct drm_device *dev = crtc->base.dev;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005676 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005677 u32 dpll;
Daniel Vetterf47709a2013-03-28 10:42:02 +01005678 struct dpll *clock = &crtc->config.dpll;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005679
Daniel Vetterf47709a2013-03-28 10:42:02 +01005680 i9xx_update_pll_dividers(crtc, reduced_clock);
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05305681
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005682 dpll = DPLL_VGA_MODE_DIS;
5683
Daniel Vetterf47709a2013-03-28 10:42:02 +01005684 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_LVDS)) {
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005685 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
5686 } else {
5687 if (clock->p1 == 2)
5688 dpll |= PLL_P1_DIVIDE_BY_TWO;
5689 else
5690 dpll |= (clock->p1 - 2) << DPLL_FPA01_P1_POST_DIV_SHIFT;
5691 if (clock->p2 == 4)
5692 dpll |= PLL_P2_DIVIDE_BY_4;
5693 }
5694
Daniel Vetter4a33e482013-07-06 12:52:05 +02005695 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_DVO))
5696 dpll |= DPLL_DVO_2X_MODE;
5697
Daniel Vetterf47709a2013-03-28 10:42:02 +01005698 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_LVDS) &&
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005699 intel_panel_use_ssc(dev_priv) && num_connectors < 2)
5700 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
5701 else
5702 dpll |= PLL_REF_INPUT_DREFCLK;
5703
5704 dpll |= DPLL_VCO_ENABLE;
Daniel Vetter8bcc2792013-06-05 13:34:28 +02005705 crtc->config.dpll_hw_state.dpll = dpll;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005706}
5707
Daniel Vetter8a654f32013-06-01 17:16:22 +02005708static void intel_set_pipe_timings(struct intel_crtc *intel_crtc)
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005709{
5710 struct drm_device *dev = intel_crtc->base.dev;
5711 struct drm_i915_private *dev_priv = dev->dev_private;
5712 enum pipe pipe = intel_crtc->pipe;
Daniel Vetter3b117c82013-04-17 20:15:07 +02005713 enum transcoder cpu_transcoder = intel_crtc->config.cpu_transcoder;
Daniel Vetter8a654f32013-06-01 17:16:22 +02005714 struct drm_display_mode *adjusted_mode =
5715 &intel_crtc->config.adjusted_mode;
Ville Syrjälä1caea6e2014-03-28 23:29:32 +02005716 uint32_t crtc_vtotal, crtc_vblank_end;
5717 int vsyncshift = 0;
Daniel Vetter4d8a62e2013-05-03 11:49:51 +02005718
5719 /* We need to be careful not to changed the adjusted mode, for otherwise
5720 * the hw state checker will get angry at the mismatch. */
5721 crtc_vtotal = adjusted_mode->crtc_vtotal;
5722 crtc_vblank_end = adjusted_mode->crtc_vblank_end;
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005723
Ville Syrjälä609aeac2014-03-28 23:29:30 +02005724 if (adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE) {
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005725 /* the chip adds 2 halflines automatically */
Daniel Vetter4d8a62e2013-05-03 11:49:51 +02005726 crtc_vtotal -= 1;
5727 crtc_vblank_end -= 1;
Ville Syrjälä609aeac2014-03-28 23:29:30 +02005728
5729 if (intel_pipe_has_type(&intel_crtc->base, INTEL_OUTPUT_SDVO))
5730 vsyncshift = (adjusted_mode->crtc_htotal - 1) / 2;
5731 else
5732 vsyncshift = adjusted_mode->crtc_hsync_start -
5733 adjusted_mode->crtc_htotal / 2;
Ville Syrjälä1caea6e2014-03-28 23:29:32 +02005734 if (vsyncshift < 0)
5735 vsyncshift += adjusted_mode->crtc_htotal;
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005736 }
5737
5738 if (INTEL_INFO(dev)->gen > 3)
Paulo Zanonife2b8f92012-10-23 18:30:02 -02005739 I915_WRITE(VSYNCSHIFT(cpu_transcoder), vsyncshift);
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005740
Paulo Zanonife2b8f92012-10-23 18:30:02 -02005741 I915_WRITE(HTOTAL(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005742 (adjusted_mode->crtc_hdisplay - 1) |
5743 ((adjusted_mode->crtc_htotal - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02005744 I915_WRITE(HBLANK(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005745 (adjusted_mode->crtc_hblank_start - 1) |
5746 ((adjusted_mode->crtc_hblank_end - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02005747 I915_WRITE(HSYNC(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005748 (adjusted_mode->crtc_hsync_start - 1) |
5749 ((adjusted_mode->crtc_hsync_end - 1) << 16));
5750
Paulo Zanonife2b8f92012-10-23 18:30:02 -02005751 I915_WRITE(VTOTAL(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005752 (adjusted_mode->crtc_vdisplay - 1) |
Daniel Vetter4d8a62e2013-05-03 11:49:51 +02005753 ((crtc_vtotal - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02005754 I915_WRITE(VBLANK(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005755 (adjusted_mode->crtc_vblank_start - 1) |
Daniel Vetter4d8a62e2013-05-03 11:49:51 +02005756 ((crtc_vblank_end - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02005757 I915_WRITE(VSYNC(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005758 (adjusted_mode->crtc_vsync_start - 1) |
5759 ((adjusted_mode->crtc_vsync_end - 1) << 16));
5760
Paulo Zanonib5e508d2012-10-24 11:34:43 -02005761 /* Workaround: when the EDP input selection is B, the VTOTAL_B must be
5762 * programmed with the VTOTAL_EDP value. Same for VTOTAL_C. This is
5763 * documented on the DDI_FUNC_CTL register description, EDP Input Select
5764 * bits. */
5765 if (IS_HASWELL(dev) && cpu_transcoder == TRANSCODER_EDP &&
5766 (pipe == PIPE_B || pipe == PIPE_C))
5767 I915_WRITE(VTOTAL(pipe), I915_READ(VTOTAL(cpu_transcoder)));
5768
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005769 /* pipesrc controls the size that is scaled from, which should
5770 * always be the user's requested size.
5771 */
5772 I915_WRITE(PIPESRC(pipe),
Ville Syrjälä37327ab2013-09-04 18:25:28 +03005773 ((intel_crtc->config.pipe_src_w - 1) << 16) |
5774 (intel_crtc->config.pipe_src_h - 1));
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005775}
5776
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02005777static void intel_get_pipe_timings(struct intel_crtc *crtc,
5778 struct intel_crtc_config *pipe_config)
5779{
5780 struct drm_device *dev = crtc->base.dev;
5781 struct drm_i915_private *dev_priv = dev->dev_private;
5782 enum transcoder cpu_transcoder = pipe_config->cpu_transcoder;
5783 uint32_t tmp;
5784
5785 tmp = I915_READ(HTOTAL(cpu_transcoder));
5786 pipe_config->adjusted_mode.crtc_hdisplay = (tmp & 0xffff) + 1;
5787 pipe_config->adjusted_mode.crtc_htotal = ((tmp >> 16) & 0xffff) + 1;
5788 tmp = I915_READ(HBLANK(cpu_transcoder));
5789 pipe_config->adjusted_mode.crtc_hblank_start = (tmp & 0xffff) + 1;
5790 pipe_config->adjusted_mode.crtc_hblank_end = ((tmp >> 16) & 0xffff) + 1;
5791 tmp = I915_READ(HSYNC(cpu_transcoder));
5792 pipe_config->adjusted_mode.crtc_hsync_start = (tmp & 0xffff) + 1;
5793 pipe_config->adjusted_mode.crtc_hsync_end = ((tmp >> 16) & 0xffff) + 1;
5794
5795 tmp = I915_READ(VTOTAL(cpu_transcoder));
5796 pipe_config->adjusted_mode.crtc_vdisplay = (tmp & 0xffff) + 1;
5797 pipe_config->adjusted_mode.crtc_vtotal = ((tmp >> 16) & 0xffff) + 1;
5798 tmp = I915_READ(VBLANK(cpu_transcoder));
5799 pipe_config->adjusted_mode.crtc_vblank_start = (tmp & 0xffff) + 1;
5800 pipe_config->adjusted_mode.crtc_vblank_end = ((tmp >> 16) & 0xffff) + 1;
5801 tmp = I915_READ(VSYNC(cpu_transcoder));
5802 pipe_config->adjusted_mode.crtc_vsync_start = (tmp & 0xffff) + 1;
5803 pipe_config->adjusted_mode.crtc_vsync_end = ((tmp >> 16) & 0xffff) + 1;
5804
5805 if (I915_READ(PIPECONF(cpu_transcoder)) & PIPECONF_INTERLACE_MASK) {
5806 pipe_config->adjusted_mode.flags |= DRM_MODE_FLAG_INTERLACE;
5807 pipe_config->adjusted_mode.crtc_vtotal += 1;
5808 pipe_config->adjusted_mode.crtc_vblank_end += 1;
5809 }
5810
5811 tmp = I915_READ(PIPESRC(crtc->pipe));
Ville Syrjälä37327ab2013-09-04 18:25:28 +03005812 pipe_config->pipe_src_h = (tmp & 0xffff) + 1;
5813 pipe_config->pipe_src_w = ((tmp >> 16) & 0xffff) + 1;
5814
5815 pipe_config->requested_mode.vdisplay = pipe_config->pipe_src_h;
5816 pipe_config->requested_mode.hdisplay = pipe_config->pipe_src_w;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02005817}
5818
Daniel Vetterf6a83282014-02-11 15:28:57 -08005819void intel_mode_from_pipe_config(struct drm_display_mode *mode,
5820 struct intel_crtc_config *pipe_config)
Jesse Barnesbabea612013-06-26 18:57:38 +03005821{
Daniel Vetterf6a83282014-02-11 15:28:57 -08005822 mode->hdisplay = pipe_config->adjusted_mode.crtc_hdisplay;
5823 mode->htotal = pipe_config->adjusted_mode.crtc_htotal;
5824 mode->hsync_start = pipe_config->adjusted_mode.crtc_hsync_start;
5825 mode->hsync_end = pipe_config->adjusted_mode.crtc_hsync_end;
Jesse Barnesbabea612013-06-26 18:57:38 +03005826
Daniel Vetterf6a83282014-02-11 15:28:57 -08005827 mode->vdisplay = pipe_config->adjusted_mode.crtc_vdisplay;
5828 mode->vtotal = pipe_config->adjusted_mode.crtc_vtotal;
5829 mode->vsync_start = pipe_config->adjusted_mode.crtc_vsync_start;
5830 mode->vsync_end = pipe_config->adjusted_mode.crtc_vsync_end;
Jesse Barnesbabea612013-06-26 18:57:38 +03005831
Daniel Vetterf6a83282014-02-11 15:28:57 -08005832 mode->flags = pipe_config->adjusted_mode.flags;
Jesse Barnesbabea612013-06-26 18:57:38 +03005833
Daniel Vetterf6a83282014-02-11 15:28:57 -08005834 mode->clock = pipe_config->adjusted_mode.crtc_clock;
5835 mode->flags |= pipe_config->adjusted_mode.flags;
Jesse Barnesbabea612013-06-26 18:57:38 +03005836}
5837
Daniel Vetter84b046f2013-02-19 18:48:54 +01005838static void i9xx_set_pipeconf(struct intel_crtc *intel_crtc)
5839{
5840 struct drm_device *dev = intel_crtc->base.dev;
5841 struct drm_i915_private *dev_priv = dev->dev_private;
5842 uint32_t pipeconf;
5843
Daniel Vetter9f11a9e2013-06-13 00:54:58 +02005844 pipeconf = 0;
Daniel Vetter84b046f2013-02-19 18:48:54 +01005845
Daniel Vetter67c72a12013-09-24 11:46:14 +02005846 if (dev_priv->quirks & QUIRK_PIPEA_FORCE &&
5847 I915_READ(PIPECONF(intel_crtc->pipe)) & PIPECONF_ENABLE)
5848 pipeconf |= PIPECONF_ENABLE;
5849
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03005850 if (intel_crtc->config.double_wide)
5851 pipeconf |= PIPECONF_DOUBLE_WIDE;
Daniel Vetter84b046f2013-02-19 18:48:54 +01005852
Daniel Vetterff9ce462013-04-24 14:57:17 +02005853 /* only g4x and later have fancy bpc/dither controls */
5854 if (IS_G4X(dev) || IS_VALLEYVIEW(dev)) {
Daniel Vetterff9ce462013-04-24 14:57:17 +02005855 /* Bspec claims that we can't use dithering for 30bpp pipes. */
5856 if (intel_crtc->config.dither && intel_crtc->config.pipe_bpp != 30)
5857 pipeconf |= PIPECONF_DITHER_EN |
5858 PIPECONF_DITHER_TYPE_SP;
5859
5860 switch (intel_crtc->config.pipe_bpp) {
5861 case 18:
5862 pipeconf |= PIPECONF_6BPC;
5863 break;
5864 case 24:
5865 pipeconf |= PIPECONF_8BPC;
5866 break;
5867 case 30:
5868 pipeconf |= PIPECONF_10BPC;
5869 break;
5870 default:
5871 /* Case prevented by intel_choose_pipe_bpp_dither. */
5872 BUG();
Daniel Vetter84b046f2013-02-19 18:48:54 +01005873 }
5874 }
5875
5876 if (HAS_PIPE_CXSR(dev)) {
5877 if (intel_crtc->lowfreq_avail) {
5878 DRM_DEBUG_KMS("enabling CxSR downclocking\n");
5879 pipeconf |= PIPECONF_CXSR_DOWNCLOCK;
5880 } else {
5881 DRM_DEBUG_KMS("disabling CxSR downclocking\n");
Daniel Vetter84b046f2013-02-19 18:48:54 +01005882 }
5883 }
5884
Ville Syrjäläefc2cff2014-03-28 23:29:31 +02005885 if (intel_crtc->config.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE) {
5886 if (INTEL_INFO(dev)->gen < 4 ||
5887 intel_pipe_has_type(&intel_crtc->base, INTEL_OUTPUT_SDVO))
5888 pipeconf |= PIPECONF_INTERLACE_W_FIELD_INDICATION;
5889 else
5890 pipeconf |= PIPECONF_INTERLACE_W_SYNC_SHIFT;
5891 } else
Daniel Vetter84b046f2013-02-19 18:48:54 +01005892 pipeconf |= PIPECONF_PROGRESSIVE;
5893
Daniel Vetter9f11a9e2013-06-13 00:54:58 +02005894 if (IS_VALLEYVIEW(dev) && intel_crtc->config.limited_color_range)
5895 pipeconf |= PIPECONF_COLOR_RANGE_SELECT;
Ville Syrjälä9c8e09b2013-04-02 16:10:09 +03005896
Daniel Vetter84b046f2013-02-19 18:48:54 +01005897 I915_WRITE(PIPECONF(intel_crtc->pipe), pipeconf);
5898 POSTING_READ(PIPECONF(intel_crtc->pipe));
5899}
5900
Eric Anholtf564048e2011-03-30 13:01:02 -07005901static int i9xx_crtc_mode_set(struct drm_crtc *crtc,
Eric Anholtf564048e2011-03-30 13:01:02 -07005902 int x, int y,
Daniel Vetter94352cf2012-07-05 22:51:56 +02005903 struct drm_framebuffer *fb)
Jesse Barnes79e53942008-11-07 14:24:08 -08005904{
5905 struct drm_device *dev = crtc->dev;
5906 struct drm_i915_private *dev_priv = dev->dev_private;
5907 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Eric Anholtc751ce42010-03-25 11:48:48 -07005908 int refclk, num_connectors = 0;
Jesse Barnes652c3932009-08-17 13:31:43 -07005909 intel_clock_t clock, reduced_clock;
Daniel Vettera16af7212013-04-30 14:01:44 +02005910 bool ok, has_reduced_clock = false;
Jani Nikulae9fd1c02013-08-27 15:12:23 +03005911 bool is_lvds = false, is_dsi = false;
Chris Wilson5eddb702010-09-11 13:48:45 +01005912 struct intel_encoder *encoder;
Ma Lingd4906092009-03-18 20:13:27 +08005913 const intel_limit_t *limit;
Jesse Barnes79e53942008-11-07 14:24:08 -08005914
Daniel Vetter6c2b7c122012-07-05 09:50:24 +02005915 for_each_encoder_on_crtc(dev, crtc, encoder) {
Chris Wilson5eddb702010-09-11 13:48:45 +01005916 switch (encoder->type) {
Jesse Barnes79e53942008-11-07 14:24:08 -08005917 case INTEL_OUTPUT_LVDS:
5918 is_lvds = true;
5919 break;
Jani Nikulae9fd1c02013-08-27 15:12:23 +03005920 case INTEL_OUTPUT_DSI:
5921 is_dsi = true;
5922 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08005923 }
Kristian Høgsberg43565a02009-02-13 20:56:52 -05005924
Eric Anholtc751ce42010-03-25 11:48:48 -07005925 num_connectors++;
Jesse Barnes79e53942008-11-07 14:24:08 -08005926 }
5927
Jani Nikulaf2335332013-09-13 11:03:09 +03005928 if (is_dsi)
Daniel Vetter5b18e572014-04-24 23:55:06 +02005929 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08005930
Jani Nikulaf2335332013-09-13 11:03:09 +03005931 if (!intel_crtc->config.clock_set) {
5932 refclk = i9xx_get_refclk(crtc, num_connectors);
5933
Jani Nikulae9fd1c02013-08-27 15:12:23 +03005934 /*
5935 * Returns a set of divisors for the desired target clock with
5936 * the given refclk, or FALSE. The returned values represent
5937 * the clock equation: reflck * (5 * (m1 + 2) + (m2 + 2)) / (n +
5938 * 2) / p1 / p2.
5939 */
5940 limit = intel_limit(crtc, refclk);
5941 ok = dev_priv->display.find_dpll(limit, crtc,
5942 intel_crtc->config.port_clock,
5943 refclk, NULL, &clock);
Jani Nikulaf2335332013-09-13 11:03:09 +03005944 if (!ok) {
Jani Nikulae9fd1c02013-08-27 15:12:23 +03005945 DRM_ERROR("Couldn't find PLL settings for mode!\n");
5946 return -EINVAL;
5947 }
Eric Anholtf564048e2011-03-30 13:01:02 -07005948
Jani Nikulaf2335332013-09-13 11:03:09 +03005949 if (is_lvds && dev_priv->lvds_downclock_avail) {
5950 /*
5951 * Ensure we match the reduced clock's P to the target
5952 * clock. If the clocks don't match, we can't switch
5953 * the display clock by using the FP0/FP1. In such case
5954 * we will disable the LVDS downclock feature.
5955 */
5956 has_reduced_clock =
5957 dev_priv->display.find_dpll(limit, crtc,
5958 dev_priv->lvds_downclock,
5959 refclk, &clock,
5960 &reduced_clock);
5961 }
5962 /* Compat-code for transition, will disappear. */
Daniel Vetterf47709a2013-03-28 10:42:02 +01005963 intel_crtc->config.dpll.n = clock.n;
5964 intel_crtc->config.dpll.m1 = clock.m1;
5965 intel_crtc->config.dpll.m2 = clock.m2;
5966 intel_crtc->config.dpll.p1 = clock.p1;
5967 intel_crtc->config.dpll.p2 = clock.p2;
5968 }
Eric Anholtf564048e2011-03-30 13:01:02 -07005969
Jani Nikulae9fd1c02013-08-27 15:12:23 +03005970 if (IS_GEN2(dev)) {
Daniel Vetter8a654f32013-06-01 17:16:22 +02005971 i8xx_update_pll(intel_crtc,
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05305972 has_reduced_clock ? &reduced_clock : NULL,
5973 num_connectors);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03005974 } else if (IS_CHERRYVIEW(dev)) {
5975 chv_update_pll(intel_crtc);
Jani Nikulae9fd1c02013-08-27 15:12:23 +03005976 } else if (IS_VALLEYVIEW(dev)) {
Jani Nikulaf2335332013-09-13 11:03:09 +03005977 vlv_update_pll(intel_crtc);
Jani Nikulae9fd1c02013-08-27 15:12:23 +03005978 } else {
Daniel Vetterf47709a2013-03-28 10:42:02 +01005979 i9xx_update_pll(intel_crtc,
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005980 has_reduced_clock ? &reduced_clock : NULL,
Robin Schroereba905b2014-05-18 02:24:50 +02005981 num_connectors);
Jani Nikulae9fd1c02013-08-27 15:12:23 +03005982 }
Eric Anholtf564048e2011-03-30 13:01:02 -07005983
Daniel Vetterc8f7a0d2014-04-24 23:55:04 +02005984 return 0;
Eric Anholtf564048e2011-03-30 13:01:02 -07005985}
5986
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02005987static void i9xx_get_pfit_config(struct intel_crtc *crtc,
5988 struct intel_crtc_config *pipe_config)
5989{
5990 struct drm_device *dev = crtc->base.dev;
5991 struct drm_i915_private *dev_priv = dev->dev_private;
5992 uint32_t tmp;
5993
Ville Syrjälädc9e7dec2014-01-10 14:06:45 +02005994 if (INTEL_INFO(dev)->gen <= 3 && (IS_I830(dev) || !IS_MOBILE(dev)))
5995 return;
5996
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02005997 tmp = I915_READ(PFIT_CONTROL);
Daniel Vetter06922822013-07-11 13:35:40 +02005998 if (!(tmp & PFIT_ENABLE))
5999 return;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02006000
Daniel Vetter06922822013-07-11 13:35:40 +02006001 /* Check whether the pfit is attached to our pipe. */
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02006002 if (INTEL_INFO(dev)->gen < 4) {
6003 if (crtc->pipe != PIPE_B)
6004 return;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02006005 } else {
6006 if ((tmp & PFIT_PIPE_MASK) != (crtc->pipe << PFIT_PIPE_SHIFT))
6007 return;
6008 }
6009
Daniel Vetter06922822013-07-11 13:35:40 +02006010 pipe_config->gmch_pfit.control = tmp;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02006011 pipe_config->gmch_pfit.pgm_ratios = I915_READ(PFIT_PGM_RATIOS);
6012 if (INTEL_INFO(dev)->gen < 5)
6013 pipe_config->gmch_pfit.lvds_border_bits =
6014 I915_READ(LVDS) & LVDS_BORDER_ENABLE;
6015}
6016
Jesse Barnesacbec812013-09-20 11:29:32 -07006017static void vlv_crtc_clock_get(struct intel_crtc *crtc,
6018 struct intel_crtc_config *pipe_config)
6019{
6020 struct drm_device *dev = crtc->base.dev;
6021 struct drm_i915_private *dev_priv = dev->dev_private;
6022 int pipe = pipe_config->cpu_transcoder;
6023 intel_clock_t clock;
6024 u32 mdiv;
Chris Wilson662c6ec2013-09-25 14:24:01 -07006025 int refclk = 100000;
Jesse Barnesacbec812013-09-20 11:29:32 -07006026
6027 mutex_lock(&dev_priv->dpio_lock);
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006028 mdiv = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW3(pipe));
Jesse Barnesacbec812013-09-20 11:29:32 -07006029 mutex_unlock(&dev_priv->dpio_lock);
6030
6031 clock.m1 = (mdiv >> DPIO_M1DIV_SHIFT) & 7;
6032 clock.m2 = mdiv & DPIO_M2DIV_MASK;
6033 clock.n = (mdiv >> DPIO_N_SHIFT) & 0xf;
6034 clock.p1 = (mdiv >> DPIO_P1_SHIFT) & 7;
6035 clock.p2 = (mdiv >> DPIO_P2_SHIFT) & 0x1f;
6036
Ville Syrjäläf6466282013-10-14 14:50:31 +03006037 vlv_clock(refclk, &clock);
Jesse Barnesacbec812013-09-20 11:29:32 -07006038
Ville Syrjäläf6466282013-10-14 14:50:31 +03006039 /* clock.dot is the fast clock */
6040 pipe_config->port_clock = clock.dot / 5;
Jesse Barnesacbec812013-09-20 11:29:32 -07006041}
6042
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006043static void i9xx_get_plane_config(struct intel_crtc *crtc,
6044 struct intel_plane_config *plane_config)
6045{
6046 struct drm_device *dev = crtc->base.dev;
6047 struct drm_i915_private *dev_priv = dev->dev_private;
6048 u32 val, base, offset;
6049 int pipe = crtc->pipe, plane = crtc->plane;
6050 int fourcc, pixel_format;
6051 int aligned_height;
6052
Dave Airlie66e514c2014-04-03 07:51:54 +10006053 crtc->base.primary->fb = kzalloc(sizeof(struct intel_framebuffer), GFP_KERNEL);
6054 if (!crtc->base.primary->fb) {
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006055 DRM_DEBUG_KMS("failed to alloc fb\n");
6056 return;
6057 }
6058
6059 val = I915_READ(DSPCNTR(plane));
6060
6061 if (INTEL_INFO(dev)->gen >= 4)
6062 if (val & DISPPLANE_TILED)
6063 plane_config->tiled = true;
6064
6065 pixel_format = val & DISPPLANE_PIXFORMAT_MASK;
6066 fourcc = intel_format_to_fourcc(pixel_format);
Dave Airlie66e514c2014-04-03 07:51:54 +10006067 crtc->base.primary->fb->pixel_format = fourcc;
6068 crtc->base.primary->fb->bits_per_pixel =
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006069 drm_format_plane_cpp(fourcc, 0) * 8;
6070
6071 if (INTEL_INFO(dev)->gen >= 4) {
6072 if (plane_config->tiled)
6073 offset = I915_READ(DSPTILEOFF(plane));
6074 else
6075 offset = I915_READ(DSPLINOFF(plane));
6076 base = I915_READ(DSPSURF(plane)) & 0xfffff000;
6077 } else {
6078 base = I915_READ(DSPADDR(plane));
6079 }
6080 plane_config->base = base;
6081
6082 val = I915_READ(PIPESRC(pipe));
Dave Airlie66e514c2014-04-03 07:51:54 +10006083 crtc->base.primary->fb->width = ((val >> 16) & 0xfff) + 1;
6084 crtc->base.primary->fb->height = ((val >> 0) & 0xfff) + 1;
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006085
6086 val = I915_READ(DSPSTRIDE(pipe));
Dave Airlie66e514c2014-04-03 07:51:54 +10006087 crtc->base.primary->fb->pitches[0] = val & 0xffffff80;
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006088
Dave Airlie66e514c2014-04-03 07:51:54 +10006089 aligned_height = intel_align_height(dev, crtc->base.primary->fb->height,
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006090 plane_config->tiled);
6091
Dave Airlie66e514c2014-04-03 07:51:54 +10006092 plane_config->size = ALIGN(crtc->base.primary->fb->pitches[0] *
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006093 aligned_height, PAGE_SIZE);
6094
6095 DRM_DEBUG_KMS("pipe/plane %d/%d with fb: size=%dx%d@%d, offset=%x, pitch %d, size 0x%x\n",
Dave Airlie66e514c2014-04-03 07:51:54 +10006096 pipe, plane, crtc->base.primary->fb->width,
6097 crtc->base.primary->fb->height,
6098 crtc->base.primary->fb->bits_per_pixel, base,
6099 crtc->base.primary->fb->pitches[0],
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006100 plane_config->size);
6101
6102}
6103
Ville Syrjälä70b23a92014-04-09 13:28:22 +03006104static void chv_crtc_clock_get(struct intel_crtc *crtc,
6105 struct intel_crtc_config *pipe_config)
6106{
6107 struct drm_device *dev = crtc->base.dev;
6108 struct drm_i915_private *dev_priv = dev->dev_private;
6109 int pipe = pipe_config->cpu_transcoder;
6110 enum dpio_channel port = vlv_pipe_to_channel(pipe);
6111 intel_clock_t clock;
6112 u32 cmn_dw13, pll_dw0, pll_dw1, pll_dw2;
6113 int refclk = 100000;
6114
6115 mutex_lock(&dev_priv->dpio_lock);
6116 cmn_dw13 = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW13(port));
6117 pll_dw0 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW0(port));
6118 pll_dw1 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW1(port));
6119 pll_dw2 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW2(port));
6120 mutex_unlock(&dev_priv->dpio_lock);
6121
6122 clock.m1 = (pll_dw1 & 0x7) == DPIO_CHV_M1_DIV_BY_2 ? 2 : 0;
6123 clock.m2 = ((pll_dw0 & 0xff) << 22) | (pll_dw2 & 0x3fffff);
6124 clock.n = (pll_dw1 >> DPIO_CHV_N_DIV_SHIFT) & 0xf;
6125 clock.p1 = (cmn_dw13 >> DPIO_CHV_P1_DIV_SHIFT) & 0x7;
6126 clock.p2 = (cmn_dw13 >> DPIO_CHV_P2_DIV_SHIFT) & 0x1f;
6127
6128 chv_clock(refclk, &clock);
6129
6130 /* clock.dot is the fast clock */
6131 pipe_config->port_clock = clock.dot / 5;
6132}
6133
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01006134static bool i9xx_get_pipe_config(struct intel_crtc *crtc,
6135 struct intel_crtc_config *pipe_config)
6136{
6137 struct drm_device *dev = crtc->base.dev;
6138 struct drm_i915_private *dev_priv = dev->dev_private;
6139 uint32_t tmp;
6140
Imre Deakb5482bd2014-03-05 16:20:55 +02006141 if (!intel_display_power_enabled(dev_priv,
6142 POWER_DOMAIN_PIPE(crtc->pipe)))
6143 return false;
6144
Daniel Vettere143a212013-07-04 12:01:15 +02006145 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +02006146 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
Daniel Vettereccb1402013-05-22 00:50:22 +02006147
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01006148 tmp = I915_READ(PIPECONF(crtc->pipe));
6149 if (!(tmp & PIPECONF_ENABLE))
6150 return false;
6151
Ville Syrjälä42571ae2013-09-06 23:29:00 +03006152 if (IS_G4X(dev) || IS_VALLEYVIEW(dev)) {
6153 switch (tmp & PIPECONF_BPC_MASK) {
6154 case PIPECONF_6BPC:
6155 pipe_config->pipe_bpp = 18;
6156 break;
6157 case PIPECONF_8BPC:
6158 pipe_config->pipe_bpp = 24;
6159 break;
6160 case PIPECONF_10BPC:
6161 pipe_config->pipe_bpp = 30;
6162 break;
6163 default:
6164 break;
6165 }
6166 }
6167
Daniel Vetterb5a9fa02014-04-24 23:54:49 +02006168 if (IS_VALLEYVIEW(dev) && (tmp & PIPECONF_COLOR_RANGE_SELECT))
6169 pipe_config->limited_color_range = true;
6170
Ville Syrjälä282740f2013-09-04 18:30:03 +03006171 if (INTEL_INFO(dev)->gen < 4)
6172 pipe_config->double_wide = tmp & PIPECONF_DOUBLE_WIDE;
6173
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02006174 intel_get_pipe_timings(crtc, pipe_config);
6175
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02006176 i9xx_get_pfit_config(crtc, pipe_config);
6177
Daniel Vetter6c49f242013-06-06 12:45:25 +02006178 if (INTEL_INFO(dev)->gen >= 4) {
6179 tmp = I915_READ(DPLL_MD(crtc->pipe));
6180 pipe_config->pixel_multiplier =
6181 ((tmp & DPLL_MD_UDI_MULTIPLIER_MASK)
6182 >> DPLL_MD_UDI_MULTIPLIER_SHIFT) + 1;
Daniel Vetter8bcc2792013-06-05 13:34:28 +02006183 pipe_config->dpll_hw_state.dpll_md = tmp;
Daniel Vetter6c49f242013-06-06 12:45:25 +02006184 } else if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev)) {
6185 tmp = I915_READ(DPLL(crtc->pipe));
6186 pipe_config->pixel_multiplier =
6187 ((tmp & SDVO_MULTIPLIER_MASK)
6188 >> SDVO_MULTIPLIER_SHIFT_HIRES) + 1;
6189 } else {
6190 /* Note that on i915G/GM the pixel multiplier is in the sdvo
6191 * port and will be fixed up in the encoder->get_config
6192 * function. */
6193 pipe_config->pixel_multiplier = 1;
6194 }
Daniel Vetter8bcc2792013-06-05 13:34:28 +02006195 pipe_config->dpll_hw_state.dpll = I915_READ(DPLL(crtc->pipe));
6196 if (!IS_VALLEYVIEW(dev)) {
6197 pipe_config->dpll_hw_state.fp0 = I915_READ(FP0(crtc->pipe));
6198 pipe_config->dpll_hw_state.fp1 = I915_READ(FP1(crtc->pipe));
Ville Syrjälä165e9012013-06-26 17:44:15 +03006199 } else {
6200 /* Mask out read-only status bits. */
6201 pipe_config->dpll_hw_state.dpll &= ~(DPLL_LOCK_VLV |
6202 DPLL_PORTC_READY_MASK |
6203 DPLL_PORTB_READY_MASK);
Daniel Vetter8bcc2792013-06-05 13:34:28 +02006204 }
Daniel Vetter6c49f242013-06-06 12:45:25 +02006205
Ville Syrjälä70b23a92014-04-09 13:28:22 +03006206 if (IS_CHERRYVIEW(dev))
6207 chv_crtc_clock_get(crtc, pipe_config);
6208 else if (IS_VALLEYVIEW(dev))
Jesse Barnesacbec812013-09-20 11:29:32 -07006209 vlv_crtc_clock_get(crtc, pipe_config);
6210 else
6211 i9xx_crtc_clock_get(crtc, pipe_config);
Ville Syrjälä18442d02013-09-13 16:00:08 +03006212
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01006213 return true;
6214}
6215
Paulo Zanonidde86e22012-12-01 12:04:25 -02006216static void ironlake_init_pch_refclk(struct drm_device *dev)
Jesse Barnes13d83a62011-08-03 12:59:20 -07006217{
6218 struct drm_i915_private *dev_priv = dev->dev_private;
6219 struct drm_mode_config *mode_config = &dev->mode_config;
Jesse Barnes13d83a62011-08-03 12:59:20 -07006220 struct intel_encoder *encoder;
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006221 u32 val, final;
Jesse Barnes13d83a62011-08-03 12:59:20 -07006222 bool has_lvds = false;
Keith Packard199e5d72011-09-22 12:01:57 -07006223 bool has_cpu_edp = false;
Keith Packard199e5d72011-09-22 12:01:57 -07006224 bool has_panel = false;
Keith Packard99eb6a02011-09-26 14:29:12 -07006225 bool has_ck505 = false;
6226 bool can_ssc = false;
Jesse Barnes13d83a62011-08-03 12:59:20 -07006227
6228 /* We need to take the global config into account */
Keith Packard199e5d72011-09-22 12:01:57 -07006229 list_for_each_entry(encoder, &mode_config->encoder_list,
6230 base.head) {
6231 switch (encoder->type) {
6232 case INTEL_OUTPUT_LVDS:
6233 has_panel = true;
6234 has_lvds = true;
6235 break;
6236 case INTEL_OUTPUT_EDP:
6237 has_panel = true;
Imre Deak2de69052013-05-08 13:14:04 +03006238 if (enc_to_dig_port(&encoder->base)->port == PORT_A)
Keith Packard199e5d72011-09-22 12:01:57 -07006239 has_cpu_edp = true;
6240 break;
Jesse Barnes13d83a62011-08-03 12:59:20 -07006241 }
6242 }
6243
Keith Packard99eb6a02011-09-26 14:29:12 -07006244 if (HAS_PCH_IBX(dev)) {
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03006245 has_ck505 = dev_priv->vbt.display_clock_mode;
Keith Packard99eb6a02011-09-26 14:29:12 -07006246 can_ssc = has_ck505;
6247 } else {
6248 has_ck505 = false;
6249 can_ssc = true;
6250 }
6251
Imre Deak2de69052013-05-08 13:14:04 +03006252 DRM_DEBUG_KMS("has_panel %d has_lvds %d has_ck505 %d\n",
6253 has_panel, has_lvds, has_ck505);
Jesse Barnes13d83a62011-08-03 12:59:20 -07006254
6255 /* Ironlake: try to setup display ref clock before DPLL
6256 * enabling. This is only under driver's control after
6257 * PCH B stepping, previous chipset stepping should be
6258 * ignoring this setting.
6259 */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006260 val = I915_READ(PCH_DREF_CONTROL);
Jesse Barnes13d83a62011-08-03 12:59:20 -07006261
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006262 /* As we must carefully and slowly disable/enable each source in turn,
6263 * compute the final state we want first and check if we need to
6264 * make any changes at all.
6265 */
6266 final = val;
6267 final &= ~DREF_NONSPREAD_SOURCE_MASK;
Keith Packard99eb6a02011-09-26 14:29:12 -07006268 if (has_ck505)
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006269 final |= DREF_NONSPREAD_CK505_ENABLE;
Keith Packard99eb6a02011-09-26 14:29:12 -07006270 else
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006271 final |= DREF_NONSPREAD_SOURCE_ENABLE;
6272
6273 final &= ~DREF_SSC_SOURCE_MASK;
6274 final &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
6275 final &= ~DREF_SSC1_ENABLE;
Jesse Barnes13d83a62011-08-03 12:59:20 -07006276
Keith Packard199e5d72011-09-22 12:01:57 -07006277 if (has_panel) {
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006278 final |= DREF_SSC_SOURCE_ENABLE;
6279
6280 if (intel_panel_use_ssc(dev_priv) && can_ssc)
6281 final |= DREF_SSC1_ENABLE;
6282
6283 if (has_cpu_edp) {
6284 if (intel_panel_use_ssc(dev_priv) && can_ssc)
6285 final |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD;
6286 else
6287 final |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD;
6288 } else
6289 final |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
6290 } else {
6291 final |= DREF_SSC_SOURCE_DISABLE;
6292 final |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
6293 }
6294
6295 if (final == val)
6296 return;
6297
6298 /* Always enable nonspread source */
6299 val &= ~DREF_NONSPREAD_SOURCE_MASK;
6300
6301 if (has_ck505)
6302 val |= DREF_NONSPREAD_CK505_ENABLE;
6303 else
6304 val |= DREF_NONSPREAD_SOURCE_ENABLE;
6305
6306 if (has_panel) {
6307 val &= ~DREF_SSC_SOURCE_MASK;
6308 val |= DREF_SSC_SOURCE_ENABLE;
Jesse Barnes13d83a62011-08-03 12:59:20 -07006309
Keith Packard199e5d72011-09-22 12:01:57 -07006310 /* SSC must be turned on before enabling the CPU output */
Keith Packard99eb6a02011-09-26 14:29:12 -07006311 if (intel_panel_use_ssc(dev_priv) && can_ssc) {
Keith Packard199e5d72011-09-22 12:01:57 -07006312 DRM_DEBUG_KMS("Using SSC on panel\n");
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006313 val |= DREF_SSC1_ENABLE;
Daniel Vettere77166b2012-03-30 22:14:05 +02006314 } else
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006315 val &= ~DREF_SSC1_ENABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07006316
6317 /* Get SSC going before enabling the outputs */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006318 I915_WRITE(PCH_DREF_CONTROL, val);
Keith Packard199e5d72011-09-22 12:01:57 -07006319 POSTING_READ(PCH_DREF_CONTROL);
6320 udelay(200);
6321
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006322 val &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
Jesse Barnes13d83a62011-08-03 12:59:20 -07006323
6324 /* Enable CPU source on CPU attached eDP */
Keith Packard199e5d72011-09-22 12:01:57 -07006325 if (has_cpu_edp) {
Keith Packard99eb6a02011-09-26 14:29:12 -07006326 if (intel_panel_use_ssc(dev_priv) && can_ssc) {
Keith Packard199e5d72011-09-22 12:01:57 -07006327 DRM_DEBUG_KMS("Using SSC on eDP\n");
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006328 val |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD;
Robin Schroereba905b2014-05-18 02:24:50 +02006329 } else
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006330 val |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD;
Keith Packard199e5d72011-09-22 12:01:57 -07006331 } else
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006332 val |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07006333
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006334 I915_WRITE(PCH_DREF_CONTROL, val);
Keith Packard199e5d72011-09-22 12:01:57 -07006335 POSTING_READ(PCH_DREF_CONTROL);
6336 udelay(200);
6337 } else {
6338 DRM_DEBUG_KMS("Disabling SSC entirely\n");
6339
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006340 val &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
Keith Packard199e5d72011-09-22 12:01:57 -07006341
6342 /* Turn off CPU output */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006343 val |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07006344
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006345 I915_WRITE(PCH_DREF_CONTROL, val);
Keith Packard199e5d72011-09-22 12:01:57 -07006346 POSTING_READ(PCH_DREF_CONTROL);
6347 udelay(200);
6348
6349 /* Turn off the SSC source */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006350 val &= ~DREF_SSC_SOURCE_MASK;
6351 val |= DREF_SSC_SOURCE_DISABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07006352
6353 /* Turn off SSC1 */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006354 val &= ~DREF_SSC1_ENABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07006355
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006356 I915_WRITE(PCH_DREF_CONTROL, val);
Jesse Barnes13d83a62011-08-03 12:59:20 -07006357 POSTING_READ(PCH_DREF_CONTROL);
6358 udelay(200);
6359 }
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006360
6361 BUG_ON(val != final);
Jesse Barnes13d83a62011-08-03 12:59:20 -07006362}
6363
Paulo Zanonif31f2d52013-07-18 18:51:11 -03006364static void lpt_reset_fdi_mphy(struct drm_i915_private *dev_priv)
Paulo Zanonidde86e22012-12-01 12:04:25 -02006365{
Paulo Zanonif31f2d52013-07-18 18:51:11 -03006366 uint32_t tmp;
Paulo Zanonidde86e22012-12-01 12:04:25 -02006367
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006368 tmp = I915_READ(SOUTH_CHICKEN2);
6369 tmp |= FDI_MPHY_IOSFSB_RESET_CTL;
6370 I915_WRITE(SOUTH_CHICKEN2, tmp);
Paulo Zanonidde86e22012-12-01 12:04:25 -02006371
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006372 if (wait_for_atomic_us(I915_READ(SOUTH_CHICKEN2) &
6373 FDI_MPHY_IOSFSB_RESET_STATUS, 100))
6374 DRM_ERROR("FDI mPHY reset assert timeout\n");
Paulo Zanonidde86e22012-12-01 12:04:25 -02006375
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006376 tmp = I915_READ(SOUTH_CHICKEN2);
6377 tmp &= ~FDI_MPHY_IOSFSB_RESET_CTL;
6378 I915_WRITE(SOUTH_CHICKEN2, tmp);
Paulo Zanonidde86e22012-12-01 12:04:25 -02006379
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006380 if (wait_for_atomic_us((I915_READ(SOUTH_CHICKEN2) &
6381 FDI_MPHY_IOSFSB_RESET_STATUS) == 0, 100))
6382 DRM_ERROR("FDI mPHY reset de-assert timeout\n");
Paulo Zanonif31f2d52013-07-18 18:51:11 -03006383}
6384
6385/* WaMPhyProgramming:hsw */
6386static void lpt_program_fdi_mphy(struct drm_i915_private *dev_priv)
6387{
6388 uint32_t tmp;
Paulo Zanonidde86e22012-12-01 12:04:25 -02006389
6390 tmp = intel_sbi_read(dev_priv, 0x8008, SBI_MPHY);
6391 tmp &= ~(0xFF << 24);
6392 tmp |= (0x12 << 24);
6393 intel_sbi_write(dev_priv, 0x8008, tmp, SBI_MPHY);
6394
Paulo Zanonidde86e22012-12-01 12:04:25 -02006395 tmp = intel_sbi_read(dev_priv, 0x2008, SBI_MPHY);
6396 tmp |= (1 << 11);
6397 intel_sbi_write(dev_priv, 0x2008, tmp, SBI_MPHY);
6398
6399 tmp = intel_sbi_read(dev_priv, 0x2108, SBI_MPHY);
6400 tmp |= (1 << 11);
6401 intel_sbi_write(dev_priv, 0x2108, tmp, SBI_MPHY);
6402
Paulo Zanonidde86e22012-12-01 12:04:25 -02006403 tmp = intel_sbi_read(dev_priv, 0x206C, SBI_MPHY);
6404 tmp |= (1 << 24) | (1 << 21) | (1 << 18);
6405 intel_sbi_write(dev_priv, 0x206C, tmp, SBI_MPHY);
6406
6407 tmp = intel_sbi_read(dev_priv, 0x216C, SBI_MPHY);
6408 tmp |= (1 << 24) | (1 << 21) | (1 << 18);
6409 intel_sbi_write(dev_priv, 0x216C, tmp, SBI_MPHY);
6410
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006411 tmp = intel_sbi_read(dev_priv, 0x2080, SBI_MPHY);
6412 tmp &= ~(7 << 13);
6413 tmp |= (5 << 13);
6414 intel_sbi_write(dev_priv, 0x2080, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02006415
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006416 tmp = intel_sbi_read(dev_priv, 0x2180, SBI_MPHY);
6417 tmp &= ~(7 << 13);
6418 tmp |= (5 << 13);
6419 intel_sbi_write(dev_priv, 0x2180, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02006420
6421 tmp = intel_sbi_read(dev_priv, 0x208C, SBI_MPHY);
6422 tmp &= ~0xFF;
6423 tmp |= 0x1C;
6424 intel_sbi_write(dev_priv, 0x208C, tmp, SBI_MPHY);
6425
6426 tmp = intel_sbi_read(dev_priv, 0x218C, SBI_MPHY);
6427 tmp &= ~0xFF;
6428 tmp |= 0x1C;
6429 intel_sbi_write(dev_priv, 0x218C, tmp, SBI_MPHY);
6430
6431 tmp = intel_sbi_read(dev_priv, 0x2098, SBI_MPHY);
6432 tmp &= ~(0xFF << 16);
6433 tmp |= (0x1C << 16);
6434 intel_sbi_write(dev_priv, 0x2098, tmp, SBI_MPHY);
6435
6436 tmp = intel_sbi_read(dev_priv, 0x2198, SBI_MPHY);
6437 tmp &= ~(0xFF << 16);
6438 tmp |= (0x1C << 16);
6439 intel_sbi_write(dev_priv, 0x2198, tmp, SBI_MPHY);
6440
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006441 tmp = intel_sbi_read(dev_priv, 0x20C4, SBI_MPHY);
6442 tmp |= (1 << 27);
6443 intel_sbi_write(dev_priv, 0x20C4, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02006444
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006445 tmp = intel_sbi_read(dev_priv, 0x21C4, SBI_MPHY);
6446 tmp |= (1 << 27);
6447 intel_sbi_write(dev_priv, 0x21C4, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02006448
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006449 tmp = intel_sbi_read(dev_priv, 0x20EC, SBI_MPHY);
6450 tmp &= ~(0xF << 28);
6451 tmp |= (4 << 28);
6452 intel_sbi_write(dev_priv, 0x20EC, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02006453
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006454 tmp = intel_sbi_read(dev_priv, 0x21EC, SBI_MPHY);
6455 tmp &= ~(0xF << 28);
6456 tmp |= (4 << 28);
6457 intel_sbi_write(dev_priv, 0x21EC, tmp, SBI_MPHY);
Paulo Zanonif31f2d52013-07-18 18:51:11 -03006458}
6459
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03006460/* Implements 3 different sequences from BSpec chapter "Display iCLK
6461 * Programming" based on the parameters passed:
6462 * - Sequence to enable CLKOUT_DP
6463 * - Sequence to enable CLKOUT_DP without spread
6464 * - Sequence to enable CLKOUT_DP for FDI usage and configure PCH FDI I/O
6465 */
6466static void lpt_enable_clkout_dp(struct drm_device *dev, bool with_spread,
6467 bool with_fdi)
Paulo Zanonif31f2d52013-07-18 18:51:11 -03006468{
6469 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03006470 uint32_t reg, tmp;
6471
6472 if (WARN(with_fdi && !with_spread, "FDI requires downspread\n"))
6473 with_spread = true;
6474 if (WARN(dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE &&
6475 with_fdi, "LP PCH doesn't have FDI\n"))
6476 with_fdi = false;
Paulo Zanonif31f2d52013-07-18 18:51:11 -03006477
6478 mutex_lock(&dev_priv->dpio_lock);
6479
6480 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
6481 tmp &= ~SBI_SSCCTL_DISABLE;
6482 tmp |= SBI_SSCCTL_PATHALT;
6483 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
6484
6485 udelay(24);
6486
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03006487 if (with_spread) {
6488 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
6489 tmp &= ~SBI_SSCCTL_PATHALT;
6490 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
Paulo Zanonif31f2d52013-07-18 18:51:11 -03006491
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03006492 if (with_fdi) {
6493 lpt_reset_fdi_mphy(dev_priv);
6494 lpt_program_fdi_mphy(dev_priv);
6495 }
6496 }
Paulo Zanonidde86e22012-12-01 12:04:25 -02006497
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03006498 reg = (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) ?
6499 SBI_GEN0 : SBI_DBUFF0;
6500 tmp = intel_sbi_read(dev_priv, reg, SBI_ICLK);
6501 tmp |= SBI_GEN0_CFG_BUFFENABLE_DISABLE;
6502 intel_sbi_write(dev_priv, reg, tmp, SBI_ICLK);
Daniel Vetterc00db242013-01-22 15:33:27 +01006503
6504 mutex_unlock(&dev_priv->dpio_lock);
Paulo Zanonidde86e22012-12-01 12:04:25 -02006505}
6506
Paulo Zanoni47701c32013-07-23 11:19:25 -03006507/* Sequence to disable CLKOUT_DP */
6508static void lpt_disable_clkout_dp(struct drm_device *dev)
6509{
6510 struct drm_i915_private *dev_priv = dev->dev_private;
6511 uint32_t reg, tmp;
6512
6513 mutex_lock(&dev_priv->dpio_lock);
6514
6515 reg = (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) ?
6516 SBI_GEN0 : SBI_DBUFF0;
6517 tmp = intel_sbi_read(dev_priv, reg, SBI_ICLK);
6518 tmp &= ~SBI_GEN0_CFG_BUFFENABLE_DISABLE;
6519 intel_sbi_write(dev_priv, reg, tmp, SBI_ICLK);
6520
6521 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
6522 if (!(tmp & SBI_SSCCTL_DISABLE)) {
6523 if (!(tmp & SBI_SSCCTL_PATHALT)) {
6524 tmp |= SBI_SSCCTL_PATHALT;
6525 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
6526 udelay(32);
6527 }
6528 tmp |= SBI_SSCCTL_DISABLE;
6529 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
6530 }
6531
6532 mutex_unlock(&dev_priv->dpio_lock);
6533}
6534
Paulo Zanonibf8fa3d2013-07-12 14:19:38 -03006535static void lpt_init_pch_refclk(struct drm_device *dev)
6536{
6537 struct drm_mode_config *mode_config = &dev->mode_config;
6538 struct intel_encoder *encoder;
6539 bool has_vga = false;
6540
6541 list_for_each_entry(encoder, &mode_config->encoder_list, base.head) {
6542 switch (encoder->type) {
6543 case INTEL_OUTPUT_ANALOG:
6544 has_vga = true;
6545 break;
6546 }
6547 }
6548
Paulo Zanoni47701c32013-07-23 11:19:25 -03006549 if (has_vga)
6550 lpt_enable_clkout_dp(dev, true, true);
6551 else
6552 lpt_disable_clkout_dp(dev);
Paulo Zanonibf8fa3d2013-07-12 14:19:38 -03006553}
6554
Paulo Zanonidde86e22012-12-01 12:04:25 -02006555/*
6556 * Initialize reference clocks when the driver loads
6557 */
6558void intel_init_pch_refclk(struct drm_device *dev)
6559{
6560 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev))
6561 ironlake_init_pch_refclk(dev);
6562 else if (HAS_PCH_LPT(dev))
6563 lpt_init_pch_refclk(dev);
6564}
6565
Jesse Barnesd9d444c2011-09-02 13:03:05 -07006566static int ironlake_get_refclk(struct drm_crtc *crtc)
6567{
6568 struct drm_device *dev = crtc->dev;
6569 struct drm_i915_private *dev_priv = dev->dev_private;
6570 struct intel_encoder *encoder;
Jesse Barnesd9d444c2011-09-02 13:03:05 -07006571 int num_connectors = 0;
6572 bool is_lvds = false;
6573
Daniel Vetter6c2b7c122012-07-05 09:50:24 +02006574 for_each_encoder_on_crtc(dev, crtc, encoder) {
Jesse Barnesd9d444c2011-09-02 13:03:05 -07006575 switch (encoder->type) {
6576 case INTEL_OUTPUT_LVDS:
6577 is_lvds = true;
6578 break;
Jesse Barnesd9d444c2011-09-02 13:03:05 -07006579 }
6580 num_connectors++;
6581 }
6582
6583 if (is_lvds && intel_panel_use_ssc(dev_priv) && num_connectors < 2) {
Ville Syrjäläe91e9412013-12-09 18:54:16 +02006584 DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n",
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03006585 dev_priv->vbt.lvds_ssc_freq);
Ville Syrjäläe91e9412013-12-09 18:54:16 +02006586 return dev_priv->vbt.lvds_ssc_freq;
Jesse Barnesd9d444c2011-09-02 13:03:05 -07006587 }
6588
6589 return 120000;
6590}
6591
Daniel Vetter6ff93602013-04-19 11:24:36 +02006592static void ironlake_set_pipeconf(struct drm_crtc *crtc)
Paulo Zanonic8203562012-09-12 10:06:29 -03006593{
6594 struct drm_i915_private *dev_priv = crtc->dev->dev_private;
6595 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6596 int pipe = intel_crtc->pipe;
6597 uint32_t val;
6598
Daniel Vetter78114072013-06-13 00:54:57 +02006599 val = 0;
Paulo Zanonic8203562012-09-12 10:06:29 -03006600
Daniel Vetter965e0c42013-03-27 00:44:57 +01006601 switch (intel_crtc->config.pipe_bpp) {
Paulo Zanonic8203562012-09-12 10:06:29 -03006602 case 18:
Daniel Vetterdfd07d72012-12-17 11:21:38 +01006603 val |= PIPECONF_6BPC;
Paulo Zanonic8203562012-09-12 10:06:29 -03006604 break;
6605 case 24:
Daniel Vetterdfd07d72012-12-17 11:21:38 +01006606 val |= PIPECONF_8BPC;
Paulo Zanonic8203562012-09-12 10:06:29 -03006607 break;
6608 case 30:
Daniel Vetterdfd07d72012-12-17 11:21:38 +01006609 val |= PIPECONF_10BPC;
Paulo Zanonic8203562012-09-12 10:06:29 -03006610 break;
6611 case 36:
Daniel Vetterdfd07d72012-12-17 11:21:38 +01006612 val |= PIPECONF_12BPC;
Paulo Zanonic8203562012-09-12 10:06:29 -03006613 break;
6614 default:
Paulo Zanonicc769b62012-09-20 18:36:03 -03006615 /* Case prevented by intel_choose_pipe_bpp_dither. */
6616 BUG();
Paulo Zanonic8203562012-09-12 10:06:29 -03006617 }
6618
Daniel Vetterd8b32242013-04-25 17:54:44 +02006619 if (intel_crtc->config.dither)
Paulo Zanonic8203562012-09-12 10:06:29 -03006620 val |= (PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_SP);
6621
Daniel Vetter6ff93602013-04-19 11:24:36 +02006622 if (intel_crtc->config.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
Paulo Zanonic8203562012-09-12 10:06:29 -03006623 val |= PIPECONF_INTERLACED_ILK;
6624 else
6625 val |= PIPECONF_PROGRESSIVE;
6626
Daniel Vetter50f3b012013-03-27 00:44:56 +01006627 if (intel_crtc->config.limited_color_range)
Ville Syrjälä3685a8f2013-01-17 16:31:28 +02006628 val |= PIPECONF_COLOR_RANGE_SELECT;
Ville Syrjälä3685a8f2013-01-17 16:31:28 +02006629
Paulo Zanonic8203562012-09-12 10:06:29 -03006630 I915_WRITE(PIPECONF(pipe), val);
6631 POSTING_READ(PIPECONF(pipe));
6632}
6633
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02006634/*
6635 * Set up the pipe CSC unit.
6636 *
6637 * Currently only full range RGB to limited range RGB conversion
6638 * is supported, but eventually this should handle various
6639 * RGB<->YCbCr scenarios as well.
6640 */
Daniel Vetter50f3b012013-03-27 00:44:56 +01006641static void intel_set_pipe_csc(struct drm_crtc *crtc)
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02006642{
6643 struct drm_device *dev = crtc->dev;
6644 struct drm_i915_private *dev_priv = dev->dev_private;
6645 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6646 int pipe = intel_crtc->pipe;
6647 uint16_t coeff = 0x7800; /* 1.0 */
6648
6649 /*
6650 * TODO: Check what kind of values actually come out of the pipe
6651 * with these coeff/postoff values and adjust to get the best
6652 * accuracy. Perhaps we even need to take the bpc value into
6653 * consideration.
6654 */
6655
Daniel Vetter50f3b012013-03-27 00:44:56 +01006656 if (intel_crtc->config.limited_color_range)
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02006657 coeff = ((235 - 16) * (1 << 12) / 255) & 0xff8; /* 0.xxx... */
6658
6659 /*
6660 * GY/GU and RY/RU should be the other way around according
6661 * to BSpec, but reality doesn't agree. Just set them up in
6662 * a way that results in the correct picture.
6663 */
6664 I915_WRITE(PIPE_CSC_COEFF_RY_GY(pipe), coeff << 16);
6665 I915_WRITE(PIPE_CSC_COEFF_BY(pipe), 0);
6666
6667 I915_WRITE(PIPE_CSC_COEFF_RU_GU(pipe), coeff);
6668 I915_WRITE(PIPE_CSC_COEFF_BU(pipe), 0);
6669
6670 I915_WRITE(PIPE_CSC_COEFF_RV_GV(pipe), 0);
6671 I915_WRITE(PIPE_CSC_COEFF_BV(pipe), coeff << 16);
6672
6673 I915_WRITE(PIPE_CSC_PREOFF_HI(pipe), 0);
6674 I915_WRITE(PIPE_CSC_PREOFF_ME(pipe), 0);
6675 I915_WRITE(PIPE_CSC_PREOFF_LO(pipe), 0);
6676
6677 if (INTEL_INFO(dev)->gen > 6) {
6678 uint16_t postoff = 0;
6679
Daniel Vetter50f3b012013-03-27 00:44:56 +01006680 if (intel_crtc->config.limited_color_range)
Ville Syrjälä32cf0cb2013-11-28 22:10:38 +02006681 postoff = (16 * (1 << 12) / 255) & 0x1fff;
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02006682
6683 I915_WRITE(PIPE_CSC_POSTOFF_HI(pipe), postoff);
6684 I915_WRITE(PIPE_CSC_POSTOFF_ME(pipe), postoff);
6685 I915_WRITE(PIPE_CSC_POSTOFF_LO(pipe), postoff);
6686
6687 I915_WRITE(PIPE_CSC_MODE(pipe), 0);
6688 } else {
6689 uint32_t mode = CSC_MODE_YUV_TO_RGB;
6690
Daniel Vetter50f3b012013-03-27 00:44:56 +01006691 if (intel_crtc->config.limited_color_range)
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02006692 mode |= CSC_BLACK_SCREEN_OFFSET;
6693
6694 I915_WRITE(PIPE_CSC_MODE(pipe), mode);
6695 }
6696}
6697
Daniel Vetter6ff93602013-04-19 11:24:36 +02006698static void haswell_set_pipeconf(struct drm_crtc *crtc)
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03006699{
Paulo Zanoni756f85c2013-11-02 21:07:38 -07006700 struct drm_device *dev = crtc->dev;
6701 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03006702 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Paulo Zanoni756f85c2013-11-02 21:07:38 -07006703 enum pipe pipe = intel_crtc->pipe;
Daniel Vetter3b117c82013-04-17 20:15:07 +02006704 enum transcoder cpu_transcoder = intel_crtc->config.cpu_transcoder;
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03006705 uint32_t val;
6706
Daniel Vetter3eff4fa2013-06-13 00:54:59 +02006707 val = 0;
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03006708
Paulo Zanoni756f85c2013-11-02 21:07:38 -07006709 if (IS_HASWELL(dev) && intel_crtc->config.dither)
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03006710 val |= (PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_SP);
6711
Daniel Vetter6ff93602013-04-19 11:24:36 +02006712 if (intel_crtc->config.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03006713 val |= PIPECONF_INTERLACED_ILK;
6714 else
6715 val |= PIPECONF_PROGRESSIVE;
6716
Paulo Zanoni702e7a52012-10-23 18:29:59 -02006717 I915_WRITE(PIPECONF(cpu_transcoder), val);
6718 POSTING_READ(PIPECONF(cpu_transcoder));
Daniel Vetter3eff4fa2013-06-13 00:54:59 +02006719
6720 I915_WRITE(GAMMA_MODE(intel_crtc->pipe), GAMMA_MODE_MODE_8BIT);
6721 POSTING_READ(GAMMA_MODE(intel_crtc->pipe));
Paulo Zanoni756f85c2013-11-02 21:07:38 -07006722
6723 if (IS_BROADWELL(dev)) {
6724 val = 0;
6725
6726 switch (intel_crtc->config.pipe_bpp) {
6727 case 18:
6728 val |= PIPEMISC_DITHER_6_BPC;
6729 break;
6730 case 24:
6731 val |= PIPEMISC_DITHER_8_BPC;
6732 break;
6733 case 30:
6734 val |= PIPEMISC_DITHER_10_BPC;
6735 break;
6736 case 36:
6737 val |= PIPEMISC_DITHER_12_BPC;
6738 break;
6739 default:
6740 /* Case prevented by pipe_config_set_bpp. */
6741 BUG();
6742 }
6743
6744 if (intel_crtc->config.dither)
6745 val |= PIPEMISC_DITHER_ENABLE | PIPEMISC_DITHER_TYPE_SP;
6746
6747 I915_WRITE(PIPEMISC(pipe), val);
6748 }
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03006749}
6750
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03006751static bool ironlake_compute_clocks(struct drm_crtc *crtc,
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03006752 intel_clock_t *clock,
6753 bool *has_reduced_clock,
6754 intel_clock_t *reduced_clock)
6755{
6756 struct drm_device *dev = crtc->dev;
6757 struct drm_i915_private *dev_priv = dev->dev_private;
6758 struct intel_encoder *intel_encoder;
6759 int refclk;
6760 const intel_limit_t *limit;
Daniel Vettera16af7212013-04-30 14:01:44 +02006761 bool ret, is_lvds = false;
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03006762
6763 for_each_encoder_on_crtc(dev, crtc, intel_encoder) {
6764 switch (intel_encoder->type) {
6765 case INTEL_OUTPUT_LVDS:
6766 is_lvds = true;
6767 break;
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03006768 }
6769 }
6770
6771 refclk = ironlake_get_refclk(crtc);
6772
6773 /*
6774 * Returns a set of divisors for the desired target clock with the given
6775 * refclk, or FALSE. The returned values represent the clock equation:
6776 * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2.
6777 */
6778 limit = intel_limit(crtc, refclk);
Daniel Vetterff9a6752013-06-01 17:16:21 +02006779 ret = dev_priv->display.find_dpll(limit, crtc,
6780 to_intel_crtc(crtc)->config.port_clock,
Daniel Vetteree9300b2013-06-03 22:40:22 +02006781 refclk, NULL, clock);
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03006782 if (!ret)
6783 return false;
6784
6785 if (is_lvds && dev_priv->lvds_downclock_avail) {
6786 /*
6787 * Ensure we match the reduced clock's P to the target clock.
6788 * If the clocks don't match, we can't switch the display clock
6789 * by using the FP0/FP1. In such case we will disable the LVDS
6790 * downclock feature.
6791 */
Daniel Vetteree9300b2013-06-03 22:40:22 +02006792 *has_reduced_clock =
6793 dev_priv->display.find_dpll(limit, crtc,
6794 dev_priv->lvds_downclock,
6795 refclk, clock,
6796 reduced_clock);
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03006797 }
6798
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03006799 return true;
6800}
6801
Paulo Zanonid4b19312012-11-29 11:29:32 -02006802int ironlake_get_lanes_required(int target_clock, int link_bw, int bpp)
6803{
6804 /*
6805 * Account for spread spectrum to avoid
6806 * oversubscribing the link. Max center spread
6807 * is 2.5%; use 5% for safety's sake.
6808 */
6809 u32 bps = target_clock * bpp * 21 / 20;
Ville Syrjälä619d4d02014-02-27 14:23:14 +02006810 return DIV_ROUND_UP(bps, link_bw * 8);
Paulo Zanonid4b19312012-11-29 11:29:32 -02006811}
6812
Daniel Vetter7429e9d2013-04-20 17:19:46 +02006813static bool ironlake_needs_fb_cb_tune(struct dpll *dpll, int factor)
Daniel Vetter6cf86a52013-04-02 23:38:10 +02006814{
Daniel Vetter7429e9d2013-04-20 17:19:46 +02006815 return i9xx_dpll_compute_m(dpll) < factor * dpll->n;
Paulo Zanonif48d8f22012-09-20 18:36:04 -03006816}
6817
Paulo Zanonide13a2e2012-09-20 18:36:05 -03006818static uint32_t ironlake_compute_dpll(struct intel_crtc *intel_crtc,
Daniel Vetter7429e9d2013-04-20 17:19:46 +02006819 u32 *fp,
Daniel Vetter9a7c7892013-04-04 22:20:34 +02006820 intel_clock_t *reduced_clock, u32 *fp2)
Paulo Zanonide13a2e2012-09-20 18:36:05 -03006821{
6822 struct drm_crtc *crtc = &intel_crtc->base;
6823 struct drm_device *dev = crtc->dev;
6824 struct drm_i915_private *dev_priv = dev->dev_private;
6825 struct intel_encoder *intel_encoder;
6826 uint32_t dpll;
Daniel Vetter6cc5f342013-03-27 00:44:53 +01006827 int factor, num_connectors = 0;
Daniel Vetter09ede542013-04-30 14:01:45 +02006828 bool is_lvds = false, is_sdvo = false;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03006829
6830 for_each_encoder_on_crtc(dev, crtc, intel_encoder) {
6831 switch (intel_encoder->type) {
6832 case INTEL_OUTPUT_LVDS:
6833 is_lvds = true;
6834 break;
6835 case INTEL_OUTPUT_SDVO:
6836 case INTEL_OUTPUT_HDMI:
6837 is_sdvo = true;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03006838 break;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03006839 }
6840
6841 num_connectors++;
6842 }
Jesse Barnes79e53942008-11-07 14:24:08 -08006843
Chris Wilsonc1858122010-12-03 21:35:48 +00006844 /* Enable autotuning of the PLL clock (if permissible) */
Eric Anholt8febb292011-03-30 13:01:07 -07006845 factor = 21;
6846 if (is_lvds) {
6847 if ((intel_panel_use_ssc(dev_priv) &&
Ville Syrjäläe91e9412013-12-09 18:54:16 +02006848 dev_priv->vbt.lvds_ssc_freq == 100000) ||
Daniel Vetterf0b44052013-04-04 22:20:33 +02006849 (HAS_PCH_IBX(dev) && intel_is_dual_link_lvds(dev)))
Eric Anholt8febb292011-03-30 13:01:07 -07006850 factor = 25;
Daniel Vetter09ede542013-04-30 14:01:45 +02006851 } else if (intel_crtc->config.sdvo_tv_clock)
Eric Anholt8febb292011-03-30 13:01:07 -07006852 factor = 20;
Chris Wilsonc1858122010-12-03 21:35:48 +00006853
Daniel Vetter7429e9d2013-04-20 17:19:46 +02006854 if (ironlake_needs_fb_cb_tune(&intel_crtc->config.dpll, factor))
Daniel Vetter7d0ac5b2013-04-04 22:20:32 +02006855 *fp |= FP_CB_TUNE;
Chris Wilsonc1858122010-12-03 21:35:48 +00006856
Daniel Vetter9a7c7892013-04-04 22:20:34 +02006857 if (fp2 && (reduced_clock->m < factor * reduced_clock->n))
6858 *fp2 |= FP_CB_TUNE;
6859
Chris Wilson5eddb702010-09-11 13:48:45 +01006860 dpll = 0;
Zhenyu Wang2c072452009-06-05 15:38:42 +08006861
Eric Anholta07d6782011-03-30 13:01:08 -07006862 if (is_lvds)
6863 dpll |= DPLLB_MODE_LVDS;
6864 else
6865 dpll |= DPLLB_MODE_DAC_SERIAL;
Daniel Vetter198a037f2013-04-19 11:14:37 +02006866
Daniel Vetteref1b4602013-06-01 17:17:04 +02006867 dpll |= (intel_crtc->config.pixel_multiplier - 1)
6868 << PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT;
Daniel Vetter198a037f2013-04-19 11:14:37 +02006869
6870 if (is_sdvo)
Daniel Vetter4a33e482013-07-06 12:52:05 +02006871 dpll |= DPLL_SDVO_HIGH_SPEED;
Daniel Vetter9566e9a2013-04-19 11:14:36 +02006872 if (intel_crtc->config.has_dp_encoder)
Daniel Vetter4a33e482013-07-06 12:52:05 +02006873 dpll |= DPLL_SDVO_HIGH_SPEED;
Jesse Barnes79e53942008-11-07 14:24:08 -08006874
Eric Anholta07d6782011-03-30 13:01:08 -07006875 /* compute bitmask from p1 value */
Daniel Vetter7429e9d2013-04-20 17:19:46 +02006876 dpll |= (1 << (intel_crtc->config.dpll.p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
Eric Anholta07d6782011-03-30 13:01:08 -07006877 /* also FPA1 */
Daniel Vetter7429e9d2013-04-20 17:19:46 +02006878 dpll |= (1 << (intel_crtc->config.dpll.p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
Eric Anholta07d6782011-03-30 13:01:08 -07006879
Daniel Vetter7429e9d2013-04-20 17:19:46 +02006880 switch (intel_crtc->config.dpll.p2) {
Eric Anholta07d6782011-03-30 13:01:08 -07006881 case 5:
6882 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
6883 break;
6884 case 7:
6885 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
6886 break;
6887 case 10:
6888 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
6889 break;
6890 case 14:
6891 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
6892 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08006893 }
6894
Daniel Vetterb4c09f32013-04-30 14:01:42 +02006895 if (is_lvds && intel_panel_use_ssc(dev_priv) && num_connectors < 2)
Kristian Høgsberg43565a02009-02-13 20:56:52 -05006896 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
Jesse Barnes79e53942008-11-07 14:24:08 -08006897 else
6898 dpll |= PLL_REF_INPUT_DREFCLK;
6899
Daniel Vetter959e16d2013-06-05 13:34:21 +02006900 return dpll | DPLL_VCO_ENABLE;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03006901}
6902
Jesse Barnes79e53942008-11-07 14:24:08 -08006903static int ironlake_crtc_mode_set(struct drm_crtc *crtc,
Jesse Barnes79e53942008-11-07 14:24:08 -08006904 int x, int y,
Daniel Vetter94352cf2012-07-05 22:51:56 +02006905 struct drm_framebuffer *fb)
Jesse Barnes79e53942008-11-07 14:24:08 -08006906{
6907 struct drm_device *dev = crtc->dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08006908 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03006909 int num_connectors = 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08006910 intel_clock_t clock, reduced_clock;
Daniel Vettercbbab5b2013-04-19 11:14:31 +02006911 u32 dpll = 0, fp = 0, fp2 = 0;
Paulo Zanonie2f12b02012-09-20 18:36:06 -03006912 bool ok, has_reduced_clock = false;
Daniel Vetter8b470472013-03-28 10:41:59 +01006913 bool is_lvds = false;
Paulo Zanonif48d8f22012-09-20 18:36:04 -03006914 struct intel_encoder *encoder;
Daniel Vettere2b78262013-06-07 23:10:03 +02006915 struct intel_shared_dpll *pll;
Jesse Barnes79e53942008-11-07 14:24:08 -08006916
6917 for_each_encoder_on_crtc(dev, crtc, encoder) {
6918 switch (encoder->type) {
6919 case INTEL_OUTPUT_LVDS:
6920 is_lvds = true;
6921 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08006922 }
6923
6924 num_connectors++;
6925 }
6926
Paulo Zanoni5dc52982012-10-05 12:05:56 -03006927 WARN(!(HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev)),
6928 "Unexpected PCH type %d\n", INTEL_PCH_TYPE(dev));
6929
Daniel Vetterff9a6752013-06-01 17:16:21 +02006930 ok = ironlake_compute_clocks(crtc, &clock,
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03006931 &has_reduced_clock, &reduced_clock);
Daniel Vetteree9300b2013-06-03 22:40:22 +02006932 if (!ok && !intel_crtc->config.clock_set) {
Jesse Barnes79e53942008-11-07 14:24:08 -08006933 DRM_ERROR("Couldn't find PLL settings for mode!\n");
6934 return -EINVAL;
6935 }
Daniel Vetterf47709a2013-03-28 10:42:02 +01006936 /* Compat-code for transition, will disappear. */
6937 if (!intel_crtc->config.clock_set) {
6938 intel_crtc->config.dpll.n = clock.n;
6939 intel_crtc->config.dpll.m1 = clock.m1;
6940 intel_crtc->config.dpll.m2 = clock.m2;
6941 intel_crtc->config.dpll.p1 = clock.p1;
6942 intel_crtc->config.dpll.p2 = clock.p2;
6943 }
Jesse Barnes79e53942008-11-07 14:24:08 -08006944
Paulo Zanoni5dc52982012-10-05 12:05:56 -03006945 /* CPU eDP is the only output that doesn't need a PCH PLL of its own. */
Daniel Vetter8b470472013-03-28 10:41:59 +01006946 if (intel_crtc->config.has_pch_encoder) {
Daniel Vetter7429e9d2013-04-20 17:19:46 +02006947 fp = i9xx_dpll_compute_fp(&intel_crtc->config.dpll);
Daniel Vettercbbab5b2013-04-19 11:14:31 +02006948 if (has_reduced_clock)
Daniel Vetter7429e9d2013-04-20 17:19:46 +02006949 fp2 = i9xx_dpll_compute_fp(&reduced_clock);
Daniel Vettercbbab5b2013-04-19 11:14:31 +02006950
Daniel Vetter7429e9d2013-04-20 17:19:46 +02006951 dpll = ironlake_compute_dpll(intel_crtc,
Daniel Vettercbbab5b2013-04-19 11:14:31 +02006952 &fp, &reduced_clock,
6953 has_reduced_clock ? &fp2 : NULL);
6954
Daniel Vetter959e16d2013-06-05 13:34:21 +02006955 intel_crtc->config.dpll_hw_state.dpll = dpll;
Daniel Vetter66e985c2013-06-05 13:34:20 +02006956 intel_crtc->config.dpll_hw_state.fp0 = fp;
6957 if (has_reduced_clock)
6958 intel_crtc->config.dpll_hw_state.fp1 = fp2;
6959 else
6960 intel_crtc->config.dpll_hw_state.fp1 = fp;
6961
Daniel Vetterb89a1d32013-06-05 13:34:24 +02006962 pll = intel_get_shared_dpll(intel_crtc);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01006963 if (pll == NULL) {
Ville Syrjälä84f44ce2013-04-17 17:48:49 +03006964 DRM_DEBUG_DRIVER("failed to find PLL for pipe %c\n",
Daniel Vetter29407aa2014-04-24 23:55:08 +02006965 pipe_name(intel_crtc->pipe));
Jesse Barnes4b645f12011-10-12 09:51:31 -07006966 return -EINVAL;
6967 }
Jesse Barnesee7b9f92012-04-20 17:11:53 +01006968 } else
Daniel Vettere72f9fb2013-06-05 13:34:06 +02006969 intel_put_shared_dpll(intel_crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08006970
Jani Nikulad330a952014-01-21 11:24:25 +02006971 if (is_lvds && has_reduced_clock && i915.powersave)
Daniel Vetterbcd644e2013-06-05 13:34:22 +02006972 intel_crtc->lowfreq_avail = true;
6973 else
6974 intel_crtc->lowfreq_avail = false;
Daniel Vettere2b78262013-06-07 23:10:03 +02006975
Daniel Vetterc8f7a0d2014-04-24 23:55:04 +02006976 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08006977}
6978
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03006979static void intel_pch_transcoder_get_m_n(struct intel_crtc *crtc,
6980 struct intel_link_m_n *m_n)
Daniel Vetter72419202013-04-04 13:28:53 +02006981{
6982 struct drm_device *dev = crtc->base.dev;
6983 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03006984 enum pipe pipe = crtc->pipe;
Daniel Vetter72419202013-04-04 13:28:53 +02006985
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03006986 m_n->link_m = I915_READ(PCH_TRANS_LINK_M1(pipe));
6987 m_n->link_n = I915_READ(PCH_TRANS_LINK_N1(pipe));
6988 m_n->gmch_m = I915_READ(PCH_TRANS_DATA_M1(pipe))
6989 & ~TU_SIZE_MASK;
6990 m_n->gmch_n = I915_READ(PCH_TRANS_DATA_N1(pipe));
6991 m_n->tu = ((I915_READ(PCH_TRANS_DATA_M1(pipe))
6992 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
6993}
6994
6995static void intel_cpu_transcoder_get_m_n(struct intel_crtc *crtc,
6996 enum transcoder transcoder,
6997 struct intel_link_m_n *m_n)
6998{
6999 struct drm_device *dev = crtc->base.dev;
7000 struct drm_i915_private *dev_priv = dev->dev_private;
7001 enum pipe pipe = crtc->pipe;
7002
7003 if (INTEL_INFO(dev)->gen >= 5) {
7004 m_n->link_m = I915_READ(PIPE_LINK_M1(transcoder));
7005 m_n->link_n = I915_READ(PIPE_LINK_N1(transcoder));
7006 m_n->gmch_m = I915_READ(PIPE_DATA_M1(transcoder))
7007 & ~TU_SIZE_MASK;
7008 m_n->gmch_n = I915_READ(PIPE_DATA_N1(transcoder));
7009 m_n->tu = ((I915_READ(PIPE_DATA_M1(transcoder))
7010 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
7011 } else {
7012 m_n->link_m = I915_READ(PIPE_LINK_M_G4X(pipe));
7013 m_n->link_n = I915_READ(PIPE_LINK_N_G4X(pipe));
7014 m_n->gmch_m = I915_READ(PIPE_DATA_M_G4X(pipe))
7015 & ~TU_SIZE_MASK;
7016 m_n->gmch_n = I915_READ(PIPE_DATA_N_G4X(pipe));
7017 m_n->tu = ((I915_READ(PIPE_DATA_M_G4X(pipe))
7018 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
7019 }
7020}
7021
7022void intel_dp_get_m_n(struct intel_crtc *crtc,
7023 struct intel_crtc_config *pipe_config)
7024{
7025 if (crtc->config.has_pch_encoder)
7026 intel_pch_transcoder_get_m_n(crtc, &pipe_config->dp_m_n);
7027 else
7028 intel_cpu_transcoder_get_m_n(crtc, pipe_config->cpu_transcoder,
7029 &pipe_config->dp_m_n);
7030}
7031
Daniel Vetter72419202013-04-04 13:28:53 +02007032static void ironlake_get_fdi_m_n_config(struct intel_crtc *crtc,
7033 struct intel_crtc_config *pipe_config)
7034{
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03007035 intel_cpu_transcoder_get_m_n(crtc, pipe_config->cpu_transcoder,
7036 &pipe_config->fdi_m_n);
Daniel Vetter72419202013-04-04 13:28:53 +02007037}
7038
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007039static void ironlake_get_pfit_config(struct intel_crtc *crtc,
7040 struct intel_crtc_config *pipe_config)
7041{
7042 struct drm_device *dev = crtc->base.dev;
7043 struct drm_i915_private *dev_priv = dev->dev_private;
7044 uint32_t tmp;
7045
7046 tmp = I915_READ(PF_CTL(crtc->pipe));
7047
7048 if (tmp & PF_ENABLE) {
Chris Wilsonfd4daa92013-08-27 17:04:17 +01007049 pipe_config->pch_pfit.enabled = true;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007050 pipe_config->pch_pfit.pos = I915_READ(PF_WIN_POS(crtc->pipe));
7051 pipe_config->pch_pfit.size = I915_READ(PF_WIN_SZ(crtc->pipe));
Daniel Vettercb8b2a32013-06-01 17:16:23 +02007052
7053 /* We currently do not free assignements of panel fitters on
7054 * ivb/hsw (since we don't use the higher upscaling modes which
7055 * differentiates them) so just WARN about this case for now. */
7056 if (IS_GEN7(dev)) {
7057 WARN_ON((tmp & PF_PIPE_SEL_MASK_IVB) !=
7058 PF_PIPE_SEL_IVB(crtc->pipe));
7059 }
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007060 }
Jesse Barnes79e53942008-11-07 14:24:08 -08007061}
7062
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007063static void ironlake_get_plane_config(struct intel_crtc *crtc,
7064 struct intel_plane_config *plane_config)
7065{
7066 struct drm_device *dev = crtc->base.dev;
7067 struct drm_i915_private *dev_priv = dev->dev_private;
7068 u32 val, base, offset;
7069 int pipe = crtc->pipe, plane = crtc->plane;
7070 int fourcc, pixel_format;
7071 int aligned_height;
7072
Dave Airlie66e514c2014-04-03 07:51:54 +10007073 crtc->base.primary->fb = kzalloc(sizeof(struct intel_framebuffer), GFP_KERNEL);
7074 if (!crtc->base.primary->fb) {
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007075 DRM_DEBUG_KMS("failed to alloc fb\n");
7076 return;
7077 }
7078
7079 val = I915_READ(DSPCNTR(plane));
7080
7081 if (INTEL_INFO(dev)->gen >= 4)
7082 if (val & DISPPLANE_TILED)
7083 plane_config->tiled = true;
7084
7085 pixel_format = val & DISPPLANE_PIXFORMAT_MASK;
7086 fourcc = intel_format_to_fourcc(pixel_format);
Dave Airlie66e514c2014-04-03 07:51:54 +10007087 crtc->base.primary->fb->pixel_format = fourcc;
7088 crtc->base.primary->fb->bits_per_pixel =
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007089 drm_format_plane_cpp(fourcc, 0) * 8;
7090
7091 base = I915_READ(DSPSURF(plane)) & 0xfffff000;
7092 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
7093 offset = I915_READ(DSPOFFSET(plane));
7094 } else {
7095 if (plane_config->tiled)
7096 offset = I915_READ(DSPTILEOFF(plane));
7097 else
7098 offset = I915_READ(DSPLINOFF(plane));
7099 }
7100 plane_config->base = base;
7101
7102 val = I915_READ(PIPESRC(pipe));
Dave Airlie66e514c2014-04-03 07:51:54 +10007103 crtc->base.primary->fb->width = ((val >> 16) & 0xfff) + 1;
7104 crtc->base.primary->fb->height = ((val >> 0) & 0xfff) + 1;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007105
7106 val = I915_READ(DSPSTRIDE(pipe));
Dave Airlie66e514c2014-04-03 07:51:54 +10007107 crtc->base.primary->fb->pitches[0] = val & 0xffffff80;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007108
Dave Airlie66e514c2014-04-03 07:51:54 +10007109 aligned_height = intel_align_height(dev, crtc->base.primary->fb->height,
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007110 plane_config->tiled);
7111
Dave Airlie66e514c2014-04-03 07:51:54 +10007112 plane_config->size = ALIGN(crtc->base.primary->fb->pitches[0] *
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007113 aligned_height, PAGE_SIZE);
7114
7115 DRM_DEBUG_KMS("pipe/plane %d/%d with fb: size=%dx%d@%d, offset=%x, pitch %d, size 0x%x\n",
Dave Airlie66e514c2014-04-03 07:51:54 +10007116 pipe, plane, crtc->base.primary->fb->width,
7117 crtc->base.primary->fb->height,
7118 crtc->base.primary->fb->bits_per_pixel, base,
7119 crtc->base.primary->fb->pitches[0],
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007120 plane_config->size);
7121}
7122
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01007123static bool ironlake_get_pipe_config(struct intel_crtc *crtc,
7124 struct intel_crtc_config *pipe_config)
7125{
7126 struct drm_device *dev = crtc->base.dev;
7127 struct drm_i915_private *dev_priv = dev->dev_private;
7128 uint32_t tmp;
7129
Daniel Vettere143a212013-07-04 12:01:15 +02007130 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +02007131 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
Daniel Vettereccb1402013-05-22 00:50:22 +02007132
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01007133 tmp = I915_READ(PIPECONF(crtc->pipe));
7134 if (!(tmp & PIPECONF_ENABLE))
7135 return false;
7136
Ville Syrjälä42571ae2013-09-06 23:29:00 +03007137 switch (tmp & PIPECONF_BPC_MASK) {
7138 case PIPECONF_6BPC:
7139 pipe_config->pipe_bpp = 18;
7140 break;
7141 case PIPECONF_8BPC:
7142 pipe_config->pipe_bpp = 24;
7143 break;
7144 case PIPECONF_10BPC:
7145 pipe_config->pipe_bpp = 30;
7146 break;
7147 case PIPECONF_12BPC:
7148 pipe_config->pipe_bpp = 36;
7149 break;
7150 default:
7151 break;
7152 }
7153
Daniel Vetterb5a9fa02014-04-24 23:54:49 +02007154 if (tmp & PIPECONF_COLOR_RANGE_SELECT)
7155 pipe_config->limited_color_range = true;
7156
Daniel Vetterab9412b2013-05-03 11:49:46 +02007157 if (I915_READ(PCH_TRANSCONF(crtc->pipe)) & TRANS_ENABLE) {
Daniel Vetter66e985c2013-06-05 13:34:20 +02007158 struct intel_shared_dpll *pll;
7159
Daniel Vetter88adfff2013-03-28 10:42:01 +01007160 pipe_config->has_pch_encoder = true;
7161
Daniel Vetter627eb5a2013-04-29 19:33:42 +02007162 tmp = I915_READ(FDI_RX_CTL(crtc->pipe));
7163 pipe_config->fdi_lanes = ((FDI_DP_PORT_WIDTH_MASK & tmp) >>
7164 FDI_DP_PORT_WIDTH_SHIFT) + 1;
Daniel Vetter72419202013-04-04 13:28:53 +02007165
7166 ironlake_get_fdi_m_n_config(crtc, pipe_config);
Daniel Vetter6c49f242013-06-06 12:45:25 +02007167
Daniel Vetterc0d43d62013-06-07 23:11:08 +02007168 if (HAS_PCH_IBX(dev_priv->dev)) {
Daniel Vetterd94ab062013-07-04 12:01:16 +02007169 pipe_config->shared_dpll =
7170 (enum intel_dpll_id) crtc->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +02007171 } else {
7172 tmp = I915_READ(PCH_DPLL_SEL);
7173 if (tmp & TRANS_DPLLB_SEL(crtc->pipe))
7174 pipe_config->shared_dpll = DPLL_ID_PCH_PLL_B;
7175 else
7176 pipe_config->shared_dpll = DPLL_ID_PCH_PLL_A;
7177 }
Daniel Vetter66e985c2013-06-05 13:34:20 +02007178
7179 pll = &dev_priv->shared_dplls[pipe_config->shared_dpll];
7180
7181 WARN_ON(!pll->get_hw_state(dev_priv, pll,
7182 &pipe_config->dpll_hw_state));
Daniel Vetterc93f54c2013-06-27 19:47:19 +02007183
7184 tmp = pipe_config->dpll_hw_state.dpll;
7185 pipe_config->pixel_multiplier =
7186 ((tmp & PLL_REF_SDVO_HDMI_MULTIPLIER_MASK)
7187 >> PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT) + 1;
Ville Syrjälä18442d02013-09-13 16:00:08 +03007188
7189 ironlake_pch_clock_get(crtc, pipe_config);
Daniel Vetter6c49f242013-06-06 12:45:25 +02007190 } else {
7191 pipe_config->pixel_multiplier = 1;
Daniel Vetter627eb5a2013-04-29 19:33:42 +02007192 }
7193
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02007194 intel_get_pipe_timings(crtc, pipe_config);
7195
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007196 ironlake_get_pfit_config(crtc, pipe_config);
7197
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01007198 return true;
7199}
7200
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007201static void assert_can_disable_lcpll(struct drm_i915_private *dev_priv)
7202{
7203 struct drm_device *dev = dev_priv->dev;
7204 struct intel_ddi_plls *plls = &dev_priv->ddi_plls;
7205 struct intel_crtc *crtc;
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007206
Damien Lespiaud3fcc802014-05-13 23:32:22 +01007207 for_each_intel_crtc(dev, crtc)
Paulo Zanoni798183c2013-12-06 20:29:01 -02007208 WARN(crtc->active, "CRTC for pipe %c enabled\n",
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007209 pipe_name(crtc->pipe));
7210
7211 WARN(I915_READ(HSW_PWR_WELL_DRIVER), "Power well on\n");
7212 WARN(plls->spll_refcount, "SPLL enabled\n");
7213 WARN(plls->wrpll1_refcount, "WRPLL1 enabled\n");
7214 WARN(plls->wrpll2_refcount, "WRPLL2 enabled\n");
7215 WARN(I915_READ(PCH_PP_STATUS) & PP_ON, "Panel power on\n");
7216 WARN(I915_READ(BLC_PWM_CPU_CTL2) & BLM_PWM_ENABLE,
7217 "CPU PWM1 enabled\n");
7218 WARN(I915_READ(HSW_BLC_PWM2_CTL) & BLM_PWM_ENABLE,
7219 "CPU PWM2 enabled\n");
7220 WARN(I915_READ(BLC_PWM_PCH_CTL1) & BLM_PCH_PWM_ENABLE,
7221 "PCH PWM1 enabled\n");
7222 WARN(I915_READ(UTIL_PIN_CTL) & UTIL_PIN_ENABLE,
7223 "Utility pin enabled\n");
7224 WARN(I915_READ(PCH_GTC_CTL) & PCH_GTC_ENABLE, "PCH GTC enabled\n");
7225
Paulo Zanoni9926ada2014-04-01 19:39:47 -03007226 /*
7227 * In theory we can still leave IRQs enabled, as long as only the HPD
7228 * interrupts remain enabled. We used to check for that, but since it's
7229 * gen-specific and since we only disable LCPLL after we fully disable
7230 * the interrupts, the check below should be enough.
7231 */
7232 WARN(!dev_priv->pm.irqs_disabled, "IRQs enabled\n");
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007233}
7234
Paulo Zanoni3c4c9b82014-03-07 20:12:36 -03007235static void hsw_write_dcomp(struct drm_i915_private *dev_priv, uint32_t val)
7236{
7237 struct drm_device *dev = dev_priv->dev;
7238
7239 if (IS_HASWELL(dev)) {
7240 mutex_lock(&dev_priv->rps.hw_lock);
7241 if (sandybridge_pcode_write(dev_priv, GEN6_PCODE_WRITE_D_COMP,
7242 val))
7243 DRM_ERROR("Failed to disable D_COMP\n");
7244 mutex_unlock(&dev_priv->rps.hw_lock);
7245 } else {
7246 I915_WRITE(D_COMP, val);
7247 }
7248 POSTING_READ(D_COMP);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007249}
7250
7251/*
7252 * This function implements pieces of two sequences from BSpec:
7253 * - Sequence for display software to disable LCPLL
7254 * - Sequence for display software to allow package C8+
7255 * The steps implemented here are just the steps that actually touch the LCPLL
7256 * register. Callers should take care of disabling all the display engine
7257 * functions, doing the mode unset, fixing interrupts, etc.
7258 */
Paulo Zanoni6ff58d52013-09-24 13:52:57 -03007259static void hsw_disable_lcpll(struct drm_i915_private *dev_priv,
7260 bool switch_to_fclk, bool allow_power_down)
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007261{
7262 uint32_t val;
7263
7264 assert_can_disable_lcpll(dev_priv);
7265
7266 val = I915_READ(LCPLL_CTL);
7267
7268 if (switch_to_fclk) {
7269 val |= LCPLL_CD_SOURCE_FCLK;
7270 I915_WRITE(LCPLL_CTL, val);
7271
7272 if (wait_for_atomic_us(I915_READ(LCPLL_CTL) &
7273 LCPLL_CD_SOURCE_FCLK_DONE, 1))
7274 DRM_ERROR("Switching to FCLK failed\n");
7275
7276 val = I915_READ(LCPLL_CTL);
7277 }
7278
7279 val |= LCPLL_PLL_DISABLE;
7280 I915_WRITE(LCPLL_CTL, val);
7281 POSTING_READ(LCPLL_CTL);
7282
7283 if (wait_for((I915_READ(LCPLL_CTL) & LCPLL_PLL_LOCK) == 0, 1))
7284 DRM_ERROR("LCPLL still locked\n");
7285
7286 val = I915_READ(D_COMP);
7287 val |= D_COMP_COMP_DISABLE;
Paulo Zanoni3c4c9b82014-03-07 20:12:36 -03007288 hsw_write_dcomp(dev_priv, val);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007289 ndelay(100);
7290
7291 if (wait_for((I915_READ(D_COMP) & D_COMP_RCOMP_IN_PROGRESS) == 0, 1))
7292 DRM_ERROR("D_COMP RCOMP still in progress\n");
7293
7294 if (allow_power_down) {
7295 val = I915_READ(LCPLL_CTL);
7296 val |= LCPLL_POWER_DOWN_ALLOW;
7297 I915_WRITE(LCPLL_CTL, val);
7298 POSTING_READ(LCPLL_CTL);
7299 }
7300}
7301
7302/*
7303 * Fully restores LCPLL, disallowing power down and switching back to LCPLL
7304 * source.
7305 */
Paulo Zanoni6ff58d52013-09-24 13:52:57 -03007306static void hsw_restore_lcpll(struct drm_i915_private *dev_priv)
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007307{
7308 uint32_t val;
Paulo Zanonia8a8bd52014-03-07 20:08:05 -03007309 unsigned long irqflags;
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007310
7311 val = I915_READ(LCPLL_CTL);
7312
7313 if ((val & (LCPLL_PLL_LOCK | LCPLL_PLL_DISABLE | LCPLL_CD_SOURCE_FCLK |
7314 LCPLL_POWER_DOWN_ALLOW)) == LCPLL_PLL_LOCK)
7315 return;
7316
Paulo Zanonia8a8bd52014-03-07 20:08:05 -03007317 /*
7318 * Make sure we're not on PC8 state before disabling PC8, otherwise
7319 * we'll hang the machine. To prevent PC8 state, just enable force_wake.
7320 *
7321 * The other problem is that hsw_restore_lcpll() is called as part of
7322 * the runtime PM resume sequence, so we can't just call
7323 * gen6_gt_force_wake_get() because that function calls
7324 * intel_runtime_pm_get(), and we can't change the runtime PM refcount
7325 * while we are on the resume sequence. So to solve this problem we have
7326 * to call special forcewake code that doesn't touch runtime PM and
7327 * doesn't enable the forcewake delayed work.
7328 */
7329 spin_lock_irqsave(&dev_priv->uncore.lock, irqflags);
7330 if (dev_priv->uncore.forcewake_count++ == 0)
7331 dev_priv->uncore.funcs.force_wake_get(dev_priv, FORCEWAKE_ALL);
7332 spin_unlock_irqrestore(&dev_priv->uncore.lock, irqflags);
Paulo Zanoni215733f2013-08-19 13:18:07 -03007333
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007334 if (val & LCPLL_POWER_DOWN_ALLOW) {
7335 val &= ~LCPLL_POWER_DOWN_ALLOW;
7336 I915_WRITE(LCPLL_CTL, val);
Daniel Vetter35d8f2e2013-08-21 23:38:08 +02007337 POSTING_READ(LCPLL_CTL);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007338 }
7339
7340 val = I915_READ(D_COMP);
7341 val |= D_COMP_COMP_FORCE;
7342 val &= ~D_COMP_COMP_DISABLE;
Paulo Zanoni3c4c9b82014-03-07 20:12:36 -03007343 hsw_write_dcomp(dev_priv, val);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007344
7345 val = I915_READ(LCPLL_CTL);
7346 val &= ~LCPLL_PLL_DISABLE;
7347 I915_WRITE(LCPLL_CTL, val);
7348
7349 if (wait_for(I915_READ(LCPLL_CTL) & LCPLL_PLL_LOCK, 5))
7350 DRM_ERROR("LCPLL not locked yet\n");
7351
7352 if (val & LCPLL_CD_SOURCE_FCLK) {
7353 val = I915_READ(LCPLL_CTL);
7354 val &= ~LCPLL_CD_SOURCE_FCLK;
7355 I915_WRITE(LCPLL_CTL, val);
7356
7357 if (wait_for_atomic_us((I915_READ(LCPLL_CTL) &
7358 LCPLL_CD_SOURCE_FCLK_DONE) == 0, 1))
7359 DRM_ERROR("Switching back to LCPLL failed\n");
7360 }
Paulo Zanoni215733f2013-08-19 13:18:07 -03007361
Paulo Zanonia8a8bd52014-03-07 20:08:05 -03007362 /* See the big comment above. */
7363 spin_lock_irqsave(&dev_priv->uncore.lock, irqflags);
7364 if (--dev_priv->uncore.forcewake_count == 0)
7365 dev_priv->uncore.funcs.force_wake_put(dev_priv, FORCEWAKE_ALL);
7366 spin_unlock_irqrestore(&dev_priv->uncore.lock, irqflags);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007367}
7368
Paulo Zanoni765dab62014-03-07 20:08:18 -03007369/*
7370 * Package states C8 and deeper are really deep PC states that can only be
7371 * reached when all the devices on the system allow it, so even if the graphics
7372 * device allows PC8+, it doesn't mean the system will actually get to these
7373 * states. Our driver only allows PC8+ when going into runtime PM.
7374 *
7375 * The requirements for PC8+ are that all the outputs are disabled, the power
7376 * well is disabled and most interrupts are disabled, and these are also
7377 * requirements for runtime PM. When these conditions are met, we manually do
7378 * the other conditions: disable the interrupts, clocks and switch LCPLL refclk
7379 * to Fclk. If we're in PC8+ and we get an non-hotplug interrupt, we can hard
7380 * hang the machine.
7381 *
7382 * When we really reach PC8 or deeper states (not just when we allow it) we lose
7383 * the state of some registers, so when we come back from PC8+ we need to
7384 * restore this state. We don't get into PC8+ if we're not in RC6, so we don't
7385 * need to take care of the registers kept by RC6. Notice that this happens even
7386 * if we don't put the device in PCI D3 state (which is what currently happens
7387 * because of the runtime PM support).
7388 *
7389 * For more, read "Display Sequences for Package C8" on the hardware
7390 * documentation.
7391 */
Paulo Zanonia14cb6f2014-03-07 20:08:17 -03007392void hsw_enable_pc8(struct drm_i915_private *dev_priv)
Paulo Zanonic67a4702013-08-19 13:18:09 -03007393{
Paulo Zanonic67a4702013-08-19 13:18:09 -03007394 struct drm_device *dev = dev_priv->dev;
7395 uint32_t val;
7396
Paulo Zanonic67a4702013-08-19 13:18:09 -03007397 DRM_DEBUG_KMS("Enabling package C8+\n");
7398
Paulo Zanonic67a4702013-08-19 13:18:09 -03007399 if (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) {
7400 val = I915_READ(SOUTH_DSPCLK_GATE_D);
7401 val &= ~PCH_LP_PARTITION_LEVEL_DISABLE;
7402 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
7403 }
7404
7405 lpt_disable_clkout_dp(dev);
Paulo Zanonic67a4702013-08-19 13:18:09 -03007406 hsw_disable_lcpll(dev_priv, true, true);
7407}
7408
Paulo Zanonia14cb6f2014-03-07 20:08:17 -03007409void hsw_disable_pc8(struct drm_i915_private *dev_priv)
Paulo Zanonic67a4702013-08-19 13:18:09 -03007410{
7411 struct drm_device *dev = dev_priv->dev;
7412 uint32_t val;
7413
Paulo Zanonic67a4702013-08-19 13:18:09 -03007414 DRM_DEBUG_KMS("Disabling package C8+\n");
7415
7416 hsw_restore_lcpll(dev_priv);
Paulo Zanonic67a4702013-08-19 13:18:09 -03007417 lpt_init_pch_refclk(dev);
7418
7419 if (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) {
7420 val = I915_READ(SOUTH_DSPCLK_GATE_D);
7421 val |= PCH_LP_PARTITION_LEVEL_DISABLE;
7422 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
7423 }
7424
7425 intel_prepare_ddi(dev);
Paulo Zanonic67a4702013-08-19 13:18:09 -03007426}
7427
Paulo Zanoni9a952a02014-03-07 20:12:34 -03007428static void snb_modeset_global_resources(struct drm_device *dev)
7429{
7430 modeset_update_crtc_power_domains(dev);
7431}
7432
Imre Deak4f074122013-10-16 17:25:51 +03007433static void haswell_modeset_global_resources(struct drm_device *dev)
7434{
Paulo Zanonida723562013-12-19 11:54:51 -02007435 modeset_update_crtc_power_domains(dev);
Daniel Vetterd6dd9eb2013-01-29 16:35:20 -02007436}
7437
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03007438static int haswell_crtc_mode_set(struct drm_crtc *crtc,
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03007439 int x, int y,
7440 struct drm_framebuffer *fb)
7441{
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03007442 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03007443
Paulo Zanoni566b7342013-11-25 15:27:08 -02007444 if (!intel_ddi_pll_select(intel_crtc))
Paulo Zanoni6441ab52012-10-05 12:05:58 -03007445 return -EINVAL;
Paulo Zanoni566b7342013-11-25 15:27:08 -02007446 intel_ddi_pll_enable(intel_crtc);
Paulo Zanoni6441ab52012-10-05 12:05:58 -03007447
Daniel Vetter644cef32014-04-24 23:55:07 +02007448 intel_crtc->lowfreq_avail = false;
7449
Daniel Vetterc8f7a0d2014-04-24 23:55:04 +02007450 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08007451}
7452
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01007453static bool haswell_get_pipe_config(struct intel_crtc *crtc,
7454 struct intel_crtc_config *pipe_config)
7455{
7456 struct drm_device *dev = crtc->base.dev;
7457 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007458 enum intel_display_power_domain pfit_domain;
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01007459 uint32_t tmp;
7460
Imre Deakb5482bd2014-03-05 16:20:55 +02007461 if (!intel_display_power_enabled(dev_priv,
7462 POWER_DOMAIN_PIPE(crtc->pipe)))
7463 return false;
7464
Daniel Vettere143a212013-07-04 12:01:15 +02007465 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +02007466 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
7467
Daniel Vettereccb1402013-05-22 00:50:22 +02007468 tmp = I915_READ(TRANS_DDI_FUNC_CTL(TRANSCODER_EDP));
7469 if (tmp & TRANS_DDI_FUNC_ENABLE) {
7470 enum pipe trans_edp_pipe;
7471 switch (tmp & TRANS_DDI_EDP_INPUT_MASK) {
7472 default:
7473 WARN(1, "unknown pipe linked to edp transcoder\n");
7474 case TRANS_DDI_EDP_INPUT_A_ONOFF:
7475 case TRANS_DDI_EDP_INPUT_A_ON:
7476 trans_edp_pipe = PIPE_A;
7477 break;
7478 case TRANS_DDI_EDP_INPUT_B_ONOFF:
7479 trans_edp_pipe = PIPE_B;
7480 break;
7481 case TRANS_DDI_EDP_INPUT_C_ONOFF:
7482 trans_edp_pipe = PIPE_C;
7483 break;
7484 }
7485
7486 if (trans_edp_pipe == crtc->pipe)
7487 pipe_config->cpu_transcoder = TRANSCODER_EDP;
7488 }
7489
Imre Deakda7e29b2014-02-18 00:02:02 +02007490 if (!intel_display_power_enabled(dev_priv,
Daniel Vettereccb1402013-05-22 00:50:22 +02007491 POWER_DOMAIN_TRANSCODER(pipe_config->cpu_transcoder)))
Paulo Zanoni2bfce952013-04-18 16:35:40 -03007492 return false;
7493
Daniel Vettereccb1402013-05-22 00:50:22 +02007494 tmp = I915_READ(PIPECONF(pipe_config->cpu_transcoder));
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01007495 if (!(tmp & PIPECONF_ENABLE))
7496 return false;
7497
Daniel Vetter88adfff2013-03-28 10:42:01 +01007498 /*
Paulo Zanonif196e6b2013-04-18 16:35:41 -03007499 * Haswell has only FDI/PCH transcoder A. It is which is connected to
Daniel Vetter88adfff2013-03-28 10:42:01 +01007500 * DDI E. So just check whether this pipe is wired to DDI E and whether
7501 * the PCH transcoder is on.
7502 */
Daniel Vettereccb1402013-05-22 00:50:22 +02007503 tmp = I915_READ(TRANS_DDI_FUNC_CTL(pipe_config->cpu_transcoder));
Daniel Vetter88adfff2013-03-28 10:42:01 +01007504 if ((tmp & TRANS_DDI_PORT_MASK) == TRANS_DDI_SELECT_PORT(PORT_E) &&
Daniel Vetterab9412b2013-05-03 11:49:46 +02007505 I915_READ(LPT_TRANSCONF) & TRANS_ENABLE) {
Daniel Vetter88adfff2013-03-28 10:42:01 +01007506 pipe_config->has_pch_encoder = true;
7507
Daniel Vetter627eb5a2013-04-29 19:33:42 +02007508 tmp = I915_READ(FDI_RX_CTL(PIPE_A));
7509 pipe_config->fdi_lanes = ((FDI_DP_PORT_WIDTH_MASK & tmp) >>
7510 FDI_DP_PORT_WIDTH_SHIFT) + 1;
Daniel Vetter72419202013-04-04 13:28:53 +02007511
7512 ironlake_get_fdi_m_n_config(crtc, pipe_config);
Daniel Vetter627eb5a2013-04-29 19:33:42 +02007513 }
7514
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02007515 intel_get_pipe_timings(crtc, pipe_config);
7516
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007517 pfit_domain = POWER_DOMAIN_PIPE_PANEL_FITTER(crtc->pipe);
Imre Deakda7e29b2014-02-18 00:02:02 +02007518 if (intel_display_power_enabled(dev_priv, pfit_domain))
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007519 ironlake_get_pfit_config(crtc, pipe_config);
Daniel Vetter88adfff2013-03-28 10:42:01 +01007520
Jesse Barnese59150d2014-01-07 13:30:45 -08007521 if (IS_HASWELL(dev))
7522 pipe_config->ips_enabled = hsw_crtc_supports_ips(crtc) &&
7523 (I915_READ(IPS_CTL) & IPS_ENABLE);
Paulo Zanoni42db64e2013-05-31 16:33:22 -03007524
Daniel Vetter6c49f242013-06-06 12:45:25 +02007525 pipe_config->pixel_multiplier = 1;
7526
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01007527 return true;
7528}
7529
Jani Nikula1a915102013-10-16 12:34:48 +03007530static struct {
7531 int clock;
7532 u32 config;
7533} hdmi_audio_clock[] = {
7534 { DIV_ROUND_UP(25200 * 1000, 1001), AUD_CONFIG_PIXEL_CLOCK_HDMI_25175 },
7535 { 25200, AUD_CONFIG_PIXEL_CLOCK_HDMI_25200 }, /* default per bspec */
7536 { 27000, AUD_CONFIG_PIXEL_CLOCK_HDMI_27000 },
7537 { 27000 * 1001 / 1000, AUD_CONFIG_PIXEL_CLOCK_HDMI_27027 },
7538 { 54000, AUD_CONFIG_PIXEL_CLOCK_HDMI_54000 },
7539 { 54000 * 1001 / 1000, AUD_CONFIG_PIXEL_CLOCK_HDMI_54054 },
7540 { DIV_ROUND_UP(74250 * 1000, 1001), AUD_CONFIG_PIXEL_CLOCK_HDMI_74176 },
7541 { 74250, AUD_CONFIG_PIXEL_CLOCK_HDMI_74250 },
7542 { DIV_ROUND_UP(148500 * 1000, 1001), AUD_CONFIG_PIXEL_CLOCK_HDMI_148352 },
7543 { 148500, AUD_CONFIG_PIXEL_CLOCK_HDMI_148500 },
7544};
7545
7546/* get AUD_CONFIG_PIXEL_CLOCK_HDMI_* value for mode */
7547static u32 audio_config_hdmi_pixel_clock(struct drm_display_mode *mode)
7548{
7549 int i;
7550
7551 for (i = 0; i < ARRAY_SIZE(hdmi_audio_clock); i++) {
7552 if (mode->clock == hdmi_audio_clock[i].clock)
7553 break;
7554 }
7555
7556 if (i == ARRAY_SIZE(hdmi_audio_clock)) {
7557 DRM_DEBUG_KMS("HDMI audio pixel clock setting for %d not found, falling back to defaults\n", mode->clock);
7558 i = 1;
7559 }
7560
7561 DRM_DEBUG_KMS("Configuring HDMI audio for pixel clock %d (0x%08x)\n",
7562 hdmi_audio_clock[i].clock,
7563 hdmi_audio_clock[i].config);
7564
7565 return hdmi_audio_clock[i].config;
7566}
7567
Wu Fengguang3a9627f2011-12-09 20:42:19 +08007568static bool intel_eld_uptodate(struct drm_connector *connector,
7569 int reg_eldv, uint32_t bits_eldv,
7570 int reg_elda, uint32_t bits_elda,
7571 int reg_edid)
7572{
7573 struct drm_i915_private *dev_priv = connector->dev->dev_private;
7574 uint8_t *eld = connector->eld;
7575 uint32_t i;
7576
7577 i = I915_READ(reg_eldv);
7578 i &= bits_eldv;
7579
7580 if (!eld[0])
7581 return !i;
7582
7583 if (!i)
7584 return false;
7585
7586 i = I915_READ(reg_elda);
7587 i &= ~bits_elda;
7588 I915_WRITE(reg_elda, i);
7589
7590 for (i = 0; i < eld[2]; i++)
7591 if (I915_READ(reg_edid) != *((uint32_t *)eld + i))
7592 return false;
7593
7594 return true;
7595}
7596
Wu Fengguange0dac652011-09-05 14:25:34 +08007597static void g4x_write_eld(struct drm_connector *connector,
Jani Nikula34427052013-10-16 12:34:47 +03007598 struct drm_crtc *crtc,
7599 struct drm_display_mode *mode)
Wu Fengguange0dac652011-09-05 14:25:34 +08007600{
7601 struct drm_i915_private *dev_priv = connector->dev->dev_private;
7602 uint8_t *eld = connector->eld;
7603 uint32_t eldv;
7604 uint32_t len;
7605 uint32_t i;
7606
7607 i = I915_READ(G4X_AUD_VID_DID);
7608
7609 if (i == INTEL_AUDIO_DEVBLC || i == INTEL_AUDIO_DEVCL)
7610 eldv = G4X_ELDV_DEVCL_DEVBLC;
7611 else
7612 eldv = G4X_ELDV_DEVCTG;
7613
Wu Fengguang3a9627f2011-12-09 20:42:19 +08007614 if (intel_eld_uptodate(connector,
7615 G4X_AUD_CNTL_ST, eldv,
7616 G4X_AUD_CNTL_ST, G4X_ELD_ADDR,
7617 G4X_HDMIW_HDMIEDID))
7618 return;
7619
Wu Fengguange0dac652011-09-05 14:25:34 +08007620 i = I915_READ(G4X_AUD_CNTL_ST);
7621 i &= ~(eldv | G4X_ELD_ADDR);
7622 len = (i >> 9) & 0x1f; /* ELD buffer size */
7623 I915_WRITE(G4X_AUD_CNTL_ST, i);
7624
7625 if (!eld[0])
7626 return;
7627
7628 len = min_t(uint8_t, eld[2], len);
7629 DRM_DEBUG_DRIVER("ELD size %d\n", len);
7630 for (i = 0; i < len; i++)
7631 I915_WRITE(G4X_HDMIW_HDMIEDID, *((uint32_t *)eld + i));
7632
7633 i = I915_READ(G4X_AUD_CNTL_ST);
7634 i |= eldv;
7635 I915_WRITE(G4X_AUD_CNTL_ST, i);
7636}
7637
Wang Xingchao83358c852012-08-16 22:43:37 +08007638static void haswell_write_eld(struct drm_connector *connector,
Jani Nikula34427052013-10-16 12:34:47 +03007639 struct drm_crtc *crtc,
7640 struct drm_display_mode *mode)
Wang Xingchao83358c852012-08-16 22:43:37 +08007641{
7642 struct drm_i915_private *dev_priv = connector->dev->dev_private;
7643 uint8_t *eld = connector->eld;
Wang Xingchao83358c852012-08-16 22:43:37 +08007644 uint32_t eldv;
7645 uint32_t i;
7646 int len;
7647 int pipe = to_intel_crtc(crtc)->pipe;
7648 int tmp;
7649
7650 int hdmiw_hdmiedid = HSW_AUD_EDID_DATA(pipe);
7651 int aud_cntl_st = HSW_AUD_DIP_ELD_CTRL(pipe);
7652 int aud_config = HSW_AUD_CFG(pipe);
7653 int aud_cntrl_st2 = HSW_AUD_PIN_ELD_CP_VLD;
7654
Wang Xingchao83358c852012-08-16 22:43:37 +08007655 /* Audio output enable */
7656 DRM_DEBUG_DRIVER("HDMI audio: enable codec\n");
7657 tmp = I915_READ(aud_cntrl_st2);
7658 tmp |= (AUDIO_OUTPUT_ENABLE_A << (pipe * 4));
7659 I915_WRITE(aud_cntrl_st2, tmp);
Daniel Vetterc7905792014-04-16 16:56:09 +02007660 POSTING_READ(aud_cntrl_st2);
Wang Xingchao83358c852012-08-16 22:43:37 +08007661
Daniel Vetterc7905792014-04-16 16:56:09 +02007662 assert_pipe_disabled(dev_priv, to_intel_crtc(crtc)->pipe);
Wang Xingchao83358c852012-08-16 22:43:37 +08007663
7664 /* Set ELD valid state */
7665 tmp = I915_READ(aud_cntrl_st2);
Takashi Iwai7e7cb342013-09-10 07:30:36 +02007666 DRM_DEBUG_DRIVER("HDMI audio: pin eld vld status=0x%08x\n", tmp);
Wang Xingchao83358c852012-08-16 22:43:37 +08007667 tmp |= (AUDIO_ELD_VALID_A << (pipe * 4));
7668 I915_WRITE(aud_cntrl_st2, tmp);
7669 tmp = I915_READ(aud_cntrl_st2);
Takashi Iwai7e7cb342013-09-10 07:30:36 +02007670 DRM_DEBUG_DRIVER("HDMI audio: eld vld status=0x%08x\n", tmp);
Wang Xingchao83358c852012-08-16 22:43:37 +08007671
7672 /* Enable HDMI mode */
7673 tmp = I915_READ(aud_config);
Takashi Iwai7e7cb342013-09-10 07:30:36 +02007674 DRM_DEBUG_DRIVER("HDMI audio: audio conf: 0x%08x\n", tmp);
Wang Xingchao83358c852012-08-16 22:43:37 +08007675 /* clear N_programing_enable and N_value_index */
7676 tmp &= ~(AUD_CONFIG_N_VALUE_INDEX | AUD_CONFIG_N_PROG_ENABLE);
7677 I915_WRITE(aud_config, tmp);
7678
7679 DRM_DEBUG_DRIVER("ELD on pipe %c\n", pipe_name(pipe));
7680
7681 eldv = AUDIO_ELD_VALID_A << (pipe * 4);
7682
7683 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT)) {
7684 DRM_DEBUG_DRIVER("ELD: DisplayPort detected\n");
7685 eld[5] |= (1 << 2); /* Conn_Type, 0x1 = DisplayPort */
7686 I915_WRITE(aud_config, AUD_CONFIG_N_VALUE_INDEX); /* 0x1 = DP */
Jani Nikula1a915102013-10-16 12:34:48 +03007687 } else {
7688 I915_WRITE(aud_config, audio_config_hdmi_pixel_clock(mode));
7689 }
Wang Xingchao83358c852012-08-16 22:43:37 +08007690
7691 if (intel_eld_uptodate(connector,
7692 aud_cntrl_st2, eldv,
7693 aud_cntl_st, IBX_ELD_ADDRESS,
7694 hdmiw_hdmiedid))
7695 return;
7696
7697 i = I915_READ(aud_cntrl_st2);
7698 i &= ~eldv;
7699 I915_WRITE(aud_cntrl_st2, i);
7700
7701 if (!eld[0])
7702 return;
7703
7704 i = I915_READ(aud_cntl_st);
7705 i &= ~IBX_ELD_ADDRESS;
7706 I915_WRITE(aud_cntl_st, i);
7707 i = (i >> 29) & DIP_PORT_SEL_MASK; /* DIP_Port_Select, 0x1 = PortB */
7708 DRM_DEBUG_DRIVER("port num:%d\n", i);
7709
7710 len = min_t(uint8_t, eld[2], 21); /* 84 bytes of hw ELD buffer */
7711 DRM_DEBUG_DRIVER("ELD size %d\n", len);
7712 for (i = 0; i < len; i++)
7713 I915_WRITE(hdmiw_hdmiedid, *((uint32_t *)eld + i));
7714
7715 i = I915_READ(aud_cntrl_st2);
7716 i |= eldv;
7717 I915_WRITE(aud_cntrl_st2, i);
7718
7719}
7720
Wu Fengguange0dac652011-09-05 14:25:34 +08007721static void ironlake_write_eld(struct drm_connector *connector,
Jani Nikula34427052013-10-16 12:34:47 +03007722 struct drm_crtc *crtc,
7723 struct drm_display_mode *mode)
Wu Fengguange0dac652011-09-05 14:25:34 +08007724{
7725 struct drm_i915_private *dev_priv = connector->dev->dev_private;
7726 uint8_t *eld = connector->eld;
7727 uint32_t eldv;
7728 uint32_t i;
7729 int len;
7730 int hdmiw_hdmiedid;
Wu Fengguangb6daa022012-01-06 14:41:31 -06007731 int aud_config;
Wu Fengguange0dac652011-09-05 14:25:34 +08007732 int aud_cntl_st;
7733 int aud_cntrl_st2;
Wang Xingchao9b138a82012-08-09 16:52:18 +08007734 int pipe = to_intel_crtc(crtc)->pipe;
Wu Fengguange0dac652011-09-05 14:25:34 +08007735
Wu Fengguangb3f33cb2011-12-09 20:42:17 +08007736 if (HAS_PCH_IBX(connector->dev)) {
Wang Xingchao9b138a82012-08-09 16:52:18 +08007737 hdmiw_hdmiedid = IBX_HDMIW_HDMIEDID(pipe);
7738 aud_config = IBX_AUD_CFG(pipe);
7739 aud_cntl_st = IBX_AUD_CNTL_ST(pipe);
Wu Fengguang1202b4c62011-12-09 20:42:18 +08007740 aud_cntrl_st2 = IBX_AUD_CNTL_ST2;
Mengdong Lin9ca2fe72013-11-01 00:17:03 -04007741 } else if (IS_VALLEYVIEW(connector->dev)) {
7742 hdmiw_hdmiedid = VLV_HDMIW_HDMIEDID(pipe);
7743 aud_config = VLV_AUD_CFG(pipe);
7744 aud_cntl_st = VLV_AUD_CNTL_ST(pipe);
7745 aud_cntrl_st2 = VLV_AUD_CNTL_ST2;
Wu Fengguange0dac652011-09-05 14:25:34 +08007746 } else {
Wang Xingchao9b138a82012-08-09 16:52:18 +08007747 hdmiw_hdmiedid = CPT_HDMIW_HDMIEDID(pipe);
7748 aud_config = CPT_AUD_CFG(pipe);
7749 aud_cntl_st = CPT_AUD_CNTL_ST(pipe);
Wu Fengguang1202b4c62011-12-09 20:42:18 +08007750 aud_cntrl_st2 = CPT_AUD_CNTRL_ST2;
Wu Fengguange0dac652011-09-05 14:25:34 +08007751 }
7752
Wang Xingchao9b138a82012-08-09 16:52:18 +08007753 DRM_DEBUG_DRIVER("ELD on pipe %c\n", pipe_name(pipe));
Wu Fengguange0dac652011-09-05 14:25:34 +08007754
Mengdong Lin9ca2fe72013-11-01 00:17:03 -04007755 if (IS_VALLEYVIEW(connector->dev)) {
7756 struct intel_encoder *intel_encoder;
7757 struct intel_digital_port *intel_dig_port;
7758
7759 intel_encoder = intel_attached_encoder(connector);
7760 intel_dig_port = enc_to_dig_port(&intel_encoder->base);
7761 i = intel_dig_port->port;
7762 } else {
7763 i = I915_READ(aud_cntl_st);
7764 i = (i >> 29) & DIP_PORT_SEL_MASK;
7765 /* DIP_Port_Select, 0x1 = PortB */
7766 }
7767
Wu Fengguange0dac652011-09-05 14:25:34 +08007768 if (!i) {
7769 DRM_DEBUG_DRIVER("Audio directed to unknown port\n");
7770 /* operate blindly on all ports */
Wu Fengguang1202b4c62011-12-09 20:42:18 +08007771 eldv = IBX_ELD_VALIDB;
7772 eldv |= IBX_ELD_VALIDB << 4;
7773 eldv |= IBX_ELD_VALIDB << 8;
Wu Fengguange0dac652011-09-05 14:25:34 +08007774 } else {
Ville Syrjälä2582a852013-04-17 17:48:47 +03007775 DRM_DEBUG_DRIVER("ELD on port %c\n", port_name(i));
Wu Fengguang1202b4c62011-12-09 20:42:18 +08007776 eldv = IBX_ELD_VALIDB << ((i - 1) * 4);
Wu Fengguange0dac652011-09-05 14:25:34 +08007777 }
7778
Wu Fengguang3a9627f2011-12-09 20:42:19 +08007779 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT)) {
7780 DRM_DEBUG_DRIVER("ELD: DisplayPort detected\n");
7781 eld[5] |= (1 << 2); /* Conn_Type, 0x1 = DisplayPort */
Wu Fengguangb6daa022012-01-06 14:41:31 -06007782 I915_WRITE(aud_config, AUD_CONFIG_N_VALUE_INDEX); /* 0x1 = DP */
Jani Nikula1a915102013-10-16 12:34:48 +03007783 } else {
7784 I915_WRITE(aud_config, audio_config_hdmi_pixel_clock(mode));
7785 }
Wu Fengguang3a9627f2011-12-09 20:42:19 +08007786
7787 if (intel_eld_uptodate(connector,
7788 aud_cntrl_st2, eldv,
7789 aud_cntl_st, IBX_ELD_ADDRESS,
7790 hdmiw_hdmiedid))
7791 return;
7792
Wu Fengguange0dac652011-09-05 14:25:34 +08007793 i = I915_READ(aud_cntrl_st2);
7794 i &= ~eldv;
7795 I915_WRITE(aud_cntrl_st2, i);
7796
7797 if (!eld[0])
7798 return;
7799
Wu Fengguange0dac652011-09-05 14:25:34 +08007800 i = I915_READ(aud_cntl_st);
Wu Fengguang1202b4c62011-12-09 20:42:18 +08007801 i &= ~IBX_ELD_ADDRESS;
Wu Fengguange0dac652011-09-05 14:25:34 +08007802 I915_WRITE(aud_cntl_st, i);
7803
7804 len = min_t(uint8_t, eld[2], 21); /* 84 bytes of hw ELD buffer */
7805 DRM_DEBUG_DRIVER("ELD size %d\n", len);
7806 for (i = 0; i < len; i++)
7807 I915_WRITE(hdmiw_hdmiedid, *((uint32_t *)eld + i));
7808
7809 i = I915_READ(aud_cntrl_st2);
7810 i |= eldv;
7811 I915_WRITE(aud_cntrl_st2, i);
7812}
7813
7814void intel_write_eld(struct drm_encoder *encoder,
7815 struct drm_display_mode *mode)
7816{
7817 struct drm_crtc *crtc = encoder->crtc;
7818 struct drm_connector *connector;
7819 struct drm_device *dev = encoder->dev;
7820 struct drm_i915_private *dev_priv = dev->dev_private;
7821
7822 connector = drm_select_eld(encoder, mode);
7823 if (!connector)
7824 return;
7825
7826 DRM_DEBUG_DRIVER("ELD on [CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
7827 connector->base.id,
7828 drm_get_connector_name(connector),
7829 connector->encoder->base.id,
7830 drm_get_encoder_name(connector->encoder));
7831
7832 connector->eld[6] = drm_av_sync_delay(connector, mode) / 2;
7833
7834 if (dev_priv->display.write_eld)
Jani Nikula34427052013-10-16 12:34:47 +03007835 dev_priv->display.write_eld(connector, crtc, mode);
Wu Fengguange0dac652011-09-05 14:25:34 +08007836}
7837
Chris Wilson560b85b2010-08-07 11:01:38 +01007838static void i845_update_cursor(struct drm_crtc *crtc, u32 base)
7839{
7840 struct drm_device *dev = crtc->dev;
7841 struct drm_i915_private *dev_priv = dev->dev_private;
7842 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
7843 bool visible = base != 0;
7844 u32 cntl;
7845
7846 if (intel_crtc->cursor_visible == visible)
7847 return;
7848
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08007849 cntl = I915_READ(_CURACNTR);
Chris Wilson560b85b2010-08-07 11:01:38 +01007850 if (visible) {
7851 /* On these chipsets we can only modify the base whilst
7852 * the cursor is disabled.
7853 */
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08007854 I915_WRITE(_CURABASE, base);
Chris Wilson560b85b2010-08-07 11:01:38 +01007855
7856 cntl &= ~(CURSOR_FORMAT_MASK);
7857 /* XXX width must be 64, stride 256 => 0x00 << 28 */
7858 cntl |= CURSOR_ENABLE |
7859 CURSOR_GAMMA_ENABLE |
7860 CURSOR_FORMAT_ARGB;
7861 } else
7862 cntl &= ~(CURSOR_ENABLE | CURSOR_GAMMA_ENABLE);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08007863 I915_WRITE(_CURACNTR, cntl);
Chris Wilson560b85b2010-08-07 11:01:38 +01007864
7865 intel_crtc->cursor_visible = visible;
7866}
7867
7868static void i9xx_update_cursor(struct drm_crtc *crtc, u32 base)
7869{
7870 struct drm_device *dev = crtc->dev;
7871 struct drm_i915_private *dev_priv = dev->dev_private;
7872 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
7873 int pipe = intel_crtc->pipe;
7874 bool visible = base != 0;
7875
7876 if (intel_crtc->cursor_visible != visible) {
Sagar Kamble4726e0b2014-03-10 17:06:23 +05307877 int16_t width = intel_crtc->cursor_width;
Jesse Barnes548f2452011-02-17 10:40:53 -08007878 uint32_t cntl = I915_READ(CURCNTR(pipe));
Chris Wilson560b85b2010-08-07 11:01:38 +01007879 if (base) {
7880 cntl &= ~(CURSOR_MODE | MCURSOR_PIPE_SELECT);
Sagar Kamble4726e0b2014-03-10 17:06:23 +05307881 cntl |= MCURSOR_GAMMA_ENABLE;
7882
7883 switch (width) {
7884 case 64:
7885 cntl |= CURSOR_MODE_64_ARGB_AX;
7886 break;
7887 case 128:
7888 cntl |= CURSOR_MODE_128_ARGB_AX;
7889 break;
7890 case 256:
7891 cntl |= CURSOR_MODE_256_ARGB_AX;
7892 break;
7893 default:
7894 WARN_ON(1);
7895 return;
7896 }
Chris Wilson560b85b2010-08-07 11:01:38 +01007897 cntl |= pipe << 28; /* Connect to correct pipe */
7898 } else {
7899 cntl &= ~(CURSOR_MODE | MCURSOR_GAMMA_ENABLE);
7900 cntl |= CURSOR_MODE_DISABLE;
7901 }
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08007902 I915_WRITE(CURCNTR(pipe), cntl);
Chris Wilson560b85b2010-08-07 11:01:38 +01007903
7904 intel_crtc->cursor_visible = visible;
7905 }
7906 /* and commit changes on next vblank */
Daniel Vetterb2ea8ef2013-11-04 08:13:45 +01007907 POSTING_READ(CURCNTR(pipe));
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08007908 I915_WRITE(CURBASE(pipe), base);
Daniel Vetterb2ea8ef2013-11-04 08:13:45 +01007909 POSTING_READ(CURBASE(pipe));
Chris Wilson560b85b2010-08-07 11:01:38 +01007910}
7911
Jesse Barnes65a21cd2011-10-12 11:10:21 -07007912static void ivb_update_cursor(struct drm_crtc *crtc, u32 base)
7913{
7914 struct drm_device *dev = crtc->dev;
7915 struct drm_i915_private *dev_priv = dev->dev_private;
7916 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
7917 int pipe = intel_crtc->pipe;
7918 bool visible = base != 0;
7919
7920 if (intel_crtc->cursor_visible != visible) {
Sagar Kamble4726e0b2014-03-10 17:06:23 +05307921 int16_t width = intel_crtc->cursor_width;
Ville Syrjälä5efb3e22014-04-09 13:28:53 +03007922 uint32_t cntl = I915_READ(CURCNTR(pipe));
Jesse Barnes65a21cd2011-10-12 11:10:21 -07007923 if (base) {
7924 cntl &= ~CURSOR_MODE;
Sagar Kamble4726e0b2014-03-10 17:06:23 +05307925 cntl |= MCURSOR_GAMMA_ENABLE;
7926 switch (width) {
7927 case 64:
7928 cntl |= CURSOR_MODE_64_ARGB_AX;
7929 break;
7930 case 128:
7931 cntl |= CURSOR_MODE_128_ARGB_AX;
7932 break;
7933 case 256:
7934 cntl |= CURSOR_MODE_256_ARGB_AX;
7935 break;
7936 default:
7937 WARN_ON(1);
7938 return;
7939 }
Jesse Barnes65a21cd2011-10-12 11:10:21 -07007940 } else {
7941 cntl &= ~(CURSOR_MODE | MCURSOR_GAMMA_ENABLE);
7942 cntl |= CURSOR_MODE_DISABLE;
7943 }
Ville Syrjälä6bbfa1c2013-11-02 21:07:39 -07007944 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02007945 cntl |= CURSOR_PIPE_CSC_ENABLE;
Paulo Zanoni1f5d76d2013-08-23 19:51:28 -03007946 cntl &= ~CURSOR_TRICKLE_FEED_DISABLE;
7947 }
Ville Syrjälä5efb3e22014-04-09 13:28:53 +03007948 I915_WRITE(CURCNTR(pipe), cntl);
Jesse Barnes65a21cd2011-10-12 11:10:21 -07007949
7950 intel_crtc->cursor_visible = visible;
7951 }
7952 /* and commit changes on next vblank */
Ville Syrjälä5efb3e22014-04-09 13:28:53 +03007953 POSTING_READ(CURCNTR(pipe));
7954 I915_WRITE(CURBASE(pipe), base);
7955 POSTING_READ(CURBASE(pipe));
Jesse Barnes65a21cd2011-10-12 11:10:21 -07007956}
7957
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01007958/* If no-part of the cursor is visible on the framebuffer, then the GPU may hang... */
Chris Wilson6b383a72010-09-13 13:54:26 +01007959static void intel_crtc_update_cursor(struct drm_crtc *crtc,
7960 bool on)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01007961{
7962 struct drm_device *dev = crtc->dev;
7963 struct drm_i915_private *dev_priv = dev->dev_private;
7964 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
7965 int pipe = intel_crtc->pipe;
7966 int x = intel_crtc->cursor_x;
7967 int y = intel_crtc->cursor_y;
Ville Syrjäläd6e4db12013-09-04 18:25:31 +03007968 u32 base = 0, pos = 0;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01007969 bool visible;
7970
Ville Syrjäläd6e4db12013-09-04 18:25:31 +03007971 if (on)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01007972 base = intel_crtc->cursor_addr;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01007973
Ville Syrjäläd6e4db12013-09-04 18:25:31 +03007974 if (x >= intel_crtc->config.pipe_src_w)
7975 base = 0;
7976
7977 if (y >= intel_crtc->config.pipe_src_h)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01007978 base = 0;
7979
7980 if (x < 0) {
Ville Syrjäläefc90642013-09-04 18:25:30 +03007981 if (x + intel_crtc->cursor_width <= 0)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01007982 base = 0;
7983
7984 pos |= CURSOR_POS_SIGN << CURSOR_X_SHIFT;
7985 x = -x;
7986 }
7987 pos |= x << CURSOR_X_SHIFT;
7988
7989 if (y < 0) {
Ville Syrjäläefc90642013-09-04 18:25:30 +03007990 if (y + intel_crtc->cursor_height <= 0)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01007991 base = 0;
7992
7993 pos |= CURSOR_POS_SIGN << CURSOR_Y_SHIFT;
7994 y = -y;
7995 }
7996 pos |= y << CURSOR_Y_SHIFT;
7997
7998 visible = base != 0;
Chris Wilson560b85b2010-08-07 11:01:38 +01007999 if (!visible && !intel_crtc->cursor_visible)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01008000 return;
8001
Ville Syrjälä5efb3e22014-04-09 13:28:53 +03008002 I915_WRITE(CURPOS(pipe), pos);
8003
8004 if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev) || IS_BROADWELL(dev))
Jesse Barnes65a21cd2011-10-12 11:10:21 -07008005 ivb_update_cursor(crtc, base);
Ville Syrjälä5efb3e22014-04-09 13:28:53 +03008006 else if (IS_845G(dev) || IS_I865G(dev))
8007 i845_update_cursor(crtc, base);
8008 else
8009 i9xx_update_cursor(crtc, base);
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01008010}
8011
Jesse Barnes79e53942008-11-07 14:24:08 -08008012static int intel_crtc_cursor_set(struct drm_crtc *crtc,
Chris Wilson05394f32010-11-08 19:18:58 +00008013 struct drm_file *file,
Jesse Barnes79e53942008-11-07 14:24:08 -08008014 uint32_t handle,
8015 uint32_t width, uint32_t height)
8016{
8017 struct drm_device *dev = crtc->dev;
8018 struct drm_i915_private *dev_priv = dev->dev_private;
8019 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Chris Wilson05394f32010-11-08 19:18:58 +00008020 struct drm_i915_gem_object *obj;
Chris Wilson64f962e2014-03-26 12:38:15 +00008021 unsigned old_width;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01008022 uint32_t addr;
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05008023 int ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08008024
Jesse Barnes79e53942008-11-07 14:24:08 -08008025 /* if we want to turn off the cursor ignore width and height */
8026 if (!handle) {
Zhao Yakui28c97732009-10-09 11:39:41 +08008027 DRM_DEBUG_KMS("cursor off\n");
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05008028 addr = 0;
Chris Wilson05394f32010-11-08 19:18:58 +00008029 obj = NULL;
Pierre Willenbrock50044172009-02-23 10:12:15 +10008030 mutex_lock(&dev->struct_mutex);
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05008031 goto finish;
Jesse Barnes79e53942008-11-07 14:24:08 -08008032 }
8033
Sagar Kamble4726e0b2014-03-10 17:06:23 +05308034 /* Check for which cursor types we support */
8035 if (!((width == 64 && height == 64) ||
8036 (width == 128 && height == 128 && !IS_GEN2(dev)) ||
8037 (width == 256 && height == 256 && !IS_GEN2(dev)))) {
8038 DRM_DEBUG("Cursor dimension not supported\n");
Jesse Barnes79e53942008-11-07 14:24:08 -08008039 return -EINVAL;
8040 }
8041
Chris Wilson05394f32010-11-08 19:18:58 +00008042 obj = to_intel_bo(drm_gem_object_lookup(dev, file, handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00008043 if (&obj->base == NULL)
Jesse Barnes79e53942008-11-07 14:24:08 -08008044 return -ENOENT;
8045
Chris Wilson05394f32010-11-08 19:18:58 +00008046 if (obj->base.size < width * height * 4) {
Daniel Vetter3b25b312014-02-14 14:06:06 +01008047 DRM_DEBUG_KMS("buffer is to small\n");
Dave Airlie34b8686e2009-01-15 14:03:07 +10008048 ret = -ENOMEM;
8049 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -08008050 }
8051
Dave Airlie71acb5e2008-12-30 20:31:46 +10008052 /* we only need to pin inside GTT if cursor is non-phy */
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05008053 mutex_lock(&dev->struct_mutex);
Damien Lespiau3d13ef22014-02-07 19:12:47 +00008054 if (!INTEL_INFO(dev)->cursor_needs_physical) {
Chris Wilson693db182013-03-05 14:52:39 +00008055 unsigned alignment;
8056
Chris Wilsond9e86c02010-11-10 16:40:20 +00008057 if (obj->tiling_mode) {
Daniel Vetter3b25b312014-02-14 14:06:06 +01008058 DRM_DEBUG_KMS("cursor cannot be tiled\n");
Chris Wilsond9e86c02010-11-10 16:40:20 +00008059 ret = -EINVAL;
8060 goto fail_locked;
8061 }
8062
Chris Wilson693db182013-03-05 14:52:39 +00008063 /* Note that the w/a also requires 2 PTE of padding following
8064 * the bo. We currently fill all unused PTE with the shadow
8065 * page and so we should always have valid PTE following the
8066 * cursor preventing the VT-d warning.
8067 */
8068 alignment = 0;
8069 if (need_vtd_wa(dev))
8070 alignment = 64*1024;
8071
8072 ret = i915_gem_object_pin_to_display_plane(obj, alignment, NULL);
Chris Wilsone7b526b2010-06-02 08:30:48 +01008073 if (ret) {
Daniel Vetter3b25b312014-02-14 14:06:06 +01008074 DRM_DEBUG_KMS("failed to move cursor bo into the GTT\n");
Chris Wilson2da3b9b2011-04-14 09:41:17 +01008075 goto fail_locked;
Chris Wilsone7b526b2010-06-02 08:30:48 +01008076 }
8077
Chris Wilsond9e86c02010-11-10 16:40:20 +00008078 ret = i915_gem_object_put_fence(obj);
8079 if (ret) {
Daniel Vetter3b25b312014-02-14 14:06:06 +01008080 DRM_DEBUG_KMS("failed to release fence for cursor");
Chris Wilsond9e86c02010-11-10 16:40:20 +00008081 goto fail_unpin;
8082 }
8083
Ben Widawskyf343c5f2013-07-05 14:41:04 -07008084 addr = i915_gem_obj_ggtt_offset(obj);
Dave Airlie71acb5e2008-12-30 20:31:46 +10008085 } else {
Chris Wilson6eeefaf2010-08-07 11:01:39 +01008086 int align = IS_I830(dev) ? 16 * 1024 : 256;
Chris Wilson05394f32010-11-08 19:18:58 +00008087 ret = i915_gem_attach_phys_object(dev, obj,
Chris Wilson6eeefaf2010-08-07 11:01:39 +01008088 (intel_crtc->pipe == 0) ? I915_GEM_PHYS_CURSOR_0 : I915_GEM_PHYS_CURSOR_1,
8089 align);
Dave Airlie71acb5e2008-12-30 20:31:46 +10008090 if (ret) {
Daniel Vetter3b25b312014-02-14 14:06:06 +01008091 DRM_DEBUG_KMS("failed to attach phys object\n");
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05008092 goto fail_locked;
Dave Airlie71acb5e2008-12-30 20:31:46 +10008093 }
Chris Wilson05394f32010-11-08 19:18:58 +00008094 addr = obj->phys_obj->handle->busaddr;
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05008095 }
8096
Chris Wilsona6c45cf2010-09-17 00:32:17 +01008097 if (IS_GEN2(dev))
Jesse Barnes14b60392009-05-20 16:47:08 -04008098 I915_WRITE(CURSIZE, (height << 12) | width);
8099
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05008100 finish:
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05008101 if (intel_crtc->cursor_bo) {
Damien Lespiau3d13ef22014-02-07 19:12:47 +00008102 if (INTEL_INFO(dev)->cursor_needs_physical) {
Chris Wilson05394f32010-11-08 19:18:58 +00008103 if (intel_crtc->cursor_bo != obj)
Dave Airlie71acb5e2008-12-30 20:31:46 +10008104 i915_gem_detach_phys_object(dev, intel_crtc->cursor_bo);
8105 } else
Chris Wilsoncc98b412013-08-09 12:25:09 +01008106 i915_gem_object_unpin_from_display_plane(intel_crtc->cursor_bo);
Chris Wilson05394f32010-11-08 19:18:58 +00008107 drm_gem_object_unreference(&intel_crtc->cursor_bo->base);
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05008108 }
Jesse Barnes80824002009-09-10 15:28:06 -07008109
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05008110 mutex_unlock(&dev->struct_mutex);
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05008111
Chris Wilson64f962e2014-03-26 12:38:15 +00008112 old_width = intel_crtc->cursor_width;
8113
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05008114 intel_crtc->cursor_addr = addr;
Chris Wilson05394f32010-11-08 19:18:58 +00008115 intel_crtc->cursor_bo = obj;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01008116 intel_crtc->cursor_width = width;
8117 intel_crtc->cursor_height = height;
8118
Chris Wilson64f962e2014-03-26 12:38:15 +00008119 if (intel_crtc->active) {
8120 if (old_width != width)
8121 intel_update_watermarks(crtc);
Ville Syrjäläf2f5f772013-09-17 18:33:44 +03008122 intel_crtc_update_cursor(crtc, intel_crtc->cursor_bo != NULL);
Chris Wilson64f962e2014-03-26 12:38:15 +00008123 }
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05008124
Jesse Barnes79e53942008-11-07 14:24:08 -08008125 return 0;
Chris Wilsone7b526b2010-06-02 08:30:48 +01008126fail_unpin:
Chris Wilsoncc98b412013-08-09 12:25:09 +01008127 i915_gem_object_unpin_from_display_plane(obj);
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05008128fail_locked:
Dave Airlie34b8686e2009-01-15 14:03:07 +10008129 mutex_unlock(&dev->struct_mutex);
Luca Barbieribc9025b2010-02-09 05:49:12 +00008130fail:
Chris Wilson05394f32010-11-08 19:18:58 +00008131 drm_gem_object_unreference_unlocked(&obj->base);
Dave Airlie34b8686e2009-01-15 14:03:07 +10008132 return ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08008133}
8134
8135static int intel_crtc_cursor_move(struct drm_crtc *crtc, int x, int y)
8136{
Jesse Barnes79e53942008-11-07 14:24:08 -08008137 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08008138
Ville Syrjälä92e76c82013-10-21 19:01:58 +03008139 intel_crtc->cursor_x = clamp_t(int, x, SHRT_MIN, SHRT_MAX);
8140 intel_crtc->cursor_y = clamp_t(int, y, SHRT_MIN, SHRT_MAX);
Jesse Barnes652c3932009-08-17 13:31:43 -07008141
Ville Syrjäläf2f5f772013-09-17 18:33:44 +03008142 if (intel_crtc->active)
8143 intel_crtc_update_cursor(crtc, intel_crtc->cursor_bo != NULL);
Jesse Barnes79e53942008-11-07 14:24:08 -08008144
8145 return 0;
8146}
8147
Jesse Barnes79e53942008-11-07 14:24:08 -08008148static void intel_crtc_gamma_set(struct drm_crtc *crtc, u16 *red, u16 *green,
James Simmons72034252010-08-03 01:33:19 +01008149 u16 *blue, uint32_t start, uint32_t size)
Jesse Barnes79e53942008-11-07 14:24:08 -08008150{
James Simmons72034252010-08-03 01:33:19 +01008151 int end = (start + size > 256) ? 256 : start + size, i;
Jesse Barnes79e53942008-11-07 14:24:08 -08008152 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08008153
James Simmons72034252010-08-03 01:33:19 +01008154 for (i = start; i < end; i++) {
Jesse Barnes79e53942008-11-07 14:24:08 -08008155 intel_crtc->lut_r[i] = red[i] >> 8;
8156 intel_crtc->lut_g[i] = green[i] >> 8;
8157 intel_crtc->lut_b[i] = blue[i] >> 8;
8158 }
8159
8160 intel_crtc_load_lut(crtc);
8161}
8162
Jesse Barnes79e53942008-11-07 14:24:08 -08008163/* VESA 640x480x72Hz mode to set on the pipe */
8164static struct drm_display_mode load_detect_mode = {
8165 DRM_MODE("640x480", DRM_MODE_TYPE_DEFAULT, 31500, 640, 664,
8166 704, 832, 0, 480, 489, 491, 520, 0, DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
8167};
8168
Daniel Vettera8bb6812014-02-10 18:00:39 +01008169struct drm_framebuffer *
8170__intel_framebuffer_create(struct drm_device *dev,
8171 struct drm_mode_fb_cmd2 *mode_cmd,
8172 struct drm_i915_gem_object *obj)
Chris Wilsond2dff872011-04-19 08:36:26 +01008173{
8174 struct intel_framebuffer *intel_fb;
8175 int ret;
8176
8177 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
8178 if (!intel_fb) {
8179 drm_gem_object_unreference_unlocked(&obj->base);
8180 return ERR_PTR(-ENOMEM);
8181 }
8182
8183 ret = intel_framebuffer_init(dev, intel_fb, mode_cmd, obj);
Daniel Vetterdd4916c2013-10-09 21:23:51 +02008184 if (ret)
8185 goto err;
Chris Wilsond2dff872011-04-19 08:36:26 +01008186
8187 return &intel_fb->base;
Daniel Vetterdd4916c2013-10-09 21:23:51 +02008188err:
8189 drm_gem_object_unreference_unlocked(&obj->base);
8190 kfree(intel_fb);
8191
8192 return ERR_PTR(ret);
Chris Wilsond2dff872011-04-19 08:36:26 +01008193}
8194
Daniel Vetterb5ea6422014-03-02 21:18:00 +01008195static struct drm_framebuffer *
Daniel Vettera8bb6812014-02-10 18:00:39 +01008196intel_framebuffer_create(struct drm_device *dev,
8197 struct drm_mode_fb_cmd2 *mode_cmd,
8198 struct drm_i915_gem_object *obj)
8199{
8200 struct drm_framebuffer *fb;
8201 int ret;
8202
8203 ret = i915_mutex_lock_interruptible(dev);
8204 if (ret)
8205 return ERR_PTR(ret);
8206 fb = __intel_framebuffer_create(dev, mode_cmd, obj);
8207 mutex_unlock(&dev->struct_mutex);
8208
8209 return fb;
8210}
8211
Chris Wilsond2dff872011-04-19 08:36:26 +01008212static u32
8213intel_framebuffer_pitch_for_width(int width, int bpp)
8214{
8215 u32 pitch = DIV_ROUND_UP(width * bpp, 8);
8216 return ALIGN(pitch, 64);
8217}
8218
8219static u32
8220intel_framebuffer_size_for_mode(struct drm_display_mode *mode, int bpp)
8221{
8222 u32 pitch = intel_framebuffer_pitch_for_width(mode->hdisplay, bpp);
8223 return ALIGN(pitch * mode->vdisplay, PAGE_SIZE);
8224}
8225
8226static struct drm_framebuffer *
8227intel_framebuffer_create_for_mode(struct drm_device *dev,
8228 struct drm_display_mode *mode,
8229 int depth, int bpp)
8230{
8231 struct drm_i915_gem_object *obj;
Chris Wilson0fed39b2012-11-05 22:25:07 +00008232 struct drm_mode_fb_cmd2 mode_cmd = { 0 };
Chris Wilsond2dff872011-04-19 08:36:26 +01008233
8234 obj = i915_gem_alloc_object(dev,
8235 intel_framebuffer_size_for_mode(mode, bpp));
8236 if (obj == NULL)
8237 return ERR_PTR(-ENOMEM);
8238
8239 mode_cmd.width = mode->hdisplay;
8240 mode_cmd.height = mode->vdisplay;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08008241 mode_cmd.pitches[0] = intel_framebuffer_pitch_for_width(mode_cmd.width,
8242 bpp);
Dave Airlie5ca0c342012-02-23 15:33:40 +00008243 mode_cmd.pixel_format = drm_mode_legacy_fb_format(bpp, depth);
Chris Wilsond2dff872011-04-19 08:36:26 +01008244
8245 return intel_framebuffer_create(dev, &mode_cmd, obj);
8246}
8247
8248static struct drm_framebuffer *
8249mode_fits_in_fbdev(struct drm_device *dev,
8250 struct drm_display_mode *mode)
8251{
Daniel Vetter4520f532013-10-09 09:18:51 +02008252#ifdef CONFIG_DRM_I915_FBDEV
Chris Wilsond2dff872011-04-19 08:36:26 +01008253 struct drm_i915_private *dev_priv = dev->dev_private;
8254 struct drm_i915_gem_object *obj;
8255 struct drm_framebuffer *fb;
8256
Daniel Vetter4c0e5522014-02-14 16:35:54 +01008257 if (!dev_priv->fbdev)
8258 return NULL;
8259
8260 if (!dev_priv->fbdev->fb)
Chris Wilsond2dff872011-04-19 08:36:26 +01008261 return NULL;
8262
Jesse Barnes8bcd4552014-02-07 12:10:38 -08008263 obj = dev_priv->fbdev->fb->obj;
Daniel Vetter4c0e5522014-02-14 16:35:54 +01008264 BUG_ON(!obj);
Chris Wilsond2dff872011-04-19 08:36:26 +01008265
Jesse Barnes8bcd4552014-02-07 12:10:38 -08008266 fb = &dev_priv->fbdev->fb->base;
Ville Syrjälä01f2c772011-12-20 00:06:49 +02008267 if (fb->pitches[0] < intel_framebuffer_pitch_for_width(mode->hdisplay,
8268 fb->bits_per_pixel))
Chris Wilsond2dff872011-04-19 08:36:26 +01008269 return NULL;
8270
Ville Syrjälä01f2c772011-12-20 00:06:49 +02008271 if (obj->base.size < mode->vdisplay * fb->pitches[0])
Chris Wilsond2dff872011-04-19 08:36:26 +01008272 return NULL;
8273
8274 return fb;
Daniel Vetter4520f532013-10-09 09:18:51 +02008275#else
8276 return NULL;
8277#endif
Chris Wilsond2dff872011-04-19 08:36:26 +01008278}
8279
Daniel Vetterd2434ab2012-08-12 21:20:10 +02008280bool intel_get_load_detect_pipe(struct drm_connector *connector,
Chris Wilson71731882011-04-19 23:10:58 +01008281 struct drm_display_mode *mode,
Chris Wilson8261b192011-04-19 23:18:09 +01008282 struct intel_load_detect_pipe *old)
Jesse Barnes79e53942008-11-07 14:24:08 -08008283{
8284 struct intel_crtc *intel_crtc;
Daniel Vetterd2434ab2012-08-12 21:20:10 +02008285 struct intel_encoder *intel_encoder =
8286 intel_attached_encoder(connector);
Jesse Barnes79e53942008-11-07 14:24:08 -08008287 struct drm_crtc *possible_crtc;
Chris Wilson4ef69c72010-09-09 15:14:28 +01008288 struct drm_encoder *encoder = &intel_encoder->base;
Jesse Barnes79e53942008-11-07 14:24:08 -08008289 struct drm_crtc *crtc = NULL;
8290 struct drm_device *dev = encoder->dev;
Daniel Vetter94352cf2012-07-05 22:51:56 +02008291 struct drm_framebuffer *fb;
Jesse Barnes79e53942008-11-07 14:24:08 -08008292 int i = -1;
8293
Chris Wilsond2dff872011-04-19 08:36:26 +01008294 DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
8295 connector->base.id, drm_get_connector_name(connector),
8296 encoder->base.id, drm_get_encoder_name(encoder));
8297
Jesse Barnes79e53942008-11-07 14:24:08 -08008298 /*
8299 * Algorithm gets a little messy:
Chris Wilson7a5e4802011-04-19 23:21:12 +01008300 *
Jesse Barnes79e53942008-11-07 14:24:08 -08008301 * - if the connector already has an assigned crtc, use it (but make
8302 * sure it's on first)
Chris Wilson7a5e4802011-04-19 23:21:12 +01008303 *
Jesse Barnes79e53942008-11-07 14:24:08 -08008304 * - try to find the first unused crtc that can drive this connector,
8305 * and use that if we find one
Jesse Barnes79e53942008-11-07 14:24:08 -08008306 */
8307
8308 /* See if we already have a CRTC for this connector */
8309 if (encoder->crtc) {
8310 crtc = encoder->crtc;
Chris Wilson8261b192011-04-19 23:18:09 +01008311
Daniel Vetter7b240562012-12-12 00:35:33 +01008312 mutex_lock(&crtc->mutex);
8313
Daniel Vetter24218aa2012-08-12 19:27:11 +02008314 old->dpms_mode = connector->dpms;
Chris Wilson8261b192011-04-19 23:18:09 +01008315 old->load_detect_temp = false;
8316
8317 /* Make sure the crtc and connector are running */
Daniel Vetter24218aa2012-08-12 19:27:11 +02008318 if (connector->dpms != DRM_MODE_DPMS_ON)
8319 connector->funcs->dpms(connector, DRM_MODE_DPMS_ON);
Chris Wilson8261b192011-04-19 23:18:09 +01008320
Chris Wilson71731882011-04-19 23:10:58 +01008321 return true;
Jesse Barnes79e53942008-11-07 14:24:08 -08008322 }
8323
8324 /* Find an unused one (if possible) */
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01008325 for_each_crtc(dev, possible_crtc) {
Jesse Barnes79e53942008-11-07 14:24:08 -08008326 i++;
8327 if (!(encoder->possible_crtcs & (1 << i)))
8328 continue;
8329 if (!possible_crtc->enabled) {
8330 crtc = possible_crtc;
8331 break;
8332 }
Jesse Barnes79e53942008-11-07 14:24:08 -08008333 }
8334
8335 /*
8336 * If we didn't find an unused CRTC, don't use any.
8337 */
8338 if (!crtc) {
Chris Wilson71731882011-04-19 23:10:58 +01008339 DRM_DEBUG_KMS("no pipe available for load-detect\n");
8340 return false;
Jesse Barnes79e53942008-11-07 14:24:08 -08008341 }
8342
Daniel Vetter7b240562012-12-12 00:35:33 +01008343 mutex_lock(&crtc->mutex);
Daniel Vetterfc303102012-07-09 10:40:58 +02008344 intel_encoder->new_crtc = to_intel_crtc(crtc);
8345 to_intel_connector(connector)->new_encoder = intel_encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08008346
8347 intel_crtc = to_intel_crtc(crtc);
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008348 intel_crtc->new_enabled = true;
8349 intel_crtc->new_config = &intel_crtc->config;
Daniel Vetter24218aa2012-08-12 19:27:11 +02008350 old->dpms_mode = connector->dpms;
Chris Wilson8261b192011-04-19 23:18:09 +01008351 old->load_detect_temp = true;
Chris Wilsond2dff872011-04-19 08:36:26 +01008352 old->release_fb = NULL;
Jesse Barnes79e53942008-11-07 14:24:08 -08008353
Chris Wilson64927112011-04-20 07:25:26 +01008354 if (!mode)
8355 mode = &load_detect_mode;
Jesse Barnes79e53942008-11-07 14:24:08 -08008356
Chris Wilsond2dff872011-04-19 08:36:26 +01008357 /* We need a framebuffer large enough to accommodate all accesses
8358 * that the plane may generate whilst we perform load detection.
8359 * We can not rely on the fbcon either being present (we get called
8360 * during its initialisation to detect all boot displays, or it may
8361 * not even exist) or that it is large enough to satisfy the
8362 * requested mode.
8363 */
Daniel Vetter94352cf2012-07-05 22:51:56 +02008364 fb = mode_fits_in_fbdev(dev, mode);
8365 if (fb == NULL) {
Chris Wilsond2dff872011-04-19 08:36:26 +01008366 DRM_DEBUG_KMS("creating tmp fb for load-detection\n");
Daniel Vetter94352cf2012-07-05 22:51:56 +02008367 fb = intel_framebuffer_create_for_mode(dev, mode, 24, 32);
8368 old->release_fb = fb;
Chris Wilsond2dff872011-04-19 08:36:26 +01008369 } else
8370 DRM_DEBUG_KMS("reusing fbdev for load-detection framebuffer\n");
Daniel Vetter94352cf2012-07-05 22:51:56 +02008371 if (IS_ERR(fb)) {
Chris Wilsond2dff872011-04-19 08:36:26 +01008372 DRM_DEBUG_KMS("failed to allocate framebuffer for load-detection\n");
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008373 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -08008374 }
Chris Wilsond2dff872011-04-19 08:36:26 +01008375
Chris Wilsonc0c36b942012-12-19 16:08:43 +00008376 if (intel_set_mode(crtc, mode, 0, 0, fb)) {
Chris Wilson64927112011-04-20 07:25:26 +01008377 DRM_DEBUG_KMS("failed to set mode on load-detect pipe\n");
Chris Wilsond2dff872011-04-19 08:36:26 +01008378 if (old->release_fb)
8379 old->release_fb->funcs->destroy(old->release_fb);
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008380 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -08008381 }
Chris Wilson71731882011-04-19 23:10:58 +01008382
Jesse Barnes79e53942008-11-07 14:24:08 -08008383 /* let the connector get through one full cycle before testing */
Jesse Barnes9d0498a2010-08-18 13:20:54 -07008384 intel_wait_for_vblank(dev, intel_crtc->pipe);
Chris Wilson71731882011-04-19 23:10:58 +01008385 return true;
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008386
8387 fail:
8388 intel_crtc->new_enabled = crtc->enabled;
8389 if (intel_crtc->new_enabled)
8390 intel_crtc->new_config = &intel_crtc->config;
8391 else
8392 intel_crtc->new_config = NULL;
8393 mutex_unlock(&crtc->mutex);
8394 return false;
Jesse Barnes79e53942008-11-07 14:24:08 -08008395}
8396
Daniel Vetterd2434ab2012-08-12 21:20:10 +02008397void intel_release_load_detect_pipe(struct drm_connector *connector,
Chris Wilson8261b192011-04-19 23:18:09 +01008398 struct intel_load_detect_pipe *old)
Jesse Barnes79e53942008-11-07 14:24:08 -08008399{
Daniel Vetterd2434ab2012-08-12 21:20:10 +02008400 struct intel_encoder *intel_encoder =
8401 intel_attached_encoder(connector);
Chris Wilson4ef69c72010-09-09 15:14:28 +01008402 struct drm_encoder *encoder = &intel_encoder->base;
Daniel Vetter7b240562012-12-12 00:35:33 +01008403 struct drm_crtc *crtc = encoder->crtc;
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008404 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08008405
Chris Wilsond2dff872011-04-19 08:36:26 +01008406 DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
8407 connector->base.id, drm_get_connector_name(connector),
8408 encoder->base.id, drm_get_encoder_name(encoder));
8409
Chris Wilson8261b192011-04-19 23:18:09 +01008410 if (old->load_detect_temp) {
Daniel Vetterfc303102012-07-09 10:40:58 +02008411 to_intel_connector(connector)->new_encoder = NULL;
8412 intel_encoder->new_crtc = NULL;
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008413 intel_crtc->new_enabled = false;
8414 intel_crtc->new_config = NULL;
Daniel Vetterfc303102012-07-09 10:40:58 +02008415 intel_set_mode(crtc, NULL, 0, 0, NULL);
Chris Wilsond2dff872011-04-19 08:36:26 +01008416
Daniel Vetter36206362012-12-10 20:42:17 +01008417 if (old->release_fb) {
8418 drm_framebuffer_unregister_private(old->release_fb);
8419 drm_framebuffer_unreference(old->release_fb);
8420 }
Chris Wilsond2dff872011-04-19 08:36:26 +01008421
Daniel Vetter67c96402013-01-23 16:25:09 +00008422 mutex_unlock(&crtc->mutex);
Chris Wilson0622a532011-04-21 09:32:11 +01008423 return;
Jesse Barnes79e53942008-11-07 14:24:08 -08008424 }
8425
Eric Anholtc751ce42010-03-25 11:48:48 -07008426 /* Switch crtc and encoder back off if necessary */
Daniel Vetter24218aa2012-08-12 19:27:11 +02008427 if (old->dpms_mode != DRM_MODE_DPMS_ON)
8428 connector->funcs->dpms(connector, old->dpms_mode);
Daniel Vetter7b240562012-12-12 00:35:33 +01008429
8430 mutex_unlock(&crtc->mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -08008431}
8432
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +03008433static int i9xx_pll_refclk(struct drm_device *dev,
8434 const struct intel_crtc_config *pipe_config)
8435{
8436 struct drm_i915_private *dev_priv = dev->dev_private;
8437 u32 dpll = pipe_config->dpll_hw_state.dpll;
8438
8439 if ((dpll & PLL_REF_INPUT_MASK) == PLLB_REF_INPUT_SPREADSPECTRUMIN)
Ville Syrjäläe91e9412013-12-09 18:54:16 +02008440 return dev_priv->vbt.lvds_ssc_freq;
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +03008441 else if (HAS_PCH_SPLIT(dev))
8442 return 120000;
8443 else if (!IS_GEN2(dev))
8444 return 96000;
8445 else
8446 return 48000;
8447}
8448
Jesse Barnes79e53942008-11-07 14:24:08 -08008449/* Returns the clock of the currently programmed mode of the given pipe. */
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008450static void i9xx_crtc_clock_get(struct intel_crtc *crtc,
8451 struct intel_crtc_config *pipe_config)
Jesse Barnes79e53942008-11-07 14:24:08 -08008452{
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008453 struct drm_device *dev = crtc->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08008454 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008455 int pipe = pipe_config->cpu_transcoder;
Ville Syrjälä293623f2013-09-13 16:18:46 +03008456 u32 dpll = pipe_config->dpll_hw_state.dpll;
Jesse Barnes79e53942008-11-07 14:24:08 -08008457 u32 fp;
8458 intel_clock_t clock;
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +03008459 int refclk = i9xx_pll_refclk(dev, pipe_config);
Jesse Barnes79e53942008-11-07 14:24:08 -08008460
8461 if ((dpll & DISPLAY_RATE_SELECT_FPA1) == 0)
Ville Syrjälä293623f2013-09-13 16:18:46 +03008462 fp = pipe_config->dpll_hw_state.fp0;
Jesse Barnes79e53942008-11-07 14:24:08 -08008463 else
Ville Syrjälä293623f2013-09-13 16:18:46 +03008464 fp = pipe_config->dpll_hw_state.fp1;
Jesse Barnes79e53942008-11-07 14:24:08 -08008465
8466 clock.m1 = (fp & FP_M1_DIV_MASK) >> FP_M1_DIV_SHIFT;
Adam Jacksonf2b115e2009-12-03 17:14:42 -05008467 if (IS_PINEVIEW(dev)) {
8468 clock.n = ffs((fp & FP_N_PINEVIEW_DIV_MASK) >> FP_N_DIV_SHIFT) - 1;
8469 clock.m2 = (fp & FP_M2_PINEVIEW_DIV_MASK) >> FP_M2_DIV_SHIFT;
Shaohua Li21778322009-02-23 15:19:16 +08008470 } else {
8471 clock.n = (fp & FP_N_DIV_MASK) >> FP_N_DIV_SHIFT;
8472 clock.m2 = (fp & FP_M2_DIV_MASK) >> FP_M2_DIV_SHIFT;
8473 }
8474
Chris Wilsona6c45cf2010-09-17 00:32:17 +01008475 if (!IS_GEN2(dev)) {
Adam Jacksonf2b115e2009-12-03 17:14:42 -05008476 if (IS_PINEVIEW(dev))
8477 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_PINEVIEW) >>
8478 DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW);
Shaohua Li21778322009-02-23 15:19:16 +08008479 else
8480 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK) >>
Jesse Barnes79e53942008-11-07 14:24:08 -08008481 DPLL_FPA01_P1_POST_DIV_SHIFT);
8482
8483 switch (dpll & DPLL_MODE_MASK) {
8484 case DPLLB_MODE_DAC_SERIAL:
8485 clock.p2 = dpll & DPLL_DAC_SERIAL_P2_CLOCK_DIV_5 ?
8486 5 : 10;
8487 break;
8488 case DPLLB_MODE_LVDS:
8489 clock.p2 = dpll & DPLLB_LVDS_P2_CLOCK_DIV_7 ?
8490 7 : 14;
8491 break;
8492 default:
Zhao Yakui28c97732009-10-09 11:39:41 +08008493 DRM_DEBUG_KMS("Unknown DPLL mode %08x in programmed "
Jesse Barnes79e53942008-11-07 14:24:08 -08008494 "mode\n", (int)(dpll & DPLL_MODE_MASK));
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008495 return;
Jesse Barnes79e53942008-11-07 14:24:08 -08008496 }
8497
Daniel Vetterac58c3f2013-06-01 17:16:17 +02008498 if (IS_PINEVIEW(dev))
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +03008499 pineview_clock(refclk, &clock);
Daniel Vetterac58c3f2013-06-01 17:16:17 +02008500 else
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +03008501 i9xx_clock(refclk, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08008502 } else {
Ville Syrjälä0fb58222014-01-10 14:06:46 +02008503 u32 lvds = IS_I830(dev) ? 0 : I915_READ(LVDS);
Ville Syrjäläb1c560d2013-12-09 18:54:13 +02008504 bool is_lvds = (pipe == 1) && (lvds & LVDS_PORT_EN);
Jesse Barnes79e53942008-11-07 14:24:08 -08008505
8506 if (is_lvds) {
8507 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830_LVDS) >>
8508 DPLL_FPA01_P1_POST_DIV_SHIFT);
Ville Syrjäläb1c560d2013-12-09 18:54:13 +02008509
8510 if (lvds & LVDS_CLKB_POWER_UP)
8511 clock.p2 = 7;
8512 else
8513 clock.p2 = 14;
Jesse Barnes79e53942008-11-07 14:24:08 -08008514 } else {
8515 if (dpll & PLL_P1_DIVIDE_BY_TWO)
8516 clock.p1 = 2;
8517 else {
8518 clock.p1 = ((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830) >>
8519 DPLL_FPA01_P1_POST_DIV_SHIFT) + 2;
8520 }
8521 if (dpll & PLL_P2_DIVIDE_BY_4)
8522 clock.p2 = 4;
8523 else
8524 clock.p2 = 2;
Jesse Barnes79e53942008-11-07 14:24:08 -08008525 }
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +03008526
8527 i9xx_clock(refclk, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08008528 }
8529
Ville Syrjälä18442d02013-09-13 16:00:08 +03008530 /*
8531 * This value includes pixel_multiplier. We will use
Damien Lespiau241bfc32013-09-25 16:45:37 +01008532 * port_clock to compute adjusted_mode.crtc_clock in the
Ville Syrjälä18442d02013-09-13 16:00:08 +03008533 * encoder's get_config() function.
8534 */
8535 pipe_config->port_clock = clock.dot;
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008536}
8537
Ville Syrjälä6878da02013-09-13 15:59:11 +03008538int intel_dotclock_calculate(int link_freq,
8539 const struct intel_link_m_n *m_n)
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008540{
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008541 /*
8542 * The calculation for the data clock is:
Ville Syrjälä1041a022013-09-06 23:28:58 +03008543 * pixel_clock = ((m/n)*(link_clock * nr_lanes))/bpp
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008544 * But we want to avoid losing precison if possible, so:
Ville Syrjälä1041a022013-09-06 23:28:58 +03008545 * pixel_clock = ((m * link_clock * nr_lanes)/(n*bpp))
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008546 *
8547 * and the link clock is simpler:
Ville Syrjälä1041a022013-09-06 23:28:58 +03008548 * link_clock = (m * link_clock) / n
Jesse Barnes79e53942008-11-07 14:24:08 -08008549 */
8550
Ville Syrjälä6878da02013-09-13 15:59:11 +03008551 if (!m_n->link_n)
8552 return 0;
8553
8554 return div_u64((u64)m_n->link_m * link_freq, m_n->link_n);
8555}
8556
Ville Syrjälä18442d02013-09-13 16:00:08 +03008557static void ironlake_pch_clock_get(struct intel_crtc *crtc,
8558 struct intel_crtc_config *pipe_config)
Ville Syrjälä6878da02013-09-13 15:59:11 +03008559{
8560 struct drm_device *dev = crtc->base.dev;
Ville Syrjälä18442d02013-09-13 16:00:08 +03008561
8562 /* read out port_clock from the DPLL */
8563 i9xx_crtc_clock_get(crtc, pipe_config);
Ville Syrjälä6878da02013-09-13 15:59:11 +03008564
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008565 /*
Ville Syrjälä18442d02013-09-13 16:00:08 +03008566 * This value does not include pixel_multiplier.
Damien Lespiau241bfc32013-09-25 16:45:37 +01008567 * We will check that port_clock and adjusted_mode.crtc_clock
Ville Syrjälä18442d02013-09-13 16:00:08 +03008568 * agree once we know their relationship in the encoder's
8569 * get_config() function.
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008570 */
Damien Lespiau241bfc32013-09-25 16:45:37 +01008571 pipe_config->adjusted_mode.crtc_clock =
Ville Syrjälä18442d02013-09-13 16:00:08 +03008572 intel_dotclock_calculate(intel_fdi_link_freq(dev) * 10000,
8573 &pipe_config->fdi_m_n);
Jesse Barnes79e53942008-11-07 14:24:08 -08008574}
8575
8576/** Returns the currently programmed mode of the given pipe. */
8577struct drm_display_mode *intel_crtc_mode_get(struct drm_device *dev,
8578 struct drm_crtc *crtc)
8579{
Jesse Barnes548f2452011-02-17 10:40:53 -08008580 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -08008581 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter3b117c82013-04-17 20:15:07 +02008582 enum transcoder cpu_transcoder = intel_crtc->config.cpu_transcoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08008583 struct drm_display_mode *mode;
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008584 struct intel_crtc_config pipe_config;
Paulo Zanonife2b8f92012-10-23 18:30:02 -02008585 int htot = I915_READ(HTOTAL(cpu_transcoder));
8586 int hsync = I915_READ(HSYNC(cpu_transcoder));
8587 int vtot = I915_READ(VTOTAL(cpu_transcoder));
8588 int vsync = I915_READ(VSYNC(cpu_transcoder));
Ville Syrjälä293623f2013-09-13 16:18:46 +03008589 enum pipe pipe = intel_crtc->pipe;
Jesse Barnes79e53942008-11-07 14:24:08 -08008590
8591 mode = kzalloc(sizeof(*mode), GFP_KERNEL);
8592 if (!mode)
8593 return NULL;
8594
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008595 /*
8596 * Construct a pipe_config sufficient for getting the clock info
8597 * back out of crtc_clock_get.
8598 *
8599 * Note, if LVDS ever uses a non-1 pixel multiplier, we'll need
8600 * to use a real value here instead.
8601 */
Ville Syrjälä293623f2013-09-13 16:18:46 +03008602 pipe_config.cpu_transcoder = (enum transcoder) pipe;
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008603 pipe_config.pixel_multiplier = 1;
Ville Syrjälä293623f2013-09-13 16:18:46 +03008604 pipe_config.dpll_hw_state.dpll = I915_READ(DPLL(pipe));
8605 pipe_config.dpll_hw_state.fp0 = I915_READ(FP0(pipe));
8606 pipe_config.dpll_hw_state.fp1 = I915_READ(FP1(pipe));
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008607 i9xx_crtc_clock_get(intel_crtc, &pipe_config);
8608
Ville Syrjälä773ae032013-09-23 17:48:20 +03008609 mode->clock = pipe_config.port_clock / pipe_config.pixel_multiplier;
Jesse Barnes79e53942008-11-07 14:24:08 -08008610 mode->hdisplay = (htot & 0xffff) + 1;
8611 mode->htotal = ((htot & 0xffff0000) >> 16) + 1;
8612 mode->hsync_start = (hsync & 0xffff) + 1;
8613 mode->hsync_end = ((hsync & 0xffff0000) >> 16) + 1;
8614 mode->vdisplay = (vtot & 0xffff) + 1;
8615 mode->vtotal = ((vtot & 0xffff0000) >> 16) + 1;
8616 mode->vsync_start = (vsync & 0xffff) + 1;
8617 mode->vsync_end = ((vsync & 0xffff0000) >> 16) + 1;
8618
8619 drm_mode_set_name(mode);
Jesse Barnes79e53942008-11-07 14:24:08 -08008620
8621 return mode;
8622}
8623
Daniel Vetter3dec0092010-08-20 21:40:52 +02008624static void intel_increase_pllclock(struct drm_crtc *crtc)
Jesse Barnes652c3932009-08-17 13:31:43 -07008625{
8626 struct drm_device *dev = crtc->dev;
Jani Nikulafbee40d2014-03-31 14:27:18 +03008627 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes652c3932009-08-17 13:31:43 -07008628 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
8629 int pipe = intel_crtc->pipe;
Jesse Barnesdbdc6472010-12-30 09:36:39 -08008630 int dpll_reg = DPLL(pipe);
8631 int dpll;
Jesse Barnes652c3932009-08-17 13:31:43 -07008632
Eric Anholtbad720f2009-10-22 16:11:14 -07008633 if (HAS_PCH_SPLIT(dev))
Jesse Barnes652c3932009-08-17 13:31:43 -07008634 return;
8635
8636 if (!dev_priv->lvds_downclock_avail)
8637 return;
8638
Jesse Barnesdbdc6472010-12-30 09:36:39 -08008639 dpll = I915_READ(dpll_reg);
Jesse Barnes652c3932009-08-17 13:31:43 -07008640 if (!HAS_PIPE_CXSR(dev) && (dpll & DISPLAY_RATE_SELECT_FPA1)) {
Zhao Yakui44d98a62009-10-09 11:39:40 +08008641 DRM_DEBUG_DRIVER("upclocking LVDS\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07008642
Sean Paul8ac5a6d2012-02-13 13:14:51 -05008643 assert_panel_unlocked(dev_priv, pipe);
Jesse Barnes652c3932009-08-17 13:31:43 -07008644
8645 dpll &= ~DISPLAY_RATE_SELECT_FPA1;
8646 I915_WRITE(dpll_reg, dpll);
Jesse Barnes9d0498a2010-08-18 13:20:54 -07008647 intel_wait_for_vblank(dev, pipe);
Jesse Barnesdbdc6472010-12-30 09:36:39 -08008648
Jesse Barnes652c3932009-08-17 13:31:43 -07008649 dpll = I915_READ(dpll_reg);
8650 if (dpll & DISPLAY_RATE_SELECT_FPA1)
Zhao Yakui44d98a62009-10-09 11:39:40 +08008651 DRM_DEBUG_DRIVER("failed to upclock LVDS!\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07008652 }
Jesse Barnes652c3932009-08-17 13:31:43 -07008653}
8654
8655static void intel_decrease_pllclock(struct drm_crtc *crtc)
8656{
8657 struct drm_device *dev = crtc->dev;
Jani Nikulafbee40d2014-03-31 14:27:18 +03008658 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes652c3932009-08-17 13:31:43 -07008659 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes652c3932009-08-17 13:31:43 -07008660
Eric Anholtbad720f2009-10-22 16:11:14 -07008661 if (HAS_PCH_SPLIT(dev))
Jesse Barnes652c3932009-08-17 13:31:43 -07008662 return;
8663
8664 if (!dev_priv->lvds_downclock_avail)
8665 return;
8666
8667 /*
8668 * Since this is called by a timer, we should never get here in
8669 * the manual case.
8670 */
8671 if (!HAS_PIPE_CXSR(dev) && intel_crtc->lowfreq_avail) {
Chris Wilson074b5e12012-05-02 12:07:06 +01008672 int pipe = intel_crtc->pipe;
8673 int dpll_reg = DPLL(pipe);
Daniel Vetterdc257cf2012-05-07 11:30:46 +02008674 int dpll;
Chris Wilson074b5e12012-05-02 12:07:06 +01008675
Zhao Yakui44d98a62009-10-09 11:39:40 +08008676 DRM_DEBUG_DRIVER("downclocking LVDS\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07008677
Sean Paul8ac5a6d2012-02-13 13:14:51 -05008678 assert_panel_unlocked(dev_priv, pipe);
Jesse Barnes652c3932009-08-17 13:31:43 -07008679
Chris Wilson074b5e12012-05-02 12:07:06 +01008680 dpll = I915_READ(dpll_reg);
Jesse Barnes652c3932009-08-17 13:31:43 -07008681 dpll |= DISPLAY_RATE_SELECT_FPA1;
8682 I915_WRITE(dpll_reg, dpll);
Jesse Barnes9d0498a2010-08-18 13:20:54 -07008683 intel_wait_for_vblank(dev, pipe);
Jesse Barnes652c3932009-08-17 13:31:43 -07008684 dpll = I915_READ(dpll_reg);
8685 if (!(dpll & DISPLAY_RATE_SELECT_FPA1))
Zhao Yakui44d98a62009-10-09 11:39:40 +08008686 DRM_DEBUG_DRIVER("failed to downclock LVDS!\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07008687 }
8688
8689}
8690
Chris Wilsonf047e392012-07-21 12:31:41 +01008691void intel_mark_busy(struct drm_device *dev)
Jesse Barnes652c3932009-08-17 13:31:43 -07008692{
Paulo Zanonic67a4702013-08-19 13:18:09 -03008693 struct drm_i915_private *dev_priv = dev->dev_private;
8694
Chris Wilsonf62a0072014-02-21 17:55:39 +00008695 if (dev_priv->mm.busy)
8696 return;
8697
Paulo Zanoni43694d62014-03-07 20:08:08 -03008698 intel_runtime_pm_get(dev_priv);
Paulo Zanonic67a4702013-08-19 13:18:09 -03008699 i915_update_gfx_val(dev_priv);
Chris Wilsonf62a0072014-02-21 17:55:39 +00008700 dev_priv->mm.busy = true;
Chris Wilsonf047e392012-07-21 12:31:41 +01008701}
8702
8703void intel_mark_idle(struct drm_device *dev)
8704{
Paulo Zanonic67a4702013-08-19 13:18:09 -03008705 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson725a5b52013-01-08 11:02:57 +00008706 struct drm_crtc *crtc;
8707
Chris Wilsonf62a0072014-02-21 17:55:39 +00008708 if (!dev_priv->mm.busy)
8709 return;
8710
8711 dev_priv->mm.busy = false;
8712
Jani Nikulad330a952014-01-21 11:24:25 +02008713 if (!i915.powersave)
Paulo Zanonibb4cdd52014-02-21 13:52:19 -03008714 goto out;
Chris Wilson725a5b52013-01-08 11:02:57 +00008715
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01008716 for_each_crtc(dev, crtc) {
Matt Roperf4510a22014-04-01 15:22:40 -07008717 if (!crtc->primary->fb)
Chris Wilson725a5b52013-01-08 11:02:57 +00008718 continue;
8719
8720 intel_decrease_pllclock(crtc);
8721 }
Chris Wilsonb29c19b2013-09-25 17:34:56 +01008722
Damien Lespiau3d13ef22014-02-07 19:12:47 +00008723 if (INTEL_INFO(dev)->gen >= 6)
Chris Wilsonb29c19b2013-09-25 17:34:56 +01008724 gen6_rps_idle(dev->dev_private);
Paulo Zanonibb4cdd52014-02-21 13:52:19 -03008725
8726out:
Paulo Zanoni43694d62014-03-07 20:08:08 -03008727 intel_runtime_pm_put(dev_priv);
Chris Wilsonf047e392012-07-21 12:31:41 +01008728}
8729
Chris Wilsonc65355b2013-06-06 16:53:41 -03008730void intel_mark_fb_busy(struct drm_i915_gem_object *obj,
8731 struct intel_ring_buffer *ring)
Chris Wilsonf047e392012-07-21 12:31:41 +01008732{
8733 struct drm_device *dev = obj->base.dev;
Jesse Barnes652c3932009-08-17 13:31:43 -07008734 struct drm_crtc *crtc;
Jesse Barnes652c3932009-08-17 13:31:43 -07008735
Jani Nikulad330a952014-01-21 11:24:25 +02008736 if (!i915.powersave)
Jesse Barnes652c3932009-08-17 13:31:43 -07008737 return;
8738
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01008739 for_each_crtc(dev, crtc) {
Matt Roperf4510a22014-04-01 15:22:40 -07008740 if (!crtc->primary->fb)
Jesse Barnes652c3932009-08-17 13:31:43 -07008741 continue;
8742
Matt Roperf4510a22014-04-01 15:22:40 -07008743 if (to_intel_framebuffer(crtc->primary->fb)->obj != obj)
Chris Wilsonc65355b2013-06-06 16:53:41 -03008744 continue;
8745
8746 intel_increase_pllclock(crtc);
8747 if (ring && intel_fbc_enabled(dev))
8748 ring->fbc_dirty = true;
Jesse Barnes652c3932009-08-17 13:31:43 -07008749 }
Jesse Barnes652c3932009-08-17 13:31:43 -07008750}
8751
Jesse Barnes79e53942008-11-07 14:24:08 -08008752static void intel_crtc_destroy(struct drm_crtc *crtc)
8753{
8754 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter67e77c52010-08-20 22:26:30 +02008755 struct drm_device *dev = crtc->dev;
8756 struct intel_unpin_work *work;
8757 unsigned long flags;
8758
8759 spin_lock_irqsave(&dev->event_lock, flags);
8760 work = intel_crtc->unpin_work;
8761 intel_crtc->unpin_work = NULL;
8762 spin_unlock_irqrestore(&dev->event_lock, flags);
8763
8764 if (work) {
8765 cancel_work_sync(&work->work);
8766 kfree(work);
8767 }
Jesse Barnes79e53942008-11-07 14:24:08 -08008768
Mika Kuoppala40ccc722013-04-23 17:27:08 +03008769 intel_crtc_cursor_set(crtc, NULL, 0, 0, 0);
8770
Jesse Barnes79e53942008-11-07 14:24:08 -08008771 drm_crtc_cleanup(crtc);
Daniel Vetter67e77c52010-08-20 22:26:30 +02008772
Jesse Barnes79e53942008-11-07 14:24:08 -08008773 kfree(intel_crtc);
8774}
8775
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008776static void intel_unpin_work_fn(struct work_struct *__work)
8777{
8778 struct intel_unpin_work *work =
8779 container_of(__work, struct intel_unpin_work, work);
Chris Wilsonb4a98e52012-11-01 09:26:26 +00008780 struct drm_device *dev = work->crtc->dev;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008781
Chris Wilsonb4a98e52012-11-01 09:26:26 +00008782 mutex_lock(&dev->struct_mutex);
Chris Wilson1690e1e2011-12-14 13:57:08 +01008783 intel_unpin_fb_obj(work->old_fb_obj);
Chris Wilson05394f32010-11-08 19:18:58 +00008784 drm_gem_object_unreference(&work->pending_flip_obj->base);
8785 drm_gem_object_unreference(&work->old_fb_obj->base);
Chris Wilsond9e86c02010-11-10 16:40:20 +00008786
Chris Wilsonb4a98e52012-11-01 09:26:26 +00008787 intel_update_fbc(dev);
8788 mutex_unlock(&dev->struct_mutex);
8789
8790 BUG_ON(atomic_read(&to_intel_crtc(work->crtc)->unpin_work_count) == 0);
8791 atomic_dec(&to_intel_crtc(work->crtc)->unpin_work_count);
8792
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008793 kfree(work);
8794}
8795
Jesse Barnes1afe3e92010-03-26 10:35:20 -07008796static void do_intel_finish_page_flip(struct drm_device *dev,
Mario Kleiner49b14a52010-12-09 07:00:07 +01008797 struct drm_crtc *crtc)
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008798{
Jani Nikulafbee40d2014-03-31 14:27:18 +03008799 struct drm_i915_private *dev_priv = dev->dev_private;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008800 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
8801 struct intel_unpin_work *work;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008802 unsigned long flags;
8803
8804 /* Ignore early vblank irqs */
8805 if (intel_crtc == NULL)
8806 return;
8807
8808 spin_lock_irqsave(&dev->event_lock, flags);
8809 work = intel_crtc->unpin_work;
Chris Wilsone7d841c2012-12-03 11:36:30 +00008810
8811 /* Ensure we don't miss a work->pending update ... */
8812 smp_rmb();
8813
8814 if (work == NULL || atomic_read(&work->pending) < INTEL_FLIP_COMPLETE) {
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008815 spin_unlock_irqrestore(&dev->event_lock, flags);
8816 return;
8817 }
8818
Chris Wilsone7d841c2012-12-03 11:36:30 +00008819 /* and that the unpin work is consistent wrt ->pending. */
8820 smp_rmb();
8821
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008822 intel_crtc->unpin_work = NULL;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008823
Rob Clark45a066e2012-10-08 14:50:40 -05008824 if (work->event)
8825 drm_send_vblank_event(dev, intel_crtc->pipe, work->event);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008826
Mario Kleiner0af7e4d2010-12-08 04:07:19 +01008827 drm_vblank_put(dev, intel_crtc->pipe);
8828
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008829 spin_unlock_irqrestore(&dev->event_lock, flags);
8830
Daniel Vetter2c10d572012-12-20 21:24:07 +01008831 wake_up_all(&dev_priv->pending_flip_queue);
Chris Wilsonb4a98e52012-11-01 09:26:26 +00008832
8833 queue_work(dev_priv->wq, &work->work);
Jesse Barnese5510fa2010-07-01 16:48:37 -07008834
8835 trace_i915_flip_complete(intel_crtc->plane, work->pending_flip_obj);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008836}
8837
Jesse Barnes1afe3e92010-03-26 10:35:20 -07008838void intel_finish_page_flip(struct drm_device *dev, int pipe)
8839{
Jani Nikulafbee40d2014-03-31 14:27:18 +03008840 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes1afe3e92010-03-26 10:35:20 -07008841 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
8842
Mario Kleiner49b14a52010-12-09 07:00:07 +01008843 do_intel_finish_page_flip(dev, crtc);
Jesse Barnes1afe3e92010-03-26 10:35:20 -07008844}
8845
8846void intel_finish_page_flip_plane(struct drm_device *dev, int plane)
8847{
Jani Nikulafbee40d2014-03-31 14:27:18 +03008848 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes1afe3e92010-03-26 10:35:20 -07008849 struct drm_crtc *crtc = dev_priv->plane_to_crtc_mapping[plane];
8850
Mario Kleiner49b14a52010-12-09 07:00:07 +01008851 do_intel_finish_page_flip(dev, crtc);
Jesse Barnes1afe3e92010-03-26 10:35:20 -07008852}
8853
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008854void intel_prepare_page_flip(struct drm_device *dev, int plane)
8855{
Jani Nikulafbee40d2014-03-31 14:27:18 +03008856 struct drm_i915_private *dev_priv = dev->dev_private;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008857 struct intel_crtc *intel_crtc =
8858 to_intel_crtc(dev_priv->plane_to_crtc_mapping[plane]);
8859 unsigned long flags;
8860
Chris Wilsone7d841c2012-12-03 11:36:30 +00008861 /* NB: An MMIO update of the plane base pointer will also
8862 * generate a page-flip completion irq, i.e. every modeset
8863 * is also accompanied by a spurious intel_prepare_page_flip().
8864 */
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008865 spin_lock_irqsave(&dev->event_lock, flags);
Chris Wilsone7d841c2012-12-03 11:36:30 +00008866 if (intel_crtc->unpin_work)
8867 atomic_inc_not_zero(&intel_crtc->unpin_work->pending);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008868 spin_unlock_irqrestore(&dev->event_lock, flags);
8869}
8870
Robin Schroereba905b2014-05-18 02:24:50 +02008871static inline void intel_mark_page_flip_active(struct intel_crtc *intel_crtc)
Chris Wilsone7d841c2012-12-03 11:36:30 +00008872{
8873 /* Ensure that the work item is consistent when activating it ... */
8874 smp_wmb();
8875 atomic_set(&intel_crtc->unpin_work->pending, INTEL_FLIP_PENDING);
8876 /* and that it is marked active as soon as the irq could fire. */
8877 smp_wmb();
8878}
8879
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008880static int intel_gen2_queue_flip(struct drm_device *dev,
8881 struct drm_crtc *crtc,
8882 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07008883 struct drm_i915_gem_object *obj,
8884 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008885{
8886 struct drm_i915_private *dev_priv = dev->dev_private;
8887 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008888 u32 flip_mask;
Daniel Vetter6d90c952012-04-26 23:28:05 +02008889 struct intel_ring_buffer *ring = &dev_priv->ring[RCS];
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008890 int ret;
8891
Daniel Vetter6d90c952012-04-26 23:28:05 +02008892 ret = intel_pin_and_fence_fb_obj(dev, obj, ring);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008893 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01008894 goto err;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008895
Daniel Vetter6d90c952012-04-26 23:28:05 +02008896 ret = intel_ring_begin(ring, 6);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008897 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01008898 goto err_unpin;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008899
8900 /* Can't queue multiple flips, so wait for the previous
8901 * one to finish before executing the next.
8902 */
8903 if (intel_crtc->plane)
8904 flip_mask = MI_WAIT_FOR_PLANE_B_FLIP;
8905 else
8906 flip_mask = MI_WAIT_FOR_PLANE_A_FLIP;
Daniel Vetter6d90c952012-04-26 23:28:05 +02008907 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | flip_mask);
8908 intel_ring_emit(ring, MI_NOOP);
8909 intel_ring_emit(ring, MI_DISPLAY_FLIP |
8910 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
8911 intel_ring_emit(ring, fb->pitches[0]);
Ben Widawskyf343c5f2013-07-05 14:41:04 -07008912 intel_ring_emit(ring, i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset);
Daniel Vetter6d90c952012-04-26 23:28:05 +02008913 intel_ring_emit(ring, 0); /* aux display base address, unused */
Chris Wilsone7d841c2012-12-03 11:36:30 +00008914
8915 intel_mark_page_flip_active(intel_crtc);
Chris Wilson09246732013-08-10 22:16:32 +01008916 __intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01008917 return 0;
8918
8919err_unpin:
8920 intel_unpin_fb_obj(obj);
8921err:
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008922 return ret;
8923}
8924
8925static int intel_gen3_queue_flip(struct drm_device *dev,
8926 struct drm_crtc *crtc,
8927 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07008928 struct drm_i915_gem_object *obj,
8929 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008930{
8931 struct drm_i915_private *dev_priv = dev->dev_private;
8932 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008933 u32 flip_mask;
Daniel Vetter6d90c952012-04-26 23:28:05 +02008934 struct intel_ring_buffer *ring = &dev_priv->ring[RCS];
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008935 int ret;
8936
Daniel Vetter6d90c952012-04-26 23:28:05 +02008937 ret = intel_pin_and_fence_fb_obj(dev, obj, ring);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008938 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01008939 goto err;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008940
Daniel Vetter6d90c952012-04-26 23:28:05 +02008941 ret = intel_ring_begin(ring, 6);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008942 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01008943 goto err_unpin;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008944
8945 if (intel_crtc->plane)
8946 flip_mask = MI_WAIT_FOR_PLANE_B_FLIP;
8947 else
8948 flip_mask = MI_WAIT_FOR_PLANE_A_FLIP;
Daniel Vetter6d90c952012-04-26 23:28:05 +02008949 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | flip_mask);
8950 intel_ring_emit(ring, MI_NOOP);
8951 intel_ring_emit(ring, MI_DISPLAY_FLIP_I915 |
8952 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
8953 intel_ring_emit(ring, fb->pitches[0]);
Ben Widawskyf343c5f2013-07-05 14:41:04 -07008954 intel_ring_emit(ring, i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset);
Daniel Vetter6d90c952012-04-26 23:28:05 +02008955 intel_ring_emit(ring, MI_NOOP);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008956
Chris Wilsone7d841c2012-12-03 11:36:30 +00008957 intel_mark_page_flip_active(intel_crtc);
Chris Wilson09246732013-08-10 22:16:32 +01008958 __intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01008959 return 0;
8960
8961err_unpin:
8962 intel_unpin_fb_obj(obj);
8963err:
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008964 return ret;
8965}
8966
8967static int intel_gen4_queue_flip(struct drm_device *dev,
8968 struct drm_crtc *crtc,
8969 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07008970 struct drm_i915_gem_object *obj,
8971 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008972{
8973 struct drm_i915_private *dev_priv = dev->dev_private;
8974 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
8975 uint32_t pf, pipesrc;
Daniel Vetter6d90c952012-04-26 23:28:05 +02008976 struct intel_ring_buffer *ring = &dev_priv->ring[RCS];
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008977 int ret;
8978
Daniel Vetter6d90c952012-04-26 23:28:05 +02008979 ret = intel_pin_and_fence_fb_obj(dev, obj, ring);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008980 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01008981 goto err;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008982
Daniel Vetter6d90c952012-04-26 23:28:05 +02008983 ret = intel_ring_begin(ring, 4);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008984 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01008985 goto err_unpin;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008986
8987 /* i965+ uses the linear or tiled offsets from the
8988 * Display Registers (which do not change across a page-flip)
8989 * so we need only reprogram the base address.
8990 */
Daniel Vetter6d90c952012-04-26 23:28:05 +02008991 intel_ring_emit(ring, MI_DISPLAY_FLIP |
8992 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
8993 intel_ring_emit(ring, fb->pitches[0]);
Daniel Vetterc2c75132012-07-05 12:17:30 +02008994 intel_ring_emit(ring,
Ben Widawskyf343c5f2013-07-05 14:41:04 -07008995 (i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset) |
Daniel Vetterc2c75132012-07-05 12:17:30 +02008996 obj->tiling_mode);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008997
8998 /* XXX Enabling the panel-fitter across page-flip is so far
8999 * untested on non-native modes, so ignore it for now.
9000 * pf = I915_READ(pipe == 0 ? PFA_CTL_1 : PFB_CTL_1) & PF_ENABLE;
9001 */
9002 pf = 0;
9003 pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff;
Daniel Vetter6d90c952012-04-26 23:28:05 +02009004 intel_ring_emit(ring, pf | pipesrc);
Chris Wilsone7d841c2012-12-03 11:36:30 +00009005
9006 intel_mark_page_flip_active(intel_crtc);
Chris Wilson09246732013-08-10 22:16:32 +01009007 __intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01009008 return 0;
9009
9010err_unpin:
9011 intel_unpin_fb_obj(obj);
9012err:
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009013 return ret;
9014}
9015
9016static int intel_gen6_queue_flip(struct drm_device *dev,
9017 struct drm_crtc *crtc,
9018 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07009019 struct drm_i915_gem_object *obj,
9020 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009021{
9022 struct drm_i915_private *dev_priv = dev->dev_private;
9023 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter6d90c952012-04-26 23:28:05 +02009024 struct intel_ring_buffer *ring = &dev_priv->ring[RCS];
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009025 uint32_t pf, pipesrc;
9026 int ret;
9027
Daniel Vetter6d90c952012-04-26 23:28:05 +02009028 ret = intel_pin_and_fence_fb_obj(dev, obj, ring);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009029 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01009030 goto err;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009031
Daniel Vetter6d90c952012-04-26 23:28:05 +02009032 ret = intel_ring_begin(ring, 4);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009033 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01009034 goto err_unpin;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009035
Daniel Vetter6d90c952012-04-26 23:28:05 +02009036 intel_ring_emit(ring, MI_DISPLAY_FLIP |
9037 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
9038 intel_ring_emit(ring, fb->pitches[0] | obj->tiling_mode);
Ben Widawskyf343c5f2013-07-05 14:41:04 -07009039 intel_ring_emit(ring, i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009040
Chris Wilson99d9acd2012-04-17 20:37:00 +01009041 /* Contrary to the suggestions in the documentation,
9042 * "Enable Panel Fitter" does not seem to be required when page
9043 * flipping with a non-native mode, and worse causes a normal
9044 * modeset to fail.
9045 * pf = I915_READ(PF_CTL(intel_crtc->pipe)) & PF_ENABLE;
9046 */
9047 pf = 0;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009048 pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff;
Daniel Vetter6d90c952012-04-26 23:28:05 +02009049 intel_ring_emit(ring, pf | pipesrc);
Chris Wilsone7d841c2012-12-03 11:36:30 +00009050
9051 intel_mark_page_flip_active(intel_crtc);
Chris Wilson09246732013-08-10 22:16:32 +01009052 __intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01009053 return 0;
9054
9055err_unpin:
9056 intel_unpin_fb_obj(obj);
9057err:
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009058 return ret;
9059}
9060
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009061static int intel_gen7_queue_flip(struct drm_device *dev,
9062 struct drm_crtc *crtc,
9063 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07009064 struct drm_i915_gem_object *obj,
9065 uint32_t flags)
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009066{
9067 struct drm_i915_private *dev_priv = dev->dev_private;
9068 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Chris Wilsonffe74d72013-08-26 20:58:12 +01009069 struct intel_ring_buffer *ring;
Daniel Vettercb05d8d2012-05-23 14:02:00 +02009070 uint32_t plane_bit = 0;
Chris Wilsonffe74d72013-08-26 20:58:12 +01009071 int len, ret;
9072
9073 ring = obj->ring;
Chris Wilson1c5fd082013-09-04 10:54:30 +01009074 if (IS_VALLEYVIEW(dev) || ring == NULL || ring->id != RCS)
Chris Wilsonffe74d72013-08-26 20:58:12 +01009075 ring = &dev_priv->ring[BCS];
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009076
9077 ret = intel_pin_and_fence_fb_obj(dev, obj, ring);
9078 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01009079 goto err;
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009080
Robin Schroereba905b2014-05-18 02:24:50 +02009081 switch (intel_crtc->plane) {
Daniel Vettercb05d8d2012-05-23 14:02:00 +02009082 case PLANE_A:
9083 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_A;
9084 break;
9085 case PLANE_B:
9086 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_B;
9087 break;
9088 case PLANE_C:
9089 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_C;
9090 break;
9091 default:
9092 WARN_ONCE(1, "unknown plane in flip command\n");
9093 ret = -ENODEV;
Eugeni Dodonovab3951e2012-06-18 19:03:38 -03009094 goto err_unpin;
Daniel Vettercb05d8d2012-05-23 14:02:00 +02009095 }
9096
Chris Wilsonffe74d72013-08-26 20:58:12 +01009097 len = 4;
Damien Lespiauf4768282014-04-07 20:24:34 +01009098 if (ring->id == RCS) {
Chris Wilsonffe74d72013-08-26 20:58:12 +01009099 len += 6;
Damien Lespiauf4768282014-04-07 20:24:34 +01009100 /*
9101 * On Gen 8, SRM is now taking an extra dword to accommodate
9102 * 48bits addresses, and we need a NOOP for the batch size to
9103 * stay even.
9104 */
9105 if (IS_GEN8(dev))
9106 len += 2;
9107 }
Chris Wilsonffe74d72013-08-26 20:58:12 +01009108
Ville Syrjäläf66fab82014-02-11 19:52:06 +02009109 /*
9110 * BSpec MI_DISPLAY_FLIP for IVB:
9111 * "The full packet must be contained within the same cache line."
9112 *
9113 * Currently the LRI+SRM+MI_DISPLAY_FLIP all fit within the same
9114 * cacheline, if we ever start emitting more commands before
9115 * the MI_DISPLAY_FLIP we may need to first emit everything else,
9116 * then do the cacheline alignment, and finally emit the
9117 * MI_DISPLAY_FLIP.
9118 */
9119 ret = intel_ring_cacheline_align(ring);
9120 if (ret)
9121 goto err_unpin;
9122
Chris Wilsonffe74d72013-08-26 20:58:12 +01009123 ret = intel_ring_begin(ring, len);
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009124 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01009125 goto err_unpin;
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009126
Chris Wilsonffe74d72013-08-26 20:58:12 +01009127 /* Unmask the flip-done completion message. Note that the bspec says that
9128 * we should do this for both the BCS and RCS, and that we must not unmask
9129 * more than one flip event at any time (or ensure that one flip message
9130 * can be sent by waiting for flip-done prior to queueing new flips).
9131 * Experimentation says that BCS works despite DERRMR masking all
9132 * flip-done completion events and that unmasking all planes at once
9133 * for the RCS also doesn't appear to drop events. Setting the DERRMR
9134 * to zero does lead to lockups within MI_DISPLAY_FLIP.
9135 */
9136 if (ring->id == RCS) {
9137 intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(1));
9138 intel_ring_emit(ring, DERRMR);
9139 intel_ring_emit(ring, ~(DERRMR_PIPEA_PRI_FLIP_DONE |
9140 DERRMR_PIPEB_PRI_FLIP_DONE |
9141 DERRMR_PIPEC_PRI_FLIP_DONE));
Damien Lespiauf4768282014-04-07 20:24:34 +01009142 if (IS_GEN8(dev))
9143 intel_ring_emit(ring, MI_STORE_REGISTER_MEM_GEN8(1) |
9144 MI_SRM_LRM_GLOBAL_GTT);
9145 else
9146 intel_ring_emit(ring, MI_STORE_REGISTER_MEM(1) |
9147 MI_SRM_LRM_GLOBAL_GTT);
Chris Wilsonffe74d72013-08-26 20:58:12 +01009148 intel_ring_emit(ring, DERRMR);
9149 intel_ring_emit(ring, ring->scratch.gtt_offset + 256);
Damien Lespiauf4768282014-04-07 20:24:34 +01009150 if (IS_GEN8(dev)) {
9151 intel_ring_emit(ring, 0);
9152 intel_ring_emit(ring, MI_NOOP);
9153 }
Chris Wilsonffe74d72013-08-26 20:58:12 +01009154 }
9155
Daniel Vettercb05d8d2012-05-23 14:02:00 +02009156 intel_ring_emit(ring, MI_DISPLAY_FLIP_I915 | plane_bit);
Ville Syrjälä01f2c772011-12-20 00:06:49 +02009157 intel_ring_emit(ring, (fb->pitches[0] | obj->tiling_mode));
Ben Widawskyf343c5f2013-07-05 14:41:04 -07009158 intel_ring_emit(ring, i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset);
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009159 intel_ring_emit(ring, (MI_NOOP));
Chris Wilsone7d841c2012-12-03 11:36:30 +00009160
9161 intel_mark_page_flip_active(intel_crtc);
Chris Wilson09246732013-08-10 22:16:32 +01009162 __intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01009163 return 0;
9164
9165err_unpin:
9166 intel_unpin_fb_obj(obj);
9167err:
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009168 return ret;
9169}
9170
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009171static int intel_default_queue_flip(struct drm_device *dev,
9172 struct drm_crtc *crtc,
9173 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07009174 struct drm_i915_gem_object *obj,
9175 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009176{
9177 return -ENODEV;
9178}
9179
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009180static int intel_crtc_page_flip(struct drm_crtc *crtc,
9181 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07009182 struct drm_pending_vblank_event *event,
9183 uint32_t page_flip_flags)
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009184{
9185 struct drm_device *dev = crtc->dev;
9186 struct drm_i915_private *dev_priv = dev->dev_private;
Matt Roperf4510a22014-04-01 15:22:40 -07009187 struct drm_framebuffer *old_fb = crtc->primary->fb;
Ville Syrjälä4a35f832013-02-22 16:53:38 +02009188 struct drm_i915_gem_object *obj = to_intel_framebuffer(fb)->obj;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009189 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
9190 struct intel_unpin_work *work;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009191 unsigned long flags;
Chris Wilson52e68632010-08-08 10:15:59 +01009192 int ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009193
Ville Syrjäläe6a595d2012-05-24 21:08:59 +03009194 /* Can't change pixel format via MI display flips. */
Matt Roperf4510a22014-04-01 15:22:40 -07009195 if (fb->pixel_format != crtc->primary->fb->pixel_format)
Ville Syrjäläe6a595d2012-05-24 21:08:59 +03009196 return -EINVAL;
9197
9198 /*
9199 * TILEOFF/LINOFF registers can't be changed via MI display flips.
9200 * Note that pitch changes could also affect these register.
9201 */
9202 if (INTEL_INFO(dev)->gen > 3 &&
Matt Roperf4510a22014-04-01 15:22:40 -07009203 (fb->offsets[0] != crtc->primary->fb->offsets[0] ||
9204 fb->pitches[0] != crtc->primary->fb->pitches[0]))
Ville Syrjäläe6a595d2012-05-24 21:08:59 +03009205 return -EINVAL;
9206
Chris Wilsonf900db42014-02-20 09:26:13 +00009207 if (i915_terminally_wedged(&dev_priv->gpu_error))
9208 goto out_hang;
9209
Daniel Vetterb14c5672013-09-19 12:18:32 +02009210 work = kzalloc(sizeof(*work), GFP_KERNEL);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009211 if (work == NULL)
9212 return -ENOMEM;
9213
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009214 work->event = event;
Chris Wilsonb4a98e52012-11-01 09:26:26 +00009215 work->crtc = crtc;
Ville Syrjälä4a35f832013-02-22 16:53:38 +02009216 work->old_fb_obj = to_intel_framebuffer(old_fb)->obj;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009217 INIT_WORK(&work->work, intel_unpin_work_fn);
9218
Jesse Barnes7317c75e62011-08-29 09:45:28 -07009219 ret = drm_vblank_get(dev, intel_crtc->pipe);
9220 if (ret)
9221 goto free_work;
9222
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009223 /* We borrow the event spin lock for protecting unpin_work */
9224 spin_lock_irqsave(&dev->event_lock, flags);
9225 if (intel_crtc->unpin_work) {
9226 spin_unlock_irqrestore(&dev->event_lock, flags);
9227 kfree(work);
Jesse Barnes7317c75e62011-08-29 09:45:28 -07009228 drm_vblank_put(dev, intel_crtc->pipe);
Chris Wilson468f0b42010-05-27 13:18:13 +01009229
9230 DRM_DEBUG_DRIVER("flip queue: crtc already busy\n");
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009231 return -EBUSY;
9232 }
9233 intel_crtc->unpin_work = work;
9234 spin_unlock_irqrestore(&dev->event_lock, flags);
9235
Chris Wilsonb4a98e52012-11-01 09:26:26 +00009236 if (atomic_read(&intel_crtc->unpin_work_count) >= 2)
9237 flush_workqueue(dev_priv->wq);
9238
Chris Wilson79158102012-05-23 11:13:58 +01009239 ret = i915_mutex_lock_interruptible(dev);
9240 if (ret)
9241 goto cleanup;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009242
Jesse Barnes75dfca82010-02-10 15:09:44 -08009243 /* Reference the objects for the scheduled work. */
Chris Wilson05394f32010-11-08 19:18:58 +00009244 drm_gem_object_reference(&work->old_fb_obj->base);
9245 drm_gem_object_reference(&obj->base);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009246
Matt Roperf4510a22014-04-01 15:22:40 -07009247 crtc->primary->fb = fb;
Chris Wilson96b099f2010-06-07 14:03:04 +01009248
Chris Wilsone1f99ce2010-10-27 12:45:26 +01009249 work->pending_flip_obj = obj;
Chris Wilsone1f99ce2010-10-27 12:45:26 +01009250
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01009251 work->enable_stall_check = true;
9252
Chris Wilsonb4a98e52012-11-01 09:26:26 +00009253 atomic_inc(&intel_crtc->unpin_work_count);
Ville Syrjälä10d83732013-01-29 18:13:34 +02009254 intel_crtc->reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
Chris Wilsone1f99ce2010-10-27 12:45:26 +01009255
Keith Packarded8d1972013-07-22 18:49:58 -07009256 ret = dev_priv->display.queue_flip(dev, crtc, fb, obj, page_flip_flags);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009257 if (ret)
9258 goto cleanup_pending;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009259
Chris Wilson7782de32011-07-08 12:22:41 +01009260 intel_disable_fbc(dev);
Chris Wilsonc65355b2013-06-06 16:53:41 -03009261 intel_mark_fb_busy(obj, NULL);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009262 mutex_unlock(&dev->struct_mutex);
9263
Jesse Barnese5510fa2010-07-01 16:48:37 -07009264 trace_i915_flip_request(intel_crtc->plane, obj);
9265
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009266 return 0;
Chris Wilson96b099f2010-06-07 14:03:04 +01009267
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009268cleanup_pending:
Chris Wilsonb4a98e52012-11-01 09:26:26 +00009269 atomic_dec(&intel_crtc->unpin_work_count);
Matt Roperf4510a22014-04-01 15:22:40 -07009270 crtc->primary->fb = old_fb;
Chris Wilson05394f32010-11-08 19:18:58 +00009271 drm_gem_object_unreference(&work->old_fb_obj->base);
9272 drm_gem_object_unreference(&obj->base);
Chris Wilson96b099f2010-06-07 14:03:04 +01009273 mutex_unlock(&dev->struct_mutex);
9274
Chris Wilson79158102012-05-23 11:13:58 +01009275cleanup:
Chris Wilson96b099f2010-06-07 14:03:04 +01009276 spin_lock_irqsave(&dev->event_lock, flags);
9277 intel_crtc->unpin_work = NULL;
9278 spin_unlock_irqrestore(&dev->event_lock, flags);
9279
Jesse Barnes7317c75e62011-08-29 09:45:28 -07009280 drm_vblank_put(dev, intel_crtc->pipe);
9281free_work:
Chris Wilson96b099f2010-06-07 14:03:04 +01009282 kfree(work);
9283
Chris Wilsonf900db42014-02-20 09:26:13 +00009284 if (ret == -EIO) {
9285out_hang:
9286 intel_crtc_wait_for_pending_flips(crtc);
9287 ret = intel_pipe_set_base(crtc, crtc->x, crtc->y, fb);
9288 if (ret == 0 && event)
9289 drm_send_vblank_event(dev, intel_crtc->pipe, event);
9290 }
Chris Wilson96b099f2010-06-07 14:03:04 +01009291 return ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009292}
9293
Chris Wilsonf6e5b162011-04-12 18:06:51 +01009294static struct drm_crtc_helper_funcs intel_helper_funcs = {
Chris Wilsonf6e5b162011-04-12 18:06:51 +01009295 .mode_set_base_atomic = intel_pipe_set_base_atomic,
9296 .load_lut = intel_crtc_load_lut,
Chris Wilsonf6e5b162011-04-12 18:06:51 +01009297};
9298
Daniel Vetter9a935852012-07-05 22:34:27 +02009299/**
9300 * intel_modeset_update_staged_output_state
9301 *
9302 * Updates the staged output configuration state, e.g. after we've read out the
9303 * current hw state.
9304 */
9305static void intel_modeset_update_staged_output_state(struct drm_device *dev)
9306{
Ville Syrjälä76688512014-01-10 11:28:06 +02009307 struct intel_crtc *crtc;
Daniel Vetter9a935852012-07-05 22:34:27 +02009308 struct intel_encoder *encoder;
9309 struct intel_connector *connector;
9310
9311 list_for_each_entry(connector, &dev->mode_config.connector_list,
9312 base.head) {
9313 connector->new_encoder =
9314 to_intel_encoder(connector->base.encoder);
9315 }
9316
9317 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
9318 base.head) {
9319 encoder->new_crtc =
9320 to_intel_crtc(encoder->base.crtc);
9321 }
Ville Syrjälä76688512014-01-10 11:28:06 +02009322
Damien Lespiaud3fcc802014-05-13 23:32:22 +01009323 for_each_intel_crtc(dev, crtc) {
Ville Syrjälä76688512014-01-10 11:28:06 +02009324 crtc->new_enabled = crtc->base.enabled;
Ville Syrjälä7bd0a8e2014-01-14 14:31:38 +02009325
9326 if (crtc->new_enabled)
9327 crtc->new_config = &crtc->config;
9328 else
9329 crtc->new_config = NULL;
Ville Syrjälä76688512014-01-10 11:28:06 +02009330 }
Daniel Vetter9a935852012-07-05 22:34:27 +02009331}
9332
9333/**
9334 * intel_modeset_commit_output_state
9335 *
9336 * This function copies the stage display pipe configuration to the real one.
9337 */
9338static void intel_modeset_commit_output_state(struct drm_device *dev)
9339{
Ville Syrjälä76688512014-01-10 11:28:06 +02009340 struct intel_crtc *crtc;
Daniel Vetter9a935852012-07-05 22:34:27 +02009341 struct intel_encoder *encoder;
9342 struct intel_connector *connector;
9343
9344 list_for_each_entry(connector, &dev->mode_config.connector_list,
9345 base.head) {
9346 connector->base.encoder = &connector->new_encoder->base;
9347 }
9348
9349 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
9350 base.head) {
9351 encoder->base.crtc = &encoder->new_crtc->base;
9352 }
Ville Syrjälä76688512014-01-10 11:28:06 +02009353
Damien Lespiaud3fcc802014-05-13 23:32:22 +01009354 for_each_intel_crtc(dev, crtc) {
Ville Syrjälä76688512014-01-10 11:28:06 +02009355 crtc->base.enabled = crtc->new_enabled;
9356 }
Daniel Vetter9a935852012-07-05 22:34:27 +02009357}
9358
Daniel Vetter050f7ae2013-06-02 13:26:23 +02009359static void
Robin Schroereba905b2014-05-18 02:24:50 +02009360connected_sink_compute_bpp(struct intel_connector *connector,
Daniel Vetter050f7ae2013-06-02 13:26:23 +02009361 struct intel_crtc_config *pipe_config)
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01009362{
Daniel Vetter050f7ae2013-06-02 13:26:23 +02009363 int bpp = pipe_config->pipe_bpp;
9364
9365 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] checking for sink bpp constrains\n",
9366 connector->base.base.id,
9367 drm_get_connector_name(&connector->base));
9368
9369 /* Don't use an invalid EDID bpc value */
9370 if (connector->base.display_info.bpc &&
9371 connector->base.display_info.bpc * 3 < bpp) {
9372 DRM_DEBUG_KMS("clamping display bpp (was %d) to EDID reported max of %d\n",
9373 bpp, connector->base.display_info.bpc*3);
9374 pipe_config->pipe_bpp = connector->base.display_info.bpc*3;
9375 }
9376
9377 /* Clamp bpp to 8 on screens without EDID 1.4 */
9378 if (connector->base.display_info.bpc == 0 && bpp > 24) {
9379 DRM_DEBUG_KMS("clamping display bpp (was %d) to default limit of 24\n",
9380 bpp);
9381 pipe_config->pipe_bpp = 24;
9382 }
9383}
9384
9385static int
9386compute_baseline_pipe_bpp(struct intel_crtc *crtc,
9387 struct drm_framebuffer *fb,
9388 struct intel_crtc_config *pipe_config)
9389{
9390 struct drm_device *dev = crtc->base.dev;
9391 struct intel_connector *connector;
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01009392 int bpp;
9393
Daniel Vetterd42264b2013-03-28 16:38:08 +01009394 switch (fb->pixel_format) {
9395 case DRM_FORMAT_C8:
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01009396 bpp = 8*3; /* since we go through a colormap */
9397 break;
Daniel Vetterd42264b2013-03-28 16:38:08 +01009398 case DRM_FORMAT_XRGB1555:
9399 case DRM_FORMAT_ARGB1555:
9400 /* checked in intel_framebuffer_init already */
9401 if (WARN_ON(INTEL_INFO(dev)->gen > 3))
9402 return -EINVAL;
9403 case DRM_FORMAT_RGB565:
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01009404 bpp = 6*3; /* min is 18bpp */
9405 break;
Daniel Vetterd42264b2013-03-28 16:38:08 +01009406 case DRM_FORMAT_XBGR8888:
9407 case DRM_FORMAT_ABGR8888:
9408 /* checked in intel_framebuffer_init already */
9409 if (WARN_ON(INTEL_INFO(dev)->gen < 4))
9410 return -EINVAL;
9411 case DRM_FORMAT_XRGB8888:
9412 case DRM_FORMAT_ARGB8888:
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01009413 bpp = 8*3;
9414 break;
Daniel Vetterd42264b2013-03-28 16:38:08 +01009415 case DRM_FORMAT_XRGB2101010:
9416 case DRM_FORMAT_ARGB2101010:
9417 case DRM_FORMAT_XBGR2101010:
9418 case DRM_FORMAT_ABGR2101010:
9419 /* checked in intel_framebuffer_init already */
9420 if (WARN_ON(INTEL_INFO(dev)->gen < 4))
Daniel Vetterbaba1332013-03-27 00:45:00 +01009421 return -EINVAL;
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01009422 bpp = 10*3;
9423 break;
Daniel Vetterbaba1332013-03-27 00:45:00 +01009424 /* TODO: gen4+ supports 16 bpc floating point, too. */
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01009425 default:
9426 DRM_DEBUG_KMS("unsupported depth\n");
9427 return -EINVAL;
9428 }
9429
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01009430 pipe_config->pipe_bpp = bpp;
9431
9432 /* Clamp display bpp to EDID value */
9433 list_for_each_entry(connector, &dev->mode_config.connector_list,
Daniel Vetter050f7ae2013-06-02 13:26:23 +02009434 base.head) {
Daniel Vetter1b829e02013-06-02 13:26:24 +02009435 if (!connector->new_encoder ||
9436 connector->new_encoder->new_crtc != crtc)
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01009437 continue;
9438
Daniel Vetter050f7ae2013-06-02 13:26:23 +02009439 connected_sink_compute_bpp(connector, pipe_config);
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01009440 }
9441
9442 return bpp;
9443}
9444
Daniel Vetter644db712013-09-19 14:53:58 +02009445static void intel_dump_crtc_timings(const struct drm_display_mode *mode)
9446{
9447 DRM_DEBUG_KMS("crtc timings: %d %d %d %d %d %d %d %d %d, "
9448 "type: 0x%x flags: 0x%x\n",
Damien Lespiau13428302013-09-25 16:45:36 +01009449 mode->crtc_clock,
Daniel Vetter644db712013-09-19 14:53:58 +02009450 mode->crtc_hdisplay, mode->crtc_hsync_start,
9451 mode->crtc_hsync_end, mode->crtc_htotal,
9452 mode->crtc_vdisplay, mode->crtc_vsync_start,
9453 mode->crtc_vsync_end, mode->crtc_vtotal, mode->type, mode->flags);
9454}
9455
Daniel Vetterc0b03412013-05-28 12:05:54 +02009456static void intel_dump_pipe_config(struct intel_crtc *crtc,
9457 struct intel_crtc_config *pipe_config,
9458 const char *context)
9459{
9460 DRM_DEBUG_KMS("[CRTC:%d]%s config for pipe %c\n", crtc->base.base.id,
9461 context, pipe_name(crtc->pipe));
9462
9463 DRM_DEBUG_KMS("cpu_transcoder: %c\n", transcoder_name(pipe_config->cpu_transcoder));
9464 DRM_DEBUG_KMS("pipe bpp: %i, dithering: %i\n",
9465 pipe_config->pipe_bpp, pipe_config->dither);
9466 DRM_DEBUG_KMS("fdi/pch: %i, lanes: %i, gmch_m: %u, gmch_n: %u, link_m: %u, link_n: %u, tu: %u\n",
9467 pipe_config->has_pch_encoder,
9468 pipe_config->fdi_lanes,
9469 pipe_config->fdi_m_n.gmch_m, pipe_config->fdi_m_n.gmch_n,
9470 pipe_config->fdi_m_n.link_m, pipe_config->fdi_m_n.link_n,
9471 pipe_config->fdi_m_n.tu);
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03009472 DRM_DEBUG_KMS("dp: %i, gmch_m: %u, gmch_n: %u, link_m: %u, link_n: %u, tu: %u\n",
9473 pipe_config->has_dp_encoder,
9474 pipe_config->dp_m_n.gmch_m, pipe_config->dp_m_n.gmch_n,
9475 pipe_config->dp_m_n.link_m, pipe_config->dp_m_n.link_n,
9476 pipe_config->dp_m_n.tu);
Daniel Vetterc0b03412013-05-28 12:05:54 +02009477 DRM_DEBUG_KMS("requested mode:\n");
9478 drm_mode_debug_printmodeline(&pipe_config->requested_mode);
9479 DRM_DEBUG_KMS("adjusted mode:\n");
9480 drm_mode_debug_printmodeline(&pipe_config->adjusted_mode);
Daniel Vetter644db712013-09-19 14:53:58 +02009481 intel_dump_crtc_timings(&pipe_config->adjusted_mode);
Ville Syrjäläd71b8d42013-09-06 23:29:08 +03009482 DRM_DEBUG_KMS("port clock: %d\n", pipe_config->port_clock);
Ville Syrjälä37327ab2013-09-04 18:25:28 +03009483 DRM_DEBUG_KMS("pipe src size: %dx%d\n",
9484 pipe_config->pipe_src_w, pipe_config->pipe_src_h);
Daniel Vetterc0b03412013-05-28 12:05:54 +02009485 DRM_DEBUG_KMS("gmch pfit: control: 0x%08x, ratios: 0x%08x, lvds border: 0x%08x\n",
9486 pipe_config->gmch_pfit.control,
9487 pipe_config->gmch_pfit.pgm_ratios,
9488 pipe_config->gmch_pfit.lvds_border_bits);
Chris Wilsonfd4daa92013-08-27 17:04:17 +01009489 DRM_DEBUG_KMS("pch pfit: pos: 0x%08x, size: 0x%08x, %s\n",
Daniel Vetterc0b03412013-05-28 12:05:54 +02009490 pipe_config->pch_pfit.pos,
Chris Wilsonfd4daa92013-08-27 17:04:17 +01009491 pipe_config->pch_pfit.size,
9492 pipe_config->pch_pfit.enabled ? "enabled" : "disabled");
Paulo Zanoni42db64e2013-05-31 16:33:22 -03009493 DRM_DEBUG_KMS("ips: %i\n", pipe_config->ips_enabled);
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03009494 DRM_DEBUG_KMS("double wide: %i\n", pipe_config->double_wide);
Daniel Vetterc0b03412013-05-28 12:05:54 +02009495}
9496
Ville Syrjäläbc079e82014-03-03 16:15:28 +02009497static bool encoders_cloneable(const struct intel_encoder *a,
9498 const struct intel_encoder *b)
Daniel Vetteraccfc0c2013-05-30 15:04:25 +02009499{
Ville Syrjäläbc079e82014-03-03 16:15:28 +02009500 /* masks could be asymmetric, so check both ways */
9501 return a == b || (a->cloneable & (1 << b->type) &&
9502 b->cloneable & (1 << a->type));
9503}
Daniel Vetteraccfc0c2013-05-30 15:04:25 +02009504
Ville Syrjäläbc079e82014-03-03 16:15:28 +02009505static bool check_single_encoder_cloning(struct intel_crtc *crtc,
9506 struct intel_encoder *encoder)
9507{
9508 struct drm_device *dev = crtc->base.dev;
9509 struct intel_encoder *source_encoder;
9510
9511 list_for_each_entry(source_encoder,
9512 &dev->mode_config.encoder_list, base.head) {
9513 if (source_encoder->new_crtc != crtc)
Daniel Vetteraccfc0c2013-05-30 15:04:25 +02009514 continue;
9515
Ville Syrjäläbc079e82014-03-03 16:15:28 +02009516 if (!encoders_cloneable(encoder, source_encoder))
9517 return false;
Daniel Vetteraccfc0c2013-05-30 15:04:25 +02009518 }
9519
Ville Syrjäläbc079e82014-03-03 16:15:28 +02009520 return true;
9521}
9522
9523static bool check_encoder_cloning(struct intel_crtc *crtc)
9524{
9525 struct drm_device *dev = crtc->base.dev;
9526 struct intel_encoder *encoder;
9527
9528 list_for_each_entry(encoder,
9529 &dev->mode_config.encoder_list, base.head) {
9530 if (encoder->new_crtc != crtc)
9531 continue;
9532
9533 if (!check_single_encoder_cloning(crtc, encoder))
9534 return false;
9535 }
9536
9537 return true;
Daniel Vetteraccfc0c2013-05-30 15:04:25 +02009538}
9539
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01009540static struct intel_crtc_config *
9541intel_modeset_pipe_config(struct drm_crtc *crtc,
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01009542 struct drm_framebuffer *fb,
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01009543 struct drm_display_mode *mode)
Daniel Vetter7758a112012-07-08 19:40:39 +02009544{
9545 struct drm_device *dev = crtc->dev;
Daniel Vetter7758a112012-07-08 19:40:39 +02009546 struct intel_encoder *encoder;
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01009547 struct intel_crtc_config *pipe_config;
Daniel Vettere29c22c2013-02-21 00:00:16 +01009548 int plane_bpp, ret = -EINVAL;
9549 bool retry = true;
Daniel Vetter7758a112012-07-08 19:40:39 +02009550
Ville Syrjäläbc079e82014-03-03 16:15:28 +02009551 if (!check_encoder_cloning(to_intel_crtc(crtc))) {
Daniel Vetteraccfc0c2013-05-30 15:04:25 +02009552 DRM_DEBUG_KMS("rejecting invalid cloning configuration\n");
9553 return ERR_PTR(-EINVAL);
9554 }
9555
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01009556 pipe_config = kzalloc(sizeof(*pipe_config), GFP_KERNEL);
9557 if (!pipe_config)
Daniel Vetter7758a112012-07-08 19:40:39 +02009558 return ERR_PTR(-ENOMEM);
9559
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01009560 drm_mode_copy(&pipe_config->adjusted_mode, mode);
9561 drm_mode_copy(&pipe_config->requested_mode, mode);
Ville Syrjälä37327ab2013-09-04 18:25:28 +03009562
Daniel Vettere143a212013-07-04 12:01:15 +02009563 pipe_config->cpu_transcoder =
9564 (enum transcoder) to_intel_crtc(crtc)->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +02009565 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01009566
Imre Deak2960bc92013-07-30 13:36:32 +03009567 /*
9568 * Sanitize sync polarity flags based on requested ones. If neither
9569 * positive or negative polarity is requested, treat this as meaning
9570 * negative polarity.
9571 */
9572 if (!(pipe_config->adjusted_mode.flags &
9573 (DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NHSYNC)))
9574 pipe_config->adjusted_mode.flags |= DRM_MODE_FLAG_NHSYNC;
9575
9576 if (!(pipe_config->adjusted_mode.flags &
9577 (DRM_MODE_FLAG_PVSYNC | DRM_MODE_FLAG_NVSYNC)))
9578 pipe_config->adjusted_mode.flags |= DRM_MODE_FLAG_NVSYNC;
9579
Daniel Vetter050f7ae2013-06-02 13:26:23 +02009580 /* Compute a starting value for pipe_config->pipe_bpp taking the source
9581 * plane pixel format and any sink constraints into account. Returns the
9582 * source plane bpp so that dithering can be selected on mismatches
9583 * after encoders and crtc also have had their say. */
9584 plane_bpp = compute_baseline_pipe_bpp(to_intel_crtc(crtc),
9585 fb, pipe_config);
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01009586 if (plane_bpp < 0)
9587 goto fail;
9588
Ville Syrjäläe41a56b2013-10-01 22:52:14 +03009589 /*
9590 * Determine the real pipe dimensions. Note that stereo modes can
9591 * increase the actual pipe size due to the frame doubling and
9592 * insertion of additional space for blanks between the frame. This
9593 * is stored in the crtc timings. We use the requested mode to do this
9594 * computation to clearly distinguish it from the adjusted mode, which
9595 * can be changed by the connectors in the below retry loop.
9596 */
9597 drm_mode_set_crtcinfo(&pipe_config->requested_mode, CRTC_STEREO_DOUBLE);
9598 pipe_config->pipe_src_w = pipe_config->requested_mode.crtc_hdisplay;
9599 pipe_config->pipe_src_h = pipe_config->requested_mode.crtc_vdisplay;
9600
Daniel Vettere29c22c2013-02-21 00:00:16 +01009601encoder_retry:
Daniel Vetteref1b4602013-06-01 17:17:04 +02009602 /* Ensure the port clock defaults are reset when retrying. */
Daniel Vetterff9a6752013-06-01 17:16:21 +02009603 pipe_config->port_clock = 0;
Daniel Vetteref1b4602013-06-01 17:17:04 +02009604 pipe_config->pixel_multiplier = 1;
Daniel Vetterff9a6752013-06-01 17:16:21 +02009605
Daniel Vetter135c81b2013-07-21 21:37:09 +02009606 /* Fill in default crtc timings, allow encoders to overwrite them. */
Damien Lespiau6ce70f52013-09-25 16:45:38 +01009607 drm_mode_set_crtcinfo(&pipe_config->adjusted_mode, CRTC_STEREO_DOUBLE);
Daniel Vetter135c81b2013-07-21 21:37:09 +02009608
Daniel Vetter7758a112012-07-08 19:40:39 +02009609 /* Pass our mode to the connectors and the CRTC to give them a chance to
9610 * adjust it according to limitations or connector properties, and also
9611 * a chance to reject the mode entirely.
9612 */
9613 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
9614 base.head) {
9615
9616 if (&encoder->new_crtc->base != crtc)
9617 continue;
Daniel Vetter7ae89232013-03-27 00:44:52 +01009618
Daniel Vetterefea6e82013-07-21 21:36:59 +02009619 if (!(encoder->compute_config(encoder, pipe_config))) {
9620 DRM_DEBUG_KMS("Encoder config failure\n");
Daniel Vetter7758a112012-07-08 19:40:39 +02009621 goto fail;
9622 }
9623 }
9624
Daniel Vetterff9a6752013-06-01 17:16:21 +02009625 /* Set default port clock if not overwritten by the encoder. Needs to be
9626 * done afterwards in case the encoder adjusts the mode. */
9627 if (!pipe_config->port_clock)
Damien Lespiau241bfc32013-09-25 16:45:37 +01009628 pipe_config->port_clock = pipe_config->adjusted_mode.crtc_clock
9629 * pipe_config->pixel_multiplier;
Daniel Vetterff9a6752013-06-01 17:16:21 +02009630
Daniel Vettera43f6e02013-06-07 23:10:32 +02009631 ret = intel_crtc_compute_config(to_intel_crtc(crtc), pipe_config);
Daniel Vettere29c22c2013-02-21 00:00:16 +01009632 if (ret < 0) {
Daniel Vetter7758a112012-07-08 19:40:39 +02009633 DRM_DEBUG_KMS("CRTC fixup failed\n");
9634 goto fail;
9635 }
Daniel Vettere29c22c2013-02-21 00:00:16 +01009636
9637 if (ret == RETRY) {
9638 if (WARN(!retry, "loop in pipe configuration computation\n")) {
9639 ret = -EINVAL;
9640 goto fail;
9641 }
9642
9643 DRM_DEBUG_KMS("CRTC bw constrained, retrying\n");
9644 retry = false;
9645 goto encoder_retry;
9646 }
9647
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01009648 pipe_config->dither = pipe_config->pipe_bpp != plane_bpp;
9649 DRM_DEBUG_KMS("plane bpp: %i, pipe bpp: %i, dithering: %i\n",
9650 plane_bpp, pipe_config->pipe_bpp, pipe_config->dither);
9651
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01009652 return pipe_config;
Daniel Vetter7758a112012-07-08 19:40:39 +02009653fail:
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01009654 kfree(pipe_config);
Daniel Vettere29c22c2013-02-21 00:00:16 +01009655 return ERR_PTR(ret);
Daniel Vetter7758a112012-07-08 19:40:39 +02009656}
9657
Daniel Vettere2e1ed42012-07-08 21:14:38 +02009658/* Computes which crtcs are affected and sets the relevant bits in the mask. For
9659 * simplicity we use the crtc's pipe number (because it's easier to obtain). */
9660static void
9661intel_modeset_affected_pipes(struct drm_crtc *crtc, unsigned *modeset_pipes,
9662 unsigned *prepare_pipes, unsigned *disable_pipes)
9663{
9664 struct intel_crtc *intel_crtc;
9665 struct drm_device *dev = crtc->dev;
9666 struct intel_encoder *encoder;
9667 struct intel_connector *connector;
9668 struct drm_crtc *tmp_crtc;
9669
9670 *disable_pipes = *modeset_pipes = *prepare_pipes = 0;
9671
9672 /* Check which crtcs have changed outputs connected to them, these need
9673 * to be part of the prepare_pipes mask. We don't (yet) support global
9674 * modeset across multiple crtcs, so modeset_pipes will only have one
9675 * bit set at most. */
9676 list_for_each_entry(connector, &dev->mode_config.connector_list,
9677 base.head) {
9678 if (connector->base.encoder == &connector->new_encoder->base)
9679 continue;
9680
9681 if (connector->base.encoder) {
9682 tmp_crtc = connector->base.encoder->crtc;
9683
9684 *prepare_pipes |= 1 << to_intel_crtc(tmp_crtc)->pipe;
9685 }
9686
9687 if (connector->new_encoder)
9688 *prepare_pipes |=
9689 1 << connector->new_encoder->new_crtc->pipe;
9690 }
9691
9692 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
9693 base.head) {
9694 if (encoder->base.crtc == &encoder->new_crtc->base)
9695 continue;
9696
9697 if (encoder->base.crtc) {
9698 tmp_crtc = encoder->base.crtc;
9699
9700 *prepare_pipes |= 1 << to_intel_crtc(tmp_crtc)->pipe;
9701 }
9702
9703 if (encoder->new_crtc)
9704 *prepare_pipes |= 1 << encoder->new_crtc->pipe;
9705 }
9706
Ville Syrjälä76688512014-01-10 11:28:06 +02009707 /* Check for pipes that will be enabled/disabled ... */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01009708 for_each_intel_crtc(dev, intel_crtc) {
Ville Syrjälä76688512014-01-10 11:28:06 +02009709 if (intel_crtc->base.enabled == intel_crtc->new_enabled)
Daniel Vettere2e1ed42012-07-08 21:14:38 +02009710 continue;
9711
Ville Syrjälä76688512014-01-10 11:28:06 +02009712 if (!intel_crtc->new_enabled)
Daniel Vettere2e1ed42012-07-08 21:14:38 +02009713 *disable_pipes |= 1 << intel_crtc->pipe;
Ville Syrjälä76688512014-01-10 11:28:06 +02009714 else
9715 *prepare_pipes |= 1 << intel_crtc->pipe;
Daniel Vettere2e1ed42012-07-08 21:14:38 +02009716 }
9717
9718
9719 /* set_mode is also used to update properties on life display pipes. */
9720 intel_crtc = to_intel_crtc(crtc);
Ville Syrjälä76688512014-01-10 11:28:06 +02009721 if (intel_crtc->new_enabled)
Daniel Vettere2e1ed42012-07-08 21:14:38 +02009722 *prepare_pipes |= 1 << intel_crtc->pipe;
9723
Daniel Vetterb6c51642013-04-12 18:48:43 +02009724 /*
9725 * For simplicity do a full modeset on any pipe where the output routing
9726 * changed. We could be more clever, but that would require us to be
9727 * more careful with calling the relevant encoder->mode_set functions.
9728 */
Daniel Vettere2e1ed42012-07-08 21:14:38 +02009729 if (*prepare_pipes)
9730 *modeset_pipes = *prepare_pipes;
9731
9732 /* ... and mask these out. */
9733 *modeset_pipes &= ~(*disable_pipes);
9734 *prepare_pipes &= ~(*disable_pipes);
Daniel Vetterb6c51642013-04-12 18:48:43 +02009735
9736 /*
9737 * HACK: We don't (yet) fully support global modesets. intel_set_config
9738 * obies this rule, but the modeset restore mode of
9739 * intel_modeset_setup_hw_state does not.
9740 */
9741 *modeset_pipes &= 1 << intel_crtc->pipe;
9742 *prepare_pipes &= 1 << intel_crtc->pipe;
Daniel Vettere3641d32013-04-11 19:49:07 +02009743
9744 DRM_DEBUG_KMS("set mode pipe masks: modeset: %x, prepare: %x, disable: %x\n",
9745 *modeset_pipes, *prepare_pipes, *disable_pipes);
Daniel Vettere2e1ed42012-07-08 21:14:38 +02009746}
9747
Daniel Vetterea9d7582012-07-10 10:42:52 +02009748static bool intel_crtc_in_use(struct drm_crtc *crtc)
9749{
9750 struct drm_encoder *encoder;
9751 struct drm_device *dev = crtc->dev;
9752
9753 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head)
9754 if (encoder->crtc == crtc)
9755 return true;
9756
9757 return false;
9758}
9759
9760static void
9761intel_modeset_update_state(struct drm_device *dev, unsigned prepare_pipes)
9762{
9763 struct intel_encoder *intel_encoder;
9764 struct intel_crtc *intel_crtc;
9765 struct drm_connector *connector;
9766
9767 list_for_each_entry(intel_encoder, &dev->mode_config.encoder_list,
9768 base.head) {
9769 if (!intel_encoder->base.crtc)
9770 continue;
9771
9772 intel_crtc = to_intel_crtc(intel_encoder->base.crtc);
9773
9774 if (prepare_pipes & (1 << intel_crtc->pipe))
9775 intel_encoder->connectors_active = false;
9776 }
9777
9778 intel_modeset_commit_output_state(dev);
9779
Ville Syrjälä76688512014-01-10 11:28:06 +02009780 /* Double check state. */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01009781 for_each_intel_crtc(dev, intel_crtc) {
Ville Syrjälä76688512014-01-10 11:28:06 +02009782 WARN_ON(intel_crtc->base.enabled != intel_crtc_in_use(&intel_crtc->base));
Ville Syrjälä7bd0a8e2014-01-14 14:31:38 +02009783 WARN_ON(intel_crtc->new_config &&
9784 intel_crtc->new_config != &intel_crtc->config);
9785 WARN_ON(intel_crtc->base.enabled != !!intel_crtc->new_config);
Daniel Vetterea9d7582012-07-10 10:42:52 +02009786 }
9787
9788 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
9789 if (!connector->encoder || !connector->encoder->crtc)
9790 continue;
9791
9792 intel_crtc = to_intel_crtc(connector->encoder->crtc);
9793
9794 if (prepare_pipes & (1 << intel_crtc->pipe)) {
Daniel Vetter68d34722012-09-06 22:08:35 +02009795 struct drm_property *dpms_property =
9796 dev->mode_config.dpms_property;
9797
Daniel Vetterea9d7582012-07-10 10:42:52 +02009798 connector->dpms = DRM_MODE_DPMS_ON;
Rob Clark662595d2012-10-11 20:36:04 -05009799 drm_object_property_set_value(&connector->base,
Daniel Vetter68d34722012-09-06 22:08:35 +02009800 dpms_property,
9801 DRM_MODE_DPMS_ON);
Daniel Vetterea9d7582012-07-10 10:42:52 +02009802
9803 intel_encoder = to_intel_encoder(connector->encoder);
9804 intel_encoder->connectors_active = true;
9805 }
9806 }
9807
9808}
9809
Ville Syrjälä3bd26262013-09-06 23:29:02 +03009810static bool intel_fuzzy_clock_check(int clock1, int clock2)
Jesse Barnesf1f644d2013-06-27 00:39:25 +03009811{
Ville Syrjälä3bd26262013-09-06 23:29:02 +03009812 int diff;
Jesse Barnesf1f644d2013-06-27 00:39:25 +03009813
9814 if (clock1 == clock2)
9815 return true;
9816
9817 if (!clock1 || !clock2)
9818 return false;
9819
9820 diff = abs(clock1 - clock2);
9821
9822 if (((((diff + clock1 + clock2) * 100)) / (clock1 + clock2)) < 105)
9823 return true;
9824
9825 return false;
9826}
9827
Daniel Vetter25c5b262012-07-08 22:08:04 +02009828#define for_each_intel_crtc_masked(dev, mask, intel_crtc) \
9829 list_for_each_entry((intel_crtc), \
9830 &(dev)->mode_config.crtc_list, \
9831 base.head) \
Daniel Vetter0973f182013-04-19 11:25:33 +02009832 if (mask & (1 <<(intel_crtc)->pipe))
Daniel Vetter25c5b262012-07-08 22:08:04 +02009833
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01009834static bool
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02009835intel_pipe_config_compare(struct drm_device *dev,
9836 struct intel_crtc_config *current_config,
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01009837 struct intel_crtc_config *pipe_config)
9838{
Daniel Vetter66e985c2013-06-05 13:34:20 +02009839#define PIPE_CONF_CHECK_X(name) \
9840 if (current_config->name != pipe_config->name) { \
9841 DRM_ERROR("mismatch in " #name " " \
9842 "(expected 0x%08x, found 0x%08x)\n", \
9843 current_config->name, \
9844 pipe_config->name); \
9845 return false; \
9846 }
9847
Daniel Vetter08a24032013-04-19 11:25:34 +02009848#define PIPE_CONF_CHECK_I(name) \
9849 if (current_config->name != pipe_config->name) { \
9850 DRM_ERROR("mismatch in " #name " " \
9851 "(expected %i, found %i)\n", \
9852 current_config->name, \
9853 pipe_config->name); \
9854 return false; \
Daniel Vetter88adfff2013-03-28 10:42:01 +01009855 }
9856
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02009857#define PIPE_CONF_CHECK_FLAGS(name, mask) \
9858 if ((current_config->name ^ pipe_config->name) & (mask)) { \
Jesse Barnes6f024882013-07-01 10:19:09 -07009859 DRM_ERROR("mismatch in " #name "(" #mask ") " \
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02009860 "(expected %i, found %i)\n", \
9861 current_config->name & (mask), \
9862 pipe_config->name & (mask)); \
9863 return false; \
9864 }
9865
Ville Syrjälä5e550652013-09-06 23:29:07 +03009866#define PIPE_CONF_CHECK_CLOCK_FUZZY(name) \
9867 if (!intel_fuzzy_clock_check(current_config->name, pipe_config->name)) { \
9868 DRM_ERROR("mismatch in " #name " " \
9869 "(expected %i, found %i)\n", \
9870 current_config->name, \
9871 pipe_config->name); \
9872 return false; \
9873 }
9874
Daniel Vetterbb760062013-06-06 14:55:52 +02009875#define PIPE_CONF_QUIRK(quirk) \
9876 ((current_config->quirks | pipe_config->quirks) & (quirk))
9877
Daniel Vettereccb1402013-05-22 00:50:22 +02009878 PIPE_CONF_CHECK_I(cpu_transcoder);
9879
Daniel Vetter08a24032013-04-19 11:25:34 +02009880 PIPE_CONF_CHECK_I(has_pch_encoder);
9881 PIPE_CONF_CHECK_I(fdi_lanes);
Daniel Vetter72419202013-04-04 13:28:53 +02009882 PIPE_CONF_CHECK_I(fdi_m_n.gmch_m);
9883 PIPE_CONF_CHECK_I(fdi_m_n.gmch_n);
9884 PIPE_CONF_CHECK_I(fdi_m_n.link_m);
9885 PIPE_CONF_CHECK_I(fdi_m_n.link_n);
9886 PIPE_CONF_CHECK_I(fdi_m_n.tu);
Daniel Vetter08a24032013-04-19 11:25:34 +02009887
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03009888 PIPE_CONF_CHECK_I(has_dp_encoder);
9889 PIPE_CONF_CHECK_I(dp_m_n.gmch_m);
9890 PIPE_CONF_CHECK_I(dp_m_n.gmch_n);
9891 PIPE_CONF_CHECK_I(dp_m_n.link_m);
9892 PIPE_CONF_CHECK_I(dp_m_n.link_n);
9893 PIPE_CONF_CHECK_I(dp_m_n.tu);
9894
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02009895 PIPE_CONF_CHECK_I(adjusted_mode.crtc_hdisplay);
9896 PIPE_CONF_CHECK_I(adjusted_mode.crtc_htotal);
9897 PIPE_CONF_CHECK_I(adjusted_mode.crtc_hblank_start);
9898 PIPE_CONF_CHECK_I(adjusted_mode.crtc_hblank_end);
9899 PIPE_CONF_CHECK_I(adjusted_mode.crtc_hsync_start);
9900 PIPE_CONF_CHECK_I(adjusted_mode.crtc_hsync_end);
9901
9902 PIPE_CONF_CHECK_I(adjusted_mode.crtc_vdisplay);
9903 PIPE_CONF_CHECK_I(adjusted_mode.crtc_vtotal);
9904 PIPE_CONF_CHECK_I(adjusted_mode.crtc_vblank_start);
9905 PIPE_CONF_CHECK_I(adjusted_mode.crtc_vblank_end);
9906 PIPE_CONF_CHECK_I(adjusted_mode.crtc_vsync_start);
9907 PIPE_CONF_CHECK_I(adjusted_mode.crtc_vsync_end);
9908
Daniel Vetterc93f54c2013-06-27 19:47:19 +02009909 PIPE_CONF_CHECK_I(pixel_multiplier);
Daniel Vetter6897b4b2014-04-24 23:54:47 +02009910 PIPE_CONF_CHECK_I(has_hdmi_sink);
Daniel Vetterb5a9fa02014-04-24 23:54:49 +02009911 if ((INTEL_INFO(dev)->gen < 8 && !IS_HASWELL(dev)) ||
9912 IS_VALLEYVIEW(dev))
9913 PIPE_CONF_CHECK_I(limited_color_range);
Daniel Vetter6c49f242013-06-06 12:45:25 +02009914
Daniel Vetter9ed109a2014-04-24 23:54:52 +02009915 PIPE_CONF_CHECK_I(has_audio);
9916
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02009917 PIPE_CONF_CHECK_FLAGS(adjusted_mode.flags,
9918 DRM_MODE_FLAG_INTERLACE);
9919
Daniel Vetterbb760062013-06-06 14:55:52 +02009920 if (!PIPE_CONF_QUIRK(PIPE_CONFIG_QUIRK_MODE_SYNC_FLAGS)) {
9921 PIPE_CONF_CHECK_FLAGS(adjusted_mode.flags,
9922 DRM_MODE_FLAG_PHSYNC);
9923 PIPE_CONF_CHECK_FLAGS(adjusted_mode.flags,
9924 DRM_MODE_FLAG_NHSYNC);
9925 PIPE_CONF_CHECK_FLAGS(adjusted_mode.flags,
9926 DRM_MODE_FLAG_PVSYNC);
9927 PIPE_CONF_CHECK_FLAGS(adjusted_mode.flags,
9928 DRM_MODE_FLAG_NVSYNC);
9929 }
Jesse Barnes045ac3b2013-05-14 17:08:26 -07009930
Ville Syrjälä37327ab2013-09-04 18:25:28 +03009931 PIPE_CONF_CHECK_I(pipe_src_w);
9932 PIPE_CONF_CHECK_I(pipe_src_h);
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02009933
Daniel Vetter99535992014-04-13 12:00:33 +02009934 /*
9935 * FIXME: BIOS likes to set up a cloned config with lvds+external
9936 * screen. Since we don't yet re-compute the pipe config when moving
9937 * just the lvds port away to another pipe the sw tracking won't match.
9938 *
9939 * Proper atomic modesets with recomputed global state will fix this.
9940 * Until then just don't check gmch state for inherited modes.
9941 */
9942 if (!PIPE_CONF_QUIRK(PIPE_CONFIG_QUIRK_INHERITED_MODE)) {
9943 PIPE_CONF_CHECK_I(gmch_pfit.control);
9944 /* pfit ratios are autocomputed by the hw on gen4+ */
9945 if (INTEL_INFO(dev)->gen < 4)
9946 PIPE_CONF_CHECK_I(gmch_pfit.pgm_ratios);
9947 PIPE_CONF_CHECK_I(gmch_pfit.lvds_border_bits);
9948 }
9949
Chris Wilsonfd4daa92013-08-27 17:04:17 +01009950 PIPE_CONF_CHECK_I(pch_pfit.enabled);
9951 if (current_config->pch_pfit.enabled) {
9952 PIPE_CONF_CHECK_I(pch_pfit.pos);
9953 PIPE_CONF_CHECK_I(pch_pfit.size);
9954 }
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02009955
Jesse Barnese59150d2014-01-07 13:30:45 -08009956 /* BDW+ don't expose a synchronous way to read the state */
9957 if (IS_HASWELL(dev))
9958 PIPE_CONF_CHECK_I(ips_enabled);
Paulo Zanoni42db64e2013-05-31 16:33:22 -03009959
Ville Syrjälä282740f2013-09-04 18:30:03 +03009960 PIPE_CONF_CHECK_I(double_wide);
9961
Daniel Vetterc0d43d62013-06-07 23:11:08 +02009962 PIPE_CONF_CHECK_I(shared_dpll);
Daniel Vetter66e985c2013-06-05 13:34:20 +02009963 PIPE_CONF_CHECK_X(dpll_hw_state.dpll);
Daniel Vetter8bcc2792013-06-05 13:34:28 +02009964 PIPE_CONF_CHECK_X(dpll_hw_state.dpll_md);
Daniel Vetter66e985c2013-06-05 13:34:20 +02009965 PIPE_CONF_CHECK_X(dpll_hw_state.fp0);
9966 PIPE_CONF_CHECK_X(dpll_hw_state.fp1);
Daniel Vetterc0d43d62013-06-07 23:11:08 +02009967
Ville Syrjälä42571ae2013-09-06 23:29:00 +03009968 if (IS_G4X(dev) || INTEL_INFO(dev)->gen >= 5)
9969 PIPE_CONF_CHECK_I(pipe_bpp);
9970
Jesse Barnesa9a7e982014-01-20 14:18:04 -08009971 PIPE_CONF_CHECK_CLOCK_FUZZY(adjusted_mode.crtc_clock);
9972 PIPE_CONF_CHECK_CLOCK_FUZZY(port_clock);
Ville Syrjälä5e550652013-09-06 23:29:07 +03009973
Daniel Vetter66e985c2013-06-05 13:34:20 +02009974#undef PIPE_CONF_CHECK_X
Daniel Vetter08a24032013-04-19 11:25:34 +02009975#undef PIPE_CONF_CHECK_I
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02009976#undef PIPE_CONF_CHECK_FLAGS
Ville Syrjälä5e550652013-09-06 23:29:07 +03009977#undef PIPE_CONF_CHECK_CLOCK_FUZZY
Daniel Vetterbb760062013-06-06 14:55:52 +02009978#undef PIPE_CONF_QUIRK
Daniel Vetter627eb5a2013-04-29 19:33:42 +02009979
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01009980 return true;
9981}
9982
Daniel Vetter91d1b4b2013-06-05 13:34:18 +02009983static void
9984check_connector_state(struct drm_device *dev)
Daniel Vetter8af6cf82012-07-10 09:50:11 +02009985{
Daniel Vetter8af6cf82012-07-10 09:50:11 +02009986 struct intel_connector *connector;
9987
9988 list_for_each_entry(connector, &dev->mode_config.connector_list,
9989 base.head) {
9990 /* This also checks the encoder/connector hw state with the
9991 * ->get_hw_state callbacks. */
9992 intel_connector_check_state(connector);
9993
9994 WARN(&connector->new_encoder->base != connector->base.encoder,
9995 "connector's staged encoder doesn't match current encoder\n");
9996 }
Daniel Vetter91d1b4b2013-06-05 13:34:18 +02009997}
9998
9999static void
10000check_encoder_state(struct drm_device *dev)
10001{
10002 struct intel_encoder *encoder;
10003 struct intel_connector *connector;
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010004
10005 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
10006 base.head) {
10007 bool enabled = false;
10008 bool active = false;
10009 enum pipe pipe, tracked_pipe;
10010
10011 DRM_DEBUG_KMS("[ENCODER:%d:%s]\n",
10012 encoder->base.base.id,
10013 drm_get_encoder_name(&encoder->base));
10014
10015 WARN(&encoder->new_crtc->base != encoder->base.crtc,
10016 "encoder's stage crtc doesn't match current crtc\n");
10017 WARN(encoder->connectors_active && !encoder->base.crtc,
10018 "encoder's active_connectors set, but no crtc\n");
10019
10020 list_for_each_entry(connector, &dev->mode_config.connector_list,
10021 base.head) {
10022 if (connector->base.encoder != &encoder->base)
10023 continue;
10024 enabled = true;
10025 if (connector->base.dpms != DRM_MODE_DPMS_OFF)
10026 active = true;
10027 }
10028 WARN(!!encoder->base.crtc != enabled,
10029 "encoder's enabled state mismatch "
10030 "(expected %i, found %i)\n",
10031 !!encoder->base.crtc, enabled);
10032 WARN(active && !encoder->base.crtc,
10033 "active encoder with no crtc\n");
10034
10035 WARN(encoder->connectors_active != active,
10036 "encoder's computed active state doesn't match tracked active state "
10037 "(expected %i, found %i)\n", active, encoder->connectors_active);
10038
10039 active = encoder->get_hw_state(encoder, &pipe);
10040 WARN(active != encoder->connectors_active,
10041 "encoder's hw state doesn't match sw tracking "
10042 "(expected %i, found %i)\n",
10043 encoder->connectors_active, active);
10044
10045 if (!encoder->base.crtc)
10046 continue;
10047
10048 tracked_pipe = to_intel_crtc(encoder->base.crtc)->pipe;
10049 WARN(active && pipe != tracked_pipe,
10050 "active encoder's pipe doesn't match"
10051 "(expected %i, found %i)\n",
10052 tracked_pipe, pipe);
10053
10054 }
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020010055}
10056
10057static void
10058check_crtc_state(struct drm_device *dev)
10059{
Jani Nikulafbee40d2014-03-31 14:27:18 +030010060 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020010061 struct intel_crtc *crtc;
10062 struct intel_encoder *encoder;
10063 struct intel_crtc_config pipe_config;
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010064
Damien Lespiaud3fcc802014-05-13 23:32:22 +010010065 for_each_intel_crtc(dev, crtc) {
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010066 bool enabled = false;
10067 bool active = false;
10068
Jesse Barnes045ac3b2013-05-14 17:08:26 -070010069 memset(&pipe_config, 0, sizeof(pipe_config));
10070
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010071 DRM_DEBUG_KMS("[CRTC:%d]\n",
10072 crtc->base.base.id);
10073
10074 WARN(crtc->active && !crtc->base.enabled,
10075 "active crtc, but not enabled in sw tracking\n");
10076
10077 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
10078 base.head) {
10079 if (encoder->base.crtc != &crtc->base)
10080 continue;
10081 enabled = true;
10082 if (encoder->connectors_active)
10083 active = true;
10084 }
Daniel Vetter6c49f242013-06-06 12:45:25 +020010085
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010086 WARN(active != crtc->active,
10087 "crtc's computed active state doesn't match tracked active state "
10088 "(expected %i, found %i)\n", active, crtc->active);
10089 WARN(enabled != crtc->base.enabled,
10090 "crtc's computed enabled state doesn't match tracked enabled state "
10091 "(expected %i, found %i)\n", enabled, crtc->base.enabled);
10092
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010010093 active = dev_priv->display.get_pipe_config(crtc,
10094 &pipe_config);
Daniel Vetterd62cf622013-05-29 10:41:29 +020010095
10096 /* hw state is inconsistent with the pipe A quirk */
10097 if (crtc->pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE)
10098 active = crtc->active;
10099
Daniel Vetter6c49f242013-06-06 12:45:25 +020010100 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
10101 base.head) {
Ville Syrjälä3eaba512013-08-05 17:57:48 +030010102 enum pipe pipe;
Daniel Vetter6c49f242013-06-06 12:45:25 +020010103 if (encoder->base.crtc != &crtc->base)
10104 continue;
Daniel Vetter1d37b682013-11-18 09:00:59 +010010105 if (encoder->get_hw_state(encoder, &pipe))
Daniel Vetter6c49f242013-06-06 12:45:25 +020010106 encoder->get_config(encoder, &pipe_config);
10107 }
10108
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010010109 WARN(crtc->active != active,
10110 "crtc active state doesn't match with hw state "
10111 "(expected %i, found %i)\n", crtc->active, active);
10112
Daniel Vetterc0b03412013-05-28 12:05:54 +020010113 if (active &&
10114 !intel_pipe_config_compare(dev, &crtc->config, &pipe_config)) {
10115 WARN(1, "pipe state doesn't match!\n");
10116 intel_dump_pipe_config(crtc, &pipe_config,
10117 "[hw state]");
10118 intel_dump_pipe_config(crtc, &crtc->config,
10119 "[sw state]");
10120 }
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010121 }
10122}
10123
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020010124static void
10125check_shared_dpll_state(struct drm_device *dev)
10126{
Jani Nikulafbee40d2014-03-31 14:27:18 +030010127 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020010128 struct intel_crtc *crtc;
10129 struct intel_dpll_hw_state dpll_hw_state;
10130 int i;
Daniel Vetter53589012013-06-05 13:34:16 +020010131
10132 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
10133 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
10134 int enabled_crtcs = 0, active_crtcs = 0;
10135 bool active;
10136
10137 memset(&dpll_hw_state, 0, sizeof(dpll_hw_state));
10138
10139 DRM_DEBUG_KMS("%s\n", pll->name);
10140
10141 active = pll->get_hw_state(dev_priv, pll, &dpll_hw_state);
10142
10143 WARN(pll->active > pll->refcount,
10144 "more active pll users than references: %i vs %i\n",
10145 pll->active, pll->refcount);
10146 WARN(pll->active && !pll->on,
10147 "pll in active use but not on in sw tracking\n");
Daniel Vetter35c95372013-07-17 06:55:04 +020010148 WARN(pll->on && !pll->active,
10149 "pll in on but not on in use in sw tracking\n");
Daniel Vetter53589012013-06-05 13:34:16 +020010150 WARN(pll->on != active,
10151 "pll on state mismatch (expected %i, found %i)\n",
10152 pll->on, active);
10153
Damien Lespiaud3fcc802014-05-13 23:32:22 +010010154 for_each_intel_crtc(dev, crtc) {
Daniel Vetter53589012013-06-05 13:34:16 +020010155 if (crtc->base.enabled && intel_crtc_to_shared_dpll(crtc) == pll)
10156 enabled_crtcs++;
10157 if (crtc->active && intel_crtc_to_shared_dpll(crtc) == pll)
10158 active_crtcs++;
10159 }
10160 WARN(pll->active != active_crtcs,
10161 "pll active crtcs mismatch (expected %i, found %i)\n",
10162 pll->active, active_crtcs);
10163 WARN(pll->refcount != enabled_crtcs,
10164 "pll enabled crtcs mismatch (expected %i, found %i)\n",
10165 pll->refcount, enabled_crtcs);
Daniel Vetter66e985c2013-06-05 13:34:20 +020010166
10167 WARN(pll->on && memcmp(&pll->hw_state, &dpll_hw_state,
10168 sizeof(dpll_hw_state)),
10169 "pll hw state mismatch\n");
Daniel Vetter53589012013-06-05 13:34:16 +020010170 }
Daniel Vettera6778b32012-07-02 09:56:42 +020010171}
10172
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020010173void
10174intel_modeset_check_state(struct drm_device *dev)
10175{
10176 check_connector_state(dev);
10177 check_encoder_state(dev);
10178 check_crtc_state(dev);
10179 check_shared_dpll_state(dev);
10180}
10181
Ville Syrjälä18442d02013-09-13 16:00:08 +030010182void ironlake_check_encoder_dotclock(const struct intel_crtc_config *pipe_config,
10183 int dotclock)
10184{
10185 /*
10186 * FDI already provided one idea for the dotclock.
10187 * Yell if the encoder disagrees.
10188 */
Damien Lespiau241bfc32013-09-25 16:45:37 +010010189 WARN(!intel_fuzzy_clock_check(pipe_config->adjusted_mode.crtc_clock, dotclock),
Ville Syrjälä18442d02013-09-13 16:00:08 +030010190 "FDI dotclock and encoder dotclock mismatch, fdi: %i, encoder: %i\n",
Damien Lespiau241bfc32013-09-25 16:45:37 +010010191 pipe_config->adjusted_mode.crtc_clock, dotclock);
Ville Syrjälä18442d02013-09-13 16:00:08 +030010192}
10193
Daniel Vetterf30da182013-04-11 20:22:50 +020010194static int __intel_set_mode(struct drm_crtc *crtc,
10195 struct drm_display_mode *mode,
10196 int x, int y, struct drm_framebuffer *fb)
Daniel Vettera6778b32012-07-02 09:56:42 +020010197{
10198 struct drm_device *dev = crtc->dev;
Jani Nikulafbee40d2014-03-31 14:27:18 +030010199 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä4b4b9232013-10-26 17:59:30 +030010200 struct drm_display_mode *saved_mode;
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010010201 struct intel_crtc_config *pipe_config = NULL;
Daniel Vetter25c5b262012-07-08 22:08:04 +020010202 struct intel_crtc *intel_crtc;
10203 unsigned disable_pipes, prepare_pipes, modeset_pipes;
Chris Wilsonc0c36b942012-12-19 16:08:43 +000010204 int ret = 0;
Daniel Vettera6778b32012-07-02 09:56:42 +020010205
Ville Syrjälä4b4b9232013-10-26 17:59:30 +030010206 saved_mode = kmalloc(sizeof(*saved_mode), GFP_KERNEL);
Chris Wilsonc0c36b942012-12-19 16:08:43 +000010207 if (!saved_mode)
10208 return -ENOMEM;
Daniel Vettera6778b32012-07-02 09:56:42 +020010209
Daniel Vettere2e1ed42012-07-08 21:14:38 +020010210 intel_modeset_affected_pipes(crtc, &modeset_pipes,
Daniel Vetter25c5b262012-07-08 22:08:04 +020010211 &prepare_pipes, &disable_pipes);
10212
Tim Gardner3ac18232012-12-07 07:54:26 -070010213 *saved_mode = crtc->mode;
Daniel Vettera6778b32012-07-02 09:56:42 +020010214
Daniel Vetter25c5b262012-07-08 22:08:04 +020010215 /* Hack: Because we don't (yet) support global modeset on multiple
10216 * crtcs, we don't keep track of the new mode for more than one crtc.
10217 * Hence simply check whether any bit is set in modeset_pipes in all the
10218 * pieces of code that are not yet converted to deal with mutliple crtcs
10219 * changing their mode at the same time. */
Daniel Vetter25c5b262012-07-08 22:08:04 +020010220 if (modeset_pipes) {
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010221 pipe_config = intel_modeset_pipe_config(crtc, fb, mode);
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010010222 if (IS_ERR(pipe_config)) {
10223 ret = PTR_ERR(pipe_config);
10224 pipe_config = NULL;
10225
Tim Gardner3ac18232012-12-07 07:54:26 -070010226 goto out;
Daniel Vetter25c5b262012-07-08 22:08:04 +020010227 }
Daniel Vetterc0b03412013-05-28 12:05:54 +020010228 intel_dump_pipe_config(to_intel_crtc(crtc), pipe_config,
10229 "[modeset]");
Ville Syrjälä50741ab2014-01-10 11:28:07 +020010230 to_intel_crtc(crtc)->new_config = pipe_config;
Daniel Vettera6778b32012-07-02 09:56:42 +020010231 }
10232
Jesse Barnes30a970c2013-11-04 13:48:12 -080010233 /*
10234 * See if the config requires any additional preparation, e.g.
10235 * to adjust global state with pipes off. We need to do this
10236 * here so we can get the modeset_pipe updated config for the new
10237 * mode set on this crtc. For other crtcs we need to use the
10238 * adjusted_mode bits in the crtc directly.
10239 */
Ville Syrjäläc164f832013-11-05 22:34:12 +020010240 if (IS_VALLEYVIEW(dev)) {
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +020010241 valleyview_modeset_global_pipes(dev, &prepare_pipes);
Jesse Barnes30a970c2013-11-04 13:48:12 -080010242
Ville Syrjäläc164f832013-11-05 22:34:12 +020010243 /* may have added more to prepare_pipes than we should */
10244 prepare_pipes &= ~disable_pipes;
10245 }
10246
Daniel Vetter460da9162013-03-27 00:44:51 +010010247 for_each_intel_crtc_masked(dev, disable_pipes, intel_crtc)
10248 intel_crtc_disable(&intel_crtc->base);
10249
Daniel Vetterea9d7582012-07-10 10:42:52 +020010250 for_each_intel_crtc_masked(dev, prepare_pipes, intel_crtc) {
10251 if (intel_crtc->base.enabled)
10252 dev_priv->display.crtc_disable(&intel_crtc->base);
10253 }
Daniel Vettera6778b32012-07-02 09:56:42 +020010254
Daniel Vetter6c4c86f2012-09-10 21:58:30 +020010255 /* crtc->mode is already used by the ->mode_set callbacks, hence we need
10256 * to set it here already despite that we pass it down the callchain.
10257 */
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010010258 if (modeset_pipes) {
Daniel Vetter25c5b262012-07-08 22:08:04 +020010259 crtc->mode = *mode;
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010010260 /* mode_set/enable/disable functions rely on a correct pipe
10261 * config. */
10262 to_intel_crtc(crtc)->config = *pipe_config;
Ville Syrjälä50741ab2014-01-10 11:28:07 +020010263 to_intel_crtc(crtc)->new_config = &to_intel_crtc(crtc)->config;
Ville Syrjäläc326c0a2013-10-28 12:53:41 +020010264
10265 /*
10266 * Calculate and store various constants which
10267 * are later needed by vblank and swap-completion
10268 * timestamping. They are derived from true hwmode.
10269 */
10270 drm_calc_timestamping_constants(crtc,
10271 &pipe_config->adjusted_mode);
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010010272 }
Daniel Vetter7758a112012-07-08 19:40:39 +020010273
Daniel Vetterea9d7582012-07-10 10:42:52 +020010274 /* Only after disabling all output pipelines that will be changed can we
10275 * update the the output configuration. */
10276 intel_modeset_update_state(dev, prepare_pipes);
10277
Daniel Vetter47fab732012-10-26 10:58:18 +020010278 if (dev_priv->display.modeset_global_resources)
10279 dev_priv->display.modeset_global_resources(dev);
10280
Daniel Vettera6778b32012-07-02 09:56:42 +020010281 /* Set up the DPLL and any encoders state that needs to adjust or depend
10282 * on the DPLL.
10283 */
Daniel Vetter25c5b262012-07-08 22:08:04 +020010284 for_each_intel_crtc_masked(dev, modeset_pipes, intel_crtc) {
Daniel Vetter4c107942014-04-24 23:55:05 +020010285 struct drm_framebuffer *old_fb;
10286
10287 mutex_lock(&dev->struct_mutex);
10288 ret = intel_pin_and_fence_fb_obj(dev,
10289 to_intel_framebuffer(fb)->obj,
10290 NULL);
10291 if (ret != 0) {
10292 DRM_ERROR("pin & fence failed\n");
10293 mutex_unlock(&dev->struct_mutex);
10294 goto done;
10295 }
10296 old_fb = crtc->primary->fb;
10297 if (old_fb)
10298 intel_unpin_fb_obj(to_intel_framebuffer(old_fb)->obj);
10299 mutex_unlock(&dev->struct_mutex);
10300
10301 crtc->primary->fb = fb;
10302 crtc->x = x;
10303 crtc->y = y;
10304
Daniel Vetter4271b752014-04-24 23:55:00 +020010305 ret = dev_priv->display.crtc_mode_set(&intel_crtc->base,
10306 x, y, fb);
Chris Wilsonc0c36b942012-12-19 16:08:43 +000010307 if (ret)
10308 goto done;
Daniel Vettera6778b32012-07-02 09:56:42 +020010309 }
10310
10311 /* Now enable the clocks, plane, pipe, and connectors that we set up. */
Daniel Vetter25c5b262012-07-08 22:08:04 +020010312 for_each_intel_crtc_masked(dev, prepare_pipes, intel_crtc)
10313 dev_priv->display.crtc_enable(&intel_crtc->base);
Daniel Vettera6778b32012-07-02 09:56:42 +020010314
Daniel Vettera6778b32012-07-02 09:56:42 +020010315 /* FIXME: add subpixel order */
10316done:
Ville Syrjälä4b4b9232013-10-26 17:59:30 +030010317 if (ret && crtc->enabled)
Tim Gardner3ac18232012-12-07 07:54:26 -070010318 crtc->mode = *saved_mode;
Daniel Vettera6778b32012-07-02 09:56:42 +020010319
Tim Gardner3ac18232012-12-07 07:54:26 -070010320out:
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010010321 kfree(pipe_config);
Tim Gardner3ac18232012-12-07 07:54:26 -070010322 kfree(saved_mode);
Daniel Vettera6778b32012-07-02 09:56:42 +020010323 return ret;
10324}
10325
Damien Lespiaue7457a92013-08-08 22:28:59 +010010326static int intel_set_mode(struct drm_crtc *crtc,
10327 struct drm_display_mode *mode,
10328 int x, int y, struct drm_framebuffer *fb)
Daniel Vetterf30da182013-04-11 20:22:50 +020010329{
10330 int ret;
10331
10332 ret = __intel_set_mode(crtc, mode, x, y, fb);
10333
10334 if (ret == 0)
10335 intel_modeset_check_state(crtc->dev);
10336
10337 return ret;
10338}
10339
Chris Wilsonc0c36b942012-12-19 16:08:43 +000010340void intel_crtc_restore_mode(struct drm_crtc *crtc)
10341{
Matt Roperf4510a22014-04-01 15:22:40 -070010342 intel_set_mode(crtc, &crtc->mode, crtc->x, crtc->y, crtc->primary->fb);
Chris Wilsonc0c36b942012-12-19 16:08:43 +000010343}
10344
Daniel Vetter25c5b262012-07-08 22:08:04 +020010345#undef for_each_intel_crtc_masked
10346
Daniel Vetterd9e55602012-07-04 22:16:09 +020010347static void intel_set_config_free(struct intel_set_config *config)
10348{
10349 if (!config)
10350 return;
10351
Daniel Vetter1aa4b622012-07-05 16:20:48 +020010352 kfree(config->save_connector_encoders);
10353 kfree(config->save_encoder_crtcs);
Ville Syrjälä76688512014-01-10 11:28:06 +020010354 kfree(config->save_crtc_enabled);
Daniel Vetterd9e55602012-07-04 22:16:09 +020010355 kfree(config);
10356}
10357
Daniel Vetter85f9eb72012-07-04 22:24:08 +020010358static int intel_set_config_save_state(struct drm_device *dev,
10359 struct intel_set_config *config)
10360{
Ville Syrjälä76688512014-01-10 11:28:06 +020010361 struct drm_crtc *crtc;
Daniel Vetter85f9eb72012-07-04 22:24:08 +020010362 struct drm_encoder *encoder;
10363 struct drm_connector *connector;
10364 int count;
10365
Ville Syrjälä76688512014-01-10 11:28:06 +020010366 config->save_crtc_enabled =
10367 kcalloc(dev->mode_config.num_crtc,
10368 sizeof(bool), GFP_KERNEL);
10369 if (!config->save_crtc_enabled)
10370 return -ENOMEM;
10371
Daniel Vetter1aa4b622012-07-05 16:20:48 +020010372 config->save_encoder_crtcs =
10373 kcalloc(dev->mode_config.num_encoder,
10374 sizeof(struct drm_crtc *), GFP_KERNEL);
10375 if (!config->save_encoder_crtcs)
Daniel Vetter85f9eb72012-07-04 22:24:08 +020010376 return -ENOMEM;
10377
Daniel Vetter1aa4b622012-07-05 16:20:48 +020010378 config->save_connector_encoders =
10379 kcalloc(dev->mode_config.num_connector,
10380 sizeof(struct drm_encoder *), GFP_KERNEL);
10381 if (!config->save_connector_encoders)
Daniel Vetter85f9eb72012-07-04 22:24:08 +020010382 return -ENOMEM;
10383
10384 /* Copy data. Note that driver private data is not affected.
10385 * Should anything bad happen only the expected state is
10386 * restored, not the drivers personal bookkeeping.
10387 */
10388 count = 0;
Damien Lespiau70e1e0e2014-05-13 23:32:24 +010010389 for_each_crtc(dev, crtc) {
Ville Syrjälä76688512014-01-10 11:28:06 +020010390 config->save_crtc_enabled[count++] = crtc->enabled;
10391 }
10392
10393 count = 0;
Daniel Vetter85f9eb72012-07-04 22:24:08 +020010394 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
Daniel Vetter1aa4b622012-07-05 16:20:48 +020010395 config->save_encoder_crtcs[count++] = encoder->crtc;
Daniel Vetter85f9eb72012-07-04 22:24:08 +020010396 }
10397
10398 count = 0;
10399 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
Daniel Vetter1aa4b622012-07-05 16:20:48 +020010400 config->save_connector_encoders[count++] = connector->encoder;
Daniel Vetter85f9eb72012-07-04 22:24:08 +020010401 }
10402
10403 return 0;
10404}
10405
10406static void intel_set_config_restore_state(struct drm_device *dev,
10407 struct intel_set_config *config)
10408{
Ville Syrjälä76688512014-01-10 11:28:06 +020010409 struct intel_crtc *crtc;
Daniel Vetter9a935852012-07-05 22:34:27 +020010410 struct intel_encoder *encoder;
10411 struct intel_connector *connector;
Daniel Vetter85f9eb72012-07-04 22:24:08 +020010412 int count;
10413
10414 count = 0;
Damien Lespiaud3fcc802014-05-13 23:32:22 +010010415 for_each_intel_crtc(dev, crtc) {
Ville Syrjälä76688512014-01-10 11:28:06 +020010416 crtc->new_enabled = config->save_crtc_enabled[count++];
Ville Syrjälä7bd0a8e2014-01-14 14:31:38 +020010417
10418 if (crtc->new_enabled)
10419 crtc->new_config = &crtc->config;
10420 else
10421 crtc->new_config = NULL;
Ville Syrjälä76688512014-01-10 11:28:06 +020010422 }
10423
10424 count = 0;
Daniel Vetter9a935852012-07-05 22:34:27 +020010425 list_for_each_entry(encoder, &dev->mode_config.encoder_list, base.head) {
10426 encoder->new_crtc =
10427 to_intel_crtc(config->save_encoder_crtcs[count++]);
Daniel Vetter85f9eb72012-07-04 22:24:08 +020010428 }
10429
10430 count = 0;
Daniel Vetter9a935852012-07-05 22:34:27 +020010431 list_for_each_entry(connector, &dev->mode_config.connector_list, base.head) {
10432 connector->new_encoder =
10433 to_intel_encoder(config->save_connector_encoders[count++]);
Daniel Vetter85f9eb72012-07-04 22:24:08 +020010434 }
10435}
10436
Imre Deake3de42b2013-05-03 19:44:07 +020010437static bool
Chris Wilson2e57f472013-07-17 12:14:40 +010010438is_crtc_connector_off(struct drm_mode_set *set)
Imre Deake3de42b2013-05-03 19:44:07 +020010439{
10440 int i;
10441
Chris Wilson2e57f472013-07-17 12:14:40 +010010442 if (set->num_connectors == 0)
10443 return false;
10444
10445 if (WARN_ON(set->connectors == NULL))
10446 return false;
10447
10448 for (i = 0; i < set->num_connectors; i++)
10449 if (set->connectors[i]->encoder &&
10450 set->connectors[i]->encoder->crtc == set->crtc &&
10451 set->connectors[i]->dpms != DRM_MODE_DPMS_ON)
Imre Deake3de42b2013-05-03 19:44:07 +020010452 return true;
10453
10454 return false;
10455}
10456
Daniel Vetter5e2b5842012-07-04 22:41:29 +020010457static void
10458intel_set_config_compute_mode_changes(struct drm_mode_set *set,
10459 struct intel_set_config *config)
10460{
10461
10462 /* We should be able to check here if the fb has the same properties
10463 * and then just flip_or_move it */
Chris Wilson2e57f472013-07-17 12:14:40 +010010464 if (is_crtc_connector_off(set)) {
10465 config->mode_changed = true;
Matt Roperf4510a22014-04-01 15:22:40 -070010466 } else if (set->crtc->primary->fb != set->fb) {
Daniel Vetter5e2b5842012-07-04 22:41:29 +020010467 /* If we have no fb then treat it as a full mode set */
Matt Roperf4510a22014-04-01 15:22:40 -070010468 if (set->crtc->primary->fb == NULL) {
Jesse Barnes319d9822013-06-26 01:38:19 +030010469 struct intel_crtc *intel_crtc =
10470 to_intel_crtc(set->crtc);
10471
Jani Nikulad330a952014-01-21 11:24:25 +020010472 if (intel_crtc->active && i915.fastboot) {
Jesse Barnes319d9822013-06-26 01:38:19 +030010473 DRM_DEBUG_KMS("crtc has no fb, will flip\n");
10474 config->fb_changed = true;
10475 } else {
10476 DRM_DEBUG_KMS("inactive crtc, full mode set\n");
10477 config->mode_changed = true;
10478 }
Daniel Vetter5e2b5842012-07-04 22:41:29 +020010479 } else if (set->fb == NULL) {
10480 config->mode_changed = true;
Daniel Vetter72f49012013-03-28 16:01:35 +010010481 } else if (set->fb->pixel_format !=
Matt Roperf4510a22014-04-01 15:22:40 -070010482 set->crtc->primary->fb->pixel_format) {
Daniel Vetter5e2b5842012-07-04 22:41:29 +020010483 config->mode_changed = true;
Imre Deake3de42b2013-05-03 19:44:07 +020010484 } else {
Daniel Vetter5e2b5842012-07-04 22:41:29 +020010485 config->fb_changed = true;
Imre Deake3de42b2013-05-03 19:44:07 +020010486 }
Daniel Vetter5e2b5842012-07-04 22:41:29 +020010487 }
10488
Daniel Vetter835c5872012-07-10 18:11:08 +020010489 if (set->fb && (set->x != set->crtc->x || set->y != set->crtc->y))
Daniel Vetter5e2b5842012-07-04 22:41:29 +020010490 config->fb_changed = true;
10491
10492 if (set->mode && !drm_mode_equal(set->mode, &set->crtc->mode)) {
10493 DRM_DEBUG_KMS("modes are different, full mode set\n");
10494 drm_mode_debug_printmodeline(&set->crtc->mode);
10495 drm_mode_debug_printmodeline(set->mode);
10496 config->mode_changed = true;
10497 }
Chris Wilsona1d95702013-08-13 18:48:47 +010010498
10499 DRM_DEBUG_KMS("computed changes for [CRTC:%d], mode_changed=%d, fb_changed=%d\n",
10500 set->crtc->base.id, config->mode_changed, config->fb_changed);
Daniel Vetter5e2b5842012-07-04 22:41:29 +020010501}
10502
Daniel Vetter2e431052012-07-04 22:42:15 +020010503static int
Daniel Vetter9a935852012-07-05 22:34:27 +020010504intel_modeset_stage_output_state(struct drm_device *dev,
10505 struct drm_mode_set *set,
10506 struct intel_set_config *config)
Daniel Vetter50f56112012-07-02 09:35:43 +020010507{
Daniel Vetter9a935852012-07-05 22:34:27 +020010508 struct intel_connector *connector;
10509 struct intel_encoder *encoder;
Ville Syrjälä76688512014-01-10 11:28:06 +020010510 struct intel_crtc *crtc;
Paulo Zanonif3f08572013-08-12 14:56:53 -030010511 int ro;
Daniel Vetter50f56112012-07-02 09:35:43 +020010512
Damien Lespiau9abdda72013-02-13 13:29:23 +000010513 /* The upper layers ensure that we either disable a crtc or have a list
Daniel Vetter9a935852012-07-05 22:34:27 +020010514 * of connectors. For paranoia, double-check this. */
10515 WARN_ON(!set->fb && (set->num_connectors != 0));
10516 WARN_ON(set->fb && (set->num_connectors == 0));
10517
Daniel Vetter9a935852012-07-05 22:34:27 +020010518 list_for_each_entry(connector, &dev->mode_config.connector_list,
10519 base.head) {
10520 /* Otherwise traverse passed in connector list and get encoders
10521 * for them. */
Daniel Vetter50f56112012-07-02 09:35:43 +020010522 for (ro = 0; ro < set->num_connectors; ro++) {
Daniel Vetter9a935852012-07-05 22:34:27 +020010523 if (set->connectors[ro] == &connector->base) {
10524 connector->new_encoder = connector->encoder;
Daniel Vetter50f56112012-07-02 09:35:43 +020010525 break;
10526 }
10527 }
10528
Daniel Vetter9a935852012-07-05 22:34:27 +020010529 /* If we disable the crtc, disable all its connectors. Also, if
10530 * the connector is on the changing crtc but not on the new
10531 * connector list, disable it. */
10532 if ((!set->fb || ro == set->num_connectors) &&
10533 connector->base.encoder &&
10534 connector->base.encoder->crtc == set->crtc) {
10535 connector->new_encoder = NULL;
10536
10537 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] to [NOCRTC]\n",
10538 connector->base.base.id,
10539 drm_get_connector_name(&connector->base));
10540 }
10541
10542
10543 if (&connector->new_encoder->base != connector->base.encoder) {
Daniel Vetter50f56112012-07-02 09:35:43 +020010544 DRM_DEBUG_KMS("encoder changed, full mode switch\n");
Daniel Vetter5e2b5842012-07-04 22:41:29 +020010545 config->mode_changed = true;
Daniel Vetter50f56112012-07-02 09:35:43 +020010546 }
Daniel Vetter9a935852012-07-05 22:34:27 +020010547 }
10548 /* connector->new_encoder is now updated for all connectors. */
10549
10550 /* Update crtc of enabled connectors. */
Daniel Vetter9a935852012-07-05 22:34:27 +020010551 list_for_each_entry(connector, &dev->mode_config.connector_list,
10552 base.head) {
Ville Syrjälä76688512014-01-10 11:28:06 +020010553 struct drm_crtc *new_crtc;
10554
Daniel Vetter9a935852012-07-05 22:34:27 +020010555 if (!connector->new_encoder)
Daniel Vetter50f56112012-07-02 09:35:43 +020010556 continue;
10557
Daniel Vetter9a935852012-07-05 22:34:27 +020010558 new_crtc = connector->new_encoder->base.crtc;
Daniel Vetter50f56112012-07-02 09:35:43 +020010559
10560 for (ro = 0; ro < set->num_connectors; ro++) {
Daniel Vetter9a935852012-07-05 22:34:27 +020010561 if (set->connectors[ro] == &connector->base)
Daniel Vetter50f56112012-07-02 09:35:43 +020010562 new_crtc = set->crtc;
10563 }
10564
10565 /* Make sure the new CRTC will work with the encoder */
Thierry Reding14509912014-01-13 12:00:22 +010010566 if (!drm_encoder_crtc_ok(&connector->new_encoder->base,
10567 new_crtc)) {
Daniel Vetter5e2b5842012-07-04 22:41:29 +020010568 return -EINVAL;
Daniel Vetter50f56112012-07-02 09:35:43 +020010569 }
Daniel Vetter9a935852012-07-05 22:34:27 +020010570 connector->encoder->new_crtc = to_intel_crtc(new_crtc);
10571
10572 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] to [CRTC:%d]\n",
10573 connector->base.base.id,
10574 drm_get_connector_name(&connector->base),
10575 new_crtc->base.id);
10576 }
10577
10578 /* Check for any encoders that needs to be disabled. */
10579 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
10580 base.head) {
Paulo Zanoni5a65f352014-01-07 14:55:53 -020010581 int num_connectors = 0;
Daniel Vetter9a935852012-07-05 22:34:27 +020010582 list_for_each_entry(connector,
10583 &dev->mode_config.connector_list,
10584 base.head) {
10585 if (connector->new_encoder == encoder) {
10586 WARN_ON(!connector->new_encoder->new_crtc);
Paulo Zanoni5a65f352014-01-07 14:55:53 -020010587 num_connectors++;
Daniel Vetter9a935852012-07-05 22:34:27 +020010588 }
10589 }
Paulo Zanoni5a65f352014-01-07 14:55:53 -020010590
10591 if (num_connectors == 0)
10592 encoder->new_crtc = NULL;
10593 else if (num_connectors > 1)
10594 return -EINVAL;
10595
Daniel Vetter9a935852012-07-05 22:34:27 +020010596 /* Only now check for crtc changes so we don't miss encoders
10597 * that will be disabled. */
10598 if (&encoder->new_crtc->base != encoder->base.crtc) {
Daniel Vetter50f56112012-07-02 09:35:43 +020010599 DRM_DEBUG_KMS("crtc changed, full mode switch\n");
Daniel Vetter5e2b5842012-07-04 22:41:29 +020010600 config->mode_changed = true;
Daniel Vetter50f56112012-07-02 09:35:43 +020010601 }
10602 }
Daniel Vetter9a935852012-07-05 22:34:27 +020010603 /* Now we've also updated encoder->new_crtc for all encoders. */
Daniel Vetter50f56112012-07-02 09:35:43 +020010604
Damien Lespiaud3fcc802014-05-13 23:32:22 +010010605 for_each_intel_crtc(dev, crtc) {
Ville Syrjälä76688512014-01-10 11:28:06 +020010606 crtc->new_enabled = false;
10607
10608 list_for_each_entry(encoder,
10609 &dev->mode_config.encoder_list,
10610 base.head) {
10611 if (encoder->new_crtc == crtc) {
10612 crtc->new_enabled = true;
10613 break;
10614 }
10615 }
10616
10617 if (crtc->new_enabled != crtc->base.enabled) {
10618 DRM_DEBUG_KMS("crtc %sabled, full mode switch\n",
10619 crtc->new_enabled ? "en" : "dis");
10620 config->mode_changed = true;
10621 }
Ville Syrjälä7bd0a8e2014-01-14 14:31:38 +020010622
10623 if (crtc->new_enabled)
10624 crtc->new_config = &crtc->config;
10625 else
10626 crtc->new_config = NULL;
Ville Syrjälä76688512014-01-10 11:28:06 +020010627 }
10628
Daniel Vetter2e431052012-07-04 22:42:15 +020010629 return 0;
10630}
10631
Ville Syrjälä7d00a1f2014-01-10 11:28:09 +020010632static void disable_crtc_nofb(struct intel_crtc *crtc)
10633{
10634 struct drm_device *dev = crtc->base.dev;
10635 struct intel_encoder *encoder;
10636 struct intel_connector *connector;
10637
10638 DRM_DEBUG_KMS("Trying to restore without FB -> disabling pipe %c\n",
10639 pipe_name(crtc->pipe));
10640
10641 list_for_each_entry(connector, &dev->mode_config.connector_list, base.head) {
10642 if (connector->new_encoder &&
10643 connector->new_encoder->new_crtc == crtc)
10644 connector->new_encoder = NULL;
10645 }
10646
10647 list_for_each_entry(encoder, &dev->mode_config.encoder_list, base.head) {
10648 if (encoder->new_crtc == crtc)
10649 encoder->new_crtc = NULL;
10650 }
10651
10652 crtc->new_enabled = false;
Ville Syrjälä7bd0a8e2014-01-14 14:31:38 +020010653 crtc->new_config = NULL;
Ville Syrjälä7d00a1f2014-01-10 11:28:09 +020010654}
10655
Daniel Vetter2e431052012-07-04 22:42:15 +020010656static int intel_crtc_set_config(struct drm_mode_set *set)
10657{
10658 struct drm_device *dev;
Daniel Vetter2e431052012-07-04 22:42:15 +020010659 struct drm_mode_set save_set;
10660 struct intel_set_config *config;
10661 int ret;
Daniel Vetter2e431052012-07-04 22:42:15 +020010662
Daniel Vetter8d3e3752012-07-05 16:09:09 +020010663 BUG_ON(!set);
10664 BUG_ON(!set->crtc);
10665 BUG_ON(!set->crtc->helper_private);
Daniel Vetter2e431052012-07-04 22:42:15 +020010666
Daniel Vetter7e53f3a2013-01-21 10:52:17 +010010667 /* Enforce sane interface api - has been abused by the fb helper. */
10668 BUG_ON(!set->mode && set->fb);
10669 BUG_ON(set->fb && set->num_connectors == 0);
Daniel Vetter431e50f2012-07-10 17:53:42 +020010670
Daniel Vetter2e431052012-07-04 22:42:15 +020010671 if (set->fb) {
10672 DRM_DEBUG_KMS("[CRTC:%d] [FB:%d] #connectors=%d (x y) (%i %i)\n",
10673 set->crtc->base.id, set->fb->base.id,
10674 (int)set->num_connectors, set->x, set->y);
10675 } else {
10676 DRM_DEBUG_KMS("[CRTC:%d] [NOFB]\n", set->crtc->base.id);
Daniel Vetter2e431052012-07-04 22:42:15 +020010677 }
10678
10679 dev = set->crtc->dev;
10680
10681 ret = -ENOMEM;
10682 config = kzalloc(sizeof(*config), GFP_KERNEL);
10683 if (!config)
10684 goto out_config;
10685
10686 ret = intel_set_config_save_state(dev, config);
10687 if (ret)
10688 goto out_config;
10689
10690 save_set.crtc = set->crtc;
10691 save_set.mode = &set->crtc->mode;
10692 save_set.x = set->crtc->x;
10693 save_set.y = set->crtc->y;
Matt Roperf4510a22014-04-01 15:22:40 -070010694 save_set.fb = set->crtc->primary->fb;
Daniel Vetter2e431052012-07-04 22:42:15 +020010695
10696 /* Compute whether we need a full modeset, only an fb base update or no
10697 * change at all. In the future we might also check whether only the
10698 * mode changed, e.g. for LVDS where we only change the panel fitter in
10699 * such cases. */
10700 intel_set_config_compute_mode_changes(set, config);
10701
Daniel Vetter9a935852012-07-05 22:34:27 +020010702 ret = intel_modeset_stage_output_state(dev, set, config);
Daniel Vetter2e431052012-07-04 22:42:15 +020010703 if (ret)
10704 goto fail;
10705
Daniel Vetter5e2b5842012-07-04 22:41:29 +020010706 if (config->mode_changed) {
Chris Wilsonc0c36b942012-12-19 16:08:43 +000010707 ret = intel_set_mode(set->crtc, set->mode,
10708 set->x, set->y, set->fb);
Daniel Vetter5e2b5842012-07-04 22:41:29 +020010709 } else if (config->fb_changed) {
Ville Syrjälä4878cae2013-02-18 19:08:48 +020010710 intel_crtc_wait_for_pending_flips(set->crtc);
10711
Daniel Vetter4f660f42012-07-02 09:47:37 +020010712 ret = intel_pipe_set_base(set->crtc,
Daniel Vetter94352cf2012-07-05 22:51:56 +020010713 set->x, set->y, set->fb);
Jesse Barnes7ca51a32014-01-07 13:50:49 -080010714 /*
10715 * In the fastboot case this may be our only check of the
10716 * state after boot. It would be better to only do it on
10717 * the first update, but we don't have a nice way of doing that
10718 * (and really, set_config isn't used much for high freq page
10719 * flipping, so increasing its cost here shouldn't be a big
10720 * deal).
10721 */
Jani Nikulad330a952014-01-21 11:24:25 +020010722 if (i915.fastboot && ret == 0)
Jesse Barnes7ca51a32014-01-07 13:50:49 -080010723 intel_modeset_check_state(set->crtc->dev);
Daniel Vetter50f56112012-07-02 09:35:43 +020010724 }
10725
Chris Wilson2d05eae2013-05-03 17:36:25 +010010726 if (ret) {
Daniel Vetterbf67dfe2013-06-25 11:06:52 +020010727 DRM_DEBUG_KMS("failed to set mode on [CRTC:%d], err = %d\n",
10728 set->crtc->base.id, ret);
Daniel Vetter50f56112012-07-02 09:35:43 +020010729fail:
Chris Wilson2d05eae2013-05-03 17:36:25 +010010730 intel_set_config_restore_state(dev, config);
Daniel Vetter50f56112012-07-02 09:35:43 +020010731
Ville Syrjälä7d00a1f2014-01-10 11:28:09 +020010732 /*
10733 * HACK: if the pipe was on, but we didn't have a framebuffer,
10734 * force the pipe off to avoid oopsing in the modeset code
10735 * due to fb==NULL. This should only happen during boot since
10736 * we don't yet reconstruct the FB from the hardware state.
10737 */
10738 if (to_intel_crtc(save_set.crtc)->new_enabled && !save_set.fb)
10739 disable_crtc_nofb(to_intel_crtc(save_set.crtc));
10740
Chris Wilson2d05eae2013-05-03 17:36:25 +010010741 /* Try to restore the config */
10742 if (config->mode_changed &&
10743 intel_set_mode(save_set.crtc, save_set.mode,
10744 save_set.x, save_set.y, save_set.fb))
10745 DRM_ERROR("failed to restore config after modeset failure\n");
10746 }
Daniel Vetter50f56112012-07-02 09:35:43 +020010747
Daniel Vetterd9e55602012-07-04 22:16:09 +020010748out_config:
10749 intel_set_config_free(config);
Daniel Vetter50f56112012-07-02 09:35:43 +020010750 return ret;
10751}
10752
Chris Wilsonf6e5b162011-04-12 18:06:51 +010010753static const struct drm_crtc_funcs intel_crtc_funcs = {
Chris Wilsonf6e5b162011-04-12 18:06:51 +010010754 .cursor_set = intel_crtc_cursor_set,
10755 .cursor_move = intel_crtc_cursor_move,
10756 .gamma_set = intel_crtc_gamma_set,
Daniel Vetter50f56112012-07-02 09:35:43 +020010757 .set_config = intel_crtc_set_config,
Chris Wilsonf6e5b162011-04-12 18:06:51 +010010758 .destroy = intel_crtc_destroy,
10759 .page_flip = intel_crtc_page_flip,
10760};
10761
Paulo Zanoni79f689a2012-10-05 12:05:52 -030010762static void intel_cpu_pll_init(struct drm_device *dev)
10763{
Paulo Zanoniaffa9352012-11-23 15:30:39 -020010764 if (HAS_DDI(dev))
Paulo Zanoni79f689a2012-10-05 12:05:52 -030010765 intel_ddi_pll_init(dev);
10766}
10767
Daniel Vetter53589012013-06-05 13:34:16 +020010768static bool ibx_pch_dpll_get_hw_state(struct drm_i915_private *dev_priv,
10769 struct intel_shared_dpll *pll,
10770 struct intel_dpll_hw_state *hw_state)
Jesse Barnesee7b9f92012-04-20 17:11:53 +010010771{
Daniel Vetter53589012013-06-05 13:34:16 +020010772 uint32_t val;
10773
10774 val = I915_READ(PCH_DPLL(pll->id));
Daniel Vetter66e985c2013-06-05 13:34:20 +020010775 hw_state->dpll = val;
10776 hw_state->fp0 = I915_READ(PCH_FP0(pll->id));
10777 hw_state->fp1 = I915_READ(PCH_FP1(pll->id));
Daniel Vetter53589012013-06-05 13:34:16 +020010778
10779 return val & DPLL_VCO_ENABLE;
10780}
10781
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020010782static void ibx_pch_dpll_mode_set(struct drm_i915_private *dev_priv,
10783 struct intel_shared_dpll *pll)
10784{
10785 I915_WRITE(PCH_FP0(pll->id), pll->hw_state.fp0);
10786 I915_WRITE(PCH_FP1(pll->id), pll->hw_state.fp1);
10787}
10788
Daniel Vettere7b903d2013-06-05 13:34:14 +020010789static void ibx_pch_dpll_enable(struct drm_i915_private *dev_priv,
10790 struct intel_shared_dpll *pll)
10791{
Daniel Vettere7b903d2013-06-05 13:34:14 +020010792 /* PCH refclock must be enabled first */
Paulo Zanoni89eff4b2014-01-08 11:12:28 -020010793 ibx_assert_pch_refclk_enabled(dev_priv);
Daniel Vettere7b903d2013-06-05 13:34:14 +020010794
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020010795 I915_WRITE(PCH_DPLL(pll->id), pll->hw_state.dpll);
10796
10797 /* Wait for the clocks to stabilize. */
10798 POSTING_READ(PCH_DPLL(pll->id));
10799 udelay(150);
10800
10801 /* The pixel multiplier can only be updated once the
10802 * DPLL is enabled and the clocks are stable.
10803 *
10804 * So write it again.
10805 */
10806 I915_WRITE(PCH_DPLL(pll->id), pll->hw_state.dpll);
10807 POSTING_READ(PCH_DPLL(pll->id));
Daniel Vettere7b903d2013-06-05 13:34:14 +020010808 udelay(200);
10809}
10810
10811static void ibx_pch_dpll_disable(struct drm_i915_private *dev_priv,
10812 struct intel_shared_dpll *pll)
10813{
10814 struct drm_device *dev = dev_priv->dev;
10815 struct intel_crtc *crtc;
Daniel Vettere7b903d2013-06-05 13:34:14 +020010816
10817 /* Make sure no transcoder isn't still depending on us. */
Damien Lespiaud3fcc802014-05-13 23:32:22 +010010818 for_each_intel_crtc(dev, crtc) {
Daniel Vettere7b903d2013-06-05 13:34:14 +020010819 if (intel_crtc_to_shared_dpll(crtc) == pll)
10820 assert_pch_transcoder_disabled(dev_priv, crtc->pipe);
10821 }
10822
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020010823 I915_WRITE(PCH_DPLL(pll->id), 0);
10824 POSTING_READ(PCH_DPLL(pll->id));
Daniel Vettere7b903d2013-06-05 13:34:14 +020010825 udelay(200);
10826}
10827
Daniel Vetter46edb022013-06-05 13:34:12 +020010828static char *ibx_pch_dpll_names[] = {
10829 "PCH DPLL A",
10830 "PCH DPLL B",
10831};
10832
Daniel Vetter7c74ade2013-06-05 13:34:11 +020010833static void ibx_pch_dpll_init(struct drm_device *dev)
Jesse Barnesee7b9f92012-04-20 17:11:53 +010010834{
Daniel Vettere7b903d2013-06-05 13:34:14 +020010835 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesee7b9f92012-04-20 17:11:53 +010010836 int i;
10837
Daniel Vetter7c74ade2013-06-05 13:34:11 +020010838 dev_priv->num_shared_dpll = 2;
Jesse Barnesee7b9f92012-04-20 17:11:53 +010010839
Daniel Vettere72f9fb2013-06-05 13:34:06 +020010840 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
Daniel Vetter46edb022013-06-05 13:34:12 +020010841 dev_priv->shared_dplls[i].id = i;
10842 dev_priv->shared_dplls[i].name = ibx_pch_dpll_names[i];
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020010843 dev_priv->shared_dplls[i].mode_set = ibx_pch_dpll_mode_set;
Daniel Vettere7b903d2013-06-05 13:34:14 +020010844 dev_priv->shared_dplls[i].enable = ibx_pch_dpll_enable;
10845 dev_priv->shared_dplls[i].disable = ibx_pch_dpll_disable;
Daniel Vetter53589012013-06-05 13:34:16 +020010846 dev_priv->shared_dplls[i].get_hw_state =
10847 ibx_pch_dpll_get_hw_state;
Jesse Barnesee7b9f92012-04-20 17:11:53 +010010848 }
10849}
10850
Daniel Vetter7c74ade2013-06-05 13:34:11 +020010851static void intel_shared_dpll_init(struct drm_device *dev)
10852{
Daniel Vettere7b903d2013-06-05 13:34:14 +020010853 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter7c74ade2013-06-05 13:34:11 +020010854
10855 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev))
10856 ibx_pch_dpll_init(dev);
10857 else
10858 dev_priv->num_shared_dpll = 0;
10859
10860 BUG_ON(dev_priv->num_shared_dpll > I915_NUM_PLLS);
Daniel Vetter7c74ade2013-06-05 13:34:11 +020010861}
10862
Hannes Ederb358d0a2008-12-18 21:18:47 +010010863static void intel_crtc_init(struct drm_device *dev, int pipe)
Jesse Barnes79e53942008-11-07 14:24:08 -080010864{
Jani Nikulafbee40d2014-03-31 14:27:18 +030010865 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -080010866 struct intel_crtc *intel_crtc;
10867 int i;
10868
Daniel Vetter955382f2013-09-19 14:05:45 +020010869 intel_crtc = kzalloc(sizeof(*intel_crtc), GFP_KERNEL);
Jesse Barnes79e53942008-11-07 14:24:08 -080010870 if (intel_crtc == NULL)
10871 return;
10872
10873 drm_crtc_init(dev, &intel_crtc->base, &intel_crtc_funcs);
10874
10875 drm_mode_crtc_set_gamma_size(&intel_crtc->base, 256);
Jesse Barnes79e53942008-11-07 14:24:08 -080010876 for (i = 0; i < 256; i++) {
10877 intel_crtc->lut_r[i] = i;
10878 intel_crtc->lut_g[i] = i;
10879 intel_crtc->lut_b[i] = i;
10880 }
10881
Ville Syrjälä1f1c2e22013-11-28 17:30:01 +020010882 /*
10883 * On gen2/3 only plane A can do fbc, but the panel fitter and lvds port
10884 * is hooked to plane B. Hence we want plane A feeding pipe B.
10885 */
Jesse Barnes80824002009-09-10 15:28:06 -070010886 intel_crtc->pipe = pipe;
10887 intel_crtc->plane = pipe;
Daniel Vetter3a77c4c2014-01-10 08:50:12 +010010888 if (HAS_FBC(dev) && INTEL_INFO(dev)->gen < 4) {
Zhao Yakui28c97732009-10-09 11:39:41 +080010889 DRM_DEBUG_KMS("swapping pipes & planes for FBC\n");
Chris Wilsone2e767a2010-09-13 16:53:12 +010010890 intel_crtc->plane = !pipe;
Jesse Barnes80824002009-09-10 15:28:06 -070010891 }
10892
Ville Syrjälä8d7849d2014-04-29 13:35:46 +030010893 init_waitqueue_head(&intel_crtc->vbl_wait);
10894
Jesse Barnes22fd0fa2009-12-02 13:42:53 -080010895 BUG_ON(pipe >= ARRAY_SIZE(dev_priv->plane_to_crtc_mapping) ||
10896 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] != NULL);
10897 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] = &intel_crtc->base;
10898 dev_priv->pipe_to_crtc_mapping[intel_crtc->pipe] = &intel_crtc->base;
10899
Jesse Barnes79e53942008-11-07 14:24:08 -080010900 drm_crtc_helper_add(&intel_crtc->base, &intel_helper_funcs);
Jesse Barnes79e53942008-11-07 14:24:08 -080010901}
10902
Jesse Barnes752aa882013-10-31 18:55:49 +020010903enum pipe intel_get_pipe_from_connector(struct intel_connector *connector)
10904{
10905 struct drm_encoder *encoder = connector->base.encoder;
10906
10907 WARN_ON(!mutex_is_locked(&connector->base.dev->mode_config.mutex));
10908
10909 if (!encoder)
10910 return INVALID_PIPE;
10911
10912 return to_intel_crtc(encoder->crtc)->pipe;
10913}
10914
Carl Worth08d7b3d2009-04-29 14:43:54 -070010915int intel_get_pipe_from_crtc_id(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +000010916 struct drm_file *file)
Carl Worth08d7b3d2009-04-29 14:43:54 -070010917{
Carl Worth08d7b3d2009-04-29 14:43:54 -070010918 struct drm_i915_get_pipe_from_crtc_id *pipe_from_crtc_id = data;
Daniel Vetterc05422d2009-08-11 16:05:30 +020010919 struct drm_mode_object *drmmode_obj;
10920 struct intel_crtc *crtc;
Carl Worth08d7b3d2009-04-29 14:43:54 -070010921
Daniel Vetter1cff8f62012-04-24 09:55:08 +020010922 if (!drm_core_check_feature(dev, DRIVER_MODESET))
10923 return -ENODEV;
Carl Worth08d7b3d2009-04-29 14:43:54 -070010924
Daniel Vetterc05422d2009-08-11 16:05:30 +020010925 drmmode_obj = drm_mode_object_find(dev, pipe_from_crtc_id->crtc_id,
10926 DRM_MODE_OBJECT_CRTC);
Carl Worth08d7b3d2009-04-29 14:43:54 -070010927
Daniel Vetterc05422d2009-08-11 16:05:30 +020010928 if (!drmmode_obj) {
Carl Worth08d7b3d2009-04-29 14:43:54 -070010929 DRM_ERROR("no such CRTC id\n");
Ville Syrjälä3f2c2052013-10-17 13:35:03 +030010930 return -ENOENT;
Carl Worth08d7b3d2009-04-29 14:43:54 -070010931 }
10932
Daniel Vetterc05422d2009-08-11 16:05:30 +020010933 crtc = to_intel_crtc(obj_to_crtc(drmmode_obj));
10934 pipe_from_crtc_id->pipe = crtc->pipe;
Carl Worth08d7b3d2009-04-29 14:43:54 -070010935
Daniel Vetterc05422d2009-08-11 16:05:30 +020010936 return 0;
Carl Worth08d7b3d2009-04-29 14:43:54 -070010937}
10938
Daniel Vetter66a92782012-07-12 20:08:18 +020010939static int intel_encoder_clones(struct intel_encoder *encoder)
Jesse Barnes79e53942008-11-07 14:24:08 -080010940{
Daniel Vetter66a92782012-07-12 20:08:18 +020010941 struct drm_device *dev = encoder->base.dev;
10942 struct intel_encoder *source_encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -080010943 int index_mask = 0;
Jesse Barnes79e53942008-11-07 14:24:08 -080010944 int entry = 0;
10945
Daniel Vetter66a92782012-07-12 20:08:18 +020010946 list_for_each_entry(source_encoder,
10947 &dev->mode_config.encoder_list, base.head) {
Ville Syrjäläbc079e82014-03-03 16:15:28 +020010948 if (encoders_cloneable(encoder, source_encoder))
Daniel Vetter66a92782012-07-12 20:08:18 +020010949 index_mask |= (1 << entry);
10950
Jesse Barnes79e53942008-11-07 14:24:08 -080010951 entry++;
10952 }
Chris Wilson4ef69c72010-09-09 15:14:28 +010010953
Jesse Barnes79e53942008-11-07 14:24:08 -080010954 return index_mask;
10955}
10956
Chris Wilson4d302442010-12-14 19:21:29 +000010957static bool has_edp_a(struct drm_device *dev)
10958{
10959 struct drm_i915_private *dev_priv = dev->dev_private;
10960
10961 if (!IS_MOBILE(dev))
10962 return false;
10963
10964 if ((I915_READ(DP_A) & DP_DETECTED) == 0)
10965 return false;
10966
Damien Lespiaue3589902014-02-07 19:12:50 +000010967 if (IS_GEN5(dev) && (I915_READ(FUSE_STRAP) & ILK_eDP_A_DISABLE))
Chris Wilson4d302442010-12-14 19:21:29 +000010968 return false;
10969
10970 return true;
10971}
10972
Damien Lespiauba0fbca2014-01-08 14:18:23 +000010973const char *intel_output_name(int output)
10974{
10975 static const char *names[] = {
10976 [INTEL_OUTPUT_UNUSED] = "Unused",
10977 [INTEL_OUTPUT_ANALOG] = "Analog",
10978 [INTEL_OUTPUT_DVO] = "DVO",
10979 [INTEL_OUTPUT_SDVO] = "SDVO",
10980 [INTEL_OUTPUT_LVDS] = "LVDS",
10981 [INTEL_OUTPUT_TVOUT] = "TV",
10982 [INTEL_OUTPUT_HDMI] = "HDMI",
10983 [INTEL_OUTPUT_DISPLAYPORT] = "DisplayPort",
10984 [INTEL_OUTPUT_EDP] = "eDP",
10985 [INTEL_OUTPUT_DSI] = "DSI",
10986 [INTEL_OUTPUT_UNKNOWN] = "Unknown",
10987 };
10988
10989 if (output < 0 || output >= ARRAY_SIZE(names) || !names[output])
10990 return "Invalid";
10991
10992 return names[output];
10993}
10994
Jesse Barnes79e53942008-11-07 14:24:08 -080010995static void intel_setup_outputs(struct drm_device *dev)
10996{
Eric Anholt725e30a2009-01-22 13:01:02 -080010997 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson4ef69c72010-09-09 15:14:28 +010010998 struct intel_encoder *encoder;
Adam Jacksoncb0953d2010-07-16 14:46:29 -040010999 bool dpd_is_edp = false;
Jesse Barnes79e53942008-11-07 14:24:08 -080011000
Daniel Vetterc9093352013-06-06 22:22:47 +020011001 intel_lvds_init(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -080011002
Ville Syrjälä7895a812014-04-09 13:28:23 +030011003 if (!IS_ULT(dev) && !IS_CHERRYVIEW(dev))
Paulo Zanoni79935fc2012-11-20 13:27:40 -020011004 intel_crt_init(dev);
Adam Jacksoncb0953d2010-07-16 14:46:29 -040011005
Paulo Zanoniaffa9352012-11-23 15:30:39 -020011006 if (HAS_DDI(dev)) {
Eugeni Dodonov0e72a5b2012-05-09 15:37:27 -030011007 int found;
11008
11009 /* Haswell uses DDI functions to detect digital outputs */
11010 found = I915_READ(DDI_BUF_CTL_A) & DDI_INIT_DISPLAY_DETECTED;
11011 /* DDI A only supports eDP */
11012 if (found)
11013 intel_ddi_init(dev, PORT_A);
11014
11015 /* DDI B, C and D detection is indicated by the SFUSE_STRAP
11016 * register */
11017 found = I915_READ(SFUSE_STRAP);
11018
11019 if (found & SFUSE_STRAP_DDIB_DETECTED)
11020 intel_ddi_init(dev, PORT_B);
11021 if (found & SFUSE_STRAP_DDIC_DETECTED)
11022 intel_ddi_init(dev, PORT_C);
11023 if (found & SFUSE_STRAP_DDID_DETECTED)
11024 intel_ddi_init(dev, PORT_D);
11025 } else if (HAS_PCH_SPLIT(dev)) {
Adam Jacksoncb0953d2010-07-16 14:46:29 -040011026 int found;
Ville Syrjälä5d8a7752013-11-01 18:22:39 +020011027 dpd_is_edp = intel_dp_is_edp(dev, PORT_D);
Daniel Vetter270b3042012-10-27 15:52:05 +020011028
11029 if (has_edp_a(dev))
11030 intel_dp_init(dev, DP_A, PORT_A);
Adam Jacksoncb0953d2010-07-16 14:46:29 -040011031
Paulo Zanonidc0fa712013-02-19 16:21:46 -030011032 if (I915_READ(PCH_HDMIB) & SDVO_DETECTED) {
Zhao Yakui461ed3c2010-03-30 15:11:33 +080011033 /* PCH SDVOB multiplex with HDMIB */
Daniel Vettereef4eac2012-03-23 23:43:35 +010011034 found = intel_sdvo_init(dev, PCH_SDVOB, true);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +080011035 if (!found)
Paulo Zanonie2debe92013-02-18 19:00:27 -030011036 intel_hdmi_init(dev, PCH_HDMIB, PORT_B);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +080011037 if (!found && (I915_READ(PCH_DP_B) & DP_DETECTED))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030011038 intel_dp_init(dev, PCH_DP_B, PORT_B);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +080011039 }
11040
Paulo Zanonidc0fa712013-02-19 16:21:46 -030011041 if (I915_READ(PCH_HDMIC) & SDVO_DETECTED)
Paulo Zanonie2debe92013-02-18 19:00:27 -030011042 intel_hdmi_init(dev, PCH_HDMIC, PORT_C);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +080011043
Paulo Zanonidc0fa712013-02-19 16:21:46 -030011044 if (!dpd_is_edp && I915_READ(PCH_HDMID) & SDVO_DETECTED)
Paulo Zanonie2debe92013-02-18 19:00:27 -030011045 intel_hdmi_init(dev, PCH_HDMID, PORT_D);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +080011046
Zhenyu Wang5eb08b62009-07-24 01:00:31 +080011047 if (I915_READ(PCH_DP_C) & DP_DETECTED)
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030011048 intel_dp_init(dev, PCH_DP_C, PORT_C);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +080011049
Daniel Vetter270b3042012-10-27 15:52:05 +020011050 if (I915_READ(PCH_DP_D) & DP_DETECTED)
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030011051 intel_dp_init(dev, PCH_DP_D, PORT_D);
Jesse Barnes4a87d652012-06-15 11:55:16 -070011052 } else if (IS_VALLEYVIEW(dev)) {
Artem Bityutskiy585a94b2013-10-16 18:10:41 +030011053 if (I915_READ(VLV_DISPLAY_BASE + GEN4_HDMIB) & SDVO_DETECTED) {
11054 intel_hdmi_init(dev, VLV_DISPLAY_BASE + GEN4_HDMIB,
11055 PORT_B);
11056 if (I915_READ(VLV_DISPLAY_BASE + DP_B) & DP_DETECTED)
11057 intel_dp_init(dev, VLV_DISPLAY_BASE + DP_B, PORT_B);
11058 }
11059
Jesse Barnes6f6005a2013-08-09 09:34:35 -070011060 if (I915_READ(VLV_DISPLAY_BASE + GEN4_HDMIC) & SDVO_DETECTED) {
11061 intel_hdmi_init(dev, VLV_DISPLAY_BASE + GEN4_HDMIC,
11062 PORT_C);
11063 if (I915_READ(VLV_DISPLAY_BASE + DP_C) & DP_DETECTED)
Ville Syrjälä5d8a7752013-11-01 18:22:39 +020011064 intel_dp_init(dev, VLV_DISPLAY_BASE + DP_C, PORT_C);
Jesse Barnes6f6005a2013-08-09 09:34:35 -070011065 }
Gajanan Bhat19c03922012-09-27 19:13:07 +053011066
Ville Syrjälä9418c1f2014-04-09 13:28:56 +030011067 if (IS_CHERRYVIEW(dev)) {
11068 if (I915_READ(VLV_DISPLAY_BASE + CHV_HDMID) & SDVO_DETECTED) {
11069 intel_hdmi_init(dev, VLV_DISPLAY_BASE + CHV_HDMID,
11070 PORT_D);
11071 if (I915_READ(VLV_DISPLAY_BASE + DP_D) & DP_DETECTED)
11072 intel_dp_init(dev, VLV_DISPLAY_BASE + DP_D, PORT_D);
11073 }
11074 }
11075
Jani Nikula3cfca972013-08-27 15:12:26 +030011076 intel_dsi_init(dev);
Zhenyu Wang103a1962009-11-27 11:44:36 +080011077 } else if (SUPPORTS_DIGITAL_OUTPUTS(dev)) {
Ma Ling27185ae2009-08-24 13:50:23 +080011078 bool found = false;
Eric Anholt7d573822009-01-02 13:33:00 -080011079
Paulo Zanonie2debe92013-02-18 19:00:27 -030011080 if (I915_READ(GEN3_SDVOB) & SDVO_DETECTED) {
Jesse Barnesb01f2c32009-12-11 11:07:17 -080011081 DRM_DEBUG_KMS("probing SDVOB\n");
Paulo Zanonie2debe92013-02-18 19:00:27 -030011082 found = intel_sdvo_init(dev, GEN3_SDVOB, true);
Jesse Barnesb01f2c32009-12-11 11:07:17 -080011083 if (!found && SUPPORTS_INTEGRATED_HDMI(dev)) {
11084 DRM_DEBUG_KMS("probing HDMI on SDVOB\n");
Paulo Zanonie2debe92013-02-18 19:00:27 -030011085 intel_hdmi_init(dev, GEN4_HDMIB, PORT_B);
Jesse Barnesb01f2c32009-12-11 11:07:17 -080011086 }
Ma Ling27185ae2009-08-24 13:50:23 +080011087
Imre Deake7281ea2013-05-08 13:14:08 +030011088 if (!found && SUPPORTS_INTEGRATED_DP(dev))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030011089 intel_dp_init(dev, DP_B, PORT_B);
Eric Anholt725e30a2009-01-22 13:01:02 -080011090 }
Kristian Høgsberg13520b02009-03-13 15:42:14 -040011091
11092 /* Before G4X SDVOC doesn't have its own detect register */
Kristian Høgsberg13520b02009-03-13 15:42:14 -040011093
Paulo Zanonie2debe92013-02-18 19:00:27 -030011094 if (I915_READ(GEN3_SDVOB) & SDVO_DETECTED) {
Jesse Barnesb01f2c32009-12-11 11:07:17 -080011095 DRM_DEBUG_KMS("probing SDVOC\n");
Paulo Zanonie2debe92013-02-18 19:00:27 -030011096 found = intel_sdvo_init(dev, GEN3_SDVOC, false);
Jesse Barnesb01f2c32009-12-11 11:07:17 -080011097 }
Ma Ling27185ae2009-08-24 13:50:23 +080011098
Paulo Zanonie2debe92013-02-18 19:00:27 -030011099 if (!found && (I915_READ(GEN3_SDVOC) & SDVO_DETECTED)) {
Ma Ling27185ae2009-08-24 13:50:23 +080011100
Jesse Barnesb01f2c32009-12-11 11:07:17 -080011101 if (SUPPORTS_INTEGRATED_HDMI(dev)) {
11102 DRM_DEBUG_KMS("probing HDMI on SDVOC\n");
Paulo Zanonie2debe92013-02-18 19:00:27 -030011103 intel_hdmi_init(dev, GEN4_HDMIC, PORT_C);
Jesse Barnesb01f2c32009-12-11 11:07:17 -080011104 }
Imre Deake7281ea2013-05-08 13:14:08 +030011105 if (SUPPORTS_INTEGRATED_DP(dev))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030011106 intel_dp_init(dev, DP_C, PORT_C);
Eric Anholt725e30a2009-01-22 13:01:02 -080011107 }
Ma Ling27185ae2009-08-24 13:50:23 +080011108
Jesse Barnesb01f2c32009-12-11 11:07:17 -080011109 if (SUPPORTS_INTEGRATED_DP(dev) &&
Imre Deake7281ea2013-05-08 13:14:08 +030011110 (I915_READ(DP_D) & DP_DETECTED))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030011111 intel_dp_init(dev, DP_D, PORT_D);
Eric Anholtbad720f2009-10-22 16:11:14 -070011112 } else if (IS_GEN2(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -080011113 intel_dvo_init(dev);
11114
Zhenyu Wang103a1962009-11-27 11:44:36 +080011115 if (SUPPORTS_TV(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -080011116 intel_tv_init(dev);
11117
Chris Wilson4ef69c72010-09-09 15:14:28 +010011118 list_for_each_entry(encoder, &dev->mode_config.encoder_list, base.head) {
11119 encoder->base.possible_crtcs = encoder->crtc_mask;
11120 encoder->base.possible_clones =
Daniel Vetter66a92782012-07-12 20:08:18 +020011121 intel_encoder_clones(encoder);
Jesse Barnes79e53942008-11-07 14:24:08 -080011122 }
Chris Wilson47356eb2011-01-11 17:06:04 +000011123
Paulo Zanonidde86e22012-12-01 12:04:25 -020011124 intel_init_pch_refclk(dev);
Daniel Vetter270b3042012-10-27 15:52:05 +020011125
11126 drm_helper_move_panel_connectors_to_head(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -080011127}
11128
11129static void intel_user_framebuffer_destroy(struct drm_framebuffer *fb)
11130{
11131 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
Jesse Barnes79e53942008-11-07 14:24:08 -080011132
Daniel Vetteref2d6332014-02-10 18:00:38 +010011133 drm_framebuffer_cleanup(fb);
11134 WARN_ON(!intel_fb->obj->framebuffer_references--);
11135 drm_gem_object_unreference_unlocked(&intel_fb->obj->base);
Jesse Barnes79e53942008-11-07 14:24:08 -080011136 kfree(intel_fb);
11137}
11138
11139static int intel_user_framebuffer_create_handle(struct drm_framebuffer *fb,
Chris Wilson05394f32010-11-08 19:18:58 +000011140 struct drm_file *file,
Jesse Barnes79e53942008-11-07 14:24:08 -080011141 unsigned int *handle)
11142{
11143 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
Chris Wilson05394f32010-11-08 19:18:58 +000011144 struct drm_i915_gem_object *obj = intel_fb->obj;
Jesse Barnes79e53942008-11-07 14:24:08 -080011145
Chris Wilson05394f32010-11-08 19:18:58 +000011146 return drm_gem_handle_create(file, &obj->base, handle);
Jesse Barnes79e53942008-11-07 14:24:08 -080011147}
11148
11149static const struct drm_framebuffer_funcs intel_fb_funcs = {
11150 .destroy = intel_user_framebuffer_destroy,
11151 .create_handle = intel_user_framebuffer_create_handle,
11152};
11153
Daniel Vetterb5ea6422014-03-02 21:18:00 +010011154static int intel_framebuffer_init(struct drm_device *dev,
11155 struct intel_framebuffer *intel_fb,
11156 struct drm_mode_fb_cmd2 *mode_cmd,
11157 struct drm_i915_gem_object *obj)
Jesse Barnes79e53942008-11-07 14:24:08 -080011158{
Jesse Barnesa57ce0b2014-02-07 12:10:35 -080011159 int aligned_height;
Chris Wilsona35cdaa2013-06-25 17:26:45 +010011160 int pitch_limit;
Jesse Barnes79e53942008-11-07 14:24:08 -080011161 int ret;
11162
Daniel Vetterdd4916c2013-10-09 21:23:51 +020011163 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
11164
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000011165 if (obj->tiling_mode == I915_TILING_Y) {
11166 DRM_DEBUG("hardware does not support tiling Y\n");
Chris Wilson57cd6502010-08-08 12:34:44 +010011167 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000011168 }
Chris Wilson57cd6502010-08-08 12:34:44 +010011169
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000011170 if (mode_cmd->pitches[0] & 63) {
11171 DRM_DEBUG("pitch (%d) must be at least 64 byte aligned\n",
11172 mode_cmd->pitches[0]);
Chris Wilson57cd6502010-08-08 12:34:44 +010011173 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000011174 }
Chris Wilson57cd6502010-08-08 12:34:44 +010011175
Chris Wilsona35cdaa2013-06-25 17:26:45 +010011176 if (INTEL_INFO(dev)->gen >= 5 && !IS_VALLEYVIEW(dev)) {
11177 pitch_limit = 32*1024;
11178 } else if (INTEL_INFO(dev)->gen >= 4) {
11179 if (obj->tiling_mode)
11180 pitch_limit = 16*1024;
11181 else
11182 pitch_limit = 32*1024;
11183 } else if (INTEL_INFO(dev)->gen >= 3) {
11184 if (obj->tiling_mode)
11185 pitch_limit = 8*1024;
11186 else
11187 pitch_limit = 16*1024;
11188 } else
11189 /* XXX DSPC is limited to 4k tiled */
11190 pitch_limit = 8*1024;
11191
11192 if (mode_cmd->pitches[0] > pitch_limit) {
11193 DRM_DEBUG("%s pitch (%d) must be at less than %d\n",
11194 obj->tiling_mode ? "tiled" : "linear",
11195 mode_cmd->pitches[0], pitch_limit);
Ville Syrjälä5d7bd702012-10-31 17:50:18 +020011196 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000011197 }
Ville Syrjälä5d7bd702012-10-31 17:50:18 +020011198
11199 if (obj->tiling_mode != I915_TILING_NONE &&
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000011200 mode_cmd->pitches[0] != obj->stride) {
11201 DRM_DEBUG("pitch (%d) must match tiling stride (%d)\n",
11202 mode_cmd->pitches[0], obj->stride);
Ville Syrjälä5d7bd702012-10-31 17:50:18 +020011203 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000011204 }
Ville Syrjälä5d7bd702012-10-31 17:50:18 +020011205
Ville Syrjälä57779d02012-10-31 17:50:14 +020011206 /* Reject formats not supported by any plane early. */
Jesse Barnes308e5bc2011-11-14 14:51:28 -080011207 switch (mode_cmd->pixel_format) {
Ville Syrjälä57779d02012-10-31 17:50:14 +020011208 case DRM_FORMAT_C8:
Ville Syrjälä04b39242011-11-17 18:05:13 +020011209 case DRM_FORMAT_RGB565:
11210 case DRM_FORMAT_XRGB8888:
11211 case DRM_FORMAT_ARGB8888:
Ville Syrjälä57779d02012-10-31 17:50:14 +020011212 break;
11213 case DRM_FORMAT_XRGB1555:
11214 case DRM_FORMAT_ARGB1555:
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000011215 if (INTEL_INFO(dev)->gen > 3) {
Ville Syrjälä4ee62c72013-06-07 15:43:05 +000011216 DRM_DEBUG("unsupported pixel format: %s\n",
11217 drm_get_format_name(mode_cmd->pixel_format));
Ville Syrjälä57779d02012-10-31 17:50:14 +020011218 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000011219 }
Ville Syrjälä57779d02012-10-31 17:50:14 +020011220 break;
11221 case DRM_FORMAT_XBGR8888:
11222 case DRM_FORMAT_ABGR8888:
Ville Syrjälä04b39242011-11-17 18:05:13 +020011223 case DRM_FORMAT_XRGB2101010:
11224 case DRM_FORMAT_ARGB2101010:
Ville Syrjälä57779d02012-10-31 17:50:14 +020011225 case DRM_FORMAT_XBGR2101010:
11226 case DRM_FORMAT_ABGR2101010:
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000011227 if (INTEL_INFO(dev)->gen < 4) {
Ville Syrjälä4ee62c72013-06-07 15:43:05 +000011228 DRM_DEBUG("unsupported pixel format: %s\n",
11229 drm_get_format_name(mode_cmd->pixel_format));
Ville Syrjälä57779d02012-10-31 17:50:14 +020011230 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000011231 }
Jesse Barnesb5626742011-06-24 12:19:27 -070011232 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +020011233 case DRM_FORMAT_YUYV:
11234 case DRM_FORMAT_UYVY:
11235 case DRM_FORMAT_YVYU:
11236 case DRM_FORMAT_VYUY:
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000011237 if (INTEL_INFO(dev)->gen < 5) {
Ville Syrjälä4ee62c72013-06-07 15:43:05 +000011238 DRM_DEBUG("unsupported pixel format: %s\n",
11239 drm_get_format_name(mode_cmd->pixel_format));
Ville Syrjälä57779d02012-10-31 17:50:14 +020011240 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000011241 }
Chris Wilson57cd6502010-08-08 12:34:44 +010011242 break;
11243 default:
Ville Syrjälä4ee62c72013-06-07 15:43:05 +000011244 DRM_DEBUG("unsupported pixel format: %s\n",
11245 drm_get_format_name(mode_cmd->pixel_format));
Chris Wilson57cd6502010-08-08 12:34:44 +010011246 return -EINVAL;
11247 }
11248
Ville Syrjälä90f9a332012-10-31 17:50:19 +020011249 /* FIXME need to adjust LINOFF/TILEOFF accordingly. */
11250 if (mode_cmd->offsets[0] != 0)
11251 return -EINVAL;
11252
Jesse Barnesa57ce0b2014-02-07 12:10:35 -080011253 aligned_height = intel_align_height(dev, mode_cmd->height,
11254 obj->tiling_mode);
Daniel Vetter53155c02013-10-09 21:55:33 +020011255 /* FIXME drm helper for size checks (especially planar formats)? */
11256 if (obj->base.size < aligned_height * mode_cmd->pitches[0])
11257 return -EINVAL;
11258
Daniel Vetterc7d73f62012-12-13 23:38:38 +010011259 drm_helper_mode_fill_fb_struct(&intel_fb->base, mode_cmd);
11260 intel_fb->obj = obj;
Daniel Vetter80075d42013-10-09 21:23:52 +020011261 intel_fb->obj->framebuffer_references++;
Daniel Vetterc7d73f62012-12-13 23:38:38 +010011262
Jesse Barnes79e53942008-11-07 14:24:08 -080011263 ret = drm_framebuffer_init(dev, &intel_fb->base, &intel_fb_funcs);
11264 if (ret) {
11265 DRM_ERROR("framebuffer init failed %d\n", ret);
11266 return ret;
11267 }
11268
Jesse Barnes79e53942008-11-07 14:24:08 -080011269 return 0;
11270}
11271
Jesse Barnes79e53942008-11-07 14:24:08 -080011272static struct drm_framebuffer *
11273intel_user_framebuffer_create(struct drm_device *dev,
11274 struct drm_file *filp,
Jesse Barnes308e5bc2011-11-14 14:51:28 -080011275 struct drm_mode_fb_cmd2 *mode_cmd)
Jesse Barnes79e53942008-11-07 14:24:08 -080011276{
Chris Wilson05394f32010-11-08 19:18:58 +000011277 struct drm_i915_gem_object *obj;
Jesse Barnes79e53942008-11-07 14:24:08 -080011278
Jesse Barnes308e5bc2011-11-14 14:51:28 -080011279 obj = to_intel_bo(drm_gem_object_lookup(dev, filp,
11280 mode_cmd->handles[0]));
Chris Wilsonc8725222011-02-19 11:31:06 +000011281 if (&obj->base == NULL)
Chris Wilsoncce13ff2010-08-08 13:36:38 +010011282 return ERR_PTR(-ENOENT);
Jesse Barnes79e53942008-11-07 14:24:08 -080011283
Chris Wilsond2dff872011-04-19 08:36:26 +010011284 return intel_framebuffer_create(dev, mode_cmd, obj);
Jesse Barnes79e53942008-11-07 14:24:08 -080011285}
11286
Daniel Vetter4520f532013-10-09 09:18:51 +020011287#ifndef CONFIG_DRM_I915_FBDEV
Daniel Vetter0632fef2013-10-08 17:44:49 +020011288static inline void intel_fbdev_output_poll_changed(struct drm_device *dev)
Daniel Vetter4520f532013-10-09 09:18:51 +020011289{
11290}
11291#endif
11292
Jesse Barnes79e53942008-11-07 14:24:08 -080011293static const struct drm_mode_config_funcs intel_mode_funcs = {
Jesse Barnes79e53942008-11-07 14:24:08 -080011294 .fb_create = intel_user_framebuffer_create,
Daniel Vetter0632fef2013-10-08 17:44:49 +020011295 .output_poll_changed = intel_fbdev_output_poll_changed,
Jesse Barnes79e53942008-11-07 14:24:08 -080011296};
11297
Jesse Barnese70236a2009-09-21 10:42:27 -070011298/* Set up chip specific display functions */
11299static void intel_init_display(struct drm_device *dev)
11300{
11301 struct drm_i915_private *dev_priv = dev->dev_private;
11302
Daniel Vetteree9300b2013-06-03 22:40:22 +020011303 if (HAS_PCH_SPLIT(dev) || IS_G4X(dev))
11304 dev_priv->display.find_dpll = g4x_find_best_dpll;
Chon Ming Leeef9348c2014-04-09 13:28:18 +030011305 else if (IS_CHERRYVIEW(dev))
11306 dev_priv->display.find_dpll = chv_find_best_dpll;
Daniel Vetteree9300b2013-06-03 22:40:22 +020011307 else if (IS_VALLEYVIEW(dev))
11308 dev_priv->display.find_dpll = vlv_find_best_dpll;
11309 else if (IS_PINEVIEW(dev))
11310 dev_priv->display.find_dpll = pnv_find_best_dpll;
11311 else
11312 dev_priv->display.find_dpll = i9xx_find_best_dpll;
11313
Paulo Zanoniaffa9352012-11-23 15:30:39 -020011314 if (HAS_DDI(dev)) {
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010011315 dev_priv->display.get_pipe_config = haswell_get_pipe_config;
Jesse Barnes4c6baa52014-03-07 08:57:50 -080011316 dev_priv->display.get_plane_config = ironlake_get_plane_config;
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -030011317 dev_priv->display.crtc_mode_set = haswell_crtc_mode_set;
Paulo Zanoni4f771f12012-10-23 18:29:51 -020011318 dev_priv->display.crtc_enable = haswell_crtc_enable;
11319 dev_priv->display.crtc_disable = haswell_crtc_disable;
Paulo Zanoni6441ab52012-10-05 12:05:58 -030011320 dev_priv->display.off = haswell_crtc_off;
Matt Roper262ca2b2014-03-18 17:22:55 -070011321 dev_priv->display.update_primary_plane =
11322 ironlake_update_primary_plane;
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -030011323 } else if (HAS_PCH_SPLIT(dev)) {
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010011324 dev_priv->display.get_pipe_config = ironlake_get_pipe_config;
Jesse Barnes4c6baa52014-03-07 08:57:50 -080011325 dev_priv->display.get_plane_config = ironlake_get_plane_config;
Eric Anholtf564048e2011-03-30 13:01:02 -070011326 dev_priv->display.crtc_mode_set = ironlake_crtc_mode_set;
Daniel Vetter76e5a892012-06-29 22:39:33 +020011327 dev_priv->display.crtc_enable = ironlake_crtc_enable;
11328 dev_priv->display.crtc_disable = ironlake_crtc_disable;
Jesse Barnesee7b9f92012-04-20 17:11:53 +010011329 dev_priv->display.off = ironlake_crtc_off;
Matt Roper262ca2b2014-03-18 17:22:55 -070011330 dev_priv->display.update_primary_plane =
11331 ironlake_update_primary_plane;
Jesse Barnes89b667f2013-04-18 14:51:36 -070011332 } else if (IS_VALLEYVIEW(dev)) {
11333 dev_priv->display.get_pipe_config = i9xx_get_pipe_config;
Jesse Barnes1ad292b2014-03-07 08:57:49 -080011334 dev_priv->display.get_plane_config = i9xx_get_plane_config;
Jesse Barnes89b667f2013-04-18 14:51:36 -070011335 dev_priv->display.crtc_mode_set = i9xx_crtc_mode_set;
11336 dev_priv->display.crtc_enable = valleyview_crtc_enable;
11337 dev_priv->display.crtc_disable = i9xx_crtc_disable;
11338 dev_priv->display.off = i9xx_crtc_off;
Matt Roper262ca2b2014-03-18 17:22:55 -070011339 dev_priv->display.update_primary_plane =
11340 i9xx_update_primary_plane;
Eric Anholtf564048e2011-03-30 13:01:02 -070011341 } else {
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010011342 dev_priv->display.get_pipe_config = i9xx_get_pipe_config;
Jesse Barnes1ad292b2014-03-07 08:57:49 -080011343 dev_priv->display.get_plane_config = i9xx_get_plane_config;
Eric Anholtf564048e2011-03-30 13:01:02 -070011344 dev_priv->display.crtc_mode_set = i9xx_crtc_mode_set;
Daniel Vetter76e5a892012-06-29 22:39:33 +020011345 dev_priv->display.crtc_enable = i9xx_crtc_enable;
11346 dev_priv->display.crtc_disable = i9xx_crtc_disable;
Jesse Barnesee7b9f92012-04-20 17:11:53 +010011347 dev_priv->display.off = i9xx_crtc_off;
Matt Roper262ca2b2014-03-18 17:22:55 -070011348 dev_priv->display.update_primary_plane =
11349 i9xx_update_primary_plane;
Eric Anholtf564048e2011-03-30 13:01:02 -070011350 }
Jesse Barnese70236a2009-09-21 10:42:27 -070011351
Jesse Barnese70236a2009-09-21 10:42:27 -070011352 /* Returns the core display clock speed */
Jesse Barnes25eb05fc2012-03-28 13:39:23 -070011353 if (IS_VALLEYVIEW(dev))
11354 dev_priv->display.get_display_clock_speed =
11355 valleyview_get_display_clock_speed;
11356 else if (IS_I945G(dev) || (IS_G33(dev) && !IS_PINEVIEW_M(dev)))
Jesse Barnese70236a2009-09-21 10:42:27 -070011357 dev_priv->display.get_display_clock_speed =
11358 i945_get_display_clock_speed;
11359 else if (IS_I915G(dev))
11360 dev_priv->display.get_display_clock_speed =
11361 i915_get_display_clock_speed;
Daniel Vetter257a7ff2013-07-26 08:35:42 +020011362 else if (IS_I945GM(dev) || IS_845G(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -070011363 dev_priv->display.get_display_clock_speed =
11364 i9xx_misc_get_display_clock_speed;
Daniel Vetter257a7ff2013-07-26 08:35:42 +020011365 else if (IS_PINEVIEW(dev))
11366 dev_priv->display.get_display_clock_speed =
11367 pnv_get_display_clock_speed;
Jesse Barnese70236a2009-09-21 10:42:27 -070011368 else if (IS_I915GM(dev))
11369 dev_priv->display.get_display_clock_speed =
11370 i915gm_get_display_clock_speed;
11371 else if (IS_I865G(dev))
11372 dev_priv->display.get_display_clock_speed =
11373 i865_get_display_clock_speed;
Daniel Vetterf0f8a9c2009-09-15 22:57:33 +020011374 else if (IS_I85X(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -070011375 dev_priv->display.get_display_clock_speed =
11376 i855_get_display_clock_speed;
11377 else /* 852, 830 */
11378 dev_priv->display.get_display_clock_speed =
11379 i830_get_display_clock_speed;
11380
Zhenyu Wang7f8a8562010-04-01 13:07:53 +080011381 if (HAS_PCH_SPLIT(dev)) {
Chris Wilsonf00a3dd2010-10-21 14:57:17 +010011382 if (IS_GEN5(dev)) {
Jesse Barnes674cf962011-04-28 14:27:04 -070011383 dev_priv->display.fdi_link_train = ironlake_fdi_link_train;
Wu Fengguange0dac652011-09-05 14:25:34 +080011384 dev_priv->display.write_eld = ironlake_write_eld;
Yuanhan Liu13982612010-12-15 15:42:31 +080011385 } else if (IS_GEN6(dev)) {
Jesse Barnes674cf962011-04-28 14:27:04 -070011386 dev_priv->display.fdi_link_train = gen6_fdi_link_train;
Wu Fengguange0dac652011-09-05 14:25:34 +080011387 dev_priv->display.write_eld = ironlake_write_eld;
Paulo Zanoni9a952a02014-03-07 20:12:34 -030011388 dev_priv->display.modeset_global_resources =
11389 snb_modeset_global_resources;
Jesse Barnes357555c2011-04-28 15:09:55 -070011390 } else if (IS_IVYBRIDGE(dev)) {
11391 /* FIXME: detect B0+ stepping and use auto training */
11392 dev_priv->display.fdi_link_train = ivb_manual_fdi_link_train;
Wu Fengguange0dac652011-09-05 14:25:34 +080011393 dev_priv->display.write_eld = ironlake_write_eld;
Daniel Vetter01a415f2012-10-27 15:58:40 +020011394 dev_priv->display.modeset_global_resources =
11395 ivb_modeset_global_resources;
Ben Widawsky4e0bbc32013-11-02 21:07:07 -070011396 } else if (IS_HASWELL(dev) || IS_GEN8(dev)) {
Eugeni Dodonovc82e4d22012-05-09 15:37:21 -030011397 dev_priv->display.fdi_link_train = hsw_fdi_link_train;
Wang Xingchao83358c852012-08-16 22:43:37 +080011398 dev_priv->display.write_eld = haswell_write_eld;
Daniel Vetterd6dd9eb2013-01-29 16:35:20 -020011399 dev_priv->display.modeset_global_resources =
11400 haswell_modeset_global_resources;
Paulo Zanonia0e63c22012-12-06 11:12:39 -020011401 }
Jesse Barnes6067aae2011-04-28 15:04:31 -070011402 } else if (IS_G4X(dev)) {
Wu Fengguange0dac652011-09-05 14:25:34 +080011403 dev_priv->display.write_eld = g4x_write_eld;
Jesse Barnes30a970c2013-11-04 13:48:12 -080011404 } else if (IS_VALLEYVIEW(dev)) {
11405 dev_priv->display.modeset_global_resources =
11406 valleyview_modeset_global_resources;
Mengdong Lin9ca2fe72013-11-01 00:17:03 -040011407 dev_priv->display.write_eld = ironlake_write_eld;
Jesse Barnese70236a2009-09-21 10:42:27 -070011408 }
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011409
11410 /* Default just returns -ENODEV to indicate unsupported */
11411 dev_priv->display.queue_flip = intel_default_queue_flip;
11412
11413 switch (INTEL_INFO(dev)->gen) {
11414 case 2:
11415 dev_priv->display.queue_flip = intel_gen2_queue_flip;
11416 break;
11417
11418 case 3:
11419 dev_priv->display.queue_flip = intel_gen3_queue_flip;
11420 break;
11421
11422 case 4:
11423 case 5:
11424 dev_priv->display.queue_flip = intel_gen4_queue_flip;
11425 break;
11426
11427 case 6:
11428 dev_priv->display.queue_flip = intel_gen6_queue_flip;
11429 break;
Jesse Barnes7c9017e2011-06-16 12:18:54 -070011430 case 7:
Ben Widawsky4e0bbc32013-11-02 21:07:07 -070011431 case 8: /* FIXME(BDW): Check that the gen8 RCS flip works. */
Jesse Barnes7c9017e2011-06-16 12:18:54 -070011432 dev_priv->display.queue_flip = intel_gen7_queue_flip;
11433 break;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011434 }
Jani Nikula7bd688c2013-11-08 16:48:56 +020011435
11436 intel_panel_init_backlight_funcs(dev);
Jesse Barnese70236a2009-09-21 10:42:27 -070011437}
11438
Jesse Barnesb690e962010-07-19 13:53:12 -070011439/*
11440 * Some BIOSes insist on assuming the GPU's pipe A is enabled at suspend,
11441 * resume, or other times. This quirk makes sure that's the case for
11442 * affected systems.
11443 */
Akshay Joshi0206e352011-08-16 15:34:10 -040011444static void quirk_pipea_force(struct drm_device *dev)
Jesse Barnesb690e962010-07-19 13:53:12 -070011445{
11446 struct drm_i915_private *dev_priv = dev->dev_private;
11447
11448 dev_priv->quirks |= QUIRK_PIPEA_FORCE;
Daniel Vetterbc0daf42012-04-01 13:16:49 +020011449 DRM_INFO("applying pipe a force quirk\n");
Jesse Barnesb690e962010-07-19 13:53:12 -070011450}
11451
Keith Packard435793d2011-07-12 14:56:22 -070011452/*
11453 * Some machines (Lenovo U160) do not work with SSC on LVDS for some reason
11454 */
11455static void quirk_ssc_force_disable(struct drm_device *dev)
11456{
11457 struct drm_i915_private *dev_priv = dev->dev_private;
11458 dev_priv->quirks |= QUIRK_LVDS_SSC_DISABLE;
Daniel Vetterbc0daf42012-04-01 13:16:49 +020011459 DRM_INFO("applying lvds SSC disable quirk\n");
Keith Packard435793d2011-07-12 14:56:22 -070011460}
11461
Carsten Emde4dca20e2012-03-15 15:56:26 +010011462/*
Carsten Emde5a15ab52012-03-15 15:56:27 +010011463 * A machine (e.g. Acer Aspire 5734Z) may need to invert the panel backlight
11464 * brightness value
Carsten Emde4dca20e2012-03-15 15:56:26 +010011465 */
11466static void quirk_invert_brightness(struct drm_device *dev)
11467{
11468 struct drm_i915_private *dev_priv = dev->dev_private;
11469 dev_priv->quirks |= QUIRK_INVERT_BRIGHTNESS;
Daniel Vetterbc0daf42012-04-01 13:16:49 +020011470 DRM_INFO("applying inverted panel brightness quirk\n");
Jesse Barnesb690e962010-07-19 13:53:12 -070011471}
11472
11473struct intel_quirk {
11474 int device;
11475 int subsystem_vendor;
11476 int subsystem_device;
11477 void (*hook)(struct drm_device *dev);
11478};
11479
Egbert Eich5f85f1762012-10-14 15:46:38 +020011480/* For systems that don't have a meaningful PCI subdevice/subvendor ID */
11481struct intel_dmi_quirk {
11482 void (*hook)(struct drm_device *dev);
11483 const struct dmi_system_id (*dmi_id_list)[];
11484};
11485
11486static int intel_dmi_reverse_brightness(const struct dmi_system_id *id)
11487{
11488 DRM_INFO("Backlight polarity reversed on %s\n", id->ident);
11489 return 1;
11490}
11491
11492static const struct intel_dmi_quirk intel_dmi_quirks[] = {
11493 {
11494 .dmi_id_list = &(const struct dmi_system_id[]) {
11495 {
11496 .callback = intel_dmi_reverse_brightness,
11497 .ident = "NCR Corporation",
11498 .matches = {DMI_MATCH(DMI_SYS_VENDOR, "NCR Corporation"),
11499 DMI_MATCH(DMI_PRODUCT_NAME, ""),
11500 },
11501 },
11502 { } /* terminating entry */
11503 },
11504 .hook = quirk_invert_brightness,
11505 },
11506};
11507
Ben Widawskyc43b5632012-04-16 14:07:40 -070011508static struct intel_quirk intel_quirks[] = {
Jesse Barnesb690e962010-07-19 13:53:12 -070011509 /* HP Mini needs pipe A force quirk (LP: #322104) */
Akshay Joshi0206e352011-08-16 15:34:10 -040011510 { 0x27ae, 0x103c, 0x361a, quirk_pipea_force },
Jesse Barnesb690e962010-07-19 13:53:12 -070011511
Jesse Barnesb690e962010-07-19 13:53:12 -070011512 /* Toshiba Protege R-205, S-209 needs pipe A force quirk */
11513 { 0x2592, 0x1179, 0x0001, quirk_pipea_force },
11514
Jesse Barnesb690e962010-07-19 13:53:12 -070011515 /* ThinkPad T60 needs pipe A force quirk (bug #16494) */
11516 { 0x2782, 0x17aa, 0x201a, quirk_pipea_force },
11517
Chris Wilsona4945f92013-10-08 11:16:59 +010011518 /* 830 needs to leave pipe A & dpll A up */
Daniel Vetterdcdaed62012-08-12 21:19:34 +020011519 { 0x3577, PCI_ANY_ID, PCI_ANY_ID, quirk_pipea_force },
Keith Packard435793d2011-07-12 14:56:22 -070011520
11521 /* Lenovo U160 cannot use SSC on LVDS */
11522 { 0x0046, 0x17aa, 0x3920, quirk_ssc_force_disable },
Michel Alexandre Salim070d3292011-07-28 18:52:06 +020011523
11524 /* Sony Vaio Y cannot use SSC on LVDS */
11525 { 0x0046, 0x104d, 0x9076, quirk_ssc_force_disable },
Carsten Emde5a15ab52012-03-15 15:56:27 +010011526
Alexander van Heukelumbe505f62013-12-28 21:00:39 +010011527 /* Acer Aspire 5734Z must invert backlight brightness */
11528 { 0x2a42, 0x1025, 0x0459, quirk_invert_brightness },
11529
11530 /* Acer/eMachines G725 */
11531 { 0x2a42, 0x1025, 0x0210, quirk_invert_brightness },
11532
11533 /* Acer/eMachines e725 */
11534 { 0x2a42, 0x1025, 0x0212, quirk_invert_brightness },
11535
11536 /* Acer/Packard Bell NCL20 */
11537 { 0x2a42, 0x1025, 0x034b, quirk_invert_brightness },
11538
11539 /* Acer Aspire 4736Z */
11540 { 0x2a42, 0x1025, 0x0260, quirk_invert_brightness },
Jani Nikula0f540c32014-01-13 17:30:34 +020011541
11542 /* Acer Aspire 5336 */
11543 { 0x2a42, 0x1025, 0x048a, quirk_invert_brightness },
Jesse Barnesb690e962010-07-19 13:53:12 -070011544};
11545
11546static void intel_init_quirks(struct drm_device *dev)
11547{
11548 struct pci_dev *d = dev->pdev;
11549 int i;
11550
11551 for (i = 0; i < ARRAY_SIZE(intel_quirks); i++) {
11552 struct intel_quirk *q = &intel_quirks[i];
11553
11554 if (d->device == q->device &&
11555 (d->subsystem_vendor == q->subsystem_vendor ||
11556 q->subsystem_vendor == PCI_ANY_ID) &&
11557 (d->subsystem_device == q->subsystem_device ||
11558 q->subsystem_device == PCI_ANY_ID))
11559 q->hook(dev);
11560 }
Egbert Eich5f85f1762012-10-14 15:46:38 +020011561 for (i = 0; i < ARRAY_SIZE(intel_dmi_quirks); i++) {
11562 if (dmi_check_system(*intel_dmi_quirks[i].dmi_id_list) != 0)
11563 intel_dmi_quirks[i].hook(dev);
11564 }
Jesse Barnesb690e962010-07-19 13:53:12 -070011565}
11566
Jesse Barnes9cce37f2010-08-13 15:11:26 -070011567/* Disable the VGA plane that we never use */
11568static void i915_disable_vga(struct drm_device *dev)
11569{
11570 struct drm_i915_private *dev_priv = dev->dev_private;
11571 u8 sr1;
Ville Syrjälä766aa1c2013-01-25 21:44:46 +020011572 u32 vga_reg = i915_vgacntrl_reg(dev);
Jesse Barnes9cce37f2010-08-13 15:11:26 -070011573
Ville Syrjälä2b37c612014-01-22 21:32:38 +020011574 /* WaEnableVGAAccessThroughIOPort:ctg,elk,ilk,snb,ivb,vlv,hsw */
Jesse Barnes9cce37f2010-08-13 15:11:26 -070011575 vga_get_uninterruptible(dev->pdev, VGA_RSRC_LEGACY_IO);
Jesse Barnes3fdcf432012-04-06 11:46:27 -070011576 outb(SR01, VGA_SR_INDEX);
Jesse Barnes9cce37f2010-08-13 15:11:26 -070011577 sr1 = inb(VGA_SR_DATA);
11578 outb(sr1 | 1<<5, VGA_SR_DATA);
11579 vga_put(dev->pdev, VGA_RSRC_LEGACY_IO);
11580 udelay(300);
11581
11582 I915_WRITE(vga_reg, VGA_DISP_DISABLE);
11583 POSTING_READ(vga_reg);
11584}
11585
Daniel Vetterf8175862012-04-10 15:50:11 +020011586void intel_modeset_init_hw(struct drm_device *dev)
11587{
Eugeni Dodonova8f78b52012-06-28 15:55:35 -030011588 intel_prepare_ddi(dev);
11589
Daniel Vetterf8175862012-04-10 15:50:11 +020011590 intel_init_clock_gating(dev);
11591
Jesse Barnes5382f5f352013-12-16 16:34:24 -080011592 intel_reset_dpio(dev);
Jesse Barnes40e9cf62013-10-03 11:35:46 -070011593
Daniel Vetter8090c6b2012-06-24 16:42:32 +020011594 intel_enable_gt_powersave(dev);
Daniel Vetterf8175862012-04-10 15:50:11 +020011595}
11596
Imre Deak7d708ee2013-04-17 14:04:50 +030011597void intel_modeset_suspend_hw(struct drm_device *dev)
11598{
11599 intel_suspend_hw(dev);
11600}
11601
Jesse Barnes79e53942008-11-07 14:24:08 -080011602void intel_modeset_init(struct drm_device *dev)
11603{
Jesse Barnes652c3932009-08-17 13:31:43 -070011604 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiau1fe47782014-03-03 17:31:47 +000011605 int sprite, ret;
Damien Lespiau8cc87b72014-03-03 17:31:44 +000011606 enum pipe pipe;
Jesse Barnes46f297f2014-03-07 08:57:48 -080011607 struct intel_crtc *crtc;
Jesse Barnes79e53942008-11-07 14:24:08 -080011608
11609 drm_mode_config_init(dev);
11610
11611 dev->mode_config.min_width = 0;
11612 dev->mode_config.min_height = 0;
11613
Dave Airlie019d96c2011-09-29 16:20:42 +010011614 dev->mode_config.preferred_depth = 24;
11615 dev->mode_config.prefer_shadow = 1;
11616
Laurent Pincharte6ecefa2012-05-17 13:27:23 +020011617 dev->mode_config.funcs = &intel_mode_funcs;
Jesse Barnes79e53942008-11-07 14:24:08 -080011618
Jesse Barnesb690e962010-07-19 13:53:12 -070011619 intel_init_quirks(dev);
11620
Eugeni Dodonov1fa61102012-04-18 15:29:26 -030011621 intel_init_pm(dev);
11622
Ben Widawskye3c74752013-04-05 13:12:39 -070011623 if (INTEL_INFO(dev)->num_pipes == 0)
11624 return;
11625
Jesse Barnese70236a2009-09-21 10:42:27 -070011626 intel_init_display(dev);
11627
Chris Wilsona6c45cf2010-09-17 00:32:17 +010011628 if (IS_GEN2(dev)) {
11629 dev->mode_config.max_width = 2048;
11630 dev->mode_config.max_height = 2048;
11631 } else if (IS_GEN3(dev)) {
Keith Packard5e4d6fa2009-07-12 23:53:17 -070011632 dev->mode_config.max_width = 4096;
11633 dev->mode_config.max_height = 4096;
Jesse Barnes79e53942008-11-07 14:24:08 -080011634 } else {
Chris Wilsona6c45cf2010-09-17 00:32:17 +010011635 dev->mode_config.max_width = 8192;
11636 dev->mode_config.max_height = 8192;
Jesse Barnes79e53942008-11-07 14:24:08 -080011637 }
Damien Lespiau068be562014-03-28 14:17:49 +000011638
11639 if (IS_GEN2(dev)) {
11640 dev->mode_config.cursor_width = GEN2_CURSOR_WIDTH;
11641 dev->mode_config.cursor_height = GEN2_CURSOR_HEIGHT;
11642 } else {
11643 dev->mode_config.cursor_width = MAX_CURSOR_WIDTH;
11644 dev->mode_config.cursor_height = MAX_CURSOR_HEIGHT;
11645 }
11646
Ben Widawsky5d4545a2013-01-17 12:45:15 -080011647 dev->mode_config.fb_base = dev_priv->gtt.mappable_base;
Jesse Barnes79e53942008-11-07 14:24:08 -080011648
Zhao Yakui28c97732009-10-09 11:39:41 +080011649 DRM_DEBUG_KMS("%d display pipe%s available.\n",
Ben Widawsky7eb552a2013-03-13 14:05:41 -070011650 INTEL_INFO(dev)->num_pipes,
11651 INTEL_INFO(dev)->num_pipes > 1 ? "s" : "");
Jesse Barnes79e53942008-11-07 14:24:08 -080011652
Damien Lespiau8cc87b72014-03-03 17:31:44 +000011653 for_each_pipe(pipe) {
11654 intel_crtc_init(dev, pipe);
Damien Lespiau1fe47782014-03-03 17:31:47 +000011655 for_each_sprite(pipe, sprite) {
11656 ret = intel_plane_init(dev, pipe, sprite);
Jesse Barnes7f1f3852013-04-02 11:22:20 -070011657 if (ret)
Ville Syrjälä06da8da2013-04-17 17:48:51 +030011658 DRM_DEBUG_KMS("pipe %c sprite %c init failed: %d\n",
Damien Lespiau1fe47782014-03-03 17:31:47 +000011659 pipe_name(pipe), sprite_name(pipe, sprite), ret);
Jesse Barnes7f1f3852013-04-02 11:22:20 -070011660 }
Jesse Barnes79e53942008-11-07 14:24:08 -080011661 }
11662
Jesse Barnesf42bb702013-12-16 16:34:23 -080011663 intel_init_dpio(dev);
Jesse Barnes5382f5f352013-12-16 16:34:24 -080011664 intel_reset_dpio(dev);
Jesse Barnesf42bb702013-12-16 16:34:23 -080011665
Paulo Zanoni79f689a2012-10-05 12:05:52 -030011666 intel_cpu_pll_init(dev);
Daniel Vettere72f9fb2013-06-05 13:34:06 +020011667 intel_shared_dpll_init(dev);
Jesse Barnesee7b9f92012-04-20 17:11:53 +010011668
Jesse Barnes9cce37f2010-08-13 15:11:26 -070011669 /* Just disable it once at startup */
11670 i915_disable_vga(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -080011671 intel_setup_outputs(dev);
Chris Wilson11be49e2012-11-15 11:32:20 +000011672
11673 /* Just in case the BIOS is doing something questionable. */
11674 intel_disable_fbc(dev);
Jesse Barnesfa9fa082014-02-11 15:28:56 -080011675
Jesse Barnes8b687df2014-02-21 13:13:39 -080011676 mutex_lock(&dev->mode_config.mutex);
Jesse Barnesfa9fa082014-02-11 15:28:56 -080011677 intel_modeset_setup_hw_state(dev, false);
Jesse Barnes8b687df2014-02-21 13:13:39 -080011678 mutex_unlock(&dev->mode_config.mutex);
Jesse Barnes46f297f2014-03-07 08:57:48 -080011679
Damien Lespiaud3fcc802014-05-13 23:32:22 +010011680 for_each_intel_crtc(dev, crtc) {
Jesse Barnes46f297f2014-03-07 08:57:48 -080011681 if (!crtc->active)
11682 continue;
11683
Jesse Barnes46f297f2014-03-07 08:57:48 -080011684 /*
Jesse Barnes46f297f2014-03-07 08:57:48 -080011685 * Note that reserving the BIOS fb up front prevents us
11686 * from stuffing other stolen allocations like the ring
11687 * on top. This prevents some ugliness at boot time, and
11688 * can even allow for smooth boot transitions if the BIOS
11689 * fb is large enough for the active pipe configuration.
11690 */
11691 if (dev_priv->display.get_plane_config) {
11692 dev_priv->display.get_plane_config(crtc,
11693 &crtc->plane_config);
11694 /*
11695 * If the fb is shared between multiple heads, we'll
11696 * just get the first one.
11697 */
Jesse Barnes484b41d2014-03-07 08:57:55 -080011698 intel_find_plane_obj(crtc, &crtc->plane_config);
Jesse Barnes46f297f2014-03-07 08:57:48 -080011699 }
Jesse Barnes46f297f2014-03-07 08:57:48 -080011700 }
Chris Wilson2c7111d2011-03-29 10:40:27 +010011701}
Jesse Barnesd5bb0812011-01-05 12:01:26 -080011702
Daniel Vetter24929352012-07-02 20:28:59 +020011703static void
11704intel_connector_break_all_links(struct intel_connector *connector)
11705{
11706 connector->base.dpms = DRM_MODE_DPMS_OFF;
11707 connector->base.encoder = NULL;
11708 connector->encoder->connectors_active = false;
11709 connector->encoder->base.crtc = NULL;
11710}
11711
Daniel Vetter7fad7982012-07-04 17:51:47 +020011712static void intel_enable_pipe_a(struct drm_device *dev)
11713{
11714 struct intel_connector *connector;
11715 struct drm_connector *crt = NULL;
11716 struct intel_load_detect_pipe load_detect_temp;
11717
11718 /* We can't just switch on the pipe A, we need to set things up with a
11719 * proper mode and output configuration. As a gross hack, enable pipe A
11720 * by enabling the load detect pipe once. */
11721 list_for_each_entry(connector,
11722 &dev->mode_config.connector_list,
11723 base.head) {
11724 if (connector->encoder->type == INTEL_OUTPUT_ANALOG) {
11725 crt = &connector->base;
11726 break;
11727 }
11728 }
11729
11730 if (!crt)
11731 return;
11732
11733 if (intel_get_load_detect_pipe(crt, NULL, &load_detect_temp))
11734 intel_release_load_detect_pipe(crt, &load_detect_temp);
11735
11736
11737}
11738
Daniel Vetterfa555832012-10-10 23:14:00 +020011739static bool
11740intel_check_plane_mapping(struct intel_crtc *crtc)
11741{
Ben Widawsky7eb552a2013-03-13 14:05:41 -070011742 struct drm_device *dev = crtc->base.dev;
11743 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterfa555832012-10-10 23:14:00 +020011744 u32 reg, val;
11745
Ben Widawsky7eb552a2013-03-13 14:05:41 -070011746 if (INTEL_INFO(dev)->num_pipes == 1)
Daniel Vetterfa555832012-10-10 23:14:00 +020011747 return true;
11748
11749 reg = DSPCNTR(!crtc->plane);
11750 val = I915_READ(reg);
11751
11752 if ((val & DISPLAY_PLANE_ENABLE) &&
11753 (!!(val & DISPPLANE_SEL_PIPE_MASK) == crtc->pipe))
11754 return false;
11755
11756 return true;
11757}
11758
Daniel Vetter24929352012-07-02 20:28:59 +020011759static void intel_sanitize_crtc(struct intel_crtc *crtc)
11760{
11761 struct drm_device *dev = crtc->base.dev;
11762 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterfa555832012-10-10 23:14:00 +020011763 u32 reg;
Daniel Vetter24929352012-07-02 20:28:59 +020011764
Daniel Vetter24929352012-07-02 20:28:59 +020011765 /* Clear any frame start delays used for debugging left by the BIOS */
Daniel Vetter3b117c82013-04-17 20:15:07 +020011766 reg = PIPECONF(crtc->config.cpu_transcoder);
Daniel Vetter24929352012-07-02 20:28:59 +020011767 I915_WRITE(reg, I915_READ(reg) & ~PIPECONF_FRAME_START_DELAY_MASK);
11768
11769 /* We need to sanitize the plane -> pipe mapping first because this will
Daniel Vetterfa555832012-10-10 23:14:00 +020011770 * disable the crtc (and hence change the state) if it is wrong. Note
11771 * that gen4+ has a fixed plane -> pipe mapping. */
11772 if (INTEL_INFO(dev)->gen < 4 && !intel_check_plane_mapping(crtc)) {
Daniel Vetter24929352012-07-02 20:28:59 +020011773 struct intel_connector *connector;
11774 bool plane;
11775
Daniel Vetter24929352012-07-02 20:28:59 +020011776 DRM_DEBUG_KMS("[CRTC:%d] wrong plane connection detected!\n",
11777 crtc->base.base.id);
11778
11779 /* Pipe has the wrong plane attached and the plane is active.
11780 * Temporarily change the plane mapping and disable everything
11781 * ... */
11782 plane = crtc->plane;
11783 crtc->plane = !plane;
11784 dev_priv->display.crtc_disable(&crtc->base);
11785 crtc->plane = plane;
11786
11787 /* ... and break all links. */
11788 list_for_each_entry(connector, &dev->mode_config.connector_list,
11789 base.head) {
11790 if (connector->encoder->base.crtc != &crtc->base)
11791 continue;
11792
11793 intel_connector_break_all_links(connector);
11794 }
11795
11796 WARN_ON(crtc->active);
11797 crtc->base.enabled = false;
11798 }
Daniel Vetter24929352012-07-02 20:28:59 +020011799
Daniel Vetter7fad7982012-07-04 17:51:47 +020011800 if (dev_priv->quirks & QUIRK_PIPEA_FORCE &&
11801 crtc->pipe == PIPE_A && !crtc->active) {
11802 /* BIOS forgot to enable pipe A, this mostly happens after
11803 * resume. Force-enable the pipe to fix this, the update_dpms
11804 * call below we restore the pipe to the right state, but leave
11805 * the required bits on. */
11806 intel_enable_pipe_a(dev);
11807 }
11808
Daniel Vetter24929352012-07-02 20:28:59 +020011809 /* Adjust the state of the output pipe according to whether we
11810 * have active connectors/encoders. */
11811 intel_crtc_update_dpms(&crtc->base);
11812
11813 if (crtc->active != crtc->base.enabled) {
11814 struct intel_encoder *encoder;
11815
11816 /* This can happen either due to bugs in the get_hw_state
11817 * functions or because the pipe is force-enabled due to the
11818 * pipe A quirk. */
11819 DRM_DEBUG_KMS("[CRTC:%d] hw state adjusted, was %s, now %s\n",
11820 crtc->base.base.id,
11821 crtc->base.enabled ? "enabled" : "disabled",
11822 crtc->active ? "enabled" : "disabled");
11823
11824 crtc->base.enabled = crtc->active;
11825
11826 /* Because we only establish the connector -> encoder ->
11827 * crtc links if something is active, this means the
11828 * crtc is now deactivated. Break the links. connector
11829 * -> encoder links are only establish when things are
11830 * actually up, hence no need to break them. */
11831 WARN_ON(crtc->active);
11832
11833 for_each_encoder_on_crtc(dev, &crtc->base, encoder) {
11834 WARN_ON(encoder->connectors_active);
11835 encoder->base.crtc = NULL;
11836 }
11837 }
Daniel Vetter4cc31482014-03-24 00:01:41 +010011838 if (crtc->active) {
11839 /*
11840 * We start out with underrun reporting disabled to avoid races.
11841 * For correct bookkeeping mark this on active crtcs.
11842 *
11843 * No protection against concurrent access is required - at
11844 * worst a fifo underrun happens which also sets this to false.
11845 */
11846 crtc->cpu_fifo_underrun_disabled = true;
11847 crtc->pch_fifo_underrun_disabled = true;
11848 }
Daniel Vetter24929352012-07-02 20:28:59 +020011849}
11850
11851static void intel_sanitize_encoder(struct intel_encoder *encoder)
11852{
11853 struct intel_connector *connector;
11854 struct drm_device *dev = encoder->base.dev;
11855
11856 /* We need to check both for a crtc link (meaning that the
11857 * encoder is active and trying to read from a pipe) and the
11858 * pipe itself being active. */
11859 bool has_active_crtc = encoder->base.crtc &&
11860 to_intel_crtc(encoder->base.crtc)->active;
11861
11862 if (encoder->connectors_active && !has_active_crtc) {
11863 DRM_DEBUG_KMS("[ENCODER:%d:%s] has active connectors but no active pipe!\n",
11864 encoder->base.base.id,
11865 drm_get_encoder_name(&encoder->base));
11866
11867 /* Connector is active, but has no active pipe. This is
11868 * fallout from our resume register restoring. Disable
11869 * the encoder manually again. */
11870 if (encoder->base.crtc) {
11871 DRM_DEBUG_KMS("[ENCODER:%d:%s] manually disabled\n",
11872 encoder->base.base.id,
11873 drm_get_encoder_name(&encoder->base));
11874 encoder->disable(encoder);
11875 }
11876
11877 /* Inconsistent output/port/pipe state happens presumably due to
11878 * a bug in one of the get_hw_state functions. Or someplace else
11879 * in our code, like the register restore mess on resume. Clamp
11880 * things to off as a safer default. */
11881 list_for_each_entry(connector,
11882 &dev->mode_config.connector_list,
11883 base.head) {
11884 if (connector->encoder != encoder)
11885 continue;
11886
11887 intel_connector_break_all_links(connector);
11888 }
11889 }
11890 /* Enabled encoders without active connectors will be fixed in
11891 * the crtc fixup. */
11892}
11893
Imre Deak04098752014-02-18 00:02:16 +020011894void i915_redisable_vga_power_on(struct drm_device *dev)
Krzysztof Mazur0fde9012012-12-19 11:03:41 +010011895{
11896 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä766aa1c2013-01-25 21:44:46 +020011897 u32 vga_reg = i915_vgacntrl_reg(dev);
Krzysztof Mazur0fde9012012-12-19 11:03:41 +010011898
Imre Deak04098752014-02-18 00:02:16 +020011899 if (!(I915_READ(vga_reg) & VGA_DISP_DISABLE)) {
11900 DRM_DEBUG_KMS("Something enabled VGA plane, disabling it\n");
11901 i915_disable_vga(dev);
11902 }
11903}
11904
11905void i915_redisable_vga(struct drm_device *dev)
11906{
11907 struct drm_i915_private *dev_priv = dev->dev_private;
11908
Paulo Zanoni8dc8a272013-08-02 16:22:24 -030011909 /* This function can be called both from intel_modeset_setup_hw_state or
11910 * at a very early point in our resume sequence, where the power well
11911 * structures are not yet restored. Since this function is at a very
11912 * paranoid "someone might have enabled VGA while we were not looking"
11913 * level, just check if the power well is enabled instead of trying to
11914 * follow the "don't touch the power well if we don't need it" policy
11915 * the rest of the driver uses. */
Imre Deak04098752014-02-18 00:02:16 +020011916 if (!intel_display_power_enabled(dev_priv, POWER_DOMAIN_VGA))
Paulo Zanoni8dc8a272013-08-02 16:22:24 -030011917 return;
11918
Imre Deak04098752014-02-18 00:02:16 +020011919 i915_redisable_vga_power_on(dev);
Krzysztof Mazur0fde9012012-12-19 11:03:41 +010011920}
11921
Ville Syrjälä98ec7732014-04-30 17:43:01 +030011922static bool primary_get_hw_state(struct intel_crtc *crtc)
11923{
11924 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
11925
11926 if (!crtc->active)
11927 return false;
11928
11929 return I915_READ(DSPCNTR(crtc->plane)) & DISPLAY_PLANE_ENABLE;
11930}
11931
Daniel Vetter30e984d2013-06-05 13:34:17 +020011932static void intel_modeset_readout_hw_state(struct drm_device *dev)
Daniel Vetter24929352012-07-02 20:28:59 +020011933{
11934 struct drm_i915_private *dev_priv = dev->dev_private;
11935 enum pipe pipe;
Daniel Vetter24929352012-07-02 20:28:59 +020011936 struct intel_crtc *crtc;
11937 struct intel_encoder *encoder;
11938 struct intel_connector *connector;
Daniel Vetter53589012013-06-05 13:34:16 +020011939 int i;
Daniel Vetter24929352012-07-02 20:28:59 +020011940
Damien Lespiaud3fcc802014-05-13 23:32:22 +010011941 for_each_intel_crtc(dev, crtc) {
Daniel Vetter88adfff2013-03-28 10:42:01 +010011942 memset(&crtc->config, 0, sizeof(crtc->config));
Daniel Vetter3b117c82013-04-17 20:15:07 +020011943
Daniel Vetter99535992014-04-13 12:00:33 +020011944 crtc->config.quirks |= PIPE_CONFIG_QUIRK_INHERITED_MODE;
11945
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010011946 crtc->active = dev_priv->display.get_pipe_config(crtc,
11947 &crtc->config);
Daniel Vetter24929352012-07-02 20:28:59 +020011948
11949 crtc->base.enabled = crtc->active;
Ville Syrjälä98ec7732014-04-30 17:43:01 +030011950 crtc->primary_enabled = primary_get_hw_state(crtc);
Daniel Vetter24929352012-07-02 20:28:59 +020011951
11952 DRM_DEBUG_KMS("[CRTC:%d] hw state readout: %s\n",
11953 crtc->base.base.id,
11954 crtc->active ? "enabled" : "disabled");
11955 }
11956
Daniel Vetter53589012013-06-05 13:34:16 +020011957 /* FIXME: Smash this into the new shared dpll infrastructure. */
Paulo Zanoniaffa9352012-11-23 15:30:39 -020011958 if (HAS_DDI(dev))
Paulo Zanoni6441ab52012-10-05 12:05:58 -030011959 intel_ddi_setup_hw_pll_state(dev);
11960
Daniel Vetter53589012013-06-05 13:34:16 +020011961 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
11962 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
11963
11964 pll->on = pll->get_hw_state(dev_priv, pll, &pll->hw_state);
11965 pll->active = 0;
Damien Lespiaud3fcc802014-05-13 23:32:22 +010011966 for_each_intel_crtc(dev, crtc) {
Daniel Vetter53589012013-06-05 13:34:16 +020011967 if (crtc->active && intel_crtc_to_shared_dpll(crtc) == pll)
11968 pll->active++;
11969 }
11970 pll->refcount = pll->active;
11971
Daniel Vetter35c95372013-07-17 06:55:04 +020011972 DRM_DEBUG_KMS("%s hw state readout: refcount %i, on %i\n",
11973 pll->name, pll->refcount, pll->on);
Daniel Vetter53589012013-06-05 13:34:16 +020011974 }
11975
Daniel Vetter24929352012-07-02 20:28:59 +020011976 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
11977 base.head) {
11978 pipe = 0;
11979
11980 if (encoder->get_hw_state(encoder, &pipe)) {
Jesse Barnes045ac3b2013-05-14 17:08:26 -070011981 crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
11982 encoder->base.crtc = &crtc->base;
Daniel Vetter1d37b682013-11-18 09:00:59 +010011983 encoder->get_config(encoder, &crtc->config);
Daniel Vetter24929352012-07-02 20:28:59 +020011984 } else {
11985 encoder->base.crtc = NULL;
11986 }
11987
11988 encoder->connectors_active = false;
Damien Lespiau6f2bcce2013-10-16 12:29:54 +010011989 DRM_DEBUG_KMS("[ENCODER:%d:%s] hw state readout: %s, pipe %c\n",
Daniel Vetter24929352012-07-02 20:28:59 +020011990 encoder->base.base.id,
11991 drm_get_encoder_name(&encoder->base),
11992 encoder->base.crtc ? "enabled" : "disabled",
Damien Lespiau6f2bcce2013-10-16 12:29:54 +010011993 pipe_name(pipe));
Daniel Vetter24929352012-07-02 20:28:59 +020011994 }
11995
11996 list_for_each_entry(connector, &dev->mode_config.connector_list,
11997 base.head) {
11998 if (connector->get_hw_state(connector)) {
11999 connector->base.dpms = DRM_MODE_DPMS_ON;
12000 connector->encoder->connectors_active = true;
12001 connector->base.encoder = &connector->encoder->base;
12002 } else {
12003 connector->base.dpms = DRM_MODE_DPMS_OFF;
12004 connector->base.encoder = NULL;
12005 }
12006 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] hw state readout: %s\n",
12007 connector->base.base.id,
12008 drm_get_connector_name(&connector->base),
12009 connector->base.encoder ? "enabled" : "disabled");
12010 }
Daniel Vetter30e984d2013-06-05 13:34:17 +020012011}
12012
12013/* Scan out the current hw modeset state, sanitizes it and maps it into the drm
12014 * and i915 state tracking structures. */
12015void intel_modeset_setup_hw_state(struct drm_device *dev,
12016 bool force_restore)
12017{
12018 struct drm_i915_private *dev_priv = dev->dev_private;
12019 enum pipe pipe;
Daniel Vetter30e984d2013-06-05 13:34:17 +020012020 struct intel_crtc *crtc;
12021 struct intel_encoder *encoder;
Daniel Vetter35c95372013-07-17 06:55:04 +020012022 int i;
Daniel Vetter30e984d2013-06-05 13:34:17 +020012023
12024 intel_modeset_readout_hw_state(dev);
Daniel Vetter24929352012-07-02 20:28:59 +020012025
Jesse Barnesbabea612013-06-26 18:57:38 +030012026 /*
12027 * Now that we have the config, copy it to each CRTC struct
12028 * Note that this could go away if we move to using crtc_config
12029 * checking everywhere.
12030 */
Damien Lespiaud3fcc802014-05-13 23:32:22 +010012031 for_each_intel_crtc(dev, crtc) {
Jani Nikulad330a952014-01-21 11:24:25 +020012032 if (crtc->active && i915.fastboot) {
Daniel Vetterf6a83282014-02-11 15:28:57 -080012033 intel_mode_from_pipe_config(&crtc->base.mode, &crtc->config);
Jesse Barnesbabea612013-06-26 18:57:38 +030012034 DRM_DEBUG_KMS("[CRTC:%d] found active mode: ",
12035 crtc->base.base.id);
12036 drm_mode_debug_printmodeline(&crtc->base.mode);
12037 }
12038 }
12039
Daniel Vetter24929352012-07-02 20:28:59 +020012040 /* HW state is read out, now we need to sanitize this mess. */
12041 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
12042 base.head) {
12043 intel_sanitize_encoder(encoder);
12044 }
12045
12046 for_each_pipe(pipe) {
12047 crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
12048 intel_sanitize_crtc(crtc);
Daniel Vetterc0b03412013-05-28 12:05:54 +020012049 intel_dump_pipe_config(crtc, &crtc->config, "[setup_hw_state]");
Daniel Vetter24929352012-07-02 20:28:59 +020012050 }
Daniel Vetter9a935852012-07-05 22:34:27 +020012051
Daniel Vetter35c95372013-07-17 06:55:04 +020012052 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
12053 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
12054
12055 if (!pll->on || pll->active)
12056 continue;
12057
12058 DRM_DEBUG_KMS("%s enabled but not in use, disabling\n", pll->name);
12059
12060 pll->disable(dev_priv, pll);
12061 pll->on = false;
12062 }
12063
Ville Syrjälä96f90c52013-12-05 15:51:38 +020012064 if (HAS_PCH_SPLIT(dev))
Ville Syrjälä243e6a42013-10-14 14:55:24 +030012065 ilk_wm_get_hw_state(dev);
12066
Daniel Vetter45e2b5f2012-11-23 18:16:34 +010012067 if (force_restore) {
Ville Syrjälä7d0bc1e2013-09-16 17:38:33 +030012068 i915_redisable_vga(dev);
12069
Daniel Vetterf30da182013-04-11 20:22:50 +020012070 /*
12071 * We need to use raw interfaces for restoring state to avoid
12072 * checking (bogus) intermediate states.
12073 */
Daniel Vetter45e2b5f2012-11-23 18:16:34 +010012074 for_each_pipe(pipe) {
Jesse Barnesb5644d02013-03-26 13:25:27 -070012075 struct drm_crtc *crtc =
12076 dev_priv->pipe_to_crtc_mapping[pipe];
Daniel Vetterf30da182013-04-11 20:22:50 +020012077
12078 __intel_set_mode(crtc, &crtc->mode, crtc->x, crtc->y,
Matt Roperf4510a22014-04-01 15:22:40 -070012079 crtc->primary->fb);
Daniel Vetter45e2b5f2012-11-23 18:16:34 +010012080 }
12081 } else {
12082 intel_modeset_update_staged_output_state(dev);
12083 }
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012084
12085 intel_modeset_check_state(dev);
Chris Wilson2c7111d2011-03-29 10:40:27 +010012086}
12087
12088void intel_modeset_gem_init(struct drm_device *dev)
12089{
Jesse Barnes484b41d2014-03-07 08:57:55 -080012090 struct drm_crtc *c;
12091 struct intel_framebuffer *fb;
12092
Imre Deakae484342014-03-31 15:10:44 +030012093 mutex_lock(&dev->struct_mutex);
12094 intel_init_gt_powersave(dev);
12095 mutex_unlock(&dev->struct_mutex);
12096
Chris Wilson1833b132012-05-09 11:56:28 +010012097 intel_modeset_init_hw(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +020012098
12099 intel_setup_overlay(dev);
Jesse Barnes484b41d2014-03-07 08:57:55 -080012100
12101 /*
12102 * Make sure any fbs we allocated at startup are properly
12103 * pinned & fenced. When we do the allocation it's too early
12104 * for this.
12105 */
12106 mutex_lock(&dev->struct_mutex);
Damien Lespiau70e1e0e2014-05-13 23:32:24 +010012107 for_each_crtc(dev, c) {
Dave Airlie66e514c2014-04-03 07:51:54 +100012108 if (!c->primary->fb)
Jesse Barnes484b41d2014-03-07 08:57:55 -080012109 continue;
12110
Dave Airlie66e514c2014-04-03 07:51:54 +100012111 fb = to_intel_framebuffer(c->primary->fb);
Jesse Barnes484b41d2014-03-07 08:57:55 -080012112 if (intel_pin_and_fence_fb_obj(dev, fb->obj, NULL)) {
12113 DRM_ERROR("failed to pin boot fb on pipe %d\n",
12114 to_intel_crtc(c)->pipe);
Dave Airlie66e514c2014-04-03 07:51:54 +100012115 drm_framebuffer_unreference(c->primary->fb);
12116 c->primary->fb = NULL;
Jesse Barnes484b41d2014-03-07 08:57:55 -080012117 }
12118 }
12119 mutex_unlock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -080012120}
12121
Imre Deak4932e2c2014-02-11 17:12:48 +020012122void intel_connector_unregister(struct intel_connector *intel_connector)
12123{
12124 struct drm_connector *connector = &intel_connector->base;
12125
12126 intel_panel_destroy_backlight(connector);
12127 drm_sysfs_connector_remove(connector);
12128}
12129
Jesse Barnes79e53942008-11-07 14:24:08 -080012130void intel_modeset_cleanup(struct drm_device *dev)
12131{
Jesse Barnes652c3932009-08-17 13:31:43 -070012132 struct drm_i915_private *dev_priv = dev->dev_private;
12133 struct drm_crtc *crtc;
Paulo Zanonid9255d52013-09-26 20:05:59 -030012134 struct drm_connector *connector;
Jesse Barnes652c3932009-08-17 13:31:43 -070012135
Daniel Vetterfd0c0642013-04-24 11:13:35 +020012136 /*
12137 * Interrupts and polling as the first thing to avoid creating havoc.
12138 * Too much stuff here (turning of rps, connectors, ...) would
12139 * experience fancy races otherwise.
12140 */
12141 drm_irq_uninstall(dev);
12142 cancel_work_sync(&dev_priv->hotplug_work);
12143 /*
12144 * Due to the hpd irq storm handling the hotplug work can re-arm the
12145 * poll handlers. Hence disable polling after hpd handling is shut down.
12146 */
Keith Packardf87ea762010-10-03 19:36:26 -070012147 drm_kms_helper_poll_fini(dev);
Daniel Vetterfd0c0642013-04-24 11:13:35 +020012148
Jesse Barnes652c3932009-08-17 13:31:43 -070012149 mutex_lock(&dev->struct_mutex);
12150
Jesse Barnes723bfd72010-10-07 16:01:13 -070012151 intel_unregister_dsm_handler();
12152
Damien Lespiau70e1e0e2014-05-13 23:32:24 +010012153 for_each_crtc(dev, crtc) {
Jesse Barnes652c3932009-08-17 13:31:43 -070012154 /* Skip inactive CRTCs */
Matt Roperf4510a22014-04-01 15:22:40 -070012155 if (!crtc->primary->fb)
Jesse Barnes652c3932009-08-17 13:31:43 -070012156 continue;
12157
Daniel Vetter3dec0092010-08-20 21:40:52 +020012158 intel_increase_pllclock(crtc);
Jesse Barnes652c3932009-08-17 13:31:43 -070012159 }
12160
Chris Wilson973d04f2011-07-08 12:22:37 +010012161 intel_disable_fbc(dev);
Jesse Barnese70236a2009-09-21 10:42:27 -070012162
Daniel Vetter8090c6b2012-06-24 16:42:32 +020012163 intel_disable_gt_powersave(dev);
Chris Wilson0cdab212010-12-05 17:27:06 +000012164
Daniel Vetter930ebb42012-06-29 23:32:16 +020012165 ironlake_teardown_rc6(dev);
12166
Kristian Høgsberg69341a52009-11-11 12:19:17 -050012167 mutex_unlock(&dev->struct_mutex);
12168
Chris Wilson1630fe72011-07-08 12:22:42 +010012169 /* flush any delayed tasks or pending work */
12170 flush_scheduled_work();
12171
Jani Nikuladb31af12013-11-08 16:48:53 +020012172 /* destroy the backlight and sysfs files before encoders/connectors */
12173 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
Imre Deak4932e2c2014-02-11 17:12:48 +020012174 struct intel_connector *intel_connector;
12175
12176 intel_connector = to_intel_connector(connector);
12177 intel_connector->unregister(intel_connector);
Jani Nikuladb31af12013-11-08 16:48:53 +020012178 }
Paulo Zanonid9255d52013-09-26 20:05:59 -030012179
Jesse Barnes79e53942008-11-07 14:24:08 -080012180 drm_mode_config_cleanup(dev);
Daniel Vetter4d7bb012012-12-18 15:24:37 +010012181
12182 intel_cleanup_overlay(dev);
Imre Deakae484342014-03-31 15:10:44 +030012183
12184 mutex_lock(&dev->struct_mutex);
12185 intel_cleanup_gt_powersave(dev);
12186 mutex_unlock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -080012187}
12188
Dave Airlie28d52042009-09-21 14:33:58 +100012189/*
Zhenyu Wangf1c79df2010-03-30 14:39:29 +080012190 * Return which encoder is currently attached for connector.
12191 */
Chris Wilsondf0e9242010-09-09 16:20:55 +010012192struct drm_encoder *intel_best_encoder(struct drm_connector *connector)
Jesse Barnes79e53942008-11-07 14:24:08 -080012193{
Chris Wilsondf0e9242010-09-09 16:20:55 +010012194 return &intel_attached_encoder(connector)->base;
12195}
Jesse Barnes79e53942008-11-07 14:24:08 -080012196
Chris Wilsondf0e9242010-09-09 16:20:55 +010012197void intel_connector_attach_encoder(struct intel_connector *connector,
12198 struct intel_encoder *encoder)
12199{
12200 connector->encoder = encoder;
12201 drm_mode_connector_attach_encoder(&connector->base,
12202 &encoder->base);
Jesse Barnes79e53942008-11-07 14:24:08 -080012203}
Dave Airlie28d52042009-09-21 14:33:58 +100012204
12205/*
12206 * set vga decode state - true == enable VGA decode
12207 */
12208int intel_modeset_vga_set_state(struct drm_device *dev, bool state)
12209{
12210 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsona885b3c2013-12-17 14:34:50 +000012211 unsigned reg = INTEL_INFO(dev)->gen >= 6 ? SNB_GMCH_CTRL : INTEL_GMCH_CTRL;
Dave Airlie28d52042009-09-21 14:33:58 +100012212 u16 gmch_ctrl;
12213
Chris Wilson75fa0412014-02-07 18:37:02 -020012214 if (pci_read_config_word(dev_priv->bridge_dev, reg, &gmch_ctrl)) {
12215 DRM_ERROR("failed to read control word\n");
12216 return -EIO;
12217 }
12218
Chris Wilsonc0cc8a52014-02-07 18:37:03 -020012219 if (!!(gmch_ctrl & INTEL_GMCH_VGA_DISABLE) == !state)
12220 return 0;
12221
Dave Airlie28d52042009-09-21 14:33:58 +100012222 if (state)
12223 gmch_ctrl &= ~INTEL_GMCH_VGA_DISABLE;
12224 else
12225 gmch_ctrl |= INTEL_GMCH_VGA_DISABLE;
Chris Wilson75fa0412014-02-07 18:37:02 -020012226
12227 if (pci_write_config_word(dev_priv->bridge_dev, reg, gmch_ctrl)) {
12228 DRM_ERROR("failed to write control word\n");
12229 return -EIO;
12230 }
12231
Dave Airlie28d52042009-09-21 14:33:58 +100012232 return 0;
12233}
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012234
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012235struct intel_display_error_state {
Paulo Zanoniff57f1b2013-05-03 12:15:37 -030012236
12237 u32 power_well_driver;
12238
Chris Wilson63b66e52013-08-08 15:12:06 +020012239 int num_transcoders;
12240
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012241 struct intel_cursor_error_state {
12242 u32 control;
12243 u32 position;
12244 u32 base;
12245 u32 size;
Damien Lespiau52331302012-08-15 19:23:25 +010012246 } cursor[I915_MAX_PIPES];
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012247
12248 struct intel_pipe_error_state {
Imre Deakddf9c532013-11-27 22:02:02 +020012249 bool power_domain_on;
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012250 u32 source;
Imre Deakf301b1e2014-04-18 15:55:04 +030012251 u32 stat;
Damien Lespiau52331302012-08-15 19:23:25 +010012252 } pipe[I915_MAX_PIPES];
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012253
12254 struct intel_plane_error_state {
12255 u32 control;
12256 u32 stride;
12257 u32 size;
12258 u32 pos;
12259 u32 addr;
12260 u32 surface;
12261 u32 tile_offset;
Damien Lespiau52331302012-08-15 19:23:25 +010012262 } plane[I915_MAX_PIPES];
Chris Wilson63b66e52013-08-08 15:12:06 +020012263
12264 struct intel_transcoder_error_state {
Imre Deakddf9c532013-11-27 22:02:02 +020012265 bool power_domain_on;
Chris Wilson63b66e52013-08-08 15:12:06 +020012266 enum transcoder cpu_transcoder;
12267
12268 u32 conf;
12269
12270 u32 htotal;
12271 u32 hblank;
12272 u32 hsync;
12273 u32 vtotal;
12274 u32 vblank;
12275 u32 vsync;
12276 } transcoder[4];
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012277};
12278
12279struct intel_display_error_state *
12280intel_display_capture_error_state(struct drm_device *dev)
12281{
Jani Nikulafbee40d2014-03-31 14:27:18 +030012282 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012283 struct intel_display_error_state *error;
Chris Wilson63b66e52013-08-08 15:12:06 +020012284 int transcoders[] = {
12285 TRANSCODER_A,
12286 TRANSCODER_B,
12287 TRANSCODER_C,
12288 TRANSCODER_EDP,
12289 };
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012290 int i;
12291
Chris Wilson63b66e52013-08-08 15:12:06 +020012292 if (INTEL_INFO(dev)->num_pipes == 0)
12293 return NULL;
12294
Paulo Zanoni9d1cb912013-11-01 13:32:08 -020012295 error = kzalloc(sizeof(*error), GFP_ATOMIC);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012296 if (error == NULL)
12297 return NULL;
12298
Imre Deak190be112013-11-25 17:15:31 +020012299 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Paulo Zanoniff57f1b2013-05-03 12:15:37 -030012300 error->power_well_driver = I915_READ(HSW_PWR_WELL_DRIVER);
12301
Damien Lespiau52331302012-08-15 19:23:25 +010012302 for_each_pipe(i) {
Imre Deakddf9c532013-11-27 22:02:02 +020012303 error->pipe[i].power_domain_on =
Imre Deakda7e29b2014-02-18 00:02:02 +020012304 intel_display_power_enabled_sw(dev_priv,
12305 POWER_DOMAIN_PIPE(i));
Imre Deakddf9c532013-11-27 22:02:02 +020012306 if (!error->pipe[i].power_domain_on)
Paulo Zanoni9d1cb912013-11-01 13:32:08 -020012307 continue;
12308
Ville Syrjälä5efb3e22014-04-09 13:28:53 +030012309 error->cursor[i].control = I915_READ(CURCNTR(i));
12310 error->cursor[i].position = I915_READ(CURPOS(i));
12311 error->cursor[i].base = I915_READ(CURBASE(i));
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012312
12313 error->plane[i].control = I915_READ(DSPCNTR(i));
12314 error->plane[i].stride = I915_READ(DSPSTRIDE(i));
Paulo Zanoni80ca3782013-03-22 14:20:57 -030012315 if (INTEL_INFO(dev)->gen <= 3) {
Paulo Zanoni51889b32013-03-06 20:03:13 -030012316 error->plane[i].size = I915_READ(DSPSIZE(i));
Paulo Zanoni80ca3782013-03-22 14:20:57 -030012317 error->plane[i].pos = I915_READ(DSPPOS(i));
12318 }
Paulo Zanonica291362013-03-06 20:03:14 -030012319 if (INTEL_INFO(dev)->gen <= 7 && !IS_HASWELL(dev))
12320 error->plane[i].addr = I915_READ(DSPADDR(i));
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012321 if (INTEL_INFO(dev)->gen >= 4) {
12322 error->plane[i].surface = I915_READ(DSPSURF(i));
12323 error->plane[i].tile_offset = I915_READ(DSPTILEOFF(i));
12324 }
12325
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012326 error->pipe[i].source = I915_READ(PIPESRC(i));
Imre Deakf301b1e2014-04-18 15:55:04 +030012327
12328 if (!HAS_PCH_SPLIT(dev))
12329 error->pipe[i].stat = I915_READ(PIPESTAT(i));
Chris Wilson63b66e52013-08-08 15:12:06 +020012330 }
12331
12332 error->num_transcoders = INTEL_INFO(dev)->num_pipes;
12333 if (HAS_DDI(dev_priv->dev))
12334 error->num_transcoders++; /* Account for eDP. */
12335
12336 for (i = 0; i < error->num_transcoders; i++) {
12337 enum transcoder cpu_transcoder = transcoders[i];
12338
Imre Deakddf9c532013-11-27 22:02:02 +020012339 error->transcoder[i].power_domain_on =
Imre Deakda7e29b2014-02-18 00:02:02 +020012340 intel_display_power_enabled_sw(dev_priv,
Paulo Zanoni38cc1da2013-12-20 15:09:41 -020012341 POWER_DOMAIN_TRANSCODER(cpu_transcoder));
Imre Deakddf9c532013-11-27 22:02:02 +020012342 if (!error->transcoder[i].power_domain_on)
Paulo Zanoni9d1cb912013-11-01 13:32:08 -020012343 continue;
12344
Chris Wilson63b66e52013-08-08 15:12:06 +020012345 error->transcoder[i].cpu_transcoder = cpu_transcoder;
12346
12347 error->transcoder[i].conf = I915_READ(PIPECONF(cpu_transcoder));
12348 error->transcoder[i].htotal = I915_READ(HTOTAL(cpu_transcoder));
12349 error->transcoder[i].hblank = I915_READ(HBLANK(cpu_transcoder));
12350 error->transcoder[i].hsync = I915_READ(HSYNC(cpu_transcoder));
12351 error->transcoder[i].vtotal = I915_READ(VTOTAL(cpu_transcoder));
12352 error->transcoder[i].vblank = I915_READ(VBLANK(cpu_transcoder));
12353 error->transcoder[i].vsync = I915_READ(VSYNC(cpu_transcoder));
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012354 }
12355
12356 return error;
12357}
12358
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030012359#define err_printf(e, ...) i915_error_printf(e, __VA_ARGS__)
12360
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012361void
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030012362intel_display_print_error_state(struct drm_i915_error_state_buf *m,
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012363 struct drm_device *dev,
12364 struct intel_display_error_state *error)
12365{
12366 int i;
12367
Chris Wilson63b66e52013-08-08 15:12:06 +020012368 if (!error)
12369 return;
12370
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030012371 err_printf(m, "Num Pipes: %d\n", INTEL_INFO(dev)->num_pipes);
Imre Deak190be112013-11-25 17:15:31 +020012372 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030012373 err_printf(m, "PWR_WELL_CTL2: %08x\n",
Paulo Zanoniff57f1b2013-05-03 12:15:37 -030012374 error->power_well_driver);
Damien Lespiau52331302012-08-15 19:23:25 +010012375 for_each_pipe(i) {
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030012376 err_printf(m, "Pipe [%d]:\n", i);
Imre Deakddf9c532013-11-27 22:02:02 +020012377 err_printf(m, " Power: %s\n",
12378 error->pipe[i].power_domain_on ? "on" : "off");
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030012379 err_printf(m, " SRC: %08x\n", error->pipe[i].source);
Imre Deakf301b1e2014-04-18 15:55:04 +030012380 err_printf(m, " STAT: %08x\n", error->pipe[i].stat);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012381
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030012382 err_printf(m, "Plane [%d]:\n", i);
12383 err_printf(m, " CNTR: %08x\n", error->plane[i].control);
12384 err_printf(m, " STRIDE: %08x\n", error->plane[i].stride);
Paulo Zanoni80ca3782013-03-22 14:20:57 -030012385 if (INTEL_INFO(dev)->gen <= 3) {
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030012386 err_printf(m, " SIZE: %08x\n", error->plane[i].size);
12387 err_printf(m, " POS: %08x\n", error->plane[i].pos);
Paulo Zanoni80ca3782013-03-22 14:20:57 -030012388 }
Paulo Zanoni4b71a572013-03-22 14:19:21 -030012389 if (INTEL_INFO(dev)->gen <= 7 && !IS_HASWELL(dev))
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030012390 err_printf(m, " ADDR: %08x\n", error->plane[i].addr);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012391 if (INTEL_INFO(dev)->gen >= 4) {
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030012392 err_printf(m, " SURF: %08x\n", error->plane[i].surface);
12393 err_printf(m, " TILEOFF: %08x\n", error->plane[i].tile_offset);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012394 }
12395
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030012396 err_printf(m, "Cursor [%d]:\n", i);
12397 err_printf(m, " CNTR: %08x\n", error->cursor[i].control);
12398 err_printf(m, " POS: %08x\n", error->cursor[i].position);
12399 err_printf(m, " BASE: %08x\n", error->cursor[i].base);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012400 }
Chris Wilson63b66e52013-08-08 15:12:06 +020012401
12402 for (i = 0; i < error->num_transcoders; i++) {
Chris Wilson1cf84bb2013-10-21 09:10:33 +010012403 err_printf(m, "CPU transcoder: %c\n",
Chris Wilson63b66e52013-08-08 15:12:06 +020012404 transcoder_name(error->transcoder[i].cpu_transcoder));
Imre Deakddf9c532013-11-27 22:02:02 +020012405 err_printf(m, " Power: %s\n",
12406 error->transcoder[i].power_domain_on ? "on" : "off");
Chris Wilson63b66e52013-08-08 15:12:06 +020012407 err_printf(m, " CONF: %08x\n", error->transcoder[i].conf);
12408 err_printf(m, " HTOTAL: %08x\n", error->transcoder[i].htotal);
12409 err_printf(m, " HBLANK: %08x\n", error->transcoder[i].hblank);
12410 err_printf(m, " HSYNC: %08x\n", error->transcoder[i].hsync);
12411 err_printf(m, " VTOTAL: %08x\n", error->transcoder[i].vtotal);
12412 err_printf(m, " VBLANK: %08x\n", error->transcoder[i].vblank);
12413 err_printf(m, " VSYNC: %08x\n", error->transcoder[i].vsync);
12414 }
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012415}