blob: 5abef0426cc58f874305e31ddd61b2e3fa35dab1 [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
Chon Ming Lee076ed3b2014-04-09 13:28:17 +03001487 if (IS_CHERRYVIEW(dev)) {
1488 enum dpio_phy phy;
1489 u32 val;
1490
1491 for (phy = DPIO_PHY0; phy < I915_NUM_PHYS_VLV; phy++) {
1492 /* Poll for phypwrgood signal */
1493 if (wait_for(I915_READ(DISPLAY_PHY_STATUS) &
1494 PHY_POWERGOOD(phy), 1))
1495 DRM_ERROR("Display PHY %d is not power up\n", phy);
1496
1497 /*
1498 * Deassert common lane reset for PHY.
1499 *
1500 * This should only be done on init and resume from S3
1501 * with both PLLs disabled, or we risk losing DPIO and
1502 * PLL synchronization.
1503 */
1504 val = I915_READ(DISPLAY_PHY_CONTROL);
1505 I915_WRITE(DISPLAY_PHY_CONTROL,
1506 PHY_COM_LANE_RESET_DEASSERT(phy, val));
1507 }
1508
1509 } else {
1510 /*
Jesse Barnes57021052014-05-23 13:16:40 -07001511 * If DPIO has already been reset, e.g. by BIOS, just skip all
1512 * this.
1513 */
1514 if (I915_READ(DPIO_CTL) & DPIO_CMNRST)
1515 return;
1516
1517 /*
1518 * From VLV2A0_DP_eDP_HDMI_DPIO_driver_vbios_notes_11.docx:
1519 * Need to assert and de-assert PHY SB reset by gating the
1520 * common lane power, then un-gating it.
1521 * Simply ungating isn't enough to reset the PHY enough to get
1522 * ports and lanes running.
1523 */
1524 __vlv_set_power_well(dev_priv, PUNIT_POWER_WELL_DPIO_CMN_BC,
1525 false);
1526 __vlv_set_power_well(dev_priv, PUNIT_POWER_WELL_DPIO_CMN_BC,
1527 true);
Chon Ming Lee076ed3b2014-04-09 13:28:17 +03001528 }
Jesse Barnes40e9cf62013-10-03 11:35:46 -07001529}
1530
Daniel Vetter426115c2013-07-11 22:13:42 +02001531static void vlv_enable_pll(struct intel_crtc *crtc)
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001532{
Daniel Vetter426115c2013-07-11 22:13:42 +02001533 struct drm_device *dev = crtc->base.dev;
1534 struct drm_i915_private *dev_priv = dev->dev_private;
1535 int reg = DPLL(crtc->pipe);
1536 u32 dpll = crtc->config.dpll_hw_state.dpll;
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001537
Daniel Vetter426115c2013-07-11 22:13:42 +02001538 assert_pipe_disabled(dev_priv, crtc->pipe);
Daniel Vetter58c6eaa2013-04-11 16:29:09 +02001539
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001540 /* No really, not for ILK+ */
Daniel Vetter87442f72013-06-06 00:52:17 +02001541 BUG_ON(!IS_VALLEYVIEW(dev_priv->dev));
1542
1543 /* PLL is protected by panel, make sure we can write it */
1544 if (IS_MOBILE(dev_priv->dev) && !IS_I830(dev_priv->dev))
Daniel Vetter426115c2013-07-11 22:13:42 +02001545 assert_panel_unlocked(dev_priv, crtc->pipe);
Daniel Vetter87442f72013-06-06 00:52:17 +02001546
Daniel Vetter426115c2013-07-11 22:13:42 +02001547 I915_WRITE(reg, dpll);
1548 POSTING_READ(reg);
1549 udelay(150);
1550
1551 if (wait_for(((I915_READ(reg) & DPLL_LOCK_VLV) == DPLL_LOCK_VLV), 1))
1552 DRM_ERROR("DPLL %d failed to lock\n", crtc->pipe);
1553
1554 I915_WRITE(DPLL_MD(crtc->pipe), crtc->config.dpll_hw_state.dpll_md);
1555 POSTING_READ(DPLL_MD(crtc->pipe));
Daniel Vetter87442f72013-06-06 00:52:17 +02001556
1557 /* We do this three times for luck */
Daniel Vetter426115c2013-07-11 22:13:42 +02001558 I915_WRITE(reg, dpll);
Daniel Vetter87442f72013-06-06 00:52:17 +02001559 POSTING_READ(reg);
1560 udelay(150); /* wait for warmup */
Daniel Vetter426115c2013-07-11 22:13:42 +02001561 I915_WRITE(reg, dpll);
Daniel Vetter87442f72013-06-06 00:52:17 +02001562 POSTING_READ(reg);
1563 udelay(150); /* wait for warmup */
Daniel Vetter426115c2013-07-11 22:13:42 +02001564 I915_WRITE(reg, dpll);
Daniel Vetter87442f72013-06-06 00:52:17 +02001565 POSTING_READ(reg);
1566 udelay(150); /* wait for warmup */
1567}
1568
Chon Ming Lee9d556c92014-05-02 14:27:47 +03001569static void chv_enable_pll(struct intel_crtc *crtc)
1570{
1571 struct drm_device *dev = crtc->base.dev;
1572 struct drm_i915_private *dev_priv = dev->dev_private;
1573 int pipe = crtc->pipe;
1574 enum dpio_channel port = vlv_pipe_to_channel(pipe);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03001575 u32 tmp;
1576
1577 assert_pipe_disabled(dev_priv, crtc->pipe);
1578
1579 BUG_ON(!IS_CHERRYVIEW(dev_priv->dev));
1580
1581 mutex_lock(&dev_priv->dpio_lock);
1582
1583 /* Enable back the 10bit clock to display controller */
1584 tmp = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW14(port));
1585 tmp |= DPIO_DCLKP_EN;
1586 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port), tmp);
1587
1588 /*
1589 * Need to wait > 100ns between dclkp clock enable bit and PLL enable.
1590 */
1591 udelay(1);
1592
1593 /* Enable PLL */
Ville Syrjäläa11b0702014-04-09 13:28:57 +03001594 I915_WRITE(DPLL(pipe), crtc->config.dpll_hw_state.dpll);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03001595
1596 /* Check PLL is locked */
Ville Syrjäläa11b0702014-04-09 13:28:57 +03001597 if (wait_for(((I915_READ(DPLL(pipe)) & DPLL_LOCK_VLV) == DPLL_LOCK_VLV), 1))
Chon Ming Lee9d556c92014-05-02 14:27:47 +03001598 DRM_ERROR("PLL %d failed to lock\n", pipe);
1599
Ville Syrjäläa11b0702014-04-09 13:28:57 +03001600 /* not sure when this should be written */
1601 I915_WRITE(DPLL_MD(pipe), crtc->config.dpll_hw_state.dpll_md);
1602 POSTING_READ(DPLL_MD(pipe));
1603
Chon Ming Lee9d556c92014-05-02 14:27:47 +03001604 mutex_unlock(&dev_priv->dpio_lock);
1605}
1606
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001607static void i9xx_enable_pll(struct intel_crtc *crtc)
Daniel Vetter87442f72013-06-06 00:52:17 +02001608{
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001609 struct drm_device *dev = crtc->base.dev;
1610 struct drm_i915_private *dev_priv = dev->dev_private;
1611 int reg = DPLL(crtc->pipe);
1612 u32 dpll = crtc->config.dpll_hw_state.dpll;
Daniel Vetter87442f72013-06-06 00:52:17 +02001613
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001614 assert_pipe_disabled(dev_priv, crtc->pipe);
Daniel Vetter87442f72013-06-06 00:52:17 +02001615
1616 /* No really, not for ILK+ */
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001617 BUG_ON(INTEL_INFO(dev)->gen >= 5);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001618
1619 /* PLL is protected by panel, make sure we can write it */
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001620 if (IS_MOBILE(dev) && !IS_I830(dev))
1621 assert_panel_unlocked(dev_priv, crtc->pipe);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001622
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001623 I915_WRITE(reg, dpll);
1624
1625 /* Wait for the clocks to stabilize. */
1626 POSTING_READ(reg);
1627 udelay(150);
1628
1629 if (INTEL_INFO(dev)->gen >= 4) {
1630 I915_WRITE(DPLL_MD(crtc->pipe),
1631 crtc->config.dpll_hw_state.dpll_md);
1632 } else {
1633 /* The pixel multiplier can only be updated once the
1634 * DPLL is enabled and the clocks are stable.
1635 *
1636 * So write it again.
1637 */
1638 I915_WRITE(reg, dpll);
1639 }
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001640
1641 /* We do this three times for luck */
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001642 I915_WRITE(reg, dpll);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001643 POSTING_READ(reg);
1644 udelay(150); /* wait for warmup */
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001645 I915_WRITE(reg, dpll);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001646 POSTING_READ(reg);
1647 udelay(150); /* wait for warmup */
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001648 I915_WRITE(reg, dpll);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001649 POSTING_READ(reg);
1650 udelay(150); /* wait for warmup */
1651}
1652
1653/**
Daniel Vetter50b44a42013-06-05 13:34:33 +02001654 * i9xx_disable_pll - disable a PLL
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001655 * @dev_priv: i915 private structure
1656 * @pipe: pipe PLL to disable
1657 *
1658 * Disable the PLL for @pipe, making sure the pipe is off first.
1659 *
1660 * Note! This is for pre-ILK only.
1661 */
Daniel Vetter50b44a42013-06-05 13:34:33 +02001662static void i9xx_disable_pll(struct drm_i915_private *dev_priv, enum pipe pipe)
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001663{
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001664 /* Don't disable pipe A or pipe A PLLs if needed */
1665 if (pipe == PIPE_A && (dev_priv->quirks & QUIRK_PIPEA_FORCE))
1666 return;
1667
1668 /* Make sure the pipe isn't still relying on us */
1669 assert_pipe_disabled(dev_priv, pipe);
1670
Daniel Vetter50b44a42013-06-05 13:34:33 +02001671 I915_WRITE(DPLL(pipe), 0);
1672 POSTING_READ(DPLL(pipe));
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001673}
1674
Jesse Barnesf6071162013-10-01 10:41:38 -07001675static void vlv_disable_pll(struct drm_i915_private *dev_priv, enum pipe pipe)
1676{
1677 u32 val = 0;
1678
1679 /* Make sure the pipe isn't still relying on us */
1680 assert_pipe_disabled(dev_priv, pipe);
1681
Imre Deake5cbfbf2014-01-09 17:08:16 +02001682 /*
1683 * Leave integrated clock source and reference clock enabled for pipe B.
1684 * The latter is needed for VGA hotplug / manual detection.
1685 */
Jesse Barnesf6071162013-10-01 10:41:38 -07001686 if (pipe == PIPE_B)
Imre Deake5cbfbf2014-01-09 17:08:16 +02001687 val = DPLL_INTEGRATED_CRI_CLK_VLV | DPLL_REFA_CLK_ENABLE_VLV;
Jesse Barnesf6071162013-10-01 10:41:38 -07001688 I915_WRITE(DPLL(pipe), val);
1689 POSTING_READ(DPLL(pipe));
Chon Ming Lee076ed3b2014-04-09 13:28:17 +03001690
1691}
1692
1693static void chv_disable_pll(struct drm_i915_private *dev_priv, enum pipe pipe)
1694{
Ville Syrjäläd7520482014-04-09 13:28:59 +03001695 enum dpio_channel port = vlv_pipe_to_channel(pipe);
Chon Ming Lee076ed3b2014-04-09 13:28:17 +03001696 u32 val;
1697
Ville Syrjäläa11b0702014-04-09 13:28:57 +03001698 /* Make sure the pipe isn't still relying on us */
1699 assert_pipe_disabled(dev_priv, pipe);
Chon Ming Lee076ed3b2014-04-09 13:28:17 +03001700
Ville Syrjäläa11b0702014-04-09 13:28:57 +03001701 /* Set PLL en = 0 */
1702 val = DPLL_SSC_REF_CLOCK_CHV;
1703 if (pipe != PIPE_A)
1704 val |= DPLL_INTEGRATED_CRI_CLK_VLV;
1705 I915_WRITE(DPLL(pipe), val);
1706 POSTING_READ(DPLL(pipe));
Ville Syrjäläd7520482014-04-09 13:28:59 +03001707
1708 mutex_lock(&dev_priv->dpio_lock);
1709
1710 /* Disable 10bit clock to display controller */
1711 val = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW14(port));
1712 val &= ~DPIO_DCLKP_EN;
1713 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port), val);
1714
1715 mutex_unlock(&dev_priv->dpio_lock);
Jesse Barnesf6071162013-10-01 10:41:38 -07001716}
1717
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001718void vlv_wait_port_ready(struct drm_i915_private *dev_priv,
1719 struct intel_digital_port *dport)
Jesse Barnes89b667f2013-04-18 14:51:36 -07001720{
1721 u32 port_mask;
Chon Ming Lee00fc31b2014-04-09 13:28:15 +03001722 int dpll_reg;
Jesse Barnes89b667f2013-04-18 14:51:36 -07001723
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001724 switch (dport->port) {
1725 case PORT_B:
Jesse Barnes89b667f2013-04-18 14:51:36 -07001726 port_mask = DPLL_PORTB_READY_MASK;
Chon Ming Lee00fc31b2014-04-09 13:28:15 +03001727 dpll_reg = DPLL(0);
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001728 break;
1729 case PORT_C:
Jesse Barnes89b667f2013-04-18 14:51:36 -07001730 port_mask = DPLL_PORTC_READY_MASK;
Chon Ming Lee00fc31b2014-04-09 13:28:15 +03001731 dpll_reg = DPLL(0);
1732 break;
1733 case PORT_D:
1734 port_mask = DPLL_PORTD_READY_MASK;
1735 dpll_reg = DPIO_PHY_STATUS;
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001736 break;
1737 default:
1738 BUG();
1739 }
Jesse Barnes89b667f2013-04-18 14:51:36 -07001740
Chon Ming Lee00fc31b2014-04-09 13:28:15 +03001741 if (wait_for((I915_READ(dpll_reg) & port_mask) == 0, 1000))
Jesse Barnes89b667f2013-04-18 14:51:36 -07001742 WARN(1, "timed out waiting for port %c ready: 0x%08x\n",
Chon Ming Lee00fc31b2014-04-09 13:28:15 +03001743 port_name(dport->port), I915_READ(dpll_reg));
Jesse Barnes89b667f2013-04-18 14:51:36 -07001744}
1745
Daniel Vetterb14b1052014-04-24 23:55:13 +02001746static void intel_prepare_shared_dpll(struct intel_crtc *crtc)
1747{
1748 struct drm_device *dev = crtc->base.dev;
1749 struct drm_i915_private *dev_priv = dev->dev_private;
1750 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
1751
1752 WARN_ON(!pll->refcount);
1753 if (pll->active == 0) {
1754 DRM_DEBUG_DRIVER("setting up %s\n", pll->name);
1755 WARN_ON(pll->on);
1756 assert_shared_dpll_disabled(dev_priv, pll);
1757
1758 pll->mode_set(dev_priv, pll);
1759 }
1760}
1761
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001762/**
Daniel Vetter85b38942014-04-24 23:55:14 +02001763 * intel_enable_shared_dpll - enable PCH PLL
Jesse Barnes92f25842011-01-04 15:09:34 -08001764 * @dev_priv: i915 private structure
1765 * @pipe: pipe PLL to enable
1766 *
1767 * The PCH PLL needs to be enabled before the PCH transcoder, since it
1768 * drives the transcoder clock.
1769 */
Daniel Vetter85b38942014-04-24 23:55:14 +02001770static void intel_enable_shared_dpll(struct intel_crtc *crtc)
Jesse Barnes92f25842011-01-04 15:09:34 -08001771{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001772 struct drm_device *dev = crtc->base.dev;
1773 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vettere2b78262013-06-07 23:10:03 +02001774 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
Jesse Barnes92f25842011-01-04 15:09:34 -08001775
Daniel Vetter87a875b2013-06-05 13:34:19 +02001776 if (WARN_ON(pll == NULL))
Chris Wilson48da64a2012-05-13 20:16:12 +01001777 return;
1778
1779 if (WARN_ON(pll->refcount == 0))
1780 return;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001781
Daniel Vetter46edb022013-06-05 13:34:12 +02001782 DRM_DEBUG_KMS("enable %s (active %d, on? %d)for crtc %d\n",
1783 pll->name, pll->active, pll->on,
Daniel Vettere2b78262013-06-07 23:10:03 +02001784 crtc->base.base.id);
Jesse Barnes92f25842011-01-04 15:09:34 -08001785
Daniel Vettercdbd2312013-06-05 13:34:03 +02001786 if (pll->active++) {
1787 WARN_ON(!pll->on);
Daniel Vettere9d69442013-06-05 13:34:15 +02001788 assert_shared_dpll_enabled(dev_priv, pll);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001789 return;
1790 }
Daniel Vetterf4a091c2013-06-10 17:28:22 +02001791 WARN_ON(pll->on);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001792
Daniel Vetter46edb022013-06-05 13:34:12 +02001793 DRM_DEBUG_KMS("enabling %s\n", pll->name);
Daniel Vettere7b903d2013-06-05 13:34:14 +02001794 pll->enable(dev_priv, pll);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001795 pll->on = true;
Jesse Barnes92f25842011-01-04 15:09:34 -08001796}
1797
Daniel Vettere2b78262013-06-07 23:10:03 +02001798static void intel_disable_shared_dpll(struct intel_crtc *crtc)
Jesse Barnes92f25842011-01-04 15:09:34 -08001799{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001800 struct drm_device *dev = crtc->base.dev;
1801 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vettere2b78262013-06-07 23:10:03 +02001802 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
Jesse Barnes4c609cb2011-09-02 12:52:11 -07001803
Jesse Barnes92f25842011-01-04 15:09:34 -08001804 /* PCH only available on ILK+ */
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001805 BUG_ON(INTEL_INFO(dev)->gen < 5);
Daniel Vetter87a875b2013-06-05 13:34:19 +02001806 if (WARN_ON(pll == NULL))
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001807 return;
1808
Chris Wilson48da64a2012-05-13 20:16:12 +01001809 if (WARN_ON(pll->refcount == 0))
1810 return;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001811
Daniel Vetter46edb022013-06-05 13:34:12 +02001812 DRM_DEBUG_KMS("disable %s (active %d, on? %d) for crtc %d\n",
1813 pll->name, pll->active, pll->on,
Daniel Vettere2b78262013-06-07 23:10:03 +02001814 crtc->base.base.id);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001815
Chris Wilson48da64a2012-05-13 20:16:12 +01001816 if (WARN_ON(pll->active == 0)) {
Daniel Vettere9d69442013-06-05 13:34:15 +02001817 assert_shared_dpll_disabled(dev_priv, pll);
Chris Wilson48da64a2012-05-13 20:16:12 +01001818 return;
1819 }
1820
Daniel Vettere9d69442013-06-05 13:34:15 +02001821 assert_shared_dpll_enabled(dev_priv, pll);
Daniel Vetterf4a091c2013-06-10 17:28:22 +02001822 WARN_ON(!pll->on);
Daniel Vettercdbd2312013-06-05 13:34:03 +02001823 if (--pll->active)
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001824 return;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001825
Daniel Vetter46edb022013-06-05 13:34:12 +02001826 DRM_DEBUG_KMS("disabling %s\n", pll->name);
Daniel Vettere7b903d2013-06-05 13:34:14 +02001827 pll->disable(dev_priv, pll);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001828 pll->on = false;
Jesse Barnes92f25842011-01-04 15:09:34 -08001829}
1830
Paulo Zanonib8a4f402012-10-31 18:12:42 -02001831static void ironlake_enable_pch_transcoder(struct drm_i915_private *dev_priv,
1832 enum pipe pipe)
Jesse Barnes040484a2011-01-03 12:14:26 -08001833{
Daniel Vetter23670b322012-11-01 09:15:30 +01001834 struct drm_device *dev = dev_priv->dev;
Paulo Zanoni7c26e5c2012-02-14 17:07:09 -02001835 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
Daniel Vettere2b78262013-06-07 23:10:03 +02001836 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter23670b322012-11-01 09:15:30 +01001837 uint32_t reg, val, pipeconf_val;
Jesse Barnes040484a2011-01-03 12:14:26 -08001838
1839 /* PCH only available on ILK+ */
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001840 BUG_ON(INTEL_INFO(dev)->gen < 5);
Jesse Barnes040484a2011-01-03 12:14:26 -08001841
1842 /* Make sure PCH DPLL is enabled */
Daniel Vettere72f9fb2013-06-05 13:34:06 +02001843 assert_shared_dpll_enabled(dev_priv,
Daniel Vettere9d69442013-06-05 13:34:15 +02001844 intel_crtc_to_shared_dpll(intel_crtc));
Jesse Barnes040484a2011-01-03 12:14:26 -08001845
1846 /* FDI must be feeding us bits for PCH ports */
1847 assert_fdi_tx_enabled(dev_priv, pipe);
1848 assert_fdi_rx_enabled(dev_priv, pipe);
1849
Daniel Vetter23670b322012-11-01 09:15:30 +01001850 if (HAS_PCH_CPT(dev)) {
1851 /* Workaround: Set the timing override bit before enabling the
1852 * pch transcoder. */
1853 reg = TRANS_CHICKEN2(pipe);
1854 val = I915_READ(reg);
1855 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
1856 I915_WRITE(reg, val);
Eugeni Dodonov59c859d2012-05-09 15:37:19 -03001857 }
Daniel Vetter23670b322012-11-01 09:15:30 +01001858
Daniel Vetterab9412b2013-05-03 11:49:46 +02001859 reg = PCH_TRANSCONF(pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08001860 val = I915_READ(reg);
Paulo Zanoni5f7f7262012-02-03 17:47:15 -02001861 pipeconf_val = I915_READ(PIPECONF(pipe));
Jesse Barnese9bcff52011-06-24 12:19:20 -07001862
1863 if (HAS_PCH_IBX(dev_priv->dev)) {
1864 /*
1865 * make the BPC in transcoder be consistent with
1866 * that in pipeconf reg.
1867 */
Daniel Vetterdfd07d72012-12-17 11:21:38 +01001868 val &= ~PIPECONF_BPC_MASK;
1869 val |= pipeconf_val & PIPECONF_BPC_MASK;
Jesse Barnese9bcff52011-06-24 12:19:20 -07001870 }
Paulo Zanoni5f7f7262012-02-03 17:47:15 -02001871
1872 val &= ~TRANS_INTERLACE_MASK;
1873 if ((pipeconf_val & PIPECONF_INTERLACE_MASK) == PIPECONF_INTERLACED_ILK)
Paulo Zanoni7c26e5c2012-02-14 17:07:09 -02001874 if (HAS_PCH_IBX(dev_priv->dev) &&
1875 intel_pipe_has_type(crtc, INTEL_OUTPUT_SDVO))
1876 val |= TRANS_LEGACY_INTERLACED_ILK;
1877 else
1878 val |= TRANS_INTERLACED;
Paulo Zanoni5f7f7262012-02-03 17:47:15 -02001879 else
1880 val |= TRANS_PROGRESSIVE;
1881
Jesse Barnes040484a2011-01-03 12:14:26 -08001882 I915_WRITE(reg, val | TRANS_ENABLE);
1883 if (wait_for(I915_READ(reg) & TRANS_STATE_ENABLE, 100))
Ville Syrjälä4bb6f1f2013-04-17 17:48:50 +03001884 DRM_ERROR("failed to enable transcoder %c\n", pipe_name(pipe));
Jesse Barnes040484a2011-01-03 12:14:26 -08001885}
1886
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001887static void lpt_enable_pch_transcoder(struct drm_i915_private *dev_priv,
Paulo Zanoni937bb612012-10-31 18:12:47 -02001888 enum transcoder cpu_transcoder)
Jesse Barnes040484a2011-01-03 12:14:26 -08001889{
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001890 u32 val, pipeconf_val;
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001891
1892 /* PCH only available on ILK+ */
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001893 BUG_ON(INTEL_INFO(dev_priv->dev)->gen < 5);
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001894
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001895 /* FDI must be feeding us bits for PCH ports */
Daniel Vetter1a240d42012-11-29 22:18:51 +01001896 assert_fdi_tx_enabled(dev_priv, (enum pipe) cpu_transcoder);
Paulo Zanoni937bb612012-10-31 18:12:47 -02001897 assert_fdi_rx_enabled(dev_priv, TRANSCODER_A);
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001898
Paulo Zanoni223a6fd2012-10-31 18:12:52 -02001899 /* Workaround: set timing override bit. */
1900 val = I915_READ(_TRANSA_CHICKEN2);
Daniel Vetter23670b322012-11-01 09:15:30 +01001901 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
Paulo Zanoni223a6fd2012-10-31 18:12:52 -02001902 I915_WRITE(_TRANSA_CHICKEN2, val);
1903
Paulo Zanoni25f3ef12012-10-31 18:12:49 -02001904 val = TRANS_ENABLE;
Paulo Zanoni937bb612012-10-31 18:12:47 -02001905 pipeconf_val = I915_READ(PIPECONF(cpu_transcoder));
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001906
Paulo Zanoni9a76b1c2012-10-31 18:12:48 -02001907 if ((pipeconf_val & PIPECONF_INTERLACE_MASK_HSW) ==
1908 PIPECONF_INTERLACED_ILK)
Paulo Zanonia35f2672012-10-31 18:12:45 -02001909 val |= TRANS_INTERLACED;
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001910 else
1911 val |= TRANS_PROGRESSIVE;
1912
Daniel Vetterab9412b2013-05-03 11:49:46 +02001913 I915_WRITE(LPT_TRANSCONF, val);
1914 if (wait_for(I915_READ(LPT_TRANSCONF) & TRANS_STATE_ENABLE, 100))
Paulo Zanoni937bb612012-10-31 18:12:47 -02001915 DRM_ERROR("Failed to enable PCH transcoder\n");
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001916}
1917
Paulo Zanonib8a4f402012-10-31 18:12:42 -02001918static void ironlake_disable_pch_transcoder(struct drm_i915_private *dev_priv,
1919 enum pipe pipe)
Jesse Barnes040484a2011-01-03 12:14:26 -08001920{
Daniel Vetter23670b322012-11-01 09:15:30 +01001921 struct drm_device *dev = dev_priv->dev;
1922 uint32_t reg, val;
Jesse Barnes040484a2011-01-03 12:14:26 -08001923
1924 /* FDI relies on the transcoder */
1925 assert_fdi_tx_disabled(dev_priv, pipe);
1926 assert_fdi_rx_disabled(dev_priv, pipe);
1927
Jesse Barnes291906f2011-02-02 12:28:03 -08001928 /* Ports must be off as well */
1929 assert_pch_ports_disabled(dev_priv, pipe);
1930
Daniel Vetterab9412b2013-05-03 11:49:46 +02001931 reg = PCH_TRANSCONF(pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08001932 val = I915_READ(reg);
1933 val &= ~TRANS_ENABLE;
1934 I915_WRITE(reg, val);
1935 /* wait for PCH transcoder off, transcoder state */
1936 if (wait_for((I915_READ(reg) & TRANS_STATE_ENABLE) == 0, 50))
Ville Syrjälä4bb6f1f2013-04-17 17:48:50 +03001937 DRM_ERROR("failed to disable transcoder %c\n", pipe_name(pipe));
Daniel Vetter23670b322012-11-01 09:15:30 +01001938
1939 if (!HAS_PCH_IBX(dev)) {
1940 /* Workaround: Clear the timing override chicken bit again. */
1941 reg = TRANS_CHICKEN2(pipe);
1942 val = I915_READ(reg);
1943 val &= ~TRANS_CHICKEN2_TIMING_OVERRIDE;
1944 I915_WRITE(reg, val);
1945 }
Jesse Barnes040484a2011-01-03 12:14:26 -08001946}
1947
Paulo Zanoniab4d9662012-10-31 18:12:55 -02001948static void lpt_disable_pch_transcoder(struct drm_i915_private *dev_priv)
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001949{
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001950 u32 val;
1951
Daniel Vetterab9412b2013-05-03 11:49:46 +02001952 val = I915_READ(LPT_TRANSCONF);
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001953 val &= ~TRANS_ENABLE;
Daniel Vetterab9412b2013-05-03 11:49:46 +02001954 I915_WRITE(LPT_TRANSCONF, val);
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001955 /* wait for PCH transcoder off, transcoder state */
Daniel Vetterab9412b2013-05-03 11:49:46 +02001956 if (wait_for((I915_READ(LPT_TRANSCONF) & TRANS_STATE_ENABLE) == 0, 50))
Paulo Zanoni8a52fd92012-10-31 18:12:51 -02001957 DRM_ERROR("Failed to disable PCH transcoder\n");
Paulo Zanoni223a6fd2012-10-31 18:12:52 -02001958
1959 /* Workaround: clear timing override bit. */
1960 val = I915_READ(_TRANSA_CHICKEN2);
Daniel Vetter23670b322012-11-01 09:15:30 +01001961 val &= ~TRANS_CHICKEN2_TIMING_OVERRIDE;
Paulo Zanoni223a6fd2012-10-31 18:12:52 -02001962 I915_WRITE(_TRANSA_CHICKEN2, val);
Jesse Barnes92f25842011-01-04 15:09:34 -08001963}
1964
1965/**
Chris Wilson309cfea2011-01-28 13:54:53 +00001966 * intel_enable_pipe - enable a pipe, asserting requirements
Paulo Zanoni03722642014-01-17 13:51:09 -02001967 * @crtc: crtc responsible for the pipe
Jesse Barnesb24e7172011-01-04 15:09:30 -08001968 *
Paulo Zanoni03722642014-01-17 13:51:09 -02001969 * Enable @crtc's pipe, making sure that various hardware specific requirements
Jesse Barnesb24e7172011-01-04 15:09:30 -08001970 * are met, if applicable, e.g. PLL enabled, LVDS pairs enabled, etc.
Jesse Barnesb24e7172011-01-04 15:09:30 -08001971 */
Paulo Zanonie1fdc472014-01-17 13:51:12 -02001972static void intel_enable_pipe(struct intel_crtc *crtc)
Jesse Barnesb24e7172011-01-04 15:09:30 -08001973{
Paulo Zanoni03722642014-01-17 13:51:09 -02001974 struct drm_device *dev = crtc->base.dev;
1975 struct drm_i915_private *dev_priv = dev->dev_private;
1976 enum pipe pipe = crtc->pipe;
Paulo Zanoni702e7a52012-10-23 18:29:59 -02001977 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
1978 pipe);
Daniel Vetter1a240d42012-11-29 22:18:51 +01001979 enum pipe pch_transcoder;
Jesse Barnesb24e7172011-01-04 15:09:30 -08001980 int reg;
1981 u32 val;
1982
Daniel Vetter58c6eaa2013-04-11 16:29:09 +02001983 assert_planes_disabled(dev_priv, pipe);
Jani Nikula93ce0ba2013-09-13 11:03:08 +03001984 assert_cursor_disabled(dev_priv, pipe);
Daniel Vetter58c6eaa2013-04-11 16:29:09 +02001985 assert_sprites_disabled(dev_priv, pipe);
1986
Paulo Zanoni681e5812012-12-06 11:12:38 -02001987 if (HAS_PCH_LPT(dev_priv->dev))
Paulo Zanonicc391bb2012-11-20 13:27:37 -02001988 pch_transcoder = TRANSCODER_A;
1989 else
1990 pch_transcoder = pipe;
1991
Jesse Barnesb24e7172011-01-04 15:09:30 -08001992 /*
1993 * A pipe without a PLL won't actually be able to drive bits from
1994 * a plane. On ILK+ the pipe PLLs are integrated, so we don't
1995 * need the check.
1996 */
1997 if (!HAS_PCH_SPLIT(dev_priv->dev))
Paulo Zanonifbf32182014-01-17 13:51:11 -02001998 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_DSI))
Jani Nikula23538ef2013-08-27 15:12:22 +03001999 assert_dsi_pll_enabled(dev_priv);
2000 else
2001 assert_pll_enabled(dev_priv, pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08002002 else {
Paulo Zanoni30421c42014-01-17 13:51:10 -02002003 if (crtc->config.has_pch_encoder) {
Jesse Barnes040484a2011-01-03 12:14:26 -08002004 /* if driving the PCH, we need FDI enabled */
Paulo Zanonicc391bb2012-11-20 13:27:37 -02002005 assert_fdi_rx_pll_enabled(dev_priv, pch_transcoder);
Daniel Vetter1a240d42012-11-29 22:18:51 +01002006 assert_fdi_tx_pll_enabled(dev_priv,
2007 (enum pipe) cpu_transcoder);
Jesse Barnes040484a2011-01-03 12:14:26 -08002008 }
2009 /* FIXME: assert CPU port conditions for SNB+ */
2010 }
Jesse Barnesb24e7172011-01-04 15:09:30 -08002011
Paulo Zanoni702e7a52012-10-23 18:29:59 -02002012 reg = PIPECONF(cpu_transcoder);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002013 val = I915_READ(reg);
Paulo Zanoni7ad25d42014-01-17 13:51:13 -02002014 if (val & PIPECONF_ENABLE) {
2015 WARN_ON(!(pipe == PIPE_A &&
2016 dev_priv->quirks & QUIRK_PIPEA_FORCE));
Chris Wilson00d70b12011-03-17 07:18:29 +00002017 return;
Paulo Zanoni7ad25d42014-01-17 13:51:13 -02002018 }
Chris Wilson00d70b12011-03-17 07:18:29 +00002019
2020 I915_WRITE(reg, val | PIPECONF_ENABLE);
Paulo Zanoni851855d2013-12-19 19:12:29 -02002021 POSTING_READ(reg);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002022}
2023
2024/**
Chris Wilson309cfea2011-01-28 13:54:53 +00002025 * intel_disable_pipe - disable a pipe, asserting requirements
Jesse Barnesb24e7172011-01-04 15:09:30 -08002026 * @dev_priv: i915 private structure
2027 * @pipe: pipe to disable
2028 *
2029 * Disable @pipe, making sure that various hardware specific requirements
2030 * are met, if applicable, e.g. plane disabled, panel fitter off, etc.
2031 *
2032 * @pipe should be %PIPE_A or %PIPE_B.
2033 *
2034 * Will wait until the pipe has shut down before returning.
2035 */
2036static void intel_disable_pipe(struct drm_i915_private *dev_priv,
2037 enum pipe pipe)
2038{
Paulo Zanoni702e7a52012-10-23 18:29:59 -02002039 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
2040 pipe);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002041 int reg;
2042 u32 val;
2043
2044 /*
2045 * Make sure planes won't keep trying to pump pixels to us,
2046 * or we might hang the display.
2047 */
2048 assert_planes_disabled(dev_priv, pipe);
Jani Nikula93ce0ba2013-09-13 11:03:08 +03002049 assert_cursor_disabled(dev_priv, pipe);
Jesse Barnes19332d72013-03-28 09:55:38 -07002050 assert_sprites_disabled(dev_priv, pipe);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002051
2052 /* Don't disable pipe A or pipe A PLLs if needed */
2053 if (pipe == PIPE_A && (dev_priv->quirks & QUIRK_PIPEA_FORCE))
2054 return;
2055
Paulo Zanoni702e7a52012-10-23 18:29:59 -02002056 reg = PIPECONF(cpu_transcoder);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002057 val = I915_READ(reg);
Chris Wilson00d70b12011-03-17 07:18:29 +00002058 if ((val & PIPECONF_ENABLE) == 0)
2059 return;
2060
2061 I915_WRITE(reg, val & ~PIPECONF_ENABLE);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002062 intel_wait_for_pipe_off(dev_priv->dev, pipe);
2063}
2064
Keith Packardd74362c2011-07-28 14:47:14 -07002065/*
2066 * Plane regs are double buffered, going from enabled->disabled needs a
2067 * trigger in order to latch. The display address reg provides this.
2068 */
Ville Syrjälä1dba99f2013-10-01 18:02:18 +03002069void intel_flush_primary_plane(struct drm_i915_private *dev_priv,
2070 enum plane plane)
Keith Packardd74362c2011-07-28 14:47:14 -07002071{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00002072 struct drm_device *dev = dev_priv->dev;
2073 u32 reg = INTEL_INFO(dev)->gen >= 4 ? DSPSURF(plane) : DSPADDR(plane);
Ville Syrjälä1dba99f2013-10-01 18:02:18 +03002074
2075 I915_WRITE(reg, I915_READ(reg));
2076 POSTING_READ(reg);
Keith Packardd74362c2011-07-28 14:47:14 -07002077}
2078
Jesse Barnesb24e7172011-01-04 15:09:30 -08002079/**
Matt Roper262ca2b2014-03-18 17:22:55 -07002080 * intel_enable_primary_hw_plane - enable the primary plane on a given pipe
Jesse Barnesb24e7172011-01-04 15:09:30 -08002081 * @dev_priv: i915 private structure
2082 * @plane: plane to enable
2083 * @pipe: pipe being fed
2084 *
2085 * Enable @plane on @pipe, making sure that @pipe is running first.
2086 */
Matt Roper262ca2b2014-03-18 17:22:55 -07002087static void intel_enable_primary_hw_plane(struct drm_i915_private *dev_priv,
2088 enum plane plane, enum pipe pipe)
Jesse Barnesb24e7172011-01-04 15:09:30 -08002089{
Ville Syrjälä939c2fe2013-10-01 18:02:10 +03002090 struct intel_crtc *intel_crtc =
2091 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002092 int reg;
2093 u32 val;
2094
2095 /* If the pipe isn't enabled, we can't pump pixels and may hang */
2096 assert_pipe_enabled(dev_priv, pipe);
2097
Ville Syrjälä98ec7732014-04-30 17:43:01 +03002098 if (intel_crtc->primary_enabled)
2099 return;
Ville Syrjälä0037f712013-10-01 18:02:20 +03002100
Ville Syrjälä4c445e02013-10-09 17:24:58 +03002101 intel_crtc->primary_enabled = true;
Ville Syrjälä939c2fe2013-10-01 18:02:10 +03002102
Jesse Barnesb24e7172011-01-04 15:09:30 -08002103 reg = DSPCNTR(plane);
2104 val = I915_READ(reg);
Ville Syrjälä10efa932014-04-28 15:53:25 +03002105 WARN_ON(val & DISPLAY_PLANE_ENABLE);
Chris Wilson00d70b12011-03-17 07:18:29 +00002106
2107 I915_WRITE(reg, val | DISPLAY_PLANE_ENABLE);
Ville Syrjälä1dba99f2013-10-01 18:02:18 +03002108 intel_flush_primary_plane(dev_priv, plane);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002109}
2110
Jesse Barnesb24e7172011-01-04 15:09:30 -08002111/**
Matt Roper262ca2b2014-03-18 17:22:55 -07002112 * intel_disable_primary_hw_plane - disable the primary hardware plane
Jesse Barnesb24e7172011-01-04 15:09:30 -08002113 * @dev_priv: i915 private structure
2114 * @plane: plane to disable
2115 * @pipe: pipe consuming the data
2116 *
2117 * Disable @plane; should be an independent operation.
2118 */
Matt Roper262ca2b2014-03-18 17:22:55 -07002119static void intel_disable_primary_hw_plane(struct drm_i915_private *dev_priv,
2120 enum plane plane, enum pipe pipe)
Jesse Barnesb24e7172011-01-04 15:09:30 -08002121{
Ville Syrjälä939c2fe2013-10-01 18:02:10 +03002122 struct intel_crtc *intel_crtc =
2123 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002124 int reg;
2125 u32 val;
2126
Ville Syrjälä98ec7732014-04-30 17:43:01 +03002127 if (!intel_crtc->primary_enabled)
2128 return;
Ville Syrjälä0037f712013-10-01 18:02:20 +03002129
Ville Syrjälä4c445e02013-10-09 17:24:58 +03002130 intel_crtc->primary_enabled = false;
Ville Syrjälä939c2fe2013-10-01 18:02:10 +03002131
Jesse Barnesb24e7172011-01-04 15:09:30 -08002132 reg = DSPCNTR(plane);
2133 val = I915_READ(reg);
Ville Syrjälä10efa932014-04-28 15:53:25 +03002134 WARN_ON((val & DISPLAY_PLANE_ENABLE) == 0);
Chris Wilson00d70b12011-03-17 07:18:29 +00002135
2136 I915_WRITE(reg, val & ~DISPLAY_PLANE_ENABLE);
Ville Syrjälä1dba99f2013-10-01 18:02:18 +03002137 intel_flush_primary_plane(dev_priv, plane);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002138}
2139
Chris Wilson693db182013-03-05 14:52:39 +00002140static bool need_vtd_wa(struct drm_device *dev)
2141{
2142#ifdef CONFIG_INTEL_IOMMU
2143 if (INTEL_INFO(dev)->gen >= 6 && intel_iommu_gfx_mapped)
2144 return true;
2145#endif
2146 return false;
2147}
2148
Jesse Barnesa57ce0b2014-02-07 12:10:35 -08002149static int intel_align_height(struct drm_device *dev, int height, bool tiled)
2150{
2151 int tile_height;
2152
2153 tile_height = tiled ? (IS_GEN2(dev) ? 16 : 8) : 1;
2154 return ALIGN(height, tile_height);
2155}
2156
Chris Wilson127bd2a2010-07-23 23:32:05 +01002157int
Chris Wilson48b956c2010-09-14 12:50:34 +01002158intel_pin_and_fence_fb_obj(struct drm_device *dev,
Chris Wilson05394f32010-11-08 19:18:58 +00002159 struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002160 struct intel_engine_cs *pipelined)
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002161{
Chris Wilsonce453d82011-02-21 14:43:56 +00002162 struct drm_i915_private *dev_priv = dev->dev_private;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002163 u32 alignment;
2164 int ret;
2165
Chris Wilson05394f32010-11-08 19:18:58 +00002166 switch (obj->tiling_mode) {
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002167 case I915_TILING_NONE:
Chris Wilson534843d2010-07-05 18:01:46 +01002168 if (IS_BROADWATER(dev) || IS_CRESTLINE(dev))
2169 alignment = 128 * 1024;
Chris Wilsona6c45cf2010-09-17 00:32:17 +01002170 else if (INTEL_INFO(dev)->gen >= 4)
Chris Wilson534843d2010-07-05 18:01:46 +01002171 alignment = 4 * 1024;
2172 else
2173 alignment = 64 * 1024;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002174 break;
2175 case I915_TILING_X:
2176 /* pin() will align the object as required by fence */
2177 alignment = 0;
2178 break;
2179 case I915_TILING_Y:
Daniel Vetter80075d42013-10-09 21:23:52 +02002180 WARN(1, "Y tiled bo slipped through, driver bug!\n");
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002181 return -EINVAL;
2182 default:
2183 BUG();
2184 }
2185
Chris Wilson693db182013-03-05 14:52:39 +00002186 /* Note that the w/a also requires 64 PTE of padding following the
2187 * bo. We currently fill all unused PTE with the shadow page and so
2188 * we should always have valid PTE following the scanout preventing
2189 * the VT-d warning.
2190 */
2191 if (need_vtd_wa(dev) && alignment < 256 * 1024)
2192 alignment = 256 * 1024;
2193
Chris Wilsonce453d82011-02-21 14:43:56 +00002194 dev_priv->mm.interruptible = false;
Chris Wilson2da3b9b2011-04-14 09:41:17 +01002195 ret = i915_gem_object_pin_to_display_plane(obj, alignment, pipelined);
Chris Wilson48b956c2010-09-14 12:50:34 +01002196 if (ret)
Chris Wilsonce453d82011-02-21 14:43:56 +00002197 goto err_interruptible;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002198
2199 /* Install a fence for tiled scan-out. Pre-i965 always needs a
2200 * fence, whereas 965+ only requires a fence if using
2201 * framebuffer compression. For simplicity, we always install
2202 * a fence as the cost is not that onerous.
2203 */
Chris Wilson06d98132012-04-17 15:31:24 +01002204 ret = i915_gem_object_get_fence(obj);
Chris Wilson9a5a53b2012-03-22 15:10:00 +00002205 if (ret)
2206 goto err_unpin;
Chris Wilson1690e1e2011-12-14 13:57:08 +01002207
Chris Wilson9a5a53b2012-03-22 15:10:00 +00002208 i915_gem_object_pin_fence(obj);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002209
Chris Wilsonce453d82011-02-21 14:43:56 +00002210 dev_priv->mm.interruptible = true;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002211 return 0;
Chris Wilson48b956c2010-09-14 12:50:34 +01002212
2213err_unpin:
Chris Wilsoncc98b412013-08-09 12:25:09 +01002214 i915_gem_object_unpin_from_display_plane(obj);
Chris Wilsonce453d82011-02-21 14:43:56 +00002215err_interruptible:
2216 dev_priv->mm.interruptible = true;
Chris Wilson48b956c2010-09-14 12:50:34 +01002217 return ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002218}
2219
Chris Wilson1690e1e2011-12-14 13:57:08 +01002220void intel_unpin_fb_obj(struct drm_i915_gem_object *obj)
2221{
2222 i915_gem_object_unpin_fence(obj);
Chris Wilsoncc98b412013-08-09 12:25:09 +01002223 i915_gem_object_unpin_from_display_plane(obj);
Chris Wilson1690e1e2011-12-14 13:57:08 +01002224}
2225
Daniel Vetterc2c75132012-07-05 12:17:30 +02002226/* Computes the linear offset to the base tile and adjusts x, y. bytes per pixel
2227 * is assumed to be a power-of-two. */
Chris Wilsonbc752862013-02-21 20:04:31 +00002228unsigned long intel_gen4_compute_page_offset(int *x, int *y,
2229 unsigned int tiling_mode,
2230 unsigned int cpp,
2231 unsigned int pitch)
Daniel Vetterc2c75132012-07-05 12:17:30 +02002232{
Chris Wilsonbc752862013-02-21 20:04:31 +00002233 if (tiling_mode != I915_TILING_NONE) {
2234 unsigned int tile_rows, tiles;
Daniel Vetterc2c75132012-07-05 12:17:30 +02002235
Chris Wilsonbc752862013-02-21 20:04:31 +00002236 tile_rows = *y / 8;
2237 *y %= 8;
Daniel Vetterc2c75132012-07-05 12:17:30 +02002238
Chris Wilsonbc752862013-02-21 20:04:31 +00002239 tiles = *x / (512/cpp);
2240 *x %= 512/cpp;
2241
2242 return tile_rows * pitch * 8 + tiles * 4096;
2243 } else {
2244 unsigned int offset;
2245
2246 offset = *y * pitch + *x * cpp;
2247 *y = 0;
2248 *x = (offset & 4095) / cpp;
2249 return offset & -4096;
2250 }
Daniel Vetterc2c75132012-07-05 12:17:30 +02002251}
2252
Jesse Barnes46f297f2014-03-07 08:57:48 -08002253int intel_format_to_fourcc(int format)
2254{
2255 switch (format) {
2256 case DISPPLANE_8BPP:
2257 return DRM_FORMAT_C8;
2258 case DISPPLANE_BGRX555:
2259 return DRM_FORMAT_XRGB1555;
2260 case DISPPLANE_BGRX565:
2261 return DRM_FORMAT_RGB565;
2262 default:
2263 case DISPPLANE_BGRX888:
2264 return DRM_FORMAT_XRGB8888;
2265 case DISPPLANE_RGBX888:
2266 return DRM_FORMAT_XBGR8888;
2267 case DISPPLANE_BGRX101010:
2268 return DRM_FORMAT_XRGB2101010;
2269 case DISPPLANE_RGBX101010:
2270 return DRM_FORMAT_XBGR2101010;
2271 }
2272}
2273
Jesse Barnes484b41d2014-03-07 08:57:55 -08002274static bool intel_alloc_plane_obj(struct intel_crtc *crtc,
Jesse Barnes46f297f2014-03-07 08:57:48 -08002275 struct intel_plane_config *plane_config)
2276{
2277 struct drm_device *dev = crtc->base.dev;
2278 struct drm_i915_gem_object *obj = NULL;
2279 struct drm_mode_fb_cmd2 mode_cmd = { 0 };
2280 u32 base = plane_config->base;
2281
Chris Wilsonff2652e2014-03-10 08:07:02 +00002282 if (plane_config->size == 0)
2283 return false;
2284
Jesse Barnes46f297f2014-03-07 08:57:48 -08002285 obj = i915_gem_object_create_stolen_for_preallocated(dev, base, base,
2286 plane_config->size);
2287 if (!obj)
Jesse Barnes484b41d2014-03-07 08:57:55 -08002288 return false;
Jesse Barnes46f297f2014-03-07 08:57:48 -08002289
2290 if (plane_config->tiled) {
2291 obj->tiling_mode = I915_TILING_X;
Dave Airlie66e514c2014-04-03 07:51:54 +10002292 obj->stride = crtc->base.primary->fb->pitches[0];
Jesse Barnes46f297f2014-03-07 08:57:48 -08002293 }
2294
Dave Airlie66e514c2014-04-03 07:51:54 +10002295 mode_cmd.pixel_format = crtc->base.primary->fb->pixel_format;
2296 mode_cmd.width = crtc->base.primary->fb->width;
2297 mode_cmd.height = crtc->base.primary->fb->height;
2298 mode_cmd.pitches[0] = crtc->base.primary->fb->pitches[0];
Jesse Barnes46f297f2014-03-07 08:57:48 -08002299
2300 mutex_lock(&dev->struct_mutex);
2301
Dave Airlie66e514c2014-04-03 07:51:54 +10002302 if (intel_framebuffer_init(dev, to_intel_framebuffer(crtc->base.primary->fb),
Jesse Barnes484b41d2014-03-07 08:57:55 -08002303 &mode_cmd, obj)) {
Jesse Barnes46f297f2014-03-07 08:57:48 -08002304 DRM_DEBUG_KMS("intel fb init failed\n");
2305 goto out_unref_obj;
2306 }
2307
2308 mutex_unlock(&dev->struct_mutex);
Jesse Barnes484b41d2014-03-07 08:57:55 -08002309
2310 DRM_DEBUG_KMS("plane fb obj %p\n", obj);
2311 return true;
Jesse Barnes46f297f2014-03-07 08:57:48 -08002312
2313out_unref_obj:
2314 drm_gem_object_unreference(&obj->base);
2315 mutex_unlock(&dev->struct_mutex);
Jesse Barnes484b41d2014-03-07 08:57:55 -08002316 return false;
2317}
2318
2319static void intel_find_plane_obj(struct intel_crtc *intel_crtc,
2320 struct intel_plane_config *plane_config)
2321{
2322 struct drm_device *dev = intel_crtc->base.dev;
2323 struct drm_crtc *c;
2324 struct intel_crtc *i;
2325 struct intel_framebuffer *fb;
2326
Dave Airlie66e514c2014-04-03 07:51:54 +10002327 if (!intel_crtc->base.primary->fb)
Jesse Barnes484b41d2014-03-07 08:57:55 -08002328 return;
2329
2330 if (intel_alloc_plane_obj(intel_crtc, plane_config))
2331 return;
2332
Dave Airlie66e514c2014-04-03 07:51:54 +10002333 kfree(intel_crtc->base.primary->fb);
2334 intel_crtc->base.primary->fb = NULL;
Jesse Barnes484b41d2014-03-07 08:57:55 -08002335
2336 /*
2337 * Failed to alloc the obj, check to see if we should share
2338 * an fb with another CRTC instead
2339 */
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01002340 for_each_crtc(dev, c) {
Jesse Barnes484b41d2014-03-07 08:57:55 -08002341 i = to_intel_crtc(c);
2342
2343 if (c == &intel_crtc->base)
2344 continue;
2345
Dave Airlie66e514c2014-04-03 07:51:54 +10002346 if (!i->active || !c->primary->fb)
Jesse Barnes484b41d2014-03-07 08:57:55 -08002347 continue;
2348
Dave Airlie66e514c2014-04-03 07:51:54 +10002349 fb = to_intel_framebuffer(c->primary->fb);
Jesse Barnes484b41d2014-03-07 08:57:55 -08002350 if (i915_gem_obj_ggtt_offset(fb->obj) == plane_config->base) {
Dave Airlie66e514c2014-04-03 07:51:54 +10002351 drm_framebuffer_reference(c->primary->fb);
2352 intel_crtc->base.primary->fb = c->primary->fb;
Jesse Barnes484b41d2014-03-07 08:57:55 -08002353 break;
2354 }
2355 }
Jesse Barnes46f297f2014-03-07 08:57:48 -08002356}
2357
Daniel Vetter29b9bde2014-04-24 23:55:01 +02002358static void i9xx_update_primary_plane(struct drm_crtc *crtc,
2359 struct drm_framebuffer *fb,
2360 int x, int y)
Jesse Barnes81255562010-08-02 12:07:50 -07002361{
2362 struct drm_device *dev = crtc->dev;
2363 struct drm_i915_private *dev_priv = dev->dev_private;
2364 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2365 struct intel_framebuffer *intel_fb;
Chris Wilson05394f32010-11-08 19:18:58 +00002366 struct drm_i915_gem_object *obj;
Jesse Barnes81255562010-08-02 12:07:50 -07002367 int plane = intel_crtc->plane;
Daniel Vettere506a0c2012-07-05 12:17:29 +02002368 unsigned long linear_offset;
Jesse Barnes81255562010-08-02 12:07:50 -07002369 u32 dspcntr;
Chris Wilson5eddb702010-09-11 13:48:45 +01002370 u32 reg;
Jesse Barnes81255562010-08-02 12:07:50 -07002371
Jesse Barnes81255562010-08-02 12:07:50 -07002372 intel_fb = to_intel_framebuffer(fb);
2373 obj = intel_fb->obj;
Jesse Barnes81255562010-08-02 12:07:50 -07002374
Chris Wilson5eddb702010-09-11 13:48:45 +01002375 reg = DSPCNTR(plane);
2376 dspcntr = I915_READ(reg);
Jesse Barnes81255562010-08-02 12:07:50 -07002377 /* Mask out pixel format bits in case we change it */
2378 dspcntr &= ~DISPPLANE_PIXFORMAT_MASK;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002379 switch (fb->pixel_format) {
2380 case DRM_FORMAT_C8:
Jesse Barnes81255562010-08-02 12:07:50 -07002381 dspcntr |= DISPPLANE_8BPP;
2382 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002383 case DRM_FORMAT_XRGB1555:
2384 case DRM_FORMAT_ARGB1555:
2385 dspcntr |= DISPPLANE_BGRX555;
Jesse Barnes81255562010-08-02 12:07:50 -07002386 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002387 case DRM_FORMAT_RGB565:
2388 dspcntr |= DISPPLANE_BGRX565;
2389 break;
2390 case DRM_FORMAT_XRGB8888:
2391 case DRM_FORMAT_ARGB8888:
2392 dspcntr |= DISPPLANE_BGRX888;
2393 break;
2394 case DRM_FORMAT_XBGR8888:
2395 case DRM_FORMAT_ABGR8888:
2396 dspcntr |= DISPPLANE_RGBX888;
2397 break;
2398 case DRM_FORMAT_XRGB2101010:
2399 case DRM_FORMAT_ARGB2101010:
2400 dspcntr |= DISPPLANE_BGRX101010;
2401 break;
2402 case DRM_FORMAT_XBGR2101010:
2403 case DRM_FORMAT_ABGR2101010:
2404 dspcntr |= DISPPLANE_RGBX101010;
Jesse Barnes81255562010-08-02 12:07:50 -07002405 break;
2406 default:
Daniel Vetterbaba1332013-03-27 00:45:00 +01002407 BUG();
Jesse Barnes81255562010-08-02 12:07:50 -07002408 }
Ville Syrjälä57779d02012-10-31 17:50:14 +02002409
Chris Wilsona6c45cf2010-09-17 00:32:17 +01002410 if (INTEL_INFO(dev)->gen >= 4) {
Chris Wilson05394f32010-11-08 19:18:58 +00002411 if (obj->tiling_mode != I915_TILING_NONE)
Jesse Barnes81255562010-08-02 12:07:50 -07002412 dspcntr |= DISPPLANE_TILED;
2413 else
2414 dspcntr &= ~DISPPLANE_TILED;
2415 }
2416
Ville Syrjäläde1aa622013-06-07 10:47:01 +03002417 if (IS_G4X(dev))
2418 dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE;
2419
Chris Wilson5eddb702010-09-11 13:48:45 +01002420 I915_WRITE(reg, dspcntr);
Jesse Barnes81255562010-08-02 12:07:50 -07002421
Daniel Vettere506a0c2012-07-05 12:17:29 +02002422 linear_offset = y * fb->pitches[0] + x * (fb->bits_per_pixel / 8);
Jesse Barnes81255562010-08-02 12:07:50 -07002423
Daniel Vetterc2c75132012-07-05 12:17:30 +02002424 if (INTEL_INFO(dev)->gen >= 4) {
2425 intel_crtc->dspaddr_offset =
Chris Wilsonbc752862013-02-21 20:04:31 +00002426 intel_gen4_compute_page_offset(&x, &y, obj->tiling_mode,
2427 fb->bits_per_pixel / 8,
2428 fb->pitches[0]);
Daniel Vetterc2c75132012-07-05 12:17:30 +02002429 linear_offset -= intel_crtc->dspaddr_offset;
2430 } else {
Daniel Vettere506a0c2012-07-05 12:17:29 +02002431 intel_crtc->dspaddr_offset = linear_offset;
Daniel Vetterc2c75132012-07-05 12:17:30 +02002432 }
Daniel Vettere506a0c2012-07-05 12:17:29 +02002433
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002434 DRM_DEBUG_KMS("Writing base %08lX %08lX %d %d %d\n",
2435 i915_gem_obj_ggtt_offset(obj), linear_offset, x, y,
2436 fb->pitches[0]);
Ville Syrjälä01f2c772011-12-20 00:06:49 +02002437 I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]);
Chris Wilsona6c45cf2010-09-17 00:32:17 +01002438 if (INTEL_INFO(dev)->gen >= 4) {
Daniel Vetter85ba7b72014-01-24 10:31:44 +01002439 I915_WRITE(DSPSURF(plane),
2440 i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset);
Chris Wilson5eddb702010-09-11 13:48:45 +01002441 I915_WRITE(DSPTILEOFF(plane), (y << 16) | x);
Daniel Vettere506a0c2012-07-05 12:17:29 +02002442 I915_WRITE(DSPLINOFF(plane), linear_offset);
Chris Wilson5eddb702010-09-11 13:48:45 +01002443 } else
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002444 I915_WRITE(DSPADDR(plane), i915_gem_obj_ggtt_offset(obj) + linear_offset);
Chris Wilson5eddb702010-09-11 13:48:45 +01002445 POSTING_READ(reg);
Jesse Barnes17638cd2011-06-24 12:19:23 -07002446}
2447
Daniel Vetter29b9bde2014-04-24 23:55:01 +02002448static void ironlake_update_primary_plane(struct drm_crtc *crtc,
2449 struct drm_framebuffer *fb,
2450 int x, int y)
Jesse Barnes17638cd2011-06-24 12:19:23 -07002451{
2452 struct drm_device *dev = crtc->dev;
2453 struct drm_i915_private *dev_priv = dev->dev_private;
2454 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2455 struct intel_framebuffer *intel_fb;
2456 struct drm_i915_gem_object *obj;
2457 int plane = intel_crtc->plane;
Daniel Vettere506a0c2012-07-05 12:17:29 +02002458 unsigned long linear_offset;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002459 u32 dspcntr;
2460 u32 reg;
2461
Jesse Barnes17638cd2011-06-24 12:19:23 -07002462 intel_fb = to_intel_framebuffer(fb);
2463 obj = intel_fb->obj;
2464
2465 reg = DSPCNTR(plane);
2466 dspcntr = I915_READ(reg);
2467 /* Mask out pixel format bits in case we change it */
2468 dspcntr &= ~DISPPLANE_PIXFORMAT_MASK;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002469 switch (fb->pixel_format) {
2470 case DRM_FORMAT_C8:
Jesse Barnes17638cd2011-06-24 12:19:23 -07002471 dspcntr |= DISPPLANE_8BPP;
2472 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002473 case DRM_FORMAT_RGB565:
2474 dspcntr |= DISPPLANE_BGRX565;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002475 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002476 case DRM_FORMAT_XRGB8888:
2477 case DRM_FORMAT_ARGB8888:
2478 dspcntr |= DISPPLANE_BGRX888;
2479 break;
2480 case DRM_FORMAT_XBGR8888:
2481 case DRM_FORMAT_ABGR8888:
2482 dspcntr |= DISPPLANE_RGBX888;
2483 break;
2484 case DRM_FORMAT_XRGB2101010:
2485 case DRM_FORMAT_ARGB2101010:
2486 dspcntr |= DISPPLANE_BGRX101010;
2487 break;
2488 case DRM_FORMAT_XBGR2101010:
2489 case DRM_FORMAT_ABGR2101010:
2490 dspcntr |= DISPPLANE_RGBX101010;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002491 break;
2492 default:
Daniel Vetterbaba1332013-03-27 00:45:00 +01002493 BUG();
Jesse Barnes17638cd2011-06-24 12:19:23 -07002494 }
2495
2496 if (obj->tiling_mode != I915_TILING_NONE)
2497 dspcntr |= DISPPLANE_TILED;
2498 else
2499 dspcntr &= ~DISPPLANE_TILED;
2500
Ville Syrjäläb42c6002013-11-03 13:47:27 +02002501 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Paulo Zanoni1f5d76d2013-08-23 19:51:28 -03002502 dspcntr &= ~DISPPLANE_TRICKLE_FEED_DISABLE;
2503 else
2504 dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002505
2506 I915_WRITE(reg, dspcntr);
2507
Daniel Vettere506a0c2012-07-05 12:17:29 +02002508 linear_offset = y * fb->pitches[0] + x * (fb->bits_per_pixel / 8);
Daniel Vetterc2c75132012-07-05 12:17:30 +02002509 intel_crtc->dspaddr_offset =
Chris Wilsonbc752862013-02-21 20:04:31 +00002510 intel_gen4_compute_page_offset(&x, &y, obj->tiling_mode,
2511 fb->bits_per_pixel / 8,
2512 fb->pitches[0]);
Daniel Vetterc2c75132012-07-05 12:17:30 +02002513 linear_offset -= intel_crtc->dspaddr_offset;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002514
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002515 DRM_DEBUG_KMS("Writing base %08lX %08lX %d %d %d\n",
2516 i915_gem_obj_ggtt_offset(obj), linear_offset, x, y,
2517 fb->pitches[0]);
Ville Syrjälä01f2c772011-12-20 00:06:49 +02002518 I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]);
Daniel Vetter85ba7b72014-01-24 10:31:44 +01002519 I915_WRITE(DSPSURF(plane),
2520 i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset);
Paulo Zanonib3dc6852013-11-02 21:07:33 -07002521 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Damien Lespiaubc1c91e2012-10-29 12:14:21 +00002522 I915_WRITE(DSPOFFSET(plane), (y << 16) | x);
2523 } else {
2524 I915_WRITE(DSPTILEOFF(plane), (y << 16) | x);
2525 I915_WRITE(DSPLINOFF(plane), linear_offset);
2526 }
Jesse Barnes17638cd2011-06-24 12:19:23 -07002527 POSTING_READ(reg);
Jesse Barnes17638cd2011-06-24 12:19:23 -07002528}
2529
2530/* Assume fb object is pinned & idle & fenced and just update base pointers */
2531static int
2532intel_pipe_set_base_atomic(struct drm_crtc *crtc, struct drm_framebuffer *fb,
2533 int x, int y, enum mode_set_atomic state)
2534{
2535 struct drm_device *dev = crtc->dev;
2536 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002537
Chris Wilson6b8e6ed2012-04-17 15:08:19 +01002538 if (dev_priv->display.disable_fbc)
2539 dev_priv->display.disable_fbc(dev);
Daniel Vetter3dec0092010-08-20 21:40:52 +02002540 intel_increase_pllclock(crtc);
Jesse Barnes81255562010-08-02 12:07:50 -07002541
Daniel Vetter29b9bde2014-04-24 23:55:01 +02002542 dev_priv->display.update_primary_plane(crtc, fb, x, y);
2543
2544 return 0;
Jesse Barnes81255562010-08-02 12:07:50 -07002545}
2546
Ville Syrjälä96a02912013-02-18 19:08:49 +02002547void intel_display_handle_reset(struct drm_device *dev)
2548{
2549 struct drm_i915_private *dev_priv = dev->dev_private;
2550 struct drm_crtc *crtc;
2551
2552 /*
2553 * Flips in the rings have been nuked by the reset,
2554 * so complete all pending flips so that user space
2555 * will get its events and not get stuck.
2556 *
2557 * Also update the base address of all primary
2558 * planes to the the last fb to make sure we're
2559 * showing the correct fb after a reset.
2560 *
2561 * Need to make two loops over the crtcs so that we
2562 * don't try to grab a crtc mutex before the
2563 * pending_flip_queue really got woken up.
2564 */
2565
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01002566 for_each_crtc(dev, crtc) {
Ville Syrjälä96a02912013-02-18 19:08:49 +02002567 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2568 enum plane plane = intel_crtc->plane;
2569
2570 intel_prepare_page_flip(dev, plane);
2571 intel_finish_page_flip_plane(dev, plane);
2572 }
2573
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01002574 for_each_crtc(dev, crtc) {
Ville Syrjälä96a02912013-02-18 19:08:49 +02002575 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2576
Rob Clark51fd3712013-11-19 12:10:12 -05002577 drm_modeset_lock(&crtc->mutex, NULL);
Chris Wilson947fdaadf2013-11-27 12:01:32 +00002578 /*
2579 * FIXME: Once we have proper support for primary planes (and
2580 * disabling them without disabling the entire crtc) allow again
Dave Airlie66e514c2014-04-03 07:51:54 +10002581 * a NULL crtc->primary->fb.
Chris Wilson947fdaadf2013-11-27 12:01:32 +00002582 */
Matt Roperf4510a22014-04-01 15:22:40 -07002583 if (intel_crtc->active && crtc->primary->fb)
Matt Roper262ca2b2014-03-18 17:22:55 -07002584 dev_priv->display.update_primary_plane(crtc,
Dave Airlie66e514c2014-04-03 07:51:54 +10002585 crtc->primary->fb,
Matt Roper262ca2b2014-03-18 17:22:55 -07002586 crtc->x,
2587 crtc->y);
Rob Clark51fd3712013-11-19 12:10:12 -05002588 drm_modeset_unlock(&crtc->mutex);
Ville Syrjälä96a02912013-02-18 19:08:49 +02002589 }
2590}
2591
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002592static int
Chris Wilson14667a42012-04-03 17:58:35 +01002593intel_finish_fb(struct drm_framebuffer *old_fb)
2594{
2595 struct drm_i915_gem_object *obj = to_intel_framebuffer(old_fb)->obj;
2596 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
2597 bool was_interruptible = dev_priv->mm.interruptible;
2598 int ret;
2599
Chris Wilson14667a42012-04-03 17:58:35 +01002600 /* Big Hammer, we also need to ensure that any pending
2601 * MI_WAIT_FOR_EVENT inside a user batch buffer on the
2602 * current scanout is retired before unpinning the old
2603 * framebuffer.
2604 *
2605 * This should only fail upon a hung GPU, in which case we
2606 * can safely continue.
2607 */
2608 dev_priv->mm.interruptible = false;
2609 ret = i915_gem_object_finish_gpu(obj);
2610 dev_priv->mm.interruptible = was_interruptible;
2611
2612 return ret;
2613}
2614
Chris Wilson7d5e3792014-03-04 13:15:08 +00002615static bool intel_crtc_has_pending_flip(struct drm_crtc *crtc)
2616{
2617 struct drm_device *dev = crtc->dev;
2618 struct drm_i915_private *dev_priv = dev->dev_private;
2619 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2620 unsigned long flags;
2621 bool pending;
2622
2623 if (i915_reset_in_progress(&dev_priv->gpu_error) ||
2624 intel_crtc->reset_counter != atomic_read(&dev_priv->gpu_error.reset_counter))
2625 return false;
2626
2627 spin_lock_irqsave(&dev->event_lock, flags);
2628 pending = to_intel_crtc(crtc)->unpin_work != NULL;
2629 spin_unlock_irqrestore(&dev->event_lock, flags);
2630
2631 return pending;
2632}
2633
Chris Wilson14667a42012-04-03 17:58:35 +01002634static int
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -05002635intel_pipe_set_base(struct drm_crtc *crtc, int x, int y,
Daniel Vetter94352cf2012-07-05 22:51:56 +02002636 struct drm_framebuffer *fb)
Jesse Barnes79e53942008-11-07 14:24:08 -08002637{
2638 struct drm_device *dev = crtc->dev;
Chris Wilson6b8e6ed2012-04-17 15:08:19 +01002639 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -08002640 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter94352cf2012-07-05 22:51:56 +02002641 struct drm_framebuffer *old_fb;
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002642 int ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08002643
Chris Wilson7d5e3792014-03-04 13:15:08 +00002644 if (intel_crtc_has_pending_flip(crtc)) {
2645 DRM_ERROR("pipe is still busy with an old pageflip\n");
2646 return -EBUSY;
2647 }
2648
Jesse Barnes79e53942008-11-07 14:24:08 -08002649 /* no fb bound */
Daniel Vetter94352cf2012-07-05 22:51:56 +02002650 if (!fb) {
Jesse Barnesa5071c22011-07-19 15:38:56 -07002651 DRM_ERROR("No FB bound\n");
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002652 return 0;
2653 }
2654
Ben Widawsky7eb552a2013-03-13 14:05:41 -07002655 if (intel_crtc->plane > INTEL_INFO(dev)->num_pipes) {
Ville Syrjälä84f44ce2013-04-17 17:48:49 +03002656 DRM_ERROR("no plane for crtc: plane %c, num_pipes %d\n",
2657 plane_name(intel_crtc->plane),
2658 INTEL_INFO(dev)->num_pipes);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002659 return -EINVAL;
Jesse Barnes79e53942008-11-07 14:24:08 -08002660 }
2661
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002662 mutex_lock(&dev->struct_mutex);
Chris Wilson265db952010-09-20 15:41:01 +01002663 ret = intel_pin_and_fence_fb_obj(dev,
Daniel Vetter94352cf2012-07-05 22:51:56 +02002664 to_intel_framebuffer(fb)->obj,
Chris Wilson919926a2010-11-12 13:42:53 +00002665 NULL);
Ville Syrjälä8ac36ec2014-03-11 19:37:33 +02002666 mutex_unlock(&dev->struct_mutex);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002667 if (ret != 0) {
Jesse Barnesa5071c22011-07-19 15:38:56 -07002668 DRM_ERROR("pin & fence failed\n");
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002669 return ret;
2670 }
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -05002671
Damien Lespiaubb2043d2013-09-30 14:21:49 +01002672 /*
2673 * Update pipe size and adjust fitter if needed: the reason for this is
2674 * that in compute_mode_changes we check the native mode (not the pfit
2675 * mode) to see if we can flip rather than do a full mode set. In the
2676 * fastboot case, we'll flip, but if we don't update the pipesrc and
2677 * pfit state, we'll end up with a big fb scanned out into the wrong
2678 * sized surface.
2679 *
2680 * To fix this properly, we need to hoist the checks up into
2681 * compute_mode_changes (or above), check the actual pfit state and
2682 * whether the platform allows pfit disable with pipe active, and only
2683 * then update the pipesrc and pfit state, even on the flip path.
2684 */
Jani Nikulad330a952014-01-21 11:24:25 +02002685 if (i915.fastboot) {
Damien Lespiaud7bf63f2013-09-30 14:21:50 +01002686 const struct drm_display_mode *adjusted_mode =
2687 &intel_crtc->config.adjusted_mode;
2688
Jesse Barnes4d6a3e62013-06-26 01:38:18 +03002689 I915_WRITE(PIPESRC(intel_crtc->pipe),
Damien Lespiaud7bf63f2013-09-30 14:21:50 +01002690 ((adjusted_mode->crtc_hdisplay - 1) << 16) |
2691 (adjusted_mode->crtc_vdisplay - 1));
Chris Wilsonfd4daa92013-08-27 17:04:17 +01002692 if (!intel_crtc->config.pch_pfit.enabled &&
Jesse Barnes4d6a3e62013-06-26 01:38:18 +03002693 (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) ||
2694 intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP))) {
2695 I915_WRITE(PF_CTL(intel_crtc->pipe), 0);
2696 I915_WRITE(PF_WIN_POS(intel_crtc->pipe), 0);
2697 I915_WRITE(PF_WIN_SZ(intel_crtc->pipe), 0);
2698 }
Jesse Barnes0637d602013-12-19 10:48:01 -08002699 intel_crtc->config.pipe_src_w = adjusted_mode->crtc_hdisplay;
2700 intel_crtc->config.pipe_src_h = adjusted_mode->crtc_vdisplay;
Jesse Barnes4d6a3e62013-06-26 01:38:18 +03002701 }
2702
Daniel Vetter29b9bde2014-04-24 23:55:01 +02002703 dev_priv->display.update_primary_plane(crtc, fb, x, y);
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -05002704
Matt Roperf4510a22014-04-01 15:22:40 -07002705 old_fb = crtc->primary->fb;
2706 crtc->primary->fb = fb;
Daniel Vetter6c4c86f2012-09-10 21:58:30 +02002707 crtc->x = x;
2708 crtc->y = y;
Daniel Vetter94352cf2012-07-05 22:51:56 +02002709
Chris Wilsonb7f1de22010-12-14 16:09:31 +00002710 if (old_fb) {
Daniel Vetterd7697ee2013-06-02 17:23:01 +02002711 if (intel_crtc->active && old_fb != fb)
2712 intel_wait_for_vblank(dev, intel_crtc->pipe);
Ville Syrjälä8ac36ec2014-03-11 19:37:33 +02002713 mutex_lock(&dev->struct_mutex);
Chris Wilson1690e1e2011-12-14 13:57:08 +01002714 intel_unpin_fb_obj(to_intel_framebuffer(old_fb)->obj);
Ville Syrjälä8ac36ec2014-03-11 19:37:33 +02002715 mutex_unlock(&dev->struct_mutex);
Chris Wilsonb7f1de22010-12-14 16:09:31 +00002716 }
Jesse Barnes652c3932009-08-17 13:31:43 -07002717
Ville Syrjälä8ac36ec2014-03-11 19:37:33 +02002718 mutex_lock(&dev->struct_mutex);
Chris Wilson6b8e6ed2012-04-17 15:08:19 +01002719 intel_update_fbc(dev);
Rodrigo Vivi49065572013-07-11 18:45:05 -03002720 intel_edp_psr_update(dev);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002721 mutex_unlock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -08002722
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002723 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08002724}
2725
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08002726static void intel_fdi_normal_train(struct drm_crtc *crtc)
2727{
2728 struct drm_device *dev = crtc->dev;
2729 struct drm_i915_private *dev_priv = dev->dev_private;
2730 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2731 int pipe = intel_crtc->pipe;
2732 u32 reg, temp;
2733
2734 /* enable normal train */
2735 reg = FDI_TX_CTL(pipe);
2736 temp = I915_READ(reg);
Keith Packard61e499b2011-05-17 16:13:52 -07002737 if (IS_IVYBRIDGE(dev)) {
Jesse Barnes357555c2011-04-28 15:09:55 -07002738 temp &= ~FDI_LINK_TRAIN_NONE_IVB;
2739 temp |= FDI_LINK_TRAIN_NONE_IVB | FDI_TX_ENHANCE_FRAME_ENABLE;
Keith Packard61e499b2011-05-17 16:13:52 -07002740 } else {
2741 temp &= ~FDI_LINK_TRAIN_NONE;
2742 temp |= FDI_LINK_TRAIN_NONE | FDI_TX_ENHANCE_FRAME_ENABLE;
Jesse Barnes357555c2011-04-28 15:09:55 -07002743 }
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08002744 I915_WRITE(reg, temp);
2745
2746 reg = FDI_RX_CTL(pipe);
2747 temp = I915_READ(reg);
2748 if (HAS_PCH_CPT(dev)) {
2749 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2750 temp |= FDI_LINK_TRAIN_NORMAL_CPT;
2751 } else {
2752 temp &= ~FDI_LINK_TRAIN_NONE;
2753 temp |= FDI_LINK_TRAIN_NONE;
2754 }
2755 I915_WRITE(reg, temp | FDI_RX_ENHANCE_FRAME_ENABLE);
2756
2757 /* wait one idle pattern time */
2758 POSTING_READ(reg);
2759 udelay(1000);
Jesse Barnes357555c2011-04-28 15:09:55 -07002760
2761 /* IVB wants error correction enabled */
2762 if (IS_IVYBRIDGE(dev))
2763 I915_WRITE(reg, I915_READ(reg) | FDI_FS_ERRC_ENABLE |
2764 FDI_FE_ERRC_ENABLE);
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08002765}
2766
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01002767static bool pipe_has_enabled_pch(struct intel_crtc *crtc)
Daniel Vetter1e833f42013-02-19 22:31:57 +01002768{
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01002769 return crtc->base.enabled && crtc->active &&
2770 crtc->config.has_pch_encoder;
Daniel Vetter1e833f42013-02-19 22:31:57 +01002771}
2772
Daniel Vetter01a415f2012-10-27 15:58:40 +02002773static void ivb_modeset_global_resources(struct drm_device *dev)
2774{
2775 struct drm_i915_private *dev_priv = dev->dev_private;
2776 struct intel_crtc *pipe_B_crtc =
2777 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[PIPE_B]);
2778 struct intel_crtc *pipe_C_crtc =
2779 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[PIPE_C]);
2780 uint32_t temp;
2781
Daniel Vetter1e833f42013-02-19 22:31:57 +01002782 /*
2783 * When everything is off disable fdi C so that we could enable fdi B
2784 * with all lanes. Note that we don't care about enabled pipes without
2785 * an enabled pch encoder.
2786 */
2787 if (!pipe_has_enabled_pch(pipe_B_crtc) &&
2788 !pipe_has_enabled_pch(pipe_C_crtc)) {
Daniel Vetter01a415f2012-10-27 15:58:40 +02002789 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_B)) & FDI_RX_ENABLE);
2790 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_C)) & FDI_RX_ENABLE);
2791
2792 temp = I915_READ(SOUTH_CHICKEN1);
2793 temp &= ~FDI_BC_BIFURCATION_SELECT;
2794 DRM_DEBUG_KMS("disabling fdi C rx\n");
2795 I915_WRITE(SOUTH_CHICKEN1, temp);
2796 }
2797}
2798
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002799/* The FDI link training functions for ILK/Ibexpeak. */
2800static void ironlake_fdi_link_train(struct drm_crtc *crtc)
2801{
2802 struct drm_device *dev = crtc->dev;
2803 struct drm_i915_private *dev_priv = dev->dev_private;
2804 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2805 int pipe = intel_crtc->pipe;
Chris Wilson5eddb702010-09-11 13:48:45 +01002806 u32 reg, temp, tries;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002807
Ville Syrjälä1c8562f2014-04-25 22:12:07 +03002808 /* FDI needs bits from pipe first */
Jesse Barnes0fc932b2011-01-04 15:09:37 -08002809 assert_pipe_enabled(dev_priv, pipe);
Jesse Barnes0fc932b2011-01-04 15:09:37 -08002810
Adam Jacksone1a44742010-06-25 15:32:14 -04002811 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
2812 for train result */
Chris Wilson5eddb702010-09-11 13:48:45 +01002813 reg = FDI_RX_IMR(pipe);
2814 temp = I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04002815 temp &= ~FDI_RX_SYMBOL_LOCK;
2816 temp &= ~FDI_RX_BIT_LOCK;
Chris Wilson5eddb702010-09-11 13:48:45 +01002817 I915_WRITE(reg, temp);
2818 I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04002819 udelay(150);
2820
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002821 /* enable CPU FDI TX and PCH FDI RX */
Chris Wilson5eddb702010-09-11 13:48:45 +01002822 reg = FDI_TX_CTL(pipe);
2823 temp = I915_READ(reg);
Daniel Vetter627eb5a2013-04-29 19:33:42 +02002824 temp &= ~FDI_DP_PORT_WIDTH_MASK;
2825 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config.fdi_lanes);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002826 temp &= ~FDI_LINK_TRAIN_NONE;
2827 temp |= FDI_LINK_TRAIN_PATTERN_1;
Chris Wilson5eddb702010-09-11 13:48:45 +01002828 I915_WRITE(reg, temp | FDI_TX_ENABLE);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002829
Chris Wilson5eddb702010-09-11 13:48:45 +01002830 reg = FDI_RX_CTL(pipe);
2831 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002832 temp &= ~FDI_LINK_TRAIN_NONE;
2833 temp |= FDI_LINK_TRAIN_PATTERN_1;
Chris Wilson5eddb702010-09-11 13:48:45 +01002834 I915_WRITE(reg, temp | FDI_RX_ENABLE);
2835
2836 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002837 udelay(150);
2838
Jesse Barnes5b2adf82010-10-07 16:01:15 -07002839 /* Ironlake workaround, enable clock pointer after FDI enable*/
Daniel Vetter8f5718a2012-10-31 22:52:28 +01002840 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR);
2841 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR |
2842 FDI_RX_PHASE_SYNC_POINTER_EN);
Jesse Barnes5b2adf82010-10-07 16:01:15 -07002843
Chris Wilson5eddb702010-09-11 13:48:45 +01002844 reg = FDI_RX_IIR(pipe);
Adam Jacksone1a44742010-06-25 15:32:14 -04002845 for (tries = 0; tries < 5; tries++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002846 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002847 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2848
2849 if ((temp & FDI_RX_BIT_LOCK)) {
2850 DRM_DEBUG_KMS("FDI train 1 done.\n");
Chris Wilson5eddb702010-09-11 13:48:45 +01002851 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002852 break;
2853 }
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002854 }
Adam Jacksone1a44742010-06-25 15:32:14 -04002855 if (tries == 5)
Chris Wilson5eddb702010-09-11 13:48:45 +01002856 DRM_ERROR("FDI train 1 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002857
2858 /* Train 2 */
Chris Wilson5eddb702010-09-11 13:48:45 +01002859 reg = FDI_TX_CTL(pipe);
2860 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002861 temp &= ~FDI_LINK_TRAIN_NONE;
2862 temp |= FDI_LINK_TRAIN_PATTERN_2;
Chris Wilson5eddb702010-09-11 13:48:45 +01002863 I915_WRITE(reg, temp);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002864
Chris Wilson5eddb702010-09-11 13:48:45 +01002865 reg = FDI_RX_CTL(pipe);
2866 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002867 temp &= ~FDI_LINK_TRAIN_NONE;
2868 temp |= FDI_LINK_TRAIN_PATTERN_2;
Chris Wilson5eddb702010-09-11 13:48:45 +01002869 I915_WRITE(reg, temp);
2870
2871 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002872 udelay(150);
2873
Chris Wilson5eddb702010-09-11 13:48:45 +01002874 reg = FDI_RX_IIR(pipe);
Adam Jacksone1a44742010-06-25 15:32:14 -04002875 for (tries = 0; tries < 5; tries++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002876 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002877 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2878
2879 if (temp & FDI_RX_SYMBOL_LOCK) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002880 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002881 DRM_DEBUG_KMS("FDI train 2 done.\n");
2882 break;
2883 }
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002884 }
Adam Jacksone1a44742010-06-25 15:32:14 -04002885 if (tries == 5)
Chris Wilson5eddb702010-09-11 13:48:45 +01002886 DRM_ERROR("FDI train 2 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002887
2888 DRM_DEBUG_KMS("FDI train done\n");
Jesse Barnes5c5313c2010-10-07 16:01:11 -07002889
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002890}
2891
Akshay Joshi0206e352011-08-16 15:34:10 -04002892static const int snb_b_fdi_train_param[] = {
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002893 FDI_LINK_TRAIN_400MV_0DB_SNB_B,
2894 FDI_LINK_TRAIN_400MV_6DB_SNB_B,
2895 FDI_LINK_TRAIN_600MV_3_5DB_SNB_B,
2896 FDI_LINK_TRAIN_800MV_0DB_SNB_B,
2897};
2898
2899/* The FDI link training functions for SNB/Cougarpoint. */
2900static void gen6_fdi_link_train(struct drm_crtc *crtc)
2901{
2902 struct drm_device *dev = crtc->dev;
2903 struct drm_i915_private *dev_priv = dev->dev_private;
2904 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2905 int pipe = intel_crtc->pipe;
Sean Paulfa37d392012-03-02 12:53:39 -05002906 u32 reg, temp, i, retry;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002907
Adam Jacksone1a44742010-06-25 15:32:14 -04002908 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
2909 for train result */
Chris Wilson5eddb702010-09-11 13:48:45 +01002910 reg = FDI_RX_IMR(pipe);
2911 temp = I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04002912 temp &= ~FDI_RX_SYMBOL_LOCK;
2913 temp &= ~FDI_RX_BIT_LOCK;
Chris Wilson5eddb702010-09-11 13:48:45 +01002914 I915_WRITE(reg, temp);
2915
2916 POSTING_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04002917 udelay(150);
2918
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002919 /* enable CPU FDI TX and PCH FDI RX */
Chris Wilson5eddb702010-09-11 13:48:45 +01002920 reg = FDI_TX_CTL(pipe);
2921 temp = I915_READ(reg);
Daniel Vetter627eb5a2013-04-29 19:33:42 +02002922 temp &= ~FDI_DP_PORT_WIDTH_MASK;
2923 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config.fdi_lanes);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002924 temp &= ~FDI_LINK_TRAIN_NONE;
2925 temp |= FDI_LINK_TRAIN_PATTERN_1;
2926 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2927 /* SNB-B */
2928 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
Chris Wilson5eddb702010-09-11 13:48:45 +01002929 I915_WRITE(reg, temp | FDI_TX_ENABLE);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002930
Daniel Vetterd74cf322012-10-26 10:58:13 +02002931 I915_WRITE(FDI_RX_MISC(pipe),
2932 FDI_RX_TP1_TO_TP2_48 | FDI_RX_FDI_DELAY_90);
2933
Chris Wilson5eddb702010-09-11 13:48:45 +01002934 reg = FDI_RX_CTL(pipe);
2935 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002936 if (HAS_PCH_CPT(dev)) {
2937 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2938 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
2939 } else {
2940 temp &= ~FDI_LINK_TRAIN_NONE;
2941 temp |= FDI_LINK_TRAIN_PATTERN_1;
2942 }
Chris Wilson5eddb702010-09-11 13:48:45 +01002943 I915_WRITE(reg, temp | FDI_RX_ENABLE);
2944
2945 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002946 udelay(150);
2947
Akshay Joshi0206e352011-08-16 15:34:10 -04002948 for (i = 0; i < 4; i++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002949 reg = FDI_TX_CTL(pipe);
2950 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002951 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2952 temp |= snb_b_fdi_train_param[i];
Chris Wilson5eddb702010-09-11 13:48:45 +01002953 I915_WRITE(reg, temp);
2954
2955 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002956 udelay(500);
2957
Sean Paulfa37d392012-03-02 12:53:39 -05002958 for (retry = 0; retry < 5; retry++) {
2959 reg = FDI_RX_IIR(pipe);
2960 temp = I915_READ(reg);
2961 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2962 if (temp & FDI_RX_BIT_LOCK) {
2963 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
2964 DRM_DEBUG_KMS("FDI train 1 done.\n");
2965 break;
2966 }
2967 udelay(50);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002968 }
Sean Paulfa37d392012-03-02 12:53:39 -05002969 if (retry < 5)
2970 break;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002971 }
2972 if (i == 4)
Chris Wilson5eddb702010-09-11 13:48:45 +01002973 DRM_ERROR("FDI train 1 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002974
2975 /* Train 2 */
Chris Wilson5eddb702010-09-11 13:48:45 +01002976 reg = FDI_TX_CTL(pipe);
2977 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002978 temp &= ~FDI_LINK_TRAIN_NONE;
2979 temp |= FDI_LINK_TRAIN_PATTERN_2;
2980 if (IS_GEN6(dev)) {
2981 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2982 /* SNB-B */
2983 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
2984 }
Chris Wilson5eddb702010-09-11 13:48:45 +01002985 I915_WRITE(reg, temp);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002986
Chris Wilson5eddb702010-09-11 13:48:45 +01002987 reg = FDI_RX_CTL(pipe);
2988 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002989 if (HAS_PCH_CPT(dev)) {
2990 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2991 temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
2992 } else {
2993 temp &= ~FDI_LINK_TRAIN_NONE;
2994 temp |= FDI_LINK_TRAIN_PATTERN_2;
2995 }
Chris Wilson5eddb702010-09-11 13:48:45 +01002996 I915_WRITE(reg, temp);
2997
2998 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002999 udelay(150);
3000
Akshay Joshi0206e352011-08-16 15:34:10 -04003001 for (i = 0; i < 4; i++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01003002 reg = FDI_TX_CTL(pipe);
3003 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003004 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3005 temp |= snb_b_fdi_train_param[i];
Chris Wilson5eddb702010-09-11 13:48:45 +01003006 I915_WRITE(reg, temp);
3007
3008 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003009 udelay(500);
3010
Sean Paulfa37d392012-03-02 12:53:39 -05003011 for (retry = 0; retry < 5; retry++) {
3012 reg = FDI_RX_IIR(pipe);
3013 temp = I915_READ(reg);
3014 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3015 if (temp & FDI_RX_SYMBOL_LOCK) {
3016 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
3017 DRM_DEBUG_KMS("FDI train 2 done.\n");
3018 break;
3019 }
3020 udelay(50);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003021 }
Sean Paulfa37d392012-03-02 12:53:39 -05003022 if (retry < 5)
3023 break;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003024 }
3025 if (i == 4)
Chris Wilson5eddb702010-09-11 13:48:45 +01003026 DRM_ERROR("FDI train 2 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003027
3028 DRM_DEBUG_KMS("FDI train done.\n");
3029}
3030
Jesse Barnes357555c2011-04-28 15:09:55 -07003031/* Manual link training for Ivy Bridge A0 parts */
3032static void ivb_manual_fdi_link_train(struct drm_crtc *crtc)
3033{
3034 struct drm_device *dev = crtc->dev;
3035 struct drm_i915_private *dev_priv = dev->dev_private;
3036 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3037 int pipe = intel_crtc->pipe;
Jesse Barnes139ccd32013-08-19 11:04:55 -07003038 u32 reg, temp, i, j;
Jesse Barnes357555c2011-04-28 15:09:55 -07003039
3040 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
3041 for train result */
3042 reg = FDI_RX_IMR(pipe);
3043 temp = I915_READ(reg);
3044 temp &= ~FDI_RX_SYMBOL_LOCK;
3045 temp &= ~FDI_RX_BIT_LOCK;
3046 I915_WRITE(reg, temp);
3047
3048 POSTING_READ(reg);
3049 udelay(150);
3050
Daniel Vetter01a415f2012-10-27 15:58:40 +02003051 DRM_DEBUG_KMS("FDI_RX_IIR before link train 0x%x\n",
3052 I915_READ(FDI_RX_IIR(pipe)));
3053
Jesse Barnes139ccd32013-08-19 11:04:55 -07003054 /* Try each vswing and preemphasis setting twice before moving on */
3055 for (j = 0; j < ARRAY_SIZE(snb_b_fdi_train_param) * 2; j++) {
3056 /* disable first in case we need to retry */
Jesse Barnes357555c2011-04-28 15:09:55 -07003057 reg = FDI_TX_CTL(pipe);
3058 temp = I915_READ(reg);
Jesse Barnes139ccd32013-08-19 11:04:55 -07003059 temp &= ~(FDI_LINK_TRAIN_AUTO | FDI_LINK_TRAIN_NONE_IVB);
3060 temp &= ~FDI_TX_ENABLE;
3061 I915_WRITE(reg, temp);
3062
3063 reg = FDI_RX_CTL(pipe);
3064 temp = I915_READ(reg);
3065 temp &= ~FDI_LINK_TRAIN_AUTO;
3066 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3067 temp &= ~FDI_RX_ENABLE;
3068 I915_WRITE(reg, temp);
3069
3070 /* enable CPU FDI TX and PCH FDI RX */
3071 reg = FDI_TX_CTL(pipe);
3072 temp = I915_READ(reg);
3073 temp &= ~FDI_DP_PORT_WIDTH_MASK;
3074 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config.fdi_lanes);
3075 temp |= FDI_LINK_TRAIN_PATTERN_1_IVB;
Jesse Barnes357555c2011-04-28 15:09:55 -07003076 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
Jesse Barnes139ccd32013-08-19 11:04:55 -07003077 temp |= snb_b_fdi_train_param[j/2];
3078 temp |= FDI_COMPOSITE_SYNC;
3079 I915_WRITE(reg, temp | FDI_TX_ENABLE);
3080
3081 I915_WRITE(FDI_RX_MISC(pipe),
3082 FDI_RX_TP1_TO_TP2_48 | FDI_RX_FDI_DELAY_90);
3083
3084 reg = FDI_RX_CTL(pipe);
3085 temp = I915_READ(reg);
3086 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
3087 temp |= FDI_COMPOSITE_SYNC;
3088 I915_WRITE(reg, temp | FDI_RX_ENABLE);
3089
3090 POSTING_READ(reg);
3091 udelay(1); /* should be 0.5us */
3092
3093 for (i = 0; i < 4; i++) {
3094 reg = FDI_RX_IIR(pipe);
3095 temp = I915_READ(reg);
3096 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3097
3098 if (temp & FDI_RX_BIT_LOCK ||
3099 (I915_READ(reg) & FDI_RX_BIT_LOCK)) {
3100 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
3101 DRM_DEBUG_KMS("FDI train 1 done, level %i.\n",
3102 i);
3103 break;
3104 }
3105 udelay(1); /* should be 0.5us */
3106 }
3107 if (i == 4) {
3108 DRM_DEBUG_KMS("FDI train 1 fail on vswing %d\n", j / 2);
3109 continue;
3110 }
3111
3112 /* Train 2 */
3113 reg = FDI_TX_CTL(pipe);
3114 temp = I915_READ(reg);
3115 temp &= ~FDI_LINK_TRAIN_NONE_IVB;
3116 temp |= FDI_LINK_TRAIN_PATTERN_2_IVB;
3117 I915_WRITE(reg, temp);
3118
3119 reg = FDI_RX_CTL(pipe);
3120 temp = I915_READ(reg);
3121 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3122 temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
Jesse Barnes357555c2011-04-28 15:09:55 -07003123 I915_WRITE(reg, temp);
3124
3125 POSTING_READ(reg);
Jesse Barnes139ccd32013-08-19 11:04:55 -07003126 udelay(2); /* should be 1.5us */
Jesse Barnes357555c2011-04-28 15:09:55 -07003127
Jesse Barnes139ccd32013-08-19 11:04:55 -07003128 for (i = 0; i < 4; i++) {
3129 reg = FDI_RX_IIR(pipe);
3130 temp = I915_READ(reg);
3131 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
Jesse Barnes357555c2011-04-28 15:09:55 -07003132
Jesse Barnes139ccd32013-08-19 11:04:55 -07003133 if (temp & FDI_RX_SYMBOL_LOCK ||
3134 (I915_READ(reg) & FDI_RX_SYMBOL_LOCK)) {
3135 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
3136 DRM_DEBUG_KMS("FDI train 2 done, level %i.\n",
3137 i);
3138 goto train_done;
3139 }
3140 udelay(2); /* should be 1.5us */
Jesse Barnes357555c2011-04-28 15:09:55 -07003141 }
Jesse Barnes139ccd32013-08-19 11:04:55 -07003142 if (i == 4)
3143 DRM_DEBUG_KMS("FDI train 2 fail on vswing %d\n", j / 2);
Jesse Barnes357555c2011-04-28 15:09:55 -07003144 }
Jesse Barnes357555c2011-04-28 15:09:55 -07003145
Jesse Barnes139ccd32013-08-19 11:04:55 -07003146train_done:
Jesse Barnes357555c2011-04-28 15:09:55 -07003147 DRM_DEBUG_KMS("FDI train done.\n");
3148}
3149
Daniel Vetter88cefb62012-08-12 19:27:14 +02003150static void ironlake_fdi_pll_enable(struct intel_crtc *intel_crtc)
Jesse Barnes0e23b992010-09-10 11:10:00 -07003151{
Daniel Vetter88cefb62012-08-12 19:27:14 +02003152 struct drm_device *dev = intel_crtc->base.dev;
Jesse Barnes0e23b992010-09-10 11:10:00 -07003153 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes0e23b992010-09-10 11:10:00 -07003154 int pipe = intel_crtc->pipe;
Chris Wilson5eddb702010-09-11 13:48:45 +01003155 u32 reg, temp;
Jesse Barnes0e23b992010-09-10 11:10:00 -07003156
Jesse Barnesc64e3112010-09-10 11:27:03 -07003157
Jesse Barnes0e23b992010-09-10 11:10:00 -07003158 /* enable PCH FDI RX PLL, wait warmup plus DMI latency */
Chris Wilson5eddb702010-09-11 13:48:45 +01003159 reg = FDI_RX_CTL(pipe);
3160 temp = I915_READ(reg);
Daniel Vetter627eb5a2013-04-29 19:33:42 +02003161 temp &= ~(FDI_DP_PORT_WIDTH_MASK | (0x7 << 16));
3162 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config.fdi_lanes);
Daniel Vetterdfd07d72012-12-17 11:21:38 +01003163 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
Chris Wilson5eddb702010-09-11 13:48:45 +01003164 I915_WRITE(reg, temp | FDI_RX_PLL_ENABLE);
3165
3166 POSTING_READ(reg);
Jesse Barnes0e23b992010-09-10 11:10:00 -07003167 udelay(200);
3168
3169 /* Switch from Rawclk to PCDclk */
Chris Wilson5eddb702010-09-11 13:48:45 +01003170 temp = I915_READ(reg);
3171 I915_WRITE(reg, temp | FDI_PCDCLK);
3172
3173 POSTING_READ(reg);
Jesse Barnes0e23b992010-09-10 11:10:00 -07003174 udelay(200);
3175
Paulo Zanoni20749732012-11-23 15:30:38 -02003176 /* Enable CPU FDI TX PLL, always on for Ironlake */
3177 reg = FDI_TX_CTL(pipe);
3178 temp = I915_READ(reg);
3179 if ((temp & FDI_TX_PLL_ENABLE) == 0) {
3180 I915_WRITE(reg, temp | FDI_TX_PLL_ENABLE);
Chris Wilson5eddb702010-09-11 13:48:45 +01003181
Paulo Zanoni20749732012-11-23 15:30:38 -02003182 POSTING_READ(reg);
3183 udelay(100);
Jesse Barnes0e23b992010-09-10 11:10:00 -07003184 }
3185}
3186
Daniel Vetter88cefb62012-08-12 19:27:14 +02003187static void ironlake_fdi_pll_disable(struct intel_crtc *intel_crtc)
3188{
3189 struct drm_device *dev = intel_crtc->base.dev;
3190 struct drm_i915_private *dev_priv = dev->dev_private;
3191 int pipe = intel_crtc->pipe;
3192 u32 reg, temp;
3193
3194 /* Switch from PCDclk to Rawclk */
3195 reg = FDI_RX_CTL(pipe);
3196 temp = I915_READ(reg);
3197 I915_WRITE(reg, temp & ~FDI_PCDCLK);
3198
3199 /* Disable CPU FDI TX PLL */
3200 reg = FDI_TX_CTL(pipe);
3201 temp = I915_READ(reg);
3202 I915_WRITE(reg, temp & ~FDI_TX_PLL_ENABLE);
3203
3204 POSTING_READ(reg);
3205 udelay(100);
3206
3207 reg = FDI_RX_CTL(pipe);
3208 temp = I915_READ(reg);
3209 I915_WRITE(reg, temp & ~FDI_RX_PLL_ENABLE);
3210
3211 /* Wait for the clocks to turn off. */
3212 POSTING_READ(reg);
3213 udelay(100);
3214}
3215
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003216static void ironlake_fdi_disable(struct drm_crtc *crtc)
3217{
3218 struct drm_device *dev = crtc->dev;
3219 struct drm_i915_private *dev_priv = dev->dev_private;
3220 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3221 int pipe = intel_crtc->pipe;
3222 u32 reg, temp;
3223
3224 /* disable CPU FDI tx and PCH FDI rx */
3225 reg = FDI_TX_CTL(pipe);
3226 temp = I915_READ(reg);
3227 I915_WRITE(reg, temp & ~FDI_TX_ENABLE);
3228 POSTING_READ(reg);
3229
3230 reg = FDI_RX_CTL(pipe);
3231 temp = I915_READ(reg);
3232 temp &= ~(0x7 << 16);
Daniel Vetterdfd07d72012-12-17 11:21:38 +01003233 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003234 I915_WRITE(reg, temp & ~FDI_RX_ENABLE);
3235
3236 POSTING_READ(reg);
3237 udelay(100);
3238
3239 /* Ironlake workaround, disable clock pointer after downing FDI */
Robin Schroereba905b2014-05-18 02:24:50 +02003240 if (HAS_PCH_IBX(dev))
Jesse Barnes6f06ce12011-01-04 15:09:38 -08003241 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR);
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003242
3243 /* still set train pattern 1 */
3244 reg = FDI_TX_CTL(pipe);
3245 temp = I915_READ(reg);
3246 temp &= ~FDI_LINK_TRAIN_NONE;
3247 temp |= FDI_LINK_TRAIN_PATTERN_1;
3248 I915_WRITE(reg, temp);
3249
3250 reg = FDI_RX_CTL(pipe);
3251 temp = I915_READ(reg);
3252 if (HAS_PCH_CPT(dev)) {
3253 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3254 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
3255 } else {
3256 temp &= ~FDI_LINK_TRAIN_NONE;
3257 temp |= FDI_LINK_TRAIN_PATTERN_1;
3258 }
3259 /* BPC in FDI rx is consistent with that in PIPECONF */
3260 temp &= ~(0x07 << 16);
Daniel Vetterdfd07d72012-12-17 11:21:38 +01003261 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003262 I915_WRITE(reg, temp);
3263
3264 POSTING_READ(reg);
3265 udelay(100);
3266}
3267
Chris Wilson5dce5b932014-01-20 10:17:36 +00003268bool intel_has_pending_fb_unpin(struct drm_device *dev)
3269{
3270 struct intel_crtc *crtc;
3271
3272 /* Note that we don't need to be called with mode_config.lock here
3273 * as our list of CRTC objects is static for the lifetime of the
3274 * device and so cannot disappear as we iterate. Similarly, we can
3275 * happily treat the predicates as racy, atomic checks as userspace
3276 * cannot claim and pin a new fb without at least acquring the
3277 * struct_mutex and so serialising with us.
3278 */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01003279 for_each_intel_crtc(dev, crtc) {
Chris Wilson5dce5b932014-01-20 10:17:36 +00003280 if (atomic_read(&crtc->unpin_work_count) == 0)
3281 continue;
3282
3283 if (crtc->unpin_work)
3284 intel_wait_for_vblank(dev, crtc->pipe);
3285
3286 return true;
3287 }
3288
3289 return false;
3290}
3291
Ville Syrjälä46a55d32014-05-21 14:04:46 +03003292void intel_crtc_wait_for_pending_flips(struct drm_crtc *crtc)
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01003293{
Chris Wilson0f911282012-04-17 10:05:38 +01003294 struct drm_device *dev = crtc->dev;
Chris Wilson5bb61642012-09-27 21:25:58 +01003295 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01003296
Matt Roperf4510a22014-04-01 15:22:40 -07003297 if (crtc->primary->fb == NULL)
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01003298 return;
3299
Daniel Vetter2c10d572012-12-20 21:24:07 +01003300 WARN_ON(waitqueue_active(&dev_priv->pending_flip_queue));
3301
Daniel Vettereed6d672014-05-19 16:09:35 +02003302 WARN_ON(wait_event_timeout(dev_priv->pending_flip_queue,
3303 !intel_crtc_has_pending_flip(crtc),
3304 60*HZ) == 0);
Chris Wilson5bb61642012-09-27 21:25:58 +01003305
Chris Wilson0f911282012-04-17 10:05:38 +01003306 mutex_lock(&dev->struct_mutex);
Matt Roperf4510a22014-04-01 15:22:40 -07003307 intel_finish_fb(crtc->primary->fb);
Chris Wilson0f911282012-04-17 10:05:38 +01003308 mutex_unlock(&dev->struct_mutex);
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01003309}
3310
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003311/* Program iCLKIP clock to the desired frequency */
3312static void lpt_program_iclkip(struct drm_crtc *crtc)
3313{
3314 struct drm_device *dev = crtc->dev;
3315 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiau241bfc32013-09-25 16:45:37 +01003316 int clock = to_intel_crtc(crtc)->config.adjusted_mode.crtc_clock;
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003317 u32 divsel, phaseinc, auxdiv, phasedir = 0;
3318 u32 temp;
3319
Daniel Vetter09153002012-12-12 14:06:44 +01003320 mutex_lock(&dev_priv->dpio_lock);
3321
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003322 /* It is necessary to ungate the pixclk gate prior to programming
3323 * the divisors, and gate it back when it is done.
3324 */
3325 I915_WRITE(PIXCLK_GATE, PIXCLK_GATE_GATE);
3326
3327 /* Disable SSCCTL */
3328 intel_sbi_write(dev_priv, SBI_SSCCTL6,
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003329 intel_sbi_read(dev_priv, SBI_SSCCTL6, SBI_ICLK) |
3330 SBI_SSCCTL_DISABLE,
3331 SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003332
3333 /* 20MHz is a corner case which is out of range for the 7-bit divisor */
Ville Syrjälä12d7cee2013-09-04 18:25:19 +03003334 if (clock == 20000) {
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003335 auxdiv = 1;
3336 divsel = 0x41;
3337 phaseinc = 0x20;
3338 } else {
3339 /* The iCLK virtual clock root frequency is in MHz,
Damien Lespiau241bfc32013-09-25 16:45:37 +01003340 * but the adjusted_mode->crtc_clock in in KHz. To get the
3341 * divisors, it is necessary to divide one by another, so we
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003342 * convert the virtual clock precision to KHz here for higher
3343 * precision.
3344 */
3345 u32 iclk_virtual_root_freq = 172800 * 1000;
3346 u32 iclk_pi_range = 64;
3347 u32 desired_divisor, msb_divisor_value, pi_value;
3348
Ville Syrjälä12d7cee2013-09-04 18:25:19 +03003349 desired_divisor = (iclk_virtual_root_freq / clock);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003350 msb_divisor_value = desired_divisor / iclk_pi_range;
3351 pi_value = desired_divisor % iclk_pi_range;
3352
3353 auxdiv = 0;
3354 divsel = msb_divisor_value - 2;
3355 phaseinc = pi_value;
3356 }
3357
3358 /* This should not happen with any sane values */
3359 WARN_ON(SBI_SSCDIVINTPHASE_DIVSEL(divsel) &
3360 ~SBI_SSCDIVINTPHASE_DIVSEL_MASK);
3361 WARN_ON(SBI_SSCDIVINTPHASE_DIR(phasedir) &
3362 ~SBI_SSCDIVINTPHASE_INCVAL_MASK);
3363
3364 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 +03003365 clock,
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003366 auxdiv,
3367 divsel,
3368 phasedir,
3369 phaseinc);
3370
3371 /* Program SSCDIVINTPHASE6 */
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003372 temp = intel_sbi_read(dev_priv, SBI_SSCDIVINTPHASE6, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003373 temp &= ~SBI_SSCDIVINTPHASE_DIVSEL_MASK;
3374 temp |= SBI_SSCDIVINTPHASE_DIVSEL(divsel);
3375 temp &= ~SBI_SSCDIVINTPHASE_INCVAL_MASK;
3376 temp |= SBI_SSCDIVINTPHASE_INCVAL(phaseinc);
3377 temp |= SBI_SSCDIVINTPHASE_DIR(phasedir);
3378 temp |= SBI_SSCDIVINTPHASE_PROPAGATE;
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003379 intel_sbi_write(dev_priv, SBI_SSCDIVINTPHASE6, temp, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003380
3381 /* Program SSCAUXDIV */
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003382 temp = intel_sbi_read(dev_priv, SBI_SSCAUXDIV6, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003383 temp &= ~SBI_SSCAUXDIV_FINALDIV2SEL(1);
3384 temp |= SBI_SSCAUXDIV_FINALDIV2SEL(auxdiv);
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003385 intel_sbi_write(dev_priv, SBI_SSCAUXDIV6, temp, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003386
3387 /* Enable modulator and associated divider */
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003388 temp = intel_sbi_read(dev_priv, SBI_SSCCTL6, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003389 temp &= ~SBI_SSCCTL_DISABLE;
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003390 intel_sbi_write(dev_priv, SBI_SSCCTL6, temp, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003391
3392 /* Wait for initialization time */
3393 udelay(24);
3394
3395 I915_WRITE(PIXCLK_GATE, PIXCLK_GATE_UNGATE);
Daniel Vetter09153002012-12-12 14:06:44 +01003396
3397 mutex_unlock(&dev_priv->dpio_lock);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003398}
3399
Daniel Vetter275f01b22013-05-03 11:49:47 +02003400static void ironlake_pch_transcoder_set_timings(struct intel_crtc *crtc,
3401 enum pipe pch_transcoder)
3402{
3403 struct drm_device *dev = crtc->base.dev;
3404 struct drm_i915_private *dev_priv = dev->dev_private;
3405 enum transcoder cpu_transcoder = crtc->config.cpu_transcoder;
3406
3407 I915_WRITE(PCH_TRANS_HTOTAL(pch_transcoder),
3408 I915_READ(HTOTAL(cpu_transcoder)));
3409 I915_WRITE(PCH_TRANS_HBLANK(pch_transcoder),
3410 I915_READ(HBLANK(cpu_transcoder)));
3411 I915_WRITE(PCH_TRANS_HSYNC(pch_transcoder),
3412 I915_READ(HSYNC(cpu_transcoder)));
3413
3414 I915_WRITE(PCH_TRANS_VTOTAL(pch_transcoder),
3415 I915_READ(VTOTAL(cpu_transcoder)));
3416 I915_WRITE(PCH_TRANS_VBLANK(pch_transcoder),
3417 I915_READ(VBLANK(cpu_transcoder)));
3418 I915_WRITE(PCH_TRANS_VSYNC(pch_transcoder),
3419 I915_READ(VSYNC(cpu_transcoder)));
3420 I915_WRITE(PCH_TRANS_VSYNCSHIFT(pch_transcoder),
3421 I915_READ(VSYNCSHIFT(cpu_transcoder)));
3422}
3423
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01003424static void cpt_enable_fdi_bc_bifurcation(struct drm_device *dev)
3425{
3426 struct drm_i915_private *dev_priv = dev->dev_private;
3427 uint32_t temp;
3428
3429 temp = I915_READ(SOUTH_CHICKEN1);
3430 if (temp & FDI_BC_BIFURCATION_SELECT)
3431 return;
3432
3433 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_B)) & FDI_RX_ENABLE);
3434 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_C)) & FDI_RX_ENABLE);
3435
3436 temp |= FDI_BC_BIFURCATION_SELECT;
3437 DRM_DEBUG_KMS("enabling fdi C rx\n");
3438 I915_WRITE(SOUTH_CHICKEN1, temp);
3439 POSTING_READ(SOUTH_CHICKEN1);
3440}
3441
3442static void ivybridge_update_fdi_bc_bifurcation(struct intel_crtc *intel_crtc)
3443{
3444 struct drm_device *dev = intel_crtc->base.dev;
3445 struct drm_i915_private *dev_priv = dev->dev_private;
3446
3447 switch (intel_crtc->pipe) {
3448 case PIPE_A:
3449 break;
3450 case PIPE_B:
3451 if (intel_crtc->config.fdi_lanes > 2)
3452 WARN_ON(I915_READ(SOUTH_CHICKEN1) & FDI_BC_BIFURCATION_SELECT);
3453 else
3454 cpt_enable_fdi_bc_bifurcation(dev);
3455
3456 break;
3457 case PIPE_C:
3458 cpt_enable_fdi_bc_bifurcation(dev);
3459
3460 break;
3461 default:
3462 BUG();
3463 }
3464}
3465
Jesse Barnesf67a5592011-01-05 10:31:48 -08003466/*
3467 * Enable PCH resources required for PCH ports:
3468 * - PCH PLLs
3469 * - FDI training & RX/TX
3470 * - update transcoder timings
3471 * - DP transcoding bits
3472 * - transcoder
3473 */
3474static void ironlake_pch_enable(struct drm_crtc *crtc)
Jesse Barnes79e53942008-11-07 14:24:08 -08003475{
3476 struct drm_device *dev = crtc->dev;
Zhenyu Wang2c072452009-06-05 15:38:42 +08003477 struct drm_i915_private *dev_priv = dev->dev_private;
3478 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3479 int pipe = intel_crtc->pipe;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003480 u32 reg, temp;
Jesse Barnes6be4a602010-09-10 10:26:01 -07003481
Daniel Vetterab9412b2013-05-03 11:49:46 +02003482 assert_pch_transcoder_disabled(dev_priv, pipe);
Chris Wilsone7e164d2012-05-11 09:21:25 +01003483
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01003484 if (IS_IVYBRIDGE(dev))
3485 ivybridge_update_fdi_bc_bifurcation(intel_crtc);
3486
Daniel Vettercd986ab2012-10-26 10:58:12 +02003487 /* Write the TU size bits before fdi link training, so that error
3488 * detection works. */
3489 I915_WRITE(FDI_RX_TUSIZE1(pipe),
3490 I915_READ(PIPE_DATA_M1(pipe)) & TU_SIZE_MASK);
3491
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003492 /* For PCH output, training FDI link */
Jesse Barnes674cf962011-04-28 14:27:04 -07003493 dev_priv->display.fdi_link_train(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003494
Daniel Vetter3ad8a202013-06-05 13:34:32 +02003495 /* We need to program the right clock selection before writing the pixel
3496 * mutliplier into the DPLL. */
Paulo Zanoni303b81e2012-10-31 18:12:23 -02003497 if (HAS_PCH_CPT(dev)) {
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003498 u32 sel;
Jesse Barnes4b645f12011-10-12 09:51:31 -07003499
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003500 temp = I915_READ(PCH_DPLL_SEL);
Daniel Vetter11887392013-06-05 13:34:09 +02003501 temp |= TRANS_DPLL_ENABLE(pipe);
3502 sel = TRANS_DPLLB_SEL(pipe);
Daniel Vettera43f6e02013-06-07 23:10:32 +02003503 if (intel_crtc->config.shared_dpll == DPLL_ID_PCH_PLL_B)
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003504 temp |= sel;
3505 else
3506 temp &= ~sel;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003507 I915_WRITE(PCH_DPLL_SEL, temp);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003508 }
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003509
Daniel Vetter3ad8a202013-06-05 13:34:32 +02003510 /* XXX: pch pll's can be enabled any time before we enable the PCH
3511 * transcoder, and we actually should do this to not upset any PCH
3512 * transcoder that already use the clock when we share it.
3513 *
3514 * Note that enable_shared_dpll tries to do the right thing, but
3515 * get_shared_dpll unconditionally resets the pll - we need that to have
3516 * the right LVDS enable sequence. */
Daniel Vetter85b38942014-04-24 23:55:14 +02003517 intel_enable_shared_dpll(intel_crtc);
Daniel Vetter3ad8a202013-06-05 13:34:32 +02003518
Jesse Barnesd9b6cb52011-01-04 15:09:35 -08003519 /* set transcoder timing, panel must allow it */
3520 assert_panel_unlocked(dev_priv, pipe);
Daniel Vetter275f01b22013-05-03 11:49:47 +02003521 ironlake_pch_transcoder_set_timings(intel_crtc, pipe);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003522
Paulo Zanoni303b81e2012-10-31 18:12:23 -02003523 intel_fdi_normal_train(crtc);
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08003524
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003525 /* For PCH DP, enable TRANS_DP_CTL */
3526 if (HAS_PCH_CPT(dev) &&
Keith Packard417e8222011-11-01 19:54:11 -07003527 (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT) ||
3528 intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP))) {
Daniel Vetterdfd07d72012-12-17 11:21:38 +01003529 u32 bpc = (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) >> 5;
Chris Wilson5eddb702010-09-11 13:48:45 +01003530 reg = TRANS_DP_CTL(pipe);
3531 temp = I915_READ(reg);
3532 temp &= ~(TRANS_DP_PORT_SEL_MASK |
Eric Anholt220cad32010-11-18 09:32:58 +08003533 TRANS_DP_SYNC_MASK |
3534 TRANS_DP_BPC_MASK);
Chris Wilson5eddb702010-09-11 13:48:45 +01003535 temp |= (TRANS_DP_OUTPUT_ENABLE |
3536 TRANS_DP_ENH_FRAMING);
Jesse Barnes9325c9f2011-06-24 12:19:21 -07003537 temp |= bpc << 9; /* same format but at 11:9 */
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003538
3539 if (crtc->mode.flags & DRM_MODE_FLAG_PHSYNC)
Chris Wilson5eddb702010-09-11 13:48:45 +01003540 temp |= TRANS_DP_HSYNC_ACTIVE_HIGH;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003541 if (crtc->mode.flags & DRM_MODE_FLAG_PVSYNC)
Chris Wilson5eddb702010-09-11 13:48:45 +01003542 temp |= TRANS_DP_VSYNC_ACTIVE_HIGH;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003543
3544 switch (intel_trans_dp_port_sel(crtc)) {
3545 case PCH_DP_B:
Chris Wilson5eddb702010-09-11 13:48:45 +01003546 temp |= TRANS_DP_PORT_SEL_B;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003547 break;
3548 case PCH_DP_C:
Chris Wilson5eddb702010-09-11 13:48:45 +01003549 temp |= TRANS_DP_PORT_SEL_C;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003550 break;
3551 case PCH_DP_D:
Chris Wilson5eddb702010-09-11 13:48:45 +01003552 temp |= TRANS_DP_PORT_SEL_D;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003553 break;
3554 default:
Daniel Vettere95d41e2012-10-26 10:58:16 +02003555 BUG();
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003556 }
3557
Chris Wilson5eddb702010-09-11 13:48:45 +01003558 I915_WRITE(reg, temp);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003559 }
3560
Paulo Zanonib8a4f402012-10-31 18:12:42 -02003561 ironlake_enable_pch_transcoder(dev_priv, pipe);
Jesse Barnesf67a5592011-01-05 10:31:48 -08003562}
3563
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003564static void lpt_pch_enable(struct drm_crtc *crtc)
3565{
3566 struct drm_device *dev = crtc->dev;
3567 struct drm_i915_private *dev_priv = dev->dev_private;
3568 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter3b117c82013-04-17 20:15:07 +02003569 enum transcoder cpu_transcoder = intel_crtc->config.cpu_transcoder;
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003570
Daniel Vetterab9412b2013-05-03 11:49:46 +02003571 assert_pch_transcoder_disabled(dev_priv, TRANSCODER_A);
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003572
Paulo Zanoni8c52b5e2012-10-31 18:12:24 -02003573 lpt_program_iclkip(crtc);
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003574
Paulo Zanoni0540e482012-10-31 18:12:40 -02003575 /* Set transcoder timing. */
Daniel Vetter275f01b22013-05-03 11:49:47 +02003576 ironlake_pch_transcoder_set_timings(intel_crtc, PIPE_A);
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003577
Paulo Zanoni937bb612012-10-31 18:12:47 -02003578 lpt_enable_pch_transcoder(dev_priv, cpu_transcoder);
Jesse Barnesf67a5592011-01-05 10:31:48 -08003579}
3580
Daniel Vettere2b78262013-06-07 23:10:03 +02003581static void intel_put_shared_dpll(struct intel_crtc *crtc)
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003582{
Daniel Vettere2b78262013-06-07 23:10:03 +02003583 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003584
3585 if (pll == NULL)
3586 return;
3587
3588 if (pll->refcount == 0) {
Daniel Vetter46edb022013-06-05 13:34:12 +02003589 WARN(1, "bad %s refcount\n", pll->name);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003590 return;
3591 }
3592
Daniel Vetterf4a091c2013-06-10 17:28:22 +02003593 if (--pll->refcount == 0) {
3594 WARN_ON(pll->on);
3595 WARN_ON(pll->active);
3596 }
3597
Daniel Vettera43f6e02013-06-07 23:10:32 +02003598 crtc->config.shared_dpll = DPLL_ID_PRIVATE;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003599}
3600
Daniel Vetterb89a1d32013-06-05 13:34:24 +02003601static struct intel_shared_dpll *intel_get_shared_dpll(struct intel_crtc *crtc)
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003602{
Daniel Vettere2b78262013-06-07 23:10:03 +02003603 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
3604 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
3605 enum intel_dpll_id i;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003606
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003607 if (pll) {
Daniel Vetter46edb022013-06-05 13:34:12 +02003608 DRM_DEBUG_KMS("CRTC:%d dropping existing %s\n",
3609 crtc->base.base.id, pll->name);
Daniel Vettere2b78262013-06-07 23:10:03 +02003610 intel_put_shared_dpll(crtc);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003611 }
3612
Daniel Vetter98b6bd92012-05-20 20:00:25 +02003613 if (HAS_PCH_IBX(dev_priv->dev)) {
3614 /* Ironlake PCH has a fixed PLL->PCH pipe mapping. */
Daniel Vetterd94ab062013-07-04 12:01:16 +02003615 i = (enum intel_dpll_id) crtc->pipe;
Daniel Vettere72f9fb2013-06-05 13:34:06 +02003616 pll = &dev_priv->shared_dplls[i];
Daniel Vetter98b6bd92012-05-20 20:00:25 +02003617
Daniel Vetter46edb022013-06-05 13:34:12 +02003618 DRM_DEBUG_KMS("CRTC:%d using pre-allocated %s\n",
3619 crtc->base.base.id, pll->name);
Daniel Vetter98b6bd92012-05-20 20:00:25 +02003620
Daniel Vetterf2a69f42014-05-20 15:19:19 +02003621 WARN_ON(pll->refcount);
3622
Daniel Vetter98b6bd92012-05-20 20:00:25 +02003623 goto found;
3624 }
3625
Daniel Vettere72f9fb2013-06-05 13:34:06 +02003626 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
3627 pll = &dev_priv->shared_dplls[i];
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003628
3629 /* Only want to check enabled timings first */
3630 if (pll->refcount == 0)
3631 continue;
3632
Daniel Vetterb89a1d32013-06-05 13:34:24 +02003633 if (memcmp(&crtc->config.dpll_hw_state, &pll->hw_state,
3634 sizeof(pll->hw_state)) == 0) {
Daniel Vetter46edb022013-06-05 13:34:12 +02003635 DRM_DEBUG_KMS("CRTC:%d sharing existing %s (refcount %d, ative %d)\n",
Daniel Vettere2b78262013-06-07 23:10:03 +02003636 crtc->base.base.id,
Daniel Vetter46edb022013-06-05 13:34:12 +02003637 pll->name, pll->refcount, pll->active);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003638
3639 goto found;
3640 }
3641 }
3642
3643 /* Ok no matching timings, maybe there's a free one? */
Daniel Vettere72f9fb2013-06-05 13:34:06 +02003644 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
3645 pll = &dev_priv->shared_dplls[i];
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003646 if (pll->refcount == 0) {
Daniel Vetter46edb022013-06-05 13:34:12 +02003647 DRM_DEBUG_KMS("CRTC:%d allocated %s\n",
3648 crtc->base.base.id, pll->name);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003649 goto found;
3650 }
3651 }
3652
3653 return NULL;
3654
3655found:
Daniel Vetterf2a69f42014-05-20 15:19:19 +02003656 if (pll->refcount == 0)
3657 pll->hw_state = crtc->config.dpll_hw_state;
3658
Daniel Vettera43f6e02013-06-07 23:10:32 +02003659 crtc->config.shared_dpll = i;
Daniel Vetter46edb022013-06-05 13:34:12 +02003660 DRM_DEBUG_DRIVER("using %s for pipe %c\n", pll->name,
3661 pipe_name(crtc->pipe));
Daniel Vetter66e985c2013-06-05 13:34:20 +02003662
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003663 pll->refcount++;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003664
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003665 return pll;
3666}
3667
Daniel Vettera1520312013-05-03 11:49:50 +02003668static void cpt_verify_modeset(struct drm_device *dev, int pipe)
Jesse Barnesd4270e52011-10-11 10:43:02 -07003669{
3670 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter23670b322012-11-01 09:15:30 +01003671 int dslreg = PIPEDSL(pipe);
Jesse Barnesd4270e52011-10-11 10:43:02 -07003672 u32 temp;
3673
3674 temp = I915_READ(dslreg);
3675 udelay(500);
3676 if (wait_for(I915_READ(dslreg) != temp, 5)) {
Jesse Barnesd4270e52011-10-11 10:43:02 -07003677 if (wait_for(I915_READ(dslreg) != temp, 5))
Ville Syrjälä84f44ce2013-04-17 17:48:49 +03003678 DRM_ERROR("mode set failed: pipe %c stuck\n", pipe_name(pipe));
Jesse Barnesd4270e52011-10-11 10:43:02 -07003679 }
3680}
3681
Jesse Barnesb074cec2013-04-25 12:55:02 -07003682static void ironlake_pfit_enable(struct intel_crtc *crtc)
3683{
3684 struct drm_device *dev = crtc->base.dev;
3685 struct drm_i915_private *dev_priv = dev->dev_private;
3686 int pipe = crtc->pipe;
3687
Chris Wilsonfd4daa92013-08-27 17:04:17 +01003688 if (crtc->config.pch_pfit.enabled) {
Jesse Barnesb074cec2013-04-25 12:55:02 -07003689 /* Force use of hard-coded filter coefficients
3690 * as some pre-programmed values are broken,
3691 * e.g. x201.
3692 */
3693 if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev))
3694 I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3 |
3695 PF_PIPE_SEL_IVB(pipe));
3696 else
3697 I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3);
3698 I915_WRITE(PF_WIN_POS(pipe), crtc->config.pch_pfit.pos);
3699 I915_WRITE(PF_WIN_SZ(pipe), crtc->config.pch_pfit.size);
Jesse Barnes040484a2011-01-03 12:14:26 -08003700 }
Jesse Barnesf67a5592011-01-05 10:31:48 -08003701}
3702
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03003703static void intel_enable_planes(struct drm_crtc *crtc)
3704{
3705 struct drm_device *dev = crtc->dev;
3706 enum pipe pipe = to_intel_crtc(crtc)->pipe;
Matt Roperaf2b6532014-04-01 15:22:32 -07003707 struct drm_plane *plane;
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03003708 struct intel_plane *intel_plane;
3709
Matt Roperaf2b6532014-04-01 15:22:32 -07003710 drm_for_each_legacy_plane(plane, &dev->mode_config.plane_list) {
3711 intel_plane = to_intel_plane(plane);
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03003712 if (intel_plane->pipe == pipe)
3713 intel_plane_restore(&intel_plane->base);
Matt Roperaf2b6532014-04-01 15:22:32 -07003714 }
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03003715}
3716
3717static void intel_disable_planes(struct drm_crtc *crtc)
3718{
3719 struct drm_device *dev = crtc->dev;
3720 enum pipe pipe = to_intel_crtc(crtc)->pipe;
Matt Roperaf2b6532014-04-01 15:22:32 -07003721 struct drm_plane *plane;
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03003722 struct intel_plane *intel_plane;
3723
Matt Roperaf2b6532014-04-01 15:22:32 -07003724 drm_for_each_legacy_plane(plane, &dev->mode_config.plane_list) {
3725 intel_plane = to_intel_plane(plane);
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03003726 if (intel_plane->pipe == pipe)
3727 intel_plane_disable(&intel_plane->base);
Matt Roperaf2b6532014-04-01 15:22:32 -07003728 }
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03003729}
3730
Ville Syrjälä20bc86732013-10-01 18:02:17 +03003731void hsw_enable_ips(struct intel_crtc *crtc)
Paulo Zanonid77e4532013-09-24 13:52:55 -03003732{
Ville Syrjäläcea165c2014-04-15 21:41:35 +03003733 struct drm_device *dev = crtc->base.dev;
3734 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanonid77e4532013-09-24 13:52:55 -03003735
3736 if (!crtc->config.ips_enabled)
3737 return;
3738
Ville Syrjäläcea165c2014-04-15 21:41:35 +03003739 /* We can only enable IPS after we enable a plane and wait for a vblank */
3740 intel_wait_for_vblank(dev, crtc->pipe);
3741
Paulo Zanonid77e4532013-09-24 13:52:55 -03003742 assert_plane_enabled(dev_priv, crtc->plane);
Ville Syrjäläcea165c2014-04-15 21:41:35 +03003743 if (IS_BROADWELL(dev)) {
Ben Widawsky2a114cc2013-11-02 21:07:47 -07003744 mutex_lock(&dev_priv->rps.hw_lock);
3745 WARN_ON(sandybridge_pcode_write(dev_priv, DISPLAY_IPS_CONTROL, 0xc0000000));
3746 mutex_unlock(&dev_priv->rps.hw_lock);
3747 /* Quoting Art Runyan: "its not safe to expect any particular
3748 * value in IPS_CTL bit 31 after enabling IPS through the
Jesse Barnese59150d2014-01-07 13:30:45 -08003749 * mailbox." Moreover, the mailbox may return a bogus state,
3750 * so we need to just enable it and continue on.
Ben Widawsky2a114cc2013-11-02 21:07:47 -07003751 */
3752 } else {
3753 I915_WRITE(IPS_CTL, IPS_ENABLE);
3754 /* The bit only becomes 1 in the next vblank, so this wait here
3755 * is essentially intel_wait_for_vblank. If we don't have this
3756 * and don't wait for vblanks until the end of crtc_enable, then
3757 * the HW state readout code will complain that the expected
3758 * IPS_CTL value is not the one we read. */
3759 if (wait_for(I915_READ_NOTRACE(IPS_CTL) & IPS_ENABLE, 50))
3760 DRM_ERROR("Timed out waiting for IPS enable\n");
3761 }
Paulo Zanonid77e4532013-09-24 13:52:55 -03003762}
3763
Ville Syrjälä20bc86732013-10-01 18:02:17 +03003764void hsw_disable_ips(struct intel_crtc *crtc)
Paulo Zanonid77e4532013-09-24 13:52:55 -03003765{
3766 struct drm_device *dev = crtc->base.dev;
3767 struct drm_i915_private *dev_priv = dev->dev_private;
3768
3769 if (!crtc->config.ips_enabled)
3770 return;
3771
3772 assert_plane_enabled(dev_priv, crtc->plane);
Ben Widawsky23d0b132014-04-10 14:32:41 -07003773 if (IS_BROADWELL(dev)) {
Ben Widawsky2a114cc2013-11-02 21:07:47 -07003774 mutex_lock(&dev_priv->rps.hw_lock);
3775 WARN_ON(sandybridge_pcode_write(dev_priv, DISPLAY_IPS_CONTROL, 0));
3776 mutex_unlock(&dev_priv->rps.hw_lock);
Ben Widawsky23d0b132014-04-10 14:32:41 -07003777 /* wait for pcode to finish disabling IPS, which may take up to 42ms */
3778 if (wait_for((I915_READ(IPS_CTL) & IPS_ENABLE) == 0, 42))
3779 DRM_ERROR("Timed out waiting for IPS disable\n");
Jesse Barnese59150d2014-01-07 13:30:45 -08003780 } else {
Ben Widawsky2a114cc2013-11-02 21:07:47 -07003781 I915_WRITE(IPS_CTL, 0);
Jesse Barnese59150d2014-01-07 13:30:45 -08003782 POSTING_READ(IPS_CTL);
3783 }
Paulo Zanonid77e4532013-09-24 13:52:55 -03003784
3785 /* We need to wait for a vblank before we can disable the plane. */
3786 intel_wait_for_vblank(dev, crtc->pipe);
3787}
3788
3789/** Loads the palette/gamma unit for the CRTC with the prepared values */
3790static void intel_crtc_load_lut(struct drm_crtc *crtc)
3791{
3792 struct drm_device *dev = crtc->dev;
3793 struct drm_i915_private *dev_priv = dev->dev_private;
3794 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3795 enum pipe pipe = intel_crtc->pipe;
3796 int palreg = PALETTE(pipe);
3797 int i;
3798 bool reenable_ips = false;
3799
3800 /* The clocks have to be on to load the palette. */
3801 if (!crtc->enabled || !intel_crtc->active)
3802 return;
3803
3804 if (!HAS_PCH_SPLIT(dev_priv->dev)) {
3805 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DSI))
3806 assert_dsi_pll_enabled(dev_priv);
3807 else
3808 assert_pll_enabled(dev_priv, pipe);
3809 }
3810
3811 /* use legacy palette for Ironlake */
3812 if (HAS_PCH_SPLIT(dev))
3813 palreg = LGC_PALETTE(pipe);
3814
3815 /* Workaround : Do not read or write the pipe palette/gamma data while
3816 * GAMMA_MODE is configured for split gamma and IPS_CTL has IPS enabled.
3817 */
Paulo Zanoni41e6fc42014-01-08 17:26:31 -02003818 if (IS_HASWELL(dev) && intel_crtc->config.ips_enabled &&
Paulo Zanonid77e4532013-09-24 13:52:55 -03003819 ((I915_READ(GAMMA_MODE(pipe)) & GAMMA_MODE_MODE_MASK) ==
3820 GAMMA_MODE_MODE_SPLIT)) {
3821 hsw_disable_ips(intel_crtc);
3822 reenable_ips = true;
3823 }
3824
3825 for (i = 0; i < 256; i++) {
3826 I915_WRITE(palreg + 4 * i,
3827 (intel_crtc->lut_r[i] << 16) |
3828 (intel_crtc->lut_g[i] << 8) |
3829 intel_crtc->lut_b[i]);
3830 }
3831
3832 if (reenable_ips)
3833 hsw_enable_ips(intel_crtc);
3834}
3835
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03003836static void intel_crtc_dpms_overlay(struct intel_crtc *intel_crtc, bool enable)
3837{
3838 if (!enable && intel_crtc->overlay) {
3839 struct drm_device *dev = intel_crtc->base.dev;
3840 struct drm_i915_private *dev_priv = dev->dev_private;
3841
3842 mutex_lock(&dev->struct_mutex);
3843 dev_priv->mm.interruptible = false;
3844 (void) intel_overlay_switch_off(intel_crtc->overlay);
3845 dev_priv->mm.interruptible = true;
3846 mutex_unlock(&dev->struct_mutex);
3847 }
3848
3849 /* Let userspace switch the overlay on again. In most cases userspace
3850 * has to recompute where to put it anyway.
3851 */
3852}
3853
3854/**
3855 * i9xx_fixup_plane - ugly workaround for G45 to fire up the hardware
3856 * cursor plane briefly if not already running after enabling the display
3857 * plane.
3858 * This workaround avoids occasional blank screens when self refresh is
3859 * enabled.
3860 */
3861static void
3862g4x_fixup_plane(struct drm_i915_private *dev_priv, enum pipe pipe)
3863{
3864 u32 cntl = I915_READ(CURCNTR(pipe));
3865
3866 if ((cntl & CURSOR_MODE) == 0) {
3867 u32 fw_bcl_self = I915_READ(FW_BLC_SELF);
3868
3869 I915_WRITE(FW_BLC_SELF, fw_bcl_self & ~FW_BLC_SELF_EN);
3870 I915_WRITE(CURCNTR(pipe), CURSOR_MODE_64_ARGB_AX);
3871 intel_wait_for_vblank(dev_priv->dev, pipe);
3872 I915_WRITE(CURCNTR(pipe), cntl);
3873 I915_WRITE(CURBASE(pipe), I915_READ(CURBASE(pipe)));
3874 I915_WRITE(FW_BLC_SELF, fw_bcl_self);
3875 }
3876}
3877
3878static void intel_crtc_enable_planes(struct drm_crtc *crtc)
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02003879{
3880 struct drm_device *dev = crtc->dev;
3881 struct drm_i915_private *dev_priv = dev->dev_private;
3882 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3883 int pipe = intel_crtc->pipe;
3884 int plane = intel_crtc->plane;
3885
3886 intel_enable_primary_hw_plane(dev_priv, plane, pipe);
3887 intel_enable_planes(crtc);
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03003888 /* The fixup needs to happen before cursor is enabled */
3889 if (IS_G4X(dev))
3890 g4x_fixup_plane(dev_priv, pipe);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02003891 intel_crtc_update_cursor(crtc, true);
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03003892 intel_crtc_dpms_overlay(intel_crtc, true);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02003893
3894 hsw_enable_ips(intel_crtc);
3895
3896 mutex_lock(&dev->struct_mutex);
3897 intel_update_fbc(dev);
Daniel Vetter71b1c372014-04-24 23:55:03 +02003898 intel_edp_psr_update(dev);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02003899 mutex_unlock(&dev->struct_mutex);
3900}
3901
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03003902static void intel_crtc_disable_planes(struct drm_crtc *crtc)
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02003903{
3904 struct drm_device *dev = crtc->dev;
3905 struct drm_i915_private *dev_priv = dev->dev_private;
3906 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3907 int pipe = intel_crtc->pipe;
3908 int plane = intel_crtc->plane;
3909
3910 intel_crtc_wait_for_pending_flips(crtc);
Daniel Vetter87b6b102014-05-15 15:33:46 +02003911 drm_crtc_vblank_off(crtc);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02003912
3913 if (dev_priv->fbc.plane == plane)
3914 intel_disable_fbc(dev);
3915
3916 hsw_disable_ips(intel_crtc);
3917
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03003918 intel_crtc_dpms_overlay(intel_crtc, false);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02003919 intel_crtc_update_cursor(crtc, false);
3920 intel_disable_planes(crtc);
3921 intel_disable_primary_hw_plane(dev_priv, plane, pipe);
3922}
3923
Jesse Barnesf67a5592011-01-05 10:31:48 -08003924static void ironlake_crtc_enable(struct drm_crtc *crtc)
3925{
3926 struct drm_device *dev = crtc->dev;
3927 struct drm_i915_private *dev_priv = dev->dev_private;
3928 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02003929 struct intel_encoder *encoder;
Jesse Barnesf67a5592011-01-05 10:31:48 -08003930 int pipe = intel_crtc->pipe;
Daniel Vetter29407aa2014-04-24 23:55:08 +02003931 enum plane plane = intel_crtc->plane;
Jesse Barnesf67a5592011-01-05 10:31:48 -08003932
Daniel Vetter08a48462012-07-02 11:43:47 +02003933 WARN_ON(!crtc->enabled);
3934
Jesse Barnesf67a5592011-01-05 10:31:48 -08003935 if (intel_crtc->active)
3936 return;
3937
Daniel Vetterb14b1052014-04-24 23:55:13 +02003938 if (intel_crtc->config.has_pch_encoder)
3939 intel_prepare_shared_dpll(intel_crtc);
3940
Daniel Vetter29407aa2014-04-24 23:55:08 +02003941 if (intel_crtc->config.has_dp_encoder)
3942 intel_dp_set_m_n(intel_crtc);
3943
3944 intel_set_pipe_timings(intel_crtc);
3945
3946 if (intel_crtc->config.has_pch_encoder) {
3947 intel_cpu_transcoder_set_m_n(intel_crtc,
3948 &intel_crtc->config.fdi_m_n);
3949 }
3950
3951 ironlake_set_pipeconf(crtc);
3952
3953 /* Set up the display plane register */
3954 I915_WRITE(DSPCNTR(plane), DISPPLANE_GAMMA_ENABLE);
3955 POSTING_READ(DSPCNTR(plane));
3956
3957 dev_priv->display.update_primary_plane(crtc, crtc->primary->fb,
3958 crtc->x, crtc->y);
3959
Jesse Barnesf67a5592011-01-05 10:31:48 -08003960 intel_crtc->active = true;
Paulo Zanoni86642812013-04-12 17:57:57 -03003961
3962 intel_set_cpu_fifo_underrun_reporting(dev, pipe, true);
3963 intel_set_pch_fifo_underrun_reporting(dev, pipe, true);
3964
Daniel Vetterf6736a12013-06-05 13:34:30 +02003965 for_each_encoder_on_crtc(dev, crtc, encoder)
Daniel Vetter952735e2013-06-05 13:34:27 +02003966 if (encoder->pre_enable)
3967 encoder->pre_enable(encoder);
Jesse Barnesf67a5592011-01-05 10:31:48 -08003968
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01003969 if (intel_crtc->config.has_pch_encoder) {
Daniel Vetterfff367c2012-10-27 15:50:28 +02003970 /* Note: FDI PLL enabling _must_ be done before we enable the
3971 * cpu pipes, hence this is separate from all the other fdi/pch
3972 * enabling. */
Daniel Vetter88cefb62012-08-12 19:27:14 +02003973 ironlake_fdi_pll_enable(intel_crtc);
Daniel Vetter46b6f812012-09-06 22:08:33 +02003974 } else {
3975 assert_fdi_tx_disabled(dev_priv, pipe);
3976 assert_fdi_rx_disabled(dev_priv, pipe);
3977 }
Jesse Barnesf67a5592011-01-05 10:31:48 -08003978
Jesse Barnesb074cec2013-04-25 12:55:02 -07003979 ironlake_pfit_enable(intel_crtc);
Jesse Barnesf67a5592011-01-05 10:31:48 -08003980
Jesse Barnes9c54c0d2011-06-15 23:32:33 +02003981 /*
3982 * On ILK+ LUT must be loaded before the pipe is running but with
3983 * clocks enabled
3984 */
3985 intel_crtc_load_lut(crtc);
3986
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03003987 intel_update_watermarks(crtc);
Paulo Zanonie1fdc472014-01-17 13:51:12 -02003988 intel_enable_pipe(intel_crtc);
Jesse Barnesf67a5592011-01-05 10:31:48 -08003989
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01003990 if (intel_crtc->config.has_pch_encoder)
Jesse Barnesf67a5592011-01-05 10:31:48 -08003991 ironlake_pch_enable(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003992
Daniel Vetterfa5c73b2012-07-01 23:24:36 +02003993 for_each_encoder_on_crtc(dev, crtc, encoder)
3994 encoder->enable(encoder);
Daniel Vetter61b77dd2012-07-02 00:16:19 +02003995
3996 if (HAS_PCH_CPT(dev))
Daniel Vettera1520312013-05-03 11:49:50 +02003997 cpt_verify_modeset(dev, intel_crtc->pipe);
Daniel Vetter6ce94102012-10-04 19:20:03 +02003998
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03003999 intel_crtc_enable_planes(crtc);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004000
Daniel Vetter87b6b102014-05-15 15:33:46 +02004001 drm_crtc_vblank_on(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004002}
4003
Paulo Zanoni42db64e2013-05-31 16:33:22 -03004004/* IPS only exists on ULT machines and is tied to pipe A. */
4005static bool hsw_crtc_supports_ips(struct intel_crtc *crtc)
4006{
Damien Lespiauf5adf942013-06-24 18:29:34 +01004007 return HAS_IPS(crtc->base.dev) && crtc->pipe == PIPE_A;
Paulo Zanoni42db64e2013-05-31 16:33:22 -03004008}
4009
Paulo Zanonie4916942013-09-20 16:21:19 -03004010/*
4011 * This implements the workaround described in the "notes" section of the mode
4012 * set sequence documentation. When going from no pipes or single pipe to
4013 * multiple pipes, and planes are enabled after the pipe, we need to wait at
4014 * least 2 vblanks on the first pipe before enabling planes on the second pipe.
4015 */
4016static void haswell_mode_set_planes_workaround(struct intel_crtc *crtc)
4017{
4018 struct drm_device *dev = crtc->base.dev;
4019 struct intel_crtc *crtc_it, *other_active_crtc = NULL;
4020
4021 /* We want to get the other_active_crtc only if there's only 1 other
4022 * active crtc. */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01004023 for_each_intel_crtc(dev, crtc_it) {
Paulo Zanonie4916942013-09-20 16:21:19 -03004024 if (!crtc_it->active || crtc_it == crtc)
4025 continue;
4026
4027 if (other_active_crtc)
4028 return;
4029
4030 other_active_crtc = crtc_it;
4031 }
4032 if (!other_active_crtc)
4033 return;
4034
4035 intel_wait_for_vblank(dev, other_active_crtc->pipe);
4036 intel_wait_for_vblank(dev, other_active_crtc->pipe);
4037}
4038
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004039static void haswell_crtc_enable(struct drm_crtc *crtc)
4040{
4041 struct drm_device *dev = crtc->dev;
4042 struct drm_i915_private *dev_priv = dev->dev_private;
4043 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4044 struct intel_encoder *encoder;
4045 int pipe = intel_crtc->pipe;
Daniel Vetter229fca92014-04-24 23:55:09 +02004046 enum plane plane = intel_crtc->plane;
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004047
4048 WARN_ON(!crtc->enabled);
4049
4050 if (intel_crtc->active)
4051 return;
4052
Daniel Vetter229fca92014-04-24 23:55:09 +02004053 if (intel_crtc->config.has_dp_encoder)
4054 intel_dp_set_m_n(intel_crtc);
4055
4056 intel_set_pipe_timings(intel_crtc);
4057
4058 if (intel_crtc->config.has_pch_encoder) {
4059 intel_cpu_transcoder_set_m_n(intel_crtc,
4060 &intel_crtc->config.fdi_m_n);
4061 }
4062
4063 haswell_set_pipeconf(crtc);
4064
4065 intel_set_pipe_csc(crtc);
4066
4067 /* Set up the display plane register */
4068 I915_WRITE(DSPCNTR(plane), DISPPLANE_GAMMA_ENABLE | DISPPLANE_PIPE_CSC_ENABLE);
4069 POSTING_READ(DSPCNTR(plane));
4070
4071 dev_priv->display.update_primary_plane(crtc, crtc->primary->fb,
4072 crtc->x, crtc->y);
4073
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004074 intel_crtc->active = true;
Paulo Zanoni86642812013-04-12 17:57:57 -03004075
4076 intel_set_cpu_fifo_underrun_reporting(dev, pipe, true);
4077 if (intel_crtc->config.has_pch_encoder)
4078 intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_A, true);
4079
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01004080 if (intel_crtc->config.has_pch_encoder)
Paulo Zanoni04945642012-11-01 21:00:59 -02004081 dev_priv->display.fdi_link_train(crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004082
4083 for_each_encoder_on_crtc(dev, crtc, encoder)
4084 if (encoder->pre_enable)
4085 encoder->pre_enable(encoder);
4086
Paulo Zanoni1f544382012-10-24 11:32:00 -02004087 intel_ddi_enable_pipe_clock(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004088
Jesse Barnesb074cec2013-04-25 12:55:02 -07004089 ironlake_pfit_enable(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004090
4091 /*
4092 * On ILK+ LUT must be loaded before the pipe is running but with
4093 * clocks enabled
4094 */
4095 intel_crtc_load_lut(crtc);
4096
Paulo Zanoni1f544382012-10-24 11:32:00 -02004097 intel_ddi_set_pipe_settings(crtc);
Damien Lespiau8228c252013-03-07 15:30:27 +00004098 intel_ddi_enable_transcoder_func(crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004099
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03004100 intel_update_watermarks(crtc);
Paulo Zanonie1fdc472014-01-17 13:51:12 -02004101 intel_enable_pipe(intel_crtc);
Paulo Zanoni42db64e2013-05-31 16:33:22 -03004102
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01004103 if (intel_crtc->config.has_pch_encoder)
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02004104 lpt_pch_enable(crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004105
Jani Nikula8807e552013-08-30 19:40:32 +03004106 for_each_encoder_on_crtc(dev, crtc, encoder) {
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004107 encoder->enable(encoder);
Jani Nikula8807e552013-08-30 19:40:32 +03004108 intel_opregion_notify_encoder(encoder, true);
4109 }
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004110
Paulo Zanonie4916942013-09-20 16:21:19 -03004111 /* If we change the relative order between pipe/planes enabling, we need
4112 * to change the workaround. */
4113 haswell_mode_set_planes_workaround(intel_crtc);
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004114 intel_crtc_enable_planes(crtc);
Ville Syrjäläf2752282014-02-19 21:29:49 +02004115
Daniel Vetter87b6b102014-05-15 15:33:46 +02004116 drm_crtc_vblank_on(crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004117}
4118
Daniel Vetter3f8dce32013-05-08 10:36:30 +02004119static void ironlake_pfit_disable(struct intel_crtc *crtc)
4120{
4121 struct drm_device *dev = crtc->base.dev;
4122 struct drm_i915_private *dev_priv = dev->dev_private;
4123 int pipe = crtc->pipe;
4124
4125 /* To avoid upsetting the power well on haswell only disable the pfit if
4126 * it's in use. The hw state code will make sure we get this right. */
Chris Wilsonfd4daa92013-08-27 17:04:17 +01004127 if (crtc->config.pch_pfit.enabled) {
Daniel Vetter3f8dce32013-05-08 10:36:30 +02004128 I915_WRITE(PF_CTL(pipe), 0);
4129 I915_WRITE(PF_WIN_POS(pipe), 0);
4130 I915_WRITE(PF_WIN_SZ(pipe), 0);
4131 }
4132}
4133
Jesse Barnes6be4a602010-09-10 10:26:01 -07004134static void ironlake_crtc_disable(struct drm_crtc *crtc)
4135{
4136 struct drm_device *dev = crtc->dev;
4137 struct drm_i915_private *dev_priv = dev->dev_private;
4138 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02004139 struct intel_encoder *encoder;
Jesse Barnes6be4a602010-09-10 10:26:01 -07004140 int pipe = intel_crtc->pipe;
Chris Wilson5eddb702010-09-11 13:48:45 +01004141 u32 reg, temp;
Jesse Barnes6be4a602010-09-10 10:26:01 -07004142
Chris Wilsonf7abfe82010-09-13 14:19:16 +01004143 if (!intel_crtc->active)
4144 return;
4145
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004146 intel_crtc_disable_planes(crtc);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004147
Daniel Vetterea9d7582012-07-10 10:42:52 +02004148 for_each_encoder_on_crtc(dev, crtc, encoder)
4149 encoder->disable(encoder);
4150
Daniel Vetterd925c592013-06-05 13:34:04 +02004151 if (intel_crtc->config.has_pch_encoder)
4152 intel_set_pch_fifo_underrun_reporting(dev, pipe, false);
4153
Jesse Barnesb24e7172011-01-04 15:09:30 -08004154 intel_disable_pipe(dev_priv, pipe);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004155
Daniel Vetter3f8dce32013-05-08 10:36:30 +02004156 ironlake_pfit_disable(intel_crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004157
Daniel Vetterbf49ec82012-09-06 22:15:40 +02004158 for_each_encoder_on_crtc(dev, crtc, encoder)
4159 if (encoder->post_disable)
4160 encoder->post_disable(encoder);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004161
Daniel Vetterd925c592013-06-05 13:34:04 +02004162 if (intel_crtc->config.has_pch_encoder) {
4163 ironlake_fdi_disable(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004164
Daniel Vetterd925c592013-06-05 13:34:04 +02004165 ironlake_disable_pch_transcoder(dev_priv, pipe);
4166 intel_set_pch_fifo_underrun_reporting(dev, pipe, true);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004167
Daniel Vetterd925c592013-06-05 13:34:04 +02004168 if (HAS_PCH_CPT(dev)) {
4169 /* disable TRANS_DP_CTL */
4170 reg = TRANS_DP_CTL(pipe);
4171 temp = I915_READ(reg);
4172 temp &= ~(TRANS_DP_OUTPUT_ENABLE |
4173 TRANS_DP_PORT_SEL_MASK);
4174 temp |= TRANS_DP_PORT_SEL_NONE;
4175 I915_WRITE(reg, temp);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004176
Daniel Vetterd925c592013-06-05 13:34:04 +02004177 /* disable DPLL_SEL */
4178 temp = I915_READ(PCH_DPLL_SEL);
Daniel Vetter11887392013-06-05 13:34:09 +02004179 temp &= ~(TRANS_DPLL_ENABLE(pipe) | TRANS_DPLLB_SEL(pipe));
Daniel Vetterd925c592013-06-05 13:34:04 +02004180 I915_WRITE(PCH_DPLL_SEL, temp);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08004181 }
Daniel Vetterd925c592013-06-05 13:34:04 +02004182
4183 /* disable PCH DPLL */
Daniel Vettere72f9fb2013-06-05 13:34:06 +02004184 intel_disable_shared_dpll(intel_crtc);
Daniel Vetterd925c592013-06-05 13:34:04 +02004185
4186 ironlake_fdi_pll_disable(intel_crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004187 }
4188
Chris Wilsonf7abfe82010-09-13 14:19:16 +01004189 intel_crtc->active = false;
Ville Syrjälä46ba6142013-09-10 11:40:40 +03004190 intel_update_watermarks(crtc);
Ben Widawskyd1ebd8162011-04-25 20:11:50 +01004191
4192 mutex_lock(&dev->struct_mutex);
Chris Wilson6b383a72010-09-13 13:54:26 +01004193 intel_update_fbc(dev);
Daniel Vetter71b1c372014-04-24 23:55:03 +02004194 intel_edp_psr_update(dev);
Ben Widawskyd1ebd8162011-04-25 20:11:50 +01004195 mutex_unlock(&dev->struct_mutex);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004196}
4197
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004198static void haswell_crtc_disable(struct drm_crtc *crtc)
4199{
4200 struct drm_device *dev = crtc->dev;
4201 struct drm_i915_private *dev_priv = dev->dev_private;
4202 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4203 struct intel_encoder *encoder;
4204 int pipe = intel_crtc->pipe;
Daniel Vetter3b117c82013-04-17 20:15:07 +02004205 enum transcoder cpu_transcoder = intel_crtc->config.cpu_transcoder;
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004206
4207 if (!intel_crtc->active)
4208 return;
4209
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004210 intel_crtc_disable_planes(crtc);
Ville Syrjälädda9a662013-09-19 17:00:37 -03004211
Jani Nikula8807e552013-08-30 19:40:32 +03004212 for_each_encoder_on_crtc(dev, crtc, encoder) {
4213 intel_opregion_notify_encoder(encoder, false);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004214 encoder->disable(encoder);
Jani Nikula8807e552013-08-30 19:40:32 +03004215 }
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004216
Paulo Zanoni86642812013-04-12 17:57:57 -03004217 if (intel_crtc->config.has_pch_encoder)
4218 intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_A, false);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004219 intel_disable_pipe(dev_priv, pipe);
4220
Paulo Zanoniad80a812012-10-24 16:06:19 -02004221 intel_ddi_disable_transcoder_func(dev_priv, cpu_transcoder);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004222
Daniel Vetter3f8dce32013-05-08 10:36:30 +02004223 ironlake_pfit_disable(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004224
Paulo Zanoni1f544382012-10-24 11:32:00 -02004225 intel_ddi_disable_pipe_clock(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004226
4227 for_each_encoder_on_crtc(dev, crtc, encoder)
4228 if (encoder->post_disable)
4229 encoder->post_disable(encoder);
4230
Daniel Vetter88adfff2013-03-28 10:42:01 +01004231 if (intel_crtc->config.has_pch_encoder) {
Paulo Zanoniab4d9662012-10-31 18:12:55 -02004232 lpt_disable_pch_transcoder(dev_priv);
Paulo Zanoni86642812013-04-12 17:57:57 -03004233 intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_A, true);
Paulo Zanoni1ad960f2012-11-01 21:05:05 -02004234 intel_ddi_fdi_disable(crtc);
Paulo Zanoni83616632012-10-23 18:29:54 -02004235 }
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004236
4237 intel_crtc->active = false;
Ville Syrjälä46ba6142013-09-10 11:40:40 +03004238 intel_update_watermarks(crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004239
4240 mutex_lock(&dev->struct_mutex);
4241 intel_update_fbc(dev);
Daniel Vetter71b1c372014-04-24 23:55:03 +02004242 intel_edp_psr_update(dev);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004243 mutex_unlock(&dev->struct_mutex);
4244}
4245
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004246static void ironlake_crtc_off(struct drm_crtc *crtc)
4247{
4248 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vettere72f9fb2013-06-05 13:34:06 +02004249 intel_put_shared_dpll(intel_crtc);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004250}
4251
Paulo Zanoni6441ab52012-10-05 12:05:58 -03004252static void haswell_crtc_off(struct drm_crtc *crtc)
4253{
4254 intel_ddi_put_crtc_pll(crtc);
4255}
4256
Jesse Barnes2dd24552013-04-25 12:55:01 -07004257static void i9xx_pfit_enable(struct intel_crtc *crtc)
4258{
4259 struct drm_device *dev = crtc->base.dev;
4260 struct drm_i915_private *dev_priv = dev->dev_private;
4261 struct intel_crtc_config *pipe_config = &crtc->config;
4262
Daniel Vetter328d8e82013-05-08 10:36:31 +02004263 if (!crtc->config.gmch_pfit.control)
Jesse Barnes2dd24552013-04-25 12:55:01 -07004264 return;
4265
Daniel Vetterc0b03412013-05-28 12:05:54 +02004266 /*
4267 * The panel fitter should only be adjusted whilst the pipe is disabled,
4268 * according to register description and PRM.
4269 */
Jesse Barnes2dd24552013-04-25 12:55:01 -07004270 WARN_ON(I915_READ(PFIT_CONTROL) & PFIT_ENABLE);
4271 assert_pipe_disabled(dev_priv, crtc->pipe);
4272
Jesse Barnesb074cec2013-04-25 12:55:02 -07004273 I915_WRITE(PFIT_PGM_RATIOS, pipe_config->gmch_pfit.pgm_ratios);
4274 I915_WRITE(PFIT_CONTROL, pipe_config->gmch_pfit.control);
Daniel Vetter5a80c452013-04-25 22:52:18 +02004275
4276 /* Border color in case we don't scale up to the full screen. Black by
4277 * default, change to something else for debugging. */
4278 I915_WRITE(BCLRPAT(crtc->pipe), 0);
Jesse Barnes2dd24552013-04-25 12:55:01 -07004279}
4280
Imre Deak77d22dc2014-03-05 16:20:52 +02004281#define for_each_power_domain(domain, mask) \
4282 for ((domain) = 0; (domain) < POWER_DOMAIN_NUM; (domain)++) \
4283 if ((1 << (domain)) & (mask))
4284
Imre Deak319be8a2014-03-04 19:22:57 +02004285enum intel_display_power_domain
4286intel_display_port_power_domain(struct intel_encoder *intel_encoder)
Imre Deak77d22dc2014-03-05 16:20:52 +02004287{
Imre Deak319be8a2014-03-04 19:22:57 +02004288 struct drm_device *dev = intel_encoder->base.dev;
4289 struct intel_digital_port *intel_dig_port;
4290
4291 switch (intel_encoder->type) {
4292 case INTEL_OUTPUT_UNKNOWN:
4293 /* Only DDI platforms should ever use this output type */
4294 WARN_ON_ONCE(!HAS_DDI(dev));
4295 case INTEL_OUTPUT_DISPLAYPORT:
4296 case INTEL_OUTPUT_HDMI:
4297 case INTEL_OUTPUT_EDP:
4298 intel_dig_port = enc_to_dig_port(&intel_encoder->base);
4299 switch (intel_dig_port->port) {
4300 case PORT_A:
4301 return POWER_DOMAIN_PORT_DDI_A_4_LANES;
4302 case PORT_B:
4303 return POWER_DOMAIN_PORT_DDI_B_4_LANES;
4304 case PORT_C:
4305 return POWER_DOMAIN_PORT_DDI_C_4_LANES;
4306 case PORT_D:
4307 return POWER_DOMAIN_PORT_DDI_D_4_LANES;
4308 default:
4309 WARN_ON_ONCE(1);
4310 return POWER_DOMAIN_PORT_OTHER;
4311 }
4312 case INTEL_OUTPUT_ANALOG:
4313 return POWER_DOMAIN_PORT_CRT;
4314 case INTEL_OUTPUT_DSI:
4315 return POWER_DOMAIN_PORT_DSI;
4316 default:
4317 return POWER_DOMAIN_PORT_OTHER;
4318 }
4319}
4320
4321static unsigned long get_crtc_power_domains(struct drm_crtc *crtc)
4322{
4323 struct drm_device *dev = crtc->dev;
4324 struct intel_encoder *intel_encoder;
4325 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4326 enum pipe pipe = intel_crtc->pipe;
4327 bool pfit_enabled = intel_crtc->config.pch_pfit.enabled;
Imre Deak77d22dc2014-03-05 16:20:52 +02004328 unsigned long mask;
4329 enum transcoder transcoder;
4330
4331 transcoder = intel_pipe_to_cpu_transcoder(dev->dev_private, pipe);
4332
4333 mask = BIT(POWER_DOMAIN_PIPE(pipe));
4334 mask |= BIT(POWER_DOMAIN_TRANSCODER(transcoder));
4335 if (pfit_enabled)
4336 mask |= BIT(POWER_DOMAIN_PIPE_PANEL_FITTER(pipe));
4337
Imre Deak319be8a2014-03-04 19:22:57 +02004338 for_each_encoder_on_crtc(dev, crtc, intel_encoder)
4339 mask |= BIT(intel_display_port_power_domain(intel_encoder));
4340
Imre Deak77d22dc2014-03-05 16:20:52 +02004341 return mask;
4342}
4343
4344void intel_display_set_init_power(struct drm_i915_private *dev_priv,
4345 bool enable)
4346{
4347 if (dev_priv->power_domains.init_power_on == enable)
4348 return;
4349
4350 if (enable)
4351 intel_display_power_get(dev_priv, POWER_DOMAIN_INIT);
4352 else
4353 intel_display_power_put(dev_priv, POWER_DOMAIN_INIT);
4354
4355 dev_priv->power_domains.init_power_on = enable;
4356}
4357
4358static void modeset_update_crtc_power_domains(struct drm_device *dev)
4359{
4360 struct drm_i915_private *dev_priv = dev->dev_private;
4361 unsigned long pipe_domains[I915_MAX_PIPES] = { 0, };
4362 struct intel_crtc *crtc;
4363
4364 /*
4365 * First get all needed power domains, then put all unneeded, to avoid
4366 * any unnecessary toggling of the power wells.
4367 */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01004368 for_each_intel_crtc(dev, crtc) {
Imre Deak77d22dc2014-03-05 16:20:52 +02004369 enum intel_display_power_domain domain;
4370
4371 if (!crtc->base.enabled)
4372 continue;
4373
Imre Deak319be8a2014-03-04 19:22:57 +02004374 pipe_domains[crtc->pipe] = get_crtc_power_domains(&crtc->base);
Imre Deak77d22dc2014-03-05 16:20:52 +02004375
4376 for_each_power_domain(domain, pipe_domains[crtc->pipe])
4377 intel_display_power_get(dev_priv, domain);
4378 }
4379
Damien Lespiaud3fcc802014-05-13 23:32:22 +01004380 for_each_intel_crtc(dev, crtc) {
Imre Deak77d22dc2014-03-05 16:20:52 +02004381 enum intel_display_power_domain domain;
4382
4383 for_each_power_domain(domain, crtc->enabled_power_domains)
4384 intel_display_power_put(dev_priv, domain);
4385
4386 crtc->enabled_power_domains = pipe_domains[crtc->pipe];
4387 }
4388
4389 intel_display_set_init_power(dev_priv, false);
4390}
4391
Jesse Barnes586f49d2013-11-04 16:06:59 -08004392int valleyview_get_vco(struct drm_i915_private *dev_priv)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004393{
Jesse Barnes586f49d2013-11-04 16:06:59 -08004394 int hpll_freq, vco_freq[] = { 800, 1600, 2000, 2400 };
Jesse Barnes30a970c2013-11-04 13:48:12 -08004395
Jesse Barnes586f49d2013-11-04 16:06:59 -08004396 /* Obtain SKU information */
4397 mutex_lock(&dev_priv->dpio_lock);
4398 hpll_freq = vlv_cck_read(dev_priv, CCK_FUSE_REG) &
4399 CCK_FUSE_HPLL_FREQ_MASK;
4400 mutex_unlock(&dev_priv->dpio_lock);
Jesse Barnes30a970c2013-11-04 13:48:12 -08004401
Jesse Barnes586f49d2013-11-04 16:06:59 -08004402 return vco_freq[hpll_freq];
Jesse Barnes30a970c2013-11-04 13:48:12 -08004403}
4404
4405/* Adjust CDclk dividers to allow high res or save power if possible */
4406static void valleyview_set_cdclk(struct drm_device *dev, int cdclk)
4407{
4408 struct drm_i915_private *dev_priv = dev->dev_private;
4409 u32 val, cmd;
4410
Imre Deakd60c4472014-03-27 17:45:10 +02004411 WARN_ON(valleyview_cur_cdclk(dev_priv) != dev_priv->vlv_cdclk_freq);
4412 dev_priv->vlv_cdclk_freq = cdclk;
4413
Jesse Barnes30a970c2013-11-04 13:48:12 -08004414 if (cdclk >= 320) /* jump to highest voltage for 400MHz too */
4415 cmd = 2;
4416 else if (cdclk == 266)
4417 cmd = 1;
4418 else
4419 cmd = 0;
4420
4421 mutex_lock(&dev_priv->rps.hw_lock);
4422 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
4423 val &= ~DSPFREQGUAR_MASK;
4424 val |= (cmd << DSPFREQGUAR_SHIFT);
4425 vlv_punit_write(dev_priv, PUNIT_REG_DSPFREQ, val);
4426 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ) &
4427 DSPFREQSTAT_MASK) == (cmd << DSPFREQSTAT_SHIFT),
4428 50)) {
4429 DRM_ERROR("timed out waiting for CDclk change\n");
4430 }
4431 mutex_unlock(&dev_priv->rps.hw_lock);
4432
4433 if (cdclk == 400) {
4434 u32 divider, vco;
4435
4436 vco = valleyview_get_vco(dev_priv);
4437 divider = ((vco << 1) / cdclk) - 1;
4438
4439 mutex_lock(&dev_priv->dpio_lock);
4440 /* adjust cdclk divider */
4441 val = vlv_cck_read(dev_priv, CCK_DISPLAY_CLOCK_CONTROL);
4442 val &= ~0xf;
4443 val |= divider;
4444 vlv_cck_write(dev_priv, CCK_DISPLAY_CLOCK_CONTROL, val);
4445 mutex_unlock(&dev_priv->dpio_lock);
4446 }
4447
4448 mutex_lock(&dev_priv->dpio_lock);
4449 /* adjust self-refresh exit latency value */
4450 val = vlv_bunit_read(dev_priv, BUNIT_REG_BISOC);
4451 val &= ~0x7f;
4452
4453 /*
4454 * For high bandwidth configs, we set a higher latency in the bunit
4455 * so that the core display fetch happens in time to avoid underruns.
4456 */
4457 if (cdclk == 400)
4458 val |= 4500 / 250; /* 4.5 usec */
4459 else
4460 val |= 3000 / 250; /* 3.0 usec */
4461 vlv_bunit_write(dev_priv, BUNIT_REG_BISOC, val);
4462 mutex_unlock(&dev_priv->dpio_lock);
4463
4464 /* Since we changed the CDclk, we need to update the GMBUSFREQ too */
4465 intel_i2c_reset(dev);
4466}
4467
Imre Deakd60c4472014-03-27 17:45:10 +02004468int valleyview_cur_cdclk(struct drm_i915_private *dev_priv)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004469{
4470 int cur_cdclk, vco;
4471 int divider;
4472
4473 vco = valleyview_get_vco(dev_priv);
4474
4475 mutex_lock(&dev_priv->dpio_lock);
4476 divider = vlv_cck_read(dev_priv, CCK_DISPLAY_CLOCK_CONTROL);
4477 mutex_unlock(&dev_priv->dpio_lock);
4478
4479 divider &= 0xf;
4480
4481 cur_cdclk = (vco << 1) / (divider + 1);
4482
4483 return cur_cdclk;
4484}
4485
4486static int valleyview_calc_cdclk(struct drm_i915_private *dev_priv,
4487 int max_pixclk)
4488{
Jesse Barnes30a970c2013-11-04 13:48:12 -08004489 /*
4490 * Really only a few cases to deal with, as only 4 CDclks are supported:
4491 * 200MHz
4492 * 267MHz
4493 * 320MHz
4494 * 400MHz
4495 * So we check to see whether we're above 90% of the lower bin and
4496 * adjust if needed.
4497 */
4498 if (max_pixclk > 288000) {
4499 return 400;
4500 } else if (max_pixclk > 240000) {
4501 return 320;
4502 } else
4503 return 266;
4504 /* Looks like the 200MHz CDclk freq doesn't work on some configs */
4505}
4506
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +02004507/* compute the max pixel clock for new configuration */
4508static int intel_mode_max_pixclk(struct drm_i915_private *dev_priv)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004509{
4510 struct drm_device *dev = dev_priv->dev;
4511 struct intel_crtc *intel_crtc;
4512 int max_pixclk = 0;
4513
Damien Lespiaud3fcc802014-05-13 23:32:22 +01004514 for_each_intel_crtc(dev, intel_crtc) {
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +02004515 if (intel_crtc->new_enabled)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004516 max_pixclk = max(max_pixclk,
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +02004517 intel_crtc->new_config->adjusted_mode.crtc_clock);
Jesse Barnes30a970c2013-11-04 13:48:12 -08004518 }
4519
4520 return max_pixclk;
4521}
4522
4523static void valleyview_modeset_global_pipes(struct drm_device *dev,
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +02004524 unsigned *prepare_pipes)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004525{
4526 struct drm_i915_private *dev_priv = dev->dev_private;
4527 struct intel_crtc *intel_crtc;
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +02004528 int max_pixclk = intel_mode_max_pixclk(dev_priv);
Jesse Barnes30a970c2013-11-04 13:48:12 -08004529
Imre Deakd60c4472014-03-27 17:45:10 +02004530 if (valleyview_calc_cdclk(dev_priv, max_pixclk) ==
4531 dev_priv->vlv_cdclk_freq)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004532 return;
4533
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +02004534 /* disable/enable all currently active pipes while we change cdclk */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01004535 for_each_intel_crtc(dev, intel_crtc)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004536 if (intel_crtc->base.enabled)
4537 *prepare_pipes |= (1 << intel_crtc->pipe);
4538}
4539
4540static void valleyview_modeset_global_resources(struct drm_device *dev)
4541{
4542 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +02004543 int max_pixclk = intel_mode_max_pixclk(dev_priv);
Jesse Barnes30a970c2013-11-04 13:48:12 -08004544 int req_cdclk = valleyview_calc_cdclk(dev_priv, max_pixclk);
4545
Imre Deakd60c4472014-03-27 17:45:10 +02004546 if (req_cdclk != dev_priv->vlv_cdclk_freq)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004547 valleyview_set_cdclk(dev, req_cdclk);
Imre Deak77961eb2014-03-05 16:20:56 +02004548 modeset_update_crtc_power_domains(dev);
Jesse Barnes30a970c2013-11-04 13:48:12 -08004549}
4550
Jesse Barnes89b667f2013-04-18 14:51:36 -07004551static void valleyview_crtc_enable(struct drm_crtc *crtc)
4552{
4553 struct drm_device *dev = crtc->dev;
Daniel Vetter5b18e572014-04-24 23:55:06 +02004554 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes89b667f2013-04-18 14:51:36 -07004555 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4556 struct intel_encoder *encoder;
4557 int pipe = intel_crtc->pipe;
Daniel Vetter5b18e572014-04-24 23:55:06 +02004558 int plane = intel_crtc->plane;
Jani Nikula23538ef2013-08-27 15:12:22 +03004559 bool is_dsi;
Daniel Vetter5b18e572014-04-24 23:55:06 +02004560 u32 dspcntr;
Jesse Barnes89b667f2013-04-18 14:51:36 -07004561
4562 WARN_ON(!crtc->enabled);
4563
4564 if (intel_crtc->active)
4565 return;
4566
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02004567 vlv_prepare_pll(intel_crtc);
4568
Daniel Vetter5b18e572014-04-24 23:55:06 +02004569 /* Set up the display plane register */
4570 dspcntr = DISPPLANE_GAMMA_ENABLE;
4571
4572 if (intel_crtc->config.has_dp_encoder)
4573 intel_dp_set_m_n(intel_crtc);
4574
4575 intel_set_pipe_timings(intel_crtc);
4576
4577 /* pipesrc and dspsize control the size that is scaled from,
4578 * which should always be the user's requested size.
4579 */
4580 I915_WRITE(DSPSIZE(plane),
4581 ((intel_crtc->config.pipe_src_h - 1) << 16) |
4582 (intel_crtc->config.pipe_src_w - 1));
4583 I915_WRITE(DSPPOS(plane), 0);
4584
4585 i9xx_set_pipeconf(intel_crtc);
4586
4587 I915_WRITE(DSPCNTR(plane), dspcntr);
4588 POSTING_READ(DSPCNTR(plane));
4589
4590 dev_priv->display.update_primary_plane(crtc, crtc->primary->fb,
4591 crtc->x, crtc->y);
4592
Jesse Barnes89b667f2013-04-18 14:51:36 -07004593 intel_crtc->active = true;
Jesse Barnes89b667f2013-04-18 14:51:36 -07004594
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03004595 intel_set_cpu_fifo_underrun_reporting(dev, pipe, true);
4596
Jesse Barnes89b667f2013-04-18 14:51:36 -07004597 for_each_encoder_on_crtc(dev, crtc, encoder)
4598 if (encoder->pre_pll_enable)
4599 encoder->pre_pll_enable(encoder);
4600
Jani Nikula23538ef2013-08-27 15:12:22 +03004601 is_dsi = intel_pipe_has_type(crtc, INTEL_OUTPUT_DSI);
4602
Chon Ming Lee9d556c92014-05-02 14:27:47 +03004603 if (!is_dsi) {
4604 if (IS_CHERRYVIEW(dev))
4605 chv_enable_pll(intel_crtc);
4606 else
4607 vlv_enable_pll(intel_crtc);
4608 }
Jesse Barnes89b667f2013-04-18 14:51:36 -07004609
4610 for_each_encoder_on_crtc(dev, crtc, encoder)
4611 if (encoder->pre_enable)
4612 encoder->pre_enable(encoder);
4613
Jesse Barnes2dd24552013-04-25 12:55:01 -07004614 i9xx_pfit_enable(intel_crtc);
4615
Ville Syrjälä63cbb072013-06-04 13:48:59 +03004616 intel_crtc_load_lut(crtc);
4617
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03004618 intel_update_watermarks(crtc);
Paulo Zanonie1fdc472014-01-17 13:51:12 -02004619 intel_enable_pipe(intel_crtc);
Daniel Vetterbe6a6f82014-04-15 18:41:22 +02004620
Jani Nikula50049452013-07-30 12:20:32 +03004621 for_each_encoder_on_crtc(dev, crtc, encoder)
4622 encoder->enable(encoder);
Ville Syrjälä9ab04602014-05-08 19:23:14 +03004623
4624 intel_crtc_enable_planes(crtc);
Daniel Vetterd40d9182014-05-21 11:45:40 +02004625
Daniel Vetter87b6b102014-05-15 15:33:46 +02004626 drm_crtc_vblank_on(crtc);
Ville Syrjälä56b80e12014-05-16 19:40:22 +03004627
4628 /* Underruns don't raise interrupts, so check manually. */
4629 i9xx_check_fifo_underruns(dev);
Jesse Barnes89b667f2013-04-18 14:51:36 -07004630}
4631
Daniel Vetterf13c2ef2014-04-24 23:55:10 +02004632static void i9xx_set_pll_dividers(struct intel_crtc *crtc)
4633{
4634 struct drm_device *dev = crtc->base.dev;
4635 struct drm_i915_private *dev_priv = dev->dev_private;
4636
4637 I915_WRITE(FP0(crtc->pipe), crtc->config.dpll_hw_state.fp0);
4638 I915_WRITE(FP1(crtc->pipe), crtc->config.dpll_hw_state.fp1);
4639}
4640
Jesse Barnes0b8765c62010-09-10 10:31:34 -07004641static void i9xx_crtc_enable(struct drm_crtc *crtc)
Zhenyu Wang2c072452009-06-05 15:38:42 +08004642{
4643 struct drm_device *dev = crtc->dev;
Daniel Vetter5b18e572014-04-24 23:55:06 +02004644 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -08004645 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02004646 struct intel_encoder *encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08004647 int pipe = intel_crtc->pipe;
Daniel Vetter5b18e572014-04-24 23:55:06 +02004648 int plane = intel_crtc->plane;
4649 u32 dspcntr;
Jesse Barnes79e53942008-11-07 14:24:08 -08004650
Daniel Vetter08a48462012-07-02 11:43:47 +02004651 WARN_ON(!crtc->enabled);
4652
Chris Wilsonf7abfe82010-09-13 14:19:16 +01004653 if (intel_crtc->active)
4654 return;
4655
Daniel Vetterf13c2ef2014-04-24 23:55:10 +02004656 i9xx_set_pll_dividers(intel_crtc);
4657
Daniel Vetter5b18e572014-04-24 23:55:06 +02004658 /* Set up the display plane register */
4659 dspcntr = DISPPLANE_GAMMA_ENABLE;
4660
4661 if (pipe == 0)
4662 dspcntr &= ~DISPPLANE_SEL_PIPE_MASK;
4663 else
4664 dspcntr |= DISPPLANE_SEL_PIPE_B;
4665
4666 if (intel_crtc->config.has_dp_encoder)
4667 intel_dp_set_m_n(intel_crtc);
4668
4669 intel_set_pipe_timings(intel_crtc);
4670
4671 /* pipesrc and dspsize control the size that is scaled from,
4672 * which should always be the user's requested size.
4673 */
4674 I915_WRITE(DSPSIZE(plane),
4675 ((intel_crtc->config.pipe_src_h - 1) << 16) |
4676 (intel_crtc->config.pipe_src_w - 1));
4677 I915_WRITE(DSPPOS(plane), 0);
4678
4679 i9xx_set_pipeconf(intel_crtc);
4680
4681 I915_WRITE(DSPCNTR(plane), dspcntr);
4682 POSTING_READ(DSPCNTR(plane));
4683
4684 dev_priv->display.update_primary_plane(crtc, crtc->primary->fb,
4685 crtc->x, crtc->y);
4686
Chris Wilsonf7abfe82010-09-13 14:19:16 +01004687 intel_crtc->active = true;
Chris Wilson6b383a72010-09-13 13:54:26 +01004688
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03004689 if (!IS_GEN2(dev))
4690 intel_set_cpu_fifo_underrun_reporting(dev, pipe, true);
4691
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02004692 for_each_encoder_on_crtc(dev, crtc, encoder)
Mika Kuoppala9d6d9f12013-02-08 16:35:38 +02004693 if (encoder->pre_enable)
4694 encoder->pre_enable(encoder);
4695
Daniel Vetterf6736a12013-06-05 13:34:30 +02004696 i9xx_enable_pll(intel_crtc);
4697
Jesse Barnes2dd24552013-04-25 12:55:01 -07004698 i9xx_pfit_enable(intel_crtc);
4699
Ville Syrjälä63cbb072013-06-04 13:48:59 +03004700 intel_crtc_load_lut(crtc);
4701
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03004702 intel_update_watermarks(crtc);
Paulo Zanonie1fdc472014-01-17 13:51:12 -02004703 intel_enable_pipe(intel_crtc);
Daniel Vetterbe6a6f82014-04-15 18:41:22 +02004704
Daniel Vetterfa5c73b2012-07-01 23:24:36 +02004705 for_each_encoder_on_crtc(dev, crtc, encoder)
4706 encoder->enable(encoder);
Ville Syrjälä9ab04602014-05-08 19:23:14 +03004707
4708 intel_crtc_enable_planes(crtc);
Daniel Vetterd40d9182014-05-21 11:45:40 +02004709
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03004710 /*
4711 * Gen2 reports pipe underruns whenever all planes are disabled.
4712 * So don't enable underrun reporting before at least some planes
4713 * are enabled.
4714 * FIXME: Need to fix the logic to work when we turn off all planes
4715 * but leave the pipe running.
4716 */
4717 if (IS_GEN2(dev))
4718 intel_set_cpu_fifo_underrun_reporting(dev, pipe, true);
4719
Daniel Vetter87b6b102014-05-15 15:33:46 +02004720 drm_crtc_vblank_on(crtc);
Ville Syrjälä56b80e12014-05-16 19:40:22 +03004721
4722 /* Underruns don't raise interrupts, so check manually. */
4723 i9xx_check_fifo_underruns(dev);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07004724}
4725
Daniel Vetter87476d62013-04-11 16:29:06 +02004726static void i9xx_pfit_disable(struct intel_crtc *crtc)
4727{
4728 struct drm_device *dev = crtc->base.dev;
4729 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter328d8e82013-05-08 10:36:31 +02004730
4731 if (!crtc->config.gmch_pfit.control)
4732 return;
Daniel Vetter87476d62013-04-11 16:29:06 +02004733
4734 assert_pipe_disabled(dev_priv, crtc->pipe);
4735
Daniel Vetter328d8e82013-05-08 10:36:31 +02004736 DRM_DEBUG_DRIVER("disabling pfit, current: 0x%08x\n",
4737 I915_READ(PFIT_CONTROL));
4738 I915_WRITE(PFIT_CONTROL, 0);
Daniel Vetter87476d62013-04-11 16:29:06 +02004739}
4740
Jesse Barnes0b8765c62010-09-10 10:31:34 -07004741static void i9xx_crtc_disable(struct drm_crtc *crtc)
4742{
4743 struct drm_device *dev = crtc->dev;
4744 struct drm_i915_private *dev_priv = dev->dev_private;
4745 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02004746 struct intel_encoder *encoder;
Jesse Barnes0b8765c62010-09-10 10:31:34 -07004747 int pipe = intel_crtc->pipe;
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02004748
Chris Wilsonf7abfe82010-09-13 14:19:16 +01004749 if (!intel_crtc->active)
4750 return;
4751
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03004752 /*
4753 * Gen2 reports pipe underruns whenever all planes are disabled.
4754 * So diasble underrun reporting before all the planes get disabled.
4755 * FIXME: Need to fix the logic to work when we turn off all planes
4756 * but leave the pipe running.
4757 */
4758 if (IS_GEN2(dev))
4759 intel_set_cpu_fifo_underrun_reporting(dev, pipe, false);
4760
Ville Syrjälä9ab04602014-05-08 19:23:14 +03004761 intel_crtc_disable_planes(crtc);
4762
Daniel Vetterea9d7582012-07-10 10:42:52 +02004763 for_each_encoder_on_crtc(dev, crtc, encoder)
4764 encoder->disable(encoder);
4765
Ville Syrjälä6304cd92014-04-25 13:30:12 +03004766 /*
4767 * On gen2 planes are double buffered but the pipe isn't, so we must
4768 * wait for planes to fully turn off before disabling the pipe.
4769 */
4770 if (IS_GEN2(dev))
4771 intel_wait_for_vblank(dev, pipe);
4772
Jesse Barnesb24e7172011-01-04 15:09:30 -08004773 intel_disable_pipe(dev_priv, pipe);
Mika Kuoppala24a1f162013-02-08 16:35:37 +02004774
Daniel Vetter87476d62013-04-11 16:29:06 +02004775 i9xx_pfit_disable(intel_crtc);
Mika Kuoppala24a1f162013-02-08 16:35:37 +02004776
Jesse Barnes89b667f2013-04-18 14:51:36 -07004777 for_each_encoder_on_crtc(dev, crtc, encoder)
4778 if (encoder->post_disable)
4779 encoder->post_disable(encoder);
4780
Chon Ming Lee076ed3b2014-04-09 13:28:17 +03004781 if (!intel_pipe_has_type(crtc, INTEL_OUTPUT_DSI)) {
4782 if (IS_CHERRYVIEW(dev))
4783 chv_disable_pll(dev_priv, pipe);
4784 else if (IS_VALLEYVIEW(dev))
4785 vlv_disable_pll(dev_priv, pipe);
4786 else
4787 i9xx_disable_pll(dev_priv, pipe);
4788 }
Jesse Barnes0b8765c62010-09-10 10:31:34 -07004789
Ville Syrjälä4a3436e2014-05-16 19:40:25 +03004790 if (!IS_GEN2(dev))
4791 intel_set_cpu_fifo_underrun_reporting(dev, pipe, false);
4792
Chris Wilsonf7abfe82010-09-13 14:19:16 +01004793 intel_crtc->active = false;
Ville Syrjälä46ba6142013-09-10 11:40:40 +03004794 intel_update_watermarks(crtc);
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03004795
Daniel Vetterefa96242014-04-24 23:55:02 +02004796 mutex_lock(&dev->struct_mutex);
Chris Wilson6b383a72010-09-13 13:54:26 +01004797 intel_update_fbc(dev);
Daniel Vetter71b1c372014-04-24 23:55:03 +02004798 intel_edp_psr_update(dev);
Daniel Vetterefa96242014-04-24 23:55:02 +02004799 mutex_unlock(&dev->struct_mutex);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07004800}
4801
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004802static void i9xx_crtc_off(struct drm_crtc *crtc)
4803{
4804}
4805
Daniel Vetter976f8a22012-07-08 22:34:21 +02004806static void intel_crtc_update_sarea(struct drm_crtc *crtc,
4807 bool enabled)
Zhenyu Wang2c072452009-06-05 15:38:42 +08004808{
4809 struct drm_device *dev = crtc->dev;
4810 struct drm_i915_master_private *master_priv;
4811 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4812 int pipe = intel_crtc->pipe;
Jesse Barnes79e53942008-11-07 14:24:08 -08004813
4814 if (!dev->primary->master)
4815 return;
4816
4817 master_priv = dev->primary->master->driver_priv;
4818 if (!master_priv->sarea_priv)
4819 return;
4820
Jesse Barnes79e53942008-11-07 14:24:08 -08004821 switch (pipe) {
4822 case 0:
4823 master_priv->sarea_priv->pipeA_w = enabled ? crtc->mode.hdisplay : 0;
4824 master_priv->sarea_priv->pipeA_h = enabled ? crtc->mode.vdisplay : 0;
4825 break;
4826 case 1:
4827 master_priv->sarea_priv->pipeB_w = enabled ? crtc->mode.hdisplay : 0;
4828 master_priv->sarea_priv->pipeB_h = enabled ? crtc->mode.vdisplay : 0;
4829 break;
4830 default:
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08004831 DRM_ERROR("Can't update pipe %c in SAREA\n", pipe_name(pipe));
Jesse Barnes79e53942008-11-07 14:24:08 -08004832 break;
4833 }
Jesse Barnes79e53942008-11-07 14:24:08 -08004834}
4835
Daniel Vetter976f8a22012-07-08 22:34:21 +02004836/**
4837 * Sets the power management mode of the pipe and plane.
4838 */
4839void intel_crtc_update_dpms(struct drm_crtc *crtc)
Chris Wilsoncdd59982010-09-08 16:30:16 +01004840{
Chris Wilsoncdd59982010-09-08 16:30:16 +01004841 struct drm_device *dev = crtc->dev;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004842 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter976f8a22012-07-08 22:34:21 +02004843 struct intel_encoder *intel_encoder;
4844 bool enable = false;
Chris Wilsoncdd59982010-09-08 16:30:16 +01004845
Daniel Vetter976f8a22012-07-08 22:34:21 +02004846 for_each_encoder_on_crtc(dev, crtc, intel_encoder)
4847 enable |= intel_encoder->connectors_active;
4848
4849 if (enable)
4850 dev_priv->display.crtc_enable(crtc);
4851 else
4852 dev_priv->display.crtc_disable(crtc);
4853
4854 intel_crtc_update_sarea(crtc, enable);
4855}
4856
Daniel Vetter976f8a22012-07-08 22:34:21 +02004857static void intel_crtc_disable(struct drm_crtc *crtc)
4858{
4859 struct drm_device *dev = crtc->dev;
4860 struct drm_connector *connector;
4861 struct drm_i915_private *dev_priv = dev->dev_private;
4862
4863 /* crtc should still be enabled when we disable it. */
4864 WARN_ON(!crtc->enabled);
4865
4866 dev_priv->display.crtc_disable(crtc);
4867 intel_crtc_update_sarea(crtc, false);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004868 dev_priv->display.off(crtc);
4869
Chris Wilson931872f2012-01-16 23:01:13 +00004870 assert_plane_disabled(dev->dev_private, to_intel_crtc(crtc)->plane);
Jani Nikula93ce0ba2013-09-13 11:03:08 +03004871 assert_cursor_disabled(dev_priv, to_intel_crtc(crtc)->pipe);
Chris Wilson931872f2012-01-16 23:01:13 +00004872 assert_pipe_disabled(dev->dev_private, to_intel_crtc(crtc)->pipe);
Chris Wilsoncdd59982010-09-08 16:30:16 +01004873
Matt Roperf4510a22014-04-01 15:22:40 -07004874 if (crtc->primary->fb) {
Chris Wilsoncdd59982010-09-08 16:30:16 +01004875 mutex_lock(&dev->struct_mutex);
Matt Roperf4510a22014-04-01 15:22:40 -07004876 intel_unpin_fb_obj(to_intel_framebuffer(crtc->primary->fb)->obj);
Chris Wilsoncdd59982010-09-08 16:30:16 +01004877 mutex_unlock(&dev->struct_mutex);
Matt Roperf4510a22014-04-01 15:22:40 -07004878 crtc->primary->fb = NULL;
Daniel Vetter976f8a22012-07-08 22:34:21 +02004879 }
4880
4881 /* Update computed state. */
4882 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
4883 if (!connector->encoder || !connector->encoder->crtc)
4884 continue;
4885
4886 if (connector->encoder->crtc != crtc)
4887 continue;
4888
4889 connector->dpms = DRM_MODE_DPMS_OFF;
4890 to_intel_encoder(connector->encoder)->connectors_active = false;
Chris Wilsoncdd59982010-09-08 16:30:16 +01004891 }
4892}
4893
Chris Wilsonea5b2132010-08-04 13:50:23 +01004894void intel_encoder_destroy(struct drm_encoder *encoder)
4895{
Chris Wilson4ef69c72010-09-09 15:14:28 +01004896 struct intel_encoder *intel_encoder = to_intel_encoder(encoder);
Chris Wilsonea5b2132010-08-04 13:50:23 +01004897
Chris Wilsonea5b2132010-08-04 13:50:23 +01004898 drm_encoder_cleanup(encoder);
4899 kfree(intel_encoder);
4900}
4901
Damien Lespiau92373292013-08-08 22:28:57 +01004902/* Simple dpms helper for encoders with just one connector, no cloning and only
Daniel Vetter5ab432e2012-06-30 08:59:56 +02004903 * one kind of off state. It clamps all !ON modes to fully OFF and changes the
4904 * state of the entire output pipe. */
Damien Lespiau92373292013-08-08 22:28:57 +01004905static void intel_encoder_dpms(struct intel_encoder *encoder, int mode)
Daniel Vetter5ab432e2012-06-30 08:59:56 +02004906{
4907 if (mode == DRM_MODE_DPMS_ON) {
4908 encoder->connectors_active = true;
4909
Daniel Vetterb2cabb02012-07-01 22:42:24 +02004910 intel_crtc_update_dpms(encoder->base.crtc);
Daniel Vetter5ab432e2012-06-30 08:59:56 +02004911 } else {
4912 encoder->connectors_active = false;
4913
Daniel Vetterb2cabb02012-07-01 22:42:24 +02004914 intel_crtc_update_dpms(encoder->base.crtc);
Daniel Vetter5ab432e2012-06-30 08:59:56 +02004915 }
4916}
4917
Daniel Vetter0a91ca22012-07-02 21:54:27 +02004918/* Cross check the actual hw state with our own modeset state tracking (and it's
4919 * internal consistency). */
Daniel Vetterb9805142012-08-31 17:37:33 +02004920static void intel_connector_check_state(struct intel_connector *connector)
Daniel Vetter0a91ca22012-07-02 21:54:27 +02004921{
4922 if (connector->get_hw_state(connector)) {
4923 struct intel_encoder *encoder = connector->encoder;
4924 struct drm_crtc *crtc;
4925 bool encoder_enabled;
4926 enum pipe pipe;
4927
4928 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
4929 connector->base.base.id,
Jani Nikulac23cc412014-06-03 14:56:17 +03004930 connector->base.name);
Daniel Vetter0a91ca22012-07-02 21:54:27 +02004931
4932 WARN(connector->base.dpms == DRM_MODE_DPMS_OFF,
4933 "wrong connector dpms state\n");
4934 WARN(connector->base.encoder != &encoder->base,
4935 "active connector not linked to encoder\n");
4936 WARN(!encoder->connectors_active,
4937 "encoder->connectors_active not set\n");
4938
4939 encoder_enabled = encoder->get_hw_state(encoder, &pipe);
4940 WARN(!encoder_enabled, "encoder not enabled\n");
4941 if (WARN_ON(!encoder->base.crtc))
4942 return;
4943
4944 crtc = encoder->base.crtc;
4945
4946 WARN(!crtc->enabled, "crtc not enabled\n");
4947 WARN(!to_intel_crtc(crtc)->active, "crtc not active\n");
4948 WARN(pipe != to_intel_crtc(crtc)->pipe,
4949 "encoder active on the wrong pipe\n");
4950 }
4951}
4952
Daniel Vetter5ab432e2012-06-30 08:59:56 +02004953/* Even simpler default implementation, if there's really no special case to
4954 * consider. */
4955void intel_connector_dpms(struct drm_connector *connector, int mode)
4956{
Daniel Vetter5ab432e2012-06-30 08:59:56 +02004957 /* All the simple cases only support two dpms states. */
4958 if (mode != DRM_MODE_DPMS_ON)
4959 mode = DRM_MODE_DPMS_OFF;
4960
4961 if (mode == connector->dpms)
4962 return;
4963
4964 connector->dpms = mode;
4965
4966 /* Only need to change hw state when actually enabled */
Chris Wilsonc9976dc2013-09-29 19:15:07 +01004967 if (connector->encoder)
4968 intel_encoder_dpms(to_intel_encoder(connector->encoder), mode);
Daniel Vetter0a91ca22012-07-02 21:54:27 +02004969
Daniel Vetterb9805142012-08-31 17:37:33 +02004970 intel_modeset_check_state(connector->dev);
Daniel Vetter5ab432e2012-06-30 08:59:56 +02004971}
4972
Daniel Vetterf0947c32012-07-02 13:10:34 +02004973/* Simple connector->get_hw_state implementation for encoders that support only
4974 * one connector and no cloning and hence the encoder state determines the state
4975 * of the connector. */
4976bool intel_connector_get_hw_state(struct intel_connector *connector)
4977{
Daniel Vetter24929352012-07-02 20:28:59 +02004978 enum pipe pipe = 0;
Daniel Vetterf0947c32012-07-02 13:10:34 +02004979 struct intel_encoder *encoder = connector->encoder;
4980
4981 return encoder->get_hw_state(encoder, &pipe);
4982}
4983
Daniel Vetter1857e1d2013-04-29 19:34:16 +02004984static bool ironlake_check_fdi_lanes(struct drm_device *dev, enum pipe pipe,
4985 struct intel_crtc_config *pipe_config)
4986{
4987 struct drm_i915_private *dev_priv = dev->dev_private;
4988 struct intel_crtc *pipe_B_crtc =
4989 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[PIPE_B]);
4990
4991 DRM_DEBUG_KMS("checking fdi config on pipe %c, lanes %i\n",
4992 pipe_name(pipe), pipe_config->fdi_lanes);
4993 if (pipe_config->fdi_lanes > 4) {
4994 DRM_DEBUG_KMS("invalid fdi lane config on pipe %c: %i lanes\n",
4995 pipe_name(pipe), pipe_config->fdi_lanes);
4996 return false;
4997 }
4998
Paulo Zanonibafb6552013-11-02 21:07:44 -07004999 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Daniel Vetter1857e1d2013-04-29 19:34:16 +02005000 if (pipe_config->fdi_lanes > 2) {
5001 DRM_DEBUG_KMS("only 2 lanes on haswell, required: %i lanes\n",
5002 pipe_config->fdi_lanes);
5003 return false;
5004 } else {
5005 return true;
5006 }
5007 }
5008
5009 if (INTEL_INFO(dev)->num_pipes == 2)
5010 return true;
5011
5012 /* Ivybridge 3 pipe is really complicated */
5013 switch (pipe) {
5014 case PIPE_A:
5015 return true;
5016 case PIPE_B:
5017 if (dev_priv->pipe_to_crtc_mapping[PIPE_C]->enabled &&
5018 pipe_config->fdi_lanes > 2) {
5019 DRM_DEBUG_KMS("invalid shared fdi lane config on pipe %c: %i lanes\n",
5020 pipe_name(pipe), pipe_config->fdi_lanes);
5021 return false;
5022 }
5023 return true;
5024 case PIPE_C:
Daniel Vetter1e833f42013-02-19 22:31:57 +01005025 if (!pipe_has_enabled_pch(pipe_B_crtc) ||
Daniel Vetter1857e1d2013-04-29 19:34:16 +02005026 pipe_B_crtc->config.fdi_lanes <= 2) {
5027 if (pipe_config->fdi_lanes > 2) {
5028 DRM_DEBUG_KMS("invalid shared fdi lane config on pipe %c: %i lanes\n",
5029 pipe_name(pipe), pipe_config->fdi_lanes);
5030 return false;
5031 }
5032 } else {
5033 DRM_DEBUG_KMS("fdi link B uses too many lanes to enable link C\n");
5034 return false;
5035 }
5036 return true;
5037 default:
5038 BUG();
5039 }
5040}
5041
Daniel Vettere29c22c2013-02-21 00:00:16 +01005042#define RETRY 1
5043static int ironlake_fdi_compute_config(struct intel_crtc *intel_crtc,
5044 struct intel_crtc_config *pipe_config)
Daniel Vetter877d48d2013-04-19 11:24:43 +02005045{
Daniel Vetter1857e1d2013-04-29 19:34:16 +02005046 struct drm_device *dev = intel_crtc->base.dev;
Daniel Vetter877d48d2013-04-19 11:24:43 +02005047 struct drm_display_mode *adjusted_mode = &pipe_config->adjusted_mode;
Daniel Vetterff9a6752013-06-01 17:16:21 +02005048 int lane, link_bw, fdi_dotclock;
Daniel Vettere29c22c2013-02-21 00:00:16 +01005049 bool setup_ok, needs_recompute = false;
Daniel Vetter877d48d2013-04-19 11:24:43 +02005050
Daniel Vettere29c22c2013-02-21 00:00:16 +01005051retry:
Daniel Vetter877d48d2013-04-19 11:24:43 +02005052 /* FDI is a binary signal running at ~2.7GHz, encoding
5053 * each output octet as 10 bits. The actual frequency
5054 * is stored as a divider into a 100MHz clock, and the
5055 * mode pixel clock is stored in units of 1KHz.
5056 * Hence the bw of each lane in terms of the mode signal
5057 * is:
5058 */
5059 link_bw = intel_fdi_link_freq(dev) * MHz(100)/KHz(1)/10;
5060
Damien Lespiau241bfc32013-09-25 16:45:37 +01005061 fdi_dotclock = adjusted_mode->crtc_clock;
Daniel Vetter877d48d2013-04-19 11:24:43 +02005062
Daniel Vetter2bd89a02013-06-01 17:16:19 +02005063 lane = ironlake_get_lanes_required(fdi_dotclock, link_bw,
Daniel Vetter877d48d2013-04-19 11:24:43 +02005064 pipe_config->pipe_bpp);
5065
5066 pipe_config->fdi_lanes = lane;
5067
Daniel Vetter2bd89a02013-06-01 17:16:19 +02005068 intel_link_compute_m_n(pipe_config->pipe_bpp, lane, fdi_dotclock,
Daniel Vetter877d48d2013-04-19 11:24:43 +02005069 link_bw, &pipe_config->fdi_m_n);
Daniel Vetter1857e1d2013-04-29 19:34:16 +02005070
Daniel Vettere29c22c2013-02-21 00:00:16 +01005071 setup_ok = ironlake_check_fdi_lanes(intel_crtc->base.dev,
5072 intel_crtc->pipe, pipe_config);
5073 if (!setup_ok && pipe_config->pipe_bpp > 6*3) {
5074 pipe_config->pipe_bpp -= 2*3;
5075 DRM_DEBUG_KMS("fdi link bw constraint, reducing pipe bpp to %i\n",
5076 pipe_config->pipe_bpp);
5077 needs_recompute = true;
5078 pipe_config->bw_constrained = true;
5079
5080 goto retry;
5081 }
5082
5083 if (needs_recompute)
5084 return RETRY;
5085
5086 return setup_ok ? 0 : -EINVAL;
Daniel Vetter877d48d2013-04-19 11:24:43 +02005087}
5088
Paulo Zanoni42db64e2013-05-31 16:33:22 -03005089static void hsw_compute_ips_config(struct intel_crtc *crtc,
5090 struct intel_crtc_config *pipe_config)
5091{
Jani Nikulad330a952014-01-21 11:24:25 +02005092 pipe_config->ips_enabled = i915.enable_ips &&
Paulo Zanoni3c4ca582013-05-31 16:33:23 -03005093 hsw_crtc_supports_ips(crtc) &&
Jesse Barnesb6dfdc92013-07-25 10:06:50 -07005094 pipe_config->pipe_bpp <= 24;
Paulo Zanoni42db64e2013-05-31 16:33:22 -03005095}
5096
Daniel Vettera43f6e02013-06-07 23:10:32 +02005097static int intel_crtc_compute_config(struct intel_crtc *crtc,
Daniel Vettere29c22c2013-02-21 00:00:16 +01005098 struct intel_crtc_config *pipe_config)
Jesse Barnes79e53942008-11-07 14:24:08 -08005099{
Daniel Vettera43f6e02013-06-07 23:10:32 +02005100 struct drm_device *dev = crtc->base.dev;
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01005101 struct drm_display_mode *adjusted_mode = &pipe_config->adjusted_mode;
Chris Wilson89749352010-09-12 18:25:19 +01005102
Ville Syrjäläad3a4472013-09-04 18:30:04 +03005103 /* FIXME should check pixel clock limits on all platforms */
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03005104 if (INTEL_INFO(dev)->gen < 4) {
5105 struct drm_i915_private *dev_priv = dev->dev_private;
5106 int clock_limit =
5107 dev_priv->display.get_display_clock_speed(dev);
5108
5109 /*
5110 * Enable pixel doubling when the dot clock
5111 * is > 90% of the (display) core speed.
5112 *
Ville Syrjäläb397c962013-09-04 18:30:06 +03005113 * GDG double wide on either pipe,
5114 * otherwise pipe A only.
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03005115 */
Ville Syrjäläb397c962013-09-04 18:30:06 +03005116 if ((crtc->pipe == PIPE_A || IS_I915G(dev)) &&
Damien Lespiau241bfc32013-09-25 16:45:37 +01005117 adjusted_mode->crtc_clock > clock_limit * 9 / 10) {
Ville Syrjäläad3a4472013-09-04 18:30:04 +03005118 clock_limit *= 2;
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03005119 pipe_config->double_wide = true;
Ville Syrjäläad3a4472013-09-04 18:30:04 +03005120 }
5121
Damien Lespiau241bfc32013-09-25 16:45:37 +01005122 if (adjusted_mode->crtc_clock > clock_limit * 9 / 10)
Daniel Vettere29c22c2013-02-21 00:00:16 +01005123 return -EINVAL;
Zhenyu Wang2c072452009-06-05 15:38:42 +08005124 }
Chris Wilson89749352010-09-12 18:25:19 +01005125
Ville Syrjälä1d1d0e22013-09-04 18:30:05 +03005126 /*
5127 * Pipe horizontal size must be even in:
5128 * - DVO ganged mode
5129 * - LVDS dual channel mode
5130 * - Double wide pipe
5131 */
5132 if ((intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_LVDS) &&
5133 intel_is_dual_link_lvds(dev)) || pipe_config->double_wide)
5134 pipe_config->pipe_src_w &= ~1;
5135
Damien Lespiau8693a822013-05-03 18:48:11 +01005136 /* Cantiga+ cannot handle modes with a hsync front porch of 0.
5137 * WaPruneModeWithIncorrectHsyncOffset:ctg,elk,ilk,snb,ivb,vlv,hsw.
Chris Wilson44f46b422012-06-21 13:19:59 +03005138 */
5139 if ((INTEL_INFO(dev)->gen > 4 || IS_G4X(dev)) &&
5140 adjusted_mode->hsync_start == adjusted_mode->hdisplay)
Daniel Vettere29c22c2013-02-21 00:00:16 +01005141 return -EINVAL;
Chris Wilson44f46b422012-06-21 13:19:59 +03005142
Daniel Vetterbd080ee2013-04-17 20:01:39 +02005143 if ((IS_G4X(dev) || IS_VALLEYVIEW(dev)) && pipe_config->pipe_bpp > 10*3) {
Daniel Vetter5d2d38d2013-03-27 00:45:01 +01005144 pipe_config->pipe_bpp = 10*3; /* 12bpc is gen5+ */
Daniel Vetterbd080ee2013-04-17 20:01:39 +02005145 } else if (INTEL_INFO(dev)->gen <= 4 && pipe_config->pipe_bpp > 8*3) {
Daniel Vetter5d2d38d2013-03-27 00:45:01 +01005146 /* only a 8bpc pipe, with 6bpc dither through the panel fitter
5147 * for lvds. */
5148 pipe_config->pipe_bpp = 8*3;
5149 }
5150
Damien Lespiauf5adf942013-06-24 18:29:34 +01005151 if (HAS_IPS(dev))
Daniel Vettera43f6e02013-06-07 23:10:32 +02005152 hsw_compute_ips_config(crtc, pipe_config);
5153
5154 /* XXX: PCH clock sharing is done in ->mode_set, so make sure the old
5155 * clock survives for now. */
5156 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev))
5157 pipe_config->shared_dpll = crtc->config.shared_dpll;
Paulo Zanoni42db64e2013-05-31 16:33:22 -03005158
Daniel Vetter877d48d2013-04-19 11:24:43 +02005159 if (pipe_config->has_pch_encoder)
Daniel Vettera43f6e02013-06-07 23:10:32 +02005160 return ironlake_fdi_compute_config(crtc, pipe_config);
Daniel Vetter877d48d2013-04-19 11:24:43 +02005161
Daniel Vettere29c22c2013-02-21 00:00:16 +01005162 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08005163}
5164
Jesse Barnes25eb05fc2012-03-28 13:39:23 -07005165static int valleyview_get_display_clock_speed(struct drm_device *dev)
5166{
5167 return 400000; /* FIXME */
5168}
5169
Jesse Barnese70236a2009-09-21 10:42:27 -07005170static int i945_get_display_clock_speed(struct drm_device *dev)
Jesse Barnes79e53942008-11-07 14:24:08 -08005171{
Jesse Barnese70236a2009-09-21 10:42:27 -07005172 return 400000;
5173}
Jesse Barnes79e53942008-11-07 14:24:08 -08005174
Jesse Barnese70236a2009-09-21 10:42:27 -07005175static int i915_get_display_clock_speed(struct drm_device *dev)
5176{
5177 return 333000;
5178}
Jesse Barnes79e53942008-11-07 14:24:08 -08005179
Jesse Barnese70236a2009-09-21 10:42:27 -07005180static int i9xx_misc_get_display_clock_speed(struct drm_device *dev)
5181{
5182 return 200000;
5183}
Jesse Barnes79e53942008-11-07 14:24:08 -08005184
Daniel Vetter257a7ff2013-07-26 08:35:42 +02005185static int pnv_get_display_clock_speed(struct drm_device *dev)
5186{
5187 u16 gcfgc = 0;
5188
5189 pci_read_config_word(dev->pdev, GCFGC, &gcfgc);
5190
5191 switch (gcfgc & GC_DISPLAY_CLOCK_MASK) {
5192 case GC_DISPLAY_CLOCK_267_MHZ_PNV:
5193 return 267000;
5194 case GC_DISPLAY_CLOCK_333_MHZ_PNV:
5195 return 333000;
5196 case GC_DISPLAY_CLOCK_444_MHZ_PNV:
5197 return 444000;
5198 case GC_DISPLAY_CLOCK_200_MHZ_PNV:
5199 return 200000;
5200 default:
5201 DRM_ERROR("Unknown pnv display core clock 0x%04x\n", gcfgc);
5202 case GC_DISPLAY_CLOCK_133_MHZ_PNV:
5203 return 133000;
5204 case GC_DISPLAY_CLOCK_167_MHZ_PNV:
5205 return 167000;
5206 }
5207}
5208
Jesse Barnese70236a2009-09-21 10:42:27 -07005209static int i915gm_get_display_clock_speed(struct drm_device *dev)
5210{
5211 u16 gcfgc = 0;
5212
5213 pci_read_config_word(dev->pdev, GCFGC, &gcfgc);
5214
5215 if (gcfgc & GC_LOW_FREQUENCY_ENABLE)
Jesse Barnes79e53942008-11-07 14:24:08 -08005216 return 133000;
Jesse Barnese70236a2009-09-21 10:42:27 -07005217 else {
5218 switch (gcfgc & GC_DISPLAY_CLOCK_MASK) {
5219 case GC_DISPLAY_CLOCK_333_MHZ:
5220 return 333000;
5221 default:
5222 case GC_DISPLAY_CLOCK_190_200_MHZ:
5223 return 190000;
5224 }
5225 }
5226}
Jesse Barnes79e53942008-11-07 14:24:08 -08005227
Jesse Barnese70236a2009-09-21 10:42:27 -07005228static int i865_get_display_clock_speed(struct drm_device *dev)
5229{
5230 return 266000;
5231}
5232
5233static int i855_get_display_clock_speed(struct drm_device *dev)
5234{
5235 u16 hpllcc = 0;
5236 /* Assume that the hardware is in the high speed state. This
5237 * should be the default.
5238 */
5239 switch (hpllcc & GC_CLOCK_CONTROL_MASK) {
5240 case GC_CLOCK_133_200:
5241 case GC_CLOCK_100_200:
5242 return 200000;
5243 case GC_CLOCK_166_250:
5244 return 250000;
5245 case GC_CLOCK_100_133:
5246 return 133000;
5247 }
5248
5249 /* Shouldn't happen */
5250 return 0;
5251}
5252
5253static int i830_get_display_clock_speed(struct drm_device *dev)
5254{
5255 return 133000;
Jesse Barnes79e53942008-11-07 14:24:08 -08005256}
5257
Zhenyu Wang2c072452009-06-05 15:38:42 +08005258static void
Ville Syrjäläa65851a2013-04-23 15:03:34 +03005259intel_reduce_m_n_ratio(uint32_t *num, uint32_t *den)
Zhenyu Wang2c072452009-06-05 15:38:42 +08005260{
Ville Syrjäläa65851a2013-04-23 15:03:34 +03005261 while (*num > DATA_LINK_M_N_MASK ||
5262 *den > DATA_LINK_M_N_MASK) {
Zhenyu Wang2c072452009-06-05 15:38:42 +08005263 *num >>= 1;
5264 *den >>= 1;
5265 }
5266}
5267
Ville Syrjäläa65851a2013-04-23 15:03:34 +03005268static void compute_m_n(unsigned int m, unsigned int n,
5269 uint32_t *ret_m, uint32_t *ret_n)
5270{
5271 *ret_n = min_t(unsigned int, roundup_pow_of_two(n), DATA_LINK_N_MAX);
5272 *ret_m = div_u64((uint64_t) m * *ret_n, n);
5273 intel_reduce_m_n_ratio(ret_m, ret_n);
5274}
5275
Daniel Vettere69d0bc2012-11-29 15:59:36 +01005276void
5277intel_link_compute_m_n(int bits_per_pixel, int nlanes,
5278 int pixel_clock, int link_clock,
5279 struct intel_link_m_n *m_n)
Zhenyu Wang2c072452009-06-05 15:38:42 +08005280{
Daniel Vettere69d0bc2012-11-29 15:59:36 +01005281 m_n->tu = 64;
Ville Syrjäläa65851a2013-04-23 15:03:34 +03005282
5283 compute_m_n(bits_per_pixel * pixel_clock,
5284 link_clock * nlanes * 8,
5285 &m_n->gmch_m, &m_n->gmch_n);
5286
5287 compute_m_n(pixel_clock, link_clock,
5288 &m_n->link_m, &m_n->link_n);
Zhenyu Wang2c072452009-06-05 15:38:42 +08005289}
5290
Chris Wilsona7615032011-01-12 17:04:08 +00005291static inline bool intel_panel_use_ssc(struct drm_i915_private *dev_priv)
5292{
Jani Nikulad330a952014-01-21 11:24:25 +02005293 if (i915.panel_use_ssc >= 0)
5294 return i915.panel_use_ssc != 0;
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03005295 return dev_priv->vbt.lvds_use_ssc
Keith Packard435793d2011-07-12 14:56:22 -07005296 && !(dev_priv->quirks & QUIRK_LVDS_SSC_DISABLE);
Chris Wilsona7615032011-01-12 17:04:08 +00005297}
5298
Jesse Barnesc65d77d2011-12-15 12:30:36 -08005299static int i9xx_get_refclk(struct drm_crtc *crtc, int num_connectors)
5300{
5301 struct drm_device *dev = crtc->dev;
5302 struct drm_i915_private *dev_priv = dev->dev_private;
5303 int refclk;
5304
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005305 if (IS_VALLEYVIEW(dev)) {
Daniel Vetter9a0ea492013-09-16 11:29:34 +02005306 refclk = 100000;
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005307 } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) &&
Jesse Barnesc65d77d2011-12-15 12:30:36 -08005308 intel_panel_use_ssc(dev_priv) && num_connectors < 2) {
Ville Syrjäläe91e9412013-12-09 18:54:16 +02005309 refclk = dev_priv->vbt.lvds_ssc_freq;
5310 DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n", refclk);
Jesse Barnesc65d77d2011-12-15 12:30:36 -08005311 } else if (!IS_GEN2(dev)) {
5312 refclk = 96000;
5313 } else {
5314 refclk = 48000;
5315 }
5316
5317 return refclk;
5318}
5319
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005320static uint32_t pnv_dpll_compute_fp(struct dpll *dpll)
Jesse Barnesc65d77d2011-12-15 12:30:36 -08005321{
Daniel Vetter7df00d72013-05-21 21:54:55 +02005322 return (1 << dpll->n) << 16 | dpll->m2;
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005323}
Daniel Vetterf47709a2013-03-28 10:42:02 +01005324
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005325static uint32_t i9xx_dpll_compute_fp(struct dpll *dpll)
5326{
5327 return dpll->n << 16 | dpll->m1 << 8 | dpll->m2;
Jesse Barnesc65d77d2011-12-15 12:30:36 -08005328}
5329
Daniel Vetterf47709a2013-03-28 10:42:02 +01005330static void i9xx_update_pll_dividers(struct intel_crtc *crtc,
Jesse Barnesa7516a02011-12-15 12:30:37 -08005331 intel_clock_t *reduced_clock)
5332{
Daniel Vetterf47709a2013-03-28 10:42:02 +01005333 struct drm_device *dev = crtc->base.dev;
Jesse Barnesa7516a02011-12-15 12:30:37 -08005334 u32 fp, fp2 = 0;
5335
5336 if (IS_PINEVIEW(dev)) {
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005337 fp = pnv_dpll_compute_fp(&crtc->config.dpll);
Jesse Barnesa7516a02011-12-15 12:30:37 -08005338 if (reduced_clock)
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005339 fp2 = pnv_dpll_compute_fp(reduced_clock);
Jesse Barnesa7516a02011-12-15 12:30:37 -08005340 } else {
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005341 fp = i9xx_dpll_compute_fp(&crtc->config.dpll);
Jesse Barnesa7516a02011-12-15 12:30:37 -08005342 if (reduced_clock)
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005343 fp2 = i9xx_dpll_compute_fp(reduced_clock);
Jesse Barnesa7516a02011-12-15 12:30:37 -08005344 }
5345
Daniel Vetter8bcc2792013-06-05 13:34:28 +02005346 crtc->config.dpll_hw_state.fp0 = fp;
Jesse Barnesa7516a02011-12-15 12:30:37 -08005347
Daniel Vetterf47709a2013-03-28 10:42:02 +01005348 crtc->lowfreq_avail = false;
5349 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_LVDS) &&
Jani Nikulad330a952014-01-21 11:24:25 +02005350 reduced_clock && i915.powersave) {
Daniel Vetter8bcc2792013-06-05 13:34:28 +02005351 crtc->config.dpll_hw_state.fp1 = fp2;
Daniel Vetterf47709a2013-03-28 10:42:02 +01005352 crtc->lowfreq_avail = true;
Jesse Barnesa7516a02011-12-15 12:30:37 -08005353 } else {
Daniel Vetter8bcc2792013-06-05 13:34:28 +02005354 crtc->config.dpll_hw_state.fp1 = fp;
Jesse Barnesa7516a02011-12-15 12:30:37 -08005355 }
5356}
5357
Chon Ming Lee5e69f972013-09-05 20:41:49 +08005358static void vlv_pllb_recal_opamp(struct drm_i915_private *dev_priv, enum pipe
5359 pipe)
Jesse Barnes89b667f2013-04-18 14:51:36 -07005360{
5361 u32 reg_val;
5362
5363 /*
5364 * PLLB opamp always calibrates to max value of 0x3f, force enable it
5365 * and set it to a reasonable value instead.
5366 */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005367 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW9(1));
Jesse Barnes89b667f2013-04-18 14:51:36 -07005368 reg_val &= 0xffffff00;
5369 reg_val |= 0x00000030;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005370 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9(1), reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005371
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005372 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_REF_DW13);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005373 reg_val &= 0x8cffffff;
5374 reg_val = 0x8c000000;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005375 vlv_dpio_write(dev_priv, pipe, VLV_REF_DW13, reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005376
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005377 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW9(1));
Jesse Barnes89b667f2013-04-18 14:51:36 -07005378 reg_val &= 0xffffff00;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005379 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9(1), reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005380
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005381 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_REF_DW13);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005382 reg_val &= 0x00ffffff;
5383 reg_val |= 0xb0000000;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005384 vlv_dpio_write(dev_priv, pipe, VLV_REF_DW13, reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005385}
5386
Daniel Vetterb5518422013-05-03 11:49:48 +02005387static void intel_pch_transcoder_set_m_n(struct intel_crtc *crtc,
5388 struct intel_link_m_n *m_n)
5389{
5390 struct drm_device *dev = crtc->base.dev;
5391 struct drm_i915_private *dev_priv = dev->dev_private;
5392 int pipe = crtc->pipe;
5393
Daniel Vettere3b95f12013-05-03 11:49:49 +02005394 I915_WRITE(PCH_TRANS_DATA_M1(pipe), TU_SIZE(m_n->tu) | m_n->gmch_m);
5395 I915_WRITE(PCH_TRANS_DATA_N1(pipe), m_n->gmch_n);
5396 I915_WRITE(PCH_TRANS_LINK_M1(pipe), m_n->link_m);
5397 I915_WRITE(PCH_TRANS_LINK_N1(pipe), m_n->link_n);
Daniel Vetterb5518422013-05-03 11:49:48 +02005398}
5399
5400static void intel_cpu_transcoder_set_m_n(struct intel_crtc *crtc,
5401 struct intel_link_m_n *m_n)
5402{
5403 struct drm_device *dev = crtc->base.dev;
5404 struct drm_i915_private *dev_priv = dev->dev_private;
5405 int pipe = crtc->pipe;
5406 enum transcoder transcoder = crtc->config.cpu_transcoder;
5407
5408 if (INTEL_INFO(dev)->gen >= 5) {
5409 I915_WRITE(PIPE_DATA_M1(transcoder), TU_SIZE(m_n->tu) | m_n->gmch_m);
5410 I915_WRITE(PIPE_DATA_N1(transcoder), m_n->gmch_n);
5411 I915_WRITE(PIPE_LINK_M1(transcoder), m_n->link_m);
5412 I915_WRITE(PIPE_LINK_N1(transcoder), m_n->link_n);
5413 } else {
Daniel Vettere3b95f12013-05-03 11:49:49 +02005414 I915_WRITE(PIPE_DATA_M_G4X(pipe), TU_SIZE(m_n->tu) | m_n->gmch_m);
5415 I915_WRITE(PIPE_DATA_N_G4X(pipe), m_n->gmch_n);
5416 I915_WRITE(PIPE_LINK_M_G4X(pipe), m_n->link_m);
5417 I915_WRITE(PIPE_LINK_N_G4X(pipe), m_n->link_n);
Daniel Vetterb5518422013-05-03 11:49:48 +02005418 }
5419}
5420
Daniel Vetter03afc4a2013-04-02 23:42:31 +02005421static void intel_dp_set_m_n(struct intel_crtc *crtc)
5422{
5423 if (crtc->config.has_pch_encoder)
5424 intel_pch_transcoder_set_m_n(crtc, &crtc->config.dp_m_n);
5425 else
5426 intel_cpu_transcoder_set_m_n(crtc, &crtc->config.dp_m_n);
5427}
5428
Daniel Vetterf47709a2013-03-28 10:42:02 +01005429static void vlv_update_pll(struct intel_crtc *crtc)
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005430{
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02005431 u32 dpll, dpll_md;
5432
5433 /*
5434 * Enable DPIO clock input. We should never disable the reference
5435 * clock for pipe B, since VGA hotplug / manual detection depends
5436 * on it.
5437 */
5438 dpll = DPLL_EXT_BUFFER_ENABLE_VLV | DPLL_REFA_CLK_ENABLE_VLV |
5439 DPLL_VGA_MODE_DIS | DPLL_INTEGRATED_CLOCK_VLV;
5440 /* We should never disable this, set it here for state tracking */
5441 if (crtc->pipe == PIPE_B)
5442 dpll |= DPLL_INTEGRATED_CRI_CLK_VLV;
5443 dpll |= DPLL_VCO_ENABLE;
5444 crtc->config.dpll_hw_state.dpll = dpll;
5445
5446 dpll_md = (crtc->config.pixel_multiplier - 1)
5447 << DPLL_MD_UDI_MULTIPLIER_SHIFT;
5448 crtc->config.dpll_hw_state.dpll_md = dpll_md;
5449}
5450
5451static void vlv_prepare_pll(struct intel_crtc *crtc)
5452{
Daniel Vetterf47709a2013-03-28 10:42:02 +01005453 struct drm_device *dev = crtc->base.dev;
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005454 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterf47709a2013-03-28 10:42:02 +01005455 int pipe = crtc->pipe;
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02005456 u32 mdiv;
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005457 u32 bestn, bestm1, bestm2, bestp1, bestp2;
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02005458 u32 coreclk, reg_val;
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005459
Daniel Vetter09153002012-12-12 14:06:44 +01005460 mutex_lock(&dev_priv->dpio_lock);
5461
Daniel Vetterf47709a2013-03-28 10:42:02 +01005462 bestn = crtc->config.dpll.n;
5463 bestm1 = crtc->config.dpll.m1;
5464 bestm2 = crtc->config.dpll.m2;
5465 bestp1 = crtc->config.dpll.p1;
5466 bestp2 = crtc->config.dpll.p2;
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005467
Jesse Barnes89b667f2013-04-18 14:51:36 -07005468 /* See eDP HDMI DPIO driver vbios notes doc */
5469
5470 /* PLL B needs special handling */
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02005471 if (pipe == PIPE_B)
Chon Ming Lee5e69f972013-09-05 20:41:49 +08005472 vlv_pllb_recal_opamp(dev_priv, pipe);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005473
5474 /* Set up Tx target for periodic Rcomp update */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005475 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9_BCAST, 0x0100000f);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005476
5477 /* Disable target IRef on PLL */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005478 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW8(pipe));
Jesse Barnes89b667f2013-04-18 14:51:36 -07005479 reg_val &= 0x00ffffff;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005480 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW8(pipe), reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005481
5482 /* Disable fast lock */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005483 vlv_dpio_write(dev_priv, pipe, VLV_CMN_DW0, 0x610);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005484
5485 /* Set idtafcrecal before PLL is enabled */
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005486 mdiv = ((bestm1 << DPIO_M1DIV_SHIFT) | (bestm2 & DPIO_M2DIV_MASK));
5487 mdiv |= ((bestp1 << DPIO_P1_SHIFT) | (bestp2 << DPIO_P2_SHIFT));
5488 mdiv |= ((bestn << DPIO_N_SHIFT));
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005489 mdiv |= (1 << DPIO_K_SHIFT);
Jesse Barnes7df50802013-05-02 10:48:09 -07005490
5491 /*
5492 * Post divider depends on pixel clock rate, DAC vs digital (and LVDS,
5493 * but we don't support that).
5494 * Note: don't use the DAC post divider as it seems unstable.
5495 */
5496 mdiv |= (DPIO_POST_DIV_HDMIDP << DPIO_POST_DIV_SHIFT);
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005497 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW3(pipe), mdiv);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005498
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005499 mdiv |= DPIO_ENABLE_CALIBRATION;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005500 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW3(pipe), mdiv);
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005501
Jesse Barnes89b667f2013-04-18 14:51:36 -07005502 /* Set HBR and RBR LPF coefficients */
Daniel Vetterff9a6752013-06-01 17:16:21 +02005503 if (crtc->config.port_clock == 162000 ||
Ville Syrjälä99750bd2013-06-14 14:02:52 +03005504 intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_ANALOG) ||
Jesse Barnes89b667f2013-04-18 14:51:36 -07005505 intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_HDMI))
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005506 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW10(pipe),
Ville Syrjälä885b0122013-07-05 19:21:38 +03005507 0x009f0003);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005508 else
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005509 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW10(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07005510 0x00d0000f);
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005511
Jesse Barnes89b667f2013-04-18 14:51:36 -07005512 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_EDP) ||
5513 intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_DISPLAYPORT)) {
5514 /* Use SSC source */
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02005515 if (pipe == PIPE_A)
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005516 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07005517 0x0df40000);
5518 else
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005519 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07005520 0x0df70000);
5521 } else { /* HDMI or VGA */
5522 /* Use bend source */
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02005523 if (pipe == PIPE_A)
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005524 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07005525 0x0df70000);
5526 else
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005527 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07005528 0x0df40000);
5529 }
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005530
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005531 coreclk = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW7(pipe));
Jesse Barnes89b667f2013-04-18 14:51:36 -07005532 coreclk = (coreclk & 0x0000ff00) | 0x01c00000;
5533 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_DISPLAYPORT) ||
5534 intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_EDP))
5535 coreclk |= 0x01000000;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005536 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW7(pipe), coreclk);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005537
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005538 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW11(pipe), 0x87871000);
Daniel Vetter09153002012-12-12 14:06:44 +01005539 mutex_unlock(&dev_priv->dpio_lock);
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005540}
5541
Chon Ming Lee9d556c92014-05-02 14:27:47 +03005542static void chv_update_pll(struct intel_crtc *crtc)
5543{
5544 struct drm_device *dev = crtc->base.dev;
5545 struct drm_i915_private *dev_priv = dev->dev_private;
5546 int pipe = crtc->pipe;
5547 int dpll_reg = DPLL(crtc->pipe);
5548 enum dpio_channel port = vlv_pipe_to_channel(pipe);
Ville Syrjälä580d3812014-04-09 13:29:00 +03005549 u32 loopfilter, intcoeff;
Chon Ming Lee9d556c92014-05-02 14:27:47 +03005550 u32 bestn, bestm1, bestm2, bestp1, bestp2, bestm2_frac;
5551 int refclk;
5552
Ville Syrjäläa11b0702014-04-09 13:28:57 +03005553 crtc->config.dpll_hw_state.dpll = DPLL_SSC_REF_CLOCK_CHV |
5554 DPLL_REFA_CLK_ENABLE_VLV | DPLL_VGA_MODE_DIS |
5555 DPLL_VCO_ENABLE;
5556 if (pipe != PIPE_A)
5557 crtc->config.dpll_hw_state.dpll |= DPLL_INTEGRATED_CRI_CLK_VLV;
5558
5559 crtc->config.dpll_hw_state.dpll_md =
5560 (crtc->config.pixel_multiplier - 1) << DPLL_MD_UDI_MULTIPLIER_SHIFT;
Chon Ming Lee9d556c92014-05-02 14:27:47 +03005561
5562 bestn = crtc->config.dpll.n;
5563 bestm2_frac = crtc->config.dpll.m2 & 0x3fffff;
5564 bestm1 = crtc->config.dpll.m1;
5565 bestm2 = crtc->config.dpll.m2 >> 22;
5566 bestp1 = crtc->config.dpll.p1;
5567 bestp2 = crtc->config.dpll.p2;
5568
5569 /*
5570 * Enable Refclk and SSC
5571 */
Ville Syrjäläa11b0702014-04-09 13:28:57 +03005572 I915_WRITE(dpll_reg,
5573 crtc->config.dpll_hw_state.dpll & ~DPLL_VCO_ENABLE);
5574
5575 mutex_lock(&dev_priv->dpio_lock);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03005576
Chon Ming Lee9d556c92014-05-02 14:27:47 +03005577 /* p1 and p2 divider */
5578 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW13(port),
5579 5 << DPIO_CHV_S1_DIV_SHIFT |
5580 bestp1 << DPIO_CHV_P1_DIV_SHIFT |
5581 bestp2 << DPIO_CHV_P2_DIV_SHIFT |
5582 1 << DPIO_CHV_K_DIV_SHIFT);
5583
5584 /* Feedback post-divider - m2 */
5585 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW0(port), bestm2);
5586
5587 /* Feedback refclk divider - n and m1 */
5588 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW1(port),
5589 DPIO_CHV_M1_DIV_BY_2 |
5590 1 << DPIO_CHV_N_DIV_SHIFT);
5591
5592 /* M2 fraction division */
5593 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW2(port), bestm2_frac);
5594
5595 /* M2 fraction division enable */
5596 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW3(port),
5597 DPIO_CHV_FRAC_DIV_EN |
5598 (2 << DPIO_CHV_FEEDFWD_GAIN_SHIFT));
5599
5600 /* Loop filter */
5601 refclk = i9xx_get_refclk(&crtc->base, 0);
5602 loopfilter = 5 << DPIO_CHV_PROP_COEFF_SHIFT |
5603 2 << DPIO_CHV_GAIN_CTRL_SHIFT;
5604 if (refclk == 100000)
5605 intcoeff = 11;
5606 else if (refclk == 38400)
5607 intcoeff = 10;
5608 else
5609 intcoeff = 9;
5610 loopfilter |= intcoeff << DPIO_CHV_INT_COEFF_SHIFT;
5611 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW6(port), loopfilter);
5612
5613 /* AFC Recal */
5614 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port),
5615 vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW14(port)) |
5616 DPIO_AFC_RECAL);
5617
5618 mutex_unlock(&dev_priv->dpio_lock);
5619}
5620
Daniel Vetterf47709a2013-03-28 10:42:02 +01005621static void i9xx_update_pll(struct intel_crtc *crtc,
5622 intel_clock_t *reduced_clock,
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005623 int num_connectors)
5624{
Daniel Vetterf47709a2013-03-28 10:42:02 +01005625 struct drm_device *dev = crtc->base.dev;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005626 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005627 u32 dpll;
5628 bool is_sdvo;
Daniel Vetterf47709a2013-03-28 10:42:02 +01005629 struct dpll *clock = &crtc->config.dpll;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005630
Daniel Vetterf47709a2013-03-28 10:42:02 +01005631 i9xx_update_pll_dividers(crtc, reduced_clock);
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05305632
Daniel Vetterf47709a2013-03-28 10:42:02 +01005633 is_sdvo = intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_SDVO) ||
5634 intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_HDMI);
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005635
5636 dpll = DPLL_VGA_MODE_DIS;
5637
Daniel Vetterf47709a2013-03-28 10:42:02 +01005638 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_LVDS))
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005639 dpll |= DPLLB_MODE_LVDS;
5640 else
5641 dpll |= DPLLB_MODE_DAC_SERIAL;
Daniel Vetter6cc5f342013-03-27 00:44:53 +01005642
Daniel Vetteref1b4602013-06-01 17:17:04 +02005643 if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev)) {
Daniel Vetter198a037f2013-04-19 11:14:37 +02005644 dpll |= (crtc->config.pixel_multiplier - 1)
5645 << SDVO_MULTIPLIER_SHIFT_HIRES;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005646 }
Daniel Vetter198a037f2013-04-19 11:14:37 +02005647
5648 if (is_sdvo)
Daniel Vetter4a33e482013-07-06 12:52:05 +02005649 dpll |= DPLL_SDVO_HIGH_SPEED;
Daniel Vetter198a037f2013-04-19 11:14:37 +02005650
Daniel Vetterf47709a2013-03-28 10:42:02 +01005651 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_DISPLAYPORT))
Daniel Vetter4a33e482013-07-06 12:52:05 +02005652 dpll |= DPLL_SDVO_HIGH_SPEED;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005653
5654 /* compute bitmask from p1 value */
5655 if (IS_PINEVIEW(dev))
5656 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW;
5657 else {
5658 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
5659 if (IS_G4X(dev) && reduced_clock)
5660 dpll |= (1 << (reduced_clock->p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
5661 }
5662 switch (clock->p2) {
5663 case 5:
5664 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
5665 break;
5666 case 7:
5667 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
5668 break;
5669 case 10:
5670 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
5671 break;
5672 case 14:
5673 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
5674 break;
5675 }
5676 if (INTEL_INFO(dev)->gen >= 4)
5677 dpll |= (6 << PLL_LOAD_PULSE_PHASE_SHIFT);
5678
Daniel Vetter09ede542013-04-30 14:01:45 +02005679 if (crtc->config.sdvo_tv_clock)
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005680 dpll |= PLL_REF_INPUT_TVCLKINBC;
Daniel Vetterf47709a2013-03-28 10:42:02 +01005681 else if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_LVDS) &&
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005682 intel_panel_use_ssc(dev_priv) && num_connectors < 2)
5683 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
5684 else
5685 dpll |= PLL_REF_INPUT_DREFCLK;
5686
5687 dpll |= DPLL_VCO_ENABLE;
Daniel Vetter8bcc2792013-06-05 13:34:28 +02005688 crtc->config.dpll_hw_state.dpll = dpll;
5689
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005690 if (INTEL_INFO(dev)->gen >= 4) {
Daniel Vetteref1b4602013-06-01 17:17:04 +02005691 u32 dpll_md = (crtc->config.pixel_multiplier - 1)
5692 << DPLL_MD_UDI_MULTIPLIER_SHIFT;
Daniel Vetter8bcc2792013-06-05 13:34:28 +02005693 crtc->config.dpll_hw_state.dpll_md = dpll_md;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005694 }
5695}
5696
Daniel Vetterf47709a2013-03-28 10:42:02 +01005697static void i8xx_update_pll(struct intel_crtc *crtc,
Daniel Vetterf47709a2013-03-28 10:42:02 +01005698 intel_clock_t *reduced_clock,
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005699 int num_connectors)
5700{
Daniel Vetterf47709a2013-03-28 10:42:02 +01005701 struct drm_device *dev = crtc->base.dev;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005702 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005703 u32 dpll;
Daniel Vetterf47709a2013-03-28 10:42:02 +01005704 struct dpll *clock = &crtc->config.dpll;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005705
Daniel Vetterf47709a2013-03-28 10:42:02 +01005706 i9xx_update_pll_dividers(crtc, reduced_clock);
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05305707
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005708 dpll = DPLL_VGA_MODE_DIS;
5709
Daniel Vetterf47709a2013-03-28 10:42:02 +01005710 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_LVDS)) {
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005711 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
5712 } else {
5713 if (clock->p1 == 2)
5714 dpll |= PLL_P1_DIVIDE_BY_TWO;
5715 else
5716 dpll |= (clock->p1 - 2) << DPLL_FPA01_P1_POST_DIV_SHIFT;
5717 if (clock->p2 == 4)
5718 dpll |= PLL_P2_DIVIDE_BY_4;
5719 }
5720
Daniel Vetter4a33e482013-07-06 12:52:05 +02005721 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_DVO))
5722 dpll |= DPLL_DVO_2X_MODE;
5723
Daniel Vetterf47709a2013-03-28 10:42:02 +01005724 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_LVDS) &&
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005725 intel_panel_use_ssc(dev_priv) && num_connectors < 2)
5726 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
5727 else
5728 dpll |= PLL_REF_INPUT_DREFCLK;
5729
5730 dpll |= DPLL_VCO_ENABLE;
Daniel Vetter8bcc2792013-06-05 13:34:28 +02005731 crtc->config.dpll_hw_state.dpll = dpll;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005732}
5733
Daniel Vetter8a654f32013-06-01 17:16:22 +02005734static void intel_set_pipe_timings(struct intel_crtc *intel_crtc)
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005735{
5736 struct drm_device *dev = intel_crtc->base.dev;
5737 struct drm_i915_private *dev_priv = dev->dev_private;
5738 enum pipe pipe = intel_crtc->pipe;
Daniel Vetter3b117c82013-04-17 20:15:07 +02005739 enum transcoder cpu_transcoder = intel_crtc->config.cpu_transcoder;
Daniel Vetter8a654f32013-06-01 17:16:22 +02005740 struct drm_display_mode *adjusted_mode =
5741 &intel_crtc->config.adjusted_mode;
Ville Syrjälä1caea6e2014-03-28 23:29:32 +02005742 uint32_t crtc_vtotal, crtc_vblank_end;
5743 int vsyncshift = 0;
Daniel Vetter4d8a62e2013-05-03 11:49:51 +02005744
5745 /* We need to be careful not to changed the adjusted mode, for otherwise
5746 * the hw state checker will get angry at the mismatch. */
5747 crtc_vtotal = adjusted_mode->crtc_vtotal;
5748 crtc_vblank_end = adjusted_mode->crtc_vblank_end;
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005749
Ville Syrjälä609aeac2014-03-28 23:29:30 +02005750 if (adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE) {
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005751 /* the chip adds 2 halflines automatically */
Daniel Vetter4d8a62e2013-05-03 11:49:51 +02005752 crtc_vtotal -= 1;
5753 crtc_vblank_end -= 1;
Ville Syrjälä609aeac2014-03-28 23:29:30 +02005754
5755 if (intel_pipe_has_type(&intel_crtc->base, INTEL_OUTPUT_SDVO))
5756 vsyncshift = (adjusted_mode->crtc_htotal - 1) / 2;
5757 else
5758 vsyncshift = adjusted_mode->crtc_hsync_start -
5759 adjusted_mode->crtc_htotal / 2;
Ville Syrjälä1caea6e2014-03-28 23:29:32 +02005760 if (vsyncshift < 0)
5761 vsyncshift += adjusted_mode->crtc_htotal;
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005762 }
5763
5764 if (INTEL_INFO(dev)->gen > 3)
Paulo Zanonife2b8f92012-10-23 18:30:02 -02005765 I915_WRITE(VSYNCSHIFT(cpu_transcoder), vsyncshift);
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005766
Paulo Zanonife2b8f92012-10-23 18:30:02 -02005767 I915_WRITE(HTOTAL(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005768 (adjusted_mode->crtc_hdisplay - 1) |
5769 ((adjusted_mode->crtc_htotal - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02005770 I915_WRITE(HBLANK(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005771 (adjusted_mode->crtc_hblank_start - 1) |
5772 ((adjusted_mode->crtc_hblank_end - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02005773 I915_WRITE(HSYNC(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005774 (adjusted_mode->crtc_hsync_start - 1) |
5775 ((adjusted_mode->crtc_hsync_end - 1) << 16));
5776
Paulo Zanonife2b8f92012-10-23 18:30:02 -02005777 I915_WRITE(VTOTAL(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005778 (adjusted_mode->crtc_vdisplay - 1) |
Daniel Vetter4d8a62e2013-05-03 11:49:51 +02005779 ((crtc_vtotal - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02005780 I915_WRITE(VBLANK(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005781 (adjusted_mode->crtc_vblank_start - 1) |
Daniel Vetter4d8a62e2013-05-03 11:49:51 +02005782 ((crtc_vblank_end - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02005783 I915_WRITE(VSYNC(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005784 (adjusted_mode->crtc_vsync_start - 1) |
5785 ((adjusted_mode->crtc_vsync_end - 1) << 16));
5786
Paulo Zanonib5e508d2012-10-24 11:34:43 -02005787 /* Workaround: when the EDP input selection is B, the VTOTAL_B must be
5788 * programmed with the VTOTAL_EDP value. Same for VTOTAL_C. This is
5789 * documented on the DDI_FUNC_CTL register description, EDP Input Select
5790 * bits. */
5791 if (IS_HASWELL(dev) && cpu_transcoder == TRANSCODER_EDP &&
5792 (pipe == PIPE_B || pipe == PIPE_C))
5793 I915_WRITE(VTOTAL(pipe), I915_READ(VTOTAL(cpu_transcoder)));
5794
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005795 /* pipesrc controls the size that is scaled from, which should
5796 * always be the user's requested size.
5797 */
5798 I915_WRITE(PIPESRC(pipe),
Ville Syrjälä37327ab2013-09-04 18:25:28 +03005799 ((intel_crtc->config.pipe_src_w - 1) << 16) |
5800 (intel_crtc->config.pipe_src_h - 1));
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005801}
5802
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02005803static void intel_get_pipe_timings(struct intel_crtc *crtc,
5804 struct intel_crtc_config *pipe_config)
5805{
5806 struct drm_device *dev = crtc->base.dev;
5807 struct drm_i915_private *dev_priv = dev->dev_private;
5808 enum transcoder cpu_transcoder = pipe_config->cpu_transcoder;
5809 uint32_t tmp;
5810
5811 tmp = I915_READ(HTOTAL(cpu_transcoder));
5812 pipe_config->adjusted_mode.crtc_hdisplay = (tmp & 0xffff) + 1;
5813 pipe_config->adjusted_mode.crtc_htotal = ((tmp >> 16) & 0xffff) + 1;
5814 tmp = I915_READ(HBLANK(cpu_transcoder));
5815 pipe_config->adjusted_mode.crtc_hblank_start = (tmp & 0xffff) + 1;
5816 pipe_config->adjusted_mode.crtc_hblank_end = ((tmp >> 16) & 0xffff) + 1;
5817 tmp = I915_READ(HSYNC(cpu_transcoder));
5818 pipe_config->adjusted_mode.crtc_hsync_start = (tmp & 0xffff) + 1;
5819 pipe_config->adjusted_mode.crtc_hsync_end = ((tmp >> 16) & 0xffff) + 1;
5820
5821 tmp = I915_READ(VTOTAL(cpu_transcoder));
5822 pipe_config->adjusted_mode.crtc_vdisplay = (tmp & 0xffff) + 1;
5823 pipe_config->adjusted_mode.crtc_vtotal = ((tmp >> 16) & 0xffff) + 1;
5824 tmp = I915_READ(VBLANK(cpu_transcoder));
5825 pipe_config->adjusted_mode.crtc_vblank_start = (tmp & 0xffff) + 1;
5826 pipe_config->adjusted_mode.crtc_vblank_end = ((tmp >> 16) & 0xffff) + 1;
5827 tmp = I915_READ(VSYNC(cpu_transcoder));
5828 pipe_config->adjusted_mode.crtc_vsync_start = (tmp & 0xffff) + 1;
5829 pipe_config->adjusted_mode.crtc_vsync_end = ((tmp >> 16) & 0xffff) + 1;
5830
5831 if (I915_READ(PIPECONF(cpu_transcoder)) & PIPECONF_INTERLACE_MASK) {
5832 pipe_config->adjusted_mode.flags |= DRM_MODE_FLAG_INTERLACE;
5833 pipe_config->adjusted_mode.crtc_vtotal += 1;
5834 pipe_config->adjusted_mode.crtc_vblank_end += 1;
5835 }
5836
5837 tmp = I915_READ(PIPESRC(crtc->pipe));
Ville Syrjälä37327ab2013-09-04 18:25:28 +03005838 pipe_config->pipe_src_h = (tmp & 0xffff) + 1;
5839 pipe_config->pipe_src_w = ((tmp >> 16) & 0xffff) + 1;
5840
5841 pipe_config->requested_mode.vdisplay = pipe_config->pipe_src_h;
5842 pipe_config->requested_mode.hdisplay = pipe_config->pipe_src_w;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02005843}
5844
Daniel Vetterf6a83282014-02-11 15:28:57 -08005845void intel_mode_from_pipe_config(struct drm_display_mode *mode,
5846 struct intel_crtc_config *pipe_config)
Jesse Barnesbabea612013-06-26 18:57:38 +03005847{
Daniel Vetterf6a83282014-02-11 15:28:57 -08005848 mode->hdisplay = pipe_config->adjusted_mode.crtc_hdisplay;
5849 mode->htotal = pipe_config->adjusted_mode.crtc_htotal;
5850 mode->hsync_start = pipe_config->adjusted_mode.crtc_hsync_start;
5851 mode->hsync_end = pipe_config->adjusted_mode.crtc_hsync_end;
Jesse Barnesbabea612013-06-26 18:57:38 +03005852
Daniel Vetterf6a83282014-02-11 15:28:57 -08005853 mode->vdisplay = pipe_config->adjusted_mode.crtc_vdisplay;
5854 mode->vtotal = pipe_config->adjusted_mode.crtc_vtotal;
5855 mode->vsync_start = pipe_config->adjusted_mode.crtc_vsync_start;
5856 mode->vsync_end = pipe_config->adjusted_mode.crtc_vsync_end;
Jesse Barnesbabea612013-06-26 18:57:38 +03005857
Daniel Vetterf6a83282014-02-11 15:28:57 -08005858 mode->flags = pipe_config->adjusted_mode.flags;
Jesse Barnesbabea612013-06-26 18:57:38 +03005859
Daniel Vetterf6a83282014-02-11 15:28:57 -08005860 mode->clock = pipe_config->adjusted_mode.crtc_clock;
5861 mode->flags |= pipe_config->adjusted_mode.flags;
Jesse Barnesbabea612013-06-26 18:57:38 +03005862}
5863
Daniel Vetter84b046f2013-02-19 18:48:54 +01005864static void i9xx_set_pipeconf(struct intel_crtc *intel_crtc)
5865{
5866 struct drm_device *dev = intel_crtc->base.dev;
5867 struct drm_i915_private *dev_priv = dev->dev_private;
5868 uint32_t pipeconf;
5869
Daniel Vetter9f11a9e2013-06-13 00:54:58 +02005870 pipeconf = 0;
Daniel Vetter84b046f2013-02-19 18:48:54 +01005871
Daniel Vetter67c72a12013-09-24 11:46:14 +02005872 if (dev_priv->quirks & QUIRK_PIPEA_FORCE &&
5873 I915_READ(PIPECONF(intel_crtc->pipe)) & PIPECONF_ENABLE)
5874 pipeconf |= PIPECONF_ENABLE;
5875
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03005876 if (intel_crtc->config.double_wide)
5877 pipeconf |= PIPECONF_DOUBLE_WIDE;
Daniel Vetter84b046f2013-02-19 18:48:54 +01005878
Daniel Vetterff9ce462013-04-24 14:57:17 +02005879 /* only g4x and later have fancy bpc/dither controls */
5880 if (IS_G4X(dev) || IS_VALLEYVIEW(dev)) {
Daniel Vetterff9ce462013-04-24 14:57:17 +02005881 /* Bspec claims that we can't use dithering for 30bpp pipes. */
5882 if (intel_crtc->config.dither && intel_crtc->config.pipe_bpp != 30)
5883 pipeconf |= PIPECONF_DITHER_EN |
5884 PIPECONF_DITHER_TYPE_SP;
5885
5886 switch (intel_crtc->config.pipe_bpp) {
5887 case 18:
5888 pipeconf |= PIPECONF_6BPC;
5889 break;
5890 case 24:
5891 pipeconf |= PIPECONF_8BPC;
5892 break;
5893 case 30:
5894 pipeconf |= PIPECONF_10BPC;
5895 break;
5896 default:
5897 /* Case prevented by intel_choose_pipe_bpp_dither. */
5898 BUG();
Daniel Vetter84b046f2013-02-19 18:48:54 +01005899 }
5900 }
5901
5902 if (HAS_PIPE_CXSR(dev)) {
5903 if (intel_crtc->lowfreq_avail) {
5904 DRM_DEBUG_KMS("enabling CxSR downclocking\n");
5905 pipeconf |= PIPECONF_CXSR_DOWNCLOCK;
5906 } else {
5907 DRM_DEBUG_KMS("disabling CxSR downclocking\n");
Daniel Vetter84b046f2013-02-19 18:48:54 +01005908 }
5909 }
5910
Ville Syrjäläefc2cff2014-03-28 23:29:31 +02005911 if (intel_crtc->config.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE) {
5912 if (INTEL_INFO(dev)->gen < 4 ||
5913 intel_pipe_has_type(&intel_crtc->base, INTEL_OUTPUT_SDVO))
5914 pipeconf |= PIPECONF_INTERLACE_W_FIELD_INDICATION;
5915 else
5916 pipeconf |= PIPECONF_INTERLACE_W_SYNC_SHIFT;
5917 } else
Daniel Vetter84b046f2013-02-19 18:48:54 +01005918 pipeconf |= PIPECONF_PROGRESSIVE;
5919
Daniel Vetter9f11a9e2013-06-13 00:54:58 +02005920 if (IS_VALLEYVIEW(dev) && intel_crtc->config.limited_color_range)
5921 pipeconf |= PIPECONF_COLOR_RANGE_SELECT;
Ville Syrjälä9c8e09b2013-04-02 16:10:09 +03005922
Daniel Vetter84b046f2013-02-19 18:48:54 +01005923 I915_WRITE(PIPECONF(intel_crtc->pipe), pipeconf);
5924 POSTING_READ(PIPECONF(intel_crtc->pipe));
5925}
5926
Eric Anholtf564048e2011-03-30 13:01:02 -07005927static int i9xx_crtc_mode_set(struct drm_crtc *crtc,
Eric Anholtf564048e2011-03-30 13:01:02 -07005928 int x, int y,
Daniel Vetter94352cf2012-07-05 22:51:56 +02005929 struct drm_framebuffer *fb)
Jesse Barnes79e53942008-11-07 14:24:08 -08005930{
5931 struct drm_device *dev = crtc->dev;
5932 struct drm_i915_private *dev_priv = dev->dev_private;
5933 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Eric Anholtc751ce42010-03-25 11:48:48 -07005934 int refclk, num_connectors = 0;
Jesse Barnes652c3932009-08-17 13:31:43 -07005935 intel_clock_t clock, reduced_clock;
Daniel Vettera16af7212013-04-30 14:01:44 +02005936 bool ok, has_reduced_clock = false;
Jani Nikulae9fd1c02013-08-27 15:12:23 +03005937 bool is_lvds = false, is_dsi = false;
Chris Wilson5eddb702010-09-11 13:48:45 +01005938 struct intel_encoder *encoder;
Ma Lingd4906092009-03-18 20:13:27 +08005939 const intel_limit_t *limit;
Jesse Barnes79e53942008-11-07 14:24:08 -08005940
Daniel Vetter6c2b7c122012-07-05 09:50:24 +02005941 for_each_encoder_on_crtc(dev, crtc, encoder) {
Chris Wilson5eddb702010-09-11 13:48:45 +01005942 switch (encoder->type) {
Jesse Barnes79e53942008-11-07 14:24:08 -08005943 case INTEL_OUTPUT_LVDS:
5944 is_lvds = true;
5945 break;
Jani Nikulae9fd1c02013-08-27 15:12:23 +03005946 case INTEL_OUTPUT_DSI:
5947 is_dsi = true;
5948 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08005949 }
Kristian Høgsberg43565a02009-02-13 20:56:52 -05005950
Eric Anholtc751ce42010-03-25 11:48:48 -07005951 num_connectors++;
Jesse Barnes79e53942008-11-07 14:24:08 -08005952 }
5953
Jani Nikulaf2335332013-09-13 11:03:09 +03005954 if (is_dsi)
Daniel Vetter5b18e572014-04-24 23:55:06 +02005955 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08005956
Jani Nikulaf2335332013-09-13 11:03:09 +03005957 if (!intel_crtc->config.clock_set) {
5958 refclk = i9xx_get_refclk(crtc, num_connectors);
5959
Jani Nikulae9fd1c02013-08-27 15:12:23 +03005960 /*
5961 * Returns a set of divisors for the desired target clock with
5962 * the given refclk, or FALSE. The returned values represent
5963 * the clock equation: reflck * (5 * (m1 + 2) + (m2 + 2)) / (n +
5964 * 2) / p1 / p2.
5965 */
5966 limit = intel_limit(crtc, refclk);
5967 ok = dev_priv->display.find_dpll(limit, crtc,
5968 intel_crtc->config.port_clock,
5969 refclk, NULL, &clock);
Jani Nikulaf2335332013-09-13 11:03:09 +03005970 if (!ok) {
Jani Nikulae9fd1c02013-08-27 15:12:23 +03005971 DRM_ERROR("Couldn't find PLL settings for mode!\n");
5972 return -EINVAL;
5973 }
Eric Anholtf564048e2011-03-30 13:01:02 -07005974
Jani Nikulaf2335332013-09-13 11:03:09 +03005975 if (is_lvds && dev_priv->lvds_downclock_avail) {
5976 /*
5977 * Ensure we match the reduced clock's P to the target
5978 * clock. If the clocks don't match, we can't switch
5979 * the display clock by using the FP0/FP1. In such case
5980 * we will disable the LVDS downclock feature.
5981 */
5982 has_reduced_clock =
5983 dev_priv->display.find_dpll(limit, crtc,
5984 dev_priv->lvds_downclock,
5985 refclk, &clock,
5986 &reduced_clock);
5987 }
5988 /* Compat-code for transition, will disappear. */
Daniel Vetterf47709a2013-03-28 10:42:02 +01005989 intel_crtc->config.dpll.n = clock.n;
5990 intel_crtc->config.dpll.m1 = clock.m1;
5991 intel_crtc->config.dpll.m2 = clock.m2;
5992 intel_crtc->config.dpll.p1 = clock.p1;
5993 intel_crtc->config.dpll.p2 = clock.p2;
5994 }
Eric Anholtf564048e2011-03-30 13:01:02 -07005995
Jani Nikulae9fd1c02013-08-27 15:12:23 +03005996 if (IS_GEN2(dev)) {
Daniel Vetter8a654f32013-06-01 17:16:22 +02005997 i8xx_update_pll(intel_crtc,
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05305998 has_reduced_clock ? &reduced_clock : NULL,
5999 num_connectors);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03006000 } else if (IS_CHERRYVIEW(dev)) {
6001 chv_update_pll(intel_crtc);
Jani Nikulae9fd1c02013-08-27 15:12:23 +03006002 } else if (IS_VALLEYVIEW(dev)) {
Jani Nikulaf2335332013-09-13 11:03:09 +03006003 vlv_update_pll(intel_crtc);
Jani Nikulae9fd1c02013-08-27 15:12:23 +03006004 } else {
Daniel Vetterf47709a2013-03-28 10:42:02 +01006005 i9xx_update_pll(intel_crtc,
Daniel Vettereb1cbe42012-03-28 23:12:16 +02006006 has_reduced_clock ? &reduced_clock : NULL,
Robin Schroereba905b2014-05-18 02:24:50 +02006007 num_connectors);
Jani Nikulae9fd1c02013-08-27 15:12:23 +03006008 }
Eric Anholtf564048e2011-03-30 13:01:02 -07006009
Daniel Vetterc8f7a0d2014-04-24 23:55:04 +02006010 return 0;
Eric Anholtf564048e2011-03-30 13:01:02 -07006011}
6012
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02006013static void i9xx_get_pfit_config(struct intel_crtc *crtc,
6014 struct intel_crtc_config *pipe_config)
6015{
6016 struct drm_device *dev = crtc->base.dev;
6017 struct drm_i915_private *dev_priv = dev->dev_private;
6018 uint32_t tmp;
6019
Ville Syrjälädc9e7dec2014-01-10 14:06:45 +02006020 if (INTEL_INFO(dev)->gen <= 3 && (IS_I830(dev) || !IS_MOBILE(dev)))
6021 return;
6022
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02006023 tmp = I915_READ(PFIT_CONTROL);
Daniel Vetter06922822013-07-11 13:35:40 +02006024 if (!(tmp & PFIT_ENABLE))
6025 return;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02006026
Daniel Vetter06922822013-07-11 13:35:40 +02006027 /* Check whether the pfit is attached to our pipe. */
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02006028 if (INTEL_INFO(dev)->gen < 4) {
6029 if (crtc->pipe != PIPE_B)
6030 return;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02006031 } else {
6032 if ((tmp & PFIT_PIPE_MASK) != (crtc->pipe << PFIT_PIPE_SHIFT))
6033 return;
6034 }
6035
Daniel Vetter06922822013-07-11 13:35:40 +02006036 pipe_config->gmch_pfit.control = tmp;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02006037 pipe_config->gmch_pfit.pgm_ratios = I915_READ(PFIT_PGM_RATIOS);
6038 if (INTEL_INFO(dev)->gen < 5)
6039 pipe_config->gmch_pfit.lvds_border_bits =
6040 I915_READ(LVDS) & LVDS_BORDER_ENABLE;
6041}
6042
Jesse Barnesacbec812013-09-20 11:29:32 -07006043static void vlv_crtc_clock_get(struct intel_crtc *crtc,
6044 struct intel_crtc_config *pipe_config)
6045{
6046 struct drm_device *dev = crtc->base.dev;
6047 struct drm_i915_private *dev_priv = dev->dev_private;
6048 int pipe = pipe_config->cpu_transcoder;
6049 intel_clock_t clock;
6050 u32 mdiv;
Chris Wilson662c6ec2013-09-25 14:24:01 -07006051 int refclk = 100000;
Jesse Barnesacbec812013-09-20 11:29:32 -07006052
6053 mutex_lock(&dev_priv->dpio_lock);
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006054 mdiv = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW3(pipe));
Jesse Barnesacbec812013-09-20 11:29:32 -07006055 mutex_unlock(&dev_priv->dpio_lock);
6056
6057 clock.m1 = (mdiv >> DPIO_M1DIV_SHIFT) & 7;
6058 clock.m2 = mdiv & DPIO_M2DIV_MASK;
6059 clock.n = (mdiv >> DPIO_N_SHIFT) & 0xf;
6060 clock.p1 = (mdiv >> DPIO_P1_SHIFT) & 7;
6061 clock.p2 = (mdiv >> DPIO_P2_SHIFT) & 0x1f;
6062
Ville Syrjäläf6466282013-10-14 14:50:31 +03006063 vlv_clock(refclk, &clock);
Jesse Barnesacbec812013-09-20 11:29:32 -07006064
Ville Syrjäläf6466282013-10-14 14:50:31 +03006065 /* clock.dot is the fast clock */
6066 pipe_config->port_clock = clock.dot / 5;
Jesse Barnesacbec812013-09-20 11:29:32 -07006067}
6068
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006069static void i9xx_get_plane_config(struct intel_crtc *crtc,
6070 struct intel_plane_config *plane_config)
6071{
6072 struct drm_device *dev = crtc->base.dev;
6073 struct drm_i915_private *dev_priv = dev->dev_private;
6074 u32 val, base, offset;
6075 int pipe = crtc->pipe, plane = crtc->plane;
6076 int fourcc, pixel_format;
6077 int aligned_height;
6078
Dave Airlie66e514c2014-04-03 07:51:54 +10006079 crtc->base.primary->fb = kzalloc(sizeof(struct intel_framebuffer), GFP_KERNEL);
6080 if (!crtc->base.primary->fb) {
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006081 DRM_DEBUG_KMS("failed to alloc fb\n");
6082 return;
6083 }
6084
6085 val = I915_READ(DSPCNTR(plane));
6086
6087 if (INTEL_INFO(dev)->gen >= 4)
6088 if (val & DISPPLANE_TILED)
6089 plane_config->tiled = true;
6090
6091 pixel_format = val & DISPPLANE_PIXFORMAT_MASK;
6092 fourcc = intel_format_to_fourcc(pixel_format);
Dave Airlie66e514c2014-04-03 07:51:54 +10006093 crtc->base.primary->fb->pixel_format = fourcc;
6094 crtc->base.primary->fb->bits_per_pixel =
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006095 drm_format_plane_cpp(fourcc, 0) * 8;
6096
6097 if (INTEL_INFO(dev)->gen >= 4) {
6098 if (plane_config->tiled)
6099 offset = I915_READ(DSPTILEOFF(plane));
6100 else
6101 offset = I915_READ(DSPLINOFF(plane));
6102 base = I915_READ(DSPSURF(plane)) & 0xfffff000;
6103 } else {
6104 base = I915_READ(DSPADDR(plane));
6105 }
6106 plane_config->base = base;
6107
6108 val = I915_READ(PIPESRC(pipe));
Dave Airlie66e514c2014-04-03 07:51:54 +10006109 crtc->base.primary->fb->width = ((val >> 16) & 0xfff) + 1;
6110 crtc->base.primary->fb->height = ((val >> 0) & 0xfff) + 1;
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006111
6112 val = I915_READ(DSPSTRIDE(pipe));
Dave Airlie66e514c2014-04-03 07:51:54 +10006113 crtc->base.primary->fb->pitches[0] = val & 0xffffff80;
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006114
Dave Airlie66e514c2014-04-03 07:51:54 +10006115 aligned_height = intel_align_height(dev, crtc->base.primary->fb->height,
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006116 plane_config->tiled);
6117
Dave Airlie66e514c2014-04-03 07:51:54 +10006118 plane_config->size = ALIGN(crtc->base.primary->fb->pitches[0] *
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006119 aligned_height, PAGE_SIZE);
6120
6121 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 +10006122 pipe, plane, crtc->base.primary->fb->width,
6123 crtc->base.primary->fb->height,
6124 crtc->base.primary->fb->bits_per_pixel, base,
6125 crtc->base.primary->fb->pitches[0],
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006126 plane_config->size);
6127
6128}
6129
Ville Syrjälä70b23a92014-04-09 13:28:22 +03006130static void chv_crtc_clock_get(struct intel_crtc *crtc,
6131 struct intel_crtc_config *pipe_config)
6132{
6133 struct drm_device *dev = crtc->base.dev;
6134 struct drm_i915_private *dev_priv = dev->dev_private;
6135 int pipe = pipe_config->cpu_transcoder;
6136 enum dpio_channel port = vlv_pipe_to_channel(pipe);
6137 intel_clock_t clock;
6138 u32 cmn_dw13, pll_dw0, pll_dw1, pll_dw2;
6139 int refclk = 100000;
6140
6141 mutex_lock(&dev_priv->dpio_lock);
6142 cmn_dw13 = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW13(port));
6143 pll_dw0 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW0(port));
6144 pll_dw1 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW1(port));
6145 pll_dw2 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW2(port));
6146 mutex_unlock(&dev_priv->dpio_lock);
6147
6148 clock.m1 = (pll_dw1 & 0x7) == DPIO_CHV_M1_DIV_BY_2 ? 2 : 0;
6149 clock.m2 = ((pll_dw0 & 0xff) << 22) | (pll_dw2 & 0x3fffff);
6150 clock.n = (pll_dw1 >> DPIO_CHV_N_DIV_SHIFT) & 0xf;
6151 clock.p1 = (cmn_dw13 >> DPIO_CHV_P1_DIV_SHIFT) & 0x7;
6152 clock.p2 = (cmn_dw13 >> DPIO_CHV_P2_DIV_SHIFT) & 0x1f;
6153
6154 chv_clock(refclk, &clock);
6155
6156 /* clock.dot is the fast clock */
6157 pipe_config->port_clock = clock.dot / 5;
6158}
6159
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01006160static bool i9xx_get_pipe_config(struct intel_crtc *crtc,
6161 struct intel_crtc_config *pipe_config)
6162{
6163 struct drm_device *dev = crtc->base.dev;
6164 struct drm_i915_private *dev_priv = dev->dev_private;
6165 uint32_t tmp;
6166
Imre Deakb5482bd2014-03-05 16:20:55 +02006167 if (!intel_display_power_enabled(dev_priv,
6168 POWER_DOMAIN_PIPE(crtc->pipe)))
6169 return false;
6170
Daniel Vettere143a212013-07-04 12:01:15 +02006171 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +02006172 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
Daniel Vettereccb1402013-05-22 00:50:22 +02006173
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01006174 tmp = I915_READ(PIPECONF(crtc->pipe));
6175 if (!(tmp & PIPECONF_ENABLE))
6176 return false;
6177
Ville Syrjälä42571ae2013-09-06 23:29:00 +03006178 if (IS_G4X(dev) || IS_VALLEYVIEW(dev)) {
6179 switch (tmp & PIPECONF_BPC_MASK) {
6180 case PIPECONF_6BPC:
6181 pipe_config->pipe_bpp = 18;
6182 break;
6183 case PIPECONF_8BPC:
6184 pipe_config->pipe_bpp = 24;
6185 break;
6186 case PIPECONF_10BPC:
6187 pipe_config->pipe_bpp = 30;
6188 break;
6189 default:
6190 break;
6191 }
6192 }
6193
Daniel Vetterb5a9fa02014-04-24 23:54:49 +02006194 if (IS_VALLEYVIEW(dev) && (tmp & PIPECONF_COLOR_RANGE_SELECT))
6195 pipe_config->limited_color_range = true;
6196
Ville Syrjälä282740f2013-09-04 18:30:03 +03006197 if (INTEL_INFO(dev)->gen < 4)
6198 pipe_config->double_wide = tmp & PIPECONF_DOUBLE_WIDE;
6199
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02006200 intel_get_pipe_timings(crtc, pipe_config);
6201
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02006202 i9xx_get_pfit_config(crtc, pipe_config);
6203
Daniel Vetter6c49f242013-06-06 12:45:25 +02006204 if (INTEL_INFO(dev)->gen >= 4) {
6205 tmp = I915_READ(DPLL_MD(crtc->pipe));
6206 pipe_config->pixel_multiplier =
6207 ((tmp & DPLL_MD_UDI_MULTIPLIER_MASK)
6208 >> DPLL_MD_UDI_MULTIPLIER_SHIFT) + 1;
Daniel Vetter8bcc2792013-06-05 13:34:28 +02006209 pipe_config->dpll_hw_state.dpll_md = tmp;
Daniel Vetter6c49f242013-06-06 12:45:25 +02006210 } else if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev)) {
6211 tmp = I915_READ(DPLL(crtc->pipe));
6212 pipe_config->pixel_multiplier =
6213 ((tmp & SDVO_MULTIPLIER_MASK)
6214 >> SDVO_MULTIPLIER_SHIFT_HIRES) + 1;
6215 } else {
6216 /* Note that on i915G/GM the pixel multiplier is in the sdvo
6217 * port and will be fixed up in the encoder->get_config
6218 * function. */
6219 pipe_config->pixel_multiplier = 1;
6220 }
Daniel Vetter8bcc2792013-06-05 13:34:28 +02006221 pipe_config->dpll_hw_state.dpll = I915_READ(DPLL(crtc->pipe));
6222 if (!IS_VALLEYVIEW(dev)) {
6223 pipe_config->dpll_hw_state.fp0 = I915_READ(FP0(crtc->pipe));
6224 pipe_config->dpll_hw_state.fp1 = I915_READ(FP1(crtc->pipe));
Ville Syrjälä165e9012013-06-26 17:44:15 +03006225 } else {
6226 /* Mask out read-only status bits. */
6227 pipe_config->dpll_hw_state.dpll &= ~(DPLL_LOCK_VLV |
6228 DPLL_PORTC_READY_MASK |
6229 DPLL_PORTB_READY_MASK);
Daniel Vetter8bcc2792013-06-05 13:34:28 +02006230 }
Daniel Vetter6c49f242013-06-06 12:45:25 +02006231
Ville Syrjälä70b23a92014-04-09 13:28:22 +03006232 if (IS_CHERRYVIEW(dev))
6233 chv_crtc_clock_get(crtc, pipe_config);
6234 else if (IS_VALLEYVIEW(dev))
Jesse Barnesacbec812013-09-20 11:29:32 -07006235 vlv_crtc_clock_get(crtc, pipe_config);
6236 else
6237 i9xx_crtc_clock_get(crtc, pipe_config);
Ville Syrjälä18442d02013-09-13 16:00:08 +03006238
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01006239 return true;
6240}
6241
Paulo Zanonidde86e22012-12-01 12:04:25 -02006242static void ironlake_init_pch_refclk(struct drm_device *dev)
Jesse Barnes13d83a62011-08-03 12:59:20 -07006243{
6244 struct drm_i915_private *dev_priv = dev->dev_private;
6245 struct drm_mode_config *mode_config = &dev->mode_config;
Jesse Barnes13d83a62011-08-03 12:59:20 -07006246 struct intel_encoder *encoder;
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006247 u32 val, final;
Jesse Barnes13d83a62011-08-03 12:59:20 -07006248 bool has_lvds = false;
Keith Packard199e5d72011-09-22 12:01:57 -07006249 bool has_cpu_edp = false;
Keith Packard199e5d72011-09-22 12:01:57 -07006250 bool has_panel = false;
Keith Packard99eb6a02011-09-26 14:29:12 -07006251 bool has_ck505 = false;
6252 bool can_ssc = false;
Jesse Barnes13d83a62011-08-03 12:59:20 -07006253
6254 /* We need to take the global config into account */
Keith Packard199e5d72011-09-22 12:01:57 -07006255 list_for_each_entry(encoder, &mode_config->encoder_list,
6256 base.head) {
6257 switch (encoder->type) {
6258 case INTEL_OUTPUT_LVDS:
6259 has_panel = true;
6260 has_lvds = true;
6261 break;
6262 case INTEL_OUTPUT_EDP:
6263 has_panel = true;
Imre Deak2de69052013-05-08 13:14:04 +03006264 if (enc_to_dig_port(&encoder->base)->port == PORT_A)
Keith Packard199e5d72011-09-22 12:01:57 -07006265 has_cpu_edp = true;
6266 break;
Jesse Barnes13d83a62011-08-03 12:59:20 -07006267 }
6268 }
6269
Keith Packard99eb6a02011-09-26 14:29:12 -07006270 if (HAS_PCH_IBX(dev)) {
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03006271 has_ck505 = dev_priv->vbt.display_clock_mode;
Keith Packard99eb6a02011-09-26 14:29:12 -07006272 can_ssc = has_ck505;
6273 } else {
6274 has_ck505 = false;
6275 can_ssc = true;
6276 }
6277
Imre Deak2de69052013-05-08 13:14:04 +03006278 DRM_DEBUG_KMS("has_panel %d has_lvds %d has_ck505 %d\n",
6279 has_panel, has_lvds, has_ck505);
Jesse Barnes13d83a62011-08-03 12:59:20 -07006280
6281 /* Ironlake: try to setup display ref clock before DPLL
6282 * enabling. This is only under driver's control after
6283 * PCH B stepping, previous chipset stepping should be
6284 * ignoring this setting.
6285 */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006286 val = I915_READ(PCH_DREF_CONTROL);
Jesse Barnes13d83a62011-08-03 12:59:20 -07006287
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006288 /* As we must carefully and slowly disable/enable each source in turn,
6289 * compute the final state we want first and check if we need to
6290 * make any changes at all.
6291 */
6292 final = val;
6293 final &= ~DREF_NONSPREAD_SOURCE_MASK;
Keith Packard99eb6a02011-09-26 14:29:12 -07006294 if (has_ck505)
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006295 final |= DREF_NONSPREAD_CK505_ENABLE;
Keith Packard99eb6a02011-09-26 14:29:12 -07006296 else
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006297 final |= DREF_NONSPREAD_SOURCE_ENABLE;
6298
6299 final &= ~DREF_SSC_SOURCE_MASK;
6300 final &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
6301 final &= ~DREF_SSC1_ENABLE;
Jesse Barnes13d83a62011-08-03 12:59:20 -07006302
Keith Packard199e5d72011-09-22 12:01:57 -07006303 if (has_panel) {
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006304 final |= DREF_SSC_SOURCE_ENABLE;
6305
6306 if (intel_panel_use_ssc(dev_priv) && can_ssc)
6307 final |= DREF_SSC1_ENABLE;
6308
6309 if (has_cpu_edp) {
6310 if (intel_panel_use_ssc(dev_priv) && can_ssc)
6311 final |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD;
6312 else
6313 final |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD;
6314 } else
6315 final |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
6316 } else {
6317 final |= DREF_SSC_SOURCE_DISABLE;
6318 final |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
6319 }
6320
6321 if (final == val)
6322 return;
6323
6324 /* Always enable nonspread source */
6325 val &= ~DREF_NONSPREAD_SOURCE_MASK;
6326
6327 if (has_ck505)
6328 val |= DREF_NONSPREAD_CK505_ENABLE;
6329 else
6330 val |= DREF_NONSPREAD_SOURCE_ENABLE;
6331
6332 if (has_panel) {
6333 val &= ~DREF_SSC_SOURCE_MASK;
6334 val |= DREF_SSC_SOURCE_ENABLE;
Jesse Barnes13d83a62011-08-03 12:59:20 -07006335
Keith Packard199e5d72011-09-22 12:01:57 -07006336 /* SSC must be turned on before enabling the CPU output */
Keith Packard99eb6a02011-09-26 14:29:12 -07006337 if (intel_panel_use_ssc(dev_priv) && can_ssc) {
Keith Packard199e5d72011-09-22 12:01:57 -07006338 DRM_DEBUG_KMS("Using SSC on panel\n");
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006339 val |= DREF_SSC1_ENABLE;
Daniel Vettere77166b2012-03-30 22:14:05 +02006340 } else
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006341 val &= ~DREF_SSC1_ENABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07006342
6343 /* Get SSC going before enabling the outputs */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006344 I915_WRITE(PCH_DREF_CONTROL, val);
Keith Packard199e5d72011-09-22 12:01:57 -07006345 POSTING_READ(PCH_DREF_CONTROL);
6346 udelay(200);
6347
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006348 val &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
Jesse Barnes13d83a62011-08-03 12:59:20 -07006349
6350 /* Enable CPU source on CPU attached eDP */
Keith Packard199e5d72011-09-22 12:01:57 -07006351 if (has_cpu_edp) {
Keith Packard99eb6a02011-09-26 14:29:12 -07006352 if (intel_panel_use_ssc(dev_priv) && can_ssc) {
Keith Packard199e5d72011-09-22 12:01:57 -07006353 DRM_DEBUG_KMS("Using SSC on eDP\n");
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006354 val |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD;
Robin Schroereba905b2014-05-18 02:24:50 +02006355 } else
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006356 val |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD;
Keith Packard199e5d72011-09-22 12:01:57 -07006357 } else
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006358 val |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07006359
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006360 I915_WRITE(PCH_DREF_CONTROL, val);
Keith Packard199e5d72011-09-22 12:01:57 -07006361 POSTING_READ(PCH_DREF_CONTROL);
6362 udelay(200);
6363 } else {
6364 DRM_DEBUG_KMS("Disabling SSC entirely\n");
6365
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006366 val &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
Keith Packard199e5d72011-09-22 12:01:57 -07006367
6368 /* Turn off CPU output */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006369 val |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07006370
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006371 I915_WRITE(PCH_DREF_CONTROL, val);
Keith Packard199e5d72011-09-22 12:01:57 -07006372 POSTING_READ(PCH_DREF_CONTROL);
6373 udelay(200);
6374
6375 /* Turn off the SSC source */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006376 val &= ~DREF_SSC_SOURCE_MASK;
6377 val |= DREF_SSC_SOURCE_DISABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07006378
6379 /* Turn off SSC1 */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006380 val &= ~DREF_SSC1_ENABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07006381
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006382 I915_WRITE(PCH_DREF_CONTROL, val);
Jesse Barnes13d83a62011-08-03 12:59:20 -07006383 POSTING_READ(PCH_DREF_CONTROL);
6384 udelay(200);
6385 }
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006386
6387 BUG_ON(val != final);
Jesse Barnes13d83a62011-08-03 12:59:20 -07006388}
6389
Paulo Zanonif31f2d52013-07-18 18:51:11 -03006390static void lpt_reset_fdi_mphy(struct drm_i915_private *dev_priv)
Paulo Zanonidde86e22012-12-01 12:04:25 -02006391{
Paulo Zanonif31f2d52013-07-18 18:51:11 -03006392 uint32_t tmp;
Paulo Zanonidde86e22012-12-01 12:04:25 -02006393
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006394 tmp = I915_READ(SOUTH_CHICKEN2);
6395 tmp |= FDI_MPHY_IOSFSB_RESET_CTL;
6396 I915_WRITE(SOUTH_CHICKEN2, tmp);
Paulo Zanonidde86e22012-12-01 12:04:25 -02006397
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006398 if (wait_for_atomic_us(I915_READ(SOUTH_CHICKEN2) &
6399 FDI_MPHY_IOSFSB_RESET_STATUS, 100))
6400 DRM_ERROR("FDI mPHY reset assert timeout\n");
Paulo Zanonidde86e22012-12-01 12:04:25 -02006401
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006402 tmp = I915_READ(SOUTH_CHICKEN2);
6403 tmp &= ~FDI_MPHY_IOSFSB_RESET_CTL;
6404 I915_WRITE(SOUTH_CHICKEN2, tmp);
Paulo Zanonidde86e22012-12-01 12:04:25 -02006405
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006406 if (wait_for_atomic_us((I915_READ(SOUTH_CHICKEN2) &
6407 FDI_MPHY_IOSFSB_RESET_STATUS) == 0, 100))
6408 DRM_ERROR("FDI mPHY reset de-assert timeout\n");
Paulo Zanonif31f2d52013-07-18 18:51:11 -03006409}
6410
6411/* WaMPhyProgramming:hsw */
6412static void lpt_program_fdi_mphy(struct drm_i915_private *dev_priv)
6413{
6414 uint32_t tmp;
Paulo Zanonidde86e22012-12-01 12:04:25 -02006415
6416 tmp = intel_sbi_read(dev_priv, 0x8008, SBI_MPHY);
6417 tmp &= ~(0xFF << 24);
6418 tmp |= (0x12 << 24);
6419 intel_sbi_write(dev_priv, 0x8008, tmp, SBI_MPHY);
6420
Paulo Zanonidde86e22012-12-01 12:04:25 -02006421 tmp = intel_sbi_read(dev_priv, 0x2008, SBI_MPHY);
6422 tmp |= (1 << 11);
6423 intel_sbi_write(dev_priv, 0x2008, tmp, SBI_MPHY);
6424
6425 tmp = intel_sbi_read(dev_priv, 0x2108, SBI_MPHY);
6426 tmp |= (1 << 11);
6427 intel_sbi_write(dev_priv, 0x2108, tmp, SBI_MPHY);
6428
Paulo Zanonidde86e22012-12-01 12:04:25 -02006429 tmp = intel_sbi_read(dev_priv, 0x206C, SBI_MPHY);
6430 tmp |= (1 << 24) | (1 << 21) | (1 << 18);
6431 intel_sbi_write(dev_priv, 0x206C, tmp, SBI_MPHY);
6432
6433 tmp = intel_sbi_read(dev_priv, 0x216C, SBI_MPHY);
6434 tmp |= (1 << 24) | (1 << 21) | (1 << 18);
6435 intel_sbi_write(dev_priv, 0x216C, tmp, SBI_MPHY);
6436
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006437 tmp = intel_sbi_read(dev_priv, 0x2080, SBI_MPHY);
6438 tmp &= ~(7 << 13);
6439 tmp |= (5 << 13);
6440 intel_sbi_write(dev_priv, 0x2080, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02006441
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006442 tmp = intel_sbi_read(dev_priv, 0x2180, SBI_MPHY);
6443 tmp &= ~(7 << 13);
6444 tmp |= (5 << 13);
6445 intel_sbi_write(dev_priv, 0x2180, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02006446
6447 tmp = intel_sbi_read(dev_priv, 0x208C, SBI_MPHY);
6448 tmp &= ~0xFF;
6449 tmp |= 0x1C;
6450 intel_sbi_write(dev_priv, 0x208C, tmp, SBI_MPHY);
6451
6452 tmp = intel_sbi_read(dev_priv, 0x218C, SBI_MPHY);
6453 tmp &= ~0xFF;
6454 tmp |= 0x1C;
6455 intel_sbi_write(dev_priv, 0x218C, tmp, SBI_MPHY);
6456
6457 tmp = intel_sbi_read(dev_priv, 0x2098, SBI_MPHY);
6458 tmp &= ~(0xFF << 16);
6459 tmp |= (0x1C << 16);
6460 intel_sbi_write(dev_priv, 0x2098, tmp, SBI_MPHY);
6461
6462 tmp = intel_sbi_read(dev_priv, 0x2198, SBI_MPHY);
6463 tmp &= ~(0xFF << 16);
6464 tmp |= (0x1C << 16);
6465 intel_sbi_write(dev_priv, 0x2198, tmp, SBI_MPHY);
6466
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006467 tmp = intel_sbi_read(dev_priv, 0x20C4, SBI_MPHY);
6468 tmp |= (1 << 27);
6469 intel_sbi_write(dev_priv, 0x20C4, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02006470
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006471 tmp = intel_sbi_read(dev_priv, 0x21C4, SBI_MPHY);
6472 tmp |= (1 << 27);
6473 intel_sbi_write(dev_priv, 0x21C4, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02006474
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006475 tmp = intel_sbi_read(dev_priv, 0x20EC, SBI_MPHY);
6476 tmp &= ~(0xF << 28);
6477 tmp |= (4 << 28);
6478 intel_sbi_write(dev_priv, 0x20EC, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02006479
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006480 tmp = intel_sbi_read(dev_priv, 0x21EC, SBI_MPHY);
6481 tmp &= ~(0xF << 28);
6482 tmp |= (4 << 28);
6483 intel_sbi_write(dev_priv, 0x21EC, tmp, SBI_MPHY);
Paulo Zanonif31f2d52013-07-18 18:51:11 -03006484}
6485
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03006486/* Implements 3 different sequences from BSpec chapter "Display iCLK
6487 * Programming" based on the parameters passed:
6488 * - Sequence to enable CLKOUT_DP
6489 * - Sequence to enable CLKOUT_DP without spread
6490 * - Sequence to enable CLKOUT_DP for FDI usage and configure PCH FDI I/O
6491 */
6492static void lpt_enable_clkout_dp(struct drm_device *dev, bool with_spread,
6493 bool with_fdi)
Paulo Zanonif31f2d52013-07-18 18:51:11 -03006494{
6495 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03006496 uint32_t reg, tmp;
6497
6498 if (WARN(with_fdi && !with_spread, "FDI requires downspread\n"))
6499 with_spread = true;
6500 if (WARN(dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE &&
6501 with_fdi, "LP PCH doesn't have FDI\n"))
6502 with_fdi = false;
Paulo Zanonif31f2d52013-07-18 18:51:11 -03006503
6504 mutex_lock(&dev_priv->dpio_lock);
6505
6506 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
6507 tmp &= ~SBI_SSCCTL_DISABLE;
6508 tmp |= SBI_SSCCTL_PATHALT;
6509 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
6510
6511 udelay(24);
6512
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03006513 if (with_spread) {
6514 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
6515 tmp &= ~SBI_SSCCTL_PATHALT;
6516 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
Paulo Zanonif31f2d52013-07-18 18:51:11 -03006517
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03006518 if (with_fdi) {
6519 lpt_reset_fdi_mphy(dev_priv);
6520 lpt_program_fdi_mphy(dev_priv);
6521 }
6522 }
Paulo Zanonidde86e22012-12-01 12:04:25 -02006523
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03006524 reg = (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) ?
6525 SBI_GEN0 : SBI_DBUFF0;
6526 tmp = intel_sbi_read(dev_priv, reg, SBI_ICLK);
6527 tmp |= SBI_GEN0_CFG_BUFFENABLE_DISABLE;
6528 intel_sbi_write(dev_priv, reg, tmp, SBI_ICLK);
Daniel Vetterc00db242013-01-22 15:33:27 +01006529
6530 mutex_unlock(&dev_priv->dpio_lock);
Paulo Zanonidde86e22012-12-01 12:04:25 -02006531}
6532
Paulo Zanoni47701c32013-07-23 11:19:25 -03006533/* Sequence to disable CLKOUT_DP */
6534static void lpt_disable_clkout_dp(struct drm_device *dev)
6535{
6536 struct drm_i915_private *dev_priv = dev->dev_private;
6537 uint32_t reg, tmp;
6538
6539 mutex_lock(&dev_priv->dpio_lock);
6540
6541 reg = (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) ?
6542 SBI_GEN0 : SBI_DBUFF0;
6543 tmp = intel_sbi_read(dev_priv, reg, SBI_ICLK);
6544 tmp &= ~SBI_GEN0_CFG_BUFFENABLE_DISABLE;
6545 intel_sbi_write(dev_priv, reg, tmp, SBI_ICLK);
6546
6547 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
6548 if (!(tmp & SBI_SSCCTL_DISABLE)) {
6549 if (!(tmp & SBI_SSCCTL_PATHALT)) {
6550 tmp |= SBI_SSCCTL_PATHALT;
6551 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
6552 udelay(32);
6553 }
6554 tmp |= SBI_SSCCTL_DISABLE;
6555 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
6556 }
6557
6558 mutex_unlock(&dev_priv->dpio_lock);
6559}
6560
Paulo Zanonibf8fa3d2013-07-12 14:19:38 -03006561static void lpt_init_pch_refclk(struct drm_device *dev)
6562{
6563 struct drm_mode_config *mode_config = &dev->mode_config;
6564 struct intel_encoder *encoder;
6565 bool has_vga = false;
6566
6567 list_for_each_entry(encoder, &mode_config->encoder_list, base.head) {
6568 switch (encoder->type) {
6569 case INTEL_OUTPUT_ANALOG:
6570 has_vga = true;
6571 break;
6572 }
6573 }
6574
Paulo Zanoni47701c32013-07-23 11:19:25 -03006575 if (has_vga)
6576 lpt_enable_clkout_dp(dev, true, true);
6577 else
6578 lpt_disable_clkout_dp(dev);
Paulo Zanonibf8fa3d2013-07-12 14:19:38 -03006579}
6580
Paulo Zanonidde86e22012-12-01 12:04:25 -02006581/*
6582 * Initialize reference clocks when the driver loads
6583 */
6584void intel_init_pch_refclk(struct drm_device *dev)
6585{
6586 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev))
6587 ironlake_init_pch_refclk(dev);
6588 else if (HAS_PCH_LPT(dev))
6589 lpt_init_pch_refclk(dev);
6590}
6591
Jesse Barnesd9d444c2011-09-02 13:03:05 -07006592static int ironlake_get_refclk(struct drm_crtc *crtc)
6593{
6594 struct drm_device *dev = crtc->dev;
6595 struct drm_i915_private *dev_priv = dev->dev_private;
6596 struct intel_encoder *encoder;
Jesse Barnesd9d444c2011-09-02 13:03:05 -07006597 int num_connectors = 0;
6598 bool is_lvds = false;
6599
Daniel Vetter6c2b7c122012-07-05 09:50:24 +02006600 for_each_encoder_on_crtc(dev, crtc, encoder) {
Jesse Barnesd9d444c2011-09-02 13:03:05 -07006601 switch (encoder->type) {
6602 case INTEL_OUTPUT_LVDS:
6603 is_lvds = true;
6604 break;
Jesse Barnesd9d444c2011-09-02 13:03:05 -07006605 }
6606 num_connectors++;
6607 }
6608
6609 if (is_lvds && intel_panel_use_ssc(dev_priv) && num_connectors < 2) {
Ville Syrjäläe91e9412013-12-09 18:54:16 +02006610 DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n",
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03006611 dev_priv->vbt.lvds_ssc_freq);
Ville Syrjäläe91e9412013-12-09 18:54:16 +02006612 return dev_priv->vbt.lvds_ssc_freq;
Jesse Barnesd9d444c2011-09-02 13:03:05 -07006613 }
6614
6615 return 120000;
6616}
6617
Daniel Vetter6ff93602013-04-19 11:24:36 +02006618static void ironlake_set_pipeconf(struct drm_crtc *crtc)
Paulo Zanonic8203562012-09-12 10:06:29 -03006619{
6620 struct drm_i915_private *dev_priv = crtc->dev->dev_private;
6621 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6622 int pipe = intel_crtc->pipe;
6623 uint32_t val;
6624
Daniel Vetter78114072013-06-13 00:54:57 +02006625 val = 0;
Paulo Zanonic8203562012-09-12 10:06:29 -03006626
Daniel Vetter965e0c42013-03-27 00:44:57 +01006627 switch (intel_crtc->config.pipe_bpp) {
Paulo Zanonic8203562012-09-12 10:06:29 -03006628 case 18:
Daniel Vetterdfd07d72012-12-17 11:21:38 +01006629 val |= PIPECONF_6BPC;
Paulo Zanonic8203562012-09-12 10:06:29 -03006630 break;
6631 case 24:
Daniel Vetterdfd07d72012-12-17 11:21:38 +01006632 val |= PIPECONF_8BPC;
Paulo Zanonic8203562012-09-12 10:06:29 -03006633 break;
6634 case 30:
Daniel Vetterdfd07d72012-12-17 11:21:38 +01006635 val |= PIPECONF_10BPC;
Paulo Zanonic8203562012-09-12 10:06:29 -03006636 break;
6637 case 36:
Daniel Vetterdfd07d72012-12-17 11:21:38 +01006638 val |= PIPECONF_12BPC;
Paulo Zanonic8203562012-09-12 10:06:29 -03006639 break;
6640 default:
Paulo Zanonicc769b62012-09-20 18:36:03 -03006641 /* Case prevented by intel_choose_pipe_bpp_dither. */
6642 BUG();
Paulo Zanonic8203562012-09-12 10:06:29 -03006643 }
6644
Daniel Vetterd8b32242013-04-25 17:54:44 +02006645 if (intel_crtc->config.dither)
Paulo Zanonic8203562012-09-12 10:06:29 -03006646 val |= (PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_SP);
6647
Daniel Vetter6ff93602013-04-19 11:24:36 +02006648 if (intel_crtc->config.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
Paulo Zanonic8203562012-09-12 10:06:29 -03006649 val |= PIPECONF_INTERLACED_ILK;
6650 else
6651 val |= PIPECONF_PROGRESSIVE;
6652
Daniel Vetter50f3b012013-03-27 00:44:56 +01006653 if (intel_crtc->config.limited_color_range)
Ville Syrjälä3685a8f2013-01-17 16:31:28 +02006654 val |= PIPECONF_COLOR_RANGE_SELECT;
Ville Syrjälä3685a8f2013-01-17 16:31:28 +02006655
Paulo Zanonic8203562012-09-12 10:06:29 -03006656 I915_WRITE(PIPECONF(pipe), val);
6657 POSTING_READ(PIPECONF(pipe));
6658}
6659
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02006660/*
6661 * Set up the pipe CSC unit.
6662 *
6663 * Currently only full range RGB to limited range RGB conversion
6664 * is supported, but eventually this should handle various
6665 * RGB<->YCbCr scenarios as well.
6666 */
Daniel Vetter50f3b012013-03-27 00:44:56 +01006667static void intel_set_pipe_csc(struct drm_crtc *crtc)
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02006668{
6669 struct drm_device *dev = crtc->dev;
6670 struct drm_i915_private *dev_priv = dev->dev_private;
6671 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6672 int pipe = intel_crtc->pipe;
6673 uint16_t coeff = 0x7800; /* 1.0 */
6674
6675 /*
6676 * TODO: Check what kind of values actually come out of the pipe
6677 * with these coeff/postoff values and adjust to get the best
6678 * accuracy. Perhaps we even need to take the bpc value into
6679 * consideration.
6680 */
6681
Daniel Vetter50f3b012013-03-27 00:44:56 +01006682 if (intel_crtc->config.limited_color_range)
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02006683 coeff = ((235 - 16) * (1 << 12) / 255) & 0xff8; /* 0.xxx... */
6684
6685 /*
6686 * GY/GU and RY/RU should be the other way around according
6687 * to BSpec, but reality doesn't agree. Just set them up in
6688 * a way that results in the correct picture.
6689 */
6690 I915_WRITE(PIPE_CSC_COEFF_RY_GY(pipe), coeff << 16);
6691 I915_WRITE(PIPE_CSC_COEFF_BY(pipe), 0);
6692
6693 I915_WRITE(PIPE_CSC_COEFF_RU_GU(pipe), coeff);
6694 I915_WRITE(PIPE_CSC_COEFF_BU(pipe), 0);
6695
6696 I915_WRITE(PIPE_CSC_COEFF_RV_GV(pipe), 0);
6697 I915_WRITE(PIPE_CSC_COEFF_BV(pipe), coeff << 16);
6698
6699 I915_WRITE(PIPE_CSC_PREOFF_HI(pipe), 0);
6700 I915_WRITE(PIPE_CSC_PREOFF_ME(pipe), 0);
6701 I915_WRITE(PIPE_CSC_PREOFF_LO(pipe), 0);
6702
6703 if (INTEL_INFO(dev)->gen > 6) {
6704 uint16_t postoff = 0;
6705
Daniel Vetter50f3b012013-03-27 00:44:56 +01006706 if (intel_crtc->config.limited_color_range)
Ville Syrjälä32cf0cb2013-11-28 22:10:38 +02006707 postoff = (16 * (1 << 12) / 255) & 0x1fff;
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02006708
6709 I915_WRITE(PIPE_CSC_POSTOFF_HI(pipe), postoff);
6710 I915_WRITE(PIPE_CSC_POSTOFF_ME(pipe), postoff);
6711 I915_WRITE(PIPE_CSC_POSTOFF_LO(pipe), postoff);
6712
6713 I915_WRITE(PIPE_CSC_MODE(pipe), 0);
6714 } else {
6715 uint32_t mode = CSC_MODE_YUV_TO_RGB;
6716
Daniel Vetter50f3b012013-03-27 00:44:56 +01006717 if (intel_crtc->config.limited_color_range)
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02006718 mode |= CSC_BLACK_SCREEN_OFFSET;
6719
6720 I915_WRITE(PIPE_CSC_MODE(pipe), mode);
6721 }
6722}
6723
Daniel Vetter6ff93602013-04-19 11:24:36 +02006724static void haswell_set_pipeconf(struct drm_crtc *crtc)
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03006725{
Paulo Zanoni756f85c2013-11-02 21:07:38 -07006726 struct drm_device *dev = crtc->dev;
6727 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03006728 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Paulo Zanoni756f85c2013-11-02 21:07:38 -07006729 enum pipe pipe = intel_crtc->pipe;
Daniel Vetter3b117c82013-04-17 20:15:07 +02006730 enum transcoder cpu_transcoder = intel_crtc->config.cpu_transcoder;
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03006731 uint32_t val;
6732
Daniel Vetter3eff4fa2013-06-13 00:54:59 +02006733 val = 0;
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03006734
Paulo Zanoni756f85c2013-11-02 21:07:38 -07006735 if (IS_HASWELL(dev) && intel_crtc->config.dither)
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03006736 val |= (PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_SP);
6737
Daniel Vetter6ff93602013-04-19 11:24:36 +02006738 if (intel_crtc->config.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03006739 val |= PIPECONF_INTERLACED_ILK;
6740 else
6741 val |= PIPECONF_PROGRESSIVE;
6742
Paulo Zanoni702e7a52012-10-23 18:29:59 -02006743 I915_WRITE(PIPECONF(cpu_transcoder), val);
6744 POSTING_READ(PIPECONF(cpu_transcoder));
Daniel Vetter3eff4fa2013-06-13 00:54:59 +02006745
6746 I915_WRITE(GAMMA_MODE(intel_crtc->pipe), GAMMA_MODE_MODE_8BIT);
6747 POSTING_READ(GAMMA_MODE(intel_crtc->pipe));
Paulo Zanoni756f85c2013-11-02 21:07:38 -07006748
6749 if (IS_BROADWELL(dev)) {
6750 val = 0;
6751
6752 switch (intel_crtc->config.pipe_bpp) {
6753 case 18:
6754 val |= PIPEMISC_DITHER_6_BPC;
6755 break;
6756 case 24:
6757 val |= PIPEMISC_DITHER_8_BPC;
6758 break;
6759 case 30:
6760 val |= PIPEMISC_DITHER_10_BPC;
6761 break;
6762 case 36:
6763 val |= PIPEMISC_DITHER_12_BPC;
6764 break;
6765 default:
6766 /* Case prevented by pipe_config_set_bpp. */
6767 BUG();
6768 }
6769
6770 if (intel_crtc->config.dither)
6771 val |= PIPEMISC_DITHER_ENABLE | PIPEMISC_DITHER_TYPE_SP;
6772
6773 I915_WRITE(PIPEMISC(pipe), val);
6774 }
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03006775}
6776
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03006777static bool ironlake_compute_clocks(struct drm_crtc *crtc,
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03006778 intel_clock_t *clock,
6779 bool *has_reduced_clock,
6780 intel_clock_t *reduced_clock)
6781{
6782 struct drm_device *dev = crtc->dev;
6783 struct drm_i915_private *dev_priv = dev->dev_private;
6784 struct intel_encoder *intel_encoder;
6785 int refclk;
6786 const intel_limit_t *limit;
Daniel Vettera16af7212013-04-30 14:01:44 +02006787 bool ret, is_lvds = false;
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03006788
6789 for_each_encoder_on_crtc(dev, crtc, intel_encoder) {
6790 switch (intel_encoder->type) {
6791 case INTEL_OUTPUT_LVDS:
6792 is_lvds = true;
6793 break;
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03006794 }
6795 }
6796
6797 refclk = ironlake_get_refclk(crtc);
6798
6799 /*
6800 * Returns a set of divisors for the desired target clock with the given
6801 * refclk, or FALSE. The returned values represent the clock equation:
6802 * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2.
6803 */
6804 limit = intel_limit(crtc, refclk);
Daniel Vetterff9a6752013-06-01 17:16:21 +02006805 ret = dev_priv->display.find_dpll(limit, crtc,
6806 to_intel_crtc(crtc)->config.port_clock,
Daniel Vetteree9300b2013-06-03 22:40:22 +02006807 refclk, NULL, clock);
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03006808 if (!ret)
6809 return false;
6810
6811 if (is_lvds && dev_priv->lvds_downclock_avail) {
6812 /*
6813 * Ensure we match the reduced clock's P to the target clock.
6814 * If the clocks don't match, we can't switch the display clock
6815 * by using the FP0/FP1. In such case we will disable the LVDS
6816 * downclock feature.
6817 */
Daniel Vetteree9300b2013-06-03 22:40:22 +02006818 *has_reduced_clock =
6819 dev_priv->display.find_dpll(limit, crtc,
6820 dev_priv->lvds_downclock,
6821 refclk, clock,
6822 reduced_clock);
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03006823 }
6824
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03006825 return true;
6826}
6827
Paulo Zanonid4b19312012-11-29 11:29:32 -02006828int ironlake_get_lanes_required(int target_clock, int link_bw, int bpp)
6829{
6830 /*
6831 * Account for spread spectrum to avoid
6832 * oversubscribing the link. Max center spread
6833 * is 2.5%; use 5% for safety's sake.
6834 */
6835 u32 bps = target_clock * bpp * 21 / 20;
Ville Syrjälä619d4d02014-02-27 14:23:14 +02006836 return DIV_ROUND_UP(bps, link_bw * 8);
Paulo Zanonid4b19312012-11-29 11:29:32 -02006837}
6838
Daniel Vetter7429e9d2013-04-20 17:19:46 +02006839static bool ironlake_needs_fb_cb_tune(struct dpll *dpll, int factor)
Daniel Vetter6cf86a52013-04-02 23:38:10 +02006840{
Daniel Vetter7429e9d2013-04-20 17:19:46 +02006841 return i9xx_dpll_compute_m(dpll) < factor * dpll->n;
Paulo Zanonif48d8f22012-09-20 18:36:04 -03006842}
6843
Paulo Zanonide13a2e2012-09-20 18:36:05 -03006844static uint32_t ironlake_compute_dpll(struct intel_crtc *intel_crtc,
Daniel Vetter7429e9d2013-04-20 17:19:46 +02006845 u32 *fp,
Daniel Vetter9a7c7892013-04-04 22:20:34 +02006846 intel_clock_t *reduced_clock, u32 *fp2)
Paulo Zanonide13a2e2012-09-20 18:36:05 -03006847{
6848 struct drm_crtc *crtc = &intel_crtc->base;
6849 struct drm_device *dev = crtc->dev;
6850 struct drm_i915_private *dev_priv = dev->dev_private;
6851 struct intel_encoder *intel_encoder;
6852 uint32_t dpll;
Daniel Vetter6cc5f342013-03-27 00:44:53 +01006853 int factor, num_connectors = 0;
Daniel Vetter09ede542013-04-30 14:01:45 +02006854 bool is_lvds = false, is_sdvo = false;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03006855
6856 for_each_encoder_on_crtc(dev, crtc, intel_encoder) {
6857 switch (intel_encoder->type) {
6858 case INTEL_OUTPUT_LVDS:
6859 is_lvds = true;
6860 break;
6861 case INTEL_OUTPUT_SDVO:
6862 case INTEL_OUTPUT_HDMI:
6863 is_sdvo = true;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03006864 break;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03006865 }
6866
6867 num_connectors++;
6868 }
Jesse Barnes79e53942008-11-07 14:24:08 -08006869
Chris Wilsonc1858122010-12-03 21:35:48 +00006870 /* Enable autotuning of the PLL clock (if permissible) */
Eric Anholt8febb292011-03-30 13:01:07 -07006871 factor = 21;
6872 if (is_lvds) {
6873 if ((intel_panel_use_ssc(dev_priv) &&
Ville Syrjäläe91e9412013-12-09 18:54:16 +02006874 dev_priv->vbt.lvds_ssc_freq == 100000) ||
Daniel Vetterf0b44052013-04-04 22:20:33 +02006875 (HAS_PCH_IBX(dev) && intel_is_dual_link_lvds(dev)))
Eric Anholt8febb292011-03-30 13:01:07 -07006876 factor = 25;
Daniel Vetter09ede542013-04-30 14:01:45 +02006877 } else if (intel_crtc->config.sdvo_tv_clock)
Eric Anholt8febb292011-03-30 13:01:07 -07006878 factor = 20;
Chris Wilsonc1858122010-12-03 21:35:48 +00006879
Daniel Vetter7429e9d2013-04-20 17:19:46 +02006880 if (ironlake_needs_fb_cb_tune(&intel_crtc->config.dpll, factor))
Daniel Vetter7d0ac5b2013-04-04 22:20:32 +02006881 *fp |= FP_CB_TUNE;
Chris Wilsonc1858122010-12-03 21:35:48 +00006882
Daniel Vetter9a7c7892013-04-04 22:20:34 +02006883 if (fp2 && (reduced_clock->m < factor * reduced_clock->n))
6884 *fp2 |= FP_CB_TUNE;
6885
Chris Wilson5eddb702010-09-11 13:48:45 +01006886 dpll = 0;
Zhenyu Wang2c072452009-06-05 15:38:42 +08006887
Eric Anholta07d6782011-03-30 13:01:08 -07006888 if (is_lvds)
6889 dpll |= DPLLB_MODE_LVDS;
6890 else
6891 dpll |= DPLLB_MODE_DAC_SERIAL;
Daniel Vetter198a037f2013-04-19 11:14:37 +02006892
Daniel Vetteref1b4602013-06-01 17:17:04 +02006893 dpll |= (intel_crtc->config.pixel_multiplier - 1)
6894 << PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT;
Daniel Vetter198a037f2013-04-19 11:14:37 +02006895
6896 if (is_sdvo)
Daniel Vetter4a33e482013-07-06 12:52:05 +02006897 dpll |= DPLL_SDVO_HIGH_SPEED;
Daniel Vetter9566e9a2013-04-19 11:14:36 +02006898 if (intel_crtc->config.has_dp_encoder)
Daniel Vetter4a33e482013-07-06 12:52:05 +02006899 dpll |= DPLL_SDVO_HIGH_SPEED;
Jesse Barnes79e53942008-11-07 14:24:08 -08006900
Eric Anholta07d6782011-03-30 13:01:08 -07006901 /* compute bitmask from p1 value */
Daniel Vetter7429e9d2013-04-20 17:19:46 +02006902 dpll |= (1 << (intel_crtc->config.dpll.p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
Eric Anholta07d6782011-03-30 13:01:08 -07006903 /* also FPA1 */
Daniel Vetter7429e9d2013-04-20 17:19:46 +02006904 dpll |= (1 << (intel_crtc->config.dpll.p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
Eric Anholta07d6782011-03-30 13:01:08 -07006905
Daniel Vetter7429e9d2013-04-20 17:19:46 +02006906 switch (intel_crtc->config.dpll.p2) {
Eric Anholta07d6782011-03-30 13:01:08 -07006907 case 5:
6908 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
6909 break;
6910 case 7:
6911 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
6912 break;
6913 case 10:
6914 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
6915 break;
6916 case 14:
6917 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
6918 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08006919 }
6920
Daniel Vetterb4c09f32013-04-30 14:01:42 +02006921 if (is_lvds && intel_panel_use_ssc(dev_priv) && num_connectors < 2)
Kristian Høgsberg43565a02009-02-13 20:56:52 -05006922 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
Jesse Barnes79e53942008-11-07 14:24:08 -08006923 else
6924 dpll |= PLL_REF_INPUT_DREFCLK;
6925
Daniel Vetter959e16d2013-06-05 13:34:21 +02006926 return dpll | DPLL_VCO_ENABLE;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03006927}
6928
Jesse Barnes79e53942008-11-07 14:24:08 -08006929static int ironlake_crtc_mode_set(struct drm_crtc *crtc,
Jesse Barnes79e53942008-11-07 14:24:08 -08006930 int x, int y,
Daniel Vetter94352cf2012-07-05 22:51:56 +02006931 struct drm_framebuffer *fb)
Jesse Barnes79e53942008-11-07 14:24:08 -08006932{
6933 struct drm_device *dev = crtc->dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08006934 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03006935 int num_connectors = 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08006936 intel_clock_t clock, reduced_clock;
Daniel Vettercbbab5b2013-04-19 11:14:31 +02006937 u32 dpll = 0, fp = 0, fp2 = 0;
Paulo Zanonie2f12b02012-09-20 18:36:06 -03006938 bool ok, has_reduced_clock = false;
Daniel Vetter8b470472013-03-28 10:41:59 +01006939 bool is_lvds = false;
Paulo Zanonif48d8f22012-09-20 18:36:04 -03006940 struct intel_encoder *encoder;
Daniel Vettere2b78262013-06-07 23:10:03 +02006941 struct intel_shared_dpll *pll;
Jesse Barnes79e53942008-11-07 14:24:08 -08006942
6943 for_each_encoder_on_crtc(dev, crtc, encoder) {
6944 switch (encoder->type) {
6945 case INTEL_OUTPUT_LVDS:
6946 is_lvds = true;
6947 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08006948 }
6949
6950 num_connectors++;
6951 }
6952
Paulo Zanoni5dc52982012-10-05 12:05:56 -03006953 WARN(!(HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev)),
6954 "Unexpected PCH type %d\n", INTEL_PCH_TYPE(dev));
6955
Daniel Vetterff9a6752013-06-01 17:16:21 +02006956 ok = ironlake_compute_clocks(crtc, &clock,
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03006957 &has_reduced_clock, &reduced_clock);
Daniel Vetteree9300b2013-06-03 22:40:22 +02006958 if (!ok && !intel_crtc->config.clock_set) {
Jesse Barnes79e53942008-11-07 14:24:08 -08006959 DRM_ERROR("Couldn't find PLL settings for mode!\n");
6960 return -EINVAL;
6961 }
Daniel Vetterf47709a2013-03-28 10:42:02 +01006962 /* Compat-code for transition, will disappear. */
6963 if (!intel_crtc->config.clock_set) {
6964 intel_crtc->config.dpll.n = clock.n;
6965 intel_crtc->config.dpll.m1 = clock.m1;
6966 intel_crtc->config.dpll.m2 = clock.m2;
6967 intel_crtc->config.dpll.p1 = clock.p1;
6968 intel_crtc->config.dpll.p2 = clock.p2;
6969 }
Jesse Barnes79e53942008-11-07 14:24:08 -08006970
Paulo Zanoni5dc52982012-10-05 12:05:56 -03006971 /* CPU eDP is the only output that doesn't need a PCH PLL of its own. */
Daniel Vetter8b470472013-03-28 10:41:59 +01006972 if (intel_crtc->config.has_pch_encoder) {
Daniel Vetter7429e9d2013-04-20 17:19:46 +02006973 fp = i9xx_dpll_compute_fp(&intel_crtc->config.dpll);
Daniel Vettercbbab5b2013-04-19 11:14:31 +02006974 if (has_reduced_clock)
Daniel Vetter7429e9d2013-04-20 17:19:46 +02006975 fp2 = i9xx_dpll_compute_fp(&reduced_clock);
Daniel Vettercbbab5b2013-04-19 11:14:31 +02006976
Daniel Vetter7429e9d2013-04-20 17:19:46 +02006977 dpll = ironlake_compute_dpll(intel_crtc,
Daniel Vettercbbab5b2013-04-19 11:14:31 +02006978 &fp, &reduced_clock,
6979 has_reduced_clock ? &fp2 : NULL);
6980
Daniel Vetter959e16d2013-06-05 13:34:21 +02006981 intel_crtc->config.dpll_hw_state.dpll = dpll;
Daniel Vetter66e985c2013-06-05 13:34:20 +02006982 intel_crtc->config.dpll_hw_state.fp0 = fp;
6983 if (has_reduced_clock)
6984 intel_crtc->config.dpll_hw_state.fp1 = fp2;
6985 else
6986 intel_crtc->config.dpll_hw_state.fp1 = fp;
6987
Daniel Vetterb89a1d32013-06-05 13:34:24 +02006988 pll = intel_get_shared_dpll(intel_crtc);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01006989 if (pll == NULL) {
Ville Syrjälä84f44ce2013-04-17 17:48:49 +03006990 DRM_DEBUG_DRIVER("failed to find PLL for pipe %c\n",
Daniel Vetter29407aa2014-04-24 23:55:08 +02006991 pipe_name(intel_crtc->pipe));
Jesse Barnes4b645f12011-10-12 09:51:31 -07006992 return -EINVAL;
6993 }
Jesse Barnesee7b9f92012-04-20 17:11:53 +01006994 } else
Daniel Vettere72f9fb2013-06-05 13:34:06 +02006995 intel_put_shared_dpll(intel_crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08006996
Jani Nikulad330a952014-01-21 11:24:25 +02006997 if (is_lvds && has_reduced_clock && i915.powersave)
Daniel Vetterbcd644e2013-06-05 13:34:22 +02006998 intel_crtc->lowfreq_avail = true;
6999 else
7000 intel_crtc->lowfreq_avail = false;
Daniel Vettere2b78262013-06-07 23:10:03 +02007001
Daniel Vetterc8f7a0d2014-04-24 23:55:04 +02007002 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08007003}
7004
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03007005static void intel_pch_transcoder_get_m_n(struct intel_crtc *crtc,
7006 struct intel_link_m_n *m_n)
Daniel Vetter72419202013-04-04 13:28:53 +02007007{
7008 struct drm_device *dev = crtc->base.dev;
7009 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03007010 enum pipe pipe = crtc->pipe;
Daniel Vetter72419202013-04-04 13:28:53 +02007011
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03007012 m_n->link_m = I915_READ(PCH_TRANS_LINK_M1(pipe));
7013 m_n->link_n = I915_READ(PCH_TRANS_LINK_N1(pipe));
7014 m_n->gmch_m = I915_READ(PCH_TRANS_DATA_M1(pipe))
7015 & ~TU_SIZE_MASK;
7016 m_n->gmch_n = I915_READ(PCH_TRANS_DATA_N1(pipe));
7017 m_n->tu = ((I915_READ(PCH_TRANS_DATA_M1(pipe))
7018 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
7019}
7020
7021static void intel_cpu_transcoder_get_m_n(struct intel_crtc *crtc,
7022 enum transcoder transcoder,
7023 struct intel_link_m_n *m_n)
7024{
7025 struct drm_device *dev = crtc->base.dev;
7026 struct drm_i915_private *dev_priv = dev->dev_private;
7027 enum pipe pipe = crtc->pipe;
7028
7029 if (INTEL_INFO(dev)->gen >= 5) {
7030 m_n->link_m = I915_READ(PIPE_LINK_M1(transcoder));
7031 m_n->link_n = I915_READ(PIPE_LINK_N1(transcoder));
7032 m_n->gmch_m = I915_READ(PIPE_DATA_M1(transcoder))
7033 & ~TU_SIZE_MASK;
7034 m_n->gmch_n = I915_READ(PIPE_DATA_N1(transcoder));
7035 m_n->tu = ((I915_READ(PIPE_DATA_M1(transcoder))
7036 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
7037 } else {
7038 m_n->link_m = I915_READ(PIPE_LINK_M_G4X(pipe));
7039 m_n->link_n = I915_READ(PIPE_LINK_N_G4X(pipe));
7040 m_n->gmch_m = I915_READ(PIPE_DATA_M_G4X(pipe))
7041 & ~TU_SIZE_MASK;
7042 m_n->gmch_n = I915_READ(PIPE_DATA_N_G4X(pipe));
7043 m_n->tu = ((I915_READ(PIPE_DATA_M_G4X(pipe))
7044 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
7045 }
7046}
7047
7048void intel_dp_get_m_n(struct intel_crtc *crtc,
7049 struct intel_crtc_config *pipe_config)
7050{
7051 if (crtc->config.has_pch_encoder)
7052 intel_pch_transcoder_get_m_n(crtc, &pipe_config->dp_m_n);
7053 else
7054 intel_cpu_transcoder_get_m_n(crtc, pipe_config->cpu_transcoder,
7055 &pipe_config->dp_m_n);
7056}
7057
Daniel Vetter72419202013-04-04 13:28:53 +02007058static void ironlake_get_fdi_m_n_config(struct intel_crtc *crtc,
7059 struct intel_crtc_config *pipe_config)
7060{
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03007061 intel_cpu_transcoder_get_m_n(crtc, pipe_config->cpu_transcoder,
7062 &pipe_config->fdi_m_n);
Daniel Vetter72419202013-04-04 13:28:53 +02007063}
7064
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007065static void ironlake_get_pfit_config(struct intel_crtc *crtc,
7066 struct intel_crtc_config *pipe_config)
7067{
7068 struct drm_device *dev = crtc->base.dev;
7069 struct drm_i915_private *dev_priv = dev->dev_private;
7070 uint32_t tmp;
7071
7072 tmp = I915_READ(PF_CTL(crtc->pipe));
7073
7074 if (tmp & PF_ENABLE) {
Chris Wilsonfd4daa92013-08-27 17:04:17 +01007075 pipe_config->pch_pfit.enabled = true;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007076 pipe_config->pch_pfit.pos = I915_READ(PF_WIN_POS(crtc->pipe));
7077 pipe_config->pch_pfit.size = I915_READ(PF_WIN_SZ(crtc->pipe));
Daniel Vettercb8b2a32013-06-01 17:16:23 +02007078
7079 /* We currently do not free assignements of panel fitters on
7080 * ivb/hsw (since we don't use the higher upscaling modes which
7081 * differentiates them) so just WARN about this case for now. */
7082 if (IS_GEN7(dev)) {
7083 WARN_ON((tmp & PF_PIPE_SEL_MASK_IVB) !=
7084 PF_PIPE_SEL_IVB(crtc->pipe));
7085 }
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007086 }
Jesse Barnes79e53942008-11-07 14:24:08 -08007087}
7088
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007089static void ironlake_get_plane_config(struct intel_crtc *crtc,
7090 struct intel_plane_config *plane_config)
7091{
7092 struct drm_device *dev = crtc->base.dev;
7093 struct drm_i915_private *dev_priv = dev->dev_private;
7094 u32 val, base, offset;
7095 int pipe = crtc->pipe, plane = crtc->plane;
7096 int fourcc, pixel_format;
7097 int aligned_height;
7098
Dave Airlie66e514c2014-04-03 07:51:54 +10007099 crtc->base.primary->fb = kzalloc(sizeof(struct intel_framebuffer), GFP_KERNEL);
7100 if (!crtc->base.primary->fb) {
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007101 DRM_DEBUG_KMS("failed to alloc fb\n");
7102 return;
7103 }
7104
7105 val = I915_READ(DSPCNTR(plane));
7106
7107 if (INTEL_INFO(dev)->gen >= 4)
7108 if (val & DISPPLANE_TILED)
7109 plane_config->tiled = true;
7110
7111 pixel_format = val & DISPPLANE_PIXFORMAT_MASK;
7112 fourcc = intel_format_to_fourcc(pixel_format);
Dave Airlie66e514c2014-04-03 07:51:54 +10007113 crtc->base.primary->fb->pixel_format = fourcc;
7114 crtc->base.primary->fb->bits_per_pixel =
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007115 drm_format_plane_cpp(fourcc, 0) * 8;
7116
7117 base = I915_READ(DSPSURF(plane)) & 0xfffff000;
7118 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
7119 offset = I915_READ(DSPOFFSET(plane));
7120 } else {
7121 if (plane_config->tiled)
7122 offset = I915_READ(DSPTILEOFF(plane));
7123 else
7124 offset = I915_READ(DSPLINOFF(plane));
7125 }
7126 plane_config->base = base;
7127
7128 val = I915_READ(PIPESRC(pipe));
Dave Airlie66e514c2014-04-03 07:51:54 +10007129 crtc->base.primary->fb->width = ((val >> 16) & 0xfff) + 1;
7130 crtc->base.primary->fb->height = ((val >> 0) & 0xfff) + 1;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007131
7132 val = I915_READ(DSPSTRIDE(pipe));
Dave Airlie66e514c2014-04-03 07:51:54 +10007133 crtc->base.primary->fb->pitches[0] = val & 0xffffff80;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007134
Dave Airlie66e514c2014-04-03 07:51:54 +10007135 aligned_height = intel_align_height(dev, crtc->base.primary->fb->height,
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007136 plane_config->tiled);
7137
Dave Airlie66e514c2014-04-03 07:51:54 +10007138 plane_config->size = ALIGN(crtc->base.primary->fb->pitches[0] *
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007139 aligned_height, PAGE_SIZE);
7140
7141 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 +10007142 pipe, plane, crtc->base.primary->fb->width,
7143 crtc->base.primary->fb->height,
7144 crtc->base.primary->fb->bits_per_pixel, base,
7145 crtc->base.primary->fb->pitches[0],
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007146 plane_config->size);
7147}
7148
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01007149static bool ironlake_get_pipe_config(struct intel_crtc *crtc,
7150 struct intel_crtc_config *pipe_config)
7151{
7152 struct drm_device *dev = crtc->base.dev;
7153 struct drm_i915_private *dev_priv = dev->dev_private;
7154 uint32_t tmp;
7155
Daniel Vettere143a212013-07-04 12:01:15 +02007156 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +02007157 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
Daniel Vettereccb1402013-05-22 00:50:22 +02007158
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01007159 tmp = I915_READ(PIPECONF(crtc->pipe));
7160 if (!(tmp & PIPECONF_ENABLE))
7161 return false;
7162
Ville Syrjälä42571ae2013-09-06 23:29:00 +03007163 switch (tmp & PIPECONF_BPC_MASK) {
7164 case PIPECONF_6BPC:
7165 pipe_config->pipe_bpp = 18;
7166 break;
7167 case PIPECONF_8BPC:
7168 pipe_config->pipe_bpp = 24;
7169 break;
7170 case PIPECONF_10BPC:
7171 pipe_config->pipe_bpp = 30;
7172 break;
7173 case PIPECONF_12BPC:
7174 pipe_config->pipe_bpp = 36;
7175 break;
7176 default:
7177 break;
7178 }
7179
Daniel Vetterb5a9fa02014-04-24 23:54:49 +02007180 if (tmp & PIPECONF_COLOR_RANGE_SELECT)
7181 pipe_config->limited_color_range = true;
7182
Daniel Vetterab9412b2013-05-03 11:49:46 +02007183 if (I915_READ(PCH_TRANSCONF(crtc->pipe)) & TRANS_ENABLE) {
Daniel Vetter66e985c2013-06-05 13:34:20 +02007184 struct intel_shared_dpll *pll;
7185
Daniel Vetter88adfff2013-03-28 10:42:01 +01007186 pipe_config->has_pch_encoder = true;
7187
Daniel Vetter627eb5a2013-04-29 19:33:42 +02007188 tmp = I915_READ(FDI_RX_CTL(crtc->pipe));
7189 pipe_config->fdi_lanes = ((FDI_DP_PORT_WIDTH_MASK & tmp) >>
7190 FDI_DP_PORT_WIDTH_SHIFT) + 1;
Daniel Vetter72419202013-04-04 13:28:53 +02007191
7192 ironlake_get_fdi_m_n_config(crtc, pipe_config);
Daniel Vetter6c49f242013-06-06 12:45:25 +02007193
Daniel Vetterc0d43d62013-06-07 23:11:08 +02007194 if (HAS_PCH_IBX(dev_priv->dev)) {
Daniel Vetterd94ab062013-07-04 12:01:16 +02007195 pipe_config->shared_dpll =
7196 (enum intel_dpll_id) crtc->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +02007197 } else {
7198 tmp = I915_READ(PCH_DPLL_SEL);
7199 if (tmp & TRANS_DPLLB_SEL(crtc->pipe))
7200 pipe_config->shared_dpll = DPLL_ID_PCH_PLL_B;
7201 else
7202 pipe_config->shared_dpll = DPLL_ID_PCH_PLL_A;
7203 }
Daniel Vetter66e985c2013-06-05 13:34:20 +02007204
7205 pll = &dev_priv->shared_dplls[pipe_config->shared_dpll];
7206
7207 WARN_ON(!pll->get_hw_state(dev_priv, pll,
7208 &pipe_config->dpll_hw_state));
Daniel Vetterc93f54c2013-06-27 19:47:19 +02007209
7210 tmp = pipe_config->dpll_hw_state.dpll;
7211 pipe_config->pixel_multiplier =
7212 ((tmp & PLL_REF_SDVO_HDMI_MULTIPLIER_MASK)
7213 >> PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT) + 1;
Ville Syrjälä18442d02013-09-13 16:00:08 +03007214
7215 ironlake_pch_clock_get(crtc, pipe_config);
Daniel Vetter6c49f242013-06-06 12:45:25 +02007216 } else {
7217 pipe_config->pixel_multiplier = 1;
Daniel Vetter627eb5a2013-04-29 19:33:42 +02007218 }
7219
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02007220 intel_get_pipe_timings(crtc, pipe_config);
7221
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007222 ironlake_get_pfit_config(crtc, pipe_config);
7223
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01007224 return true;
7225}
7226
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007227static void assert_can_disable_lcpll(struct drm_i915_private *dev_priv)
7228{
7229 struct drm_device *dev = dev_priv->dev;
7230 struct intel_ddi_plls *plls = &dev_priv->ddi_plls;
7231 struct intel_crtc *crtc;
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007232
Damien Lespiaud3fcc802014-05-13 23:32:22 +01007233 for_each_intel_crtc(dev, crtc)
Paulo Zanoni798183c2013-12-06 20:29:01 -02007234 WARN(crtc->active, "CRTC for pipe %c enabled\n",
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007235 pipe_name(crtc->pipe));
7236
7237 WARN(I915_READ(HSW_PWR_WELL_DRIVER), "Power well on\n");
7238 WARN(plls->spll_refcount, "SPLL enabled\n");
7239 WARN(plls->wrpll1_refcount, "WRPLL1 enabled\n");
7240 WARN(plls->wrpll2_refcount, "WRPLL2 enabled\n");
7241 WARN(I915_READ(PCH_PP_STATUS) & PP_ON, "Panel power on\n");
7242 WARN(I915_READ(BLC_PWM_CPU_CTL2) & BLM_PWM_ENABLE,
7243 "CPU PWM1 enabled\n");
7244 WARN(I915_READ(HSW_BLC_PWM2_CTL) & BLM_PWM_ENABLE,
7245 "CPU PWM2 enabled\n");
7246 WARN(I915_READ(BLC_PWM_PCH_CTL1) & BLM_PCH_PWM_ENABLE,
7247 "PCH PWM1 enabled\n");
7248 WARN(I915_READ(UTIL_PIN_CTL) & UTIL_PIN_ENABLE,
7249 "Utility pin enabled\n");
7250 WARN(I915_READ(PCH_GTC_CTL) & PCH_GTC_ENABLE, "PCH GTC enabled\n");
7251
Paulo Zanoni9926ada2014-04-01 19:39:47 -03007252 /*
7253 * In theory we can still leave IRQs enabled, as long as only the HPD
7254 * interrupts remain enabled. We used to check for that, but since it's
7255 * gen-specific and since we only disable LCPLL after we fully disable
7256 * the interrupts, the check below should be enough.
7257 */
7258 WARN(!dev_priv->pm.irqs_disabled, "IRQs enabled\n");
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007259}
7260
Paulo Zanoni3c4c9b82014-03-07 20:12:36 -03007261static void hsw_write_dcomp(struct drm_i915_private *dev_priv, uint32_t val)
7262{
7263 struct drm_device *dev = dev_priv->dev;
7264
7265 if (IS_HASWELL(dev)) {
7266 mutex_lock(&dev_priv->rps.hw_lock);
7267 if (sandybridge_pcode_write(dev_priv, GEN6_PCODE_WRITE_D_COMP,
7268 val))
7269 DRM_ERROR("Failed to disable D_COMP\n");
7270 mutex_unlock(&dev_priv->rps.hw_lock);
7271 } else {
7272 I915_WRITE(D_COMP, val);
7273 }
7274 POSTING_READ(D_COMP);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007275}
7276
7277/*
7278 * This function implements pieces of two sequences from BSpec:
7279 * - Sequence for display software to disable LCPLL
7280 * - Sequence for display software to allow package C8+
7281 * The steps implemented here are just the steps that actually touch the LCPLL
7282 * register. Callers should take care of disabling all the display engine
7283 * functions, doing the mode unset, fixing interrupts, etc.
7284 */
Paulo Zanoni6ff58d52013-09-24 13:52:57 -03007285static void hsw_disable_lcpll(struct drm_i915_private *dev_priv,
7286 bool switch_to_fclk, bool allow_power_down)
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007287{
7288 uint32_t val;
7289
7290 assert_can_disable_lcpll(dev_priv);
7291
7292 val = I915_READ(LCPLL_CTL);
7293
7294 if (switch_to_fclk) {
7295 val |= LCPLL_CD_SOURCE_FCLK;
7296 I915_WRITE(LCPLL_CTL, val);
7297
7298 if (wait_for_atomic_us(I915_READ(LCPLL_CTL) &
7299 LCPLL_CD_SOURCE_FCLK_DONE, 1))
7300 DRM_ERROR("Switching to FCLK failed\n");
7301
7302 val = I915_READ(LCPLL_CTL);
7303 }
7304
7305 val |= LCPLL_PLL_DISABLE;
7306 I915_WRITE(LCPLL_CTL, val);
7307 POSTING_READ(LCPLL_CTL);
7308
7309 if (wait_for((I915_READ(LCPLL_CTL) & LCPLL_PLL_LOCK) == 0, 1))
7310 DRM_ERROR("LCPLL still locked\n");
7311
7312 val = I915_READ(D_COMP);
7313 val |= D_COMP_COMP_DISABLE;
Paulo Zanoni3c4c9b82014-03-07 20:12:36 -03007314 hsw_write_dcomp(dev_priv, val);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007315 ndelay(100);
7316
7317 if (wait_for((I915_READ(D_COMP) & D_COMP_RCOMP_IN_PROGRESS) == 0, 1))
7318 DRM_ERROR("D_COMP RCOMP still in progress\n");
7319
7320 if (allow_power_down) {
7321 val = I915_READ(LCPLL_CTL);
7322 val |= LCPLL_POWER_DOWN_ALLOW;
7323 I915_WRITE(LCPLL_CTL, val);
7324 POSTING_READ(LCPLL_CTL);
7325 }
7326}
7327
7328/*
7329 * Fully restores LCPLL, disallowing power down and switching back to LCPLL
7330 * source.
7331 */
Paulo Zanoni6ff58d52013-09-24 13:52:57 -03007332static void hsw_restore_lcpll(struct drm_i915_private *dev_priv)
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007333{
7334 uint32_t val;
Paulo Zanonia8a8bd52014-03-07 20:08:05 -03007335 unsigned long irqflags;
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007336
7337 val = I915_READ(LCPLL_CTL);
7338
7339 if ((val & (LCPLL_PLL_LOCK | LCPLL_PLL_DISABLE | LCPLL_CD_SOURCE_FCLK |
7340 LCPLL_POWER_DOWN_ALLOW)) == LCPLL_PLL_LOCK)
7341 return;
7342
Paulo Zanonia8a8bd52014-03-07 20:08:05 -03007343 /*
7344 * Make sure we're not on PC8 state before disabling PC8, otherwise
7345 * we'll hang the machine. To prevent PC8 state, just enable force_wake.
7346 *
7347 * The other problem is that hsw_restore_lcpll() is called as part of
7348 * the runtime PM resume sequence, so we can't just call
7349 * gen6_gt_force_wake_get() because that function calls
7350 * intel_runtime_pm_get(), and we can't change the runtime PM refcount
7351 * while we are on the resume sequence. So to solve this problem we have
7352 * to call special forcewake code that doesn't touch runtime PM and
7353 * doesn't enable the forcewake delayed work.
7354 */
7355 spin_lock_irqsave(&dev_priv->uncore.lock, irqflags);
7356 if (dev_priv->uncore.forcewake_count++ == 0)
7357 dev_priv->uncore.funcs.force_wake_get(dev_priv, FORCEWAKE_ALL);
7358 spin_unlock_irqrestore(&dev_priv->uncore.lock, irqflags);
Paulo Zanoni215733f2013-08-19 13:18:07 -03007359
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007360 if (val & LCPLL_POWER_DOWN_ALLOW) {
7361 val &= ~LCPLL_POWER_DOWN_ALLOW;
7362 I915_WRITE(LCPLL_CTL, val);
Daniel Vetter35d8f2e2013-08-21 23:38:08 +02007363 POSTING_READ(LCPLL_CTL);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007364 }
7365
7366 val = I915_READ(D_COMP);
7367 val |= D_COMP_COMP_FORCE;
7368 val &= ~D_COMP_COMP_DISABLE;
Paulo Zanoni3c4c9b82014-03-07 20:12:36 -03007369 hsw_write_dcomp(dev_priv, val);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007370
7371 val = I915_READ(LCPLL_CTL);
7372 val &= ~LCPLL_PLL_DISABLE;
7373 I915_WRITE(LCPLL_CTL, val);
7374
7375 if (wait_for(I915_READ(LCPLL_CTL) & LCPLL_PLL_LOCK, 5))
7376 DRM_ERROR("LCPLL not locked yet\n");
7377
7378 if (val & LCPLL_CD_SOURCE_FCLK) {
7379 val = I915_READ(LCPLL_CTL);
7380 val &= ~LCPLL_CD_SOURCE_FCLK;
7381 I915_WRITE(LCPLL_CTL, val);
7382
7383 if (wait_for_atomic_us((I915_READ(LCPLL_CTL) &
7384 LCPLL_CD_SOURCE_FCLK_DONE) == 0, 1))
7385 DRM_ERROR("Switching back to LCPLL failed\n");
7386 }
Paulo Zanoni215733f2013-08-19 13:18:07 -03007387
Paulo Zanonia8a8bd52014-03-07 20:08:05 -03007388 /* See the big comment above. */
7389 spin_lock_irqsave(&dev_priv->uncore.lock, irqflags);
7390 if (--dev_priv->uncore.forcewake_count == 0)
7391 dev_priv->uncore.funcs.force_wake_put(dev_priv, FORCEWAKE_ALL);
7392 spin_unlock_irqrestore(&dev_priv->uncore.lock, irqflags);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007393}
7394
Paulo Zanoni765dab62014-03-07 20:08:18 -03007395/*
7396 * Package states C8 and deeper are really deep PC states that can only be
7397 * reached when all the devices on the system allow it, so even if the graphics
7398 * device allows PC8+, it doesn't mean the system will actually get to these
7399 * states. Our driver only allows PC8+ when going into runtime PM.
7400 *
7401 * The requirements for PC8+ are that all the outputs are disabled, the power
7402 * well is disabled and most interrupts are disabled, and these are also
7403 * requirements for runtime PM. When these conditions are met, we manually do
7404 * the other conditions: disable the interrupts, clocks and switch LCPLL refclk
7405 * to Fclk. If we're in PC8+ and we get an non-hotplug interrupt, we can hard
7406 * hang the machine.
7407 *
7408 * When we really reach PC8 or deeper states (not just when we allow it) we lose
7409 * the state of some registers, so when we come back from PC8+ we need to
7410 * restore this state. We don't get into PC8+ if we're not in RC6, so we don't
7411 * need to take care of the registers kept by RC6. Notice that this happens even
7412 * if we don't put the device in PCI D3 state (which is what currently happens
7413 * because of the runtime PM support).
7414 *
7415 * For more, read "Display Sequences for Package C8" on the hardware
7416 * documentation.
7417 */
Paulo Zanonia14cb6f2014-03-07 20:08:17 -03007418void hsw_enable_pc8(struct drm_i915_private *dev_priv)
Paulo Zanonic67a4702013-08-19 13:18:09 -03007419{
Paulo Zanonic67a4702013-08-19 13:18:09 -03007420 struct drm_device *dev = dev_priv->dev;
7421 uint32_t val;
7422
Paulo Zanonic67a4702013-08-19 13:18:09 -03007423 DRM_DEBUG_KMS("Enabling package C8+\n");
7424
Paulo Zanonic67a4702013-08-19 13:18:09 -03007425 if (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) {
7426 val = I915_READ(SOUTH_DSPCLK_GATE_D);
7427 val &= ~PCH_LP_PARTITION_LEVEL_DISABLE;
7428 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
7429 }
7430
7431 lpt_disable_clkout_dp(dev);
Paulo Zanonic67a4702013-08-19 13:18:09 -03007432 hsw_disable_lcpll(dev_priv, true, true);
7433}
7434
Paulo Zanonia14cb6f2014-03-07 20:08:17 -03007435void hsw_disable_pc8(struct drm_i915_private *dev_priv)
Paulo Zanonic67a4702013-08-19 13:18:09 -03007436{
7437 struct drm_device *dev = dev_priv->dev;
7438 uint32_t val;
7439
Paulo Zanonic67a4702013-08-19 13:18:09 -03007440 DRM_DEBUG_KMS("Disabling package C8+\n");
7441
7442 hsw_restore_lcpll(dev_priv);
Paulo Zanonic67a4702013-08-19 13:18:09 -03007443 lpt_init_pch_refclk(dev);
7444
7445 if (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) {
7446 val = I915_READ(SOUTH_DSPCLK_GATE_D);
7447 val |= PCH_LP_PARTITION_LEVEL_DISABLE;
7448 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
7449 }
7450
7451 intel_prepare_ddi(dev);
Paulo Zanonic67a4702013-08-19 13:18:09 -03007452}
7453
Paulo Zanoni9a952a02014-03-07 20:12:34 -03007454static void snb_modeset_global_resources(struct drm_device *dev)
7455{
7456 modeset_update_crtc_power_domains(dev);
7457}
7458
Imre Deak4f074122013-10-16 17:25:51 +03007459static void haswell_modeset_global_resources(struct drm_device *dev)
7460{
Paulo Zanonida723562013-12-19 11:54:51 -02007461 modeset_update_crtc_power_domains(dev);
Daniel Vetterd6dd9eb2013-01-29 16:35:20 -02007462}
7463
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03007464static int haswell_crtc_mode_set(struct drm_crtc *crtc,
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03007465 int x, int y,
7466 struct drm_framebuffer *fb)
7467{
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03007468 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03007469
Paulo Zanoni566b7342013-11-25 15:27:08 -02007470 if (!intel_ddi_pll_select(intel_crtc))
Paulo Zanoni6441ab52012-10-05 12:05:58 -03007471 return -EINVAL;
Paulo Zanoni566b7342013-11-25 15:27:08 -02007472 intel_ddi_pll_enable(intel_crtc);
Paulo Zanoni6441ab52012-10-05 12:05:58 -03007473
Daniel Vetter644cef32014-04-24 23:55:07 +02007474 intel_crtc->lowfreq_avail = false;
7475
Daniel Vetterc8f7a0d2014-04-24 23:55:04 +02007476 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08007477}
7478
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01007479static bool haswell_get_pipe_config(struct intel_crtc *crtc,
7480 struct intel_crtc_config *pipe_config)
7481{
7482 struct drm_device *dev = crtc->base.dev;
7483 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007484 enum intel_display_power_domain pfit_domain;
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01007485 uint32_t tmp;
7486
Imre Deakb5482bd2014-03-05 16:20:55 +02007487 if (!intel_display_power_enabled(dev_priv,
7488 POWER_DOMAIN_PIPE(crtc->pipe)))
7489 return false;
7490
Daniel Vettere143a212013-07-04 12:01:15 +02007491 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +02007492 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
7493
Daniel Vettereccb1402013-05-22 00:50:22 +02007494 tmp = I915_READ(TRANS_DDI_FUNC_CTL(TRANSCODER_EDP));
7495 if (tmp & TRANS_DDI_FUNC_ENABLE) {
7496 enum pipe trans_edp_pipe;
7497 switch (tmp & TRANS_DDI_EDP_INPUT_MASK) {
7498 default:
7499 WARN(1, "unknown pipe linked to edp transcoder\n");
7500 case TRANS_DDI_EDP_INPUT_A_ONOFF:
7501 case TRANS_DDI_EDP_INPUT_A_ON:
7502 trans_edp_pipe = PIPE_A;
7503 break;
7504 case TRANS_DDI_EDP_INPUT_B_ONOFF:
7505 trans_edp_pipe = PIPE_B;
7506 break;
7507 case TRANS_DDI_EDP_INPUT_C_ONOFF:
7508 trans_edp_pipe = PIPE_C;
7509 break;
7510 }
7511
7512 if (trans_edp_pipe == crtc->pipe)
7513 pipe_config->cpu_transcoder = TRANSCODER_EDP;
7514 }
7515
Imre Deakda7e29b2014-02-18 00:02:02 +02007516 if (!intel_display_power_enabled(dev_priv,
Daniel Vettereccb1402013-05-22 00:50:22 +02007517 POWER_DOMAIN_TRANSCODER(pipe_config->cpu_transcoder)))
Paulo Zanoni2bfce952013-04-18 16:35:40 -03007518 return false;
7519
Daniel Vettereccb1402013-05-22 00:50:22 +02007520 tmp = I915_READ(PIPECONF(pipe_config->cpu_transcoder));
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01007521 if (!(tmp & PIPECONF_ENABLE))
7522 return false;
7523
Daniel Vetter88adfff2013-03-28 10:42:01 +01007524 /*
Paulo Zanonif196e6b2013-04-18 16:35:41 -03007525 * Haswell has only FDI/PCH transcoder A. It is which is connected to
Daniel Vetter88adfff2013-03-28 10:42:01 +01007526 * DDI E. So just check whether this pipe is wired to DDI E and whether
7527 * the PCH transcoder is on.
7528 */
Daniel Vettereccb1402013-05-22 00:50:22 +02007529 tmp = I915_READ(TRANS_DDI_FUNC_CTL(pipe_config->cpu_transcoder));
Daniel Vetter88adfff2013-03-28 10:42:01 +01007530 if ((tmp & TRANS_DDI_PORT_MASK) == TRANS_DDI_SELECT_PORT(PORT_E) &&
Daniel Vetterab9412b2013-05-03 11:49:46 +02007531 I915_READ(LPT_TRANSCONF) & TRANS_ENABLE) {
Daniel Vetter88adfff2013-03-28 10:42:01 +01007532 pipe_config->has_pch_encoder = true;
7533
Daniel Vetter627eb5a2013-04-29 19:33:42 +02007534 tmp = I915_READ(FDI_RX_CTL(PIPE_A));
7535 pipe_config->fdi_lanes = ((FDI_DP_PORT_WIDTH_MASK & tmp) >>
7536 FDI_DP_PORT_WIDTH_SHIFT) + 1;
Daniel Vetter72419202013-04-04 13:28:53 +02007537
7538 ironlake_get_fdi_m_n_config(crtc, pipe_config);
Daniel Vetter627eb5a2013-04-29 19:33:42 +02007539 }
7540
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02007541 intel_get_pipe_timings(crtc, pipe_config);
7542
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007543 pfit_domain = POWER_DOMAIN_PIPE_PANEL_FITTER(crtc->pipe);
Imre Deakda7e29b2014-02-18 00:02:02 +02007544 if (intel_display_power_enabled(dev_priv, pfit_domain))
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007545 ironlake_get_pfit_config(crtc, pipe_config);
Daniel Vetter88adfff2013-03-28 10:42:01 +01007546
Jesse Barnese59150d2014-01-07 13:30:45 -08007547 if (IS_HASWELL(dev))
7548 pipe_config->ips_enabled = hsw_crtc_supports_ips(crtc) &&
7549 (I915_READ(IPS_CTL) & IPS_ENABLE);
Paulo Zanoni42db64e2013-05-31 16:33:22 -03007550
Daniel Vetter6c49f242013-06-06 12:45:25 +02007551 pipe_config->pixel_multiplier = 1;
7552
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01007553 return true;
7554}
7555
Jani Nikula1a915102013-10-16 12:34:48 +03007556static struct {
7557 int clock;
7558 u32 config;
7559} hdmi_audio_clock[] = {
7560 { DIV_ROUND_UP(25200 * 1000, 1001), AUD_CONFIG_PIXEL_CLOCK_HDMI_25175 },
7561 { 25200, AUD_CONFIG_PIXEL_CLOCK_HDMI_25200 }, /* default per bspec */
7562 { 27000, AUD_CONFIG_PIXEL_CLOCK_HDMI_27000 },
7563 { 27000 * 1001 / 1000, AUD_CONFIG_PIXEL_CLOCK_HDMI_27027 },
7564 { 54000, AUD_CONFIG_PIXEL_CLOCK_HDMI_54000 },
7565 { 54000 * 1001 / 1000, AUD_CONFIG_PIXEL_CLOCK_HDMI_54054 },
7566 { DIV_ROUND_UP(74250 * 1000, 1001), AUD_CONFIG_PIXEL_CLOCK_HDMI_74176 },
7567 { 74250, AUD_CONFIG_PIXEL_CLOCK_HDMI_74250 },
7568 { DIV_ROUND_UP(148500 * 1000, 1001), AUD_CONFIG_PIXEL_CLOCK_HDMI_148352 },
7569 { 148500, AUD_CONFIG_PIXEL_CLOCK_HDMI_148500 },
7570};
7571
7572/* get AUD_CONFIG_PIXEL_CLOCK_HDMI_* value for mode */
7573static u32 audio_config_hdmi_pixel_clock(struct drm_display_mode *mode)
7574{
7575 int i;
7576
7577 for (i = 0; i < ARRAY_SIZE(hdmi_audio_clock); i++) {
7578 if (mode->clock == hdmi_audio_clock[i].clock)
7579 break;
7580 }
7581
7582 if (i == ARRAY_SIZE(hdmi_audio_clock)) {
7583 DRM_DEBUG_KMS("HDMI audio pixel clock setting for %d not found, falling back to defaults\n", mode->clock);
7584 i = 1;
7585 }
7586
7587 DRM_DEBUG_KMS("Configuring HDMI audio for pixel clock %d (0x%08x)\n",
7588 hdmi_audio_clock[i].clock,
7589 hdmi_audio_clock[i].config);
7590
7591 return hdmi_audio_clock[i].config;
7592}
7593
Wu Fengguang3a9627f2011-12-09 20:42:19 +08007594static bool intel_eld_uptodate(struct drm_connector *connector,
7595 int reg_eldv, uint32_t bits_eldv,
7596 int reg_elda, uint32_t bits_elda,
7597 int reg_edid)
7598{
7599 struct drm_i915_private *dev_priv = connector->dev->dev_private;
7600 uint8_t *eld = connector->eld;
7601 uint32_t i;
7602
7603 i = I915_READ(reg_eldv);
7604 i &= bits_eldv;
7605
7606 if (!eld[0])
7607 return !i;
7608
7609 if (!i)
7610 return false;
7611
7612 i = I915_READ(reg_elda);
7613 i &= ~bits_elda;
7614 I915_WRITE(reg_elda, i);
7615
7616 for (i = 0; i < eld[2]; i++)
7617 if (I915_READ(reg_edid) != *((uint32_t *)eld + i))
7618 return false;
7619
7620 return true;
7621}
7622
Wu Fengguange0dac652011-09-05 14:25:34 +08007623static void g4x_write_eld(struct drm_connector *connector,
Jani Nikula34427052013-10-16 12:34:47 +03007624 struct drm_crtc *crtc,
7625 struct drm_display_mode *mode)
Wu Fengguange0dac652011-09-05 14:25:34 +08007626{
7627 struct drm_i915_private *dev_priv = connector->dev->dev_private;
7628 uint8_t *eld = connector->eld;
7629 uint32_t eldv;
7630 uint32_t len;
7631 uint32_t i;
7632
7633 i = I915_READ(G4X_AUD_VID_DID);
7634
7635 if (i == INTEL_AUDIO_DEVBLC || i == INTEL_AUDIO_DEVCL)
7636 eldv = G4X_ELDV_DEVCL_DEVBLC;
7637 else
7638 eldv = G4X_ELDV_DEVCTG;
7639
Wu Fengguang3a9627f2011-12-09 20:42:19 +08007640 if (intel_eld_uptodate(connector,
7641 G4X_AUD_CNTL_ST, eldv,
7642 G4X_AUD_CNTL_ST, G4X_ELD_ADDR,
7643 G4X_HDMIW_HDMIEDID))
7644 return;
7645
Wu Fengguange0dac652011-09-05 14:25:34 +08007646 i = I915_READ(G4X_AUD_CNTL_ST);
7647 i &= ~(eldv | G4X_ELD_ADDR);
7648 len = (i >> 9) & 0x1f; /* ELD buffer size */
7649 I915_WRITE(G4X_AUD_CNTL_ST, i);
7650
7651 if (!eld[0])
7652 return;
7653
7654 len = min_t(uint8_t, eld[2], len);
7655 DRM_DEBUG_DRIVER("ELD size %d\n", len);
7656 for (i = 0; i < len; i++)
7657 I915_WRITE(G4X_HDMIW_HDMIEDID, *((uint32_t *)eld + i));
7658
7659 i = I915_READ(G4X_AUD_CNTL_ST);
7660 i |= eldv;
7661 I915_WRITE(G4X_AUD_CNTL_ST, i);
7662}
7663
Wang Xingchao83358c852012-08-16 22:43:37 +08007664static void haswell_write_eld(struct drm_connector *connector,
Jani Nikula34427052013-10-16 12:34:47 +03007665 struct drm_crtc *crtc,
7666 struct drm_display_mode *mode)
Wang Xingchao83358c852012-08-16 22:43:37 +08007667{
7668 struct drm_i915_private *dev_priv = connector->dev->dev_private;
7669 uint8_t *eld = connector->eld;
Wang Xingchao83358c852012-08-16 22:43:37 +08007670 uint32_t eldv;
7671 uint32_t i;
7672 int len;
7673 int pipe = to_intel_crtc(crtc)->pipe;
7674 int tmp;
7675
7676 int hdmiw_hdmiedid = HSW_AUD_EDID_DATA(pipe);
7677 int aud_cntl_st = HSW_AUD_DIP_ELD_CTRL(pipe);
7678 int aud_config = HSW_AUD_CFG(pipe);
7679 int aud_cntrl_st2 = HSW_AUD_PIN_ELD_CP_VLD;
7680
Wang Xingchao83358c852012-08-16 22:43:37 +08007681 /* Audio output enable */
7682 DRM_DEBUG_DRIVER("HDMI audio: enable codec\n");
7683 tmp = I915_READ(aud_cntrl_st2);
7684 tmp |= (AUDIO_OUTPUT_ENABLE_A << (pipe * 4));
7685 I915_WRITE(aud_cntrl_st2, tmp);
Daniel Vetterc7905792014-04-16 16:56:09 +02007686 POSTING_READ(aud_cntrl_st2);
Wang Xingchao83358c852012-08-16 22:43:37 +08007687
Daniel Vetterc7905792014-04-16 16:56:09 +02007688 assert_pipe_disabled(dev_priv, to_intel_crtc(crtc)->pipe);
Wang Xingchao83358c852012-08-16 22:43:37 +08007689
7690 /* Set ELD valid state */
7691 tmp = I915_READ(aud_cntrl_st2);
Takashi Iwai7e7cb342013-09-10 07:30:36 +02007692 DRM_DEBUG_DRIVER("HDMI audio: pin eld vld status=0x%08x\n", tmp);
Wang Xingchao83358c852012-08-16 22:43:37 +08007693 tmp |= (AUDIO_ELD_VALID_A << (pipe * 4));
7694 I915_WRITE(aud_cntrl_st2, tmp);
7695 tmp = I915_READ(aud_cntrl_st2);
Takashi Iwai7e7cb342013-09-10 07:30:36 +02007696 DRM_DEBUG_DRIVER("HDMI audio: eld vld status=0x%08x\n", tmp);
Wang Xingchao83358c852012-08-16 22:43:37 +08007697
7698 /* Enable HDMI mode */
7699 tmp = I915_READ(aud_config);
Takashi Iwai7e7cb342013-09-10 07:30:36 +02007700 DRM_DEBUG_DRIVER("HDMI audio: audio conf: 0x%08x\n", tmp);
Wang Xingchao83358c852012-08-16 22:43:37 +08007701 /* clear N_programing_enable and N_value_index */
7702 tmp &= ~(AUD_CONFIG_N_VALUE_INDEX | AUD_CONFIG_N_PROG_ENABLE);
7703 I915_WRITE(aud_config, tmp);
7704
7705 DRM_DEBUG_DRIVER("ELD on pipe %c\n", pipe_name(pipe));
7706
7707 eldv = AUDIO_ELD_VALID_A << (pipe * 4);
7708
7709 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT)) {
7710 DRM_DEBUG_DRIVER("ELD: DisplayPort detected\n");
7711 eld[5] |= (1 << 2); /* Conn_Type, 0x1 = DisplayPort */
7712 I915_WRITE(aud_config, AUD_CONFIG_N_VALUE_INDEX); /* 0x1 = DP */
Jani Nikula1a915102013-10-16 12:34:48 +03007713 } else {
7714 I915_WRITE(aud_config, audio_config_hdmi_pixel_clock(mode));
7715 }
Wang Xingchao83358c852012-08-16 22:43:37 +08007716
7717 if (intel_eld_uptodate(connector,
7718 aud_cntrl_st2, eldv,
7719 aud_cntl_st, IBX_ELD_ADDRESS,
7720 hdmiw_hdmiedid))
7721 return;
7722
7723 i = I915_READ(aud_cntrl_st2);
7724 i &= ~eldv;
7725 I915_WRITE(aud_cntrl_st2, i);
7726
7727 if (!eld[0])
7728 return;
7729
7730 i = I915_READ(aud_cntl_st);
7731 i &= ~IBX_ELD_ADDRESS;
7732 I915_WRITE(aud_cntl_st, i);
7733 i = (i >> 29) & DIP_PORT_SEL_MASK; /* DIP_Port_Select, 0x1 = PortB */
7734 DRM_DEBUG_DRIVER("port num:%d\n", i);
7735
7736 len = min_t(uint8_t, eld[2], 21); /* 84 bytes of hw ELD buffer */
7737 DRM_DEBUG_DRIVER("ELD size %d\n", len);
7738 for (i = 0; i < len; i++)
7739 I915_WRITE(hdmiw_hdmiedid, *((uint32_t *)eld + i));
7740
7741 i = I915_READ(aud_cntrl_st2);
7742 i |= eldv;
7743 I915_WRITE(aud_cntrl_st2, i);
7744
7745}
7746
Wu Fengguange0dac652011-09-05 14:25:34 +08007747static void ironlake_write_eld(struct drm_connector *connector,
Jani Nikula34427052013-10-16 12:34:47 +03007748 struct drm_crtc *crtc,
7749 struct drm_display_mode *mode)
Wu Fengguange0dac652011-09-05 14:25:34 +08007750{
7751 struct drm_i915_private *dev_priv = connector->dev->dev_private;
7752 uint8_t *eld = connector->eld;
7753 uint32_t eldv;
7754 uint32_t i;
7755 int len;
7756 int hdmiw_hdmiedid;
Wu Fengguangb6daa022012-01-06 14:41:31 -06007757 int aud_config;
Wu Fengguange0dac652011-09-05 14:25:34 +08007758 int aud_cntl_st;
7759 int aud_cntrl_st2;
Wang Xingchao9b138a82012-08-09 16:52:18 +08007760 int pipe = to_intel_crtc(crtc)->pipe;
Wu Fengguange0dac652011-09-05 14:25:34 +08007761
Wu Fengguangb3f33cb2011-12-09 20:42:17 +08007762 if (HAS_PCH_IBX(connector->dev)) {
Wang Xingchao9b138a82012-08-09 16:52:18 +08007763 hdmiw_hdmiedid = IBX_HDMIW_HDMIEDID(pipe);
7764 aud_config = IBX_AUD_CFG(pipe);
7765 aud_cntl_st = IBX_AUD_CNTL_ST(pipe);
Wu Fengguang1202b4c62011-12-09 20:42:18 +08007766 aud_cntrl_st2 = IBX_AUD_CNTL_ST2;
Mengdong Lin9ca2fe72013-11-01 00:17:03 -04007767 } else if (IS_VALLEYVIEW(connector->dev)) {
7768 hdmiw_hdmiedid = VLV_HDMIW_HDMIEDID(pipe);
7769 aud_config = VLV_AUD_CFG(pipe);
7770 aud_cntl_st = VLV_AUD_CNTL_ST(pipe);
7771 aud_cntrl_st2 = VLV_AUD_CNTL_ST2;
Wu Fengguange0dac652011-09-05 14:25:34 +08007772 } else {
Wang Xingchao9b138a82012-08-09 16:52:18 +08007773 hdmiw_hdmiedid = CPT_HDMIW_HDMIEDID(pipe);
7774 aud_config = CPT_AUD_CFG(pipe);
7775 aud_cntl_st = CPT_AUD_CNTL_ST(pipe);
Wu Fengguang1202b4c62011-12-09 20:42:18 +08007776 aud_cntrl_st2 = CPT_AUD_CNTRL_ST2;
Wu Fengguange0dac652011-09-05 14:25:34 +08007777 }
7778
Wang Xingchao9b138a82012-08-09 16:52:18 +08007779 DRM_DEBUG_DRIVER("ELD on pipe %c\n", pipe_name(pipe));
Wu Fengguange0dac652011-09-05 14:25:34 +08007780
Mengdong Lin9ca2fe72013-11-01 00:17:03 -04007781 if (IS_VALLEYVIEW(connector->dev)) {
7782 struct intel_encoder *intel_encoder;
7783 struct intel_digital_port *intel_dig_port;
7784
7785 intel_encoder = intel_attached_encoder(connector);
7786 intel_dig_port = enc_to_dig_port(&intel_encoder->base);
7787 i = intel_dig_port->port;
7788 } else {
7789 i = I915_READ(aud_cntl_st);
7790 i = (i >> 29) & DIP_PORT_SEL_MASK;
7791 /* DIP_Port_Select, 0x1 = PortB */
7792 }
7793
Wu Fengguange0dac652011-09-05 14:25:34 +08007794 if (!i) {
7795 DRM_DEBUG_DRIVER("Audio directed to unknown port\n");
7796 /* operate blindly on all ports */
Wu Fengguang1202b4c62011-12-09 20:42:18 +08007797 eldv = IBX_ELD_VALIDB;
7798 eldv |= IBX_ELD_VALIDB << 4;
7799 eldv |= IBX_ELD_VALIDB << 8;
Wu Fengguange0dac652011-09-05 14:25:34 +08007800 } else {
Ville Syrjälä2582a852013-04-17 17:48:47 +03007801 DRM_DEBUG_DRIVER("ELD on port %c\n", port_name(i));
Wu Fengguang1202b4c62011-12-09 20:42:18 +08007802 eldv = IBX_ELD_VALIDB << ((i - 1) * 4);
Wu Fengguange0dac652011-09-05 14:25:34 +08007803 }
7804
Wu Fengguang3a9627f2011-12-09 20:42:19 +08007805 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT)) {
7806 DRM_DEBUG_DRIVER("ELD: DisplayPort detected\n");
7807 eld[5] |= (1 << 2); /* Conn_Type, 0x1 = DisplayPort */
Wu Fengguangb6daa022012-01-06 14:41:31 -06007808 I915_WRITE(aud_config, AUD_CONFIG_N_VALUE_INDEX); /* 0x1 = DP */
Jani Nikula1a915102013-10-16 12:34:48 +03007809 } else {
7810 I915_WRITE(aud_config, audio_config_hdmi_pixel_clock(mode));
7811 }
Wu Fengguang3a9627f2011-12-09 20:42:19 +08007812
7813 if (intel_eld_uptodate(connector,
7814 aud_cntrl_st2, eldv,
7815 aud_cntl_st, IBX_ELD_ADDRESS,
7816 hdmiw_hdmiedid))
7817 return;
7818
Wu Fengguange0dac652011-09-05 14:25:34 +08007819 i = I915_READ(aud_cntrl_st2);
7820 i &= ~eldv;
7821 I915_WRITE(aud_cntrl_st2, i);
7822
7823 if (!eld[0])
7824 return;
7825
Wu Fengguange0dac652011-09-05 14:25:34 +08007826 i = I915_READ(aud_cntl_st);
Wu Fengguang1202b4c62011-12-09 20:42:18 +08007827 i &= ~IBX_ELD_ADDRESS;
Wu Fengguange0dac652011-09-05 14:25:34 +08007828 I915_WRITE(aud_cntl_st, i);
7829
7830 len = min_t(uint8_t, eld[2], 21); /* 84 bytes of hw ELD buffer */
7831 DRM_DEBUG_DRIVER("ELD size %d\n", len);
7832 for (i = 0; i < len; i++)
7833 I915_WRITE(hdmiw_hdmiedid, *((uint32_t *)eld + i));
7834
7835 i = I915_READ(aud_cntrl_st2);
7836 i |= eldv;
7837 I915_WRITE(aud_cntrl_st2, i);
7838}
7839
7840void intel_write_eld(struct drm_encoder *encoder,
7841 struct drm_display_mode *mode)
7842{
7843 struct drm_crtc *crtc = encoder->crtc;
7844 struct drm_connector *connector;
7845 struct drm_device *dev = encoder->dev;
7846 struct drm_i915_private *dev_priv = dev->dev_private;
7847
7848 connector = drm_select_eld(encoder, mode);
7849 if (!connector)
7850 return;
7851
7852 DRM_DEBUG_DRIVER("ELD on [CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
7853 connector->base.id,
Jani Nikulac23cc412014-06-03 14:56:17 +03007854 connector->name,
Wu Fengguange0dac652011-09-05 14:25:34 +08007855 connector->encoder->base.id,
Jani Nikula8e329a02014-06-03 14:56:21 +03007856 connector->encoder->name);
Wu Fengguange0dac652011-09-05 14:25:34 +08007857
7858 connector->eld[6] = drm_av_sync_delay(connector, mode) / 2;
7859
7860 if (dev_priv->display.write_eld)
Jani Nikula34427052013-10-16 12:34:47 +03007861 dev_priv->display.write_eld(connector, crtc, mode);
Wu Fengguange0dac652011-09-05 14:25:34 +08007862}
7863
Chris Wilson560b85b2010-08-07 11:01:38 +01007864static void i845_update_cursor(struct drm_crtc *crtc, u32 base)
7865{
7866 struct drm_device *dev = crtc->dev;
7867 struct drm_i915_private *dev_priv = dev->dev_private;
7868 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Chris Wilson4b0e3332014-05-30 16:35:26 +03007869 uint32_t cntl;
Chris Wilson560b85b2010-08-07 11:01:38 +01007870
Chris Wilson4b0e3332014-05-30 16:35:26 +03007871 if (base != intel_crtc->cursor_base) {
Chris Wilson560b85b2010-08-07 11:01:38 +01007872 /* On these chipsets we can only modify the base whilst
7873 * the cursor is disabled.
7874 */
Chris Wilson4b0e3332014-05-30 16:35:26 +03007875 if (intel_crtc->cursor_cntl) {
7876 I915_WRITE(_CURACNTR, 0);
7877 POSTING_READ(_CURACNTR);
7878 intel_crtc->cursor_cntl = 0;
7879 }
7880
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08007881 I915_WRITE(_CURABASE, base);
Chris Wilson4b0e3332014-05-30 16:35:26 +03007882 POSTING_READ(_CURABASE);
7883 }
Chris Wilson560b85b2010-08-07 11:01:38 +01007884
Chris Wilson4b0e3332014-05-30 16:35:26 +03007885 /* XXX width must be 64, stride 256 => 0x00 << 28 */
7886 cntl = 0;
7887 if (base)
7888 cntl = (CURSOR_ENABLE |
Chris Wilson560b85b2010-08-07 11:01:38 +01007889 CURSOR_GAMMA_ENABLE |
Chris Wilson4b0e3332014-05-30 16:35:26 +03007890 CURSOR_FORMAT_ARGB);
7891 if (intel_crtc->cursor_cntl != cntl) {
7892 I915_WRITE(_CURACNTR, cntl);
7893 POSTING_READ(_CURACNTR);
7894 intel_crtc->cursor_cntl = cntl;
7895 }
Chris Wilson560b85b2010-08-07 11:01:38 +01007896}
7897
7898static void i9xx_update_cursor(struct drm_crtc *crtc, u32 base)
7899{
7900 struct drm_device *dev = crtc->dev;
7901 struct drm_i915_private *dev_priv = dev->dev_private;
7902 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
7903 int pipe = intel_crtc->pipe;
Chris Wilson4b0e3332014-05-30 16:35:26 +03007904 uint32_t cntl;
Chris Wilson560b85b2010-08-07 11:01:38 +01007905
Chris Wilson4b0e3332014-05-30 16:35:26 +03007906 cntl = 0;
7907 if (base) {
7908 cntl = MCURSOR_GAMMA_ENABLE;
7909 switch (intel_crtc->cursor_width) {
Sagar Kamble4726e0b2014-03-10 17:06:23 +05307910 case 64:
7911 cntl |= CURSOR_MODE_64_ARGB_AX;
7912 break;
7913 case 128:
7914 cntl |= CURSOR_MODE_128_ARGB_AX;
7915 break;
7916 case 256:
7917 cntl |= CURSOR_MODE_256_ARGB_AX;
7918 break;
7919 default:
7920 WARN_ON(1);
7921 return;
Chris Wilson560b85b2010-08-07 11:01:38 +01007922 }
Chris Wilson4b0e3332014-05-30 16:35:26 +03007923 cntl |= pipe << 28; /* Connect to correct pipe */
Chris Wilson560b85b2010-08-07 11:01:38 +01007924 }
Chris Wilson4b0e3332014-05-30 16:35:26 +03007925 if (intel_crtc->cursor_cntl != cntl) {
7926 I915_WRITE(CURCNTR(pipe), cntl);
7927 POSTING_READ(CURCNTR(pipe));
7928 intel_crtc->cursor_cntl = cntl;
7929 }
7930
Chris Wilson560b85b2010-08-07 11:01:38 +01007931 /* and commit changes on next vblank */
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08007932 I915_WRITE(CURBASE(pipe), base);
Daniel Vetterb2ea8ef2013-11-04 08:13:45 +01007933 POSTING_READ(CURBASE(pipe));
Chris Wilson560b85b2010-08-07 11:01:38 +01007934}
7935
Jesse Barnes65a21cd2011-10-12 11:10:21 -07007936static void ivb_update_cursor(struct drm_crtc *crtc, u32 base)
7937{
7938 struct drm_device *dev = crtc->dev;
7939 struct drm_i915_private *dev_priv = dev->dev_private;
7940 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
7941 int pipe = intel_crtc->pipe;
Chris Wilson4b0e3332014-05-30 16:35:26 +03007942 uint32_t cntl;
Jesse Barnes65a21cd2011-10-12 11:10:21 -07007943
Chris Wilson4b0e3332014-05-30 16:35:26 +03007944 cntl = 0;
7945 if (base) {
7946 cntl = MCURSOR_GAMMA_ENABLE;
7947 switch (intel_crtc->cursor_width) {
Sagar Kamble4726e0b2014-03-10 17:06:23 +05307948 case 64:
7949 cntl |= CURSOR_MODE_64_ARGB_AX;
7950 break;
7951 case 128:
7952 cntl |= CURSOR_MODE_128_ARGB_AX;
7953 break;
7954 case 256:
7955 cntl |= CURSOR_MODE_256_ARGB_AX;
7956 break;
7957 default:
7958 WARN_ON(1);
7959 return;
Jesse Barnes65a21cd2011-10-12 11:10:21 -07007960 }
Jesse Barnes65a21cd2011-10-12 11:10:21 -07007961 }
Chris Wilson4b0e3332014-05-30 16:35:26 +03007962 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
7963 cntl |= CURSOR_PIPE_CSC_ENABLE;
7964
7965 if (intel_crtc->cursor_cntl != cntl) {
7966 I915_WRITE(CURCNTR(pipe), cntl);
7967 POSTING_READ(CURCNTR(pipe));
7968 intel_crtc->cursor_cntl = cntl;
7969 }
7970
Jesse Barnes65a21cd2011-10-12 11:10:21 -07007971 /* and commit changes on next vblank */
Ville Syrjälä5efb3e22014-04-09 13:28:53 +03007972 I915_WRITE(CURBASE(pipe), base);
7973 POSTING_READ(CURBASE(pipe));
Jesse Barnes65a21cd2011-10-12 11:10:21 -07007974}
7975
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01007976/* If no-part of the cursor is visible on the framebuffer, then the GPU may hang... */
Chris Wilson6b383a72010-09-13 13:54:26 +01007977static void intel_crtc_update_cursor(struct drm_crtc *crtc,
7978 bool on)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01007979{
7980 struct drm_device *dev = crtc->dev;
7981 struct drm_i915_private *dev_priv = dev->dev_private;
7982 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
7983 int pipe = intel_crtc->pipe;
7984 int x = intel_crtc->cursor_x;
7985 int y = intel_crtc->cursor_y;
Ville Syrjäläd6e4db12013-09-04 18:25:31 +03007986 u32 base = 0, pos = 0;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01007987
Ville Syrjäläd6e4db12013-09-04 18:25:31 +03007988 if (on)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01007989 base = intel_crtc->cursor_addr;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01007990
Ville Syrjäläd6e4db12013-09-04 18:25:31 +03007991 if (x >= intel_crtc->config.pipe_src_w)
7992 base = 0;
7993
7994 if (y >= intel_crtc->config.pipe_src_h)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01007995 base = 0;
7996
7997 if (x < 0) {
Ville Syrjäläefc90642013-09-04 18:25:30 +03007998 if (x + intel_crtc->cursor_width <= 0)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01007999 base = 0;
8000
8001 pos |= CURSOR_POS_SIGN << CURSOR_X_SHIFT;
8002 x = -x;
8003 }
8004 pos |= x << CURSOR_X_SHIFT;
8005
8006 if (y < 0) {
Ville Syrjäläefc90642013-09-04 18:25:30 +03008007 if (y + intel_crtc->cursor_height <= 0)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01008008 base = 0;
8009
8010 pos |= CURSOR_POS_SIGN << CURSOR_Y_SHIFT;
8011 y = -y;
8012 }
8013 pos |= y << CURSOR_Y_SHIFT;
8014
Chris Wilson4b0e3332014-05-30 16:35:26 +03008015 if (base == 0 && intel_crtc->cursor_base == 0)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01008016 return;
8017
Ville Syrjälä5efb3e22014-04-09 13:28:53 +03008018 I915_WRITE(CURPOS(pipe), pos);
8019
8020 if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev) || IS_BROADWELL(dev))
Jesse Barnes65a21cd2011-10-12 11:10:21 -07008021 ivb_update_cursor(crtc, base);
Ville Syrjälä5efb3e22014-04-09 13:28:53 +03008022 else if (IS_845G(dev) || IS_I865G(dev))
8023 i845_update_cursor(crtc, base);
8024 else
8025 i9xx_update_cursor(crtc, base);
Chris Wilson4b0e3332014-05-30 16:35:26 +03008026 intel_crtc->cursor_base = base;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01008027}
8028
Jesse Barnes79e53942008-11-07 14:24:08 -08008029static int intel_crtc_cursor_set(struct drm_crtc *crtc,
Chris Wilson05394f32010-11-08 19:18:58 +00008030 struct drm_file *file,
Jesse Barnes79e53942008-11-07 14:24:08 -08008031 uint32_t handle,
8032 uint32_t width, uint32_t height)
8033{
8034 struct drm_device *dev = crtc->dev;
8035 struct drm_i915_private *dev_priv = dev->dev_private;
8036 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Chris Wilson05394f32010-11-08 19:18:58 +00008037 struct drm_i915_gem_object *obj;
Chris Wilson64f962e2014-03-26 12:38:15 +00008038 unsigned old_width;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01008039 uint32_t addr;
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05008040 int ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08008041
Jesse Barnes79e53942008-11-07 14:24:08 -08008042 /* if we want to turn off the cursor ignore width and height */
8043 if (!handle) {
Zhao Yakui28c97732009-10-09 11:39:41 +08008044 DRM_DEBUG_KMS("cursor off\n");
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05008045 addr = 0;
Chris Wilson05394f32010-11-08 19:18:58 +00008046 obj = NULL;
Pierre Willenbrock50044172009-02-23 10:12:15 +10008047 mutex_lock(&dev->struct_mutex);
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05008048 goto finish;
Jesse Barnes79e53942008-11-07 14:24:08 -08008049 }
8050
Sagar Kamble4726e0b2014-03-10 17:06:23 +05308051 /* Check for which cursor types we support */
8052 if (!((width == 64 && height == 64) ||
8053 (width == 128 && height == 128 && !IS_GEN2(dev)) ||
8054 (width == 256 && height == 256 && !IS_GEN2(dev)))) {
8055 DRM_DEBUG("Cursor dimension not supported\n");
Jesse Barnes79e53942008-11-07 14:24:08 -08008056 return -EINVAL;
8057 }
8058
Chris Wilson05394f32010-11-08 19:18:58 +00008059 obj = to_intel_bo(drm_gem_object_lookup(dev, file, handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00008060 if (&obj->base == NULL)
Jesse Barnes79e53942008-11-07 14:24:08 -08008061 return -ENOENT;
8062
Chris Wilson05394f32010-11-08 19:18:58 +00008063 if (obj->base.size < width * height * 4) {
Daniel Vetter3b25b312014-02-14 14:06:06 +01008064 DRM_DEBUG_KMS("buffer is to small\n");
Dave Airlie34b8686e2009-01-15 14:03:07 +10008065 ret = -ENOMEM;
8066 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -08008067 }
8068
Dave Airlie71acb5e2008-12-30 20:31:46 +10008069 /* we only need to pin inside GTT if cursor is non-phy */
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05008070 mutex_lock(&dev->struct_mutex);
Damien Lespiau3d13ef22014-02-07 19:12:47 +00008071 if (!INTEL_INFO(dev)->cursor_needs_physical) {
Chris Wilson693db182013-03-05 14:52:39 +00008072 unsigned alignment;
8073
Chris Wilsond9e86c02010-11-10 16:40:20 +00008074 if (obj->tiling_mode) {
Daniel Vetter3b25b312014-02-14 14:06:06 +01008075 DRM_DEBUG_KMS("cursor cannot be tiled\n");
Chris Wilsond9e86c02010-11-10 16:40:20 +00008076 ret = -EINVAL;
8077 goto fail_locked;
8078 }
8079
Chris Wilson693db182013-03-05 14:52:39 +00008080 /* Note that the w/a also requires 2 PTE of padding following
8081 * the bo. We currently fill all unused PTE with the shadow
8082 * page and so we should always have valid PTE following the
8083 * cursor preventing the VT-d warning.
8084 */
8085 alignment = 0;
8086 if (need_vtd_wa(dev))
8087 alignment = 64*1024;
8088
8089 ret = i915_gem_object_pin_to_display_plane(obj, alignment, NULL);
Chris Wilsone7b526b2010-06-02 08:30:48 +01008090 if (ret) {
Daniel Vetter3b25b312014-02-14 14:06:06 +01008091 DRM_DEBUG_KMS("failed to move cursor bo into the GTT\n");
Chris Wilson2da3b9b2011-04-14 09:41:17 +01008092 goto fail_locked;
Chris Wilsone7b526b2010-06-02 08:30:48 +01008093 }
8094
Chris Wilsond9e86c02010-11-10 16:40:20 +00008095 ret = i915_gem_object_put_fence(obj);
8096 if (ret) {
Daniel Vetter3b25b312014-02-14 14:06:06 +01008097 DRM_DEBUG_KMS("failed to release fence for cursor");
Chris Wilsond9e86c02010-11-10 16:40:20 +00008098 goto fail_unpin;
8099 }
8100
Ben Widawskyf343c5f2013-07-05 14:41:04 -07008101 addr = i915_gem_obj_ggtt_offset(obj);
Dave Airlie71acb5e2008-12-30 20:31:46 +10008102 } else {
Chris Wilson6eeefaf2010-08-07 11:01:39 +01008103 int align = IS_I830(dev) ? 16 * 1024 : 256;
Chris Wilson05394f32010-11-08 19:18:58 +00008104 ret = i915_gem_attach_phys_object(dev, obj,
Chris Wilson6eeefaf2010-08-07 11:01:39 +01008105 (intel_crtc->pipe == 0) ? I915_GEM_PHYS_CURSOR_0 : I915_GEM_PHYS_CURSOR_1,
8106 align);
Dave Airlie71acb5e2008-12-30 20:31:46 +10008107 if (ret) {
Daniel Vetter3b25b312014-02-14 14:06:06 +01008108 DRM_DEBUG_KMS("failed to attach phys object\n");
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05008109 goto fail_locked;
Dave Airlie71acb5e2008-12-30 20:31:46 +10008110 }
Chris Wilson05394f32010-11-08 19:18:58 +00008111 addr = obj->phys_obj->handle->busaddr;
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05008112 }
8113
Chris Wilsona6c45cf2010-09-17 00:32:17 +01008114 if (IS_GEN2(dev))
Jesse Barnes14b60392009-05-20 16:47:08 -04008115 I915_WRITE(CURSIZE, (height << 12) | width);
8116
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05008117 finish:
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05008118 if (intel_crtc->cursor_bo) {
Damien Lespiau3d13ef22014-02-07 19:12:47 +00008119 if (INTEL_INFO(dev)->cursor_needs_physical) {
Chris Wilson05394f32010-11-08 19:18:58 +00008120 if (intel_crtc->cursor_bo != obj)
Dave Airlie71acb5e2008-12-30 20:31:46 +10008121 i915_gem_detach_phys_object(dev, intel_crtc->cursor_bo);
8122 } else
Chris Wilsoncc98b412013-08-09 12:25:09 +01008123 i915_gem_object_unpin_from_display_plane(intel_crtc->cursor_bo);
Chris Wilson05394f32010-11-08 19:18:58 +00008124 drm_gem_object_unreference(&intel_crtc->cursor_bo->base);
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05008125 }
Jesse Barnes80824002009-09-10 15:28:06 -07008126
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05008127 mutex_unlock(&dev->struct_mutex);
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05008128
Chris Wilson64f962e2014-03-26 12:38:15 +00008129 old_width = intel_crtc->cursor_width;
8130
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05008131 intel_crtc->cursor_addr = addr;
Chris Wilson05394f32010-11-08 19:18:58 +00008132 intel_crtc->cursor_bo = obj;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01008133 intel_crtc->cursor_width = width;
8134 intel_crtc->cursor_height = height;
8135
Chris Wilson64f962e2014-03-26 12:38:15 +00008136 if (intel_crtc->active) {
8137 if (old_width != width)
8138 intel_update_watermarks(crtc);
Ville Syrjäläf2f5f772013-09-17 18:33:44 +03008139 intel_crtc_update_cursor(crtc, intel_crtc->cursor_bo != NULL);
Chris Wilson64f962e2014-03-26 12:38:15 +00008140 }
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05008141
Jesse Barnes79e53942008-11-07 14:24:08 -08008142 return 0;
Chris Wilsone7b526b2010-06-02 08:30:48 +01008143fail_unpin:
Chris Wilsoncc98b412013-08-09 12:25:09 +01008144 i915_gem_object_unpin_from_display_plane(obj);
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05008145fail_locked:
Dave Airlie34b8686e2009-01-15 14:03:07 +10008146 mutex_unlock(&dev->struct_mutex);
Luca Barbieribc9025b2010-02-09 05:49:12 +00008147fail:
Chris Wilson05394f32010-11-08 19:18:58 +00008148 drm_gem_object_unreference_unlocked(&obj->base);
Dave Airlie34b8686e2009-01-15 14:03:07 +10008149 return ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08008150}
8151
8152static int intel_crtc_cursor_move(struct drm_crtc *crtc, int x, int y)
8153{
Jesse Barnes79e53942008-11-07 14:24:08 -08008154 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08008155
Ville Syrjälä92e76c82013-10-21 19:01:58 +03008156 intel_crtc->cursor_x = clamp_t(int, x, SHRT_MIN, SHRT_MAX);
8157 intel_crtc->cursor_y = clamp_t(int, y, SHRT_MIN, SHRT_MAX);
Jesse Barnes652c3932009-08-17 13:31:43 -07008158
Ville Syrjäläf2f5f772013-09-17 18:33:44 +03008159 if (intel_crtc->active)
8160 intel_crtc_update_cursor(crtc, intel_crtc->cursor_bo != NULL);
Jesse Barnes79e53942008-11-07 14:24:08 -08008161
8162 return 0;
8163}
8164
Jesse Barnes79e53942008-11-07 14:24:08 -08008165static void intel_crtc_gamma_set(struct drm_crtc *crtc, u16 *red, u16 *green,
James Simmons72034252010-08-03 01:33:19 +01008166 u16 *blue, uint32_t start, uint32_t size)
Jesse Barnes79e53942008-11-07 14:24:08 -08008167{
James Simmons72034252010-08-03 01:33:19 +01008168 int end = (start + size > 256) ? 256 : start + size, i;
Jesse Barnes79e53942008-11-07 14:24:08 -08008169 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08008170
James Simmons72034252010-08-03 01:33:19 +01008171 for (i = start; i < end; i++) {
Jesse Barnes79e53942008-11-07 14:24:08 -08008172 intel_crtc->lut_r[i] = red[i] >> 8;
8173 intel_crtc->lut_g[i] = green[i] >> 8;
8174 intel_crtc->lut_b[i] = blue[i] >> 8;
8175 }
8176
8177 intel_crtc_load_lut(crtc);
8178}
8179
Jesse Barnes79e53942008-11-07 14:24:08 -08008180/* VESA 640x480x72Hz mode to set on the pipe */
8181static struct drm_display_mode load_detect_mode = {
8182 DRM_MODE("640x480", DRM_MODE_TYPE_DEFAULT, 31500, 640, 664,
8183 704, 832, 0, 480, 489, 491, 520, 0, DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
8184};
8185
Daniel Vettera8bb6812014-02-10 18:00:39 +01008186struct drm_framebuffer *
8187__intel_framebuffer_create(struct drm_device *dev,
8188 struct drm_mode_fb_cmd2 *mode_cmd,
8189 struct drm_i915_gem_object *obj)
Chris Wilsond2dff872011-04-19 08:36:26 +01008190{
8191 struct intel_framebuffer *intel_fb;
8192 int ret;
8193
8194 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
8195 if (!intel_fb) {
8196 drm_gem_object_unreference_unlocked(&obj->base);
8197 return ERR_PTR(-ENOMEM);
8198 }
8199
8200 ret = intel_framebuffer_init(dev, intel_fb, mode_cmd, obj);
Daniel Vetterdd4916c2013-10-09 21:23:51 +02008201 if (ret)
8202 goto err;
Chris Wilsond2dff872011-04-19 08:36:26 +01008203
8204 return &intel_fb->base;
Daniel Vetterdd4916c2013-10-09 21:23:51 +02008205err:
8206 drm_gem_object_unreference_unlocked(&obj->base);
8207 kfree(intel_fb);
8208
8209 return ERR_PTR(ret);
Chris Wilsond2dff872011-04-19 08:36:26 +01008210}
8211
Daniel Vetterb5ea6422014-03-02 21:18:00 +01008212static struct drm_framebuffer *
Daniel Vettera8bb6812014-02-10 18:00:39 +01008213intel_framebuffer_create(struct drm_device *dev,
8214 struct drm_mode_fb_cmd2 *mode_cmd,
8215 struct drm_i915_gem_object *obj)
8216{
8217 struct drm_framebuffer *fb;
8218 int ret;
8219
8220 ret = i915_mutex_lock_interruptible(dev);
8221 if (ret)
8222 return ERR_PTR(ret);
8223 fb = __intel_framebuffer_create(dev, mode_cmd, obj);
8224 mutex_unlock(&dev->struct_mutex);
8225
8226 return fb;
8227}
8228
Chris Wilsond2dff872011-04-19 08:36:26 +01008229static u32
8230intel_framebuffer_pitch_for_width(int width, int bpp)
8231{
8232 u32 pitch = DIV_ROUND_UP(width * bpp, 8);
8233 return ALIGN(pitch, 64);
8234}
8235
8236static u32
8237intel_framebuffer_size_for_mode(struct drm_display_mode *mode, int bpp)
8238{
8239 u32 pitch = intel_framebuffer_pitch_for_width(mode->hdisplay, bpp);
8240 return ALIGN(pitch * mode->vdisplay, PAGE_SIZE);
8241}
8242
8243static struct drm_framebuffer *
8244intel_framebuffer_create_for_mode(struct drm_device *dev,
8245 struct drm_display_mode *mode,
8246 int depth, int bpp)
8247{
8248 struct drm_i915_gem_object *obj;
Chris Wilson0fed39b2012-11-05 22:25:07 +00008249 struct drm_mode_fb_cmd2 mode_cmd = { 0 };
Chris Wilsond2dff872011-04-19 08:36:26 +01008250
8251 obj = i915_gem_alloc_object(dev,
8252 intel_framebuffer_size_for_mode(mode, bpp));
8253 if (obj == NULL)
8254 return ERR_PTR(-ENOMEM);
8255
8256 mode_cmd.width = mode->hdisplay;
8257 mode_cmd.height = mode->vdisplay;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08008258 mode_cmd.pitches[0] = intel_framebuffer_pitch_for_width(mode_cmd.width,
8259 bpp);
Dave Airlie5ca0c342012-02-23 15:33:40 +00008260 mode_cmd.pixel_format = drm_mode_legacy_fb_format(bpp, depth);
Chris Wilsond2dff872011-04-19 08:36:26 +01008261
8262 return intel_framebuffer_create(dev, &mode_cmd, obj);
8263}
8264
8265static struct drm_framebuffer *
8266mode_fits_in_fbdev(struct drm_device *dev,
8267 struct drm_display_mode *mode)
8268{
Daniel Vetter4520f532013-10-09 09:18:51 +02008269#ifdef CONFIG_DRM_I915_FBDEV
Chris Wilsond2dff872011-04-19 08:36:26 +01008270 struct drm_i915_private *dev_priv = dev->dev_private;
8271 struct drm_i915_gem_object *obj;
8272 struct drm_framebuffer *fb;
8273
Daniel Vetter4c0e5522014-02-14 16:35:54 +01008274 if (!dev_priv->fbdev)
8275 return NULL;
8276
8277 if (!dev_priv->fbdev->fb)
Chris Wilsond2dff872011-04-19 08:36:26 +01008278 return NULL;
8279
Jesse Barnes8bcd4552014-02-07 12:10:38 -08008280 obj = dev_priv->fbdev->fb->obj;
Daniel Vetter4c0e5522014-02-14 16:35:54 +01008281 BUG_ON(!obj);
Chris Wilsond2dff872011-04-19 08:36:26 +01008282
Jesse Barnes8bcd4552014-02-07 12:10:38 -08008283 fb = &dev_priv->fbdev->fb->base;
Ville Syrjälä01f2c772011-12-20 00:06:49 +02008284 if (fb->pitches[0] < intel_framebuffer_pitch_for_width(mode->hdisplay,
8285 fb->bits_per_pixel))
Chris Wilsond2dff872011-04-19 08:36:26 +01008286 return NULL;
8287
Ville Syrjälä01f2c772011-12-20 00:06:49 +02008288 if (obj->base.size < mode->vdisplay * fb->pitches[0])
Chris Wilsond2dff872011-04-19 08:36:26 +01008289 return NULL;
8290
8291 return fb;
Daniel Vetter4520f532013-10-09 09:18:51 +02008292#else
8293 return NULL;
8294#endif
Chris Wilsond2dff872011-04-19 08:36:26 +01008295}
8296
Daniel Vetterd2434ab2012-08-12 21:20:10 +02008297bool intel_get_load_detect_pipe(struct drm_connector *connector,
Chris Wilson71731882011-04-19 23:10:58 +01008298 struct drm_display_mode *mode,
Rob Clark51fd3712013-11-19 12:10:12 -05008299 struct intel_load_detect_pipe *old,
8300 struct drm_modeset_acquire_ctx *ctx)
Jesse Barnes79e53942008-11-07 14:24:08 -08008301{
8302 struct intel_crtc *intel_crtc;
Daniel Vetterd2434ab2012-08-12 21:20:10 +02008303 struct intel_encoder *intel_encoder =
8304 intel_attached_encoder(connector);
Jesse Barnes79e53942008-11-07 14:24:08 -08008305 struct drm_crtc *possible_crtc;
Chris Wilson4ef69c72010-09-09 15:14:28 +01008306 struct drm_encoder *encoder = &intel_encoder->base;
Jesse Barnes79e53942008-11-07 14:24:08 -08008307 struct drm_crtc *crtc = NULL;
8308 struct drm_device *dev = encoder->dev;
Daniel Vetter94352cf2012-07-05 22:51:56 +02008309 struct drm_framebuffer *fb;
Rob Clark51fd3712013-11-19 12:10:12 -05008310 struct drm_mode_config *config = &dev->mode_config;
8311 int ret, i = -1;
Jesse Barnes79e53942008-11-07 14:24:08 -08008312
Chris Wilsond2dff872011-04-19 08:36:26 +01008313 DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
Jani Nikulac23cc412014-06-03 14:56:17 +03008314 connector->base.id, connector->name,
Jani Nikula8e329a02014-06-03 14:56:21 +03008315 encoder->base.id, encoder->name);
Chris Wilsond2dff872011-04-19 08:36:26 +01008316
Rob Clark51fd3712013-11-19 12:10:12 -05008317 drm_modeset_acquire_init(ctx, 0);
8318
8319retry:
8320 ret = drm_modeset_lock(&config->connection_mutex, ctx);
8321 if (ret)
8322 goto fail_unlock;
Daniel Vetter6e9f7982014-05-29 23:54:47 +02008323
Jesse Barnes79e53942008-11-07 14:24:08 -08008324 /*
8325 * Algorithm gets a little messy:
Chris Wilson7a5e4802011-04-19 23:21:12 +01008326 *
Jesse Barnes79e53942008-11-07 14:24:08 -08008327 * - if the connector already has an assigned crtc, use it (but make
8328 * sure it's on first)
Chris Wilson7a5e4802011-04-19 23:21:12 +01008329 *
Jesse Barnes79e53942008-11-07 14:24:08 -08008330 * - try to find the first unused crtc that can drive this connector,
8331 * and use that if we find one
Jesse Barnes79e53942008-11-07 14:24:08 -08008332 */
8333
8334 /* See if we already have a CRTC for this connector */
8335 if (encoder->crtc) {
8336 crtc = encoder->crtc;
Chris Wilson8261b192011-04-19 23:18:09 +01008337
Rob Clark51fd3712013-11-19 12:10:12 -05008338 ret = drm_modeset_lock(&crtc->mutex, ctx);
8339 if (ret)
8340 goto fail_unlock;
Daniel Vetter7b240562012-12-12 00:35:33 +01008341
Daniel Vetter24218aa2012-08-12 19:27:11 +02008342 old->dpms_mode = connector->dpms;
Chris Wilson8261b192011-04-19 23:18:09 +01008343 old->load_detect_temp = false;
8344
8345 /* Make sure the crtc and connector are running */
Daniel Vetter24218aa2012-08-12 19:27:11 +02008346 if (connector->dpms != DRM_MODE_DPMS_ON)
8347 connector->funcs->dpms(connector, DRM_MODE_DPMS_ON);
Chris Wilson8261b192011-04-19 23:18:09 +01008348
Chris Wilson71731882011-04-19 23:10:58 +01008349 return true;
Jesse Barnes79e53942008-11-07 14:24:08 -08008350 }
8351
8352 /* Find an unused one (if possible) */
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01008353 for_each_crtc(dev, possible_crtc) {
Jesse Barnes79e53942008-11-07 14:24:08 -08008354 i++;
8355 if (!(encoder->possible_crtcs & (1 << i)))
8356 continue;
8357 if (!possible_crtc->enabled) {
8358 crtc = possible_crtc;
8359 break;
8360 }
Jesse Barnes79e53942008-11-07 14:24:08 -08008361 }
8362
8363 /*
8364 * If we didn't find an unused CRTC, don't use any.
8365 */
8366 if (!crtc) {
Chris Wilson71731882011-04-19 23:10:58 +01008367 DRM_DEBUG_KMS("no pipe available for load-detect\n");
Rob Clark51fd3712013-11-19 12:10:12 -05008368 goto fail_unlock;
Jesse Barnes79e53942008-11-07 14:24:08 -08008369 }
8370
Rob Clark51fd3712013-11-19 12:10:12 -05008371 ret = drm_modeset_lock(&crtc->mutex, ctx);
8372 if (ret)
8373 goto fail_unlock;
Daniel Vetterfc303102012-07-09 10:40:58 +02008374 intel_encoder->new_crtc = to_intel_crtc(crtc);
8375 to_intel_connector(connector)->new_encoder = intel_encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08008376
8377 intel_crtc = to_intel_crtc(crtc);
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008378 intel_crtc->new_enabled = true;
8379 intel_crtc->new_config = &intel_crtc->config;
Daniel Vetter24218aa2012-08-12 19:27:11 +02008380 old->dpms_mode = connector->dpms;
Chris Wilson8261b192011-04-19 23:18:09 +01008381 old->load_detect_temp = true;
Chris Wilsond2dff872011-04-19 08:36:26 +01008382 old->release_fb = NULL;
Jesse Barnes79e53942008-11-07 14:24:08 -08008383
Chris Wilson64927112011-04-20 07:25:26 +01008384 if (!mode)
8385 mode = &load_detect_mode;
Jesse Barnes79e53942008-11-07 14:24:08 -08008386
Chris Wilsond2dff872011-04-19 08:36:26 +01008387 /* We need a framebuffer large enough to accommodate all accesses
8388 * that the plane may generate whilst we perform load detection.
8389 * We can not rely on the fbcon either being present (we get called
8390 * during its initialisation to detect all boot displays, or it may
8391 * not even exist) or that it is large enough to satisfy the
8392 * requested mode.
8393 */
Daniel Vetter94352cf2012-07-05 22:51:56 +02008394 fb = mode_fits_in_fbdev(dev, mode);
8395 if (fb == NULL) {
Chris Wilsond2dff872011-04-19 08:36:26 +01008396 DRM_DEBUG_KMS("creating tmp fb for load-detection\n");
Daniel Vetter94352cf2012-07-05 22:51:56 +02008397 fb = intel_framebuffer_create_for_mode(dev, mode, 24, 32);
8398 old->release_fb = fb;
Chris Wilsond2dff872011-04-19 08:36:26 +01008399 } else
8400 DRM_DEBUG_KMS("reusing fbdev for load-detection framebuffer\n");
Daniel Vetter94352cf2012-07-05 22:51:56 +02008401 if (IS_ERR(fb)) {
Chris Wilsond2dff872011-04-19 08:36:26 +01008402 DRM_DEBUG_KMS("failed to allocate framebuffer for load-detection\n");
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008403 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -08008404 }
Chris Wilsond2dff872011-04-19 08:36:26 +01008405
Chris Wilsonc0c36b942012-12-19 16:08:43 +00008406 if (intel_set_mode(crtc, mode, 0, 0, fb)) {
Chris Wilson64927112011-04-20 07:25:26 +01008407 DRM_DEBUG_KMS("failed to set mode on load-detect pipe\n");
Chris Wilsond2dff872011-04-19 08:36:26 +01008408 if (old->release_fb)
8409 old->release_fb->funcs->destroy(old->release_fb);
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008410 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -08008411 }
Chris Wilson71731882011-04-19 23:10:58 +01008412
Jesse Barnes79e53942008-11-07 14:24:08 -08008413 /* let the connector get through one full cycle before testing */
Jesse Barnes9d0498a2010-08-18 13:20:54 -07008414 intel_wait_for_vblank(dev, intel_crtc->pipe);
Chris Wilson71731882011-04-19 23:10:58 +01008415 return true;
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008416
8417 fail:
8418 intel_crtc->new_enabled = crtc->enabled;
8419 if (intel_crtc->new_enabled)
8420 intel_crtc->new_config = &intel_crtc->config;
8421 else
8422 intel_crtc->new_config = NULL;
Rob Clark51fd3712013-11-19 12:10:12 -05008423fail_unlock:
8424 if (ret == -EDEADLK) {
8425 drm_modeset_backoff(ctx);
8426 goto retry;
8427 }
8428
8429 drm_modeset_drop_locks(ctx);
8430 drm_modeset_acquire_fini(ctx);
Daniel Vetter6e9f7982014-05-29 23:54:47 +02008431
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008432 return false;
Jesse Barnes79e53942008-11-07 14:24:08 -08008433}
8434
Daniel Vetterd2434ab2012-08-12 21:20:10 +02008435void intel_release_load_detect_pipe(struct drm_connector *connector,
Rob Clark51fd3712013-11-19 12:10:12 -05008436 struct intel_load_detect_pipe *old,
8437 struct drm_modeset_acquire_ctx *ctx)
Jesse Barnes79e53942008-11-07 14:24:08 -08008438{
Daniel Vetterd2434ab2012-08-12 21:20:10 +02008439 struct intel_encoder *intel_encoder =
8440 intel_attached_encoder(connector);
Chris Wilson4ef69c72010-09-09 15:14:28 +01008441 struct drm_encoder *encoder = &intel_encoder->base;
Daniel Vetter7b240562012-12-12 00:35:33 +01008442 struct drm_crtc *crtc = encoder->crtc;
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008443 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08008444
Chris Wilsond2dff872011-04-19 08:36:26 +01008445 DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
Jani Nikulac23cc412014-06-03 14:56:17 +03008446 connector->base.id, connector->name,
Jani Nikula8e329a02014-06-03 14:56:21 +03008447 encoder->base.id, encoder->name);
Chris Wilsond2dff872011-04-19 08:36:26 +01008448
Chris Wilson8261b192011-04-19 23:18:09 +01008449 if (old->load_detect_temp) {
Daniel Vetterfc303102012-07-09 10:40:58 +02008450 to_intel_connector(connector)->new_encoder = NULL;
8451 intel_encoder->new_crtc = NULL;
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008452 intel_crtc->new_enabled = false;
8453 intel_crtc->new_config = NULL;
Daniel Vetterfc303102012-07-09 10:40:58 +02008454 intel_set_mode(crtc, NULL, 0, 0, NULL);
Chris Wilsond2dff872011-04-19 08:36:26 +01008455
Daniel Vetter36206362012-12-10 20:42:17 +01008456 if (old->release_fb) {
8457 drm_framebuffer_unregister_private(old->release_fb);
8458 drm_framebuffer_unreference(old->release_fb);
8459 }
Chris Wilsond2dff872011-04-19 08:36:26 +01008460
Rob Clark51fd3712013-11-19 12:10:12 -05008461 goto unlock;
Chris Wilson0622a532011-04-21 09:32:11 +01008462 return;
Jesse Barnes79e53942008-11-07 14:24:08 -08008463 }
8464
Eric Anholtc751ce42010-03-25 11:48:48 -07008465 /* Switch crtc and encoder back off if necessary */
Daniel Vetter24218aa2012-08-12 19:27:11 +02008466 if (old->dpms_mode != DRM_MODE_DPMS_ON)
8467 connector->funcs->dpms(connector, old->dpms_mode);
Daniel Vetter7b240562012-12-12 00:35:33 +01008468
Rob Clark51fd3712013-11-19 12:10:12 -05008469unlock:
8470 drm_modeset_drop_locks(ctx);
8471 drm_modeset_acquire_fini(ctx);
Jesse Barnes79e53942008-11-07 14:24:08 -08008472}
8473
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +03008474static int i9xx_pll_refclk(struct drm_device *dev,
8475 const struct intel_crtc_config *pipe_config)
8476{
8477 struct drm_i915_private *dev_priv = dev->dev_private;
8478 u32 dpll = pipe_config->dpll_hw_state.dpll;
8479
8480 if ((dpll & PLL_REF_INPUT_MASK) == PLLB_REF_INPUT_SPREADSPECTRUMIN)
Ville Syrjäläe91e9412013-12-09 18:54:16 +02008481 return dev_priv->vbt.lvds_ssc_freq;
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +03008482 else if (HAS_PCH_SPLIT(dev))
8483 return 120000;
8484 else if (!IS_GEN2(dev))
8485 return 96000;
8486 else
8487 return 48000;
8488}
8489
Jesse Barnes79e53942008-11-07 14:24:08 -08008490/* Returns the clock of the currently programmed mode of the given pipe. */
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008491static void i9xx_crtc_clock_get(struct intel_crtc *crtc,
8492 struct intel_crtc_config *pipe_config)
Jesse Barnes79e53942008-11-07 14:24:08 -08008493{
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008494 struct drm_device *dev = crtc->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08008495 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008496 int pipe = pipe_config->cpu_transcoder;
Ville Syrjälä293623f2013-09-13 16:18:46 +03008497 u32 dpll = pipe_config->dpll_hw_state.dpll;
Jesse Barnes79e53942008-11-07 14:24:08 -08008498 u32 fp;
8499 intel_clock_t clock;
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +03008500 int refclk = i9xx_pll_refclk(dev, pipe_config);
Jesse Barnes79e53942008-11-07 14:24:08 -08008501
8502 if ((dpll & DISPLAY_RATE_SELECT_FPA1) == 0)
Ville Syrjälä293623f2013-09-13 16:18:46 +03008503 fp = pipe_config->dpll_hw_state.fp0;
Jesse Barnes79e53942008-11-07 14:24:08 -08008504 else
Ville Syrjälä293623f2013-09-13 16:18:46 +03008505 fp = pipe_config->dpll_hw_state.fp1;
Jesse Barnes79e53942008-11-07 14:24:08 -08008506
8507 clock.m1 = (fp & FP_M1_DIV_MASK) >> FP_M1_DIV_SHIFT;
Adam Jacksonf2b115e2009-12-03 17:14:42 -05008508 if (IS_PINEVIEW(dev)) {
8509 clock.n = ffs((fp & FP_N_PINEVIEW_DIV_MASK) >> FP_N_DIV_SHIFT) - 1;
8510 clock.m2 = (fp & FP_M2_PINEVIEW_DIV_MASK) >> FP_M2_DIV_SHIFT;
Shaohua Li21778322009-02-23 15:19:16 +08008511 } else {
8512 clock.n = (fp & FP_N_DIV_MASK) >> FP_N_DIV_SHIFT;
8513 clock.m2 = (fp & FP_M2_DIV_MASK) >> FP_M2_DIV_SHIFT;
8514 }
8515
Chris Wilsona6c45cf2010-09-17 00:32:17 +01008516 if (!IS_GEN2(dev)) {
Adam Jacksonf2b115e2009-12-03 17:14:42 -05008517 if (IS_PINEVIEW(dev))
8518 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_PINEVIEW) >>
8519 DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW);
Shaohua Li21778322009-02-23 15:19:16 +08008520 else
8521 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK) >>
Jesse Barnes79e53942008-11-07 14:24:08 -08008522 DPLL_FPA01_P1_POST_DIV_SHIFT);
8523
8524 switch (dpll & DPLL_MODE_MASK) {
8525 case DPLLB_MODE_DAC_SERIAL:
8526 clock.p2 = dpll & DPLL_DAC_SERIAL_P2_CLOCK_DIV_5 ?
8527 5 : 10;
8528 break;
8529 case DPLLB_MODE_LVDS:
8530 clock.p2 = dpll & DPLLB_LVDS_P2_CLOCK_DIV_7 ?
8531 7 : 14;
8532 break;
8533 default:
Zhao Yakui28c97732009-10-09 11:39:41 +08008534 DRM_DEBUG_KMS("Unknown DPLL mode %08x in programmed "
Jesse Barnes79e53942008-11-07 14:24:08 -08008535 "mode\n", (int)(dpll & DPLL_MODE_MASK));
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008536 return;
Jesse Barnes79e53942008-11-07 14:24:08 -08008537 }
8538
Daniel Vetterac58c3f2013-06-01 17:16:17 +02008539 if (IS_PINEVIEW(dev))
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +03008540 pineview_clock(refclk, &clock);
Daniel Vetterac58c3f2013-06-01 17:16:17 +02008541 else
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +03008542 i9xx_clock(refclk, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08008543 } else {
Ville Syrjälä0fb58222014-01-10 14:06:46 +02008544 u32 lvds = IS_I830(dev) ? 0 : I915_READ(LVDS);
Ville Syrjäläb1c560d2013-12-09 18:54:13 +02008545 bool is_lvds = (pipe == 1) && (lvds & LVDS_PORT_EN);
Jesse Barnes79e53942008-11-07 14:24:08 -08008546
8547 if (is_lvds) {
8548 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830_LVDS) >>
8549 DPLL_FPA01_P1_POST_DIV_SHIFT);
Ville Syrjäläb1c560d2013-12-09 18:54:13 +02008550
8551 if (lvds & LVDS_CLKB_POWER_UP)
8552 clock.p2 = 7;
8553 else
8554 clock.p2 = 14;
Jesse Barnes79e53942008-11-07 14:24:08 -08008555 } else {
8556 if (dpll & PLL_P1_DIVIDE_BY_TWO)
8557 clock.p1 = 2;
8558 else {
8559 clock.p1 = ((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830) >>
8560 DPLL_FPA01_P1_POST_DIV_SHIFT) + 2;
8561 }
8562 if (dpll & PLL_P2_DIVIDE_BY_4)
8563 clock.p2 = 4;
8564 else
8565 clock.p2 = 2;
Jesse Barnes79e53942008-11-07 14:24:08 -08008566 }
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +03008567
8568 i9xx_clock(refclk, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08008569 }
8570
Ville Syrjälä18442d02013-09-13 16:00:08 +03008571 /*
8572 * This value includes pixel_multiplier. We will use
Damien Lespiau241bfc32013-09-25 16:45:37 +01008573 * port_clock to compute adjusted_mode.crtc_clock in the
Ville Syrjälä18442d02013-09-13 16:00:08 +03008574 * encoder's get_config() function.
8575 */
8576 pipe_config->port_clock = clock.dot;
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008577}
8578
Ville Syrjälä6878da02013-09-13 15:59:11 +03008579int intel_dotclock_calculate(int link_freq,
8580 const struct intel_link_m_n *m_n)
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008581{
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008582 /*
8583 * The calculation for the data clock is:
Ville Syrjälä1041a022013-09-06 23:28:58 +03008584 * pixel_clock = ((m/n)*(link_clock * nr_lanes))/bpp
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008585 * But we want to avoid losing precison if possible, so:
Ville Syrjälä1041a022013-09-06 23:28:58 +03008586 * pixel_clock = ((m * link_clock * nr_lanes)/(n*bpp))
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008587 *
8588 * and the link clock is simpler:
Ville Syrjälä1041a022013-09-06 23:28:58 +03008589 * link_clock = (m * link_clock) / n
Jesse Barnes79e53942008-11-07 14:24:08 -08008590 */
8591
Ville Syrjälä6878da02013-09-13 15:59:11 +03008592 if (!m_n->link_n)
8593 return 0;
8594
8595 return div_u64((u64)m_n->link_m * link_freq, m_n->link_n);
8596}
8597
Ville Syrjälä18442d02013-09-13 16:00:08 +03008598static void ironlake_pch_clock_get(struct intel_crtc *crtc,
8599 struct intel_crtc_config *pipe_config)
Ville Syrjälä6878da02013-09-13 15:59:11 +03008600{
8601 struct drm_device *dev = crtc->base.dev;
Ville Syrjälä18442d02013-09-13 16:00:08 +03008602
8603 /* read out port_clock from the DPLL */
8604 i9xx_crtc_clock_get(crtc, pipe_config);
Ville Syrjälä6878da02013-09-13 15:59:11 +03008605
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008606 /*
Ville Syrjälä18442d02013-09-13 16:00:08 +03008607 * This value does not include pixel_multiplier.
Damien Lespiau241bfc32013-09-25 16:45:37 +01008608 * We will check that port_clock and adjusted_mode.crtc_clock
Ville Syrjälä18442d02013-09-13 16:00:08 +03008609 * agree once we know their relationship in the encoder's
8610 * get_config() function.
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008611 */
Damien Lespiau241bfc32013-09-25 16:45:37 +01008612 pipe_config->adjusted_mode.crtc_clock =
Ville Syrjälä18442d02013-09-13 16:00:08 +03008613 intel_dotclock_calculate(intel_fdi_link_freq(dev) * 10000,
8614 &pipe_config->fdi_m_n);
Jesse Barnes79e53942008-11-07 14:24:08 -08008615}
8616
8617/** Returns the currently programmed mode of the given pipe. */
8618struct drm_display_mode *intel_crtc_mode_get(struct drm_device *dev,
8619 struct drm_crtc *crtc)
8620{
Jesse Barnes548f2452011-02-17 10:40:53 -08008621 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -08008622 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter3b117c82013-04-17 20:15:07 +02008623 enum transcoder cpu_transcoder = intel_crtc->config.cpu_transcoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08008624 struct drm_display_mode *mode;
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008625 struct intel_crtc_config pipe_config;
Paulo Zanonife2b8f92012-10-23 18:30:02 -02008626 int htot = I915_READ(HTOTAL(cpu_transcoder));
8627 int hsync = I915_READ(HSYNC(cpu_transcoder));
8628 int vtot = I915_READ(VTOTAL(cpu_transcoder));
8629 int vsync = I915_READ(VSYNC(cpu_transcoder));
Ville Syrjälä293623f2013-09-13 16:18:46 +03008630 enum pipe pipe = intel_crtc->pipe;
Jesse Barnes79e53942008-11-07 14:24:08 -08008631
8632 mode = kzalloc(sizeof(*mode), GFP_KERNEL);
8633 if (!mode)
8634 return NULL;
8635
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008636 /*
8637 * Construct a pipe_config sufficient for getting the clock info
8638 * back out of crtc_clock_get.
8639 *
8640 * Note, if LVDS ever uses a non-1 pixel multiplier, we'll need
8641 * to use a real value here instead.
8642 */
Ville Syrjälä293623f2013-09-13 16:18:46 +03008643 pipe_config.cpu_transcoder = (enum transcoder) pipe;
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008644 pipe_config.pixel_multiplier = 1;
Ville Syrjälä293623f2013-09-13 16:18:46 +03008645 pipe_config.dpll_hw_state.dpll = I915_READ(DPLL(pipe));
8646 pipe_config.dpll_hw_state.fp0 = I915_READ(FP0(pipe));
8647 pipe_config.dpll_hw_state.fp1 = I915_READ(FP1(pipe));
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008648 i9xx_crtc_clock_get(intel_crtc, &pipe_config);
8649
Ville Syrjälä773ae032013-09-23 17:48:20 +03008650 mode->clock = pipe_config.port_clock / pipe_config.pixel_multiplier;
Jesse Barnes79e53942008-11-07 14:24:08 -08008651 mode->hdisplay = (htot & 0xffff) + 1;
8652 mode->htotal = ((htot & 0xffff0000) >> 16) + 1;
8653 mode->hsync_start = (hsync & 0xffff) + 1;
8654 mode->hsync_end = ((hsync & 0xffff0000) >> 16) + 1;
8655 mode->vdisplay = (vtot & 0xffff) + 1;
8656 mode->vtotal = ((vtot & 0xffff0000) >> 16) + 1;
8657 mode->vsync_start = (vsync & 0xffff) + 1;
8658 mode->vsync_end = ((vsync & 0xffff0000) >> 16) + 1;
8659
8660 drm_mode_set_name(mode);
Jesse Barnes79e53942008-11-07 14:24:08 -08008661
8662 return mode;
8663}
8664
Daniel Vetter3dec0092010-08-20 21:40:52 +02008665static void intel_increase_pllclock(struct drm_crtc *crtc)
Jesse Barnes652c3932009-08-17 13:31:43 -07008666{
8667 struct drm_device *dev = crtc->dev;
Jani Nikulafbee40d2014-03-31 14:27:18 +03008668 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes652c3932009-08-17 13:31:43 -07008669 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
8670 int pipe = intel_crtc->pipe;
Jesse Barnesdbdc6472010-12-30 09:36:39 -08008671 int dpll_reg = DPLL(pipe);
8672 int dpll;
Jesse Barnes652c3932009-08-17 13:31:43 -07008673
Eric Anholtbad720f2009-10-22 16:11:14 -07008674 if (HAS_PCH_SPLIT(dev))
Jesse Barnes652c3932009-08-17 13:31:43 -07008675 return;
8676
8677 if (!dev_priv->lvds_downclock_avail)
8678 return;
8679
Jesse Barnesdbdc6472010-12-30 09:36:39 -08008680 dpll = I915_READ(dpll_reg);
Jesse Barnes652c3932009-08-17 13:31:43 -07008681 if (!HAS_PIPE_CXSR(dev) && (dpll & DISPLAY_RATE_SELECT_FPA1)) {
Zhao Yakui44d98a62009-10-09 11:39:40 +08008682 DRM_DEBUG_DRIVER("upclocking LVDS\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07008683
Sean Paul8ac5a6d2012-02-13 13:14:51 -05008684 assert_panel_unlocked(dev_priv, pipe);
Jesse Barnes652c3932009-08-17 13:31:43 -07008685
8686 dpll &= ~DISPLAY_RATE_SELECT_FPA1;
8687 I915_WRITE(dpll_reg, dpll);
Jesse Barnes9d0498a2010-08-18 13:20:54 -07008688 intel_wait_for_vblank(dev, pipe);
Jesse Barnesdbdc6472010-12-30 09:36:39 -08008689
Jesse Barnes652c3932009-08-17 13:31:43 -07008690 dpll = I915_READ(dpll_reg);
8691 if (dpll & DISPLAY_RATE_SELECT_FPA1)
Zhao Yakui44d98a62009-10-09 11:39:40 +08008692 DRM_DEBUG_DRIVER("failed to upclock LVDS!\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07008693 }
Jesse Barnes652c3932009-08-17 13:31:43 -07008694}
8695
8696static void intel_decrease_pllclock(struct drm_crtc *crtc)
8697{
8698 struct drm_device *dev = crtc->dev;
Jani Nikulafbee40d2014-03-31 14:27:18 +03008699 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes652c3932009-08-17 13:31:43 -07008700 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes652c3932009-08-17 13:31:43 -07008701
Eric Anholtbad720f2009-10-22 16:11:14 -07008702 if (HAS_PCH_SPLIT(dev))
Jesse Barnes652c3932009-08-17 13:31:43 -07008703 return;
8704
8705 if (!dev_priv->lvds_downclock_avail)
8706 return;
8707
8708 /*
8709 * Since this is called by a timer, we should never get here in
8710 * the manual case.
8711 */
8712 if (!HAS_PIPE_CXSR(dev) && intel_crtc->lowfreq_avail) {
Chris Wilson074b5e12012-05-02 12:07:06 +01008713 int pipe = intel_crtc->pipe;
8714 int dpll_reg = DPLL(pipe);
Daniel Vetterdc257cf2012-05-07 11:30:46 +02008715 int dpll;
Chris Wilson074b5e12012-05-02 12:07:06 +01008716
Zhao Yakui44d98a62009-10-09 11:39:40 +08008717 DRM_DEBUG_DRIVER("downclocking LVDS\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07008718
Sean Paul8ac5a6d2012-02-13 13:14:51 -05008719 assert_panel_unlocked(dev_priv, pipe);
Jesse Barnes652c3932009-08-17 13:31:43 -07008720
Chris Wilson074b5e12012-05-02 12:07:06 +01008721 dpll = I915_READ(dpll_reg);
Jesse Barnes652c3932009-08-17 13:31:43 -07008722 dpll |= DISPLAY_RATE_SELECT_FPA1;
8723 I915_WRITE(dpll_reg, dpll);
Jesse Barnes9d0498a2010-08-18 13:20:54 -07008724 intel_wait_for_vblank(dev, pipe);
Jesse Barnes652c3932009-08-17 13:31:43 -07008725 dpll = I915_READ(dpll_reg);
8726 if (!(dpll & DISPLAY_RATE_SELECT_FPA1))
Zhao Yakui44d98a62009-10-09 11:39:40 +08008727 DRM_DEBUG_DRIVER("failed to downclock LVDS!\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07008728 }
8729
8730}
8731
Chris Wilsonf047e392012-07-21 12:31:41 +01008732void intel_mark_busy(struct drm_device *dev)
Jesse Barnes652c3932009-08-17 13:31:43 -07008733{
Paulo Zanonic67a4702013-08-19 13:18:09 -03008734 struct drm_i915_private *dev_priv = dev->dev_private;
8735
Chris Wilsonf62a0072014-02-21 17:55:39 +00008736 if (dev_priv->mm.busy)
8737 return;
8738
Paulo Zanoni43694d62014-03-07 20:08:08 -03008739 intel_runtime_pm_get(dev_priv);
Paulo Zanonic67a4702013-08-19 13:18:09 -03008740 i915_update_gfx_val(dev_priv);
Chris Wilsonf62a0072014-02-21 17:55:39 +00008741 dev_priv->mm.busy = true;
Chris Wilsonf047e392012-07-21 12:31:41 +01008742}
8743
8744void intel_mark_idle(struct drm_device *dev)
8745{
Paulo Zanonic67a4702013-08-19 13:18:09 -03008746 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson725a5b52013-01-08 11:02:57 +00008747 struct drm_crtc *crtc;
8748
Chris Wilsonf62a0072014-02-21 17:55:39 +00008749 if (!dev_priv->mm.busy)
8750 return;
8751
8752 dev_priv->mm.busy = false;
8753
Jani Nikulad330a952014-01-21 11:24:25 +02008754 if (!i915.powersave)
Paulo Zanonibb4cdd52014-02-21 13:52:19 -03008755 goto out;
Chris Wilson725a5b52013-01-08 11:02:57 +00008756
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01008757 for_each_crtc(dev, crtc) {
Matt Roperf4510a22014-04-01 15:22:40 -07008758 if (!crtc->primary->fb)
Chris Wilson725a5b52013-01-08 11:02:57 +00008759 continue;
8760
8761 intel_decrease_pllclock(crtc);
8762 }
Chris Wilsonb29c19b2013-09-25 17:34:56 +01008763
Damien Lespiau3d13ef22014-02-07 19:12:47 +00008764 if (INTEL_INFO(dev)->gen >= 6)
Chris Wilsonb29c19b2013-09-25 17:34:56 +01008765 gen6_rps_idle(dev->dev_private);
Paulo Zanonibb4cdd52014-02-21 13:52:19 -03008766
8767out:
Paulo Zanoni43694d62014-03-07 20:08:08 -03008768 intel_runtime_pm_put(dev_priv);
Chris Wilsonf047e392012-07-21 12:31:41 +01008769}
8770
Chris Wilsonc65355b2013-06-06 16:53:41 -03008771void intel_mark_fb_busy(struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01008772 struct intel_engine_cs *ring)
Chris Wilsonf047e392012-07-21 12:31:41 +01008773{
8774 struct drm_device *dev = obj->base.dev;
Jesse Barnes652c3932009-08-17 13:31:43 -07008775 struct drm_crtc *crtc;
Jesse Barnes652c3932009-08-17 13:31:43 -07008776
Jani Nikulad330a952014-01-21 11:24:25 +02008777 if (!i915.powersave)
Jesse Barnes652c3932009-08-17 13:31:43 -07008778 return;
8779
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01008780 for_each_crtc(dev, crtc) {
Matt Roperf4510a22014-04-01 15:22:40 -07008781 if (!crtc->primary->fb)
Jesse Barnes652c3932009-08-17 13:31:43 -07008782 continue;
8783
Matt Roperf4510a22014-04-01 15:22:40 -07008784 if (to_intel_framebuffer(crtc->primary->fb)->obj != obj)
Chris Wilsonc65355b2013-06-06 16:53:41 -03008785 continue;
8786
8787 intel_increase_pllclock(crtc);
8788 if (ring && intel_fbc_enabled(dev))
8789 ring->fbc_dirty = true;
Jesse Barnes652c3932009-08-17 13:31:43 -07008790 }
Jesse Barnes652c3932009-08-17 13:31:43 -07008791}
8792
Jesse Barnes79e53942008-11-07 14:24:08 -08008793static void intel_crtc_destroy(struct drm_crtc *crtc)
8794{
8795 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter67e77c52010-08-20 22:26:30 +02008796 struct drm_device *dev = crtc->dev;
8797 struct intel_unpin_work *work;
8798 unsigned long flags;
8799
8800 spin_lock_irqsave(&dev->event_lock, flags);
8801 work = intel_crtc->unpin_work;
8802 intel_crtc->unpin_work = NULL;
8803 spin_unlock_irqrestore(&dev->event_lock, flags);
8804
8805 if (work) {
8806 cancel_work_sync(&work->work);
8807 kfree(work);
8808 }
Jesse Barnes79e53942008-11-07 14:24:08 -08008809
Mika Kuoppala40ccc722013-04-23 17:27:08 +03008810 intel_crtc_cursor_set(crtc, NULL, 0, 0, 0);
8811
Jesse Barnes79e53942008-11-07 14:24:08 -08008812 drm_crtc_cleanup(crtc);
Daniel Vetter67e77c52010-08-20 22:26:30 +02008813
Jesse Barnes79e53942008-11-07 14:24:08 -08008814 kfree(intel_crtc);
8815}
8816
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008817static void intel_unpin_work_fn(struct work_struct *__work)
8818{
8819 struct intel_unpin_work *work =
8820 container_of(__work, struct intel_unpin_work, work);
Chris Wilsonb4a98e52012-11-01 09:26:26 +00008821 struct drm_device *dev = work->crtc->dev;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008822
Chris Wilsonb4a98e52012-11-01 09:26:26 +00008823 mutex_lock(&dev->struct_mutex);
Chris Wilson1690e1e2011-12-14 13:57:08 +01008824 intel_unpin_fb_obj(work->old_fb_obj);
Chris Wilson05394f32010-11-08 19:18:58 +00008825 drm_gem_object_unreference(&work->pending_flip_obj->base);
8826 drm_gem_object_unreference(&work->old_fb_obj->base);
Chris Wilsond9e86c02010-11-10 16:40:20 +00008827
Chris Wilsonb4a98e52012-11-01 09:26:26 +00008828 intel_update_fbc(dev);
8829 mutex_unlock(&dev->struct_mutex);
8830
8831 BUG_ON(atomic_read(&to_intel_crtc(work->crtc)->unpin_work_count) == 0);
8832 atomic_dec(&to_intel_crtc(work->crtc)->unpin_work_count);
8833
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008834 kfree(work);
8835}
8836
Jesse Barnes1afe3e92010-03-26 10:35:20 -07008837static void do_intel_finish_page_flip(struct drm_device *dev,
Mario Kleiner49b14a52010-12-09 07:00:07 +01008838 struct drm_crtc *crtc)
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008839{
Jani Nikulafbee40d2014-03-31 14:27:18 +03008840 struct drm_i915_private *dev_priv = dev->dev_private;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008841 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
8842 struct intel_unpin_work *work;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008843 unsigned long flags;
8844
8845 /* Ignore early vblank irqs */
8846 if (intel_crtc == NULL)
8847 return;
8848
8849 spin_lock_irqsave(&dev->event_lock, flags);
8850 work = intel_crtc->unpin_work;
Chris Wilsone7d841c2012-12-03 11:36:30 +00008851
8852 /* Ensure we don't miss a work->pending update ... */
8853 smp_rmb();
8854
8855 if (work == NULL || atomic_read(&work->pending) < INTEL_FLIP_COMPLETE) {
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008856 spin_unlock_irqrestore(&dev->event_lock, flags);
8857 return;
8858 }
8859
Chris Wilsone7d841c2012-12-03 11:36:30 +00008860 /* and that the unpin work is consistent wrt ->pending. */
8861 smp_rmb();
8862
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008863 intel_crtc->unpin_work = NULL;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008864
Rob Clark45a066e2012-10-08 14:50:40 -05008865 if (work->event)
8866 drm_send_vblank_event(dev, intel_crtc->pipe, work->event);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008867
Daniel Vetter87b6b102014-05-15 15:33:46 +02008868 drm_crtc_vblank_put(crtc);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +01008869
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008870 spin_unlock_irqrestore(&dev->event_lock, flags);
8871
Daniel Vetter2c10d572012-12-20 21:24:07 +01008872 wake_up_all(&dev_priv->pending_flip_queue);
Chris Wilsonb4a98e52012-11-01 09:26:26 +00008873
8874 queue_work(dev_priv->wq, &work->work);
Jesse Barnese5510fa2010-07-01 16:48:37 -07008875
8876 trace_i915_flip_complete(intel_crtc->plane, work->pending_flip_obj);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008877}
8878
Jesse Barnes1afe3e92010-03-26 10:35:20 -07008879void intel_finish_page_flip(struct drm_device *dev, int pipe)
8880{
Jani Nikulafbee40d2014-03-31 14:27:18 +03008881 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes1afe3e92010-03-26 10:35:20 -07008882 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
8883
Mario Kleiner49b14a52010-12-09 07:00:07 +01008884 do_intel_finish_page_flip(dev, crtc);
Jesse Barnes1afe3e92010-03-26 10:35:20 -07008885}
8886
8887void intel_finish_page_flip_plane(struct drm_device *dev, int plane)
8888{
Jani Nikulafbee40d2014-03-31 14:27:18 +03008889 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes1afe3e92010-03-26 10:35:20 -07008890 struct drm_crtc *crtc = dev_priv->plane_to_crtc_mapping[plane];
8891
Mario Kleiner49b14a52010-12-09 07:00:07 +01008892 do_intel_finish_page_flip(dev, crtc);
Jesse Barnes1afe3e92010-03-26 10:35:20 -07008893}
8894
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +03008895/* Is 'a' after or equal to 'b'? */
8896static bool g4x_flip_count_after_eq(u32 a, u32 b)
8897{
8898 return !((a - b) & 0x80000000);
8899}
8900
8901static bool page_flip_finished(struct intel_crtc *crtc)
8902{
8903 struct drm_device *dev = crtc->base.dev;
8904 struct drm_i915_private *dev_priv = dev->dev_private;
8905
8906 /*
8907 * The relevant registers doen't exist on pre-ctg.
8908 * As the flip done interrupt doesn't trigger for mmio
8909 * flips on gmch platforms, a flip count check isn't
8910 * really needed there. But since ctg has the registers,
8911 * include it in the check anyway.
8912 */
8913 if (INTEL_INFO(dev)->gen < 5 && !IS_G4X(dev))
8914 return true;
8915
8916 /*
8917 * A DSPSURFLIVE check isn't enough in case the mmio and CS flips
8918 * used the same base address. In that case the mmio flip might
8919 * have completed, but the CS hasn't even executed the flip yet.
8920 *
8921 * A flip count check isn't enough as the CS might have updated
8922 * the base address just after start of vblank, but before we
8923 * managed to process the interrupt. This means we'd complete the
8924 * CS flip too soon.
8925 *
8926 * Combining both checks should get us a good enough result. It may
8927 * still happen that the CS flip has been executed, but has not
8928 * yet actually completed. But in case the base address is the same
8929 * anyway, we don't really care.
8930 */
8931 return (I915_READ(DSPSURFLIVE(crtc->plane)) & ~0xfff) ==
8932 crtc->unpin_work->gtt_offset &&
8933 g4x_flip_count_after_eq(I915_READ(PIPE_FLIPCOUNT_GM45(crtc->pipe)),
8934 crtc->unpin_work->flip_count);
8935}
8936
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008937void intel_prepare_page_flip(struct drm_device *dev, int plane)
8938{
Jani Nikulafbee40d2014-03-31 14:27:18 +03008939 struct drm_i915_private *dev_priv = dev->dev_private;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008940 struct intel_crtc *intel_crtc =
8941 to_intel_crtc(dev_priv->plane_to_crtc_mapping[plane]);
8942 unsigned long flags;
8943
Chris Wilsone7d841c2012-12-03 11:36:30 +00008944 /* NB: An MMIO update of the plane base pointer will also
8945 * generate a page-flip completion irq, i.e. every modeset
8946 * is also accompanied by a spurious intel_prepare_page_flip().
8947 */
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008948 spin_lock_irqsave(&dev->event_lock, flags);
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +03008949 if (intel_crtc->unpin_work && page_flip_finished(intel_crtc))
Chris Wilsone7d841c2012-12-03 11:36:30 +00008950 atomic_inc_not_zero(&intel_crtc->unpin_work->pending);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008951 spin_unlock_irqrestore(&dev->event_lock, flags);
8952}
8953
Robin Schroereba905b2014-05-18 02:24:50 +02008954static inline void intel_mark_page_flip_active(struct intel_crtc *intel_crtc)
Chris Wilsone7d841c2012-12-03 11:36:30 +00008955{
8956 /* Ensure that the work item is consistent when activating it ... */
8957 smp_wmb();
8958 atomic_set(&intel_crtc->unpin_work->pending, INTEL_FLIP_PENDING);
8959 /* and that it is marked active as soon as the irq could fire. */
8960 smp_wmb();
8961}
8962
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008963static int intel_gen2_queue_flip(struct drm_device *dev,
8964 struct drm_crtc *crtc,
8965 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07008966 struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01008967 struct intel_engine_cs *ring,
Keith Packarded8d1972013-07-22 18:49:58 -07008968 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008969{
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008970 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008971 u32 flip_mask;
8972 int ret;
8973
Daniel Vetter6d90c952012-04-26 23:28:05 +02008974 ret = intel_ring_begin(ring, 6);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008975 if (ret)
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03008976 return ret;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008977
8978 /* Can't queue multiple flips, so wait for the previous
8979 * one to finish before executing the next.
8980 */
8981 if (intel_crtc->plane)
8982 flip_mask = MI_WAIT_FOR_PLANE_B_FLIP;
8983 else
8984 flip_mask = MI_WAIT_FOR_PLANE_A_FLIP;
Daniel Vetter6d90c952012-04-26 23:28:05 +02008985 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | flip_mask);
8986 intel_ring_emit(ring, MI_NOOP);
8987 intel_ring_emit(ring, MI_DISPLAY_FLIP |
8988 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
8989 intel_ring_emit(ring, fb->pitches[0]);
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +03008990 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset);
Daniel Vetter6d90c952012-04-26 23:28:05 +02008991 intel_ring_emit(ring, 0); /* aux display base address, unused */
Chris Wilsone7d841c2012-12-03 11:36:30 +00008992
8993 intel_mark_page_flip_active(intel_crtc);
Chris Wilson09246732013-08-10 22:16:32 +01008994 __intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01008995 return 0;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008996}
8997
8998static int intel_gen3_queue_flip(struct drm_device *dev,
8999 struct drm_crtc *crtc,
9000 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07009001 struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01009002 struct intel_engine_cs *ring,
Keith Packarded8d1972013-07-22 18:49:58 -07009003 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009004{
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009005 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009006 u32 flip_mask;
9007 int ret;
9008
Daniel Vetter6d90c952012-04-26 23:28:05 +02009009 ret = intel_ring_begin(ring, 6);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009010 if (ret)
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009011 return ret;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009012
9013 if (intel_crtc->plane)
9014 flip_mask = MI_WAIT_FOR_PLANE_B_FLIP;
9015 else
9016 flip_mask = MI_WAIT_FOR_PLANE_A_FLIP;
Daniel Vetter6d90c952012-04-26 23:28:05 +02009017 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | flip_mask);
9018 intel_ring_emit(ring, MI_NOOP);
9019 intel_ring_emit(ring, MI_DISPLAY_FLIP_I915 |
9020 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
9021 intel_ring_emit(ring, fb->pitches[0]);
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +03009022 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset);
Daniel Vetter6d90c952012-04-26 23:28:05 +02009023 intel_ring_emit(ring, MI_NOOP);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009024
Chris Wilsone7d841c2012-12-03 11:36:30 +00009025 intel_mark_page_flip_active(intel_crtc);
Chris Wilson09246732013-08-10 22:16:32 +01009026 __intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01009027 return 0;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009028}
9029
9030static int intel_gen4_queue_flip(struct drm_device *dev,
9031 struct drm_crtc *crtc,
9032 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07009033 struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01009034 struct intel_engine_cs *ring,
Keith Packarded8d1972013-07-22 18:49:58 -07009035 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009036{
9037 struct drm_i915_private *dev_priv = dev->dev_private;
9038 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
9039 uint32_t pf, pipesrc;
9040 int ret;
9041
Daniel Vetter6d90c952012-04-26 23:28:05 +02009042 ret = intel_ring_begin(ring, 4);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009043 if (ret)
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009044 return ret;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009045
9046 /* i965+ uses the linear or tiled offsets from the
9047 * Display Registers (which do not change across a page-flip)
9048 * so we need only reprogram the base address.
9049 */
Daniel Vetter6d90c952012-04-26 23:28:05 +02009050 intel_ring_emit(ring, MI_DISPLAY_FLIP |
9051 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
9052 intel_ring_emit(ring, fb->pitches[0]);
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +03009053 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset |
Daniel Vetterc2c75132012-07-05 12:17:30 +02009054 obj->tiling_mode);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009055
9056 /* XXX Enabling the panel-fitter across page-flip is so far
9057 * untested on non-native modes, so ignore it for now.
9058 * pf = I915_READ(pipe == 0 ? PFA_CTL_1 : PFB_CTL_1) & PF_ENABLE;
9059 */
9060 pf = 0;
9061 pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff;
Daniel Vetter6d90c952012-04-26 23:28:05 +02009062 intel_ring_emit(ring, pf | pipesrc);
Chris Wilsone7d841c2012-12-03 11:36:30 +00009063
9064 intel_mark_page_flip_active(intel_crtc);
Chris Wilson09246732013-08-10 22:16:32 +01009065 __intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01009066 return 0;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009067}
9068
9069static int intel_gen6_queue_flip(struct drm_device *dev,
9070 struct drm_crtc *crtc,
9071 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07009072 struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01009073 struct intel_engine_cs *ring,
Keith Packarded8d1972013-07-22 18:49:58 -07009074 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009075{
9076 struct drm_i915_private *dev_priv = dev->dev_private;
9077 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
9078 uint32_t pf, pipesrc;
9079 int ret;
9080
Daniel Vetter6d90c952012-04-26 23:28:05 +02009081 ret = intel_ring_begin(ring, 4);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009082 if (ret)
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009083 return ret;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009084
Daniel Vetter6d90c952012-04-26 23:28:05 +02009085 intel_ring_emit(ring, MI_DISPLAY_FLIP |
9086 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
9087 intel_ring_emit(ring, fb->pitches[0] | obj->tiling_mode);
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +03009088 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009089
Chris Wilson99d9acd2012-04-17 20:37:00 +01009090 /* Contrary to the suggestions in the documentation,
9091 * "Enable Panel Fitter" does not seem to be required when page
9092 * flipping with a non-native mode, and worse causes a normal
9093 * modeset to fail.
9094 * pf = I915_READ(PF_CTL(intel_crtc->pipe)) & PF_ENABLE;
9095 */
9096 pf = 0;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009097 pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff;
Daniel Vetter6d90c952012-04-26 23:28:05 +02009098 intel_ring_emit(ring, pf | pipesrc);
Chris Wilsone7d841c2012-12-03 11:36:30 +00009099
9100 intel_mark_page_flip_active(intel_crtc);
Chris Wilson09246732013-08-10 22:16:32 +01009101 __intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01009102 return 0;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009103}
9104
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009105static int intel_gen7_queue_flip(struct drm_device *dev,
9106 struct drm_crtc *crtc,
9107 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07009108 struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01009109 struct intel_engine_cs *ring,
Keith Packarded8d1972013-07-22 18:49:58 -07009110 uint32_t flags)
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009111{
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009112 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vettercb05d8d2012-05-23 14:02:00 +02009113 uint32_t plane_bit = 0;
Chris Wilsonffe74d72013-08-26 20:58:12 +01009114 int len, ret;
9115
Robin Schroereba905b2014-05-18 02:24:50 +02009116 switch (intel_crtc->plane) {
Daniel Vettercb05d8d2012-05-23 14:02:00 +02009117 case PLANE_A:
9118 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_A;
9119 break;
9120 case PLANE_B:
9121 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_B;
9122 break;
9123 case PLANE_C:
9124 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_C;
9125 break;
9126 default:
9127 WARN_ONCE(1, "unknown plane in flip command\n");
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009128 return -ENODEV;
Daniel Vettercb05d8d2012-05-23 14:02:00 +02009129 }
9130
Chris Wilsonffe74d72013-08-26 20:58:12 +01009131 len = 4;
Damien Lespiauf4768282014-04-07 20:24:34 +01009132 if (ring->id == RCS) {
Chris Wilsonffe74d72013-08-26 20:58:12 +01009133 len += 6;
Damien Lespiauf4768282014-04-07 20:24:34 +01009134 /*
9135 * On Gen 8, SRM is now taking an extra dword to accommodate
9136 * 48bits addresses, and we need a NOOP for the batch size to
9137 * stay even.
9138 */
9139 if (IS_GEN8(dev))
9140 len += 2;
9141 }
Chris Wilsonffe74d72013-08-26 20:58:12 +01009142
Ville Syrjäläf66fab82014-02-11 19:52:06 +02009143 /*
9144 * BSpec MI_DISPLAY_FLIP for IVB:
9145 * "The full packet must be contained within the same cache line."
9146 *
9147 * Currently the LRI+SRM+MI_DISPLAY_FLIP all fit within the same
9148 * cacheline, if we ever start emitting more commands before
9149 * the MI_DISPLAY_FLIP we may need to first emit everything else,
9150 * then do the cacheline alignment, and finally emit the
9151 * MI_DISPLAY_FLIP.
9152 */
9153 ret = intel_ring_cacheline_align(ring);
9154 if (ret)
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009155 return ret;
Ville Syrjäläf66fab82014-02-11 19:52:06 +02009156
Chris Wilsonffe74d72013-08-26 20:58:12 +01009157 ret = intel_ring_begin(ring, len);
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009158 if (ret)
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009159 return ret;
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009160
Chris Wilsonffe74d72013-08-26 20:58:12 +01009161 /* Unmask the flip-done completion message. Note that the bspec says that
9162 * we should do this for both the BCS and RCS, and that we must not unmask
9163 * more than one flip event at any time (or ensure that one flip message
9164 * can be sent by waiting for flip-done prior to queueing new flips).
9165 * Experimentation says that BCS works despite DERRMR masking all
9166 * flip-done completion events and that unmasking all planes at once
9167 * for the RCS also doesn't appear to drop events. Setting the DERRMR
9168 * to zero does lead to lockups within MI_DISPLAY_FLIP.
9169 */
9170 if (ring->id == RCS) {
9171 intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(1));
9172 intel_ring_emit(ring, DERRMR);
9173 intel_ring_emit(ring, ~(DERRMR_PIPEA_PRI_FLIP_DONE |
9174 DERRMR_PIPEB_PRI_FLIP_DONE |
9175 DERRMR_PIPEC_PRI_FLIP_DONE));
Damien Lespiauf4768282014-04-07 20:24:34 +01009176 if (IS_GEN8(dev))
9177 intel_ring_emit(ring, MI_STORE_REGISTER_MEM_GEN8(1) |
9178 MI_SRM_LRM_GLOBAL_GTT);
9179 else
9180 intel_ring_emit(ring, MI_STORE_REGISTER_MEM(1) |
9181 MI_SRM_LRM_GLOBAL_GTT);
Chris Wilsonffe74d72013-08-26 20:58:12 +01009182 intel_ring_emit(ring, DERRMR);
9183 intel_ring_emit(ring, ring->scratch.gtt_offset + 256);
Damien Lespiauf4768282014-04-07 20:24:34 +01009184 if (IS_GEN8(dev)) {
9185 intel_ring_emit(ring, 0);
9186 intel_ring_emit(ring, MI_NOOP);
9187 }
Chris Wilsonffe74d72013-08-26 20:58:12 +01009188 }
9189
Daniel Vettercb05d8d2012-05-23 14:02:00 +02009190 intel_ring_emit(ring, MI_DISPLAY_FLIP_I915 | plane_bit);
Ville Syrjälä01f2c772011-12-20 00:06:49 +02009191 intel_ring_emit(ring, (fb->pitches[0] | obj->tiling_mode));
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +03009192 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset);
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009193 intel_ring_emit(ring, (MI_NOOP));
Chris Wilsone7d841c2012-12-03 11:36:30 +00009194
9195 intel_mark_page_flip_active(intel_crtc);
Chris Wilson09246732013-08-10 22:16:32 +01009196 __intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01009197 return 0;
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009198}
9199
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009200static int intel_default_queue_flip(struct drm_device *dev,
9201 struct drm_crtc *crtc,
9202 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07009203 struct drm_i915_gem_object *obj,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01009204 struct intel_engine_cs *ring,
Keith Packarded8d1972013-07-22 18:49:58 -07009205 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009206{
9207 return -ENODEV;
9208}
9209
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009210static int intel_crtc_page_flip(struct drm_crtc *crtc,
9211 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07009212 struct drm_pending_vblank_event *event,
9213 uint32_t page_flip_flags)
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009214{
9215 struct drm_device *dev = crtc->dev;
9216 struct drm_i915_private *dev_priv = dev->dev_private;
Matt Roperf4510a22014-04-01 15:22:40 -07009217 struct drm_framebuffer *old_fb = crtc->primary->fb;
Ville Syrjälä4a35f832013-02-22 16:53:38 +02009218 struct drm_i915_gem_object *obj = to_intel_framebuffer(fb)->obj;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009219 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
9220 struct intel_unpin_work *work;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01009221 struct intel_engine_cs *ring;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009222 unsigned long flags;
Chris Wilson52e68632010-08-08 10:15:59 +01009223 int ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009224
Ville Syrjäläe6a595d2012-05-24 21:08:59 +03009225 /* Can't change pixel format via MI display flips. */
Matt Roperf4510a22014-04-01 15:22:40 -07009226 if (fb->pixel_format != crtc->primary->fb->pixel_format)
Ville Syrjäläe6a595d2012-05-24 21:08:59 +03009227 return -EINVAL;
9228
9229 /*
9230 * TILEOFF/LINOFF registers can't be changed via MI display flips.
9231 * Note that pitch changes could also affect these register.
9232 */
9233 if (INTEL_INFO(dev)->gen > 3 &&
Matt Roperf4510a22014-04-01 15:22:40 -07009234 (fb->offsets[0] != crtc->primary->fb->offsets[0] ||
9235 fb->pitches[0] != crtc->primary->fb->pitches[0]))
Ville Syrjäläe6a595d2012-05-24 21:08:59 +03009236 return -EINVAL;
9237
Chris Wilsonf900db42014-02-20 09:26:13 +00009238 if (i915_terminally_wedged(&dev_priv->gpu_error))
9239 goto out_hang;
9240
Daniel Vetterb14c5672013-09-19 12:18:32 +02009241 work = kzalloc(sizeof(*work), GFP_KERNEL);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009242 if (work == NULL)
9243 return -ENOMEM;
9244
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009245 work->event = event;
Chris Wilsonb4a98e52012-11-01 09:26:26 +00009246 work->crtc = crtc;
Ville Syrjälä4a35f832013-02-22 16:53:38 +02009247 work->old_fb_obj = to_intel_framebuffer(old_fb)->obj;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009248 INIT_WORK(&work->work, intel_unpin_work_fn);
9249
Daniel Vetter87b6b102014-05-15 15:33:46 +02009250 ret = drm_crtc_vblank_get(crtc);
Jesse Barnes7317c75e62011-08-29 09:45:28 -07009251 if (ret)
9252 goto free_work;
9253
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009254 /* We borrow the event spin lock for protecting unpin_work */
9255 spin_lock_irqsave(&dev->event_lock, flags);
9256 if (intel_crtc->unpin_work) {
9257 spin_unlock_irqrestore(&dev->event_lock, flags);
9258 kfree(work);
Daniel Vetter87b6b102014-05-15 15:33:46 +02009259 drm_crtc_vblank_put(crtc);
Chris Wilson468f0b42010-05-27 13:18:13 +01009260
9261 DRM_DEBUG_DRIVER("flip queue: crtc already busy\n");
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009262 return -EBUSY;
9263 }
9264 intel_crtc->unpin_work = work;
9265 spin_unlock_irqrestore(&dev->event_lock, flags);
9266
Chris Wilsonb4a98e52012-11-01 09:26:26 +00009267 if (atomic_read(&intel_crtc->unpin_work_count) >= 2)
9268 flush_workqueue(dev_priv->wq);
9269
Chris Wilson79158102012-05-23 11:13:58 +01009270 ret = i915_mutex_lock_interruptible(dev);
9271 if (ret)
9272 goto cleanup;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009273
Jesse Barnes75dfca82010-02-10 15:09:44 -08009274 /* Reference the objects for the scheduled work. */
Chris Wilson05394f32010-11-08 19:18:58 +00009275 drm_gem_object_reference(&work->old_fb_obj->base);
9276 drm_gem_object_reference(&obj->base);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009277
Matt Roperf4510a22014-04-01 15:22:40 -07009278 crtc->primary->fb = fb;
Chris Wilson96b099f2010-06-07 14:03:04 +01009279
Chris Wilsone1f99ce2010-10-27 12:45:26 +01009280 work->pending_flip_obj = obj;
Chris Wilsone1f99ce2010-10-27 12:45:26 +01009281
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01009282 work->enable_stall_check = true;
9283
Chris Wilsonb4a98e52012-11-01 09:26:26 +00009284 atomic_inc(&intel_crtc->unpin_work_count);
Ville Syrjälä10d83732013-01-29 18:13:34 +02009285 intel_crtc->reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
Chris Wilsone1f99ce2010-10-27 12:45:26 +01009286
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +03009287 if (INTEL_INFO(dev)->gen >= 5 || IS_G4X(dev))
9288 work->flip_count = I915_READ(PIPE_FLIPCOUNT_GM45(intel_crtc->pipe)) + 1;
9289
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009290 if (IS_VALLEYVIEW(dev)) {
9291 ring = &dev_priv->ring[BCS];
9292 } else if (INTEL_INFO(dev)->gen >= 7) {
9293 ring = obj->ring;
9294 if (ring == NULL || ring->id != RCS)
9295 ring = &dev_priv->ring[BCS];
9296 } else {
9297 ring = &dev_priv->ring[RCS];
9298 }
9299
9300 ret = intel_pin_and_fence_fb_obj(dev, obj, ring);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009301 if (ret)
9302 goto cleanup_pending;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009303
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009304 work->gtt_offset =
9305 i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset;
9306
9307 ret = dev_priv->display.queue_flip(dev, crtc, fb, obj, ring, page_flip_flags);
9308 if (ret)
9309 goto cleanup_unpin;
9310
Chris Wilson7782de32011-07-08 12:22:41 +01009311 intel_disable_fbc(dev);
Chris Wilsonc65355b2013-06-06 16:53:41 -03009312 intel_mark_fb_busy(obj, NULL);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009313 mutex_unlock(&dev->struct_mutex);
9314
Jesse Barnese5510fa2010-07-01 16:48:37 -07009315 trace_i915_flip_request(intel_crtc->plane, obj);
9316
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009317 return 0;
Chris Wilson96b099f2010-06-07 14:03:04 +01009318
Ville Syrjälä4fa62c82014-04-15 21:41:38 +03009319cleanup_unpin:
9320 intel_unpin_fb_obj(obj);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009321cleanup_pending:
Chris Wilsonb4a98e52012-11-01 09:26:26 +00009322 atomic_dec(&intel_crtc->unpin_work_count);
Matt Roperf4510a22014-04-01 15:22:40 -07009323 crtc->primary->fb = old_fb;
Chris Wilson05394f32010-11-08 19:18:58 +00009324 drm_gem_object_unreference(&work->old_fb_obj->base);
9325 drm_gem_object_unreference(&obj->base);
Chris Wilson96b099f2010-06-07 14:03:04 +01009326 mutex_unlock(&dev->struct_mutex);
9327
Chris Wilson79158102012-05-23 11:13:58 +01009328cleanup:
Chris Wilson96b099f2010-06-07 14:03:04 +01009329 spin_lock_irqsave(&dev->event_lock, flags);
9330 intel_crtc->unpin_work = NULL;
9331 spin_unlock_irqrestore(&dev->event_lock, flags);
9332
Daniel Vetter87b6b102014-05-15 15:33:46 +02009333 drm_crtc_vblank_put(crtc);
Jesse Barnes7317c75e62011-08-29 09:45:28 -07009334free_work:
Chris Wilson96b099f2010-06-07 14:03:04 +01009335 kfree(work);
9336
Chris Wilsonf900db42014-02-20 09:26:13 +00009337 if (ret == -EIO) {
9338out_hang:
9339 intel_crtc_wait_for_pending_flips(crtc);
9340 ret = intel_pipe_set_base(crtc, crtc->x, crtc->y, fb);
9341 if (ret == 0 && event)
9342 drm_send_vblank_event(dev, intel_crtc->pipe, event);
9343 }
Chris Wilson96b099f2010-06-07 14:03:04 +01009344 return ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009345}
9346
Chris Wilsonf6e5b162011-04-12 18:06:51 +01009347static struct drm_crtc_helper_funcs intel_helper_funcs = {
Chris Wilsonf6e5b162011-04-12 18:06:51 +01009348 .mode_set_base_atomic = intel_pipe_set_base_atomic,
9349 .load_lut = intel_crtc_load_lut,
Chris Wilsonf6e5b162011-04-12 18:06:51 +01009350};
9351
Daniel Vetter9a935852012-07-05 22:34:27 +02009352/**
9353 * intel_modeset_update_staged_output_state
9354 *
9355 * Updates the staged output configuration state, e.g. after we've read out the
9356 * current hw state.
9357 */
9358static void intel_modeset_update_staged_output_state(struct drm_device *dev)
9359{
Ville Syrjälä76688512014-01-10 11:28:06 +02009360 struct intel_crtc *crtc;
Daniel Vetter9a935852012-07-05 22:34:27 +02009361 struct intel_encoder *encoder;
9362 struct intel_connector *connector;
9363
9364 list_for_each_entry(connector, &dev->mode_config.connector_list,
9365 base.head) {
9366 connector->new_encoder =
9367 to_intel_encoder(connector->base.encoder);
9368 }
9369
9370 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
9371 base.head) {
9372 encoder->new_crtc =
9373 to_intel_crtc(encoder->base.crtc);
9374 }
Ville Syrjälä76688512014-01-10 11:28:06 +02009375
Damien Lespiaud3fcc802014-05-13 23:32:22 +01009376 for_each_intel_crtc(dev, crtc) {
Ville Syrjälä76688512014-01-10 11:28:06 +02009377 crtc->new_enabled = crtc->base.enabled;
Ville Syrjälä7bd0a8e2014-01-14 14:31:38 +02009378
9379 if (crtc->new_enabled)
9380 crtc->new_config = &crtc->config;
9381 else
9382 crtc->new_config = NULL;
Ville Syrjälä76688512014-01-10 11:28:06 +02009383 }
Daniel Vetter9a935852012-07-05 22:34:27 +02009384}
9385
9386/**
9387 * intel_modeset_commit_output_state
9388 *
9389 * This function copies the stage display pipe configuration to the real one.
9390 */
9391static void intel_modeset_commit_output_state(struct drm_device *dev)
9392{
Ville Syrjälä76688512014-01-10 11:28:06 +02009393 struct intel_crtc *crtc;
Daniel Vetter9a935852012-07-05 22:34:27 +02009394 struct intel_encoder *encoder;
9395 struct intel_connector *connector;
9396
9397 list_for_each_entry(connector, &dev->mode_config.connector_list,
9398 base.head) {
9399 connector->base.encoder = &connector->new_encoder->base;
9400 }
9401
9402 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
9403 base.head) {
9404 encoder->base.crtc = &encoder->new_crtc->base;
9405 }
Ville Syrjälä76688512014-01-10 11:28:06 +02009406
Damien Lespiaud3fcc802014-05-13 23:32:22 +01009407 for_each_intel_crtc(dev, crtc) {
Ville Syrjälä76688512014-01-10 11:28:06 +02009408 crtc->base.enabled = crtc->new_enabled;
9409 }
Daniel Vetter9a935852012-07-05 22:34:27 +02009410}
9411
Daniel Vetter050f7ae2013-06-02 13:26:23 +02009412static void
Robin Schroereba905b2014-05-18 02:24:50 +02009413connected_sink_compute_bpp(struct intel_connector *connector,
Daniel Vetter050f7ae2013-06-02 13:26:23 +02009414 struct intel_crtc_config *pipe_config)
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01009415{
Daniel Vetter050f7ae2013-06-02 13:26:23 +02009416 int bpp = pipe_config->pipe_bpp;
9417
9418 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] checking for sink bpp constrains\n",
9419 connector->base.base.id,
Jani Nikulac23cc412014-06-03 14:56:17 +03009420 connector->base.name);
Daniel Vetter050f7ae2013-06-02 13:26:23 +02009421
9422 /* Don't use an invalid EDID bpc value */
9423 if (connector->base.display_info.bpc &&
9424 connector->base.display_info.bpc * 3 < bpp) {
9425 DRM_DEBUG_KMS("clamping display bpp (was %d) to EDID reported max of %d\n",
9426 bpp, connector->base.display_info.bpc*3);
9427 pipe_config->pipe_bpp = connector->base.display_info.bpc*3;
9428 }
9429
9430 /* Clamp bpp to 8 on screens without EDID 1.4 */
9431 if (connector->base.display_info.bpc == 0 && bpp > 24) {
9432 DRM_DEBUG_KMS("clamping display bpp (was %d) to default limit of 24\n",
9433 bpp);
9434 pipe_config->pipe_bpp = 24;
9435 }
9436}
9437
9438static int
9439compute_baseline_pipe_bpp(struct intel_crtc *crtc,
9440 struct drm_framebuffer *fb,
9441 struct intel_crtc_config *pipe_config)
9442{
9443 struct drm_device *dev = crtc->base.dev;
9444 struct intel_connector *connector;
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01009445 int bpp;
9446
Daniel Vetterd42264b2013-03-28 16:38:08 +01009447 switch (fb->pixel_format) {
9448 case DRM_FORMAT_C8:
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01009449 bpp = 8*3; /* since we go through a colormap */
9450 break;
Daniel Vetterd42264b2013-03-28 16:38:08 +01009451 case DRM_FORMAT_XRGB1555:
9452 case DRM_FORMAT_ARGB1555:
9453 /* checked in intel_framebuffer_init already */
9454 if (WARN_ON(INTEL_INFO(dev)->gen > 3))
9455 return -EINVAL;
9456 case DRM_FORMAT_RGB565:
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01009457 bpp = 6*3; /* min is 18bpp */
9458 break;
Daniel Vetterd42264b2013-03-28 16:38:08 +01009459 case DRM_FORMAT_XBGR8888:
9460 case DRM_FORMAT_ABGR8888:
9461 /* checked in intel_framebuffer_init already */
9462 if (WARN_ON(INTEL_INFO(dev)->gen < 4))
9463 return -EINVAL;
9464 case DRM_FORMAT_XRGB8888:
9465 case DRM_FORMAT_ARGB8888:
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01009466 bpp = 8*3;
9467 break;
Daniel Vetterd42264b2013-03-28 16:38:08 +01009468 case DRM_FORMAT_XRGB2101010:
9469 case DRM_FORMAT_ARGB2101010:
9470 case DRM_FORMAT_XBGR2101010:
9471 case DRM_FORMAT_ABGR2101010:
9472 /* checked in intel_framebuffer_init already */
9473 if (WARN_ON(INTEL_INFO(dev)->gen < 4))
Daniel Vetterbaba1332013-03-27 00:45:00 +01009474 return -EINVAL;
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01009475 bpp = 10*3;
9476 break;
Daniel Vetterbaba1332013-03-27 00:45:00 +01009477 /* TODO: gen4+ supports 16 bpc floating point, too. */
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01009478 default:
9479 DRM_DEBUG_KMS("unsupported depth\n");
9480 return -EINVAL;
9481 }
9482
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01009483 pipe_config->pipe_bpp = bpp;
9484
9485 /* Clamp display bpp to EDID value */
9486 list_for_each_entry(connector, &dev->mode_config.connector_list,
Daniel Vetter050f7ae2013-06-02 13:26:23 +02009487 base.head) {
Daniel Vetter1b829e02013-06-02 13:26:24 +02009488 if (!connector->new_encoder ||
9489 connector->new_encoder->new_crtc != crtc)
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01009490 continue;
9491
Daniel Vetter050f7ae2013-06-02 13:26:23 +02009492 connected_sink_compute_bpp(connector, pipe_config);
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01009493 }
9494
9495 return bpp;
9496}
9497
Daniel Vetter644db712013-09-19 14:53:58 +02009498static void intel_dump_crtc_timings(const struct drm_display_mode *mode)
9499{
9500 DRM_DEBUG_KMS("crtc timings: %d %d %d %d %d %d %d %d %d, "
9501 "type: 0x%x flags: 0x%x\n",
Damien Lespiau13428302013-09-25 16:45:36 +01009502 mode->crtc_clock,
Daniel Vetter644db712013-09-19 14:53:58 +02009503 mode->crtc_hdisplay, mode->crtc_hsync_start,
9504 mode->crtc_hsync_end, mode->crtc_htotal,
9505 mode->crtc_vdisplay, mode->crtc_vsync_start,
9506 mode->crtc_vsync_end, mode->crtc_vtotal, mode->type, mode->flags);
9507}
9508
Daniel Vetterc0b03412013-05-28 12:05:54 +02009509static void intel_dump_pipe_config(struct intel_crtc *crtc,
9510 struct intel_crtc_config *pipe_config,
9511 const char *context)
9512{
9513 DRM_DEBUG_KMS("[CRTC:%d]%s config for pipe %c\n", crtc->base.base.id,
9514 context, pipe_name(crtc->pipe));
9515
9516 DRM_DEBUG_KMS("cpu_transcoder: %c\n", transcoder_name(pipe_config->cpu_transcoder));
9517 DRM_DEBUG_KMS("pipe bpp: %i, dithering: %i\n",
9518 pipe_config->pipe_bpp, pipe_config->dither);
9519 DRM_DEBUG_KMS("fdi/pch: %i, lanes: %i, gmch_m: %u, gmch_n: %u, link_m: %u, link_n: %u, tu: %u\n",
9520 pipe_config->has_pch_encoder,
9521 pipe_config->fdi_lanes,
9522 pipe_config->fdi_m_n.gmch_m, pipe_config->fdi_m_n.gmch_n,
9523 pipe_config->fdi_m_n.link_m, pipe_config->fdi_m_n.link_n,
9524 pipe_config->fdi_m_n.tu);
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03009525 DRM_DEBUG_KMS("dp: %i, gmch_m: %u, gmch_n: %u, link_m: %u, link_n: %u, tu: %u\n",
9526 pipe_config->has_dp_encoder,
9527 pipe_config->dp_m_n.gmch_m, pipe_config->dp_m_n.gmch_n,
9528 pipe_config->dp_m_n.link_m, pipe_config->dp_m_n.link_n,
9529 pipe_config->dp_m_n.tu);
Daniel Vetterc0b03412013-05-28 12:05:54 +02009530 DRM_DEBUG_KMS("requested mode:\n");
9531 drm_mode_debug_printmodeline(&pipe_config->requested_mode);
9532 DRM_DEBUG_KMS("adjusted mode:\n");
9533 drm_mode_debug_printmodeline(&pipe_config->adjusted_mode);
Daniel Vetter644db712013-09-19 14:53:58 +02009534 intel_dump_crtc_timings(&pipe_config->adjusted_mode);
Ville Syrjäläd71b8d42013-09-06 23:29:08 +03009535 DRM_DEBUG_KMS("port clock: %d\n", pipe_config->port_clock);
Ville Syrjälä37327ab2013-09-04 18:25:28 +03009536 DRM_DEBUG_KMS("pipe src size: %dx%d\n",
9537 pipe_config->pipe_src_w, pipe_config->pipe_src_h);
Daniel Vetterc0b03412013-05-28 12:05:54 +02009538 DRM_DEBUG_KMS("gmch pfit: control: 0x%08x, ratios: 0x%08x, lvds border: 0x%08x\n",
9539 pipe_config->gmch_pfit.control,
9540 pipe_config->gmch_pfit.pgm_ratios,
9541 pipe_config->gmch_pfit.lvds_border_bits);
Chris Wilsonfd4daa92013-08-27 17:04:17 +01009542 DRM_DEBUG_KMS("pch pfit: pos: 0x%08x, size: 0x%08x, %s\n",
Daniel Vetterc0b03412013-05-28 12:05:54 +02009543 pipe_config->pch_pfit.pos,
Chris Wilsonfd4daa92013-08-27 17:04:17 +01009544 pipe_config->pch_pfit.size,
9545 pipe_config->pch_pfit.enabled ? "enabled" : "disabled");
Paulo Zanoni42db64e2013-05-31 16:33:22 -03009546 DRM_DEBUG_KMS("ips: %i\n", pipe_config->ips_enabled);
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03009547 DRM_DEBUG_KMS("double wide: %i\n", pipe_config->double_wide);
Daniel Vetterc0b03412013-05-28 12:05:54 +02009548}
9549
Ville Syrjäläbc079e82014-03-03 16:15:28 +02009550static bool encoders_cloneable(const struct intel_encoder *a,
9551 const struct intel_encoder *b)
Daniel Vetteraccfc0c2013-05-30 15:04:25 +02009552{
Ville Syrjäläbc079e82014-03-03 16:15:28 +02009553 /* masks could be asymmetric, so check both ways */
9554 return a == b || (a->cloneable & (1 << b->type) &&
9555 b->cloneable & (1 << a->type));
9556}
Daniel Vetteraccfc0c2013-05-30 15:04:25 +02009557
Ville Syrjäläbc079e82014-03-03 16:15:28 +02009558static bool check_single_encoder_cloning(struct intel_crtc *crtc,
9559 struct intel_encoder *encoder)
9560{
9561 struct drm_device *dev = crtc->base.dev;
9562 struct intel_encoder *source_encoder;
9563
9564 list_for_each_entry(source_encoder,
9565 &dev->mode_config.encoder_list, base.head) {
9566 if (source_encoder->new_crtc != crtc)
Daniel Vetteraccfc0c2013-05-30 15:04:25 +02009567 continue;
9568
Ville Syrjäläbc079e82014-03-03 16:15:28 +02009569 if (!encoders_cloneable(encoder, source_encoder))
9570 return false;
Daniel Vetteraccfc0c2013-05-30 15:04:25 +02009571 }
9572
Ville Syrjäläbc079e82014-03-03 16:15:28 +02009573 return true;
9574}
9575
9576static bool check_encoder_cloning(struct intel_crtc *crtc)
9577{
9578 struct drm_device *dev = crtc->base.dev;
9579 struct intel_encoder *encoder;
9580
9581 list_for_each_entry(encoder,
9582 &dev->mode_config.encoder_list, base.head) {
9583 if (encoder->new_crtc != crtc)
9584 continue;
9585
9586 if (!check_single_encoder_cloning(crtc, encoder))
9587 return false;
9588 }
9589
9590 return true;
Daniel Vetteraccfc0c2013-05-30 15:04:25 +02009591}
9592
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01009593static struct intel_crtc_config *
9594intel_modeset_pipe_config(struct drm_crtc *crtc,
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01009595 struct drm_framebuffer *fb,
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01009596 struct drm_display_mode *mode)
Daniel Vetter7758a112012-07-08 19:40:39 +02009597{
9598 struct drm_device *dev = crtc->dev;
Daniel Vetter7758a112012-07-08 19:40:39 +02009599 struct intel_encoder *encoder;
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01009600 struct intel_crtc_config *pipe_config;
Daniel Vettere29c22c2013-02-21 00:00:16 +01009601 int plane_bpp, ret = -EINVAL;
9602 bool retry = true;
Daniel Vetter7758a112012-07-08 19:40:39 +02009603
Ville Syrjäläbc079e82014-03-03 16:15:28 +02009604 if (!check_encoder_cloning(to_intel_crtc(crtc))) {
Daniel Vetteraccfc0c2013-05-30 15:04:25 +02009605 DRM_DEBUG_KMS("rejecting invalid cloning configuration\n");
9606 return ERR_PTR(-EINVAL);
9607 }
9608
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01009609 pipe_config = kzalloc(sizeof(*pipe_config), GFP_KERNEL);
9610 if (!pipe_config)
Daniel Vetter7758a112012-07-08 19:40:39 +02009611 return ERR_PTR(-ENOMEM);
9612
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01009613 drm_mode_copy(&pipe_config->adjusted_mode, mode);
9614 drm_mode_copy(&pipe_config->requested_mode, mode);
Ville Syrjälä37327ab2013-09-04 18:25:28 +03009615
Daniel Vettere143a212013-07-04 12:01:15 +02009616 pipe_config->cpu_transcoder =
9617 (enum transcoder) to_intel_crtc(crtc)->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +02009618 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01009619
Imre Deak2960bc92013-07-30 13:36:32 +03009620 /*
9621 * Sanitize sync polarity flags based on requested ones. If neither
9622 * positive or negative polarity is requested, treat this as meaning
9623 * negative polarity.
9624 */
9625 if (!(pipe_config->adjusted_mode.flags &
9626 (DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NHSYNC)))
9627 pipe_config->adjusted_mode.flags |= DRM_MODE_FLAG_NHSYNC;
9628
9629 if (!(pipe_config->adjusted_mode.flags &
9630 (DRM_MODE_FLAG_PVSYNC | DRM_MODE_FLAG_NVSYNC)))
9631 pipe_config->adjusted_mode.flags |= DRM_MODE_FLAG_NVSYNC;
9632
Daniel Vetter050f7ae2013-06-02 13:26:23 +02009633 /* Compute a starting value for pipe_config->pipe_bpp taking the source
9634 * plane pixel format and any sink constraints into account. Returns the
9635 * source plane bpp so that dithering can be selected on mismatches
9636 * after encoders and crtc also have had their say. */
9637 plane_bpp = compute_baseline_pipe_bpp(to_intel_crtc(crtc),
9638 fb, pipe_config);
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01009639 if (plane_bpp < 0)
9640 goto fail;
9641
Ville Syrjäläe41a56b2013-10-01 22:52:14 +03009642 /*
9643 * Determine the real pipe dimensions. Note that stereo modes can
9644 * increase the actual pipe size due to the frame doubling and
9645 * insertion of additional space for blanks between the frame. This
9646 * is stored in the crtc timings. We use the requested mode to do this
9647 * computation to clearly distinguish it from the adjusted mode, which
9648 * can be changed by the connectors in the below retry loop.
9649 */
9650 drm_mode_set_crtcinfo(&pipe_config->requested_mode, CRTC_STEREO_DOUBLE);
9651 pipe_config->pipe_src_w = pipe_config->requested_mode.crtc_hdisplay;
9652 pipe_config->pipe_src_h = pipe_config->requested_mode.crtc_vdisplay;
9653
Daniel Vettere29c22c2013-02-21 00:00:16 +01009654encoder_retry:
Daniel Vetteref1b4602013-06-01 17:17:04 +02009655 /* Ensure the port clock defaults are reset when retrying. */
Daniel Vetterff9a6752013-06-01 17:16:21 +02009656 pipe_config->port_clock = 0;
Daniel Vetteref1b4602013-06-01 17:17:04 +02009657 pipe_config->pixel_multiplier = 1;
Daniel Vetterff9a6752013-06-01 17:16:21 +02009658
Daniel Vetter135c81b2013-07-21 21:37:09 +02009659 /* Fill in default crtc timings, allow encoders to overwrite them. */
Damien Lespiau6ce70f52013-09-25 16:45:38 +01009660 drm_mode_set_crtcinfo(&pipe_config->adjusted_mode, CRTC_STEREO_DOUBLE);
Daniel Vetter135c81b2013-07-21 21:37:09 +02009661
Daniel Vetter7758a112012-07-08 19:40:39 +02009662 /* Pass our mode to the connectors and the CRTC to give them a chance to
9663 * adjust it according to limitations or connector properties, and also
9664 * a chance to reject the mode entirely.
9665 */
9666 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
9667 base.head) {
9668
9669 if (&encoder->new_crtc->base != crtc)
9670 continue;
Daniel Vetter7ae89232013-03-27 00:44:52 +01009671
Daniel Vetterefea6e82013-07-21 21:36:59 +02009672 if (!(encoder->compute_config(encoder, pipe_config))) {
9673 DRM_DEBUG_KMS("Encoder config failure\n");
Daniel Vetter7758a112012-07-08 19:40:39 +02009674 goto fail;
9675 }
9676 }
9677
Daniel Vetterff9a6752013-06-01 17:16:21 +02009678 /* Set default port clock if not overwritten by the encoder. Needs to be
9679 * done afterwards in case the encoder adjusts the mode. */
9680 if (!pipe_config->port_clock)
Damien Lespiau241bfc32013-09-25 16:45:37 +01009681 pipe_config->port_clock = pipe_config->adjusted_mode.crtc_clock
9682 * pipe_config->pixel_multiplier;
Daniel Vetterff9a6752013-06-01 17:16:21 +02009683
Daniel Vettera43f6e02013-06-07 23:10:32 +02009684 ret = intel_crtc_compute_config(to_intel_crtc(crtc), pipe_config);
Daniel Vettere29c22c2013-02-21 00:00:16 +01009685 if (ret < 0) {
Daniel Vetter7758a112012-07-08 19:40:39 +02009686 DRM_DEBUG_KMS("CRTC fixup failed\n");
9687 goto fail;
9688 }
Daniel Vettere29c22c2013-02-21 00:00:16 +01009689
9690 if (ret == RETRY) {
9691 if (WARN(!retry, "loop in pipe configuration computation\n")) {
9692 ret = -EINVAL;
9693 goto fail;
9694 }
9695
9696 DRM_DEBUG_KMS("CRTC bw constrained, retrying\n");
9697 retry = false;
9698 goto encoder_retry;
9699 }
9700
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01009701 pipe_config->dither = pipe_config->pipe_bpp != plane_bpp;
9702 DRM_DEBUG_KMS("plane bpp: %i, pipe bpp: %i, dithering: %i\n",
9703 plane_bpp, pipe_config->pipe_bpp, pipe_config->dither);
9704
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01009705 return pipe_config;
Daniel Vetter7758a112012-07-08 19:40:39 +02009706fail:
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01009707 kfree(pipe_config);
Daniel Vettere29c22c2013-02-21 00:00:16 +01009708 return ERR_PTR(ret);
Daniel Vetter7758a112012-07-08 19:40:39 +02009709}
9710
Daniel Vettere2e1ed42012-07-08 21:14:38 +02009711/* Computes which crtcs are affected and sets the relevant bits in the mask. For
9712 * simplicity we use the crtc's pipe number (because it's easier to obtain). */
9713static void
9714intel_modeset_affected_pipes(struct drm_crtc *crtc, unsigned *modeset_pipes,
9715 unsigned *prepare_pipes, unsigned *disable_pipes)
9716{
9717 struct intel_crtc *intel_crtc;
9718 struct drm_device *dev = crtc->dev;
9719 struct intel_encoder *encoder;
9720 struct intel_connector *connector;
9721 struct drm_crtc *tmp_crtc;
9722
9723 *disable_pipes = *modeset_pipes = *prepare_pipes = 0;
9724
9725 /* Check which crtcs have changed outputs connected to them, these need
9726 * to be part of the prepare_pipes mask. We don't (yet) support global
9727 * modeset across multiple crtcs, so modeset_pipes will only have one
9728 * bit set at most. */
9729 list_for_each_entry(connector, &dev->mode_config.connector_list,
9730 base.head) {
9731 if (connector->base.encoder == &connector->new_encoder->base)
9732 continue;
9733
9734 if (connector->base.encoder) {
9735 tmp_crtc = connector->base.encoder->crtc;
9736
9737 *prepare_pipes |= 1 << to_intel_crtc(tmp_crtc)->pipe;
9738 }
9739
9740 if (connector->new_encoder)
9741 *prepare_pipes |=
9742 1 << connector->new_encoder->new_crtc->pipe;
9743 }
9744
9745 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
9746 base.head) {
9747 if (encoder->base.crtc == &encoder->new_crtc->base)
9748 continue;
9749
9750 if (encoder->base.crtc) {
9751 tmp_crtc = encoder->base.crtc;
9752
9753 *prepare_pipes |= 1 << to_intel_crtc(tmp_crtc)->pipe;
9754 }
9755
9756 if (encoder->new_crtc)
9757 *prepare_pipes |= 1 << encoder->new_crtc->pipe;
9758 }
9759
Ville Syrjälä76688512014-01-10 11:28:06 +02009760 /* Check for pipes that will be enabled/disabled ... */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01009761 for_each_intel_crtc(dev, intel_crtc) {
Ville Syrjälä76688512014-01-10 11:28:06 +02009762 if (intel_crtc->base.enabled == intel_crtc->new_enabled)
Daniel Vettere2e1ed42012-07-08 21:14:38 +02009763 continue;
9764
Ville Syrjälä76688512014-01-10 11:28:06 +02009765 if (!intel_crtc->new_enabled)
Daniel Vettere2e1ed42012-07-08 21:14:38 +02009766 *disable_pipes |= 1 << intel_crtc->pipe;
Ville Syrjälä76688512014-01-10 11:28:06 +02009767 else
9768 *prepare_pipes |= 1 << intel_crtc->pipe;
Daniel Vettere2e1ed42012-07-08 21:14:38 +02009769 }
9770
9771
9772 /* set_mode is also used to update properties on life display pipes. */
9773 intel_crtc = to_intel_crtc(crtc);
Ville Syrjälä76688512014-01-10 11:28:06 +02009774 if (intel_crtc->new_enabled)
Daniel Vettere2e1ed42012-07-08 21:14:38 +02009775 *prepare_pipes |= 1 << intel_crtc->pipe;
9776
Daniel Vetterb6c51642013-04-12 18:48:43 +02009777 /*
9778 * For simplicity do a full modeset on any pipe where the output routing
9779 * changed. We could be more clever, but that would require us to be
9780 * more careful with calling the relevant encoder->mode_set functions.
9781 */
Daniel Vettere2e1ed42012-07-08 21:14:38 +02009782 if (*prepare_pipes)
9783 *modeset_pipes = *prepare_pipes;
9784
9785 /* ... and mask these out. */
9786 *modeset_pipes &= ~(*disable_pipes);
9787 *prepare_pipes &= ~(*disable_pipes);
Daniel Vetterb6c51642013-04-12 18:48:43 +02009788
9789 /*
9790 * HACK: We don't (yet) fully support global modesets. intel_set_config
9791 * obies this rule, but the modeset restore mode of
9792 * intel_modeset_setup_hw_state does not.
9793 */
9794 *modeset_pipes &= 1 << intel_crtc->pipe;
9795 *prepare_pipes &= 1 << intel_crtc->pipe;
Daniel Vettere3641d32013-04-11 19:49:07 +02009796
9797 DRM_DEBUG_KMS("set mode pipe masks: modeset: %x, prepare: %x, disable: %x\n",
9798 *modeset_pipes, *prepare_pipes, *disable_pipes);
Daniel Vettere2e1ed42012-07-08 21:14:38 +02009799}
9800
Daniel Vetterea9d7582012-07-10 10:42:52 +02009801static bool intel_crtc_in_use(struct drm_crtc *crtc)
9802{
9803 struct drm_encoder *encoder;
9804 struct drm_device *dev = crtc->dev;
9805
9806 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head)
9807 if (encoder->crtc == crtc)
9808 return true;
9809
9810 return false;
9811}
9812
9813static void
9814intel_modeset_update_state(struct drm_device *dev, unsigned prepare_pipes)
9815{
9816 struct intel_encoder *intel_encoder;
9817 struct intel_crtc *intel_crtc;
9818 struct drm_connector *connector;
9819
9820 list_for_each_entry(intel_encoder, &dev->mode_config.encoder_list,
9821 base.head) {
9822 if (!intel_encoder->base.crtc)
9823 continue;
9824
9825 intel_crtc = to_intel_crtc(intel_encoder->base.crtc);
9826
9827 if (prepare_pipes & (1 << intel_crtc->pipe))
9828 intel_encoder->connectors_active = false;
9829 }
9830
9831 intel_modeset_commit_output_state(dev);
9832
Ville Syrjälä76688512014-01-10 11:28:06 +02009833 /* Double check state. */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01009834 for_each_intel_crtc(dev, intel_crtc) {
Ville Syrjälä76688512014-01-10 11:28:06 +02009835 WARN_ON(intel_crtc->base.enabled != intel_crtc_in_use(&intel_crtc->base));
Ville Syrjälä7bd0a8e2014-01-14 14:31:38 +02009836 WARN_ON(intel_crtc->new_config &&
9837 intel_crtc->new_config != &intel_crtc->config);
9838 WARN_ON(intel_crtc->base.enabled != !!intel_crtc->new_config);
Daniel Vetterea9d7582012-07-10 10:42:52 +02009839 }
9840
9841 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
9842 if (!connector->encoder || !connector->encoder->crtc)
9843 continue;
9844
9845 intel_crtc = to_intel_crtc(connector->encoder->crtc);
9846
9847 if (prepare_pipes & (1 << intel_crtc->pipe)) {
Daniel Vetter68d34722012-09-06 22:08:35 +02009848 struct drm_property *dpms_property =
9849 dev->mode_config.dpms_property;
9850
Daniel Vetterea9d7582012-07-10 10:42:52 +02009851 connector->dpms = DRM_MODE_DPMS_ON;
Rob Clark662595d2012-10-11 20:36:04 -05009852 drm_object_property_set_value(&connector->base,
Daniel Vetter68d34722012-09-06 22:08:35 +02009853 dpms_property,
9854 DRM_MODE_DPMS_ON);
Daniel Vetterea9d7582012-07-10 10:42:52 +02009855
9856 intel_encoder = to_intel_encoder(connector->encoder);
9857 intel_encoder->connectors_active = true;
9858 }
9859 }
9860
9861}
9862
Ville Syrjälä3bd26262013-09-06 23:29:02 +03009863static bool intel_fuzzy_clock_check(int clock1, int clock2)
Jesse Barnesf1f644d2013-06-27 00:39:25 +03009864{
Ville Syrjälä3bd26262013-09-06 23:29:02 +03009865 int diff;
Jesse Barnesf1f644d2013-06-27 00:39:25 +03009866
9867 if (clock1 == clock2)
9868 return true;
9869
9870 if (!clock1 || !clock2)
9871 return false;
9872
9873 diff = abs(clock1 - clock2);
9874
9875 if (((((diff + clock1 + clock2) * 100)) / (clock1 + clock2)) < 105)
9876 return true;
9877
9878 return false;
9879}
9880
Daniel Vetter25c5b262012-07-08 22:08:04 +02009881#define for_each_intel_crtc_masked(dev, mask, intel_crtc) \
9882 list_for_each_entry((intel_crtc), \
9883 &(dev)->mode_config.crtc_list, \
9884 base.head) \
Daniel Vetter0973f182013-04-19 11:25:33 +02009885 if (mask & (1 <<(intel_crtc)->pipe))
Daniel Vetter25c5b262012-07-08 22:08:04 +02009886
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01009887static bool
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02009888intel_pipe_config_compare(struct drm_device *dev,
9889 struct intel_crtc_config *current_config,
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01009890 struct intel_crtc_config *pipe_config)
9891{
Daniel Vetter66e985c2013-06-05 13:34:20 +02009892#define PIPE_CONF_CHECK_X(name) \
9893 if (current_config->name != pipe_config->name) { \
9894 DRM_ERROR("mismatch in " #name " " \
9895 "(expected 0x%08x, found 0x%08x)\n", \
9896 current_config->name, \
9897 pipe_config->name); \
9898 return false; \
9899 }
9900
Daniel Vetter08a24032013-04-19 11:25:34 +02009901#define PIPE_CONF_CHECK_I(name) \
9902 if (current_config->name != pipe_config->name) { \
9903 DRM_ERROR("mismatch in " #name " " \
9904 "(expected %i, found %i)\n", \
9905 current_config->name, \
9906 pipe_config->name); \
9907 return false; \
Daniel Vetter88adfff2013-03-28 10:42:01 +01009908 }
9909
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02009910#define PIPE_CONF_CHECK_FLAGS(name, mask) \
9911 if ((current_config->name ^ pipe_config->name) & (mask)) { \
Jesse Barnes6f024882013-07-01 10:19:09 -07009912 DRM_ERROR("mismatch in " #name "(" #mask ") " \
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02009913 "(expected %i, found %i)\n", \
9914 current_config->name & (mask), \
9915 pipe_config->name & (mask)); \
9916 return false; \
9917 }
9918
Ville Syrjälä5e550652013-09-06 23:29:07 +03009919#define PIPE_CONF_CHECK_CLOCK_FUZZY(name) \
9920 if (!intel_fuzzy_clock_check(current_config->name, pipe_config->name)) { \
9921 DRM_ERROR("mismatch in " #name " " \
9922 "(expected %i, found %i)\n", \
9923 current_config->name, \
9924 pipe_config->name); \
9925 return false; \
9926 }
9927
Daniel Vetterbb760062013-06-06 14:55:52 +02009928#define PIPE_CONF_QUIRK(quirk) \
9929 ((current_config->quirks | pipe_config->quirks) & (quirk))
9930
Daniel Vettereccb1402013-05-22 00:50:22 +02009931 PIPE_CONF_CHECK_I(cpu_transcoder);
9932
Daniel Vetter08a24032013-04-19 11:25:34 +02009933 PIPE_CONF_CHECK_I(has_pch_encoder);
9934 PIPE_CONF_CHECK_I(fdi_lanes);
Daniel Vetter72419202013-04-04 13:28:53 +02009935 PIPE_CONF_CHECK_I(fdi_m_n.gmch_m);
9936 PIPE_CONF_CHECK_I(fdi_m_n.gmch_n);
9937 PIPE_CONF_CHECK_I(fdi_m_n.link_m);
9938 PIPE_CONF_CHECK_I(fdi_m_n.link_n);
9939 PIPE_CONF_CHECK_I(fdi_m_n.tu);
Daniel Vetter08a24032013-04-19 11:25:34 +02009940
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03009941 PIPE_CONF_CHECK_I(has_dp_encoder);
9942 PIPE_CONF_CHECK_I(dp_m_n.gmch_m);
9943 PIPE_CONF_CHECK_I(dp_m_n.gmch_n);
9944 PIPE_CONF_CHECK_I(dp_m_n.link_m);
9945 PIPE_CONF_CHECK_I(dp_m_n.link_n);
9946 PIPE_CONF_CHECK_I(dp_m_n.tu);
9947
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02009948 PIPE_CONF_CHECK_I(adjusted_mode.crtc_hdisplay);
9949 PIPE_CONF_CHECK_I(adjusted_mode.crtc_htotal);
9950 PIPE_CONF_CHECK_I(adjusted_mode.crtc_hblank_start);
9951 PIPE_CONF_CHECK_I(adjusted_mode.crtc_hblank_end);
9952 PIPE_CONF_CHECK_I(adjusted_mode.crtc_hsync_start);
9953 PIPE_CONF_CHECK_I(adjusted_mode.crtc_hsync_end);
9954
9955 PIPE_CONF_CHECK_I(adjusted_mode.crtc_vdisplay);
9956 PIPE_CONF_CHECK_I(adjusted_mode.crtc_vtotal);
9957 PIPE_CONF_CHECK_I(adjusted_mode.crtc_vblank_start);
9958 PIPE_CONF_CHECK_I(adjusted_mode.crtc_vblank_end);
9959 PIPE_CONF_CHECK_I(adjusted_mode.crtc_vsync_start);
9960 PIPE_CONF_CHECK_I(adjusted_mode.crtc_vsync_end);
9961
Daniel Vetterc93f54c2013-06-27 19:47:19 +02009962 PIPE_CONF_CHECK_I(pixel_multiplier);
Daniel Vetter6897b4b2014-04-24 23:54:47 +02009963 PIPE_CONF_CHECK_I(has_hdmi_sink);
Daniel Vetterb5a9fa02014-04-24 23:54:49 +02009964 if ((INTEL_INFO(dev)->gen < 8 && !IS_HASWELL(dev)) ||
9965 IS_VALLEYVIEW(dev))
9966 PIPE_CONF_CHECK_I(limited_color_range);
Daniel Vetter6c49f242013-06-06 12:45:25 +02009967
Daniel Vetter9ed109a2014-04-24 23:54:52 +02009968 PIPE_CONF_CHECK_I(has_audio);
9969
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02009970 PIPE_CONF_CHECK_FLAGS(adjusted_mode.flags,
9971 DRM_MODE_FLAG_INTERLACE);
9972
Daniel Vetterbb760062013-06-06 14:55:52 +02009973 if (!PIPE_CONF_QUIRK(PIPE_CONFIG_QUIRK_MODE_SYNC_FLAGS)) {
9974 PIPE_CONF_CHECK_FLAGS(adjusted_mode.flags,
9975 DRM_MODE_FLAG_PHSYNC);
9976 PIPE_CONF_CHECK_FLAGS(adjusted_mode.flags,
9977 DRM_MODE_FLAG_NHSYNC);
9978 PIPE_CONF_CHECK_FLAGS(adjusted_mode.flags,
9979 DRM_MODE_FLAG_PVSYNC);
9980 PIPE_CONF_CHECK_FLAGS(adjusted_mode.flags,
9981 DRM_MODE_FLAG_NVSYNC);
9982 }
Jesse Barnes045ac3b2013-05-14 17:08:26 -07009983
Ville Syrjälä37327ab2013-09-04 18:25:28 +03009984 PIPE_CONF_CHECK_I(pipe_src_w);
9985 PIPE_CONF_CHECK_I(pipe_src_h);
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02009986
Daniel Vetter99535992014-04-13 12:00:33 +02009987 /*
9988 * FIXME: BIOS likes to set up a cloned config with lvds+external
9989 * screen. Since we don't yet re-compute the pipe config when moving
9990 * just the lvds port away to another pipe the sw tracking won't match.
9991 *
9992 * Proper atomic modesets with recomputed global state will fix this.
9993 * Until then just don't check gmch state for inherited modes.
9994 */
9995 if (!PIPE_CONF_QUIRK(PIPE_CONFIG_QUIRK_INHERITED_MODE)) {
9996 PIPE_CONF_CHECK_I(gmch_pfit.control);
9997 /* pfit ratios are autocomputed by the hw on gen4+ */
9998 if (INTEL_INFO(dev)->gen < 4)
9999 PIPE_CONF_CHECK_I(gmch_pfit.pgm_ratios);
10000 PIPE_CONF_CHECK_I(gmch_pfit.lvds_border_bits);
10001 }
10002
Chris Wilsonfd4daa92013-08-27 17:04:17 +010010003 PIPE_CONF_CHECK_I(pch_pfit.enabled);
10004 if (current_config->pch_pfit.enabled) {
10005 PIPE_CONF_CHECK_I(pch_pfit.pos);
10006 PIPE_CONF_CHECK_I(pch_pfit.size);
10007 }
Daniel Vetter2fa2fe92013-05-07 23:34:16 +020010008
Jesse Barnese59150d2014-01-07 13:30:45 -080010009 /* BDW+ don't expose a synchronous way to read the state */
10010 if (IS_HASWELL(dev))
10011 PIPE_CONF_CHECK_I(ips_enabled);
Paulo Zanoni42db64e2013-05-31 16:33:22 -030010012
Ville Syrjälä282740f2013-09-04 18:30:03 +030010013 PIPE_CONF_CHECK_I(double_wide);
10014
Daniel Vetterc0d43d62013-06-07 23:11:08 +020010015 PIPE_CONF_CHECK_I(shared_dpll);
Daniel Vetter66e985c2013-06-05 13:34:20 +020010016 PIPE_CONF_CHECK_X(dpll_hw_state.dpll);
Daniel Vetter8bcc2792013-06-05 13:34:28 +020010017 PIPE_CONF_CHECK_X(dpll_hw_state.dpll_md);
Daniel Vetter66e985c2013-06-05 13:34:20 +020010018 PIPE_CONF_CHECK_X(dpll_hw_state.fp0);
10019 PIPE_CONF_CHECK_X(dpll_hw_state.fp1);
Daniel Vetterc0d43d62013-06-07 23:11:08 +020010020
Ville Syrjälä42571ae2013-09-06 23:29:00 +030010021 if (IS_G4X(dev) || INTEL_INFO(dev)->gen >= 5)
10022 PIPE_CONF_CHECK_I(pipe_bpp);
10023
Jesse Barnesa9a7e982014-01-20 14:18:04 -080010024 PIPE_CONF_CHECK_CLOCK_FUZZY(adjusted_mode.crtc_clock);
10025 PIPE_CONF_CHECK_CLOCK_FUZZY(port_clock);
Ville Syrjälä5e550652013-09-06 23:29:07 +030010026
Daniel Vetter66e985c2013-06-05 13:34:20 +020010027#undef PIPE_CONF_CHECK_X
Daniel Vetter08a24032013-04-19 11:25:34 +020010028#undef PIPE_CONF_CHECK_I
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020010029#undef PIPE_CONF_CHECK_FLAGS
Ville Syrjälä5e550652013-09-06 23:29:07 +030010030#undef PIPE_CONF_CHECK_CLOCK_FUZZY
Daniel Vetterbb760062013-06-06 14:55:52 +020010031#undef PIPE_CONF_QUIRK
Daniel Vetter627eb5a2013-04-29 19:33:42 +020010032
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010010033 return true;
10034}
10035
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020010036static void
10037check_connector_state(struct drm_device *dev)
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010038{
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010039 struct intel_connector *connector;
10040
10041 list_for_each_entry(connector, &dev->mode_config.connector_list,
10042 base.head) {
10043 /* This also checks the encoder/connector hw state with the
10044 * ->get_hw_state callbacks. */
10045 intel_connector_check_state(connector);
10046
10047 WARN(&connector->new_encoder->base != connector->base.encoder,
10048 "connector's staged encoder doesn't match current encoder\n");
10049 }
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020010050}
10051
10052static void
10053check_encoder_state(struct drm_device *dev)
10054{
10055 struct intel_encoder *encoder;
10056 struct intel_connector *connector;
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010057
10058 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
10059 base.head) {
10060 bool enabled = false;
10061 bool active = false;
10062 enum pipe pipe, tracked_pipe;
10063
10064 DRM_DEBUG_KMS("[ENCODER:%d:%s]\n",
10065 encoder->base.base.id,
Jani Nikula8e329a02014-06-03 14:56:21 +030010066 encoder->base.name);
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010067
10068 WARN(&encoder->new_crtc->base != encoder->base.crtc,
10069 "encoder's stage crtc doesn't match current crtc\n");
10070 WARN(encoder->connectors_active && !encoder->base.crtc,
10071 "encoder's active_connectors set, but no crtc\n");
10072
10073 list_for_each_entry(connector, &dev->mode_config.connector_list,
10074 base.head) {
10075 if (connector->base.encoder != &encoder->base)
10076 continue;
10077 enabled = true;
10078 if (connector->base.dpms != DRM_MODE_DPMS_OFF)
10079 active = true;
10080 }
10081 WARN(!!encoder->base.crtc != enabled,
10082 "encoder's enabled state mismatch "
10083 "(expected %i, found %i)\n",
10084 !!encoder->base.crtc, enabled);
10085 WARN(active && !encoder->base.crtc,
10086 "active encoder with no crtc\n");
10087
10088 WARN(encoder->connectors_active != active,
10089 "encoder's computed active state doesn't match tracked active state "
10090 "(expected %i, found %i)\n", active, encoder->connectors_active);
10091
10092 active = encoder->get_hw_state(encoder, &pipe);
10093 WARN(active != encoder->connectors_active,
10094 "encoder's hw state doesn't match sw tracking "
10095 "(expected %i, found %i)\n",
10096 encoder->connectors_active, active);
10097
10098 if (!encoder->base.crtc)
10099 continue;
10100
10101 tracked_pipe = to_intel_crtc(encoder->base.crtc)->pipe;
10102 WARN(active && pipe != tracked_pipe,
10103 "active encoder's pipe doesn't match"
10104 "(expected %i, found %i)\n",
10105 tracked_pipe, pipe);
10106
10107 }
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020010108}
10109
10110static void
10111check_crtc_state(struct drm_device *dev)
10112{
Jani Nikulafbee40d2014-03-31 14:27:18 +030010113 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020010114 struct intel_crtc *crtc;
10115 struct intel_encoder *encoder;
10116 struct intel_crtc_config pipe_config;
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010117
Damien Lespiaud3fcc802014-05-13 23:32:22 +010010118 for_each_intel_crtc(dev, crtc) {
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010119 bool enabled = false;
10120 bool active = false;
10121
Jesse Barnes045ac3b2013-05-14 17:08:26 -070010122 memset(&pipe_config, 0, sizeof(pipe_config));
10123
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010124 DRM_DEBUG_KMS("[CRTC:%d]\n",
10125 crtc->base.base.id);
10126
10127 WARN(crtc->active && !crtc->base.enabled,
10128 "active crtc, but not enabled in sw tracking\n");
10129
10130 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
10131 base.head) {
10132 if (encoder->base.crtc != &crtc->base)
10133 continue;
10134 enabled = true;
10135 if (encoder->connectors_active)
10136 active = true;
10137 }
Daniel Vetter6c49f242013-06-06 12:45:25 +020010138
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010139 WARN(active != crtc->active,
10140 "crtc's computed active state doesn't match tracked active state "
10141 "(expected %i, found %i)\n", active, crtc->active);
10142 WARN(enabled != crtc->base.enabled,
10143 "crtc's computed enabled state doesn't match tracked enabled state "
10144 "(expected %i, found %i)\n", enabled, crtc->base.enabled);
10145
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010010146 active = dev_priv->display.get_pipe_config(crtc,
10147 &pipe_config);
Daniel Vetterd62cf622013-05-29 10:41:29 +020010148
10149 /* hw state is inconsistent with the pipe A quirk */
10150 if (crtc->pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE)
10151 active = crtc->active;
10152
Daniel Vetter6c49f242013-06-06 12:45:25 +020010153 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
10154 base.head) {
Ville Syrjälä3eaba512013-08-05 17:57:48 +030010155 enum pipe pipe;
Daniel Vetter6c49f242013-06-06 12:45:25 +020010156 if (encoder->base.crtc != &crtc->base)
10157 continue;
Daniel Vetter1d37b682013-11-18 09:00:59 +010010158 if (encoder->get_hw_state(encoder, &pipe))
Daniel Vetter6c49f242013-06-06 12:45:25 +020010159 encoder->get_config(encoder, &pipe_config);
10160 }
10161
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010010162 WARN(crtc->active != active,
10163 "crtc active state doesn't match with hw state "
10164 "(expected %i, found %i)\n", crtc->active, active);
10165
Daniel Vetterc0b03412013-05-28 12:05:54 +020010166 if (active &&
10167 !intel_pipe_config_compare(dev, &crtc->config, &pipe_config)) {
10168 WARN(1, "pipe state doesn't match!\n");
10169 intel_dump_pipe_config(crtc, &pipe_config,
10170 "[hw state]");
10171 intel_dump_pipe_config(crtc, &crtc->config,
10172 "[sw state]");
10173 }
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010174 }
10175}
10176
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020010177static void
10178check_shared_dpll_state(struct drm_device *dev)
10179{
Jani Nikulafbee40d2014-03-31 14:27:18 +030010180 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020010181 struct intel_crtc *crtc;
10182 struct intel_dpll_hw_state dpll_hw_state;
10183 int i;
Daniel Vetter53589012013-06-05 13:34:16 +020010184
10185 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
10186 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
10187 int enabled_crtcs = 0, active_crtcs = 0;
10188 bool active;
10189
10190 memset(&dpll_hw_state, 0, sizeof(dpll_hw_state));
10191
10192 DRM_DEBUG_KMS("%s\n", pll->name);
10193
10194 active = pll->get_hw_state(dev_priv, pll, &dpll_hw_state);
10195
10196 WARN(pll->active > pll->refcount,
10197 "more active pll users than references: %i vs %i\n",
10198 pll->active, pll->refcount);
10199 WARN(pll->active && !pll->on,
10200 "pll in active use but not on in sw tracking\n");
Daniel Vetter35c95372013-07-17 06:55:04 +020010201 WARN(pll->on && !pll->active,
10202 "pll in on but not on in use in sw tracking\n");
Daniel Vetter53589012013-06-05 13:34:16 +020010203 WARN(pll->on != active,
10204 "pll on state mismatch (expected %i, found %i)\n",
10205 pll->on, active);
10206
Damien Lespiaud3fcc802014-05-13 23:32:22 +010010207 for_each_intel_crtc(dev, crtc) {
Daniel Vetter53589012013-06-05 13:34:16 +020010208 if (crtc->base.enabled && intel_crtc_to_shared_dpll(crtc) == pll)
10209 enabled_crtcs++;
10210 if (crtc->active && intel_crtc_to_shared_dpll(crtc) == pll)
10211 active_crtcs++;
10212 }
10213 WARN(pll->active != active_crtcs,
10214 "pll active crtcs mismatch (expected %i, found %i)\n",
10215 pll->active, active_crtcs);
10216 WARN(pll->refcount != enabled_crtcs,
10217 "pll enabled crtcs mismatch (expected %i, found %i)\n",
10218 pll->refcount, enabled_crtcs);
Daniel Vetter66e985c2013-06-05 13:34:20 +020010219
10220 WARN(pll->on && memcmp(&pll->hw_state, &dpll_hw_state,
10221 sizeof(dpll_hw_state)),
10222 "pll hw state mismatch\n");
Daniel Vetter53589012013-06-05 13:34:16 +020010223 }
Daniel Vettera6778b32012-07-02 09:56:42 +020010224}
10225
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020010226void
10227intel_modeset_check_state(struct drm_device *dev)
10228{
10229 check_connector_state(dev);
10230 check_encoder_state(dev);
10231 check_crtc_state(dev);
10232 check_shared_dpll_state(dev);
10233}
10234
Ville Syrjälä18442d02013-09-13 16:00:08 +030010235void ironlake_check_encoder_dotclock(const struct intel_crtc_config *pipe_config,
10236 int dotclock)
10237{
10238 /*
10239 * FDI already provided one idea for the dotclock.
10240 * Yell if the encoder disagrees.
10241 */
Damien Lespiau241bfc32013-09-25 16:45:37 +010010242 WARN(!intel_fuzzy_clock_check(pipe_config->adjusted_mode.crtc_clock, dotclock),
Ville Syrjälä18442d02013-09-13 16:00:08 +030010243 "FDI dotclock and encoder dotclock mismatch, fdi: %i, encoder: %i\n",
Damien Lespiau241bfc32013-09-25 16:45:37 +010010244 pipe_config->adjusted_mode.crtc_clock, dotclock);
Ville Syrjälä18442d02013-09-13 16:00:08 +030010245}
10246
Ville Syrjälä80715b22014-05-15 20:23:23 +030010247static void update_scanline_offset(struct intel_crtc *crtc)
10248{
10249 struct drm_device *dev = crtc->base.dev;
10250
10251 /*
10252 * The scanline counter increments at the leading edge of hsync.
10253 *
10254 * On most platforms it starts counting from vtotal-1 on the
10255 * first active line. That means the scanline counter value is
10256 * always one less than what we would expect. Ie. just after
10257 * start of vblank, which also occurs at start of hsync (on the
10258 * last active line), the scanline counter will read vblank_start-1.
10259 *
10260 * On gen2 the scanline counter starts counting from 1 instead
10261 * of vtotal-1, so we have to subtract one (or rather add vtotal-1
10262 * to keep the value positive), instead of adding one.
10263 *
10264 * On HSW+ the behaviour of the scanline counter depends on the output
10265 * type. For DP ports it behaves like most other platforms, but on HDMI
10266 * there's an extra 1 line difference. So we need to add two instead of
10267 * one to the value.
10268 */
10269 if (IS_GEN2(dev)) {
10270 const struct drm_display_mode *mode = &crtc->config.adjusted_mode;
10271 int vtotal;
10272
10273 vtotal = mode->crtc_vtotal;
10274 if (mode->flags & DRM_MODE_FLAG_INTERLACE)
10275 vtotal /= 2;
10276
10277 crtc->scanline_offset = vtotal - 1;
10278 } else if (HAS_DDI(dev) &&
10279 intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_HDMI)) {
10280 crtc->scanline_offset = 2;
10281 } else
10282 crtc->scanline_offset = 1;
10283}
10284
Daniel Vetterf30da182013-04-11 20:22:50 +020010285static int __intel_set_mode(struct drm_crtc *crtc,
10286 struct drm_display_mode *mode,
10287 int x, int y, struct drm_framebuffer *fb)
Daniel Vettera6778b32012-07-02 09:56:42 +020010288{
10289 struct drm_device *dev = crtc->dev;
Jani Nikulafbee40d2014-03-31 14:27:18 +030010290 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä4b4b9232013-10-26 17:59:30 +030010291 struct drm_display_mode *saved_mode;
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010010292 struct intel_crtc_config *pipe_config = NULL;
Daniel Vetter25c5b262012-07-08 22:08:04 +020010293 struct intel_crtc *intel_crtc;
10294 unsigned disable_pipes, prepare_pipes, modeset_pipes;
Chris Wilsonc0c36b942012-12-19 16:08:43 +000010295 int ret = 0;
Daniel Vettera6778b32012-07-02 09:56:42 +020010296
Ville Syrjälä4b4b9232013-10-26 17:59:30 +030010297 saved_mode = kmalloc(sizeof(*saved_mode), GFP_KERNEL);
Chris Wilsonc0c36b942012-12-19 16:08:43 +000010298 if (!saved_mode)
10299 return -ENOMEM;
Daniel Vettera6778b32012-07-02 09:56:42 +020010300
Daniel Vettere2e1ed42012-07-08 21:14:38 +020010301 intel_modeset_affected_pipes(crtc, &modeset_pipes,
Daniel Vetter25c5b262012-07-08 22:08:04 +020010302 &prepare_pipes, &disable_pipes);
10303
Tim Gardner3ac18232012-12-07 07:54:26 -070010304 *saved_mode = crtc->mode;
Daniel Vettera6778b32012-07-02 09:56:42 +020010305
Daniel Vetter25c5b262012-07-08 22:08:04 +020010306 /* Hack: Because we don't (yet) support global modeset on multiple
10307 * crtcs, we don't keep track of the new mode for more than one crtc.
10308 * Hence simply check whether any bit is set in modeset_pipes in all the
10309 * pieces of code that are not yet converted to deal with mutliple crtcs
10310 * changing their mode at the same time. */
Daniel Vetter25c5b262012-07-08 22:08:04 +020010311 if (modeset_pipes) {
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010312 pipe_config = intel_modeset_pipe_config(crtc, fb, mode);
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010010313 if (IS_ERR(pipe_config)) {
10314 ret = PTR_ERR(pipe_config);
10315 pipe_config = NULL;
10316
Tim Gardner3ac18232012-12-07 07:54:26 -070010317 goto out;
Daniel Vetter25c5b262012-07-08 22:08:04 +020010318 }
Daniel Vetterc0b03412013-05-28 12:05:54 +020010319 intel_dump_pipe_config(to_intel_crtc(crtc), pipe_config,
10320 "[modeset]");
Ville Syrjälä50741ab2014-01-10 11:28:07 +020010321 to_intel_crtc(crtc)->new_config = pipe_config;
Daniel Vettera6778b32012-07-02 09:56:42 +020010322 }
10323
Jesse Barnes30a970c2013-11-04 13:48:12 -080010324 /*
10325 * See if the config requires any additional preparation, e.g.
10326 * to adjust global state with pipes off. We need to do this
10327 * here so we can get the modeset_pipe updated config for the new
10328 * mode set on this crtc. For other crtcs we need to use the
10329 * adjusted_mode bits in the crtc directly.
10330 */
Ville Syrjäläc164f832013-11-05 22:34:12 +020010331 if (IS_VALLEYVIEW(dev)) {
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +020010332 valleyview_modeset_global_pipes(dev, &prepare_pipes);
Jesse Barnes30a970c2013-11-04 13:48:12 -080010333
Ville Syrjäläc164f832013-11-05 22:34:12 +020010334 /* may have added more to prepare_pipes than we should */
10335 prepare_pipes &= ~disable_pipes;
10336 }
10337
Daniel Vetter460da9162013-03-27 00:44:51 +010010338 for_each_intel_crtc_masked(dev, disable_pipes, intel_crtc)
10339 intel_crtc_disable(&intel_crtc->base);
10340
Daniel Vetterea9d7582012-07-10 10:42:52 +020010341 for_each_intel_crtc_masked(dev, prepare_pipes, intel_crtc) {
10342 if (intel_crtc->base.enabled)
10343 dev_priv->display.crtc_disable(&intel_crtc->base);
10344 }
Daniel Vettera6778b32012-07-02 09:56:42 +020010345
Daniel Vetter6c4c86f2012-09-10 21:58:30 +020010346 /* crtc->mode is already used by the ->mode_set callbacks, hence we need
10347 * to set it here already despite that we pass it down the callchain.
10348 */
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010010349 if (modeset_pipes) {
Daniel Vetter25c5b262012-07-08 22:08:04 +020010350 crtc->mode = *mode;
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010010351 /* mode_set/enable/disable functions rely on a correct pipe
10352 * config. */
10353 to_intel_crtc(crtc)->config = *pipe_config;
Ville Syrjälä50741ab2014-01-10 11:28:07 +020010354 to_intel_crtc(crtc)->new_config = &to_intel_crtc(crtc)->config;
Ville Syrjäläc326c0a2013-10-28 12:53:41 +020010355
10356 /*
10357 * Calculate and store various constants which
10358 * are later needed by vblank and swap-completion
10359 * timestamping. They are derived from true hwmode.
10360 */
10361 drm_calc_timestamping_constants(crtc,
10362 &pipe_config->adjusted_mode);
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010010363 }
Daniel Vetter7758a112012-07-08 19:40:39 +020010364
Daniel Vetterea9d7582012-07-10 10:42:52 +020010365 /* Only after disabling all output pipelines that will be changed can we
10366 * update the the output configuration. */
10367 intel_modeset_update_state(dev, prepare_pipes);
10368
Daniel Vetter47fab732012-10-26 10:58:18 +020010369 if (dev_priv->display.modeset_global_resources)
10370 dev_priv->display.modeset_global_resources(dev);
10371
Daniel Vettera6778b32012-07-02 09:56:42 +020010372 /* Set up the DPLL and any encoders state that needs to adjust or depend
10373 * on the DPLL.
10374 */
Daniel Vetter25c5b262012-07-08 22:08:04 +020010375 for_each_intel_crtc_masked(dev, modeset_pipes, intel_crtc) {
Daniel Vetter4c107942014-04-24 23:55:05 +020010376 struct drm_framebuffer *old_fb;
10377
10378 mutex_lock(&dev->struct_mutex);
10379 ret = intel_pin_and_fence_fb_obj(dev,
10380 to_intel_framebuffer(fb)->obj,
10381 NULL);
10382 if (ret != 0) {
10383 DRM_ERROR("pin & fence failed\n");
10384 mutex_unlock(&dev->struct_mutex);
10385 goto done;
10386 }
10387 old_fb = crtc->primary->fb;
10388 if (old_fb)
10389 intel_unpin_fb_obj(to_intel_framebuffer(old_fb)->obj);
10390 mutex_unlock(&dev->struct_mutex);
10391
10392 crtc->primary->fb = fb;
10393 crtc->x = x;
10394 crtc->y = y;
10395
Daniel Vetter4271b752014-04-24 23:55:00 +020010396 ret = dev_priv->display.crtc_mode_set(&intel_crtc->base,
10397 x, y, fb);
Chris Wilsonc0c36b942012-12-19 16:08:43 +000010398 if (ret)
10399 goto done;
Daniel Vettera6778b32012-07-02 09:56:42 +020010400 }
10401
10402 /* Now enable the clocks, plane, pipe, and connectors that we set up. */
Ville Syrjälä80715b22014-05-15 20:23:23 +030010403 for_each_intel_crtc_masked(dev, prepare_pipes, intel_crtc) {
10404 update_scanline_offset(intel_crtc);
10405
Daniel Vetter25c5b262012-07-08 22:08:04 +020010406 dev_priv->display.crtc_enable(&intel_crtc->base);
Ville Syrjälä80715b22014-05-15 20:23:23 +030010407 }
Daniel Vettera6778b32012-07-02 09:56:42 +020010408
Daniel Vettera6778b32012-07-02 09:56:42 +020010409 /* FIXME: add subpixel order */
10410done:
Ville Syrjälä4b4b9232013-10-26 17:59:30 +030010411 if (ret && crtc->enabled)
Tim Gardner3ac18232012-12-07 07:54:26 -070010412 crtc->mode = *saved_mode;
Daniel Vettera6778b32012-07-02 09:56:42 +020010413
Tim Gardner3ac18232012-12-07 07:54:26 -070010414out:
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010010415 kfree(pipe_config);
Tim Gardner3ac18232012-12-07 07:54:26 -070010416 kfree(saved_mode);
Daniel Vettera6778b32012-07-02 09:56:42 +020010417 return ret;
10418}
10419
Damien Lespiaue7457a92013-08-08 22:28:59 +010010420static int intel_set_mode(struct drm_crtc *crtc,
10421 struct drm_display_mode *mode,
10422 int x, int y, struct drm_framebuffer *fb)
Daniel Vetterf30da182013-04-11 20:22:50 +020010423{
10424 int ret;
10425
10426 ret = __intel_set_mode(crtc, mode, x, y, fb);
10427
10428 if (ret == 0)
10429 intel_modeset_check_state(crtc->dev);
10430
10431 return ret;
10432}
10433
Chris Wilsonc0c36b942012-12-19 16:08:43 +000010434void intel_crtc_restore_mode(struct drm_crtc *crtc)
10435{
Matt Roperf4510a22014-04-01 15:22:40 -070010436 intel_set_mode(crtc, &crtc->mode, crtc->x, crtc->y, crtc->primary->fb);
Chris Wilsonc0c36b942012-12-19 16:08:43 +000010437}
10438
Daniel Vetter25c5b262012-07-08 22:08:04 +020010439#undef for_each_intel_crtc_masked
10440
Daniel Vetterd9e55602012-07-04 22:16:09 +020010441static void intel_set_config_free(struct intel_set_config *config)
10442{
10443 if (!config)
10444 return;
10445
Daniel Vetter1aa4b622012-07-05 16:20:48 +020010446 kfree(config->save_connector_encoders);
10447 kfree(config->save_encoder_crtcs);
Ville Syrjälä76688512014-01-10 11:28:06 +020010448 kfree(config->save_crtc_enabled);
Daniel Vetterd9e55602012-07-04 22:16:09 +020010449 kfree(config);
10450}
10451
Daniel Vetter85f9eb72012-07-04 22:24:08 +020010452static int intel_set_config_save_state(struct drm_device *dev,
10453 struct intel_set_config *config)
10454{
Ville Syrjälä76688512014-01-10 11:28:06 +020010455 struct drm_crtc *crtc;
Daniel Vetter85f9eb72012-07-04 22:24:08 +020010456 struct drm_encoder *encoder;
10457 struct drm_connector *connector;
10458 int count;
10459
Ville Syrjälä76688512014-01-10 11:28:06 +020010460 config->save_crtc_enabled =
10461 kcalloc(dev->mode_config.num_crtc,
10462 sizeof(bool), GFP_KERNEL);
10463 if (!config->save_crtc_enabled)
10464 return -ENOMEM;
10465
Daniel Vetter1aa4b622012-07-05 16:20:48 +020010466 config->save_encoder_crtcs =
10467 kcalloc(dev->mode_config.num_encoder,
10468 sizeof(struct drm_crtc *), GFP_KERNEL);
10469 if (!config->save_encoder_crtcs)
Daniel Vetter85f9eb72012-07-04 22:24:08 +020010470 return -ENOMEM;
10471
Daniel Vetter1aa4b622012-07-05 16:20:48 +020010472 config->save_connector_encoders =
10473 kcalloc(dev->mode_config.num_connector,
10474 sizeof(struct drm_encoder *), GFP_KERNEL);
10475 if (!config->save_connector_encoders)
Daniel Vetter85f9eb72012-07-04 22:24:08 +020010476 return -ENOMEM;
10477
10478 /* Copy data. Note that driver private data is not affected.
10479 * Should anything bad happen only the expected state is
10480 * restored, not the drivers personal bookkeeping.
10481 */
10482 count = 0;
Damien Lespiau70e1e0e2014-05-13 23:32:24 +010010483 for_each_crtc(dev, crtc) {
Ville Syrjälä76688512014-01-10 11:28:06 +020010484 config->save_crtc_enabled[count++] = crtc->enabled;
10485 }
10486
10487 count = 0;
Daniel Vetter85f9eb72012-07-04 22:24:08 +020010488 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
Daniel Vetter1aa4b622012-07-05 16:20:48 +020010489 config->save_encoder_crtcs[count++] = encoder->crtc;
Daniel Vetter85f9eb72012-07-04 22:24:08 +020010490 }
10491
10492 count = 0;
10493 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
Daniel Vetter1aa4b622012-07-05 16:20:48 +020010494 config->save_connector_encoders[count++] = connector->encoder;
Daniel Vetter85f9eb72012-07-04 22:24:08 +020010495 }
10496
10497 return 0;
10498}
10499
10500static void intel_set_config_restore_state(struct drm_device *dev,
10501 struct intel_set_config *config)
10502{
Ville Syrjälä76688512014-01-10 11:28:06 +020010503 struct intel_crtc *crtc;
Daniel Vetter9a935852012-07-05 22:34:27 +020010504 struct intel_encoder *encoder;
10505 struct intel_connector *connector;
Daniel Vetter85f9eb72012-07-04 22:24:08 +020010506 int count;
10507
10508 count = 0;
Damien Lespiaud3fcc802014-05-13 23:32:22 +010010509 for_each_intel_crtc(dev, crtc) {
Ville Syrjälä76688512014-01-10 11:28:06 +020010510 crtc->new_enabled = config->save_crtc_enabled[count++];
Ville Syrjälä7bd0a8e2014-01-14 14:31:38 +020010511
10512 if (crtc->new_enabled)
10513 crtc->new_config = &crtc->config;
10514 else
10515 crtc->new_config = NULL;
Ville Syrjälä76688512014-01-10 11:28:06 +020010516 }
10517
10518 count = 0;
Daniel Vetter9a935852012-07-05 22:34:27 +020010519 list_for_each_entry(encoder, &dev->mode_config.encoder_list, base.head) {
10520 encoder->new_crtc =
10521 to_intel_crtc(config->save_encoder_crtcs[count++]);
Daniel Vetter85f9eb72012-07-04 22:24:08 +020010522 }
10523
10524 count = 0;
Daniel Vetter9a935852012-07-05 22:34:27 +020010525 list_for_each_entry(connector, &dev->mode_config.connector_list, base.head) {
10526 connector->new_encoder =
10527 to_intel_encoder(config->save_connector_encoders[count++]);
Daniel Vetter85f9eb72012-07-04 22:24:08 +020010528 }
10529}
10530
Imre Deake3de42b2013-05-03 19:44:07 +020010531static bool
Chris Wilson2e57f472013-07-17 12:14:40 +010010532is_crtc_connector_off(struct drm_mode_set *set)
Imre Deake3de42b2013-05-03 19:44:07 +020010533{
10534 int i;
10535
Chris Wilson2e57f472013-07-17 12:14:40 +010010536 if (set->num_connectors == 0)
10537 return false;
10538
10539 if (WARN_ON(set->connectors == NULL))
10540 return false;
10541
10542 for (i = 0; i < set->num_connectors; i++)
10543 if (set->connectors[i]->encoder &&
10544 set->connectors[i]->encoder->crtc == set->crtc &&
10545 set->connectors[i]->dpms != DRM_MODE_DPMS_ON)
Imre Deake3de42b2013-05-03 19:44:07 +020010546 return true;
10547
10548 return false;
10549}
10550
Daniel Vetter5e2b5842012-07-04 22:41:29 +020010551static void
10552intel_set_config_compute_mode_changes(struct drm_mode_set *set,
10553 struct intel_set_config *config)
10554{
10555
10556 /* We should be able to check here if the fb has the same properties
10557 * and then just flip_or_move it */
Chris Wilson2e57f472013-07-17 12:14:40 +010010558 if (is_crtc_connector_off(set)) {
10559 config->mode_changed = true;
Matt Roperf4510a22014-04-01 15:22:40 -070010560 } else if (set->crtc->primary->fb != set->fb) {
Daniel Vetter5e2b5842012-07-04 22:41:29 +020010561 /* If we have no fb then treat it as a full mode set */
Matt Roperf4510a22014-04-01 15:22:40 -070010562 if (set->crtc->primary->fb == NULL) {
Jesse Barnes319d9822013-06-26 01:38:19 +030010563 struct intel_crtc *intel_crtc =
10564 to_intel_crtc(set->crtc);
10565
Jani Nikulad330a952014-01-21 11:24:25 +020010566 if (intel_crtc->active && i915.fastboot) {
Jesse Barnes319d9822013-06-26 01:38:19 +030010567 DRM_DEBUG_KMS("crtc has no fb, will flip\n");
10568 config->fb_changed = true;
10569 } else {
10570 DRM_DEBUG_KMS("inactive crtc, full mode set\n");
10571 config->mode_changed = true;
10572 }
Daniel Vetter5e2b5842012-07-04 22:41:29 +020010573 } else if (set->fb == NULL) {
10574 config->mode_changed = true;
Daniel Vetter72f49012013-03-28 16:01:35 +010010575 } else if (set->fb->pixel_format !=
Matt Roperf4510a22014-04-01 15:22:40 -070010576 set->crtc->primary->fb->pixel_format) {
Daniel Vetter5e2b5842012-07-04 22:41:29 +020010577 config->mode_changed = true;
Imre Deake3de42b2013-05-03 19:44:07 +020010578 } else {
Daniel Vetter5e2b5842012-07-04 22:41:29 +020010579 config->fb_changed = true;
Imre Deake3de42b2013-05-03 19:44:07 +020010580 }
Daniel Vetter5e2b5842012-07-04 22:41:29 +020010581 }
10582
Daniel Vetter835c5872012-07-10 18:11:08 +020010583 if (set->fb && (set->x != set->crtc->x || set->y != set->crtc->y))
Daniel Vetter5e2b5842012-07-04 22:41:29 +020010584 config->fb_changed = true;
10585
10586 if (set->mode && !drm_mode_equal(set->mode, &set->crtc->mode)) {
10587 DRM_DEBUG_KMS("modes are different, full mode set\n");
10588 drm_mode_debug_printmodeline(&set->crtc->mode);
10589 drm_mode_debug_printmodeline(set->mode);
10590 config->mode_changed = true;
10591 }
Chris Wilsona1d95702013-08-13 18:48:47 +010010592
10593 DRM_DEBUG_KMS("computed changes for [CRTC:%d], mode_changed=%d, fb_changed=%d\n",
10594 set->crtc->base.id, config->mode_changed, config->fb_changed);
Daniel Vetter5e2b5842012-07-04 22:41:29 +020010595}
10596
Daniel Vetter2e431052012-07-04 22:42:15 +020010597static int
Daniel Vetter9a935852012-07-05 22:34:27 +020010598intel_modeset_stage_output_state(struct drm_device *dev,
10599 struct drm_mode_set *set,
10600 struct intel_set_config *config)
Daniel Vetter50f56112012-07-02 09:35:43 +020010601{
Daniel Vetter9a935852012-07-05 22:34:27 +020010602 struct intel_connector *connector;
10603 struct intel_encoder *encoder;
Ville Syrjälä76688512014-01-10 11:28:06 +020010604 struct intel_crtc *crtc;
Paulo Zanonif3f08572013-08-12 14:56:53 -030010605 int ro;
Daniel Vetter50f56112012-07-02 09:35:43 +020010606
Damien Lespiau9abdda72013-02-13 13:29:23 +000010607 /* The upper layers ensure that we either disable a crtc or have a list
Daniel Vetter9a935852012-07-05 22:34:27 +020010608 * of connectors. For paranoia, double-check this. */
10609 WARN_ON(!set->fb && (set->num_connectors != 0));
10610 WARN_ON(set->fb && (set->num_connectors == 0));
10611
Daniel Vetter9a935852012-07-05 22:34:27 +020010612 list_for_each_entry(connector, &dev->mode_config.connector_list,
10613 base.head) {
10614 /* Otherwise traverse passed in connector list and get encoders
10615 * for them. */
Daniel Vetter50f56112012-07-02 09:35:43 +020010616 for (ro = 0; ro < set->num_connectors; ro++) {
Daniel Vetter9a935852012-07-05 22:34:27 +020010617 if (set->connectors[ro] == &connector->base) {
10618 connector->new_encoder = connector->encoder;
Daniel Vetter50f56112012-07-02 09:35:43 +020010619 break;
10620 }
10621 }
10622
Daniel Vetter9a935852012-07-05 22:34:27 +020010623 /* If we disable the crtc, disable all its connectors. Also, if
10624 * the connector is on the changing crtc but not on the new
10625 * connector list, disable it. */
10626 if ((!set->fb || ro == set->num_connectors) &&
10627 connector->base.encoder &&
10628 connector->base.encoder->crtc == set->crtc) {
10629 connector->new_encoder = NULL;
10630
10631 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] to [NOCRTC]\n",
10632 connector->base.base.id,
Jani Nikulac23cc412014-06-03 14:56:17 +030010633 connector->base.name);
Daniel Vetter9a935852012-07-05 22:34:27 +020010634 }
10635
10636
10637 if (&connector->new_encoder->base != connector->base.encoder) {
Daniel Vetter50f56112012-07-02 09:35:43 +020010638 DRM_DEBUG_KMS("encoder changed, full mode switch\n");
Daniel Vetter5e2b5842012-07-04 22:41:29 +020010639 config->mode_changed = true;
Daniel Vetter50f56112012-07-02 09:35:43 +020010640 }
Daniel Vetter9a935852012-07-05 22:34:27 +020010641 }
10642 /* connector->new_encoder is now updated for all connectors. */
10643
10644 /* Update crtc of enabled connectors. */
Daniel Vetter9a935852012-07-05 22:34:27 +020010645 list_for_each_entry(connector, &dev->mode_config.connector_list,
10646 base.head) {
Ville Syrjälä76688512014-01-10 11:28:06 +020010647 struct drm_crtc *new_crtc;
10648
Daniel Vetter9a935852012-07-05 22:34:27 +020010649 if (!connector->new_encoder)
Daniel Vetter50f56112012-07-02 09:35:43 +020010650 continue;
10651
Daniel Vetter9a935852012-07-05 22:34:27 +020010652 new_crtc = connector->new_encoder->base.crtc;
Daniel Vetter50f56112012-07-02 09:35:43 +020010653
10654 for (ro = 0; ro < set->num_connectors; ro++) {
Daniel Vetter9a935852012-07-05 22:34:27 +020010655 if (set->connectors[ro] == &connector->base)
Daniel Vetter50f56112012-07-02 09:35:43 +020010656 new_crtc = set->crtc;
10657 }
10658
10659 /* Make sure the new CRTC will work with the encoder */
Thierry Reding14509912014-01-13 12:00:22 +010010660 if (!drm_encoder_crtc_ok(&connector->new_encoder->base,
10661 new_crtc)) {
Daniel Vetter5e2b5842012-07-04 22:41:29 +020010662 return -EINVAL;
Daniel Vetter50f56112012-07-02 09:35:43 +020010663 }
Daniel Vetter9a935852012-07-05 22:34:27 +020010664 connector->encoder->new_crtc = to_intel_crtc(new_crtc);
10665
10666 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] to [CRTC:%d]\n",
10667 connector->base.base.id,
Jani Nikulac23cc412014-06-03 14:56:17 +030010668 connector->base.name,
Daniel Vetter9a935852012-07-05 22:34:27 +020010669 new_crtc->base.id);
10670 }
10671
10672 /* Check for any encoders that needs to be disabled. */
10673 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
10674 base.head) {
Paulo Zanoni5a65f352014-01-07 14:55:53 -020010675 int num_connectors = 0;
Daniel Vetter9a935852012-07-05 22:34:27 +020010676 list_for_each_entry(connector,
10677 &dev->mode_config.connector_list,
10678 base.head) {
10679 if (connector->new_encoder == encoder) {
10680 WARN_ON(!connector->new_encoder->new_crtc);
Paulo Zanoni5a65f352014-01-07 14:55:53 -020010681 num_connectors++;
Daniel Vetter9a935852012-07-05 22:34:27 +020010682 }
10683 }
Paulo Zanoni5a65f352014-01-07 14:55:53 -020010684
10685 if (num_connectors == 0)
10686 encoder->new_crtc = NULL;
10687 else if (num_connectors > 1)
10688 return -EINVAL;
10689
Daniel Vetter9a935852012-07-05 22:34:27 +020010690 /* Only now check for crtc changes so we don't miss encoders
10691 * that will be disabled. */
10692 if (&encoder->new_crtc->base != encoder->base.crtc) {
Daniel Vetter50f56112012-07-02 09:35:43 +020010693 DRM_DEBUG_KMS("crtc changed, full mode switch\n");
Daniel Vetter5e2b5842012-07-04 22:41:29 +020010694 config->mode_changed = true;
Daniel Vetter50f56112012-07-02 09:35:43 +020010695 }
10696 }
Daniel Vetter9a935852012-07-05 22:34:27 +020010697 /* Now we've also updated encoder->new_crtc for all encoders. */
Daniel Vetter50f56112012-07-02 09:35:43 +020010698
Damien Lespiaud3fcc802014-05-13 23:32:22 +010010699 for_each_intel_crtc(dev, crtc) {
Ville Syrjälä76688512014-01-10 11:28:06 +020010700 crtc->new_enabled = false;
10701
10702 list_for_each_entry(encoder,
10703 &dev->mode_config.encoder_list,
10704 base.head) {
10705 if (encoder->new_crtc == crtc) {
10706 crtc->new_enabled = true;
10707 break;
10708 }
10709 }
10710
10711 if (crtc->new_enabled != crtc->base.enabled) {
10712 DRM_DEBUG_KMS("crtc %sabled, full mode switch\n",
10713 crtc->new_enabled ? "en" : "dis");
10714 config->mode_changed = true;
10715 }
Ville Syrjälä7bd0a8e2014-01-14 14:31:38 +020010716
10717 if (crtc->new_enabled)
10718 crtc->new_config = &crtc->config;
10719 else
10720 crtc->new_config = NULL;
Ville Syrjälä76688512014-01-10 11:28:06 +020010721 }
10722
Daniel Vetter2e431052012-07-04 22:42:15 +020010723 return 0;
10724}
10725
Ville Syrjälä7d00a1f2014-01-10 11:28:09 +020010726static void disable_crtc_nofb(struct intel_crtc *crtc)
10727{
10728 struct drm_device *dev = crtc->base.dev;
10729 struct intel_encoder *encoder;
10730 struct intel_connector *connector;
10731
10732 DRM_DEBUG_KMS("Trying to restore without FB -> disabling pipe %c\n",
10733 pipe_name(crtc->pipe));
10734
10735 list_for_each_entry(connector, &dev->mode_config.connector_list, base.head) {
10736 if (connector->new_encoder &&
10737 connector->new_encoder->new_crtc == crtc)
10738 connector->new_encoder = NULL;
10739 }
10740
10741 list_for_each_entry(encoder, &dev->mode_config.encoder_list, base.head) {
10742 if (encoder->new_crtc == crtc)
10743 encoder->new_crtc = NULL;
10744 }
10745
10746 crtc->new_enabled = false;
Ville Syrjälä7bd0a8e2014-01-14 14:31:38 +020010747 crtc->new_config = NULL;
Ville Syrjälä7d00a1f2014-01-10 11:28:09 +020010748}
10749
Daniel Vetter2e431052012-07-04 22:42:15 +020010750static int intel_crtc_set_config(struct drm_mode_set *set)
10751{
10752 struct drm_device *dev;
Daniel Vetter2e431052012-07-04 22:42:15 +020010753 struct drm_mode_set save_set;
10754 struct intel_set_config *config;
10755 int ret;
Daniel Vetter2e431052012-07-04 22:42:15 +020010756
Daniel Vetter8d3e3752012-07-05 16:09:09 +020010757 BUG_ON(!set);
10758 BUG_ON(!set->crtc);
10759 BUG_ON(!set->crtc->helper_private);
Daniel Vetter2e431052012-07-04 22:42:15 +020010760
Daniel Vetter7e53f3a2013-01-21 10:52:17 +010010761 /* Enforce sane interface api - has been abused by the fb helper. */
10762 BUG_ON(!set->mode && set->fb);
10763 BUG_ON(set->fb && set->num_connectors == 0);
Daniel Vetter431e50f2012-07-10 17:53:42 +020010764
Daniel Vetter2e431052012-07-04 22:42:15 +020010765 if (set->fb) {
10766 DRM_DEBUG_KMS("[CRTC:%d] [FB:%d] #connectors=%d (x y) (%i %i)\n",
10767 set->crtc->base.id, set->fb->base.id,
10768 (int)set->num_connectors, set->x, set->y);
10769 } else {
10770 DRM_DEBUG_KMS("[CRTC:%d] [NOFB]\n", set->crtc->base.id);
Daniel Vetter2e431052012-07-04 22:42:15 +020010771 }
10772
10773 dev = set->crtc->dev;
10774
10775 ret = -ENOMEM;
10776 config = kzalloc(sizeof(*config), GFP_KERNEL);
10777 if (!config)
10778 goto out_config;
10779
10780 ret = intel_set_config_save_state(dev, config);
10781 if (ret)
10782 goto out_config;
10783
10784 save_set.crtc = set->crtc;
10785 save_set.mode = &set->crtc->mode;
10786 save_set.x = set->crtc->x;
10787 save_set.y = set->crtc->y;
Matt Roperf4510a22014-04-01 15:22:40 -070010788 save_set.fb = set->crtc->primary->fb;
Daniel Vetter2e431052012-07-04 22:42:15 +020010789
10790 /* Compute whether we need a full modeset, only an fb base update or no
10791 * change at all. In the future we might also check whether only the
10792 * mode changed, e.g. for LVDS where we only change the panel fitter in
10793 * such cases. */
10794 intel_set_config_compute_mode_changes(set, config);
10795
Daniel Vetter9a935852012-07-05 22:34:27 +020010796 ret = intel_modeset_stage_output_state(dev, set, config);
Daniel Vetter2e431052012-07-04 22:42:15 +020010797 if (ret)
10798 goto fail;
10799
Daniel Vetter5e2b5842012-07-04 22:41:29 +020010800 if (config->mode_changed) {
Chris Wilsonc0c36b942012-12-19 16:08:43 +000010801 ret = intel_set_mode(set->crtc, set->mode,
10802 set->x, set->y, set->fb);
Daniel Vetter5e2b5842012-07-04 22:41:29 +020010803 } else if (config->fb_changed) {
Ville Syrjälä4878cae2013-02-18 19:08:48 +020010804 intel_crtc_wait_for_pending_flips(set->crtc);
10805
Daniel Vetter4f660f42012-07-02 09:47:37 +020010806 ret = intel_pipe_set_base(set->crtc,
Daniel Vetter94352cf2012-07-05 22:51:56 +020010807 set->x, set->y, set->fb);
Jesse Barnes7ca51a32014-01-07 13:50:49 -080010808 /*
10809 * In the fastboot case this may be our only check of the
10810 * state after boot. It would be better to only do it on
10811 * the first update, but we don't have a nice way of doing that
10812 * (and really, set_config isn't used much for high freq page
10813 * flipping, so increasing its cost here shouldn't be a big
10814 * deal).
10815 */
Jani Nikulad330a952014-01-21 11:24:25 +020010816 if (i915.fastboot && ret == 0)
Jesse Barnes7ca51a32014-01-07 13:50:49 -080010817 intel_modeset_check_state(set->crtc->dev);
Daniel Vetter50f56112012-07-02 09:35:43 +020010818 }
10819
Chris Wilson2d05eae2013-05-03 17:36:25 +010010820 if (ret) {
Daniel Vetterbf67dfe2013-06-25 11:06:52 +020010821 DRM_DEBUG_KMS("failed to set mode on [CRTC:%d], err = %d\n",
10822 set->crtc->base.id, ret);
Daniel Vetter50f56112012-07-02 09:35:43 +020010823fail:
Chris Wilson2d05eae2013-05-03 17:36:25 +010010824 intel_set_config_restore_state(dev, config);
Daniel Vetter50f56112012-07-02 09:35:43 +020010825
Ville Syrjälä7d00a1f2014-01-10 11:28:09 +020010826 /*
10827 * HACK: if the pipe was on, but we didn't have a framebuffer,
10828 * force the pipe off to avoid oopsing in the modeset code
10829 * due to fb==NULL. This should only happen during boot since
10830 * we don't yet reconstruct the FB from the hardware state.
10831 */
10832 if (to_intel_crtc(save_set.crtc)->new_enabled && !save_set.fb)
10833 disable_crtc_nofb(to_intel_crtc(save_set.crtc));
10834
Chris Wilson2d05eae2013-05-03 17:36:25 +010010835 /* Try to restore the config */
10836 if (config->mode_changed &&
10837 intel_set_mode(save_set.crtc, save_set.mode,
10838 save_set.x, save_set.y, save_set.fb))
10839 DRM_ERROR("failed to restore config after modeset failure\n");
10840 }
Daniel Vetter50f56112012-07-02 09:35:43 +020010841
Daniel Vetterd9e55602012-07-04 22:16:09 +020010842out_config:
10843 intel_set_config_free(config);
Daniel Vetter50f56112012-07-02 09:35:43 +020010844 return ret;
10845}
10846
Chris Wilsonf6e5b162011-04-12 18:06:51 +010010847static const struct drm_crtc_funcs intel_crtc_funcs = {
Chris Wilsonf6e5b162011-04-12 18:06:51 +010010848 .cursor_set = intel_crtc_cursor_set,
10849 .cursor_move = intel_crtc_cursor_move,
10850 .gamma_set = intel_crtc_gamma_set,
Daniel Vetter50f56112012-07-02 09:35:43 +020010851 .set_config = intel_crtc_set_config,
Chris Wilsonf6e5b162011-04-12 18:06:51 +010010852 .destroy = intel_crtc_destroy,
10853 .page_flip = intel_crtc_page_flip,
10854};
10855
Paulo Zanoni79f689a2012-10-05 12:05:52 -030010856static void intel_cpu_pll_init(struct drm_device *dev)
10857{
Paulo Zanoniaffa9352012-11-23 15:30:39 -020010858 if (HAS_DDI(dev))
Paulo Zanoni79f689a2012-10-05 12:05:52 -030010859 intel_ddi_pll_init(dev);
10860}
10861
Daniel Vetter53589012013-06-05 13:34:16 +020010862static bool ibx_pch_dpll_get_hw_state(struct drm_i915_private *dev_priv,
10863 struct intel_shared_dpll *pll,
10864 struct intel_dpll_hw_state *hw_state)
Jesse Barnesee7b9f92012-04-20 17:11:53 +010010865{
Daniel Vetter53589012013-06-05 13:34:16 +020010866 uint32_t val;
10867
10868 val = I915_READ(PCH_DPLL(pll->id));
Daniel Vetter66e985c2013-06-05 13:34:20 +020010869 hw_state->dpll = val;
10870 hw_state->fp0 = I915_READ(PCH_FP0(pll->id));
10871 hw_state->fp1 = I915_READ(PCH_FP1(pll->id));
Daniel Vetter53589012013-06-05 13:34:16 +020010872
10873 return val & DPLL_VCO_ENABLE;
10874}
10875
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020010876static void ibx_pch_dpll_mode_set(struct drm_i915_private *dev_priv,
10877 struct intel_shared_dpll *pll)
10878{
10879 I915_WRITE(PCH_FP0(pll->id), pll->hw_state.fp0);
10880 I915_WRITE(PCH_FP1(pll->id), pll->hw_state.fp1);
10881}
10882
Daniel Vettere7b903d2013-06-05 13:34:14 +020010883static void ibx_pch_dpll_enable(struct drm_i915_private *dev_priv,
10884 struct intel_shared_dpll *pll)
10885{
Daniel Vettere7b903d2013-06-05 13:34:14 +020010886 /* PCH refclock must be enabled first */
Paulo Zanoni89eff4b2014-01-08 11:12:28 -020010887 ibx_assert_pch_refclk_enabled(dev_priv);
Daniel Vettere7b903d2013-06-05 13:34:14 +020010888
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020010889 I915_WRITE(PCH_DPLL(pll->id), pll->hw_state.dpll);
10890
10891 /* Wait for the clocks to stabilize. */
10892 POSTING_READ(PCH_DPLL(pll->id));
10893 udelay(150);
10894
10895 /* The pixel multiplier can only be updated once the
10896 * DPLL is enabled and the clocks are stable.
10897 *
10898 * So write it again.
10899 */
10900 I915_WRITE(PCH_DPLL(pll->id), pll->hw_state.dpll);
10901 POSTING_READ(PCH_DPLL(pll->id));
Daniel Vettere7b903d2013-06-05 13:34:14 +020010902 udelay(200);
10903}
10904
10905static void ibx_pch_dpll_disable(struct drm_i915_private *dev_priv,
10906 struct intel_shared_dpll *pll)
10907{
10908 struct drm_device *dev = dev_priv->dev;
10909 struct intel_crtc *crtc;
Daniel Vettere7b903d2013-06-05 13:34:14 +020010910
10911 /* Make sure no transcoder isn't still depending on us. */
Damien Lespiaud3fcc802014-05-13 23:32:22 +010010912 for_each_intel_crtc(dev, crtc) {
Daniel Vettere7b903d2013-06-05 13:34:14 +020010913 if (intel_crtc_to_shared_dpll(crtc) == pll)
10914 assert_pch_transcoder_disabled(dev_priv, crtc->pipe);
10915 }
10916
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020010917 I915_WRITE(PCH_DPLL(pll->id), 0);
10918 POSTING_READ(PCH_DPLL(pll->id));
Daniel Vettere7b903d2013-06-05 13:34:14 +020010919 udelay(200);
10920}
10921
Daniel Vetter46edb022013-06-05 13:34:12 +020010922static char *ibx_pch_dpll_names[] = {
10923 "PCH DPLL A",
10924 "PCH DPLL B",
10925};
10926
Daniel Vetter7c74ade2013-06-05 13:34:11 +020010927static void ibx_pch_dpll_init(struct drm_device *dev)
Jesse Barnesee7b9f92012-04-20 17:11:53 +010010928{
Daniel Vettere7b903d2013-06-05 13:34:14 +020010929 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesee7b9f92012-04-20 17:11:53 +010010930 int i;
10931
Daniel Vetter7c74ade2013-06-05 13:34:11 +020010932 dev_priv->num_shared_dpll = 2;
Jesse Barnesee7b9f92012-04-20 17:11:53 +010010933
Daniel Vettere72f9fb2013-06-05 13:34:06 +020010934 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
Daniel Vetter46edb022013-06-05 13:34:12 +020010935 dev_priv->shared_dplls[i].id = i;
10936 dev_priv->shared_dplls[i].name = ibx_pch_dpll_names[i];
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020010937 dev_priv->shared_dplls[i].mode_set = ibx_pch_dpll_mode_set;
Daniel Vettere7b903d2013-06-05 13:34:14 +020010938 dev_priv->shared_dplls[i].enable = ibx_pch_dpll_enable;
10939 dev_priv->shared_dplls[i].disable = ibx_pch_dpll_disable;
Daniel Vetter53589012013-06-05 13:34:16 +020010940 dev_priv->shared_dplls[i].get_hw_state =
10941 ibx_pch_dpll_get_hw_state;
Jesse Barnesee7b9f92012-04-20 17:11:53 +010010942 }
10943}
10944
Daniel Vetter7c74ade2013-06-05 13:34:11 +020010945static void intel_shared_dpll_init(struct drm_device *dev)
10946{
Daniel Vettere7b903d2013-06-05 13:34:14 +020010947 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter7c74ade2013-06-05 13:34:11 +020010948
10949 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev))
10950 ibx_pch_dpll_init(dev);
10951 else
10952 dev_priv->num_shared_dpll = 0;
10953
10954 BUG_ON(dev_priv->num_shared_dpll > I915_NUM_PLLS);
Daniel Vetter7c74ade2013-06-05 13:34:11 +020010955}
10956
Hannes Ederb358d0a2008-12-18 21:18:47 +010010957static void intel_crtc_init(struct drm_device *dev, int pipe)
Jesse Barnes79e53942008-11-07 14:24:08 -080010958{
Jani Nikulafbee40d2014-03-31 14:27:18 +030010959 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -080010960 struct intel_crtc *intel_crtc;
10961 int i;
10962
Daniel Vetter955382f2013-09-19 14:05:45 +020010963 intel_crtc = kzalloc(sizeof(*intel_crtc), GFP_KERNEL);
Jesse Barnes79e53942008-11-07 14:24:08 -080010964 if (intel_crtc == NULL)
10965 return;
10966
10967 drm_crtc_init(dev, &intel_crtc->base, &intel_crtc_funcs);
10968
10969 drm_mode_crtc_set_gamma_size(&intel_crtc->base, 256);
Jesse Barnes79e53942008-11-07 14:24:08 -080010970 for (i = 0; i < 256; i++) {
10971 intel_crtc->lut_r[i] = i;
10972 intel_crtc->lut_g[i] = i;
10973 intel_crtc->lut_b[i] = i;
10974 }
10975
Ville Syrjälä1f1c2e22013-11-28 17:30:01 +020010976 /*
10977 * On gen2/3 only plane A can do fbc, but the panel fitter and lvds port
10978 * is hooked to plane B. Hence we want plane A feeding pipe B.
10979 */
Jesse Barnes80824002009-09-10 15:28:06 -070010980 intel_crtc->pipe = pipe;
10981 intel_crtc->plane = pipe;
Daniel Vetter3a77c4c2014-01-10 08:50:12 +010010982 if (HAS_FBC(dev) && INTEL_INFO(dev)->gen < 4) {
Zhao Yakui28c97732009-10-09 11:39:41 +080010983 DRM_DEBUG_KMS("swapping pipes & planes for FBC\n");
Chris Wilsone2e767a2010-09-13 16:53:12 +010010984 intel_crtc->plane = !pipe;
Jesse Barnes80824002009-09-10 15:28:06 -070010985 }
10986
Chris Wilson4b0e3332014-05-30 16:35:26 +030010987 intel_crtc->cursor_base = ~0;
10988 intel_crtc->cursor_cntl = ~0;
10989
Ville Syrjälä8d7849d2014-04-29 13:35:46 +030010990 init_waitqueue_head(&intel_crtc->vbl_wait);
10991
Jesse Barnes22fd0fa2009-12-02 13:42:53 -080010992 BUG_ON(pipe >= ARRAY_SIZE(dev_priv->plane_to_crtc_mapping) ||
10993 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] != NULL);
10994 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] = &intel_crtc->base;
10995 dev_priv->pipe_to_crtc_mapping[intel_crtc->pipe] = &intel_crtc->base;
10996
Jesse Barnes79e53942008-11-07 14:24:08 -080010997 drm_crtc_helper_add(&intel_crtc->base, &intel_helper_funcs);
Daniel Vetter87b6b102014-05-15 15:33:46 +020010998
10999 WARN_ON(drm_crtc_index(&intel_crtc->base) != intel_crtc->pipe);
Jesse Barnes79e53942008-11-07 14:24:08 -080011000}
11001
Jesse Barnes752aa882013-10-31 18:55:49 +020011002enum pipe intel_get_pipe_from_connector(struct intel_connector *connector)
11003{
11004 struct drm_encoder *encoder = connector->base.encoder;
Daniel Vetter6e9f7982014-05-29 23:54:47 +020011005 struct drm_device *dev = connector->base.dev;
Jesse Barnes752aa882013-10-31 18:55:49 +020011006
Rob Clark51fd3712013-11-19 12:10:12 -050011007 WARN_ON(!drm_modeset_is_locked(&dev->mode_config.connection_mutex));
Jesse Barnes752aa882013-10-31 18:55:49 +020011008
11009 if (!encoder)
11010 return INVALID_PIPE;
11011
11012 return to_intel_crtc(encoder->crtc)->pipe;
11013}
11014
Carl Worth08d7b3d2009-04-29 14:43:54 -070011015int intel_get_pipe_from_crtc_id(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +000011016 struct drm_file *file)
Carl Worth08d7b3d2009-04-29 14:43:54 -070011017{
Carl Worth08d7b3d2009-04-29 14:43:54 -070011018 struct drm_i915_get_pipe_from_crtc_id *pipe_from_crtc_id = data;
Daniel Vetterc05422d2009-08-11 16:05:30 +020011019 struct drm_mode_object *drmmode_obj;
11020 struct intel_crtc *crtc;
Carl Worth08d7b3d2009-04-29 14:43:54 -070011021
Daniel Vetter1cff8f62012-04-24 09:55:08 +020011022 if (!drm_core_check_feature(dev, DRIVER_MODESET))
11023 return -ENODEV;
Carl Worth08d7b3d2009-04-29 14:43:54 -070011024
Daniel Vetterc05422d2009-08-11 16:05:30 +020011025 drmmode_obj = drm_mode_object_find(dev, pipe_from_crtc_id->crtc_id,
11026 DRM_MODE_OBJECT_CRTC);
Carl Worth08d7b3d2009-04-29 14:43:54 -070011027
Daniel Vetterc05422d2009-08-11 16:05:30 +020011028 if (!drmmode_obj) {
Carl Worth08d7b3d2009-04-29 14:43:54 -070011029 DRM_ERROR("no such CRTC id\n");
Ville Syrjälä3f2c2052013-10-17 13:35:03 +030011030 return -ENOENT;
Carl Worth08d7b3d2009-04-29 14:43:54 -070011031 }
11032
Daniel Vetterc05422d2009-08-11 16:05:30 +020011033 crtc = to_intel_crtc(obj_to_crtc(drmmode_obj));
11034 pipe_from_crtc_id->pipe = crtc->pipe;
Carl Worth08d7b3d2009-04-29 14:43:54 -070011035
Daniel Vetterc05422d2009-08-11 16:05:30 +020011036 return 0;
Carl Worth08d7b3d2009-04-29 14:43:54 -070011037}
11038
Daniel Vetter66a92782012-07-12 20:08:18 +020011039static int intel_encoder_clones(struct intel_encoder *encoder)
Jesse Barnes79e53942008-11-07 14:24:08 -080011040{
Daniel Vetter66a92782012-07-12 20:08:18 +020011041 struct drm_device *dev = encoder->base.dev;
11042 struct intel_encoder *source_encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -080011043 int index_mask = 0;
Jesse Barnes79e53942008-11-07 14:24:08 -080011044 int entry = 0;
11045
Daniel Vetter66a92782012-07-12 20:08:18 +020011046 list_for_each_entry(source_encoder,
11047 &dev->mode_config.encoder_list, base.head) {
Ville Syrjäläbc079e82014-03-03 16:15:28 +020011048 if (encoders_cloneable(encoder, source_encoder))
Daniel Vetter66a92782012-07-12 20:08:18 +020011049 index_mask |= (1 << entry);
11050
Jesse Barnes79e53942008-11-07 14:24:08 -080011051 entry++;
11052 }
Chris Wilson4ef69c72010-09-09 15:14:28 +010011053
Jesse Barnes79e53942008-11-07 14:24:08 -080011054 return index_mask;
11055}
11056
Chris Wilson4d302442010-12-14 19:21:29 +000011057static bool has_edp_a(struct drm_device *dev)
11058{
11059 struct drm_i915_private *dev_priv = dev->dev_private;
11060
11061 if (!IS_MOBILE(dev))
11062 return false;
11063
11064 if ((I915_READ(DP_A) & DP_DETECTED) == 0)
11065 return false;
11066
Damien Lespiaue3589902014-02-07 19:12:50 +000011067 if (IS_GEN5(dev) && (I915_READ(FUSE_STRAP) & ILK_eDP_A_DISABLE))
Chris Wilson4d302442010-12-14 19:21:29 +000011068 return false;
11069
11070 return true;
11071}
11072
Damien Lespiauba0fbca2014-01-08 14:18:23 +000011073const char *intel_output_name(int output)
11074{
11075 static const char *names[] = {
11076 [INTEL_OUTPUT_UNUSED] = "Unused",
11077 [INTEL_OUTPUT_ANALOG] = "Analog",
11078 [INTEL_OUTPUT_DVO] = "DVO",
11079 [INTEL_OUTPUT_SDVO] = "SDVO",
11080 [INTEL_OUTPUT_LVDS] = "LVDS",
11081 [INTEL_OUTPUT_TVOUT] = "TV",
11082 [INTEL_OUTPUT_HDMI] = "HDMI",
11083 [INTEL_OUTPUT_DISPLAYPORT] = "DisplayPort",
11084 [INTEL_OUTPUT_EDP] = "eDP",
11085 [INTEL_OUTPUT_DSI] = "DSI",
11086 [INTEL_OUTPUT_UNKNOWN] = "Unknown",
11087 };
11088
11089 if (output < 0 || output >= ARRAY_SIZE(names) || !names[output])
11090 return "Invalid";
11091
11092 return names[output];
11093}
11094
Jesse Barnes79e53942008-11-07 14:24:08 -080011095static void intel_setup_outputs(struct drm_device *dev)
11096{
Eric Anholt725e30a2009-01-22 13:01:02 -080011097 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson4ef69c72010-09-09 15:14:28 +010011098 struct intel_encoder *encoder;
Adam Jacksoncb0953d2010-07-16 14:46:29 -040011099 bool dpd_is_edp = false;
Jesse Barnes79e53942008-11-07 14:24:08 -080011100
Daniel Vetterc9093352013-06-06 22:22:47 +020011101 intel_lvds_init(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -080011102
Jesse Barnes27da3bd2014-04-04 16:12:07 -070011103 if (!IS_ULT(dev) && !IS_CHERRYVIEW(dev) && dev_priv->vbt.int_crt_support)
Paulo Zanoni79935fc2012-11-20 13:27:40 -020011104 intel_crt_init(dev);
Adam Jacksoncb0953d2010-07-16 14:46:29 -040011105
Paulo Zanoniaffa9352012-11-23 15:30:39 -020011106 if (HAS_DDI(dev)) {
Eugeni Dodonov0e72a5b2012-05-09 15:37:27 -030011107 int found;
11108
11109 /* Haswell uses DDI functions to detect digital outputs */
11110 found = I915_READ(DDI_BUF_CTL_A) & DDI_INIT_DISPLAY_DETECTED;
11111 /* DDI A only supports eDP */
11112 if (found)
11113 intel_ddi_init(dev, PORT_A);
11114
11115 /* DDI B, C and D detection is indicated by the SFUSE_STRAP
11116 * register */
11117 found = I915_READ(SFUSE_STRAP);
11118
11119 if (found & SFUSE_STRAP_DDIB_DETECTED)
11120 intel_ddi_init(dev, PORT_B);
11121 if (found & SFUSE_STRAP_DDIC_DETECTED)
11122 intel_ddi_init(dev, PORT_C);
11123 if (found & SFUSE_STRAP_DDID_DETECTED)
11124 intel_ddi_init(dev, PORT_D);
11125 } else if (HAS_PCH_SPLIT(dev)) {
Adam Jacksoncb0953d2010-07-16 14:46:29 -040011126 int found;
Ville Syrjälä5d8a7752013-11-01 18:22:39 +020011127 dpd_is_edp = intel_dp_is_edp(dev, PORT_D);
Daniel Vetter270b3042012-10-27 15:52:05 +020011128
11129 if (has_edp_a(dev))
11130 intel_dp_init(dev, DP_A, PORT_A);
Adam Jacksoncb0953d2010-07-16 14:46:29 -040011131
Paulo Zanonidc0fa712013-02-19 16:21:46 -030011132 if (I915_READ(PCH_HDMIB) & SDVO_DETECTED) {
Zhao Yakui461ed3c2010-03-30 15:11:33 +080011133 /* PCH SDVOB multiplex with HDMIB */
Daniel Vettereef4eac2012-03-23 23:43:35 +010011134 found = intel_sdvo_init(dev, PCH_SDVOB, true);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +080011135 if (!found)
Paulo Zanonie2debe92013-02-18 19:00:27 -030011136 intel_hdmi_init(dev, PCH_HDMIB, PORT_B);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +080011137 if (!found && (I915_READ(PCH_DP_B) & DP_DETECTED))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030011138 intel_dp_init(dev, PCH_DP_B, PORT_B);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +080011139 }
11140
Paulo Zanonidc0fa712013-02-19 16:21:46 -030011141 if (I915_READ(PCH_HDMIC) & SDVO_DETECTED)
Paulo Zanonie2debe92013-02-18 19:00:27 -030011142 intel_hdmi_init(dev, PCH_HDMIC, PORT_C);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +080011143
Paulo Zanonidc0fa712013-02-19 16:21:46 -030011144 if (!dpd_is_edp && I915_READ(PCH_HDMID) & SDVO_DETECTED)
Paulo Zanonie2debe92013-02-18 19:00:27 -030011145 intel_hdmi_init(dev, PCH_HDMID, PORT_D);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +080011146
Zhenyu Wang5eb08b62009-07-24 01:00:31 +080011147 if (I915_READ(PCH_DP_C) & DP_DETECTED)
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030011148 intel_dp_init(dev, PCH_DP_C, PORT_C);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +080011149
Daniel Vetter270b3042012-10-27 15:52:05 +020011150 if (I915_READ(PCH_DP_D) & DP_DETECTED)
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030011151 intel_dp_init(dev, PCH_DP_D, PORT_D);
Jesse Barnes4a87d652012-06-15 11:55:16 -070011152 } else if (IS_VALLEYVIEW(dev)) {
Artem Bityutskiy585a94b2013-10-16 18:10:41 +030011153 if (I915_READ(VLV_DISPLAY_BASE + GEN4_HDMIB) & SDVO_DETECTED) {
11154 intel_hdmi_init(dev, VLV_DISPLAY_BASE + GEN4_HDMIB,
11155 PORT_B);
11156 if (I915_READ(VLV_DISPLAY_BASE + DP_B) & DP_DETECTED)
11157 intel_dp_init(dev, VLV_DISPLAY_BASE + DP_B, PORT_B);
11158 }
11159
Jesse Barnes6f6005a2013-08-09 09:34:35 -070011160 if (I915_READ(VLV_DISPLAY_BASE + GEN4_HDMIC) & SDVO_DETECTED) {
11161 intel_hdmi_init(dev, VLV_DISPLAY_BASE + GEN4_HDMIC,
11162 PORT_C);
11163 if (I915_READ(VLV_DISPLAY_BASE + DP_C) & DP_DETECTED)
Ville Syrjälä5d8a7752013-11-01 18:22:39 +020011164 intel_dp_init(dev, VLV_DISPLAY_BASE + DP_C, PORT_C);
Jesse Barnes6f6005a2013-08-09 09:34:35 -070011165 }
Gajanan Bhat19c03922012-09-27 19:13:07 +053011166
Ville Syrjälä9418c1f2014-04-09 13:28:56 +030011167 if (IS_CHERRYVIEW(dev)) {
11168 if (I915_READ(VLV_DISPLAY_BASE + CHV_HDMID) & SDVO_DETECTED) {
11169 intel_hdmi_init(dev, VLV_DISPLAY_BASE + CHV_HDMID,
11170 PORT_D);
11171 if (I915_READ(VLV_DISPLAY_BASE + DP_D) & DP_DETECTED)
11172 intel_dp_init(dev, VLV_DISPLAY_BASE + DP_D, PORT_D);
11173 }
11174 }
11175
Jani Nikula3cfca972013-08-27 15:12:26 +030011176 intel_dsi_init(dev);
Zhenyu Wang103a1962009-11-27 11:44:36 +080011177 } else if (SUPPORTS_DIGITAL_OUTPUTS(dev)) {
Ma Ling27185ae2009-08-24 13:50:23 +080011178 bool found = false;
Eric Anholt7d573822009-01-02 13:33:00 -080011179
Paulo Zanonie2debe92013-02-18 19:00:27 -030011180 if (I915_READ(GEN3_SDVOB) & SDVO_DETECTED) {
Jesse Barnesb01f2c32009-12-11 11:07:17 -080011181 DRM_DEBUG_KMS("probing SDVOB\n");
Paulo Zanonie2debe92013-02-18 19:00:27 -030011182 found = intel_sdvo_init(dev, GEN3_SDVOB, true);
Jesse Barnesb01f2c32009-12-11 11:07:17 -080011183 if (!found && SUPPORTS_INTEGRATED_HDMI(dev)) {
11184 DRM_DEBUG_KMS("probing HDMI on SDVOB\n");
Paulo Zanonie2debe92013-02-18 19:00:27 -030011185 intel_hdmi_init(dev, GEN4_HDMIB, PORT_B);
Jesse Barnesb01f2c32009-12-11 11:07:17 -080011186 }
Ma Ling27185ae2009-08-24 13:50:23 +080011187
Imre Deake7281ea2013-05-08 13:14:08 +030011188 if (!found && SUPPORTS_INTEGRATED_DP(dev))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030011189 intel_dp_init(dev, DP_B, PORT_B);
Eric Anholt725e30a2009-01-22 13:01:02 -080011190 }
Kristian Høgsberg13520b02009-03-13 15:42:14 -040011191
11192 /* Before G4X SDVOC doesn't have its own detect register */
Kristian Høgsberg13520b02009-03-13 15:42:14 -040011193
Paulo Zanonie2debe92013-02-18 19:00:27 -030011194 if (I915_READ(GEN3_SDVOB) & SDVO_DETECTED) {
Jesse Barnesb01f2c32009-12-11 11:07:17 -080011195 DRM_DEBUG_KMS("probing SDVOC\n");
Paulo Zanonie2debe92013-02-18 19:00:27 -030011196 found = intel_sdvo_init(dev, GEN3_SDVOC, false);
Jesse Barnesb01f2c32009-12-11 11:07:17 -080011197 }
Ma Ling27185ae2009-08-24 13:50:23 +080011198
Paulo Zanonie2debe92013-02-18 19:00:27 -030011199 if (!found && (I915_READ(GEN3_SDVOC) & SDVO_DETECTED)) {
Ma Ling27185ae2009-08-24 13:50:23 +080011200
Jesse Barnesb01f2c32009-12-11 11:07:17 -080011201 if (SUPPORTS_INTEGRATED_HDMI(dev)) {
11202 DRM_DEBUG_KMS("probing HDMI on SDVOC\n");
Paulo Zanonie2debe92013-02-18 19:00:27 -030011203 intel_hdmi_init(dev, GEN4_HDMIC, PORT_C);
Jesse Barnesb01f2c32009-12-11 11:07:17 -080011204 }
Imre Deake7281ea2013-05-08 13:14:08 +030011205 if (SUPPORTS_INTEGRATED_DP(dev))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030011206 intel_dp_init(dev, DP_C, PORT_C);
Eric Anholt725e30a2009-01-22 13:01:02 -080011207 }
Ma Ling27185ae2009-08-24 13:50:23 +080011208
Jesse Barnesb01f2c32009-12-11 11:07:17 -080011209 if (SUPPORTS_INTEGRATED_DP(dev) &&
Imre Deake7281ea2013-05-08 13:14:08 +030011210 (I915_READ(DP_D) & DP_DETECTED))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030011211 intel_dp_init(dev, DP_D, PORT_D);
Eric Anholtbad720f2009-10-22 16:11:14 -070011212 } else if (IS_GEN2(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -080011213 intel_dvo_init(dev);
11214
Zhenyu Wang103a1962009-11-27 11:44:36 +080011215 if (SUPPORTS_TV(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -080011216 intel_tv_init(dev);
11217
Chris Wilson4ef69c72010-09-09 15:14:28 +010011218 list_for_each_entry(encoder, &dev->mode_config.encoder_list, base.head) {
11219 encoder->base.possible_crtcs = encoder->crtc_mask;
11220 encoder->base.possible_clones =
Daniel Vetter66a92782012-07-12 20:08:18 +020011221 intel_encoder_clones(encoder);
Jesse Barnes79e53942008-11-07 14:24:08 -080011222 }
Chris Wilson47356eb2011-01-11 17:06:04 +000011223
Paulo Zanonidde86e22012-12-01 12:04:25 -020011224 intel_init_pch_refclk(dev);
Daniel Vetter270b3042012-10-27 15:52:05 +020011225
11226 drm_helper_move_panel_connectors_to_head(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -080011227}
11228
11229static void intel_user_framebuffer_destroy(struct drm_framebuffer *fb)
11230{
11231 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
Jesse Barnes79e53942008-11-07 14:24:08 -080011232
Daniel Vetteref2d6332014-02-10 18:00:38 +010011233 drm_framebuffer_cleanup(fb);
11234 WARN_ON(!intel_fb->obj->framebuffer_references--);
11235 drm_gem_object_unreference_unlocked(&intel_fb->obj->base);
Jesse Barnes79e53942008-11-07 14:24:08 -080011236 kfree(intel_fb);
11237}
11238
11239static int intel_user_framebuffer_create_handle(struct drm_framebuffer *fb,
Chris Wilson05394f32010-11-08 19:18:58 +000011240 struct drm_file *file,
Jesse Barnes79e53942008-11-07 14:24:08 -080011241 unsigned int *handle)
11242{
11243 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
Chris Wilson05394f32010-11-08 19:18:58 +000011244 struct drm_i915_gem_object *obj = intel_fb->obj;
Jesse Barnes79e53942008-11-07 14:24:08 -080011245
Chris Wilson05394f32010-11-08 19:18:58 +000011246 return drm_gem_handle_create(file, &obj->base, handle);
Jesse Barnes79e53942008-11-07 14:24:08 -080011247}
11248
11249static const struct drm_framebuffer_funcs intel_fb_funcs = {
11250 .destroy = intel_user_framebuffer_destroy,
11251 .create_handle = intel_user_framebuffer_create_handle,
11252};
11253
Daniel Vetterb5ea6422014-03-02 21:18:00 +010011254static int intel_framebuffer_init(struct drm_device *dev,
11255 struct intel_framebuffer *intel_fb,
11256 struct drm_mode_fb_cmd2 *mode_cmd,
11257 struct drm_i915_gem_object *obj)
Jesse Barnes79e53942008-11-07 14:24:08 -080011258{
Jesse Barnesa57ce0b2014-02-07 12:10:35 -080011259 int aligned_height;
Chris Wilsona35cdaa2013-06-25 17:26:45 +010011260 int pitch_limit;
Jesse Barnes79e53942008-11-07 14:24:08 -080011261 int ret;
11262
Daniel Vetterdd4916c2013-10-09 21:23:51 +020011263 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
11264
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000011265 if (obj->tiling_mode == I915_TILING_Y) {
11266 DRM_DEBUG("hardware does not support tiling Y\n");
Chris Wilson57cd6502010-08-08 12:34:44 +010011267 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000011268 }
Chris Wilson57cd6502010-08-08 12:34:44 +010011269
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000011270 if (mode_cmd->pitches[0] & 63) {
11271 DRM_DEBUG("pitch (%d) must be at least 64 byte aligned\n",
11272 mode_cmd->pitches[0]);
Chris Wilson57cd6502010-08-08 12:34:44 +010011273 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000011274 }
Chris Wilson57cd6502010-08-08 12:34:44 +010011275
Chris Wilsona35cdaa2013-06-25 17:26:45 +010011276 if (INTEL_INFO(dev)->gen >= 5 && !IS_VALLEYVIEW(dev)) {
11277 pitch_limit = 32*1024;
11278 } else if (INTEL_INFO(dev)->gen >= 4) {
11279 if (obj->tiling_mode)
11280 pitch_limit = 16*1024;
11281 else
11282 pitch_limit = 32*1024;
11283 } else if (INTEL_INFO(dev)->gen >= 3) {
11284 if (obj->tiling_mode)
11285 pitch_limit = 8*1024;
11286 else
11287 pitch_limit = 16*1024;
11288 } else
11289 /* XXX DSPC is limited to 4k tiled */
11290 pitch_limit = 8*1024;
11291
11292 if (mode_cmd->pitches[0] > pitch_limit) {
11293 DRM_DEBUG("%s pitch (%d) must be at less than %d\n",
11294 obj->tiling_mode ? "tiled" : "linear",
11295 mode_cmd->pitches[0], pitch_limit);
Ville Syrjälä5d7bd702012-10-31 17:50:18 +020011296 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000011297 }
Ville Syrjälä5d7bd702012-10-31 17:50:18 +020011298
11299 if (obj->tiling_mode != I915_TILING_NONE &&
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000011300 mode_cmd->pitches[0] != obj->stride) {
11301 DRM_DEBUG("pitch (%d) must match tiling stride (%d)\n",
11302 mode_cmd->pitches[0], obj->stride);
Ville Syrjälä5d7bd702012-10-31 17:50:18 +020011303 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000011304 }
Ville Syrjälä5d7bd702012-10-31 17:50:18 +020011305
Ville Syrjälä57779d02012-10-31 17:50:14 +020011306 /* Reject formats not supported by any plane early. */
Jesse Barnes308e5bc2011-11-14 14:51:28 -080011307 switch (mode_cmd->pixel_format) {
Ville Syrjälä57779d02012-10-31 17:50:14 +020011308 case DRM_FORMAT_C8:
Ville Syrjälä04b39242011-11-17 18:05:13 +020011309 case DRM_FORMAT_RGB565:
11310 case DRM_FORMAT_XRGB8888:
11311 case DRM_FORMAT_ARGB8888:
Ville Syrjälä57779d02012-10-31 17:50:14 +020011312 break;
11313 case DRM_FORMAT_XRGB1555:
11314 case DRM_FORMAT_ARGB1555:
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000011315 if (INTEL_INFO(dev)->gen > 3) {
Ville Syrjälä4ee62c72013-06-07 15:43:05 +000011316 DRM_DEBUG("unsupported pixel format: %s\n",
11317 drm_get_format_name(mode_cmd->pixel_format));
Ville Syrjälä57779d02012-10-31 17:50:14 +020011318 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000011319 }
Ville Syrjälä57779d02012-10-31 17:50:14 +020011320 break;
11321 case DRM_FORMAT_XBGR8888:
11322 case DRM_FORMAT_ABGR8888:
Ville Syrjälä04b39242011-11-17 18:05:13 +020011323 case DRM_FORMAT_XRGB2101010:
11324 case DRM_FORMAT_ARGB2101010:
Ville Syrjälä57779d02012-10-31 17:50:14 +020011325 case DRM_FORMAT_XBGR2101010:
11326 case DRM_FORMAT_ABGR2101010:
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000011327 if (INTEL_INFO(dev)->gen < 4) {
Ville Syrjälä4ee62c72013-06-07 15:43:05 +000011328 DRM_DEBUG("unsupported pixel format: %s\n",
11329 drm_get_format_name(mode_cmd->pixel_format));
Ville Syrjälä57779d02012-10-31 17:50:14 +020011330 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000011331 }
Jesse Barnesb5626742011-06-24 12:19:27 -070011332 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +020011333 case DRM_FORMAT_YUYV:
11334 case DRM_FORMAT_UYVY:
11335 case DRM_FORMAT_YVYU:
11336 case DRM_FORMAT_VYUY:
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000011337 if (INTEL_INFO(dev)->gen < 5) {
Ville Syrjälä4ee62c72013-06-07 15:43:05 +000011338 DRM_DEBUG("unsupported pixel format: %s\n",
11339 drm_get_format_name(mode_cmd->pixel_format));
Ville Syrjälä57779d02012-10-31 17:50:14 +020011340 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000011341 }
Chris Wilson57cd6502010-08-08 12:34:44 +010011342 break;
11343 default:
Ville Syrjälä4ee62c72013-06-07 15:43:05 +000011344 DRM_DEBUG("unsupported pixel format: %s\n",
11345 drm_get_format_name(mode_cmd->pixel_format));
Chris Wilson57cd6502010-08-08 12:34:44 +010011346 return -EINVAL;
11347 }
11348
Ville Syrjälä90f9a332012-10-31 17:50:19 +020011349 /* FIXME need to adjust LINOFF/TILEOFF accordingly. */
11350 if (mode_cmd->offsets[0] != 0)
11351 return -EINVAL;
11352
Jesse Barnesa57ce0b2014-02-07 12:10:35 -080011353 aligned_height = intel_align_height(dev, mode_cmd->height,
11354 obj->tiling_mode);
Daniel Vetter53155c02013-10-09 21:55:33 +020011355 /* FIXME drm helper for size checks (especially planar formats)? */
11356 if (obj->base.size < aligned_height * mode_cmd->pitches[0])
11357 return -EINVAL;
11358
Daniel Vetterc7d73f62012-12-13 23:38:38 +010011359 drm_helper_mode_fill_fb_struct(&intel_fb->base, mode_cmd);
11360 intel_fb->obj = obj;
Daniel Vetter80075d42013-10-09 21:23:52 +020011361 intel_fb->obj->framebuffer_references++;
Daniel Vetterc7d73f62012-12-13 23:38:38 +010011362
Jesse Barnes79e53942008-11-07 14:24:08 -080011363 ret = drm_framebuffer_init(dev, &intel_fb->base, &intel_fb_funcs);
11364 if (ret) {
11365 DRM_ERROR("framebuffer init failed %d\n", ret);
11366 return ret;
11367 }
11368
Jesse Barnes79e53942008-11-07 14:24:08 -080011369 return 0;
11370}
11371
Jesse Barnes79e53942008-11-07 14:24:08 -080011372static struct drm_framebuffer *
11373intel_user_framebuffer_create(struct drm_device *dev,
11374 struct drm_file *filp,
Jesse Barnes308e5bc2011-11-14 14:51:28 -080011375 struct drm_mode_fb_cmd2 *mode_cmd)
Jesse Barnes79e53942008-11-07 14:24:08 -080011376{
Chris Wilson05394f32010-11-08 19:18:58 +000011377 struct drm_i915_gem_object *obj;
Jesse Barnes79e53942008-11-07 14:24:08 -080011378
Jesse Barnes308e5bc2011-11-14 14:51:28 -080011379 obj = to_intel_bo(drm_gem_object_lookup(dev, filp,
11380 mode_cmd->handles[0]));
Chris Wilsonc8725222011-02-19 11:31:06 +000011381 if (&obj->base == NULL)
Chris Wilsoncce13ff2010-08-08 13:36:38 +010011382 return ERR_PTR(-ENOENT);
Jesse Barnes79e53942008-11-07 14:24:08 -080011383
Chris Wilsond2dff872011-04-19 08:36:26 +010011384 return intel_framebuffer_create(dev, mode_cmd, obj);
Jesse Barnes79e53942008-11-07 14:24:08 -080011385}
11386
Daniel Vetter4520f532013-10-09 09:18:51 +020011387#ifndef CONFIG_DRM_I915_FBDEV
Daniel Vetter0632fef2013-10-08 17:44:49 +020011388static inline void intel_fbdev_output_poll_changed(struct drm_device *dev)
Daniel Vetter4520f532013-10-09 09:18:51 +020011389{
11390}
11391#endif
11392
Jesse Barnes79e53942008-11-07 14:24:08 -080011393static const struct drm_mode_config_funcs intel_mode_funcs = {
Jesse Barnes79e53942008-11-07 14:24:08 -080011394 .fb_create = intel_user_framebuffer_create,
Daniel Vetter0632fef2013-10-08 17:44:49 +020011395 .output_poll_changed = intel_fbdev_output_poll_changed,
Jesse Barnes79e53942008-11-07 14:24:08 -080011396};
11397
Jesse Barnese70236a2009-09-21 10:42:27 -070011398/* Set up chip specific display functions */
11399static void intel_init_display(struct drm_device *dev)
11400{
11401 struct drm_i915_private *dev_priv = dev->dev_private;
11402
Daniel Vetteree9300b2013-06-03 22:40:22 +020011403 if (HAS_PCH_SPLIT(dev) || IS_G4X(dev))
11404 dev_priv->display.find_dpll = g4x_find_best_dpll;
Chon Ming Leeef9348c2014-04-09 13:28:18 +030011405 else if (IS_CHERRYVIEW(dev))
11406 dev_priv->display.find_dpll = chv_find_best_dpll;
Daniel Vetteree9300b2013-06-03 22:40:22 +020011407 else if (IS_VALLEYVIEW(dev))
11408 dev_priv->display.find_dpll = vlv_find_best_dpll;
11409 else if (IS_PINEVIEW(dev))
11410 dev_priv->display.find_dpll = pnv_find_best_dpll;
11411 else
11412 dev_priv->display.find_dpll = i9xx_find_best_dpll;
11413
Paulo Zanoniaffa9352012-11-23 15:30:39 -020011414 if (HAS_DDI(dev)) {
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010011415 dev_priv->display.get_pipe_config = haswell_get_pipe_config;
Jesse Barnes4c6baa52014-03-07 08:57:50 -080011416 dev_priv->display.get_plane_config = ironlake_get_plane_config;
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -030011417 dev_priv->display.crtc_mode_set = haswell_crtc_mode_set;
Paulo Zanoni4f771f12012-10-23 18:29:51 -020011418 dev_priv->display.crtc_enable = haswell_crtc_enable;
11419 dev_priv->display.crtc_disable = haswell_crtc_disable;
Paulo Zanoni6441ab52012-10-05 12:05:58 -030011420 dev_priv->display.off = haswell_crtc_off;
Matt Roper262ca2b2014-03-18 17:22:55 -070011421 dev_priv->display.update_primary_plane =
11422 ironlake_update_primary_plane;
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -030011423 } else if (HAS_PCH_SPLIT(dev)) {
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010011424 dev_priv->display.get_pipe_config = ironlake_get_pipe_config;
Jesse Barnes4c6baa52014-03-07 08:57:50 -080011425 dev_priv->display.get_plane_config = ironlake_get_plane_config;
Eric Anholtf564048e2011-03-30 13:01:02 -070011426 dev_priv->display.crtc_mode_set = ironlake_crtc_mode_set;
Daniel Vetter76e5a892012-06-29 22:39:33 +020011427 dev_priv->display.crtc_enable = ironlake_crtc_enable;
11428 dev_priv->display.crtc_disable = ironlake_crtc_disable;
Jesse Barnesee7b9f92012-04-20 17:11:53 +010011429 dev_priv->display.off = ironlake_crtc_off;
Matt Roper262ca2b2014-03-18 17:22:55 -070011430 dev_priv->display.update_primary_plane =
11431 ironlake_update_primary_plane;
Jesse Barnes89b667f2013-04-18 14:51:36 -070011432 } else if (IS_VALLEYVIEW(dev)) {
11433 dev_priv->display.get_pipe_config = i9xx_get_pipe_config;
Jesse Barnes1ad292b2014-03-07 08:57:49 -080011434 dev_priv->display.get_plane_config = i9xx_get_plane_config;
Jesse Barnes89b667f2013-04-18 14:51:36 -070011435 dev_priv->display.crtc_mode_set = i9xx_crtc_mode_set;
11436 dev_priv->display.crtc_enable = valleyview_crtc_enable;
11437 dev_priv->display.crtc_disable = i9xx_crtc_disable;
11438 dev_priv->display.off = i9xx_crtc_off;
Matt Roper262ca2b2014-03-18 17:22:55 -070011439 dev_priv->display.update_primary_plane =
11440 i9xx_update_primary_plane;
Eric Anholtf564048e2011-03-30 13:01:02 -070011441 } else {
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010011442 dev_priv->display.get_pipe_config = i9xx_get_pipe_config;
Jesse Barnes1ad292b2014-03-07 08:57:49 -080011443 dev_priv->display.get_plane_config = i9xx_get_plane_config;
Eric Anholtf564048e2011-03-30 13:01:02 -070011444 dev_priv->display.crtc_mode_set = i9xx_crtc_mode_set;
Daniel Vetter76e5a892012-06-29 22:39:33 +020011445 dev_priv->display.crtc_enable = i9xx_crtc_enable;
11446 dev_priv->display.crtc_disable = i9xx_crtc_disable;
Jesse Barnesee7b9f92012-04-20 17:11:53 +010011447 dev_priv->display.off = i9xx_crtc_off;
Matt Roper262ca2b2014-03-18 17:22:55 -070011448 dev_priv->display.update_primary_plane =
11449 i9xx_update_primary_plane;
Eric Anholtf564048e2011-03-30 13:01:02 -070011450 }
Jesse Barnese70236a2009-09-21 10:42:27 -070011451
Jesse Barnese70236a2009-09-21 10:42:27 -070011452 /* Returns the core display clock speed */
Jesse Barnes25eb05fc2012-03-28 13:39:23 -070011453 if (IS_VALLEYVIEW(dev))
11454 dev_priv->display.get_display_clock_speed =
11455 valleyview_get_display_clock_speed;
11456 else if (IS_I945G(dev) || (IS_G33(dev) && !IS_PINEVIEW_M(dev)))
Jesse Barnese70236a2009-09-21 10:42:27 -070011457 dev_priv->display.get_display_clock_speed =
11458 i945_get_display_clock_speed;
11459 else if (IS_I915G(dev))
11460 dev_priv->display.get_display_clock_speed =
11461 i915_get_display_clock_speed;
Daniel Vetter257a7ff2013-07-26 08:35:42 +020011462 else if (IS_I945GM(dev) || IS_845G(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -070011463 dev_priv->display.get_display_clock_speed =
11464 i9xx_misc_get_display_clock_speed;
Daniel Vetter257a7ff2013-07-26 08:35:42 +020011465 else if (IS_PINEVIEW(dev))
11466 dev_priv->display.get_display_clock_speed =
11467 pnv_get_display_clock_speed;
Jesse Barnese70236a2009-09-21 10:42:27 -070011468 else if (IS_I915GM(dev))
11469 dev_priv->display.get_display_clock_speed =
11470 i915gm_get_display_clock_speed;
11471 else if (IS_I865G(dev))
11472 dev_priv->display.get_display_clock_speed =
11473 i865_get_display_clock_speed;
Daniel Vetterf0f8a9c2009-09-15 22:57:33 +020011474 else if (IS_I85X(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -070011475 dev_priv->display.get_display_clock_speed =
11476 i855_get_display_clock_speed;
11477 else /* 852, 830 */
11478 dev_priv->display.get_display_clock_speed =
11479 i830_get_display_clock_speed;
11480
Zhenyu Wang7f8a8562010-04-01 13:07:53 +080011481 if (HAS_PCH_SPLIT(dev)) {
Chris Wilsonf00a3dd2010-10-21 14:57:17 +010011482 if (IS_GEN5(dev)) {
Jesse Barnes674cf962011-04-28 14:27:04 -070011483 dev_priv->display.fdi_link_train = ironlake_fdi_link_train;
Wu Fengguange0dac652011-09-05 14:25:34 +080011484 dev_priv->display.write_eld = ironlake_write_eld;
Yuanhan Liu13982612010-12-15 15:42:31 +080011485 } else if (IS_GEN6(dev)) {
Jesse Barnes674cf962011-04-28 14:27:04 -070011486 dev_priv->display.fdi_link_train = gen6_fdi_link_train;
Wu Fengguange0dac652011-09-05 14:25:34 +080011487 dev_priv->display.write_eld = ironlake_write_eld;
Paulo Zanoni9a952a02014-03-07 20:12:34 -030011488 dev_priv->display.modeset_global_resources =
11489 snb_modeset_global_resources;
Jesse Barnes357555c2011-04-28 15:09:55 -070011490 } else if (IS_IVYBRIDGE(dev)) {
11491 /* FIXME: detect B0+ stepping and use auto training */
11492 dev_priv->display.fdi_link_train = ivb_manual_fdi_link_train;
Wu Fengguange0dac652011-09-05 14:25:34 +080011493 dev_priv->display.write_eld = ironlake_write_eld;
Daniel Vetter01a415f2012-10-27 15:58:40 +020011494 dev_priv->display.modeset_global_resources =
11495 ivb_modeset_global_resources;
Ben Widawsky4e0bbc32013-11-02 21:07:07 -070011496 } else if (IS_HASWELL(dev) || IS_GEN8(dev)) {
Eugeni Dodonovc82e4d22012-05-09 15:37:21 -030011497 dev_priv->display.fdi_link_train = hsw_fdi_link_train;
Wang Xingchao83358c852012-08-16 22:43:37 +080011498 dev_priv->display.write_eld = haswell_write_eld;
Daniel Vetterd6dd9eb2013-01-29 16:35:20 -020011499 dev_priv->display.modeset_global_resources =
11500 haswell_modeset_global_resources;
Paulo Zanonia0e63c22012-12-06 11:12:39 -020011501 }
Jesse Barnes6067aae2011-04-28 15:04:31 -070011502 } else if (IS_G4X(dev)) {
Wu Fengguange0dac652011-09-05 14:25:34 +080011503 dev_priv->display.write_eld = g4x_write_eld;
Jesse Barnes30a970c2013-11-04 13:48:12 -080011504 } else if (IS_VALLEYVIEW(dev)) {
11505 dev_priv->display.modeset_global_resources =
11506 valleyview_modeset_global_resources;
Mengdong Lin9ca2fe72013-11-01 00:17:03 -040011507 dev_priv->display.write_eld = ironlake_write_eld;
Jesse Barnese70236a2009-09-21 10:42:27 -070011508 }
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011509
11510 /* Default just returns -ENODEV to indicate unsupported */
11511 dev_priv->display.queue_flip = intel_default_queue_flip;
11512
11513 switch (INTEL_INFO(dev)->gen) {
11514 case 2:
11515 dev_priv->display.queue_flip = intel_gen2_queue_flip;
11516 break;
11517
11518 case 3:
11519 dev_priv->display.queue_flip = intel_gen3_queue_flip;
11520 break;
11521
11522 case 4:
11523 case 5:
11524 dev_priv->display.queue_flip = intel_gen4_queue_flip;
11525 break;
11526
11527 case 6:
11528 dev_priv->display.queue_flip = intel_gen6_queue_flip;
11529 break;
Jesse Barnes7c9017e2011-06-16 12:18:54 -070011530 case 7:
Ben Widawsky4e0bbc32013-11-02 21:07:07 -070011531 case 8: /* FIXME(BDW): Check that the gen8 RCS flip works. */
Jesse Barnes7c9017e2011-06-16 12:18:54 -070011532 dev_priv->display.queue_flip = intel_gen7_queue_flip;
11533 break;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011534 }
Jani Nikula7bd688c2013-11-08 16:48:56 +020011535
11536 intel_panel_init_backlight_funcs(dev);
Jesse Barnese70236a2009-09-21 10:42:27 -070011537}
11538
Jesse Barnesb690e962010-07-19 13:53:12 -070011539/*
11540 * Some BIOSes insist on assuming the GPU's pipe A is enabled at suspend,
11541 * resume, or other times. This quirk makes sure that's the case for
11542 * affected systems.
11543 */
Akshay Joshi0206e352011-08-16 15:34:10 -040011544static void quirk_pipea_force(struct drm_device *dev)
Jesse Barnesb690e962010-07-19 13:53:12 -070011545{
11546 struct drm_i915_private *dev_priv = dev->dev_private;
11547
11548 dev_priv->quirks |= QUIRK_PIPEA_FORCE;
Daniel Vetterbc0daf42012-04-01 13:16:49 +020011549 DRM_INFO("applying pipe a force quirk\n");
Jesse Barnesb690e962010-07-19 13:53:12 -070011550}
11551
Keith Packard435793d2011-07-12 14:56:22 -070011552/*
11553 * Some machines (Lenovo U160) do not work with SSC on LVDS for some reason
11554 */
11555static void quirk_ssc_force_disable(struct drm_device *dev)
11556{
11557 struct drm_i915_private *dev_priv = dev->dev_private;
11558 dev_priv->quirks |= QUIRK_LVDS_SSC_DISABLE;
Daniel Vetterbc0daf42012-04-01 13:16:49 +020011559 DRM_INFO("applying lvds SSC disable quirk\n");
Keith Packard435793d2011-07-12 14:56:22 -070011560}
11561
Carsten Emde4dca20e2012-03-15 15:56:26 +010011562/*
Carsten Emde5a15ab52012-03-15 15:56:27 +010011563 * A machine (e.g. Acer Aspire 5734Z) may need to invert the panel backlight
11564 * brightness value
Carsten Emde4dca20e2012-03-15 15:56:26 +010011565 */
11566static void quirk_invert_brightness(struct drm_device *dev)
11567{
11568 struct drm_i915_private *dev_priv = dev->dev_private;
11569 dev_priv->quirks |= QUIRK_INVERT_BRIGHTNESS;
Daniel Vetterbc0daf42012-04-01 13:16:49 +020011570 DRM_INFO("applying inverted panel brightness quirk\n");
Jesse Barnesb690e962010-07-19 13:53:12 -070011571}
11572
11573struct intel_quirk {
11574 int device;
11575 int subsystem_vendor;
11576 int subsystem_device;
11577 void (*hook)(struct drm_device *dev);
11578};
11579
Egbert Eich5f85f1762012-10-14 15:46:38 +020011580/* For systems that don't have a meaningful PCI subdevice/subvendor ID */
11581struct intel_dmi_quirk {
11582 void (*hook)(struct drm_device *dev);
11583 const struct dmi_system_id (*dmi_id_list)[];
11584};
11585
11586static int intel_dmi_reverse_brightness(const struct dmi_system_id *id)
11587{
11588 DRM_INFO("Backlight polarity reversed on %s\n", id->ident);
11589 return 1;
11590}
11591
11592static const struct intel_dmi_quirk intel_dmi_quirks[] = {
11593 {
11594 .dmi_id_list = &(const struct dmi_system_id[]) {
11595 {
11596 .callback = intel_dmi_reverse_brightness,
11597 .ident = "NCR Corporation",
11598 .matches = {DMI_MATCH(DMI_SYS_VENDOR, "NCR Corporation"),
11599 DMI_MATCH(DMI_PRODUCT_NAME, ""),
11600 },
11601 },
11602 { } /* terminating entry */
11603 },
11604 .hook = quirk_invert_brightness,
11605 },
11606};
11607
Ben Widawskyc43b5632012-04-16 14:07:40 -070011608static struct intel_quirk intel_quirks[] = {
Jesse Barnesb690e962010-07-19 13:53:12 -070011609 /* HP Mini needs pipe A force quirk (LP: #322104) */
Akshay Joshi0206e352011-08-16 15:34:10 -040011610 { 0x27ae, 0x103c, 0x361a, quirk_pipea_force },
Jesse Barnesb690e962010-07-19 13:53:12 -070011611
Jesse Barnesb690e962010-07-19 13:53:12 -070011612 /* Toshiba Protege R-205, S-209 needs pipe A force quirk */
11613 { 0x2592, 0x1179, 0x0001, quirk_pipea_force },
11614
Jesse Barnesb690e962010-07-19 13:53:12 -070011615 /* ThinkPad T60 needs pipe A force quirk (bug #16494) */
11616 { 0x2782, 0x17aa, 0x201a, quirk_pipea_force },
11617
Chris Wilsona4945f92013-10-08 11:16:59 +010011618 /* 830 needs to leave pipe A & dpll A up */
Daniel Vetterdcdaed62012-08-12 21:19:34 +020011619 { 0x3577, PCI_ANY_ID, PCI_ANY_ID, quirk_pipea_force },
Keith Packard435793d2011-07-12 14:56:22 -070011620
11621 /* Lenovo U160 cannot use SSC on LVDS */
11622 { 0x0046, 0x17aa, 0x3920, quirk_ssc_force_disable },
Michel Alexandre Salim070d3292011-07-28 18:52:06 +020011623
11624 /* Sony Vaio Y cannot use SSC on LVDS */
11625 { 0x0046, 0x104d, 0x9076, quirk_ssc_force_disable },
Carsten Emde5a15ab52012-03-15 15:56:27 +010011626
Alexander van Heukelumbe505f62013-12-28 21:00:39 +010011627 /* Acer Aspire 5734Z must invert backlight brightness */
11628 { 0x2a42, 0x1025, 0x0459, quirk_invert_brightness },
11629
11630 /* Acer/eMachines G725 */
11631 { 0x2a42, 0x1025, 0x0210, quirk_invert_brightness },
11632
11633 /* Acer/eMachines e725 */
11634 { 0x2a42, 0x1025, 0x0212, quirk_invert_brightness },
11635
11636 /* Acer/Packard Bell NCL20 */
11637 { 0x2a42, 0x1025, 0x034b, quirk_invert_brightness },
11638
11639 /* Acer Aspire 4736Z */
11640 { 0x2a42, 0x1025, 0x0260, quirk_invert_brightness },
Jani Nikula0f540c32014-01-13 17:30:34 +020011641
11642 /* Acer Aspire 5336 */
11643 { 0x2a42, 0x1025, 0x048a, quirk_invert_brightness },
Jesse Barnesb690e962010-07-19 13:53:12 -070011644};
11645
11646static void intel_init_quirks(struct drm_device *dev)
11647{
11648 struct pci_dev *d = dev->pdev;
11649 int i;
11650
11651 for (i = 0; i < ARRAY_SIZE(intel_quirks); i++) {
11652 struct intel_quirk *q = &intel_quirks[i];
11653
11654 if (d->device == q->device &&
11655 (d->subsystem_vendor == q->subsystem_vendor ||
11656 q->subsystem_vendor == PCI_ANY_ID) &&
11657 (d->subsystem_device == q->subsystem_device ||
11658 q->subsystem_device == PCI_ANY_ID))
11659 q->hook(dev);
11660 }
Egbert Eich5f85f1762012-10-14 15:46:38 +020011661 for (i = 0; i < ARRAY_SIZE(intel_dmi_quirks); i++) {
11662 if (dmi_check_system(*intel_dmi_quirks[i].dmi_id_list) != 0)
11663 intel_dmi_quirks[i].hook(dev);
11664 }
Jesse Barnesb690e962010-07-19 13:53:12 -070011665}
11666
Jesse Barnes9cce37f2010-08-13 15:11:26 -070011667/* Disable the VGA plane that we never use */
11668static void i915_disable_vga(struct drm_device *dev)
11669{
11670 struct drm_i915_private *dev_priv = dev->dev_private;
11671 u8 sr1;
Ville Syrjälä766aa1c2013-01-25 21:44:46 +020011672 u32 vga_reg = i915_vgacntrl_reg(dev);
Jesse Barnes9cce37f2010-08-13 15:11:26 -070011673
Ville Syrjälä2b37c612014-01-22 21:32:38 +020011674 /* WaEnableVGAAccessThroughIOPort:ctg,elk,ilk,snb,ivb,vlv,hsw */
Jesse Barnes9cce37f2010-08-13 15:11:26 -070011675 vga_get_uninterruptible(dev->pdev, VGA_RSRC_LEGACY_IO);
Jesse Barnes3fdcf432012-04-06 11:46:27 -070011676 outb(SR01, VGA_SR_INDEX);
Jesse Barnes9cce37f2010-08-13 15:11:26 -070011677 sr1 = inb(VGA_SR_DATA);
11678 outb(sr1 | 1<<5, VGA_SR_DATA);
11679 vga_put(dev->pdev, VGA_RSRC_LEGACY_IO);
11680 udelay(300);
11681
11682 I915_WRITE(vga_reg, VGA_DISP_DISABLE);
11683 POSTING_READ(vga_reg);
11684}
11685
Daniel Vetterf8175862012-04-10 15:50:11 +020011686void intel_modeset_init_hw(struct drm_device *dev)
11687{
Eugeni Dodonova8f78b52012-06-28 15:55:35 -030011688 intel_prepare_ddi(dev);
11689
Daniel Vetterf8175862012-04-10 15:50:11 +020011690 intel_init_clock_gating(dev);
11691
Jesse Barnes5382f5f352013-12-16 16:34:24 -080011692 intel_reset_dpio(dev);
Jesse Barnes40e9cf62013-10-03 11:35:46 -070011693
Daniel Vetter8090c6b2012-06-24 16:42:32 +020011694 intel_enable_gt_powersave(dev);
Daniel Vetterf8175862012-04-10 15:50:11 +020011695}
11696
Imre Deak7d708ee2013-04-17 14:04:50 +030011697void intel_modeset_suspend_hw(struct drm_device *dev)
11698{
11699 intel_suspend_hw(dev);
11700}
11701
Jesse Barnes79e53942008-11-07 14:24:08 -080011702void intel_modeset_init(struct drm_device *dev)
11703{
Jesse Barnes652c3932009-08-17 13:31:43 -070011704 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiau1fe47782014-03-03 17:31:47 +000011705 int sprite, ret;
Damien Lespiau8cc87b72014-03-03 17:31:44 +000011706 enum pipe pipe;
Jesse Barnes46f297f2014-03-07 08:57:48 -080011707 struct intel_crtc *crtc;
Jesse Barnes79e53942008-11-07 14:24:08 -080011708
11709 drm_mode_config_init(dev);
11710
11711 dev->mode_config.min_width = 0;
11712 dev->mode_config.min_height = 0;
11713
Dave Airlie019d96c2011-09-29 16:20:42 +010011714 dev->mode_config.preferred_depth = 24;
11715 dev->mode_config.prefer_shadow = 1;
11716
Laurent Pincharte6ecefa2012-05-17 13:27:23 +020011717 dev->mode_config.funcs = &intel_mode_funcs;
Jesse Barnes79e53942008-11-07 14:24:08 -080011718
Jesse Barnesb690e962010-07-19 13:53:12 -070011719 intel_init_quirks(dev);
11720
Eugeni Dodonov1fa61102012-04-18 15:29:26 -030011721 intel_init_pm(dev);
11722
Ben Widawskye3c74752013-04-05 13:12:39 -070011723 if (INTEL_INFO(dev)->num_pipes == 0)
11724 return;
11725
Jesse Barnese70236a2009-09-21 10:42:27 -070011726 intel_init_display(dev);
11727
Chris Wilsona6c45cf2010-09-17 00:32:17 +010011728 if (IS_GEN2(dev)) {
11729 dev->mode_config.max_width = 2048;
11730 dev->mode_config.max_height = 2048;
11731 } else if (IS_GEN3(dev)) {
Keith Packard5e4d6fa2009-07-12 23:53:17 -070011732 dev->mode_config.max_width = 4096;
11733 dev->mode_config.max_height = 4096;
Jesse Barnes79e53942008-11-07 14:24:08 -080011734 } else {
Chris Wilsona6c45cf2010-09-17 00:32:17 +010011735 dev->mode_config.max_width = 8192;
11736 dev->mode_config.max_height = 8192;
Jesse Barnes79e53942008-11-07 14:24:08 -080011737 }
Damien Lespiau068be562014-03-28 14:17:49 +000011738
11739 if (IS_GEN2(dev)) {
11740 dev->mode_config.cursor_width = GEN2_CURSOR_WIDTH;
11741 dev->mode_config.cursor_height = GEN2_CURSOR_HEIGHT;
11742 } else {
11743 dev->mode_config.cursor_width = MAX_CURSOR_WIDTH;
11744 dev->mode_config.cursor_height = MAX_CURSOR_HEIGHT;
11745 }
11746
Ben Widawsky5d4545a2013-01-17 12:45:15 -080011747 dev->mode_config.fb_base = dev_priv->gtt.mappable_base;
Jesse Barnes79e53942008-11-07 14:24:08 -080011748
Zhao Yakui28c97732009-10-09 11:39:41 +080011749 DRM_DEBUG_KMS("%d display pipe%s available.\n",
Ben Widawsky7eb552a2013-03-13 14:05:41 -070011750 INTEL_INFO(dev)->num_pipes,
11751 INTEL_INFO(dev)->num_pipes > 1 ? "s" : "");
Jesse Barnes79e53942008-11-07 14:24:08 -080011752
Damien Lespiau8cc87b72014-03-03 17:31:44 +000011753 for_each_pipe(pipe) {
11754 intel_crtc_init(dev, pipe);
Damien Lespiau1fe47782014-03-03 17:31:47 +000011755 for_each_sprite(pipe, sprite) {
11756 ret = intel_plane_init(dev, pipe, sprite);
Jesse Barnes7f1f3852013-04-02 11:22:20 -070011757 if (ret)
Ville Syrjälä06da8da2013-04-17 17:48:51 +030011758 DRM_DEBUG_KMS("pipe %c sprite %c init failed: %d\n",
Damien Lespiau1fe47782014-03-03 17:31:47 +000011759 pipe_name(pipe), sprite_name(pipe, sprite), ret);
Jesse Barnes7f1f3852013-04-02 11:22:20 -070011760 }
Jesse Barnes79e53942008-11-07 14:24:08 -080011761 }
11762
Jesse Barnesf42bb702013-12-16 16:34:23 -080011763 intel_init_dpio(dev);
Jesse Barnes5382f5f352013-12-16 16:34:24 -080011764 intel_reset_dpio(dev);
Jesse Barnesf42bb702013-12-16 16:34:23 -080011765
Paulo Zanoni79f689a2012-10-05 12:05:52 -030011766 intel_cpu_pll_init(dev);
Daniel Vettere72f9fb2013-06-05 13:34:06 +020011767 intel_shared_dpll_init(dev);
Jesse Barnesee7b9f92012-04-20 17:11:53 +010011768
Jesse Barnes9cce37f2010-08-13 15:11:26 -070011769 /* Just disable it once at startup */
11770 i915_disable_vga(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -080011771 intel_setup_outputs(dev);
Chris Wilson11be49e2012-11-15 11:32:20 +000011772
11773 /* Just in case the BIOS is doing something questionable. */
11774 intel_disable_fbc(dev);
Jesse Barnesfa9fa082014-02-11 15:28:56 -080011775
Daniel Vetter6e9f7982014-05-29 23:54:47 +020011776 drm_modeset_lock_all(dev);
Jesse Barnesfa9fa082014-02-11 15:28:56 -080011777 intel_modeset_setup_hw_state(dev, false);
Daniel Vetter6e9f7982014-05-29 23:54:47 +020011778 drm_modeset_unlock_all(dev);
Jesse Barnes46f297f2014-03-07 08:57:48 -080011779
Damien Lespiaud3fcc802014-05-13 23:32:22 +010011780 for_each_intel_crtc(dev, crtc) {
Jesse Barnes46f297f2014-03-07 08:57:48 -080011781 if (!crtc->active)
11782 continue;
11783
Jesse Barnes46f297f2014-03-07 08:57:48 -080011784 /*
Jesse Barnes46f297f2014-03-07 08:57:48 -080011785 * Note that reserving the BIOS fb up front prevents us
11786 * from stuffing other stolen allocations like the ring
11787 * on top. This prevents some ugliness at boot time, and
11788 * can even allow for smooth boot transitions if the BIOS
11789 * fb is large enough for the active pipe configuration.
11790 */
11791 if (dev_priv->display.get_plane_config) {
11792 dev_priv->display.get_plane_config(crtc,
11793 &crtc->plane_config);
11794 /*
11795 * If the fb is shared between multiple heads, we'll
11796 * just get the first one.
11797 */
Jesse Barnes484b41d2014-03-07 08:57:55 -080011798 intel_find_plane_obj(crtc, &crtc->plane_config);
Jesse Barnes46f297f2014-03-07 08:57:48 -080011799 }
Jesse Barnes46f297f2014-03-07 08:57:48 -080011800 }
Chris Wilson2c7111d2011-03-29 10:40:27 +010011801}
Jesse Barnesd5bb0812011-01-05 12:01:26 -080011802
Daniel Vetter24929352012-07-02 20:28:59 +020011803static void
11804intel_connector_break_all_links(struct intel_connector *connector)
11805{
11806 connector->base.dpms = DRM_MODE_DPMS_OFF;
11807 connector->base.encoder = NULL;
11808 connector->encoder->connectors_active = false;
11809 connector->encoder->base.crtc = NULL;
11810}
11811
Daniel Vetter7fad7982012-07-04 17:51:47 +020011812static void intel_enable_pipe_a(struct drm_device *dev)
11813{
11814 struct intel_connector *connector;
11815 struct drm_connector *crt = NULL;
11816 struct intel_load_detect_pipe load_detect_temp;
Rob Clark51fd3712013-11-19 12:10:12 -050011817 struct drm_modeset_acquire_ctx ctx;
Daniel Vetter7fad7982012-07-04 17:51:47 +020011818
11819 /* We can't just switch on the pipe A, we need to set things up with a
11820 * proper mode and output configuration. As a gross hack, enable pipe A
11821 * by enabling the load detect pipe once. */
11822 list_for_each_entry(connector,
11823 &dev->mode_config.connector_list,
11824 base.head) {
11825 if (connector->encoder->type == INTEL_OUTPUT_ANALOG) {
11826 crt = &connector->base;
11827 break;
11828 }
11829 }
11830
11831 if (!crt)
11832 return;
11833
Rob Clark51fd3712013-11-19 12:10:12 -050011834 if (intel_get_load_detect_pipe(crt, NULL, &load_detect_temp, &ctx))
11835 intel_release_load_detect_pipe(crt, &load_detect_temp, &ctx);
Daniel Vetter7fad7982012-07-04 17:51:47 +020011836
11837
11838}
11839
Daniel Vetterfa555832012-10-10 23:14:00 +020011840static bool
11841intel_check_plane_mapping(struct intel_crtc *crtc)
11842{
Ben Widawsky7eb552a2013-03-13 14:05:41 -070011843 struct drm_device *dev = crtc->base.dev;
11844 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterfa555832012-10-10 23:14:00 +020011845 u32 reg, val;
11846
Ben Widawsky7eb552a2013-03-13 14:05:41 -070011847 if (INTEL_INFO(dev)->num_pipes == 1)
Daniel Vetterfa555832012-10-10 23:14:00 +020011848 return true;
11849
11850 reg = DSPCNTR(!crtc->plane);
11851 val = I915_READ(reg);
11852
11853 if ((val & DISPLAY_PLANE_ENABLE) &&
11854 (!!(val & DISPPLANE_SEL_PIPE_MASK) == crtc->pipe))
11855 return false;
11856
11857 return true;
11858}
11859
Daniel Vetter24929352012-07-02 20:28:59 +020011860static void intel_sanitize_crtc(struct intel_crtc *crtc)
11861{
11862 struct drm_device *dev = crtc->base.dev;
11863 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterfa555832012-10-10 23:14:00 +020011864 u32 reg;
Daniel Vetter24929352012-07-02 20:28:59 +020011865
Daniel Vetter24929352012-07-02 20:28:59 +020011866 /* Clear any frame start delays used for debugging left by the BIOS */
Daniel Vetter3b117c82013-04-17 20:15:07 +020011867 reg = PIPECONF(crtc->config.cpu_transcoder);
Daniel Vetter24929352012-07-02 20:28:59 +020011868 I915_WRITE(reg, I915_READ(reg) & ~PIPECONF_FRAME_START_DELAY_MASK);
11869
Ville Syrjäläd3eaf882014-05-20 17:20:05 +030011870 /* restore vblank interrupts to correct state */
11871 if (crtc->active)
11872 drm_vblank_on(dev, crtc->pipe);
11873 else
11874 drm_vblank_off(dev, crtc->pipe);
11875
Daniel Vetter24929352012-07-02 20:28:59 +020011876 /* We need to sanitize the plane -> pipe mapping first because this will
Daniel Vetterfa555832012-10-10 23:14:00 +020011877 * disable the crtc (and hence change the state) if it is wrong. Note
11878 * that gen4+ has a fixed plane -> pipe mapping. */
11879 if (INTEL_INFO(dev)->gen < 4 && !intel_check_plane_mapping(crtc)) {
Daniel Vetter24929352012-07-02 20:28:59 +020011880 struct intel_connector *connector;
11881 bool plane;
11882
Daniel Vetter24929352012-07-02 20:28:59 +020011883 DRM_DEBUG_KMS("[CRTC:%d] wrong plane connection detected!\n",
11884 crtc->base.base.id);
11885
11886 /* Pipe has the wrong plane attached and the plane is active.
11887 * Temporarily change the plane mapping and disable everything
11888 * ... */
11889 plane = crtc->plane;
11890 crtc->plane = !plane;
11891 dev_priv->display.crtc_disable(&crtc->base);
11892 crtc->plane = plane;
11893
11894 /* ... and break all links. */
11895 list_for_each_entry(connector, &dev->mode_config.connector_list,
11896 base.head) {
11897 if (connector->encoder->base.crtc != &crtc->base)
11898 continue;
11899
11900 intel_connector_break_all_links(connector);
11901 }
11902
11903 WARN_ON(crtc->active);
11904 crtc->base.enabled = false;
11905 }
Daniel Vetter24929352012-07-02 20:28:59 +020011906
Daniel Vetter7fad7982012-07-04 17:51:47 +020011907 if (dev_priv->quirks & QUIRK_PIPEA_FORCE &&
11908 crtc->pipe == PIPE_A && !crtc->active) {
11909 /* BIOS forgot to enable pipe A, this mostly happens after
11910 * resume. Force-enable the pipe to fix this, the update_dpms
11911 * call below we restore the pipe to the right state, but leave
11912 * the required bits on. */
11913 intel_enable_pipe_a(dev);
11914 }
11915
Daniel Vetter24929352012-07-02 20:28:59 +020011916 /* Adjust the state of the output pipe according to whether we
11917 * have active connectors/encoders. */
11918 intel_crtc_update_dpms(&crtc->base);
11919
11920 if (crtc->active != crtc->base.enabled) {
11921 struct intel_encoder *encoder;
11922
11923 /* This can happen either due to bugs in the get_hw_state
11924 * functions or because the pipe is force-enabled due to the
11925 * pipe A quirk. */
11926 DRM_DEBUG_KMS("[CRTC:%d] hw state adjusted, was %s, now %s\n",
11927 crtc->base.base.id,
11928 crtc->base.enabled ? "enabled" : "disabled",
11929 crtc->active ? "enabled" : "disabled");
11930
11931 crtc->base.enabled = crtc->active;
11932
11933 /* Because we only establish the connector -> encoder ->
11934 * crtc links if something is active, this means the
11935 * crtc is now deactivated. Break the links. connector
11936 * -> encoder links are only establish when things are
11937 * actually up, hence no need to break them. */
11938 WARN_ON(crtc->active);
11939
11940 for_each_encoder_on_crtc(dev, &crtc->base, encoder) {
11941 WARN_ON(encoder->connectors_active);
11942 encoder->base.crtc = NULL;
11943 }
11944 }
Daniel Vetterc5ab3bc2014-05-14 15:40:34 +020011945
11946 if (crtc->active || IS_VALLEYVIEW(dev) || INTEL_INFO(dev)->gen < 5) {
Daniel Vetter4cc31482014-03-24 00:01:41 +010011947 /*
11948 * We start out with underrun reporting disabled to avoid races.
11949 * For correct bookkeeping mark this on active crtcs.
11950 *
Daniel Vetterc5ab3bc2014-05-14 15:40:34 +020011951 * Also on gmch platforms we dont have any hardware bits to
11952 * disable the underrun reporting. Which means we need to start
11953 * out with underrun reporting disabled also on inactive pipes,
11954 * since otherwise we'll complain about the garbage we read when
11955 * e.g. coming up after runtime pm.
11956 *
Daniel Vetter4cc31482014-03-24 00:01:41 +010011957 * No protection against concurrent access is required - at
11958 * worst a fifo underrun happens which also sets this to false.
11959 */
11960 crtc->cpu_fifo_underrun_disabled = true;
11961 crtc->pch_fifo_underrun_disabled = true;
Ville Syrjälä80715b22014-05-15 20:23:23 +030011962
11963 update_scanline_offset(crtc);
Daniel Vetter4cc31482014-03-24 00:01:41 +010011964 }
Daniel Vetter24929352012-07-02 20:28:59 +020011965}
11966
11967static void intel_sanitize_encoder(struct intel_encoder *encoder)
11968{
11969 struct intel_connector *connector;
11970 struct drm_device *dev = encoder->base.dev;
11971
11972 /* We need to check both for a crtc link (meaning that the
11973 * encoder is active and trying to read from a pipe) and the
11974 * pipe itself being active. */
11975 bool has_active_crtc = encoder->base.crtc &&
11976 to_intel_crtc(encoder->base.crtc)->active;
11977
11978 if (encoder->connectors_active && !has_active_crtc) {
11979 DRM_DEBUG_KMS("[ENCODER:%d:%s] has active connectors but no active pipe!\n",
11980 encoder->base.base.id,
Jani Nikula8e329a02014-06-03 14:56:21 +030011981 encoder->base.name);
Daniel Vetter24929352012-07-02 20:28:59 +020011982
11983 /* Connector is active, but has no active pipe. This is
11984 * fallout from our resume register restoring. Disable
11985 * the encoder manually again. */
11986 if (encoder->base.crtc) {
11987 DRM_DEBUG_KMS("[ENCODER:%d:%s] manually disabled\n",
11988 encoder->base.base.id,
Jani Nikula8e329a02014-06-03 14:56:21 +030011989 encoder->base.name);
Daniel Vetter24929352012-07-02 20:28:59 +020011990 encoder->disable(encoder);
11991 }
11992
11993 /* Inconsistent output/port/pipe state happens presumably due to
11994 * a bug in one of the get_hw_state functions. Or someplace else
11995 * in our code, like the register restore mess on resume. Clamp
11996 * things to off as a safer default. */
11997 list_for_each_entry(connector,
11998 &dev->mode_config.connector_list,
11999 base.head) {
12000 if (connector->encoder != encoder)
12001 continue;
12002
12003 intel_connector_break_all_links(connector);
12004 }
12005 }
12006 /* Enabled encoders without active connectors will be fixed in
12007 * the crtc fixup. */
12008}
12009
Imre Deak04098752014-02-18 00:02:16 +020012010void i915_redisable_vga_power_on(struct drm_device *dev)
Krzysztof Mazur0fde9012012-12-19 11:03:41 +010012011{
12012 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä766aa1c2013-01-25 21:44:46 +020012013 u32 vga_reg = i915_vgacntrl_reg(dev);
Krzysztof Mazur0fde9012012-12-19 11:03:41 +010012014
Imre Deak04098752014-02-18 00:02:16 +020012015 if (!(I915_READ(vga_reg) & VGA_DISP_DISABLE)) {
12016 DRM_DEBUG_KMS("Something enabled VGA plane, disabling it\n");
12017 i915_disable_vga(dev);
12018 }
12019}
12020
12021void i915_redisable_vga(struct drm_device *dev)
12022{
12023 struct drm_i915_private *dev_priv = dev->dev_private;
12024
Paulo Zanoni8dc8a272013-08-02 16:22:24 -030012025 /* This function can be called both from intel_modeset_setup_hw_state or
12026 * at a very early point in our resume sequence, where the power well
12027 * structures are not yet restored. Since this function is at a very
12028 * paranoid "someone might have enabled VGA while we were not looking"
12029 * level, just check if the power well is enabled instead of trying to
12030 * follow the "don't touch the power well if we don't need it" policy
12031 * the rest of the driver uses. */
Imre Deak04098752014-02-18 00:02:16 +020012032 if (!intel_display_power_enabled(dev_priv, POWER_DOMAIN_VGA))
Paulo Zanoni8dc8a272013-08-02 16:22:24 -030012033 return;
12034
Imre Deak04098752014-02-18 00:02:16 +020012035 i915_redisable_vga_power_on(dev);
Krzysztof Mazur0fde9012012-12-19 11:03:41 +010012036}
12037
Ville Syrjälä98ec7732014-04-30 17:43:01 +030012038static bool primary_get_hw_state(struct intel_crtc *crtc)
12039{
12040 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
12041
12042 if (!crtc->active)
12043 return false;
12044
12045 return I915_READ(DSPCNTR(crtc->plane)) & DISPLAY_PLANE_ENABLE;
12046}
12047
Daniel Vetter30e984d2013-06-05 13:34:17 +020012048static void intel_modeset_readout_hw_state(struct drm_device *dev)
Daniel Vetter24929352012-07-02 20:28:59 +020012049{
12050 struct drm_i915_private *dev_priv = dev->dev_private;
12051 enum pipe pipe;
Daniel Vetter24929352012-07-02 20:28:59 +020012052 struct intel_crtc *crtc;
12053 struct intel_encoder *encoder;
12054 struct intel_connector *connector;
Daniel Vetter53589012013-06-05 13:34:16 +020012055 int i;
Daniel Vetter24929352012-07-02 20:28:59 +020012056
Damien Lespiaud3fcc802014-05-13 23:32:22 +010012057 for_each_intel_crtc(dev, crtc) {
Daniel Vetter88adfff2013-03-28 10:42:01 +010012058 memset(&crtc->config, 0, sizeof(crtc->config));
Daniel Vetter3b117c82013-04-17 20:15:07 +020012059
Daniel Vetter99535992014-04-13 12:00:33 +020012060 crtc->config.quirks |= PIPE_CONFIG_QUIRK_INHERITED_MODE;
12061
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010012062 crtc->active = dev_priv->display.get_pipe_config(crtc,
12063 &crtc->config);
Daniel Vetter24929352012-07-02 20:28:59 +020012064
12065 crtc->base.enabled = crtc->active;
Ville Syrjälä98ec7732014-04-30 17:43:01 +030012066 crtc->primary_enabled = primary_get_hw_state(crtc);
Daniel Vetter24929352012-07-02 20:28:59 +020012067
12068 DRM_DEBUG_KMS("[CRTC:%d] hw state readout: %s\n",
12069 crtc->base.base.id,
12070 crtc->active ? "enabled" : "disabled");
12071 }
12072
Daniel Vetter53589012013-06-05 13:34:16 +020012073 /* FIXME: Smash this into the new shared dpll infrastructure. */
Paulo Zanoniaffa9352012-11-23 15:30:39 -020012074 if (HAS_DDI(dev))
Paulo Zanoni6441ab52012-10-05 12:05:58 -030012075 intel_ddi_setup_hw_pll_state(dev);
12076
Daniel Vetter53589012013-06-05 13:34:16 +020012077 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
12078 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
12079
12080 pll->on = pll->get_hw_state(dev_priv, pll, &pll->hw_state);
12081 pll->active = 0;
Damien Lespiaud3fcc802014-05-13 23:32:22 +010012082 for_each_intel_crtc(dev, crtc) {
Daniel Vetter53589012013-06-05 13:34:16 +020012083 if (crtc->active && intel_crtc_to_shared_dpll(crtc) == pll)
12084 pll->active++;
12085 }
12086 pll->refcount = pll->active;
12087
Daniel Vetter35c95372013-07-17 06:55:04 +020012088 DRM_DEBUG_KMS("%s hw state readout: refcount %i, on %i\n",
12089 pll->name, pll->refcount, pll->on);
Daniel Vetter53589012013-06-05 13:34:16 +020012090 }
12091
Daniel Vetter24929352012-07-02 20:28:59 +020012092 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
12093 base.head) {
12094 pipe = 0;
12095
12096 if (encoder->get_hw_state(encoder, &pipe)) {
Jesse Barnes045ac3b2013-05-14 17:08:26 -070012097 crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
12098 encoder->base.crtc = &crtc->base;
Daniel Vetter1d37b682013-11-18 09:00:59 +010012099 encoder->get_config(encoder, &crtc->config);
Daniel Vetter24929352012-07-02 20:28:59 +020012100 } else {
12101 encoder->base.crtc = NULL;
12102 }
12103
12104 encoder->connectors_active = false;
Damien Lespiau6f2bcce2013-10-16 12:29:54 +010012105 DRM_DEBUG_KMS("[ENCODER:%d:%s] hw state readout: %s, pipe %c\n",
Daniel Vetter24929352012-07-02 20:28:59 +020012106 encoder->base.base.id,
Jani Nikula8e329a02014-06-03 14:56:21 +030012107 encoder->base.name,
Daniel Vetter24929352012-07-02 20:28:59 +020012108 encoder->base.crtc ? "enabled" : "disabled",
Damien Lespiau6f2bcce2013-10-16 12:29:54 +010012109 pipe_name(pipe));
Daniel Vetter24929352012-07-02 20:28:59 +020012110 }
12111
12112 list_for_each_entry(connector, &dev->mode_config.connector_list,
12113 base.head) {
12114 if (connector->get_hw_state(connector)) {
12115 connector->base.dpms = DRM_MODE_DPMS_ON;
12116 connector->encoder->connectors_active = true;
12117 connector->base.encoder = &connector->encoder->base;
12118 } else {
12119 connector->base.dpms = DRM_MODE_DPMS_OFF;
12120 connector->base.encoder = NULL;
12121 }
12122 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] hw state readout: %s\n",
12123 connector->base.base.id,
Jani Nikulac23cc412014-06-03 14:56:17 +030012124 connector->base.name,
Daniel Vetter24929352012-07-02 20:28:59 +020012125 connector->base.encoder ? "enabled" : "disabled");
12126 }
Daniel Vetter30e984d2013-06-05 13:34:17 +020012127}
12128
12129/* Scan out the current hw modeset state, sanitizes it and maps it into the drm
12130 * and i915 state tracking structures. */
12131void intel_modeset_setup_hw_state(struct drm_device *dev,
12132 bool force_restore)
12133{
12134 struct drm_i915_private *dev_priv = dev->dev_private;
12135 enum pipe pipe;
Daniel Vetter30e984d2013-06-05 13:34:17 +020012136 struct intel_crtc *crtc;
12137 struct intel_encoder *encoder;
Daniel Vetter35c95372013-07-17 06:55:04 +020012138 int i;
Daniel Vetter30e984d2013-06-05 13:34:17 +020012139
12140 intel_modeset_readout_hw_state(dev);
Daniel Vetter24929352012-07-02 20:28:59 +020012141
Jesse Barnesbabea612013-06-26 18:57:38 +030012142 /*
12143 * Now that we have the config, copy it to each CRTC struct
12144 * Note that this could go away if we move to using crtc_config
12145 * checking everywhere.
12146 */
Damien Lespiaud3fcc802014-05-13 23:32:22 +010012147 for_each_intel_crtc(dev, crtc) {
Jani Nikulad330a952014-01-21 11:24:25 +020012148 if (crtc->active && i915.fastboot) {
Daniel Vetterf6a83282014-02-11 15:28:57 -080012149 intel_mode_from_pipe_config(&crtc->base.mode, &crtc->config);
Jesse Barnesbabea612013-06-26 18:57:38 +030012150 DRM_DEBUG_KMS("[CRTC:%d] found active mode: ",
12151 crtc->base.base.id);
12152 drm_mode_debug_printmodeline(&crtc->base.mode);
12153 }
12154 }
12155
Daniel Vetter24929352012-07-02 20:28:59 +020012156 /* HW state is read out, now we need to sanitize this mess. */
12157 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
12158 base.head) {
12159 intel_sanitize_encoder(encoder);
12160 }
12161
12162 for_each_pipe(pipe) {
12163 crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
12164 intel_sanitize_crtc(crtc);
Daniel Vetterc0b03412013-05-28 12:05:54 +020012165 intel_dump_pipe_config(crtc, &crtc->config, "[setup_hw_state]");
Daniel Vetter24929352012-07-02 20:28:59 +020012166 }
Daniel Vetter9a935852012-07-05 22:34:27 +020012167
Daniel Vetter35c95372013-07-17 06:55:04 +020012168 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
12169 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
12170
12171 if (!pll->on || pll->active)
12172 continue;
12173
12174 DRM_DEBUG_KMS("%s enabled but not in use, disabling\n", pll->name);
12175
12176 pll->disable(dev_priv, pll);
12177 pll->on = false;
12178 }
12179
Ville Syrjälä96f90c52013-12-05 15:51:38 +020012180 if (HAS_PCH_SPLIT(dev))
Ville Syrjälä243e6a42013-10-14 14:55:24 +030012181 ilk_wm_get_hw_state(dev);
12182
Daniel Vetter45e2b5f2012-11-23 18:16:34 +010012183 if (force_restore) {
Ville Syrjälä7d0bc1e2013-09-16 17:38:33 +030012184 i915_redisable_vga(dev);
12185
Daniel Vetterf30da182013-04-11 20:22:50 +020012186 /*
12187 * We need to use raw interfaces for restoring state to avoid
12188 * checking (bogus) intermediate states.
12189 */
Daniel Vetter45e2b5f2012-11-23 18:16:34 +010012190 for_each_pipe(pipe) {
Jesse Barnesb5644d02013-03-26 13:25:27 -070012191 struct drm_crtc *crtc =
12192 dev_priv->pipe_to_crtc_mapping[pipe];
Daniel Vetterf30da182013-04-11 20:22:50 +020012193
12194 __intel_set_mode(crtc, &crtc->mode, crtc->x, crtc->y,
Matt Roperf4510a22014-04-01 15:22:40 -070012195 crtc->primary->fb);
Daniel Vetter45e2b5f2012-11-23 18:16:34 +010012196 }
12197 } else {
12198 intel_modeset_update_staged_output_state(dev);
12199 }
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012200
12201 intel_modeset_check_state(dev);
Chris Wilson2c7111d2011-03-29 10:40:27 +010012202}
12203
12204void intel_modeset_gem_init(struct drm_device *dev)
12205{
Jesse Barnes484b41d2014-03-07 08:57:55 -080012206 struct drm_crtc *c;
12207 struct intel_framebuffer *fb;
12208
Imre Deakae484342014-03-31 15:10:44 +030012209 mutex_lock(&dev->struct_mutex);
12210 intel_init_gt_powersave(dev);
12211 mutex_unlock(&dev->struct_mutex);
12212
Chris Wilson1833b132012-05-09 11:56:28 +010012213 intel_modeset_init_hw(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +020012214
12215 intel_setup_overlay(dev);
Jesse Barnes484b41d2014-03-07 08:57:55 -080012216
12217 /*
12218 * Make sure any fbs we allocated at startup are properly
12219 * pinned & fenced. When we do the allocation it's too early
12220 * for this.
12221 */
12222 mutex_lock(&dev->struct_mutex);
Damien Lespiau70e1e0e2014-05-13 23:32:24 +010012223 for_each_crtc(dev, c) {
Dave Airlie66e514c2014-04-03 07:51:54 +100012224 if (!c->primary->fb)
Jesse Barnes484b41d2014-03-07 08:57:55 -080012225 continue;
12226
Dave Airlie66e514c2014-04-03 07:51:54 +100012227 fb = to_intel_framebuffer(c->primary->fb);
Jesse Barnes484b41d2014-03-07 08:57:55 -080012228 if (intel_pin_and_fence_fb_obj(dev, fb->obj, NULL)) {
12229 DRM_ERROR("failed to pin boot fb on pipe %d\n",
12230 to_intel_crtc(c)->pipe);
Dave Airlie66e514c2014-04-03 07:51:54 +100012231 drm_framebuffer_unreference(c->primary->fb);
12232 c->primary->fb = NULL;
Jesse Barnes484b41d2014-03-07 08:57:55 -080012233 }
12234 }
12235 mutex_unlock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -080012236}
12237
Imre Deak4932e2c2014-02-11 17:12:48 +020012238void intel_connector_unregister(struct intel_connector *intel_connector)
12239{
12240 struct drm_connector *connector = &intel_connector->base;
12241
12242 intel_panel_destroy_backlight(connector);
12243 drm_sysfs_connector_remove(connector);
12244}
12245
Jesse Barnes79e53942008-11-07 14:24:08 -080012246void intel_modeset_cleanup(struct drm_device *dev)
12247{
Jesse Barnes652c3932009-08-17 13:31:43 -070012248 struct drm_i915_private *dev_priv = dev->dev_private;
12249 struct drm_crtc *crtc;
Paulo Zanonid9255d52013-09-26 20:05:59 -030012250 struct drm_connector *connector;
Jesse Barnes652c3932009-08-17 13:31:43 -070012251
Daniel Vetterfd0c0642013-04-24 11:13:35 +020012252 /*
12253 * Interrupts and polling as the first thing to avoid creating havoc.
12254 * Too much stuff here (turning of rps, connectors, ...) would
12255 * experience fancy races otherwise.
12256 */
12257 drm_irq_uninstall(dev);
12258 cancel_work_sync(&dev_priv->hotplug_work);
12259 /*
12260 * Due to the hpd irq storm handling the hotplug work can re-arm the
12261 * poll handlers. Hence disable polling after hpd handling is shut down.
12262 */
Keith Packardf87ea762010-10-03 19:36:26 -070012263 drm_kms_helper_poll_fini(dev);
Daniel Vetterfd0c0642013-04-24 11:13:35 +020012264
Jesse Barnes652c3932009-08-17 13:31:43 -070012265 mutex_lock(&dev->struct_mutex);
12266
Jesse Barnes723bfd72010-10-07 16:01:13 -070012267 intel_unregister_dsm_handler();
12268
Damien Lespiau70e1e0e2014-05-13 23:32:24 +010012269 for_each_crtc(dev, crtc) {
Jesse Barnes652c3932009-08-17 13:31:43 -070012270 /* Skip inactive CRTCs */
Matt Roperf4510a22014-04-01 15:22:40 -070012271 if (!crtc->primary->fb)
Jesse Barnes652c3932009-08-17 13:31:43 -070012272 continue;
12273
Daniel Vetter3dec0092010-08-20 21:40:52 +020012274 intel_increase_pllclock(crtc);
Jesse Barnes652c3932009-08-17 13:31:43 -070012275 }
12276
Chris Wilson973d04f2011-07-08 12:22:37 +010012277 intel_disable_fbc(dev);
Jesse Barnese70236a2009-09-21 10:42:27 -070012278
Daniel Vetter8090c6b2012-06-24 16:42:32 +020012279 intel_disable_gt_powersave(dev);
Chris Wilson0cdab212010-12-05 17:27:06 +000012280
Daniel Vetter930ebb42012-06-29 23:32:16 +020012281 ironlake_teardown_rc6(dev);
12282
Kristian Høgsberg69341a52009-11-11 12:19:17 -050012283 mutex_unlock(&dev->struct_mutex);
12284
Chris Wilson1630fe72011-07-08 12:22:42 +010012285 /* flush any delayed tasks or pending work */
12286 flush_scheduled_work();
12287
Jani Nikuladb31af12013-11-08 16:48:53 +020012288 /* destroy the backlight and sysfs files before encoders/connectors */
12289 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
Imre Deak4932e2c2014-02-11 17:12:48 +020012290 struct intel_connector *intel_connector;
12291
12292 intel_connector = to_intel_connector(connector);
12293 intel_connector->unregister(intel_connector);
Jani Nikuladb31af12013-11-08 16:48:53 +020012294 }
Paulo Zanonid9255d52013-09-26 20:05:59 -030012295
Jesse Barnes79e53942008-11-07 14:24:08 -080012296 drm_mode_config_cleanup(dev);
Daniel Vetter4d7bb012012-12-18 15:24:37 +010012297
12298 intel_cleanup_overlay(dev);
Imre Deakae484342014-03-31 15:10:44 +030012299
12300 mutex_lock(&dev->struct_mutex);
12301 intel_cleanup_gt_powersave(dev);
12302 mutex_unlock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -080012303}
12304
Dave Airlie28d52042009-09-21 14:33:58 +100012305/*
Zhenyu Wangf1c79df2010-03-30 14:39:29 +080012306 * Return which encoder is currently attached for connector.
12307 */
Chris Wilsondf0e9242010-09-09 16:20:55 +010012308struct drm_encoder *intel_best_encoder(struct drm_connector *connector)
Jesse Barnes79e53942008-11-07 14:24:08 -080012309{
Chris Wilsondf0e9242010-09-09 16:20:55 +010012310 return &intel_attached_encoder(connector)->base;
12311}
Jesse Barnes79e53942008-11-07 14:24:08 -080012312
Chris Wilsondf0e9242010-09-09 16:20:55 +010012313void intel_connector_attach_encoder(struct intel_connector *connector,
12314 struct intel_encoder *encoder)
12315{
12316 connector->encoder = encoder;
12317 drm_mode_connector_attach_encoder(&connector->base,
12318 &encoder->base);
Jesse Barnes79e53942008-11-07 14:24:08 -080012319}
Dave Airlie28d52042009-09-21 14:33:58 +100012320
12321/*
12322 * set vga decode state - true == enable VGA decode
12323 */
12324int intel_modeset_vga_set_state(struct drm_device *dev, bool state)
12325{
12326 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsona885b3c2013-12-17 14:34:50 +000012327 unsigned reg = INTEL_INFO(dev)->gen >= 6 ? SNB_GMCH_CTRL : INTEL_GMCH_CTRL;
Dave Airlie28d52042009-09-21 14:33:58 +100012328 u16 gmch_ctrl;
12329
Chris Wilson75fa0412014-02-07 18:37:02 -020012330 if (pci_read_config_word(dev_priv->bridge_dev, reg, &gmch_ctrl)) {
12331 DRM_ERROR("failed to read control word\n");
12332 return -EIO;
12333 }
12334
Chris Wilsonc0cc8a52014-02-07 18:37:03 -020012335 if (!!(gmch_ctrl & INTEL_GMCH_VGA_DISABLE) == !state)
12336 return 0;
12337
Dave Airlie28d52042009-09-21 14:33:58 +100012338 if (state)
12339 gmch_ctrl &= ~INTEL_GMCH_VGA_DISABLE;
12340 else
12341 gmch_ctrl |= INTEL_GMCH_VGA_DISABLE;
Chris Wilson75fa0412014-02-07 18:37:02 -020012342
12343 if (pci_write_config_word(dev_priv->bridge_dev, reg, gmch_ctrl)) {
12344 DRM_ERROR("failed to write control word\n");
12345 return -EIO;
12346 }
12347
Dave Airlie28d52042009-09-21 14:33:58 +100012348 return 0;
12349}
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012350
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012351struct intel_display_error_state {
Paulo Zanoniff57f1b2013-05-03 12:15:37 -030012352
12353 u32 power_well_driver;
12354
Chris Wilson63b66e52013-08-08 15:12:06 +020012355 int num_transcoders;
12356
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012357 struct intel_cursor_error_state {
12358 u32 control;
12359 u32 position;
12360 u32 base;
12361 u32 size;
Damien Lespiau52331302012-08-15 19:23:25 +010012362 } cursor[I915_MAX_PIPES];
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012363
12364 struct intel_pipe_error_state {
Imre Deakddf9c532013-11-27 22:02:02 +020012365 bool power_domain_on;
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012366 u32 source;
Imre Deakf301b1e2014-04-18 15:55:04 +030012367 u32 stat;
Damien Lespiau52331302012-08-15 19:23:25 +010012368 } pipe[I915_MAX_PIPES];
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012369
12370 struct intel_plane_error_state {
12371 u32 control;
12372 u32 stride;
12373 u32 size;
12374 u32 pos;
12375 u32 addr;
12376 u32 surface;
12377 u32 tile_offset;
Damien Lespiau52331302012-08-15 19:23:25 +010012378 } plane[I915_MAX_PIPES];
Chris Wilson63b66e52013-08-08 15:12:06 +020012379
12380 struct intel_transcoder_error_state {
Imre Deakddf9c532013-11-27 22:02:02 +020012381 bool power_domain_on;
Chris Wilson63b66e52013-08-08 15:12:06 +020012382 enum transcoder cpu_transcoder;
12383
12384 u32 conf;
12385
12386 u32 htotal;
12387 u32 hblank;
12388 u32 hsync;
12389 u32 vtotal;
12390 u32 vblank;
12391 u32 vsync;
12392 } transcoder[4];
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012393};
12394
12395struct intel_display_error_state *
12396intel_display_capture_error_state(struct drm_device *dev)
12397{
Jani Nikulafbee40d2014-03-31 14:27:18 +030012398 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012399 struct intel_display_error_state *error;
Chris Wilson63b66e52013-08-08 15:12:06 +020012400 int transcoders[] = {
12401 TRANSCODER_A,
12402 TRANSCODER_B,
12403 TRANSCODER_C,
12404 TRANSCODER_EDP,
12405 };
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012406 int i;
12407
Chris Wilson63b66e52013-08-08 15:12:06 +020012408 if (INTEL_INFO(dev)->num_pipes == 0)
12409 return NULL;
12410
Paulo Zanoni9d1cb912013-11-01 13:32:08 -020012411 error = kzalloc(sizeof(*error), GFP_ATOMIC);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012412 if (error == NULL)
12413 return NULL;
12414
Imre Deak190be112013-11-25 17:15:31 +020012415 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Paulo Zanoniff57f1b2013-05-03 12:15:37 -030012416 error->power_well_driver = I915_READ(HSW_PWR_WELL_DRIVER);
12417
Damien Lespiau52331302012-08-15 19:23:25 +010012418 for_each_pipe(i) {
Imre Deakddf9c532013-11-27 22:02:02 +020012419 error->pipe[i].power_domain_on =
Imre Deakda7e29b2014-02-18 00:02:02 +020012420 intel_display_power_enabled_sw(dev_priv,
12421 POWER_DOMAIN_PIPE(i));
Imre Deakddf9c532013-11-27 22:02:02 +020012422 if (!error->pipe[i].power_domain_on)
Paulo Zanoni9d1cb912013-11-01 13:32:08 -020012423 continue;
12424
Ville Syrjälä5efb3e22014-04-09 13:28:53 +030012425 error->cursor[i].control = I915_READ(CURCNTR(i));
12426 error->cursor[i].position = I915_READ(CURPOS(i));
12427 error->cursor[i].base = I915_READ(CURBASE(i));
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012428
12429 error->plane[i].control = I915_READ(DSPCNTR(i));
12430 error->plane[i].stride = I915_READ(DSPSTRIDE(i));
Paulo Zanoni80ca3782013-03-22 14:20:57 -030012431 if (INTEL_INFO(dev)->gen <= 3) {
Paulo Zanoni51889b32013-03-06 20:03:13 -030012432 error->plane[i].size = I915_READ(DSPSIZE(i));
Paulo Zanoni80ca3782013-03-22 14:20:57 -030012433 error->plane[i].pos = I915_READ(DSPPOS(i));
12434 }
Paulo Zanonica291362013-03-06 20:03:14 -030012435 if (INTEL_INFO(dev)->gen <= 7 && !IS_HASWELL(dev))
12436 error->plane[i].addr = I915_READ(DSPADDR(i));
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012437 if (INTEL_INFO(dev)->gen >= 4) {
12438 error->plane[i].surface = I915_READ(DSPSURF(i));
12439 error->plane[i].tile_offset = I915_READ(DSPTILEOFF(i));
12440 }
12441
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012442 error->pipe[i].source = I915_READ(PIPESRC(i));
Imre Deakf301b1e2014-04-18 15:55:04 +030012443
12444 if (!HAS_PCH_SPLIT(dev))
12445 error->pipe[i].stat = I915_READ(PIPESTAT(i));
Chris Wilson63b66e52013-08-08 15:12:06 +020012446 }
12447
12448 error->num_transcoders = INTEL_INFO(dev)->num_pipes;
12449 if (HAS_DDI(dev_priv->dev))
12450 error->num_transcoders++; /* Account for eDP. */
12451
12452 for (i = 0; i < error->num_transcoders; i++) {
12453 enum transcoder cpu_transcoder = transcoders[i];
12454
Imre Deakddf9c532013-11-27 22:02:02 +020012455 error->transcoder[i].power_domain_on =
Imre Deakda7e29b2014-02-18 00:02:02 +020012456 intel_display_power_enabled_sw(dev_priv,
Paulo Zanoni38cc1da2013-12-20 15:09:41 -020012457 POWER_DOMAIN_TRANSCODER(cpu_transcoder));
Imre Deakddf9c532013-11-27 22:02:02 +020012458 if (!error->transcoder[i].power_domain_on)
Paulo Zanoni9d1cb912013-11-01 13:32:08 -020012459 continue;
12460
Chris Wilson63b66e52013-08-08 15:12:06 +020012461 error->transcoder[i].cpu_transcoder = cpu_transcoder;
12462
12463 error->transcoder[i].conf = I915_READ(PIPECONF(cpu_transcoder));
12464 error->transcoder[i].htotal = I915_READ(HTOTAL(cpu_transcoder));
12465 error->transcoder[i].hblank = I915_READ(HBLANK(cpu_transcoder));
12466 error->transcoder[i].hsync = I915_READ(HSYNC(cpu_transcoder));
12467 error->transcoder[i].vtotal = I915_READ(VTOTAL(cpu_transcoder));
12468 error->transcoder[i].vblank = I915_READ(VBLANK(cpu_transcoder));
12469 error->transcoder[i].vsync = I915_READ(VSYNC(cpu_transcoder));
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012470 }
12471
12472 return error;
12473}
12474
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030012475#define err_printf(e, ...) i915_error_printf(e, __VA_ARGS__)
12476
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012477void
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030012478intel_display_print_error_state(struct drm_i915_error_state_buf *m,
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012479 struct drm_device *dev,
12480 struct intel_display_error_state *error)
12481{
12482 int i;
12483
Chris Wilson63b66e52013-08-08 15:12:06 +020012484 if (!error)
12485 return;
12486
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030012487 err_printf(m, "Num Pipes: %d\n", INTEL_INFO(dev)->num_pipes);
Imre Deak190be112013-11-25 17:15:31 +020012488 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030012489 err_printf(m, "PWR_WELL_CTL2: %08x\n",
Paulo Zanoniff57f1b2013-05-03 12:15:37 -030012490 error->power_well_driver);
Damien Lespiau52331302012-08-15 19:23:25 +010012491 for_each_pipe(i) {
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030012492 err_printf(m, "Pipe [%d]:\n", i);
Imre Deakddf9c532013-11-27 22:02:02 +020012493 err_printf(m, " Power: %s\n",
12494 error->pipe[i].power_domain_on ? "on" : "off");
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030012495 err_printf(m, " SRC: %08x\n", error->pipe[i].source);
Imre Deakf301b1e2014-04-18 15:55:04 +030012496 err_printf(m, " STAT: %08x\n", error->pipe[i].stat);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012497
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030012498 err_printf(m, "Plane [%d]:\n", i);
12499 err_printf(m, " CNTR: %08x\n", error->plane[i].control);
12500 err_printf(m, " STRIDE: %08x\n", error->plane[i].stride);
Paulo Zanoni80ca3782013-03-22 14:20:57 -030012501 if (INTEL_INFO(dev)->gen <= 3) {
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030012502 err_printf(m, " SIZE: %08x\n", error->plane[i].size);
12503 err_printf(m, " POS: %08x\n", error->plane[i].pos);
Paulo Zanoni80ca3782013-03-22 14:20:57 -030012504 }
Paulo Zanoni4b71a572013-03-22 14:19:21 -030012505 if (INTEL_INFO(dev)->gen <= 7 && !IS_HASWELL(dev))
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030012506 err_printf(m, " ADDR: %08x\n", error->plane[i].addr);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012507 if (INTEL_INFO(dev)->gen >= 4) {
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030012508 err_printf(m, " SURF: %08x\n", error->plane[i].surface);
12509 err_printf(m, " TILEOFF: %08x\n", error->plane[i].tile_offset);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012510 }
12511
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030012512 err_printf(m, "Cursor [%d]:\n", i);
12513 err_printf(m, " CNTR: %08x\n", error->cursor[i].control);
12514 err_printf(m, " POS: %08x\n", error->cursor[i].position);
12515 err_printf(m, " BASE: %08x\n", error->cursor[i].base);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012516 }
Chris Wilson63b66e52013-08-08 15:12:06 +020012517
12518 for (i = 0; i < error->num_transcoders; i++) {
Chris Wilson1cf84bb2013-10-21 09:10:33 +010012519 err_printf(m, "CPU transcoder: %c\n",
Chris Wilson63b66e52013-08-08 15:12:06 +020012520 transcoder_name(error->transcoder[i].cpu_transcoder));
Imre Deakddf9c532013-11-27 22:02:02 +020012521 err_printf(m, " Power: %s\n",
12522 error->transcoder[i].power_domain_on ? "on" : "off");
Chris Wilson63b66e52013-08-08 15:12:06 +020012523 err_printf(m, " CONF: %08x\n", error->transcoder[i].conf);
12524 err_printf(m, " HTOTAL: %08x\n", error->transcoder[i].htotal);
12525 err_printf(m, " HBLANK: %08x\n", error->transcoder[i].hblank);
12526 err_printf(m, " HSYNC: %08x\n", error->transcoder[i].hsync);
12527 err_printf(m, " VTOTAL: %08x\n", error->transcoder[i].vtotal);
12528 err_printf(m, " VBLANK: %08x\n", error->transcoder[i].vblank);
12529 err_printf(m, " VSYNC: %08x\n", error->transcoder[i].vsync);
12530 }
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012531}