blob: bcfe0a8692ddccdb994aba29b714737676247f74 [file] [log] [blame]
Jesse Barnes79e53942008-11-07 14:24:08 -08001/*
2 * Copyright © 2006-2007 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21 * DEALINGS IN THE SOFTWARE.
22 *
23 * Authors:
24 * Eric Anholt <eric@anholt.net>
25 */
26
Daniel Vetter618563e2012-04-01 13:38:50 +020027#include <linux/dmi.h>
Jesse Barnesc1c7af62009-09-10 15:28:03 -070028#include <linux/module.h>
29#include <linux/input.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080030#include <linux/i2c.h>
Shaohua Li7662c8b2009-06-26 11:23:55 +080031#include <linux/kernel.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090032#include <linux/slab.h>
Jesse Barnes9cce37f2010-08-13 15:11:26 -070033#include <linux/vgaarb.h>
Wu Fengguange0dac652011-09-05 14:25:34 +080034#include <drm/drm_edid.h>
David Howells760285e2012-10-02 18:01:07 +010035#include <drm/drmP.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080036#include "intel_drv.h"
David Howells760285e2012-10-02 18:01:07 +010037#include <drm/i915_drm.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080038#include "i915_drv.h"
Jesse Barnese5510fa2010-07-01 16:48:37 -070039#include "i915_trace.h"
David Howells760285e2012-10-02 18:01:07 +010040#include <drm/drm_dp_helper.h>
41#include <drm/drm_crtc_helper.h>
Keith Packardc0f372b32011-11-16 22:24:52 -080042#include <linux/dma_remapping.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080043
Chon Ming Leeef9348c2014-04-09 13:28:18 +030044#define DIV_ROUND_CLOSEST_ULL(ll, d) \
45 ({ unsigned long long _tmp = (ll)+(d)/2; do_div(_tmp, d); _tmp; })
46
Daniel Vetter3dec0092010-08-20 21:40:52 +020047static void intel_increase_pllclock(struct drm_crtc *crtc);
Chris Wilson6b383a72010-09-13 13:54:26 +010048static void intel_crtc_update_cursor(struct drm_crtc *crtc, bool on);
Jesse Barnes79e53942008-11-07 14:24:08 -080049
Jesse Barnesf1f644d2013-06-27 00:39:25 +030050static void i9xx_crtc_clock_get(struct intel_crtc *crtc,
51 struct intel_crtc_config *pipe_config);
Ville Syrjälä18442d02013-09-13 16:00:08 +030052static void ironlake_pch_clock_get(struct intel_crtc *crtc,
53 struct intel_crtc_config *pipe_config);
Jesse Barnesf1f644d2013-06-27 00:39:25 +030054
Damien Lespiaue7457a92013-08-08 22:28:59 +010055static int intel_set_mode(struct drm_crtc *crtc, struct drm_display_mode *mode,
56 int x, int y, struct drm_framebuffer *old_fb);
Jesse Barneseb1bfe82014-02-12 12:26:25 -080057static int intel_framebuffer_init(struct drm_device *dev,
58 struct intel_framebuffer *ifb,
59 struct drm_mode_fb_cmd2 *mode_cmd,
60 struct drm_i915_gem_object *obj);
Daniel Vetter5b18e572014-04-24 23:55:06 +020061static void intel_dp_set_m_n(struct intel_crtc *crtc);
62static void i9xx_set_pipeconf(struct intel_crtc *intel_crtc);
63static void intel_set_pipe_timings(struct intel_crtc *intel_crtc);
Daniel Vetter29407aa2014-04-24 23:55:08 +020064static void intel_cpu_transcoder_set_m_n(struct intel_crtc *crtc,
65 struct intel_link_m_n *m_n);
66static void ironlake_set_pipeconf(struct drm_crtc *crtc);
Daniel Vetter229fca92014-04-24 23:55:09 +020067static void haswell_set_pipeconf(struct drm_crtc *crtc);
68static void intel_set_pipe_csc(struct drm_crtc *crtc);
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +020069static void vlv_prepare_pll(struct intel_crtc *crtc);
Damien Lespiaue7457a92013-08-08 22:28:59 +010070
Jesse Barnes79e53942008-11-07 14:24:08 -080071typedef struct {
Akshay Joshi0206e352011-08-16 15:34:10 -040072 int min, max;
Jesse Barnes79e53942008-11-07 14:24:08 -080073} intel_range_t;
74
75typedef struct {
Akshay Joshi0206e352011-08-16 15:34:10 -040076 int dot_limit;
77 int p2_slow, p2_fast;
Jesse Barnes79e53942008-11-07 14:24:08 -080078} intel_p2_t;
79
Ma Lingd4906092009-03-18 20:13:27 +080080typedef struct intel_limit intel_limit_t;
81struct intel_limit {
Akshay Joshi0206e352011-08-16 15:34:10 -040082 intel_range_t dot, vco, n, m, m1, m2, p, p1;
83 intel_p2_t p2;
Ma Lingd4906092009-03-18 20:13:27 +080084};
Jesse Barnes79e53942008-11-07 14:24:08 -080085
Daniel Vetterd2acd212012-10-20 20:57:43 +020086int
87intel_pch_rawclk(struct drm_device *dev)
88{
89 struct drm_i915_private *dev_priv = dev->dev_private;
90
91 WARN_ON(!HAS_PCH_SPLIT(dev));
92
93 return I915_READ(PCH_RAWCLK_FREQ) & RAWCLK_FREQ_MASK;
94}
95
Chris Wilson021357a2010-09-07 20:54:59 +010096static inline u32 /* units of 100MHz */
97intel_fdi_link_freq(struct drm_device *dev)
98{
Chris Wilson8b99e682010-10-13 09:59:17 +010099 if (IS_GEN5(dev)) {
100 struct drm_i915_private *dev_priv = dev->dev_private;
101 return (I915_READ(FDI_PLL_BIOS_0) & FDI_PLL_FB_CLOCK_MASK) + 2;
102 } else
103 return 27;
Chris Wilson021357a2010-09-07 20:54:59 +0100104}
105
Daniel Vetter5d536e22013-07-06 12:52:06 +0200106static const intel_limit_t intel_limits_i8xx_dac = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400107 .dot = { .min = 25000, .max = 350000 },
Ville Syrjälä9c333712013-12-09 18:54:17 +0200108 .vco = { .min = 908000, .max = 1512000 },
Ville Syrjälä91dbe5f2013-12-09 18:54:14 +0200109 .n = { .min = 2, .max = 16 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400110 .m = { .min = 96, .max = 140 },
111 .m1 = { .min = 18, .max = 26 },
112 .m2 = { .min = 6, .max = 16 },
113 .p = { .min = 4, .max = 128 },
114 .p1 = { .min = 2, .max = 33 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700115 .p2 = { .dot_limit = 165000,
116 .p2_slow = 4, .p2_fast = 2 },
Keith Packarde4b36692009-06-05 19:22:17 -0700117};
118
Daniel Vetter5d536e22013-07-06 12:52:06 +0200119static const intel_limit_t intel_limits_i8xx_dvo = {
120 .dot = { .min = 25000, .max = 350000 },
Ville Syrjälä9c333712013-12-09 18:54:17 +0200121 .vco = { .min = 908000, .max = 1512000 },
Ville Syrjälä91dbe5f2013-12-09 18:54:14 +0200122 .n = { .min = 2, .max = 16 },
Daniel Vetter5d536e22013-07-06 12:52:06 +0200123 .m = { .min = 96, .max = 140 },
124 .m1 = { .min = 18, .max = 26 },
125 .m2 = { .min = 6, .max = 16 },
126 .p = { .min = 4, .max = 128 },
127 .p1 = { .min = 2, .max = 33 },
128 .p2 = { .dot_limit = 165000,
129 .p2_slow = 4, .p2_fast = 4 },
130};
131
Keith Packarde4b36692009-06-05 19:22:17 -0700132static const intel_limit_t intel_limits_i8xx_lvds = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400133 .dot = { .min = 25000, .max = 350000 },
Ville Syrjälä9c333712013-12-09 18:54:17 +0200134 .vco = { .min = 908000, .max = 1512000 },
Ville Syrjälä91dbe5f2013-12-09 18:54:14 +0200135 .n = { .min = 2, .max = 16 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400136 .m = { .min = 96, .max = 140 },
137 .m1 = { .min = 18, .max = 26 },
138 .m2 = { .min = 6, .max = 16 },
139 .p = { .min = 4, .max = 128 },
140 .p1 = { .min = 1, .max = 6 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700141 .p2 = { .dot_limit = 165000,
142 .p2_slow = 14, .p2_fast = 7 },
Keith Packarde4b36692009-06-05 19:22:17 -0700143};
Eric Anholt273e27c2011-03-30 13:01:10 -0700144
Keith Packarde4b36692009-06-05 19:22:17 -0700145static const intel_limit_t intel_limits_i9xx_sdvo = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400146 .dot = { .min = 20000, .max = 400000 },
147 .vco = { .min = 1400000, .max = 2800000 },
148 .n = { .min = 1, .max = 6 },
149 .m = { .min = 70, .max = 120 },
Patrik Jakobsson4f7dfb62013-02-13 22:20:22 +0100150 .m1 = { .min = 8, .max = 18 },
151 .m2 = { .min = 3, .max = 7 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400152 .p = { .min = 5, .max = 80 },
153 .p1 = { .min = 1, .max = 8 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700154 .p2 = { .dot_limit = 200000,
155 .p2_slow = 10, .p2_fast = 5 },
Keith Packarde4b36692009-06-05 19:22:17 -0700156};
157
158static const intel_limit_t intel_limits_i9xx_lvds = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400159 .dot = { .min = 20000, .max = 400000 },
160 .vco = { .min = 1400000, .max = 2800000 },
161 .n = { .min = 1, .max = 6 },
162 .m = { .min = 70, .max = 120 },
Patrik Jakobsson53a7d2d2013-02-13 22:20:21 +0100163 .m1 = { .min = 8, .max = 18 },
164 .m2 = { .min = 3, .max = 7 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400165 .p = { .min = 7, .max = 98 },
166 .p1 = { .min = 1, .max = 8 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700167 .p2 = { .dot_limit = 112000,
168 .p2_slow = 14, .p2_fast = 7 },
Keith Packarde4b36692009-06-05 19:22:17 -0700169};
170
Eric Anholt273e27c2011-03-30 13:01:10 -0700171
Keith Packarde4b36692009-06-05 19:22:17 -0700172static const intel_limit_t intel_limits_g4x_sdvo = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700173 .dot = { .min = 25000, .max = 270000 },
174 .vco = { .min = 1750000, .max = 3500000},
175 .n = { .min = 1, .max = 4 },
176 .m = { .min = 104, .max = 138 },
177 .m1 = { .min = 17, .max = 23 },
178 .m2 = { .min = 5, .max = 11 },
179 .p = { .min = 10, .max = 30 },
180 .p1 = { .min = 1, .max = 3},
181 .p2 = { .dot_limit = 270000,
182 .p2_slow = 10,
183 .p2_fast = 10
Ma Ling044c7c42009-03-18 20:13:23 +0800184 },
Keith Packarde4b36692009-06-05 19:22:17 -0700185};
186
187static const intel_limit_t intel_limits_g4x_hdmi = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700188 .dot = { .min = 22000, .max = 400000 },
189 .vco = { .min = 1750000, .max = 3500000},
190 .n = { .min = 1, .max = 4 },
191 .m = { .min = 104, .max = 138 },
192 .m1 = { .min = 16, .max = 23 },
193 .m2 = { .min = 5, .max = 11 },
194 .p = { .min = 5, .max = 80 },
195 .p1 = { .min = 1, .max = 8},
196 .p2 = { .dot_limit = 165000,
197 .p2_slow = 10, .p2_fast = 5 },
Keith Packarde4b36692009-06-05 19:22:17 -0700198};
199
200static const intel_limit_t intel_limits_g4x_single_channel_lvds = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700201 .dot = { .min = 20000, .max = 115000 },
202 .vco = { .min = 1750000, .max = 3500000 },
203 .n = { .min = 1, .max = 3 },
204 .m = { .min = 104, .max = 138 },
205 .m1 = { .min = 17, .max = 23 },
206 .m2 = { .min = 5, .max = 11 },
207 .p = { .min = 28, .max = 112 },
208 .p1 = { .min = 2, .max = 8 },
209 .p2 = { .dot_limit = 0,
210 .p2_slow = 14, .p2_fast = 14
Ma Ling044c7c42009-03-18 20:13:23 +0800211 },
Keith Packarde4b36692009-06-05 19:22:17 -0700212};
213
214static const intel_limit_t intel_limits_g4x_dual_channel_lvds = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700215 .dot = { .min = 80000, .max = 224000 },
216 .vco = { .min = 1750000, .max = 3500000 },
217 .n = { .min = 1, .max = 3 },
218 .m = { .min = 104, .max = 138 },
219 .m1 = { .min = 17, .max = 23 },
220 .m2 = { .min = 5, .max = 11 },
221 .p = { .min = 14, .max = 42 },
222 .p1 = { .min = 2, .max = 6 },
223 .p2 = { .dot_limit = 0,
224 .p2_slow = 7, .p2_fast = 7
Ma Ling044c7c42009-03-18 20:13:23 +0800225 },
Keith Packarde4b36692009-06-05 19:22:17 -0700226};
227
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500228static const intel_limit_t intel_limits_pineview_sdvo = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400229 .dot = { .min = 20000, .max = 400000},
230 .vco = { .min = 1700000, .max = 3500000 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700231 /* Pineview's Ncounter is a ring counter */
Akshay Joshi0206e352011-08-16 15:34:10 -0400232 .n = { .min = 3, .max = 6 },
233 .m = { .min = 2, .max = 256 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700234 /* Pineview only has one combined m divider, which we treat as m2. */
Akshay Joshi0206e352011-08-16 15:34:10 -0400235 .m1 = { .min = 0, .max = 0 },
236 .m2 = { .min = 0, .max = 254 },
237 .p = { .min = 5, .max = 80 },
238 .p1 = { .min = 1, .max = 8 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700239 .p2 = { .dot_limit = 200000,
240 .p2_slow = 10, .p2_fast = 5 },
Keith Packarde4b36692009-06-05 19:22:17 -0700241};
242
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500243static const intel_limit_t intel_limits_pineview_lvds = {
Akshay Joshi0206e352011-08-16 15:34:10 -0400244 .dot = { .min = 20000, .max = 400000 },
245 .vco = { .min = 1700000, .max = 3500000 },
246 .n = { .min = 3, .max = 6 },
247 .m = { .min = 2, .max = 256 },
248 .m1 = { .min = 0, .max = 0 },
249 .m2 = { .min = 0, .max = 254 },
250 .p = { .min = 7, .max = 112 },
251 .p1 = { .min = 1, .max = 8 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700252 .p2 = { .dot_limit = 112000,
253 .p2_slow = 14, .p2_fast = 14 },
Keith Packarde4b36692009-06-05 19:22:17 -0700254};
255
Eric Anholt273e27c2011-03-30 13:01:10 -0700256/* Ironlake / Sandybridge
257 *
258 * We calculate clock using (register_value + 2) for N/M1/M2, so here
259 * the range value for them is (actual_value - 2).
260 */
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800261static const intel_limit_t intel_limits_ironlake_dac = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700262 .dot = { .min = 25000, .max = 350000 },
263 .vco = { .min = 1760000, .max = 3510000 },
264 .n = { .min = 1, .max = 5 },
265 .m = { .min = 79, .max = 127 },
266 .m1 = { .min = 12, .max = 22 },
267 .m2 = { .min = 5, .max = 9 },
268 .p = { .min = 5, .max = 80 },
269 .p1 = { .min = 1, .max = 8 },
270 .p2 = { .dot_limit = 225000,
271 .p2_slow = 10, .p2_fast = 5 },
Keith Packarde4b36692009-06-05 19:22:17 -0700272};
273
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800274static const intel_limit_t intel_limits_ironlake_single_lvds = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700275 .dot = { .min = 25000, .max = 350000 },
276 .vco = { .min = 1760000, .max = 3510000 },
277 .n = { .min = 1, .max = 3 },
278 .m = { .min = 79, .max = 118 },
279 .m1 = { .min = 12, .max = 22 },
280 .m2 = { .min = 5, .max = 9 },
281 .p = { .min = 28, .max = 112 },
282 .p1 = { .min = 2, .max = 8 },
283 .p2 = { .dot_limit = 225000,
284 .p2_slow = 14, .p2_fast = 14 },
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800285};
286
287static const intel_limit_t intel_limits_ironlake_dual_lvds = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700288 .dot = { .min = 25000, .max = 350000 },
289 .vco = { .min = 1760000, .max = 3510000 },
290 .n = { .min = 1, .max = 3 },
291 .m = { .min = 79, .max = 127 },
292 .m1 = { .min = 12, .max = 22 },
293 .m2 = { .min = 5, .max = 9 },
294 .p = { .min = 14, .max = 56 },
295 .p1 = { .min = 2, .max = 8 },
296 .p2 = { .dot_limit = 225000,
297 .p2_slow = 7, .p2_fast = 7 },
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800298};
299
Eric Anholt273e27c2011-03-30 13:01:10 -0700300/* LVDS 100mhz refclk limits. */
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800301static const intel_limit_t intel_limits_ironlake_single_lvds_100m = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700302 .dot = { .min = 25000, .max = 350000 },
303 .vco = { .min = 1760000, .max = 3510000 },
304 .n = { .min = 1, .max = 2 },
305 .m = { .min = 79, .max = 126 },
306 .m1 = { .min = 12, .max = 22 },
307 .m2 = { .min = 5, .max = 9 },
308 .p = { .min = 28, .max = 112 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400309 .p1 = { .min = 2, .max = 8 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700310 .p2 = { .dot_limit = 225000,
311 .p2_slow = 14, .p2_fast = 14 },
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800312};
313
314static const intel_limit_t intel_limits_ironlake_dual_lvds_100m = {
Eric Anholt273e27c2011-03-30 13:01:10 -0700315 .dot = { .min = 25000, .max = 350000 },
316 .vco = { .min = 1760000, .max = 3510000 },
317 .n = { .min = 1, .max = 3 },
318 .m = { .min = 79, .max = 126 },
319 .m1 = { .min = 12, .max = 22 },
320 .m2 = { .min = 5, .max = 9 },
321 .p = { .min = 14, .max = 42 },
Akshay Joshi0206e352011-08-16 15:34:10 -0400322 .p1 = { .min = 2, .max = 6 },
Eric Anholt273e27c2011-03-30 13:01:10 -0700323 .p2 = { .dot_limit = 225000,
324 .p2_slow = 7, .p2_fast = 7 },
Zhao Yakui45476682009-12-31 16:06:04 +0800325};
326
Ville Syrjälädc730512013-09-24 21:26:30 +0300327static const intel_limit_t intel_limits_vlv = {
Ville Syrjäläf01b7962013-09-27 16:55:49 +0300328 /*
329 * These are the data rate limits (measured in fast clocks)
330 * since those are the strictest limits we have. The fast
331 * clock and actual rate limits are more relaxed, so checking
332 * them would make no difference.
333 */
334 .dot = { .min = 25000 * 5, .max = 270000 * 5 },
Daniel Vetter75e53982013-04-18 21:10:43 +0200335 .vco = { .min = 4000000, .max = 6000000 },
Jesse Barnesa0c4da22012-06-15 11:55:13 -0700336 .n = { .min = 1, .max = 7 },
Jesse Barnesa0c4da22012-06-15 11:55:13 -0700337 .m1 = { .min = 2, .max = 3 },
338 .m2 = { .min = 11, .max = 156 },
Ville Syrjäläb99ab662013-09-24 21:26:26 +0300339 .p1 = { .min = 2, .max = 3 },
Ville Syrjälä5fdc9c492013-09-24 21:26:29 +0300340 .p2 = { .p2_slow = 2, .p2_fast = 20 }, /* slow=min, fast=max */
Jesse Barnesa0c4da22012-06-15 11:55:13 -0700341};
342
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300343static const intel_limit_t intel_limits_chv = {
344 /*
345 * These are the data rate limits (measured in fast clocks)
346 * since those are the strictest limits we have. The fast
347 * clock and actual rate limits are more relaxed, so checking
348 * them would make no difference.
349 */
350 .dot = { .min = 25000 * 5, .max = 540000 * 5},
351 .vco = { .min = 4860000, .max = 6700000 },
352 .n = { .min = 1, .max = 1 },
353 .m1 = { .min = 2, .max = 2 },
354 .m2 = { .min = 24 << 22, .max = 175 << 22 },
355 .p1 = { .min = 2, .max = 4 },
356 .p2 = { .p2_slow = 1, .p2_fast = 14 },
357};
358
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300359static void vlv_clock(int refclk, intel_clock_t *clock)
360{
361 clock->m = clock->m1 * clock->m2;
362 clock->p = clock->p1 * clock->p2;
Ville Syrjäläed5ca772013-12-02 19:00:45 +0200363 if (WARN_ON(clock->n == 0 || clock->p == 0))
364 return;
Ville Syrjäläfb03ac02013-10-14 14:50:30 +0300365 clock->vco = DIV_ROUND_CLOSEST(refclk * clock->m, clock->n);
366 clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p);
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300367}
368
Paulo Zanonie0638cd2013-09-24 13:52:54 -0300369/**
370 * Returns whether any output on the specified pipe is of the specified type
371 */
372static bool intel_pipe_has_type(struct drm_crtc *crtc, int type)
373{
374 struct drm_device *dev = crtc->dev;
375 struct intel_encoder *encoder;
376
377 for_each_encoder_on_crtc(dev, crtc, encoder)
378 if (encoder->type == type)
379 return true;
380
381 return false;
382}
383
Chris Wilson1b894b52010-12-14 20:04:54 +0000384static const intel_limit_t *intel_ironlake_limit(struct drm_crtc *crtc,
385 int refclk)
Zhenyu Wang2c072452009-06-05 15:38:42 +0800386{
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800387 struct drm_device *dev = crtc->dev;
Zhenyu Wang2c072452009-06-05 15:38:42 +0800388 const intel_limit_t *limit;
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800389
390 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
Daniel Vetter1974cad2012-11-26 17:22:09 +0100391 if (intel_is_dual_link_lvds(dev)) {
Chris Wilson1b894b52010-12-14 20:04:54 +0000392 if (refclk == 100000)
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800393 limit = &intel_limits_ironlake_dual_lvds_100m;
394 else
395 limit = &intel_limits_ironlake_dual_lvds;
396 } else {
Chris Wilson1b894b52010-12-14 20:04:54 +0000397 if (refclk == 100000)
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800398 limit = &intel_limits_ironlake_single_lvds_100m;
399 else
400 limit = &intel_limits_ironlake_single_lvds;
401 }
Daniel Vetterc6bb3532013-04-19 11:14:33 +0200402 } else
Zhenyu Wangb91ad0e2010-02-05 09:14:17 +0800403 limit = &intel_limits_ironlake_dac;
Zhenyu Wang2c072452009-06-05 15:38:42 +0800404
405 return limit;
406}
407
Ma Ling044c7c42009-03-18 20:13:23 +0800408static const intel_limit_t *intel_g4x_limit(struct drm_crtc *crtc)
409{
410 struct drm_device *dev = crtc->dev;
Ma Ling044c7c42009-03-18 20:13:23 +0800411 const intel_limit_t *limit;
412
413 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
Daniel Vetter1974cad2012-11-26 17:22:09 +0100414 if (intel_is_dual_link_lvds(dev))
Keith Packarde4b36692009-06-05 19:22:17 -0700415 limit = &intel_limits_g4x_dual_channel_lvds;
Ma Ling044c7c42009-03-18 20:13:23 +0800416 else
Keith Packarde4b36692009-06-05 19:22:17 -0700417 limit = &intel_limits_g4x_single_channel_lvds;
Ma Ling044c7c42009-03-18 20:13:23 +0800418 } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_HDMI) ||
419 intel_pipe_has_type(crtc, INTEL_OUTPUT_ANALOG)) {
Keith Packarde4b36692009-06-05 19:22:17 -0700420 limit = &intel_limits_g4x_hdmi;
Ma Ling044c7c42009-03-18 20:13:23 +0800421 } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_SDVO)) {
Keith Packarde4b36692009-06-05 19:22:17 -0700422 limit = &intel_limits_g4x_sdvo;
Ma Ling044c7c42009-03-18 20:13:23 +0800423 } else /* The option is for other outputs */
Keith Packarde4b36692009-06-05 19:22:17 -0700424 limit = &intel_limits_i9xx_sdvo;
Ma Ling044c7c42009-03-18 20:13:23 +0800425
426 return limit;
427}
428
Chris Wilson1b894b52010-12-14 20:04:54 +0000429static const intel_limit_t *intel_limit(struct drm_crtc *crtc, int refclk)
Jesse Barnes79e53942008-11-07 14:24:08 -0800430{
431 struct drm_device *dev = crtc->dev;
432 const intel_limit_t *limit;
433
Eric Anholtbad720f2009-10-22 16:11:14 -0700434 if (HAS_PCH_SPLIT(dev))
Chris Wilson1b894b52010-12-14 20:04:54 +0000435 limit = intel_ironlake_limit(crtc, refclk);
Zhenyu Wang2c072452009-06-05 15:38:42 +0800436 else if (IS_G4X(dev)) {
Ma Ling044c7c42009-03-18 20:13:23 +0800437 limit = intel_g4x_limit(crtc);
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500438 } else if (IS_PINEVIEW(dev)) {
Shaohua Li21778322009-02-23 15:19:16 +0800439 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS))
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500440 limit = &intel_limits_pineview_lvds;
Shaohua Li21778322009-02-23 15:19:16 +0800441 else
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500442 limit = &intel_limits_pineview_sdvo;
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300443 } else if (IS_CHERRYVIEW(dev)) {
444 limit = &intel_limits_chv;
Jesse Barnesa0c4da22012-06-15 11:55:13 -0700445 } else if (IS_VALLEYVIEW(dev)) {
Ville Syrjälädc730512013-09-24 21:26:30 +0300446 limit = &intel_limits_vlv;
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100447 } else if (!IS_GEN2(dev)) {
448 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS))
449 limit = &intel_limits_i9xx_lvds;
450 else
451 limit = &intel_limits_i9xx_sdvo;
Jesse Barnes79e53942008-11-07 14:24:08 -0800452 } else {
453 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS))
Keith Packarde4b36692009-06-05 19:22:17 -0700454 limit = &intel_limits_i8xx_lvds;
Daniel Vetter5d536e22013-07-06 12:52:06 +0200455 else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DVO))
Keith Packarde4b36692009-06-05 19:22:17 -0700456 limit = &intel_limits_i8xx_dvo;
Daniel Vetter5d536e22013-07-06 12:52:06 +0200457 else
458 limit = &intel_limits_i8xx_dac;
Jesse Barnes79e53942008-11-07 14:24:08 -0800459 }
460 return limit;
461}
462
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500463/* m1 is reserved as 0 in Pineview, n is a ring counter */
464static void pineview_clock(int refclk, intel_clock_t *clock)
Jesse Barnes79e53942008-11-07 14:24:08 -0800465{
Shaohua Li21778322009-02-23 15:19:16 +0800466 clock->m = clock->m2 + 2;
467 clock->p = clock->p1 * clock->p2;
Ville Syrjäläed5ca772013-12-02 19:00:45 +0200468 if (WARN_ON(clock->n == 0 || clock->p == 0))
469 return;
Ville Syrjäläfb03ac02013-10-14 14:50:30 +0300470 clock->vco = DIV_ROUND_CLOSEST(refclk * clock->m, clock->n);
471 clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p);
Shaohua Li21778322009-02-23 15:19:16 +0800472}
473
Daniel Vetter7429e9d2013-04-20 17:19:46 +0200474static uint32_t i9xx_dpll_compute_m(struct dpll *dpll)
475{
476 return 5 * (dpll->m1 + 2) + (dpll->m2 + 2);
477}
478
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200479static void i9xx_clock(int refclk, intel_clock_t *clock)
Shaohua Li21778322009-02-23 15:19:16 +0800480{
Daniel Vetter7429e9d2013-04-20 17:19:46 +0200481 clock->m = i9xx_dpll_compute_m(clock);
Jesse Barnes79e53942008-11-07 14:24:08 -0800482 clock->p = clock->p1 * clock->p2;
Ville Syrjäläed5ca772013-12-02 19:00:45 +0200483 if (WARN_ON(clock->n + 2 == 0 || clock->p == 0))
484 return;
Ville Syrjäläfb03ac02013-10-14 14:50:30 +0300485 clock->vco = DIV_ROUND_CLOSEST(refclk * clock->m, clock->n + 2);
486 clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p);
Jesse Barnes79e53942008-11-07 14:24:08 -0800487}
488
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300489static void chv_clock(int refclk, intel_clock_t *clock)
490{
491 clock->m = clock->m1 * clock->m2;
492 clock->p = clock->p1 * clock->p2;
493 if (WARN_ON(clock->n == 0 || clock->p == 0))
494 return;
495 clock->vco = DIV_ROUND_CLOSEST_ULL((uint64_t)refclk * clock->m,
496 clock->n << 22);
497 clock->dot = DIV_ROUND_CLOSEST(clock->vco, clock->p);
498}
499
Jesse Barnes7c04d1d2009-02-23 15:36:40 -0800500#define INTELPllInvalid(s) do { /* DRM_DEBUG(s); */ return false; } while (0)
Jesse Barnes79e53942008-11-07 14:24:08 -0800501/**
502 * Returns whether the given set of divisors are valid for a given refclk with
503 * the given connectors.
504 */
505
Chris Wilson1b894b52010-12-14 20:04:54 +0000506static bool intel_PLL_is_valid(struct drm_device *dev,
507 const intel_limit_t *limit,
508 const intel_clock_t *clock)
Jesse Barnes79e53942008-11-07 14:24:08 -0800509{
Ville Syrjäläf01b7962013-09-27 16:55:49 +0300510 if (clock->n < limit->n.min || limit->n.max < clock->n)
511 INTELPllInvalid("n out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800512 if (clock->p1 < limit->p1.min || limit->p1.max < clock->p1)
Akshay Joshi0206e352011-08-16 15:34:10 -0400513 INTELPllInvalid("p1 out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800514 if (clock->m2 < limit->m2.min || limit->m2.max < clock->m2)
Akshay Joshi0206e352011-08-16 15:34:10 -0400515 INTELPllInvalid("m2 out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800516 if (clock->m1 < limit->m1.min || limit->m1.max < clock->m1)
Akshay Joshi0206e352011-08-16 15:34:10 -0400517 INTELPllInvalid("m1 out of range\n");
Ville Syrjäläf01b7962013-09-27 16:55:49 +0300518
519 if (!IS_PINEVIEW(dev) && !IS_VALLEYVIEW(dev))
520 if (clock->m1 <= clock->m2)
521 INTELPllInvalid("m1 <= m2\n");
522
523 if (!IS_VALLEYVIEW(dev)) {
524 if (clock->p < limit->p.min || limit->p.max < clock->p)
525 INTELPllInvalid("p out of range\n");
526 if (clock->m < limit->m.min || limit->m.max < clock->m)
527 INTELPllInvalid("m out of range\n");
528 }
529
Jesse Barnes79e53942008-11-07 14:24:08 -0800530 if (clock->vco < limit->vco.min || limit->vco.max < clock->vco)
Akshay Joshi0206e352011-08-16 15:34:10 -0400531 INTELPllInvalid("vco out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800532 /* XXX: We may need to be checking "Dot clock" depending on the multiplier,
533 * connector, etc., rather than just a single range.
534 */
535 if (clock->dot < limit->dot.min || limit->dot.max < clock->dot)
Akshay Joshi0206e352011-08-16 15:34:10 -0400536 INTELPllInvalid("dot out of range\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800537
538 return true;
539}
540
Ma Lingd4906092009-03-18 20:13:27 +0800541static bool
Daniel Vetteree9300b2013-06-03 22:40:22 +0200542i9xx_find_best_dpll(const intel_limit_t *limit, struct drm_crtc *crtc,
Sean Paulcec2f352012-01-10 15:09:36 -0800543 int target, int refclk, intel_clock_t *match_clock,
544 intel_clock_t *best_clock)
Jesse Barnes79e53942008-11-07 14:24:08 -0800545{
546 struct drm_device *dev = crtc->dev;
Jesse Barnes79e53942008-11-07 14:24:08 -0800547 intel_clock_t clock;
Jesse Barnes79e53942008-11-07 14:24:08 -0800548 int err = target;
549
Daniel Vettera210b022012-11-26 17:22:08 +0100550 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
Jesse Barnes79e53942008-11-07 14:24:08 -0800551 /*
Daniel Vettera210b022012-11-26 17:22:08 +0100552 * For LVDS just rely on its current settings for dual-channel.
553 * We haven't figured out how to reliably set up different
554 * single/dual channel state, if we even can.
Jesse Barnes79e53942008-11-07 14:24:08 -0800555 */
Daniel Vetter1974cad2012-11-26 17:22:09 +0100556 if (intel_is_dual_link_lvds(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -0800557 clock.p2 = limit->p2.p2_fast;
558 else
559 clock.p2 = limit->p2.p2_slow;
560 } else {
561 if (target < limit->p2.dot_limit)
562 clock.p2 = limit->p2.p2_slow;
563 else
564 clock.p2 = limit->p2.p2_fast;
565 }
566
Akshay Joshi0206e352011-08-16 15:34:10 -0400567 memset(best_clock, 0, sizeof(*best_clock));
Jesse Barnes79e53942008-11-07 14:24:08 -0800568
Zhao Yakui42158662009-11-20 11:24:18 +0800569 for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max;
570 clock.m1++) {
571 for (clock.m2 = limit->m2.min;
572 clock.m2 <= limit->m2.max; clock.m2++) {
Daniel Vetterc0efc382013-06-03 20:56:24 +0200573 if (clock.m2 >= clock.m1)
Zhao Yakui42158662009-11-20 11:24:18 +0800574 break;
575 for (clock.n = limit->n.min;
576 clock.n <= limit->n.max; clock.n++) {
577 for (clock.p1 = limit->p1.min;
578 clock.p1 <= limit->p1.max; clock.p1++) {
Jesse Barnes79e53942008-11-07 14:24:08 -0800579 int this_err;
580
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200581 i9xx_clock(refclk, &clock);
Chris Wilson1b894b52010-12-14 20:04:54 +0000582 if (!intel_PLL_is_valid(dev, limit,
583 &clock))
Jesse Barnes79e53942008-11-07 14:24:08 -0800584 continue;
Sean Paulcec2f352012-01-10 15:09:36 -0800585 if (match_clock &&
586 clock.p != match_clock->p)
587 continue;
Jesse Barnes79e53942008-11-07 14:24:08 -0800588
589 this_err = abs(clock.dot - target);
590 if (this_err < err) {
591 *best_clock = clock;
592 err = this_err;
593 }
594 }
595 }
596 }
597 }
598
599 return (err != target);
600}
601
Ma Lingd4906092009-03-18 20:13:27 +0800602static bool
Daniel Vetteree9300b2013-06-03 22:40:22 +0200603pnv_find_best_dpll(const intel_limit_t *limit, struct drm_crtc *crtc,
604 int target, int refclk, intel_clock_t *match_clock,
605 intel_clock_t *best_clock)
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200606{
607 struct drm_device *dev = crtc->dev;
608 intel_clock_t clock;
609 int err = target;
610
611 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
612 /*
613 * For LVDS just rely on its current settings for dual-channel.
614 * We haven't figured out how to reliably set up different
615 * single/dual channel state, if we even can.
616 */
617 if (intel_is_dual_link_lvds(dev))
618 clock.p2 = limit->p2.p2_fast;
619 else
620 clock.p2 = limit->p2.p2_slow;
621 } else {
622 if (target < limit->p2.dot_limit)
623 clock.p2 = limit->p2.p2_slow;
624 else
625 clock.p2 = limit->p2.p2_fast;
626 }
627
628 memset(best_clock, 0, sizeof(*best_clock));
629
630 for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max;
631 clock.m1++) {
632 for (clock.m2 = limit->m2.min;
633 clock.m2 <= limit->m2.max; clock.m2++) {
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200634 for (clock.n = limit->n.min;
635 clock.n <= limit->n.max; clock.n++) {
636 for (clock.p1 = limit->p1.min;
637 clock.p1 <= limit->p1.max; clock.p1++) {
638 int this_err;
639
640 pineview_clock(refclk, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -0800641 if (!intel_PLL_is_valid(dev, limit,
642 &clock))
643 continue;
644 if (match_clock &&
645 clock.p != match_clock->p)
646 continue;
647
648 this_err = abs(clock.dot - target);
649 if (this_err < err) {
650 *best_clock = clock;
651 err = this_err;
652 }
653 }
654 }
655 }
656 }
657
658 return (err != target);
659}
660
Ma Lingd4906092009-03-18 20:13:27 +0800661static bool
Daniel Vetteree9300b2013-06-03 22:40:22 +0200662g4x_find_best_dpll(const intel_limit_t *limit, struct drm_crtc *crtc,
663 int target, int refclk, intel_clock_t *match_clock,
664 intel_clock_t *best_clock)
Ma Lingd4906092009-03-18 20:13:27 +0800665{
666 struct drm_device *dev = crtc->dev;
Ma Lingd4906092009-03-18 20:13:27 +0800667 intel_clock_t clock;
668 int max_n;
669 bool found;
Adam Jackson6ba770d2010-07-02 16:43:30 -0400670 /* approximately equals target * 0.00585 */
671 int err_most = (target >> 8) + (target >> 9);
Ma Lingd4906092009-03-18 20:13:27 +0800672 found = false;
673
674 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS)) {
Daniel Vetter1974cad2012-11-26 17:22:09 +0100675 if (intel_is_dual_link_lvds(dev))
Ma Lingd4906092009-03-18 20:13:27 +0800676 clock.p2 = limit->p2.p2_fast;
677 else
678 clock.p2 = limit->p2.p2_slow;
679 } else {
680 if (target < limit->p2.dot_limit)
681 clock.p2 = limit->p2.p2_slow;
682 else
683 clock.p2 = limit->p2.p2_fast;
684 }
685
686 memset(best_clock, 0, sizeof(*best_clock));
687 max_n = limit->n.max;
Gilles Espinassef77f13e2010-03-29 15:41:47 +0200688 /* based on hardware requirement, prefer smaller n to precision */
Ma Lingd4906092009-03-18 20:13:27 +0800689 for (clock.n = limit->n.min; clock.n <= max_n; clock.n++) {
Gilles Espinassef77f13e2010-03-29 15:41:47 +0200690 /* based on hardware requirement, prefere larger m1,m2 */
Ma Lingd4906092009-03-18 20:13:27 +0800691 for (clock.m1 = limit->m1.max;
692 clock.m1 >= limit->m1.min; clock.m1--) {
693 for (clock.m2 = limit->m2.max;
694 clock.m2 >= limit->m2.min; clock.m2--) {
695 for (clock.p1 = limit->p1.max;
696 clock.p1 >= limit->p1.min; clock.p1--) {
697 int this_err;
698
Daniel Vetterac58c3f2013-06-01 17:16:17 +0200699 i9xx_clock(refclk, &clock);
Chris Wilson1b894b52010-12-14 20:04:54 +0000700 if (!intel_PLL_is_valid(dev, limit,
701 &clock))
Ma Lingd4906092009-03-18 20:13:27 +0800702 continue;
Chris Wilson1b894b52010-12-14 20:04:54 +0000703
704 this_err = abs(clock.dot - target);
Ma Lingd4906092009-03-18 20:13:27 +0800705 if (this_err < err_most) {
706 *best_clock = clock;
707 err_most = this_err;
708 max_n = clock.n;
709 found = true;
710 }
711 }
712 }
713 }
714 }
Zhenyu Wang2c072452009-06-05 15:38:42 +0800715 return found;
716}
Ma Lingd4906092009-03-18 20:13:27 +0800717
Zhenyu Wang2c072452009-06-05 15:38:42 +0800718static bool
Daniel Vetteree9300b2013-06-03 22:40:22 +0200719vlv_find_best_dpll(const intel_limit_t *limit, struct drm_crtc *crtc,
720 int target, int refclk, intel_clock_t *match_clock,
721 intel_clock_t *best_clock)
Jesse Barnesa0c4da22012-06-15 11:55:13 -0700722{
Ville Syrjäläf01b7962013-09-27 16:55:49 +0300723 struct drm_device *dev = crtc->dev;
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300724 intel_clock_t clock;
Ville Syrjälä69e4f9002013-09-24 21:26:20 +0300725 unsigned int bestppm = 1000000;
Ville Syrjälä27e639b2013-09-24 21:26:24 +0300726 /* min update 19.2 MHz */
727 int max_n = min(limit->n.max, refclk / 19200);
Ville Syrjälä49e497e2013-09-24 21:26:31 +0300728 bool found = false;
Jesse Barnesa0c4da22012-06-15 11:55:13 -0700729
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300730 target *= 5; /* fast clock */
731
732 memset(best_clock, 0, sizeof(*best_clock));
Jesse Barnesa0c4da22012-06-15 11:55:13 -0700733
734 /* based on hardware requirement, prefer smaller n to precision */
Ville Syrjälä27e639b2013-09-24 21:26:24 +0300735 for (clock.n = limit->n.min; clock.n <= max_n; clock.n++) {
Ville Syrjälä811bbf02013-09-24 21:26:25 +0300736 for (clock.p1 = limit->p1.max; clock.p1 >= limit->p1.min; clock.p1--) {
Ville Syrjälä889059d2013-09-24 21:26:27 +0300737 for (clock.p2 = limit->p2.p2_fast; clock.p2 >= limit->p2.p2_slow;
Ville Syrjäläc1a9ae42013-09-24 21:26:23 +0300738 clock.p2 -= clock.p2 > 10 ? 2 : 1) {
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300739 clock.p = clock.p1 * clock.p2;
Jesse Barnesa0c4da22012-06-15 11:55:13 -0700740 /* based on hardware requirement, prefer bigger m1,m2 values */
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300741 for (clock.m1 = limit->m1.min; clock.m1 <= limit->m1.max; clock.m1++) {
Ville Syrjälä69e4f9002013-09-24 21:26:20 +0300742 unsigned int ppm, diff;
743
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300744 clock.m2 = DIV_ROUND_CLOSEST(target * clock.p * clock.n,
745 refclk * clock.m1);
Ville Syrjälä43b0ac52013-09-24 21:26:18 +0300746
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300747 vlv_clock(refclk, &clock);
748
Ville Syrjäläf01b7962013-09-27 16:55:49 +0300749 if (!intel_PLL_is_valid(dev, limit,
750 &clock))
Ville Syrjälä43b0ac52013-09-24 21:26:18 +0300751 continue;
752
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300753 diff = abs(clock.dot - target);
754 ppm = div_u64(1000000ULL * diff, target);
755
756 if (ppm < 100 && clock.p > best_clock->p) {
Ville Syrjälä43b0ac52013-09-24 21:26:18 +0300757 bestppm = 0;
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300758 *best_clock = clock;
Ville Syrjälä49e497e2013-09-24 21:26:31 +0300759 found = true;
Ville Syrjälä43b0ac52013-09-24 21:26:18 +0300760 }
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300761
Ville Syrjäläc6861222013-09-24 21:26:21 +0300762 if (bestppm >= 10 && ppm < bestppm - 10) {
Ville Syrjälä69e4f9002013-09-24 21:26:20 +0300763 bestppm = ppm;
Ville Syrjälä6b4bf1c2013-09-27 16:54:19 +0300764 *best_clock = clock;
Ville Syrjälä49e497e2013-09-24 21:26:31 +0300765 found = true;
Jesse Barnesa0c4da22012-06-15 11:55:13 -0700766 }
767 }
768 }
769 }
770 }
Jesse Barnesa0c4da22012-06-15 11:55:13 -0700771
Ville Syrjälä49e497e2013-09-24 21:26:31 +0300772 return found;
Jesse Barnesa0c4da22012-06-15 11:55:13 -0700773}
Keith Packarda4fc5ed2009-04-07 16:16:42 -0700774
Chon Ming Leeef9348c2014-04-09 13:28:18 +0300775static bool
776chv_find_best_dpll(const intel_limit_t *limit, struct drm_crtc *crtc,
777 int target, int refclk, intel_clock_t *match_clock,
778 intel_clock_t *best_clock)
779{
780 struct drm_device *dev = crtc->dev;
781 intel_clock_t clock;
782 uint64_t m2;
783 int found = false;
784
785 memset(best_clock, 0, sizeof(*best_clock));
786
787 /*
788 * Based on hardware doc, the n always set to 1, and m1 always
789 * set to 2. If requires to support 200Mhz refclk, we need to
790 * revisit this because n may not 1 anymore.
791 */
792 clock.n = 1, clock.m1 = 2;
793 target *= 5; /* fast clock */
794
795 for (clock.p1 = limit->p1.max; clock.p1 >= limit->p1.min; clock.p1--) {
796 for (clock.p2 = limit->p2.p2_fast;
797 clock.p2 >= limit->p2.p2_slow;
798 clock.p2 -= clock.p2 > 10 ? 2 : 1) {
799
800 clock.p = clock.p1 * clock.p2;
801
802 m2 = DIV_ROUND_CLOSEST_ULL(((uint64_t)target * clock.p *
803 clock.n) << 22, refclk * clock.m1);
804
805 if (m2 > INT_MAX/clock.m1)
806 continue;
807
808 clock.m2 = m2;
809
810 chv_clock(refclk, &clock);
811
812 if (!intel_PLL_is_valid(dev, limit, &clock))
813 continue;
814
815 /* based on hardware requirement, prefer bigger p
816 */
817 if (clock.p > best_clock->p) {
818 *best_clock = clock;
819 found = true;
820 }
821 }
822 }
823
824 return found;
825}
826
Ville Syrjälä20ddf662013-09-04 18:25:25 +0300827bool intel_crtc_active(struct drm_crtc *crtc)
828{
829 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
830
831 /* Be paranoid as we can arrive here with only partial
832 * state retrieved from the hardware during setup.
833 *
Damien Lespiau241bfc32013-09-25 16:45:37 +0100834 * We can ditch the adjusted_mode.crtc_clock check as soon
Ville Syrjälä20ddf662013-09-04 18:25:25 +0300835 * as Haswell has gained clock readout/fastboot support.
836 *
Dave Airlie66e514c2014-04-03 07:51:54 +1000837 * We can ditch the crtc->primary->fb check as soon as we can
Ville Syrjälä20ddf662013-09-04 18:25:25 +0300838 * properly reconstruct framebuffers.
839 */
Matt Roperf4510a22014-04-01 15:22:40 -0700840 return intel_crtc->active && crtc->primary->fb &&
Damien Lespiau241bfc32013-09-25 16:45:37 +0100841 intel_crtc->config.adjusted_mode.crtc_clock;
Ville Syrjälä20ddf662013-09-04 18:25:25 +0300842}
843
Paulo Zanonia5c961d2012-10-24 15:59:34 -0200844enum transcoder intel_pipe_to_cpu_transcoder(struct drm_i915_private *dev_priv,
845 enum pipe pipe)
846{
847 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
848 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
849
Daniel Vetter3b117c82013-04-17 20:15:07 +0200850 return intel_crtc->config.cpu_transcoder;
Paulo Zanonia5c961d2012-10-24 15:59:34 -0200851}
852
Ville Syrjälä57e22f42013-11-06 13:56:28 -0200853static void g4x_wait_for_vblank(struct drm_device *dev, int pipe)
Paulo Zanonia928d532012-05-04 17:18:15 -0300854{
855 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä57e22f42013-11-06 13:56:28 -0200856 u32 frame, frame_reg = PIPE_FRMCOUNT_GM45(pipe);
Paulo Zanonia928d532012-05-04 17:18:15 -0300857
858 frame = I915_READ(frame_reg);
859
860 if (wait_for(I915_READ_NOTRACE(frame_reg) != frame, 50))
Jesse Barnes93937072014-04-04 16:12:09 -0700861 WARN(1, "vblank wait timed out\n");
Paulo Zanonia928d532012-05-04 17:18:15 -0300862}
863
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700864/**
865 * intel_wait_for_vblank - wait for vblank on a given pipe
866 * @dev: drm device
867 * @pipe: pipe to wait for
868 *
869 * Wait for vblank to occur on a given pipe. Needed for various bits of
870 * mode setting code.
871 */
872void intel_wait_for_vblank(struct drm_device *dev, int pipe)
Jesse Barnes79e53942008-11-07 14:24:08 -0800873{
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700874 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800875 int pipestat_reg = PIPESTAT(pipe);
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700876
Ville Syrjälä57e22f42013-11-06 13:56:28 -0200877 if (IS_G4X(dev) || INTEL_INFO(dev)->gen >= 5) {
878 g4x_wait_for_vblank(dev, pipe);
Paulo Zanonia928d532012-05-04 17:18:15 -0300879 return;
880 }
881
Chris Wilson300387c2010-09-05 20:25:43 +0100882 /* Clear existing vblank status. Note this will clear any other
883 * sticky status fields as well.
884 *
885 * This races with i915_driver_irq_handler() with the result
886 * that either function could miss a vblank event. Here it is not
887 * fatal, as we will either wait upon the next vblank interrupt or
888 * timeout. Generally speaking intel_wait_for_vblank() is only
889 * called during modeset at which time the GPU should be idle and
890 * should *not* be performing page flips and thus not waiting on
891 * vblanks...
892 * Currently, the result of us stealing a vblank from the irq
893 * handler is that a single frame will be skipped during swapbuffers.
894 */
895 I915_WRITE(pipestat_reg,
896 I915_READ(pipestat_reg) | PIPE_VBLANK_INTERRUPT_STATUS);
897
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700898 /* Wait for vblank interrupt bit to set */
Chris Wilson481b6af2010-08-23 17:43:35 +0100899 if (wait_for(I915_READ(pipestat_reg) &
900 PIPE_VBLANK_INTERRUPT_STATUS,
901 50))
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700902 DRM_DEBUG_KMS("vblank wait timed out\n");
903}
904
Ville Syrjäläfbf49ea2013-10-11 14:21:31 +0300905static bool pipe_dsl_stopped(struct drm_device *dev, enum pipe pipe)
906{
907 struct drm_i915_private *dev_priv = dev->dev_private;
908 u32 reg = PIPEDSL(pipe);
909 u32 line1, line2;
910 u32 line_mask;
911
912 if (IS_GEN2(dev))
913 line_mask = DSL_LINEMASK_GEN2;
914 else
915 line_mask = DSL_LINEMASK_GEN3;
916
917 line1 = I915_READ(reg) & line_mask;
918 mdelay(5);
919 line2 = I915_READ(reg) & line_mask;
920
921 return line1 == line2;
922}
923
Keith Packardab7ad7f2010-10-03 00:33:06 -0700924/*
925 * intel_wait_for_pipe_off - wait for pipe to turn off
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700926 * @dev: drm device
927 * @pipe: pipe to wait for
928 *
929 * After disabling a pipe, we can't wait for vblank in the usual way,
930 * spinning on the vblank interrupt status bit, since we won't actually
931 * see an interrupt when the pipe is disabled.
932 *
Keith Packardab7ad7f2010-10-03 00:33:06 -0700933 * On Gen4 and above:
934 * wait for the pipe register state bit to turn off
935 *
936 * Otherwise:
937 * wait for the display line value to settle (it usually
938 * ends up stopping at the start of the next frame).
Chris Wilson58e10eb2010-10-03 10:56:11 +0100939 *
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700940 */
Chris Wilson58e10eb2010-10-03 10:56:11 +0100941void intel_wait_for_pipe_off(struct drm_device *dev, int pipe)
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700942{
943 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni702e7a52012-10-23 18:29:59 -0200944 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
945 pipe);
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700946
Keith Packardab7ad7f2010-10-03 00:33:06 -0700947 if (INTEL_INFO(dev)->gen >= 4) {
Paulo Zanoni702e7a52012-10-23 18:29:59 -0200948 int reg = PIPECONF(cpu_transcoder);
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700949
Keith Packardab7ad7f2010-10-03 00:33:06 -0700950 /* Wait for the Pipe State to go off */
Chris Wilson58e10eb2010-10-03 10:56:11 +0100951 if (wait_for((I915_READ(reg) & I965_PIPECONF_ACTIVE) == 0,
952 100))
Daniel Vetter284637d2012-07-09 09:51:57 +0200953 WARN(1, "pipe_off wait timed out\n");
Keith Packardab7ad7f2010-10-03 00:33:06 -0700954 } else {
Keith Packardab7ad7f2010-10-03 00:33:06 -0700955 /* Wait for the display line to settle */
Ville Syrjäläfbf49ea2013-10-11 14:21:31 +0300956 if (wait_for(pipe_dsl_stopped(dev, pipe), 100))
Daniel Vetter284637d2012-07-09 09:51:57 +0200957 WARN(1, "pipe_off wait timed out\n");
Keith Packardab7ad7f2010-10-03 00:33:06 -0700958 }
Jesse Barnes79e53942008-11-07 14:24:08 -0800959}
960
Damien Lespiaub0ea7d32012-12-13 16:09:00 +0000961/*
962 * ibx_digital_port_connected - is the specified port connected?
963 * @dev_priv: i915 private structure
964 * @port: the port to test
965 *
966 * Returns true if @port is connected, false otherwise.
967 */
968bool ibx_digital_port_connected(struct drm_i915_private *dev_priv,
969 struct intel_digital_port *port)
970{
971 u32 bit;
972
Damien Lespiauc36346e2012-12-13 16:09:03 +0000973 if (HAS_PCH_IBX(dev_priv->dev)) {
Robin Schroereba905b2014-05-18 02:24:50 +0200974 switch (port->port) {
Damien Lespiauc36346e2012-12-13 16:09:03 +0000975 case PORT_B:
976 bit = SDE_PORTB_HOTPLUG;
977 break;
978 case PORT_C:
979 bit = SDE_PORTC_HOTPLUG;
980 break;
981 case PORT_D:
982 bit = SDE_PORTD_HOTPLUG;
983 break;
984 default:
985 return true;
986 }
987 } else {
Robin Schroereba905b2014-05-18 02:24:50 +0200988 switch (port->port) {
Damien Lespiauc36346e2012-12-13 16:09:03 +0000989 case PORT_B:
990 bit = SDE_PORTB_HOTPLUG_CPT;
991 break;
992 case PORT_C:
993 bit = SDE_PORTC_HOTPLUG_CPT;
994 break;
995 case PORT_D:
996 bit = SDE_PORTD_HOTPLUG_CPT;
997 break;
998 default:
999 return true;
1000 }
Damien Lespiaub0ea7d32012-12-13 16:09:00 +00001001 }
1002
1003 return I915_READ(SDEISR) & bit;
1004}
1005
Jesse Barnesb24e7172011-01-04 15:09:30 -08001006static const char *state_string(bool enabled)
1007{
1008 return enabled ? "on" : "off";
1009}
1010
1011/* Only for pre-ILK configs */
Daniel Vetter55607e82013-06-16 21:42:39 +02001012void assert_pll(struct drm_i915_private *dev_priv,
1013 enum pipe pipe, bool state)
Jesse Barnesb24e7172011-01-04 15:09:30 -08001014{
1015 int reg;
1016 u32 val;
1017 bool cur_state;
1018
1019 reg = DPLL(pipe);
1020 val = I915_READ(reg);
1021 cur_state = !!(val & DPLL_VCO_ENABLE);
1022 WARN(cur_state != state,
1023 "PLL state assertion failure (expected %s, current %s)\n",
1024 state_string(state), state_string(cur_state));
1025}
Jesse Barnesb24e7172011-01-04 15:09:30 -08001026
Jani Nikula23538ef2013-08-27 15:12:22 +03001027/* XXX: the dsi pll is shared between MIPI DSI ports */
1028static void assert_dsi_pll(struct drm_i915_private *dev_priv, bool state)
1029{
1030 u32 val;
1031 bool cur_state;
1032
1033 mutex_lock(&dev_priv->dpio_lock);
1034 val = vlv_cck_read(dev_priv, CCK_REG_DSI_PLL_CONTROL);
1035 mutex_unlock(&dev_priv->dpio_lock);
1036
1037 cur_state = val & DSI_PLL_VCO_EN;
1038 WARN(cur_state != state,
1039 "DSI PLL state assertion failure (expected %s, current %s)\n",
1040 state_string(state), state_string(cur_state));
1041}
1042#define assert_dsi_pll_enabled(d) assert_dsi_pll(d, true)
1043#define assert_dsi_pll_disabled(d) assert_dsi_pll(d, false)
1044
Daniel Vetter55607e82013-06-16 21:42:39 +02001045struct intel_shared_dpll *
Daniel Vettere2b78262013-06-07 23:10:03 +02001046intel_crtc_to_shared_dpll(struct intel_crtc *crtc)
Jesse Barnes040484a2011-01-03 12:14:26 -08001047{
Daniel Vettere2b78262013-06-07 23:10:03 +02001048 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
1049
Daniel Vettera43f6e02013-06-07 23:10:32 +02001050 if (crtc->config.shared_dpll < 0)
Daniel Vettere2b78262013-06-07 23:10:03 +02001051 return NULL;
1052
Daniel Vettera43f6e02013-06-07 23:10:32 +02001053 return &dev_priv->shared_dplls[crtc->config.shared_dpll];
Daniel Vettere2b78262013-06-07 23:10:03 +02001054}
1055
Jesse Barnesb24e7172011-01-04 15:09:30 -08001056/* For ILK+ */
Daniel Vetter55607e82013-06-16 21:42:39 +02001057void assert_shared_dpll(struct drm_i915_private *dev_priv,
1058 struct intel_shared_dpll *pll,
1059 bool state)
Jesse Barnes040484a2011-01-03 12:14:26 -08001060{
Jesse Barnes040484a2011-01-03 12:14:26 -08001061 bool cur_state;
Daniel Vetter53589012013-06-05 13:34:16 +02001062 struct intel_dpll_hw_state hw_state;
Jesse Barnes040484a2011-01-03 12:14:26 -08001063
Eugeni Dodonov9d82aa12012-05-09 15:37:17 -03001064 if (HAS_PCH_LPT(dev_priv->dev)) {
1065 DRM_DEBUG_DRIVER("LPT detected: skipping PCH PLL test\n");
1066 return;
1067 }
1068
Chris Wilson92b27b02012-05-20 18:10:50 +01001069 if (WARN (!pll,
Daniel Vetter46edb022013-06-05 13:34:12 +02001070 "asserting DPLL %s with no DPLL\n", state_string(state)))
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001071 return;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001072
Daniel Vetter53589012013-06-05 13:34:16 +02001073 cur_state = pll->get_hw_state(dev_priv, pll, &hw_state);
Chris Wilson92b27b02012-05-20 18:10:50 +01001074 WARN(cur_state != state,
Daniel Vetter53589012013-06-05 13:34:16 +02001075 "%s assertion failure (expected %s, current %s)\n",
1076 pll->name, state_string(state), state_string(cur_state));
Jesse Barnes040484a2011-01-03 12:14:26 -08001077}
Jesse Barnes040484a2011-01-03 12:14:26 -08001078
1079static void assert_fdi_tx(struct drm_i915_private *dev_priv,
1080 enum pipe pipe, bool state)
1081{
1082 int reg;
1083 u32 val;
1084 bool cur_state;
Paulo Zanoniad80a812012-10-24 16:06:19 -02001085 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
1086 pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08001087
Paulo Zanoniaffa9352012-11-23 15:30:39 -02001088 if (HAS_DDI(dev_priv->dev)) {
1089 /* DDI does not have a specific FDI_TX register */
Paulo Zanoniad80a812012-10-24 16:06:19 -02001090 reg = TRANS_DDI_FUNC_CTL(cpu_transcoder);
Eugeni Dodonovbf507ef2012-05-09 15:37:18 -03001091 val = I915_READ(reg);
Paulo Zanoniad80a812012-10-24 16:06:19 -02001092 cur_state = !!(val & TRANS_DDI_FUNC_ENABLE);
Eugeni Dodonovbf507ef2012-05-09 15:37:18 -03001093 } else {
1094 reg = FDI_TX_CTL(pipe);
1095 val = I915_READ(reg);
1096 cur_state = !!(val & FDI_TX_ENABLE);
1097 }
Jesse Barnes040484a2011-01-03 12:14:26 -08001098 WARN(cur_state != state,
1099 "FDI TX state assertion failure (expected %s, current %s)\n",
1100 state_string(state), state_string(cur_state));
1101}
1102#define assert_fdi_tx_enabled(d, p) assert_fdi_tx(d, p, true)
1103#define assert_fdi_tx_disabled(d, p) assert_fdi_tx(d, p, false)
1104
1105static void assert_fdi_rx(struct drm_i915_private *dev_priv,
1106 enum pipe pipe, bool state)
1107{
1108 int reg;
1109 u32 val;
1110 bool cur_state;
1111
Paulo Zanonid63fa0d2012-11-20 13:27:35 -02001112 reg = FDI_RX_CTL(pipe);
1113 val = I915_READ(reg);
1114 cur_state = !!(val & FDI_RX_ENABLE);
Jesse Barnes040484a2011-01-03 12:14:26 -08001115 WARN(cur_state != state,
1116 "FDI RX state assertion failure (expected %s, current %s)\n",
1117 state_string(state), state_string(cur_state));
1118}
1119#define assert_fdi_rx_enabled(d, p) assert_fdi_rx(d, p, true)
1120#define assert_fdi_rx_disabled(d, p) assert_fdi_rx(d, p, false)
1121
1122static void assert_fdi_tx_pll_enabled(struct drm_i915_private *dev_priv,
1123 enum pipe pipe)
1124{
1125 int reg;
1126 u32 val;
1127
1128 /* ILK FDI PLL is always enabled */
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001129 if (INTEL_INFO(dev_priv->dev)->gen == 5)
Jesse Barnes040484a2011-01-03 12:14:26 -08001130 return;
1131
Eugeni Dodonovbf507ef2012-05-09 15:37:18 -03001132 /* On Haswell, DDI ports are responsible for the FDI PLL setup */
Paulo Zanoniaffa9352012-11-23 15:30:39 -02001133 if (HAS_DDI(dev_priv->dev))
Eugeni Dodonovbf507ef2012-05-09 15:37:18 -03001134 return;
1135
Jesse Barnes040484a2011-01-03 12:14:26 -08001136 reg = FDI_TX_CTL(pipe);
1137 val = I915_READ(reg);
1138 WARN(!(val & FDI_TX_PLL_ENABLE), "FDI TX PLL assertion failure, should be active but is disabled\n");
1139}
1140
Daniel Vetter55607e82013-06-16 21:42:39 +02001141void assert_fdi_rx_pll(struct drm_i915_private *dev_priv,
1142 enum pipe pipe, bool state)
Jesse Barnes040484a2011-01-03 12:14:26 -08001143{
1144 int reg;
1145 u32 val;
Daniel Vetter55607e82013-06-16 21:42:39 +02001146 bool cur_state;
Jesse Barnes040484a2011-01-03 12:14:26 -08001147
1148 reg = FDI_RX_CTL(pipe);
1149 val = I915_READ(reg);
Daniel Vetter55607e82013-06-16 21:42:39 +02001150 cur_state = !!(val & FDI_RX_PLL_ENABLE);
1151 WARN(cur_state != state,
1152 "FDI RX PLL assertion failure (expected %s, current %s)\n",
1153 state_string(state), state_string(cur_state));
Jesse Barnes040484a2011-01-03 12:14:26 -08001154}
1155
Jesse Barnesea0760c2011-01-04 15:09:32 -08001156static void assert_panel_unlocked(struct drm_i915_private *dev_priv,
1157 enum pipe pipe)
1158{
1159 int pp_reg, lvds_reg;
1160 u32 val;
1161 enum pipe panel_pipe = PIPE_A;
Thomas Jarosch0de3b482011-08-25 15:37:45 +02001162 bool locked = true;
Jesse Barnesea0760c2011-01-04 15:09:32 -08001163
1164 if (HAS_PCH_SPLIT(dev_priv->dev)) {
1165 pp_reg = PCH_PP_CONTROL;
1166 lvds_reg = PCH_LVDS;
1167 } else {
1168 pp_reg = PP_CONTROL;
1169 lvds_reg = LVDS;
1170 }
1171
1172 val = I915_READ(pp_reg);
1173 if (!(val & PANEL_POWER_ON) ||
1174 ((val & PANEL_UNLOCK_REGS) == PANEL_UNLOCK_REGS))
1175 locked = false;
1176
1177 if (I915_READ(lvds_reg) & LVDS_PIPEB_SELECT)
1178 panel_pipe = PIPE_B;
1179
1180 WARN(panel_pipe == pipe && locked,
1181 "panel assertion failure, pipe %c regs locked\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001182 pipe_name(pipe));
Jesse Barnesea0760c2011-01-04 15:09:32 -08001183}
1184
Jani Nikula93ce0ba2013-09-13 11:03:08 +03001185static void assert_cursor(struct drm_i915_private *dev_priv,
1186 enum pipe pipe, bool state)
1187{
1188 struct drm_device *dev = dev_priv->dev;
1189 bool cur_state;
1190
Paulo Zanonid9d82082014-02-27 16:30:56 -03001191 if (IS_845G(dev) || IS_I865G(dev))
Jani Nikula93ce0ba2013-09-13 11:03:08 +03001192 cur_state = I915_READ(_CURACNTR) & CURSOR_ENABLE;
Paulo Zanonid9d82082014-02-27 16:30:56 -03001193 else
Ville Syrjälä5efb3e22014-04-09 13:28:53 +03001194 cur_state = I915_READ(CURCNTR(pipe)) & CURSOR_MODE;
Jani Nikula93ce0ba2013-09-13 11:03:08 +03001195
1196 WARN(cur_state != state,
1197 "cursor on pipe %c assertion failure (expected %s, current %s)\n",
1198 pipe_name(pipe), state_string(state), state_string(cur_state));
1199}
1200#define assert_cursor_enabled(d, p) assert_cursor(d, p, true)
1201#define assert_cursor_disabled(d, p) assert_cursor(d, p, false)
1202
Jesse Barnesb840d907f2011-12-13 13:19:38 -08001203void assert_pipe(struct drm_i915_private *dev_priv,
1204 enum pipe pipe, bool state)
Jesse Barnesb24e7172011-01-04 15:09:30 -08001205{
1206 int reg;
1207 u32 val;
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001208 bool cur_state;
Paulo Zanoni702e7a52012-10-23 18:29:59 -02001209 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
1210 pipe);
Jesse Barnesb24e7172011-01-04 15:09:30 -08001211
Daniel Vetter8e636782012-01-22 01:36:48 +01001212 /* if we need the pipe A quirk it must be always on */
1213 if (pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE)
1214 state = true;
1215
Imre Deakda7e29b2014-02-18 00:02:02 +02001216 if (!intel_display_power_enabled(dev_priv,
Paulo Zanonib97186f2013-05-03 12:15:36 -03001217 POWER_DOMAIN_TRANSCODER(cpu_transcoder))) {
Paulo Zanoni69310162013-01-29 16:35:19 -02001218 cur_state = false;
1219 } else {
1220 reg = PIPECONF(cpu_transcoder);
1221 val = I915_READ(reg);
1222 cur_state = !!(val & PIPECONF_ENABLE);
1223 }
1224
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001225 WARN(cur_state != state,
1226 "pipe %c assertion failure (expected %s, current %s)\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001227 pipe_name(pipe), state_string(state), state_string(cur_state));
Jesse Barnesb24e7172011-01-04 15:09:30 -08001228}
1229
Chris Wilson931872f2012-01-16 23:01:13 +00001230static void assert_plane(struct drm_i915_private *dev_priv,
1231 enum plane plane, bool state)
Jesse Barnesb24e7172011-01-04 15:09:30 -08001232{
1233 int reg;
1234 u32 val;
Chris Wilson931872f2012-01-16 23:01:13 +00001235 bool cur_state;
Jesse Barnesb24e7172011-01-04 15:09:30 -08001236
1237 reg = DSPCNTR(plane);
1238 val = I915_READ(reg);
Chris Wilson931872f2012-01-16 23:01:13 +00001239 cur_state = !!(val & DISPLAY_PLANE_ENABLE);
1240 WARN(cur_state != state,
1241 "plane %c assertion failure (expected %s, current %s)\n",
1242 plane_name(plane), state_string(state), state_string(cur_state));
Jesse Barnesb24e7172011-01-04 15:09:30 -08001243}
1244
Chris Wilson931872f2012-01-16 23:01:13 +00001245#define assert_plane_enabled(d, p) assert_plane(d, p, true)
1246#define assert_plane_disabled(d, p) assert_plane(d, p, false)
1247
Jesse Barnesb24e7172011-01-04 15:09:30 -08001248static void assert_planes_disabled(struct drm_i915_private *dev_priv,
1249 enum pipe pipe)
1250{
Ville Syrjälä653e1022013-06-04 13:49:05 +03001251 struct drm_device *dev = dev_priv->dev;
Jesse Barnesb24e7172011-01-04 15:09:30 -08001252 int reg, i;
1253 u32 val;
1254 int cur_pipe;
1255
Ville Syrjälä653e1022013-06-04 13:49:05 +03001256 /* Primary planes are fixed to pipes on gen4+ */
1257 if (INTEL_INFO(dev)->gen >= 4) {
Adam Jackson28c057942011-10-07 14:38:42 -04001258 reg = DSPCNTR(pipe);
1259 val = I915_READ(reg);
Damien Lespiau83f26f12014-03-17 17:59:48 +00001260 WARN(val & DISPLAY_PLANE_ENABLE,
Adam Jackson28c057942011-10-07 14:38:42 -04001261 "plane %c assertion failure, should be disabled but not\n",
1262 plane_name(pipe));
Jesse Barnes19ec1352011-02-02 12:28:02 -08001263 return;
Adam Jackson28c057942011-10-07 14:38:42 -04001264 }
Jesse Barnes19ec1352011-02-02 12:28:02 -08001265
Jesse Barnesb24e7172011-01-04 15:09:30 -08001266 /* Need to check both planes against the pipe */
Damien Lespiau08e2a7d2013-07-11 20:10:54 +01001267 for_each_pipe(i) {
Jesse Barnesb24e7172011-01-04 15:09:30 -08001268 reg = DSPCNTR(i);
1269 val = I915_READ(reg);
1270 cur_pipe = (val & DISPPLANE_SEL_PIPE_MASK) >>
1271 DISPPLANE_SEL_PIPE_SHIFT;
1272 WARN((val & DISPLAY_PLANE_ENABLE) && pipe == cur_pipe,
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001273 "plane %c assertion failure, should be off on pipe %c but is still active\n",
1274 plane_name(i), pipe_name(pipe));
Jesse Barnesb24e7172011-01-04 15:09:30 -08001275 }
1276}
1277
Jesse Barnes19332d72013-03-28 09:55:38 -07001278static void assert_sprites_disabled(struct drm_i915_private *dev_priv,
1279 enum pipe pipe)
1280{
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001281 struct drm_device *dev = dev_priv->dev;
Damien Lespiau1fe47782014-03-03 17:31:47 +00001282 int reg, sprite;
Jesse Barnes19332d72013-03-28 09:55:38 -07001283 u32 val;
1284
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001285 if (IS_VALLEYVIEW(dev)) {
Damien Lespiau1fe47782014-03-03 17:31:47 +00001286 for_each_sprite(pipe, sprite) {
1287 reg = SPCNTR(pipe, sprite);
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001288 val = I915_READ(reg);
Damien Lespiau83f26f12014-03-17 17:59:48 +00001289 WARN(val & SP_ENABLE,
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001290 "sprite %c assertion failure, should be off on pipe %c but is still active\n",
Damien Lespiau1fe47782014-03-03 17:31:47 +00001291 sprite_name(pipe, sprite), pipe_name(pipe));
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001292 }
1293 } else if (INTEL_INFO(dev)->gen >= 7) {
1294 reg = SPRCTL(pipe);
Jesse Barnes19332d72013-03-28 09:55:38 -07001295 val = I915_READ(reg);
Damien Lespiau83f26f12014-03-17 17:59:48 +00001296 WARN(val & SPRITE_ENABLE,
Ville Syrjälä06da8da2013-04-17 17:48:51 +03001297 "sprite %c assertion failure, should be off on pipe %c but is still active\n",
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001298 plane_name(pipe), pipe_name(pipe));
1299 } else if (INTEL_INFO(dev)->gen >= 5) {
1300 reg = DVSCNTR(pipe);
1301 val = I915_READ(reg);
Damien Lespiau83f26f12014-03-17 17:59:48 +00001302 WARN(val & DVS_ENABLE,
Ville Syrjälä20674ee2013-06-04 13:49:06 +03001303 "sprite %c assertion failure, should be off on pipe %c but is still active\n",
1304 plane_name(pipe), pipe_name(pipe));
Jesse Barnes19332d72013-03-28 09:55:38 -07001305 }
1306}
1307
Paulo Zanoni89eff4b2014-01-08 11:12:28 -02001308static void ibx_assert_pch_refclk_enabled(struct drm_i915_private *dev_priv)
Jesse Barnes92f25842011-01-04 15:09:34 -08001309{
1310 u32 val;
1311 bool enabled;
1312
Paulo Zanoni89eff4b2014-01-08 11:12:28 -02001313 WARN_ON(!(HAS_PCH_IBX(dev_priv->dev) || HAS_PCH_CPT(dev_priv->dev)));
Eugeni Dodonov9d82aa12012-05-09 15:37:17 -03001314
Jesse Barnes92f25842011-01-04 15:09:34 -08001315 val = I915_READ(PCH_DREF_CONTROL);
1316 enabled = !!(val & (DREF_SSC_SOURCE_MASK | DREF_NONSPREAD_SOURCE_MASK |
1317 DREF_SUPERSPREAD_SOURCE_MASK));
1318 WARN(!enabled, "PCH refclk assertion failure, should be active but is disabled\n");
1319}
1320
Daniel Vetterab9412b2013-05-03 11:49:46 +02001321static void assert_pch_transcoder_disabled(struct drm_i915_private *dev_priv,
1322 enum pipe pipe)
Jesse Barnes92f25842011-01-04 15:09:34 -08001323{
1324 int reg;
1325 u32 val;
1326 bool enabled;
1327
Daniel Vetterab9412b2013-05-03 11:49:46 +02001328 reg = PCH_TRANSCONF(pipe);
Jesse Barnes92f25842011-01-04 15:09:34 -08001329 val = I915_READ(reg);
1330 enabled = !!(val & TRANS_ENABLE);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001331 WARN(enabled,
1332 "transcoder assertion failed, should be off on pipe %c but is still active\n",
1333 pipe_name(pipe));
Jesse Barnes92f25842011-01-04 15:09:34 -08001334}
1335
Keith Packard4e634382011-08-06 10:39:45 -07001336static bool dp_pipe_enabled(struct drm_i915_private *dev_priv,
1337 enum pipe pipe, u32 port_sel, u32 val)
Keith Packardf0575e92011-07-25 22:12:43 -07001338{
1339 if ((val & DP_PORT_EN) == 0)
1340 return false;
1341
1342 if (HAS_PCH_CPT(dev_priv->dev)) {
1343 u32 trans_dp_ctl_reg = TRANS_DP_CTL(pipe);
1344 u32 trans_dp_ctl = I915_READ(trans_dp_ctl_reg);
1345 if ((trans_dp_ctl & TRANS_DP_PORT_SEL_MASK) != port_sel)
1346 return false;
Chon Ming Lee44f37d12014-04-09 13:28:21 +03001347 } else if (IS_CHERRYVIEW(dev_priv->dev)) {
1348 if ((val & DP_PIPE_MASK_CHV) != DP_PIPE_SELECT_CHV(pipe))
1349 return false;
Keith Packardf0575e92011-07-25 22:12:43 -07001350 } else {
1351 if ((val & DP_PIPE_MASK) != (pipe << 30))
1352 return false;
1353 }
1354 return true;
1355}
1356
Keith Packard1519b992011-08-06 10:35:34 -07001357static bool hdmi_pipe_enabled(struct drm_i915_private *dev_priv,
1358 enum pipe pipe, u32 val)
1359{
Paulo Zanonidc0fa712013-02-19 16:21:46 -03001360 if ((val & SDVO_ENABLE) == 0)
Keith Packard1519b992011-08-06 10:35:34 -07001361 return false;
1362
1363 if (HAS_PCH_CPT(dev_priv->dev)) {
Paulo Zanonidc0fa712013-02-19 16:21:46 -03001364 if ((val & SDVO_PIPE_SEL_MASK_CPT) != SDVO_PIPE_SEL_CPT(pipe))
Keith Packard1519b992011-08-06 10:35:34 -07001365 return false;
Chon Ming Lee44f37d12014-04-09 13:28:21 +03001366 } else if (IS_CHERRYVIEW(dev_priv->dev)) {
1367 if ((val & SDVO_PIPE_SEL_MASK_CHV) != SDVO_PIPE_SEL_CHV(pipe))
1368 return false;
Keith Packard1519b992011-08-06 10:35:34 -07001369 } else {
Paulo Zanonidc0fa712013-02-19 16:21:46 -03001370 if ((val & SDVO_PIPE_SEL_MASK) != SDVO_PIPE_SEL(pipe))
Keith Packard1519b992011-08-06 10:35:34 -07001371 return false;
1372 }
1373 return true;
1374}
1375
1376static bool lvds_pipe_enabled(struct drm_i915_private *dev_priv,
1377 enum pipe pipe, u32 val)
1378{
1379 if ((val & LVDS_PORT_EN) == 0)
1380 return false;
1381
1382 if (HAS_PCH_CPT(dev_priv->dev)) {
1383 if ((val & PORT_TRANS_SEL_MASK) != PORT_TRANS_SEL_CPT(pipe))
1384 return false;
1385 } else {
1386 if ((val & LVDS_PIPE_MASK) != LVDS_PIPE(pipe))
1387 return false;
1388 }
1389 return true;
1390}
1391
1392static bool adpa_pipe_enabled(struct drm_i915_private *dev_priv,
1393 enum pipe pipe, u32 val)
1394{
1395 if ((val & ADPA_DAC_ENABLE) == 0)
1396 return false;
1397 if (HAS_PCH_CPT(dev_priv->dev)) {
1398 if ((val & PORT_TRANS_SEL_MASK) != PORT_TRANS_SEL_CPT(pipe))
1399 return false;
1400 } else {
1401 if ((val & ADPA_PIPE_SELECT_MASK) != ADPA_PIPE_SELECT(pipe))
1402 return false;
1403 }
1404 return true;
1405}
1406
Jesse Barnes291906f2011-02-02 12:28:03 -08001407static void assert_pch_dp_disabled(struct drm_i915_private *dev_priv,
Keith Packardf0575e92011-07-25 22:12:43 -07001408 enum pipe pipe, int reg, u32 port_sel)
Jesse Barnes291906f2011-02-02 12:28:03 -08001409{
Jesse Barnes47a05ec2011-02-07 13:46:40 -08001410 u32 val = I915_READ(reg);
Keith Packard4e634382011-08-06 10:39:45 -07001411 WARN(dp_pipe_enabled(dev_priv, pipe, port_sel, val),
Jesse Barnes291906f2011-02-02 12:28:03 -08001412 "PCH DP (0x%08x) enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001413 reg, pipe_name(pipe));
Daniel Vetterde9a35a2012-06-05 11:03:40 +02001414
Daniel Vetter75c5da22012-09-10 21:58:29 +02001415 WARN(HAS_PCH_IBX(dev_priv->dev) && (val & DP_PORT_EN) == 0
1416 && (val & DP_PIPEB_SELECT),
Daniel Vetterde9a35a2012-06-05 11:03:40 +02001417 "IBX PCH dp port still using transcoder B\n");
Jesse Barnes291906f2011-02-02 12:28:03 -08001418}
1419
1420static void assert_pch_hdmi_disabled(struct drm_i915_private *dev_priv,
1421 enum pipe pipe, int reg)
1422{
Jesse Barnes47a05ec2011-02-07 13:46:40 -08001423 u32 val = I915_READ(reg);
Xu, Anhuab70ad582012-08-13 03:08:33 +00001424 WARN(hdmi_pipe_enabled(dev_priv, pipe, val),
Adam Jackson23c99e72011-10-07 14:38:43 -04001425 "PCH HDMI (0x%08x) enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001426 reg, pipe_name(pipe));
Daniel Vetterde9a35a2012-06-05 11:03:40 +02001427
Paulo Zanonidc0fa712013-02-19 16:21:46 -03001428 WARN(HAS_PCH_IBX(dev_priv->dev) && (val & SDVO_ENABLE) == 0
Daniel Vetter75c5da22012-09-10 21:58:29 +02001429 && (val & SDVO_PIPE_B_SELECT),
Daniel Vetterde9a35a2012-06-05 11:03:40 +02001430 "IBX PCH hdmi port still using transcoder B\n");
Jesse Barnes291906f2011-02-02 12:28:03 -08001431}
1432
1433static void assert_pch_ports_disabled(struct drm_i915_private *dev_priv,
1434 enum pipe pipe)
1435{
1436 int reg;
1437 u32 val;
Jesse Barnes291906f2011-02-02 12:28:03 -08001438
Keith Packardf0575e92011-07-25 22:12:43 -07001439 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_B, TRANS_DP_PORT_SEL_B);
1440 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_C, TRANS_DP_PORT_SEL_C);
1441 assert_pch_dp_disabled(dev_priv, pipe, PCH_DP_D, TRANS_DP_PORT_SEL_D);
Jesse Barnes291906f2011-02-02 12:28:03 -08001442
1443 reg = PCH_ADPA;
1444 val = I915_READ(reg);
Xu, Anhuab70ad582012-08-13 03:08:33 +00001445 WARN(adpa_pipe_enabled(dev_priv, pipe, val),
Jesse Barnes291906f2011-02-02 12:28:03 -08001446 "PCH VGA enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001447 pipe_name(pipe));
Jesse Barnes291906f2011-02-02 12:28:03 -08001448
1449 reg = PCH_LVDS;
1450 val = I915_READ(reg);
Xu, Anhuab70ad582012-08-13 03:08:33 +00001451 WARN(lvds_pipe_enabled(dev_priv, pipe, val),
Jesse Barnes291906f2011-02-02 12:28:03 -08001452 "PCH LVDS enabled on transcoder %c, should be disabled\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001453 pipe_name(pipe));
Jesse Barnes291906f2011-02-02 12:28:03 -08001454
Paulo Zanonie2debe92013-02-18 19:00:27 -03001455 assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMIB);
1456 assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMIC);
1457 assert_pch_hdmi_disabled(dev_priv, pipe, PCH_HDMID);
Jesse Barnes291906f2011-02-02 12:28:03 -08001458}
1459
Jesse Barnes40e9cf62013-10-03 11:35:46 -07001460static void intel_init_dpio(struct drm_device *dev)
1461{
1462 struct drm_i915_private *dev_priv = dev->dev_private;
1463
1464 if (!IS_VALLEYVIEW(dev))
1465 return;
1466
Chon Ming Leea09cadd2014-04-09 13:28:14 +03001467 /*
1468 * IOSF_PORT_DPIO is used for VLV x2 PHY (DP/HDMI B and C),
1469 * CHV x1 PHY (DP/HDMI D)
1470 * IOSF_PORT_DPIO_2 is used for CHV x2 PHY (DP/HDMI B and C)
1471 */
1472 if (IS_CHERRYVIEW(dev)) {
1473 DPIO_PHY_IOSF_PORT(DPIO_PHY0) = IOSF_PORT_DPIO_2;
1474 DPIO_PHY_IOSF_PORT(DPIO_PHY1) = IOSF_PORT_DPIO;
1475 } else {
1476 DPIO_PHY_IOSF_PORT(DPIO_PHY0) = IOSF_PORT_DPIO;
1477 }
Jesse Barnes5382f5f352013-12-16 16:34:24 -08001478}
1479
1480static void intel_reset_dpio(struct drm_device *dev)
1481{
1482 struct drm_i915_private *dev_priv = dev->dev_private;
1483
1484 if (!IS_VALLEYVIEW(dev))
1485 return;
1486
Imre Deake5cbfbf2014-01-09 17:08:16 +02001487 /*
1488 * Enable the CRI clock source so we can get at the display and the
1489 * reference clock for VGA hotplug / manual detection.
1490 */
Imre Deak404faab2014-01-09 17:08:15 +02001491 I915_WRITE(DPLL(PIPE_B), I915_READ(DPLL(PIPE_B)) |
Imre Deake5cbfbf2014-01-09 17:08:16 +02001492 DPLL_REFA_CLK_ENABLE_VLV |
Imre Deak404faab2014-01-09 17:08:15 +02001493 DPLL_INTEGRATED_CRI_CLK_VLV);
1494
Chon Ming Lee076ed3b2014-04-09 13:28:17 +03001495 if (IS_CHERRYVIEW(dev)) {
1496 enum dpio_phy phy;
1497 u32 val;
1498
1499 for (phy = DPIO_PHY0; phy < I915_NUM_PHYS_VLV; phy++) {
1500 /* Poll for phypwrgood signal */
1501 if (wait_for(I915_READ(DISPLAY_PHY_STATUS) &
1502 PHY_POWERGOOD(phy), 1))
1503 DRM_ERROR("Display PHY %d is not power up\n", phy);
1504
1505 /*
1506 * Deassert common lane reset for PHY.
1507 *
1508 * This should only be done on init and resume from S3
1509 * with both PLLs disabled, or we risk losing DPIO and
1510 * PLL synchronization.
1511 */
1512 val = I915_READ(DISPLAY_PHY_CONTROL);
1513 I915_WRITE(DISPLAY_PHY_CONTROL,
1514 PHY_COM_LANE_RESET_DEASSERT(phy, val));
1515 }
1516
1517 } else {
1518 /*
1519 * From VLV2A0_DP_eDP_DPIO_driver_vbios_notes_10.docx -
1520 * 6. De-assert cmn_reset/side_reset. Same as VLV X0.
1521 * a. GUnit 0x2110 bit[0] set to 1 (def 0)
1522 * b. The other bits such as sfr settings / modesel may all
1523 * be set to 0.
1524 *
1525 * This should only be done on init and resume from S3 with
1526 * both PLLs disabled, or we risk losing DPIO and PLL
1527 * synchronization.
1528 */
1529 I915_WRITE(DPIO_CTL, I915_READ(DPIO_CTL) | DPIO_CMNRST);
1530 }
Jesse Barnes40e9cf62013-10-03 11:35:46 -07001531}
1532
Daniel Vetter426115c2013-07-11 22:13:42 +02001533static void vlv_enable_pll(struct intel_crtc *crtc)
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001534{
Daniel Vetter426115c2013-07-11 22:13:42 +02001535 struct drm_device *dev = crtc->base.dev;
1536 struct drm_i915_private *dev_priv = dev->dev_private;
1537 int reg = DPLL(crtc->pipe);
1538 u32 dpll = crtc->config.dpll_hw_state.dpll;
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001539
Daniel Vetter426115c2013-07-11 22:13:42 +02001540 assert_pipe_disabled(dev_priv, crtc->pipe);
Daniel Vetter58c6eaa2013-04-11 16:29:09 +02001541
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001542 /* No really, not for ILK+ */
Daniel Vetter87442f72013-06-06 00:52:17 +02001543 BUG_ON(!IS_VALLEYVIEW(dev_priv->dev));
1544
1545 /* PLL is protected by panel, make sure we can write it */
1546 if (IS_MOBILE(dev_priv->dev) && !IS_I830(dev_priv->dev))
Daniel Vetter426115c2013-07-11 22:13:42 +02001547 assert_panel_unlocked(dev_priv, crtc->pipe);
Daniel Vetter87442f72013-06-06 00:52:17 +02001548
Daniel Vetter426115c2013-07-11 22:13:42 +02001549 I915_WRITE(reg, dpll);
1550 POSTING_READ(reg);
1551 udelay(150);
1552
1553 if (wait_for(((I915_READ(reg) & DPLL_LOCK_VLV) == DPLL_LOCK_VLV), 1))
1554 DRM_ERROR("DPLL %d failed to lock\n", crtc->pipe);
1555
1556 I915_WRITE(DPLL_MD(crtc->pipe), crtc->config.dpll_hw_state.dpll_md);
1557 POSTING_READ(DPLL_MD(crtc->pipe));
Daniel Vetter87442f72013-06-06 00:52:17 +02001558
1559 /* We do this three times for luck */
Daniel Vetter426115c2013-07-11 22:13:42 +02001560 I915_WRITE(reg, dpll);
Daniel Vetter87442f72013-06-06 00:52:17 +02001561 POSTING_READ(reg);
1562 udelay(150); /* wait for warmup */
Daniel Vetter426115c2013-07-11 22:13:42 +02001563 I915_WRITE(reg, dpll);
Daniel Vetter87442f72013-06-06 00:52:17 +02001564 POSTING_READ(reg);
1565 udelay(150); /* wait for warmup */
Daniel Vetter426115c2013-07-11 22:13:42 +02001566 I915_WRITE(reg, dpll);
Daniel Vetter87442f72013-06-06 00:52:17 +02001567 POSTING_READ(reg);
1568 udelay(150); /* wait for warmup */
1569}
1570
Chon Ming Lee9d556c92014-05-02 14:27:47 +03001571static void chv_enable_pll(struct intel_crtc *crtc)
1572{
1573 struct drm_device *dev = crtc->base.dev;
1574 struct drm_i915_private *dev_priv = dev->dev_private;
1575 int pipe = crtc->pipe;
1576 enum dpio_channel port = vlv_pipe_to_channel(pipe);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03001577 u32 tmp;
1578
1579 assert_pipe_disabled(dev_priv, crtc->pipe);
1580
1581 BUG_ON(!IS_CHERRYVIEW(dev_priv->dev));
1582
1583 mutex_lock(&dev_priv->dpio_lock);
1584
1585 /* Enable back the 10bit clock to display controller */
1586 tmp = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW14(port));
1587 tmp |= DPIO_DCLKP_EN;
1588 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port), tmp);
1589
1590 /*
1591 * Need to wait > 100ns between dclkp clock enable bit and PLL enable.
1592 */
1593 udelay(1);
1594
1595 /* Enable PLL */
Ville Syrjäläa11b0702014-04-09 13:28:57 +03001596 I915_WRITE(DPLL(pipe), crtc->config.dpll_hw_state.dpll);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03001597
1598 /* Check PLL is locked */
Ville Syrjäläa11b0702014-04-09 13:28:57 +03001599 if (wait_for(((I915_READ(DPLL(pipe)) & DPLL_LOCK_VLV) == DPLL_LOCK_VLV), 1))
Chon Ming Lee9d556c92014-05-02 14:27:47 +03001600 DRM_ERROR("PLL %d failed to lock\n", pipe);
1601
Ville Syrjäläa11b0702014-04-09 13:28:57 +03001602 /* not sure when this should be written */
1603 I915_WRITE(DPLL_MD(pipe), crtc->config.dpll_hw_state.dpll_md);
1604 POSTING_READ(DPLL_MD(pipe));
1605
Chon Ming Lee9d556c92014-05-02 14:27:47 +03001606 mutex_unlock(&dev_priv->dpio_lock);
1607}
1608
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001609static void i9xx_enable_pll(struct intel_crtc *crtc)
Daniel Vetter87442f72013-06-06 00:52:17 +02001610{
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001611 struct drm_device *dev = crtc->base.dev;
1612 struct drm_i915_private *dev_priv = dev->dev_private;
1613 int reg = DPLL(crtc->pipe);
1614 u32 dpll = crtc->config.dpll_hw_state.dpll;
Daniel Vetter87442f72013-06-06 00:52:17 +02001615
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001616 assert_pipe_disabled(dev_priv, crtc->pipe);
Daniel Vetter87442f72013-06-06 00:52:17 +02001617
1618 /* No really, not for ILK+ */
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001619 BUG_ON(INTEL_INFO(dev)->gen >= 5);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001620
1621 /* PLL is protected by panel, make sure we can write it */
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001622 if (IS_MOBILE(dev) && !IS_I830(dev))
1623 assert_panel_unlocked(dev_priv, crtc->pipe);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001624
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001625 I915_WRITE(reg, dpll);
1626
1627 /* Wait for the clocks to stabilize. */
1628 POSTING_READ(reg);
1629 udelay(150);
1630
1631 if (INTEL_INFO(dev)->gen >= 4) {
1632 I915_WRITE(DPLL_MD(crtc->pipe),
1633 crtc->config.dpll_hw_state.dpll_md);
1634 } else {
1635 /* The pixel multiplier can only be updated once the
1636 * DPLL is enabled and the clocks are stable.
1637 *
1638 * So write it again.
1639 */
1640 I915_WRITE(reg, dpll);
1641 }
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001642
1643 /* We do this three times for luck */
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001644 I915_WRITE(reg, dpll);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001645 POSTING_READ(reg);
1646 udelay(150); /* wait for warmup */
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001647 I915_WRITE(reg, dpll);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001648 POSTING_READ(reg);
1649 udelay(150); /* wait for warmup */
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001650 I915_WRITE(reg, dpll);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001651 POSTING_READ(reg);
1652 udelay(150); /* wait for warmup */
1653}
1654
1655/**
Daniel Vetter50b44a42013-06-05 13:34:33 +02001656 * i9xx_disable_pll - disable a PLL
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001657 * @dev_priv: i915 private structure
1658 * @pipe: pipe PLL to disable
1659 *
1660 * Disable the PLL for @pipe, making sure the pipe is off first.
1661 *
1662 * Note! This is for pre-ILK only.
1663 */
Daniel Vetter50b44a42013-06-05 13:34:33 +02001664static void i9xx_disable_pll(struct drm_i915_private *dev_priv, enum pipe pipe)
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001665{
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001666 /* Don't disable pipe A or pipe A PLLs if needed */
1667 if (pipe == PIPE_A && (dev_priv->quirks & QUIRK_PIPEA_FORCE))
1668 return;
1669
1670 /* Make sure the pipe isn't still relying on us */
1671 assert_pipe_disabled(dev_priv, pipe);
1672
Daniel Vetter50b44a42013-06-05 13:34:33 +02001673 I915_WRITE(DPLL(pipe), 0);
1674 POSTING_READ(DPLL(pipe));
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001675}
1676
Jesse Barnesf6071162013-10-01 10:41:38 -07001677static void vlv_disable_pll(struct drm_i915_private *dev_priv, enum pipe pipe)
1678{
1679 u32 val = 0;
1680
1681 /* Make sure the pipe isn't still relying on us */
1682 assert_pipe_disabled(dev_priv, pipe);
1683
Imre Deake5cbfbf2014-01-09 17:08:16 +02001684 /*
1685 * Leave integrated clock source and reference clock enabled for pipe B.
1686 * The latter is needed for VGA hotplug / manual detection.
1687 */
Jesse Barnesf6071162013-10-01 10:41:38 -07001688 if (pipe == PIPE_B)
Imre Deake5cbfbf2014-01-09 17:08:16 +02001689 val = DPLL_INTEGRATED_CRI_CLK_VLV | DPLL_REFA_CLK_ENABLE_VLV;
Jesse Barnesf6071162013-10-01 10:41:38 -07001690 I915_WRITE(DPLL(pipe), val);
1691 POSTING_READ(DPLL(pipe));
Chon Ming Lee076ed3b2014-04-09 13:28:17 +03001692
1693}
1694
1695static void chv_disable_pll(struct drm_i915_private *dev_priv, enum pipe pipe)
1696{
Ville Syrjäläd7520482014-04-09 13:28:59 +03001697 enum dpio_channel port = vlv_pipe_to_channel(pipe);
Chon Ming Lee076ed3b2014-04-09 13:28:17 +03001698 u32 val;
1699
Ville Syrjäläa11b0702014-04-09 13:28:57 +03001700 /* Make sure the pipe isn't still relying on us */
1701 assert_pipe_disabled(dev_priv, pipe);
Chon Ming Lee076ed3b2014-04-09 13:28:17 +03001702
Ville Syrjäläa11b0702014-04-09 13:28:57 +03001703 /* Set PLL en = 0 */
1704 val = DPLL_SSC_REF_CLOCK_CHV;
1705 if (pipe != PIPE_A)
1706 val |= DPLL_INTEGRATED_CRI_CLK_VLV;
1707 I915_WRITE(DPLL(pipe), val);
1708 POSTING_READ(DPLL(pipe));
Ville Syrjäläd7520482014-04-09 13:28:59 +03001709
1710 mutex_lock(&dev_priv->dpio_lock);
1711
1712 /* Disable 10bit clock to display controller */
1713 val = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW14(port));
1714 val &= ~DPIO_DCLKP_EN;
1715 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port), val);
1716
1717 mutex_unlock(&dev_priv->dpio_lock);
Jesse Barnesf6071162013-10-01 10:41:38 -07001718}
1719
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001720void vlv_wait_port_ready(struct drm_i915_private *dev_priv,
1721 struct intel_digital_port *dport)
Jesse Barnes89b667f2013-04-18 14:51:36 -07001722{
1723 u32 port_mask;
Chon Ming Lee00fc31b2014-04-09 13:28:15 +03001724 int dpll_reg;
Jesse Barnes89b667f2013-04-18 14:51:36 -07001725
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001726 switch (dport->port) {
1727 case PORT_B:
Jesse Barnes89b667f2013-04-18 14:51:36 -07001728 port_mask = DPLL_PORTB_READY_MASK;
Chon Ming Lee00fc31b2014-04-09 13:28:15 +03001729 dpll_reg = DPLL(0);
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001730 break;
1731 case PORT_C:
Jesse Barnes89b667f2013-04-18 14:51:36 -07001732 port_mask = DPLL_PORTC_READY_MASK;
Chon Ming Lee00fc31b2014-04-09 13:28:15 +03001733 dpll_reg = DPLL(0);
1734 break;
1735 case PORT_D:
1736 port_mask = DPLL_PORTD_READY_MASK;
1737 dpll_reg = DPIO_PHY_STATUS;
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001738 break;
1739 default:
1740 BUG();
1741 }
Jesse Barnes89b667f2013-04-18 14:51:36 -07001742
Chon Ming Lee00fc31b2014-04-09 13:28:15 +03001743 if (wait_for((I915_READ(dpll_reg) & port_mask) == 0, 1000))
Jesse Barnes89b667f2013-04-18 14:51:36 -07001744 WARN(1, "timed out waiting for port %c ready: 0x%08x\n",
Chon Ming Lee00fc31b2014-04-09 13:28:15 +03001745 port_name(dport->port), I915_READ(dpll_reg));
Jesse Barnes89b667f2013-04-18 14:51:36 -07001746}
1747
Daniel Vetterb14b1052014-04-24 23:55:13 +02001748static void intel_prepare_shared_dpll(struct intel_crtc *crtc)
1749{
1750 struct drm_device *dev = crtc->base.dev;
1751 struct drm_i915_private *dev_priv = dev->dev_private;
1752 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
1753
1754 WARN_ON(!pll->refcount);
1755 if (pll->active == 0) {
1756 DRM_DEBUG_DRIVER("setting up %s\n", pll->name);
1757 WARN_ON(pll->on);
1758 assert_shared_dpll_disabled(dev_priv, pll);
1759
1760 pll->mode_set(dev_priv, pll);
1761 }
1762}
1763
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001764/**
Daniel Vetter85b38942014-04-24 23:55:14 +02001765 * intel_enable_shared_dpll - enable PCH PLL
Jesse Barnes92f25842011-01-04 15:09:34 -08001766 * @dev_priv: i915 private structure
1767 * @pipe: pipe PLL to enable
1768 *
1769 * The PCH PLL needs to be enabled before the PCH transcoder, since it
1770 * drives the transcoder clock.
1771 */
Daniel Vetter85b38942014-04-24 23:55:14 +02001772static void intel_enable_shared_dpll(struct intel_crtc *crtc)
Jesse Barnes92f25842011-01-04 15:09:34 -08001773{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001774 struct drm_device *dev = crtc->base.dev;
1775 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vettere2b78262013-06-07 23:10:03 +02001776 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
Jesse Barnes92f25842011-01-04 15:09:34 -08001777
Daniel Vetter87a875b2013-06-05 13:34:19 +02001778 if (WARN_ON(pll == NULL))
Chris Wilson48da64a2012-05-13 20:16:12 +01001779 return;
1780
1781 if (WARN_ON(pll->refcount == 0))
1782 return;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001783
Daniel Vetter46edb022013-06-05 13:34:12 +02001784 DRM_DEBUG_KMS("enable %s (active %d, on? %d)for crtc %d\n",
1785 pll->name, pll->active, pll->on,
Daniel Vettere2b78262013-06-07 23:10:03 +02001786 crtc->base.base.id);
Jesse Barnes92f25842011-01-04 15:09:34 -08001787
Daniel Vettercdbd2312013-06-05 13:34:03 +02001788 if (pll->active++) {
1789 WARN_ON(!pll->on);
Daniel Vettere9d69442013-06-05 13:34:15 +02001790 assert_shared_dpll_enabled(dev_priv, pll);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001791 return;
1792 }
Daniel Vetterf4a091c2013-06-10 17:28:22 +02001793 WARN_ON(pll->on);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001794
Daniel Vetter46edb022013-06-05 13:34:12 +02001795 DRM_DEBUG_KMS("enabling %s\n", pll->name);
Daniel Vettere7b903d2013-06-05 13:34:14 +02001796 pll->enable(dev_priv, pll);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001797 pll->on = true;
Jesse Barnes92f25842011-01-04 15:09:34 -08001798}
1799
Daniel Vettere2b78262013-06-07 23:10:03 +02001800static void intel_disable_shared_dpll(struct intel_crtc *crtc)
Jesse Barnes92f25842011-01-04 15:09:34 -08001801{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001802 struct drm_device *dev = crtc->base.dev;
1803 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vettere2b78262013-06-07 23:10:03 +02001804 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
Jesse Barnes4c609cb2011-09-02 12:52:11 -07001805
Jesse Barnes92f25842011-01-04 15:09:34 -08001806 /* PCH only available on ILK+ */
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001807 BUG_ON(INTEL_INFO(dev)->gen < 5);
Daniel Vetter87a875b2013-06-05 13:34:19 +02001808 if (WARN_ON(pll == NULL))
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001809 return;
1810
Chris Wilson48da64a2012-05-13 20:16:12 +01001811 if (WARN_ON(pll->refcount == 0))
1812 return;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001813
Daniel Vetter46edb022013-06-05 13:34:12 +02001814 DRM_DEBUG_KMS("disable %s (active %d, on? %d) for crtc %d\n",
1815 pll->name, pll->active, pll->on,
Daniel Vettere2b78262013-06-07 23:10:03 +02001816 crtc->base.base.id);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001817
Chris Wilson48da64a2012-05-13 20:16:12 +01001818 if (WARN_ON(pll->active == 0)) {
Daniel Vettere9d69442013-06-05 13:34:15 +02001819 assert_shared_dpll_disabled(dev_priv, pll);
Chris Wilson48da64a2012-05-13 20:16:12 +01001820 return;
1821 }
1822
Daniel Vettere9d69442013-06-05 13:34:15 +02001823 assert_shared_dpll_enabled(dev_priv, pll);
Daniel Vetterf4a091c2013-06-10 17:28:22 +02001824 WARN_ON(!pll->on);
Daniel Vettercdbd2312013-06-05 13:34:03 +02001825 if (--pll->active)
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001826 return;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001827
Daniel Vetter46edb022013-06-05 13:34:12 +02001828 DRM_DEBUG_KMS("disabling %s\n", pll->name);
Daniel Vettere7b903d2013-06-05 13:34:14 +02001829 pll->disable(dev_priv, pll);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001830 pll->on = false;
Jesse Barnes92f25842011-01-04 15:09:34 -08001831}
1832
Paulo Zanonib8a4f402012-10-31 18:12:42 -02001833static void ironlake_enable_pch_transcoder(struct drm_i915_private *dev_priv,
1834 enum pipe pipe)
Jesse Barnes040484a2011-01-03 12:14:26 -08001835{
Daniel Vetter23670b322012-11-01 09:15:30 +01001836 struct drm_device *dev = dev_priv->dev;
Paulo Zanoni7c26e5c2012-02-14 17:07:09 -02001837 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
Daniel Vettere2b78262013-06-07 23:10:03 +02001838 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter23670b322012-11-01 09:15:30 +01001839 uint32_t reg, val, pipeconf_val;
Jesse Barnes040484a2011-01-03 12:14:26 -08001840
1841 /* PCH only available on ILK+ */
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001842 BUG_ON(INTEL_INFO(dev)->gen < 5);
Jesse Barnes040484a2011-01-03 12:14:26 -08001843
1844 /* Make sure PCH DPLL is enabled */
Daniel Vettere72f9fb2013-06-05 13:34:06 +02001845 assert_shared_dpll_enabled(dev_priv,
Daniel Vettere9d69442013-06-05 13:34:15 +02001846 intel_crtc_to_shared_dpll(intel_crtc));
Jesse Barnes040484a2011-01-03 12:14:26 -08001847
1848 /* FDI must be feeding us bits for PCH ports */
1849 assert_fdi_tx_enabled(dev_priv, pipe);
1850 assert_fdi_rx_enabled(dev_priv, pipe);
1851
Daniel Vetter23670b322012-11-01 09:15:30 +01001852 if (HAS_PCH_CPT(dev)) {
1853 /* Workaround: Set the timing override bit before enabling the
1854 * pch transcoder. */
1855 reg = TRANS_CHICKEN2(pipe);
1856 val = I915_READ(reg);
1857 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
1858 I915_WRITE(reg, val);
Eugeni Dodonov59c859d2012-05-09 15:37:19 -03001859 }
Daniel Vetter23670b322012-11-01 09:15:30 +01001860
Daniel Vetterab9412b2013-05-03 11:49:46 +02001861 reg = PCH_TRANSCONF(pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08001862 val = I915_READ(reg);
Paulo Zanoni5f7f7262012-02-03 17:47:15 -02001863 pipeconf_val = I915_READ(PIPECONF(pipe));
Jesse Barnese9bcff52011-06-24 12:19:20 -07001864
1865 if (HAS_PCH_IBX(dev_priv->dev)) {
1866 /*
1867 * make the BPC in transcoder be consistent with
1868 * that in pipeconf reg.
1869 */
Daniel Vetterdfd07d72012-12-17 11:21:38 +01001870 val &= ~PIPECONF_BPC_MASK;
1871 val |= pipeconf_val & PIPECONF_BPC_MASK;
Jesse Barnese9bcff52011-06-24 12:19:20 -07001872 }
Paulo Zanoni5f7f7262012-02-03 17:47:15 -02001873
1874 val &= ~TRANS_INTERLACE_MASK;
1875 if ((pipeconf_val & PIPECONF_INTERLACE_MASK) == PIPECONF_INTERLACED_ILK)
Paulo Zanoni7c26e5c2012-02-14 17:07:09 -02001876 if (HAS_PCH_IBX(dev_priv->dev) &&
1877 intel_pipe_has_type(crtc, INTEL_OUTPUT_SDVO))
1878 val |= TRANS_LEGACY_INTERLACED_ILK;
1879 else
1880 val |= TRANS_INTERLACED;
Paulo Zanoni5f7f7262012-02-03 17:47:15 -02001881 else
1882 val |= TRANS_PROGRESSIVE;
1883
Jesse Barnes040484a2011-01-03 12:14:26 -08001884 I915_WRITE(reg, val | TRANS_ENABLE);
1885 if (wait_for(I915_READ(reg) & TRANS_STATE_ENABLE, 100))
Ville Syrjälä4bb6f1f2013-04-17 17:48:50 +03001886 DRM_ERROR("failed to enable transcoder %c\n", pipe_name(pipe));
Jesse Barnes040484a2011-01-03 12:14:26 -08001887}
1888
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001889static void lpt_enable_pch_transcoder(struct drm_i915_private *dev_priv,
Paulo Zanoni937bb612012-10-31 18:12:47 -02001890 enum transcoder cpu_transcoder)
Jesse Barnes040484a2011-01-03 12:14:26 -08001891{
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001892 u32 val, pipeconf_val;
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001893
1894 /* PCH only available on ILK+ */
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001895 BUG_ON(INTEL_INFO(dev_priv->dev)->gen < 5);
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001896
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001897 /* FDI must be feeding us bits for PCH ports */
Daniel Vetter1a240d42012-11-29 22:18:51 +01001898 assert_fdi_tx_enabled(dev_priv, (enum pipe) cpu_transcoder);
Paulo Zanoni937bb612012-10-31 18:12:47 -02001899 assert_fdi_rx_enabled(dev_priv, TRANSCODER_A);
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001900
Paulo Zanoni223a6fd2012-10-31 18:12:52 -02001901 /* Workaround: set timing override bit. */
1902 val = I915_READ(_TRANSA_CHICKEN2);
Daniel Vetter23670b322012-11-01 09:15:30 +01001903 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
Paulo Zanoni223a6fd2012-10-31 18:12:52 -02001904 I915_WRITE(_TRANSA_CHICKEN2, val);
1905
Paulo Zanoni25f3ef12012-10-31 18:12:49 -02001906 val = TRANS_ENABLE;
Paulo Zanoni937bb612012-10-31 18:12:47 -02001907 pipeconf_val = I915_READ(PIPECONF(cpu_transcoder));
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001908
Paulo Zanoni9a76b1c2012-10-31 18:12:48 -02001909 if ((pipeconf_val & PIPECONF_INTERLACE_MASK_HSW) ==
1910 PIPECONF_INTERLACED_ILK)
Paulo Zanonia35f2672012-10-31 18:12:45 -02001911 val |= TRANS_INTERLACED;
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001912 else
1913 val |= TRANS_PROGRESSIVE;
1914
Daniel Vetterab9412b2013-05-03 11:49:46 +02001915 I915_WRITE(LPT_TRANSCONF, val);
1916 if (wait_for(I915_READ(LPT_TRANSCONF) & TRANS_STATE_ENABLE, 100))
Paulo Zanoni937bb612012-10-31 18:12:47 -02001917 DRM_ERROR("Failed to enable PCH transcoder\n");
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001918}
1919
Paulo Zanonib8a4f402012-10-31 18:12:42 -02001920static void ironlake_disable_pch_transcoder(struct drm_i915_private *dev_priv,
1921 enum pipe pipe)
Jesse Barnes040484a2011-01-03 12:14:26 -08001922{
Daniel Vetter23670b322012-11-01 09:15:30 +01001923 struct drm_device *dev = dev_priv->dev;
1924 uint32_t reg, val;
Jesse Barnes040484a2011-01-03 12:14:26 -08001925
1926 /* FDI relies on the transcoder */
1927 assert_fdi_tx_disabled(dev_priv, pipe);
1928 assert_fdi_rx_disabled(dev_priv, pipe);
1929
Jesse Barnes291906f2011-02-02 12:28:03 -08001930 /* Ports must be off as well */
1931 assert_pch_ports_disabled(dev_priv, pipe);
1932
Daniel Vetterab9412b2013-05-03 11:49:46 +02001933 reg = PCH_TRANSCONF(pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08001934 val = I915_READ(reg);
1935 val &= ~TRANS_ENABLE;
1936 I915_WRITE(reg, val);
1937 /* wait for PCH transcoder off, transcoder state */
1938 if (wait_for((I915_READ(reg) & TRANS_STATE_ENABLE) == 0, 50))
Ville Syrjälä4bb6f1f2013-04-17 17:48:50 +03001939 DRM_ERROR("failed to disable transcoder %c\n", pipe_name(pipe));
Daniel Vetter23670b322012-11-01 09:15:30 +01001940
1941 if (!HAS_PCH_IBX(dev)) {
1942 /* Workaround: Clear the timing override chicken bit again. */
1943 reg = TRANS_CHICKEN2(pipe);
1944 val = I915_READ(reg);
1945 val &= ~TRANS_CHICKEN2_TIMING_OVERRIDE;
1946 I915_WRITE(reg, val);
1947 }
Jesse Barnes040484a2011-01-03 12:14:26 -08001948}
1949
Paulo Zanoniab4d9662012-10-31 18:12:55 -02001950static void lpt_disable_pch_transcoder(struct drm_i915_private *dev_priv)
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001951{
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001952 u32 val;
1953
Daniel Vetterab9412b2013-05-03 11:49:46 +02001954 val = I915_READ(LPT_TRANSCONF);
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001955 val &= ~TRANS_ENABLE;
Daniel Vetterab9412b2013-05-03 11:49:46 +02001956 I915_WRITE(LPT_TRANSCONF, val);
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001957 /* wait for PCH transcoder off, transcoder state */
Daniel Vetterab9412b2013-05-03 11:49:46 +02001958 if (wait_for((I915_READ(LPT_TRANSCONF) & TRANS_STATE_ENABLE) == 0, 50))
Paulo Zanoni8a52fd92012-10-31 18:12:51 -02001959 DRM_ERROR("Failed to disable PCH transcoder\n");
Paulo Zanoni223a6fd2012-10-31 18:12:52 -02001960
1961 /* Workaround: clear timing override bit. */
1962 val = I915_READ(_TRANSA_CHICKEN2);
Daniel Vetter23670b322012-11-01 09:15:30 +01001963 val &= ~TRANS_CHICKEN2_TIMING_OVERRIDE;
Paulo Zanoni223a6fd2012-10-31 18:12:52 -02001964 I915_WRITE(_TRANSA_CHICKEN2, val);
Jesse Barnes92f25842011-01-04 15:09:34 -08001965}
1966
1967/**
Chris Wilson309cfea2011-01-28 13:54:53 +00001968 * intel_enable_pipe - enable a pipe, asserting requirements
Paulo Zanoni03722642014-01-17 13:51:09 -02001969 * @crtc: crtc responsible for the pipe
Jesse Barnesb24e7172011-01-04 15:09:30 -08001970 *
Paulo Zanoni03722642014-01-17 13:51:09 -02001971 * Enable @crtc's pipe, making sure that various hardware specific requirements
Jesse Barnesb24e7172011-01-04 15:09:30 -08001972 * are met, if applicable, e.g. PLL enabled, LVDS pairs enabled, etc.
Jesse Barnesb24e7172011-01-04 15:09:30 -08001973 */
Paulo Zanonie1fdc472014-01-17 13:51:12 -02001974static void intel_enable_pipe(struct intel_crtc *crtc)
Jesse Barnesb24e7172011-01-04 15:09:30 -08001975{
Paulo Zanoni03722642014-01-17 13:51:09 -02001976 struct drm_device *dev = crtc->base.dev;
1977 struct drm_i915_private *dev_priv = dev->dev_private;
1978 enum pipe pipe = crtc->pipe;
Paulo Zanoni702e7a52012-10-23 18:29:59 -02001979 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
1980 pipe);
Daniel Vetter1a240d42012-11-29 22:18:51 +01001981 enum pipe pch_transcoder;
Jesse Barnesb24e7172011-01-04 15:09:30 -08001982 int reg;
1983 u32 val;
1984
Daniel Vetter58c6eaa2013-04-11 16:29:09 +02001985 assert_planes_disabled(dev_priv, pipe);
Jani Nikula93ce0ba2013-09-13 11:03:08 +03001986 assert_cursor_disabled(dev_priv, pipe);
Daniel Vetter58c6eaa2013-04-11 16:29:09 +02001987 assert_sprites_disabled(dev_priv, pipe);
1988
Paulo Zanoni681e5812012-12-06 11:12:38 -02001989 if (HAS_PCH_LPT(dev_priv->dev))
Paulo Zanonicc391bb2012-11-20 13:27:37 -02001990 pch_transcoder = TRANSCODER_A;
1991 else
1992 pch_transcoder = pipe;
1993
Jesse Barnesb24e7172011-01-04 15:09:30 -08001994 /*
1995 * A pipe without a PLL won't actually be able to drive bits from
1996 * a plane. On ILK+ the pipe PLLs are integrated, so we don't
1997 * need the check.
1998 */
1999 if (!HAS_PCH_SPLIT(dev_priv->dev))
Paulo Zanonifbf32182014-01-17 13:51:11 -02002000 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_DSI))
Jani Nikula23538ef2013-08-27 15:12:22 +03002001 assert_dsi_pll_enabled(dev_priv);
2002 else
2003 assert_pll_enabled(dev_priv, pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08002004 else {
Paulo Zanoni30421c42014-01-17 13:51:10 -02002005 if (crtc->config.has_pch_encoder) {
Jesse Barnes040484a2011-01-03 12:14:26 -08002006 /* if driving the PCH, we need FDI enabled */
Paulo Zanonicc391bb2012-11-20 13:27:37 -02002007 assert_fdi_rx_pll_enabled(dev_priv, pch_transcoder);
Daniel Vetter1a240d42012-11-29 22:18:51 +01002008 assert_fdi_tx_pll_enabled(dev_priv,
2009 (enum pipe) cpu_transcoder);
Jesse Barnes040484a2011-01-03 12:14:26 -08002010 }
2011 /* FIXME: assert CPU port conditions for SNB+ */
2012 }
Jesse Barnesb24e7172011-01-04 15:09:30 -08002013
Paulo Zanoni702e7a52012-10-23 18:29:59 -02002014 reg = PIPECONF(cpu_transcoder);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002015 val = I915_READ(reg);
Paulo Zanoni7ad25d42014-01-17 13:51:13 -02002016 if (val & PIPECONF_ENABLE) {
2017 WARN_ON(!(pipe == PIPE_A &&
2018 dev_priv->quirks & QUIRK_PIPEA_FORCE));
Chris Wilson00d70b12011-03-17 07:18:29 +00002019 return;
Paulo Zanoni7ad25d42014-01-17 13:51:13 -02002020 }
Chris Wilson00d70b12011-03-17 07:18:29 +00002021
2022 I915_WRITE(reg, val | PIPECONF_ENABLE);
Paulo Zanoni851855d2013-12-19 19:12:29 -02002023 POSTING_READ(reg);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002024}
2025
2026/**
Chris Wilson309cfea2011-01-28 13:54:53 +00002027 * intel_disable_pipe - disable a pipe, asserting requirements
Jesse Barnesb24e7172011-01-04 15:09:30 -08002028 * @dev_priv: i915 private structure
2029 * @pipe: pipe to disable
2030 *
2031 * Disable @pipe, making sure that various hardware specific requirements
2032 * are met, if applicable, e.g. plane disabled, panel fitter off, etc.
2033 *
2034 * @pipe should be %PIPE_A or %PIPE_B.
2035 *
2036 * Will wait until the pipe has shut down before returning.
2037 */
2038static void intel_disable_pipe(struct drm_i915_private *dev_priv,
2039 enum pipe pipe)
2040{
Paulo Zanoni702e7a52012-10-23 18:29:59 -02002041 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
2042 pipe);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002043 int reg;
2044 u32 val;
2045
2046 /*
2047 * Make sure planes won't keep trying to pump pixels to us,
2048 * or we might hang the display.
2049 */
2050 assert_planes_disabled(dev_priv, pipe);
Jani Nikula93ce0ba2013-09-13 11:03:08 +03002051 assert_cursor_disabled(dev_priv, pipe);
Jesse Barnes19332d72013-03-28 09:55:38 -07002052 assert_sprites_disabled(dev_priv, pipe);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002053
2054 /* Don't disable pipe A or pipe A PLLs if needed */
2055 if (pipe == PIPE_A && (dev_priv->quirks & QUIRK_PIPEA_FORCE))
2056 return;
2057
Paulo Zanoni702e7a52012-10-23 18:29:59 -02002058 reg = PIPECONF(cpu_transcoder);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002059 val = I915_READ(reg);
Chris Wilson00d70b12011-03-17 07:18:29 +00002060 if ((val & PIPECONF_ENABLE) == 0)
2061 return;
2062
2063 I915_WRITE(reg, val & ~PIPECONF_ENABLE);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002064 intel_wait_for_pipe_off(dev_priv->dev, pipe);
2065}
2066
Keith Packardd74362c2011-07-28 14:47:14 -07002067/*
2068 * Plane regs are double buffered, going from enabled->disabled needs a
2069 * trigger in order to latch. The display address reg provides this.
2070 */
Ville Syrjälä1dba99f2013-10-01 18:02:18 +03002071void intel_flush_primary_plane(struct drm_i915_private *dev_priv,
2072 enum plane plane)
Keith Packardd74362c2011-07-28 14:47:14 -07002073{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00002074 struct drm_device *dev = dev_priv->dev;
2075 u32 reg = INTEL_INFO(dev)->gen >= 4 ? DSPSURF(plane) : DSPADDR(plane);
Ville Syrjälä1dba99f2013-10-01 18:02:18 +03002076
2077 I915_WRITE(reg, I915_READ(reg));
2078 POSTING_READ(reg);
Keith Packardd74362c2011-07-28 14:47:14 -07002079}
2080
Jesse Barnesb24e7172011-01-04 15:09:30 -08002081/**
Matt Roper262ca2b2014-03-18 17:22:55 -07002082 * intel_enable_primary_hw_plane - enable the primary plane on a given pipe
Jesse Barnesb24e7172011-01-04 15:09:30 -08002083 * @dev_priv: i915 private structure
2084 * @plane: plane to enable
2085 * @pipe: pipe being fed
2086 *
2087 * Enable @plane on @pipe, making sure that @pipe is running first.
2088 */
Matt Roper262ca2b2014-03-18 17:22:55 -07002089static void intel_enable_primary_hw_plane(struct drm_i915_private *dev_priv,
2090 enum plane plane, enum pipe pipe)
Jesse Barnesb24e7172011-01-04 15:09:30 -08002091{
Ville Syrjälä939c2fe2013-10-01 18:02:10 +03002092 struct intel_crtc *intel_crtc =
2093 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002094 int reg;
2095 u32 val;
2096
2097 /* If the pipe isn't enabled, we can't pump pixels and may hang */
2098 assert_pipe_enabled(dev_priv, pipe);
2099
Ville Syrjälä98ec7732014-04-30 17:43:01 +03002100 if (intel_crtc->primary_enabled)
2101 return;
Ville Syrjälä0037f712013-10-01 18:02:20 +03002102
Ville Syrjälä4c445e02013-10-09 17:24:58 +03002103 intel_crtc->primary_enabled = true;
Ville Syrjälä939c2fe2013-10-01 18:02:10 +03002104
Jesse Barnesb24e7172011-01-04 15:09:30 -08002105 reg = DSPCNTR(plane);
2106 val = I915_READ(reg);
Ville Syrjälä10efa932014-04-28 15:53:25 +03002107 WARN_ON(val & DISPLAY_PLANE_ENABLE);
Chris Wilson00d70b12011-03-17 07:18:29 +00002108
2109 I915_WRITE(reg, val | DISPLAY_PLANE_ENABLE);
Ville Syrjälä1dba99f2013-10-01 18:02:18 +03002110 intel_flush_primary_plane(dev_priv, plane);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002111 intel_wait_for_vblank(dev_priv->dev, pipe);
2112}
2113
Jesse Barnesb24e7172011-01-04 15:09:30 -08002114/**
Matt Roper262ca2b2014-03-18 17:22:55 -07002115 * intel_disable_primary_hw_plane - disable the primary hardware plane
Jesse Barnesb24e7172011-01-04 15:09:30 -08002116 * @dev_priv: i915 private structure
2117 * @plane: plane to disable
2118 * @pipe: pipe consuming the data
2119 *
2120 * Disable @plane; should be an independent operation.
2121 */
Matt Roper262ca2b2014-03-18 17:22:55 -07002122static void intel_disable_primary_hw_plane(struct drm_i915_private *dev_priv,
2123 enum plane plane, enum pipe pipe)
Jesse Barnesb24e7172011-01-04 15:09:30 -08002124{
Ville Syrjälä939c2fe2013-10-01 18:02:10 +03002125 struct intel_crtc *intel_crtc =
2126 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002127 int reg;
2128 u32 val;
2129
Ville Syrjälä98ec7732014-04-30 17:43:01 +03002130 if (!intel_crtc->primary_enabled)
2131 return;
Ville Syrjälä0037f712013-10-01 18:02:20 +03002132
Ville Syrjälä4c445e02013-10-09 17:24:58 +03002133 intel_crtc->primary_enabled = false;
Ville Syrjälä939c2fe2013-10-01 18:02:10 +03002134
Jesse Barnesb24e7172011-01-04 15:09:30 -08002135 reg = DSPCNTR(plane);
2136 val = I915_READ(reg);
Ville Syrjälä10efa932014-04-28 15:53:25 +03002137 WARN_ON((val & DISPLAY_PLANE_ENABLE) == 0);
Chris Wilson00d70b12011-03-17 07:18:29 +00002138
2139 I915_WRITE(reg, val & ~DISPLAY_PLANE_ENABLE);
Ville Syrjälä1dba99f2013-10-01 18:02:18 +03002140 intel_flush_primary_plane(dev_priv, plane);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002141 intel_wait_for_vblank(dev_priv->dev, pipe);
2142}
2143
Chris Wilson693db182013-03-05 14:52:39 +00002144static bool need_vtd_wa(struct drm_device *dev)
2145{
2146#ifdef CONFIG_INTEL_IOMMU
2147 if (INTEL_INFO(dev)->gen >= 6 && intel_iommu_gfx_mapped)
2148 return true;
2149#endif
2150 return false;
2151}
2152
Jesse Barnesa57ce0b2014-02-07 12:10:35 -08002153static int intel_align_height(struct drm_device *dev, int height, bool tiled)
2154{
2155 int tile_height;
2156
2157 tile_height = tiled ? (IS_GEN2(dev) ? 16 : 8) : 1;
2158 return ALIGN(height, tile_height);
2159}
2160
Chris Wilson127bd2a2010-07-23 23:32:05 +01002161int
Chris Wilson48b956c2010-09-14 12:50:34 +01002162intel_pin_and_fence_fb_obj(struct drm_device *dev,
Chris Wilson05394f32010-11-08 19:18:58 +00002163 struct drm_i915_gem_object *obj,
Chris Wilson919926a2010-11-12 13:42:53 +00002164 struct intel_ring_buffer *pipelined)
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002165{
Chris Wilsonce453d82011-02-21 14:43:56 +00002166 struct drm_i915_private *dev_priv = dev->dev_private;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002167 u32 alignment;
2168 int ret;
2169
Chris Wilson05394f32010-11-08 19:18:58 +00002170 switch (obj->tiling_mode) {
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002171 case I915_TILING_NONE:
Chris Wilson534843d2010-07-05 18:01:46 +01002172 if (IS_BROADWATER(dev) || IS_CRESTLINE(dev))
2173 alignment = 128 * 1024;
Chris Wilsona6c45cf2010-09-17 00:32:17 +01002174 else if (INTEL_INFO(dev)->gen >= 4)
Chris Wilson534843d2010-07-05 18:01:46 +01002175 alignment = 4 * 1024;
2176 else
2177 alignment = 64 * 1024;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002178 break;
2179 case I915_TILING_X:
2180 /* pin() will align the object as required by fence */
2181 alignment = 0;
2182 break;
2183 case I915_TILING_Y:
Daniel Vetter80075d42013-10-09 21:23:52 +02002184 WARN(1, "Y tiled bo slipped through, driver bug!\n");
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002185 return -EINVAL;
2186 default:
2187 BUG();
2188 }
2189
Chris Wilson693db182013-03-05 14:52:39 +00002190 /* Note that the w/a also requires 64 PTE of padding following the
2191 * bo. We currently fill all unused PTE with the shadow page and so
2192 * we should always have valid PTE following the scanout preventing
2193 * the VT-d warning.
2194 */
2195 if (need_vtd_wa(dev) && alignment < 256 * 1024)
2196 alignment = 256 * 1024;
2197
Chris Wilsonce453d82011-02-21 14:43:56 +00002198 dev_priv->mm.interruptible = false;
Chris Wilson2da3b9b2011-04-14 09:41:17 +01002199 ret = i915_gem_object_pin_to_display_plane(obj, alignment, pipelined);
Chris Wilson48b956c2010-09-14 12:50:34 +01002200 if (ret)
Chris Wilsonce453d82011-02-21 14:43:56 +00002201 goto err_interruptible;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002202
2203 /* Install a fence for tiled scan-out. Pre-i965 always needs a
2204 * fence, whereas 965+ only requires a fence if using
2205 * framebuffer compression. For simplicity, we always install
2206 * a fence as the cost is not that onerous.
2207 */
Chris Wilson06d98132012-04-17 15:31:24 +01002208 ret = i915_gem_object_get_fence(obj);
Chris Wilson9a5a53b2012-03-22 15:10:00 +00002209 if (ret)
2210 goto err_unpin;
Chris Wilson1690e1e2011-12-14 13:57:08 +01002211
Chris Wilson9a5a53b2012-03-22 15:10:00 +00002212 i915_gem_object_pin_fence(obj);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002213
Chris Wilsonce453d82011-02-21 14:43:56 +00002214 dev_priv->mm.interruptible = true;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002215 return 0;
Chris Wilson48b956c2010-09-14 12:50:34 +01002216
2217err_unpin:
Chris Wilsoncc98b412013-08-09 12:25:09 +01002218 i915_gem_object_unpin_from_display_plane(obj);
Chris Wilsonce453d82011-02-21 14:43:56 +00002219err_interruptible:
2220 dev_priv->mm.interruptible = true;
Chris Wilson48b956c2010-09-14 12:50:34 +01002221 return ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002222}
2223
Chris Wilson1690e1e2011-12-14 13:57:08 +01002224void intel_unpin_fb_obj(struct drm_i915_gem_object *obj)
2225{
2226 i915_gem_object_unpin_fence(obj);
Chris Wilsoncc98b412013-08-09 12:25:09 +01002227 i915_gem_object_unpin_from_display_plane(obj);
Chris Wilson1690e1e2011-12-14 13:57:08 +01002228}
2229
Daniel Vetterc2c75132012-07-05 12:17:30 +02002230/* Computes the linear offset to the base tile and adjusts x, y. bytes per pixel
2231 * is assumed to be a power-of-two. */
Chris Wilsonbc752862013-02-21 20:04:31 +00002232unsigned long intel_gen4_compute_page_offset(int *x, int *y,
2233 unsigned int tiling_mode,
2234 unsigned int cpp,
2235 unsigned int pitch)
Daniel Vetterc2c75132012-07-05 12:17:30 +02002236{
Chris Wilsonbc752862013-02-21 20:04:31 +00002237 if (tiling_mode != I915_TILING_NONE) {
2238 unsigned int tile_rows, tiles;
Daniel Vetterc2c75132012-07-05 12:17:30 +02002239
Chris Wilsonbc752862013-02-21 20:04:31 +00002240 tile_rows = *y / 8;
2241 *y %= 8;
Daniel Vetterc2c75132012-07-05 12:17:30 +02002242
Chris Wilsonbc752862013-02-21 20:04:31 +00002243 tiles = *x / (512/cpp);
2244 *x %= 512/cpp;
2245
2246 return tile_rows * pitch * 8 + tiles * 4096;
2247 } else {
2248 unsigned int offset;
2249
2250 offset = *y * pitch + *x * cpp;
2251 *y = 0;
2252 *x = (offset & 4095) / cpp;
2253 return offset & -4096;
2254 }
Daniel Vetterc2c75132012-07-05 12:17:30 +02002255}
2256
Jesse Barnes46f297f2014-03-07 08:57:48 -08002257int intel_format_to_fourcc(int format)
2258{
2259 switch (format) {
2260 case DISPPLANE_8BPP:
2261 return DRM_FORMAT_C8;
2262 case DISPPLANE_BGRX555:
2263 return DRM_FORMAT_XRGB1555;
2264 case DISPPLANE_BGRX565:
2265 return DRM_FORMAT_RGB565;
2266 default:
2267 case DISPPLANE_BGRX888:
2268 return DRM_FORMAT_XRGB8888;
2269 case DISPPLANE_RGBX888:
2270 return DRM_FORMAT_XBGR8888;
2271 case DISPPLANE_BGRX101010:
2272 return DRM_FORMAT_XRGB2101010;
2273 case DISPPLANE_RGBX101010:
2274 return DRM_FORMAT_XBGR2101010;
2275 }
2276}
2277
Jesse Barnes484b41d2014-03-07 08:57:55 -08002278static bool intel_alloc_plane_obj(struct intel_crtc *crtc,
Jesse Barnes46f297f2014-03-07 08:57:48 -08002279 struct intel_plane_config *plane_config)
2280{
2281 struct drm_device *dev = crtc->base.dev;
2282 struct drm_i915_gem_object *obj = NULL;
2283 struct drm_mode_fb_cmd2 mode_cmd = { 0 };
2284 u32 base = plane_config->base;
2285
Chris Wilsonff2652e2014-03-10 08:07:02 +00002286 if (plane_config->size == 0)
2287 return false;
2288
Jesse Barnes46f297f2014-03-07 08:57:48 -08002289 obj = i915_gem_object_create_stolen_for_preallocated(dev, base, base,
2290 plane_config->size);
2291 if (!obj)
Jesse Barnes484b41d2014-03-07 08:57:55 -08002292 return false;
Jesse Barnes46f297f2014-03-07 08:57:48 -08002293
2294 if (plane_config->tiled) {
2295 obj->tiling_mode = I915_TILING_X;
Dave Airlie66e514c2014-04-03 07:51:54 +10002296 obj->stride = crtc->base.primary->fb->pitches[0];
Jesse Barnes46f297f2014-03-07 08:57:48 -08002297 }
2298
Dave Airlie66e514c2014-04-03 07:51:54 +10002299 mode_cmd.pixel_format = crtc->base.primary->fb->pixel_format;
2300 mode_cmd.width = crtc->base.primary->fb->width;
2301 mode_cmd.height = crtc->base.primary->fb->height;
2302 mode_cmd.pitches[0] = crtc->base.primary->fb->pitches[0];
Jesse Barnes46f297f2014-03-07 08:57:48 -08002303
2304 mutex_lock(&dev->struct_mutex);
2305
Dave Airlie66e514c2014-04-03 07:51:54 +10002306 if (intel_framebuffer_init(dev, to_intel_framebuffer(crtc->base.primary->fb),
Jesse Barnes484b41d2014-03-07 08:57:55 -08002307 &mode_cmd, obj)) {
Jesse Barnes46f297f2014-03-07 08:57:48 -08002308 DRM_DEBUG_KMS("intel fb init failed\n");
2309 goto out_unref_obj;
2310 }
2311
2312 mutex_unlock(&dev->struct_mutex);
Jesse Barnes484b41d2014-03-07 08:57:55 -08002313
2314 DRM_DEBUG_KMS("plane fb obj %p\n", obj);
2315 return true;
Jesse Barnes46f297f2014-03-07 08:57:48 -08002316
2317out_unref_obj:
2318 drm_gem_object_unreference(&obj->base);
2319 mutex_unlock(&dev->struct_mutex);
Jesse Barnes484b41d2014-03-07 08:57:55 -08002320 return false;
2321}
2322
2323static void intel_find_plane_obj(struct intel_crtc *intel_crtc,
2324 struct intel_plane_config *plane_config)
2325{
2326 struct drm_device *dev = intel_crtc->base.dev;
2327 struct drm_crtc *c;
2328 struct intel_crtc *i;
2329 struct intel_framebuffer *fb;
2330
Dave Airlie66e514c2014-04-03 07:51:54 +10002331 if (!intel_crtc->base.primary->fb)
Jesse Barnes484b41d2014-03-07 08:57:55 -08002332 return;
2333
2334 if (intel_alloc_plane_obj(intel_crtc, plane_config))
2335 return;
2336
Dave Airlie66e514c2014-04-03 07:51:54 +10002337 kfree(intel_crtc->base.primary->fb);
2338 intel_crtc->base.primary->fb = NULL;
Jesse Barnes484b41d2014-03-07 08:57:55 -08002339
2340 /*
2341 * Failed to alloc the obj, check to see if we should share
2342 * an fb with another CRTC instead
2343 */
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01002344 for_each_crtc(dev, c) {
Jesse Barnes484b41d2014-03-07 08:57:55 -08002345 i = to_intel_crtc(c);
2346
2347 if (c == &intel_crtc->base)
2348 continue;
2349
Dave Airlie66e514c2014-04-03 07:51:54 +10002350 if (!i->active || !c->primary->fb)
Jesse Barnes484b41d2014-03-07 08:57:55 -08002351 continue;
2352
Dave Airlie66e514c2014-04-03 07:51:54 +10002353 fb = to_intel_framebuffer(c->primary->fb);
Jesse Barnes484b41d2014-03-07 08:57:55 -08002354 if (i915_gem_obj_ggtt_offset(fb->obj) == plane_config->base) {
Dave Airlie66e514c2014-04-03 07:51:54 +10002355 drm_framebuffer_reference(c->primary->fb);
2356 intel_crtc->base.primary->fb = c->primary->fb;
Jesse Barnes484b41d2014-03-07 08:57:55 -08002357 break;
2358 }
2359 }
Jesse Barnes46f297f2014-03-07 08:57:48 -08002360}
2361
Daniel Vetter29b9bde2014-04-24 23:55:01 +02002362static void i9xx_update_primary_plane(struct drm_crtc *crtc,
2363 struct drm_framebuffer *fb,
2364 int x, int y)
Jesse Barnes81255562010-08-02 12:07:50 -07002365{
2366 struct drm_device *dev = crtc->dev;
2367 struct drm_i915_private *dev_priv = dev->dev_private;
2368 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2369 struct intel_framebuffer *intel_fb;
Chris Wilson05394f32010-11-08 19:18:58 +00002370 struct drm_i915_gem_object *obj;
Jesse Barnes81255562010-08-02 12:07:50 -07002371 int plane = intel_crtc->plane;
Daniel Vettere506a0c2012-07-05 12:17:29 +02002372 unsigned long linear_offset;
Jesse Barnes81255562010-08-02 12:07:50 -07002373 u32 dspcntr;
Chris Wilson5eddb702010-09-11 13:48:45 +01002374 u32 reg;
Jesse Barnes81255562010-08-02 12:07:50 -07002375
Jesse Barnes81255562010-08-02 12:07:50 -07002376 intel_fb = to_intel_framebuffer(fb);
2377 obj = intel_fb->obj;
Jesse Barnes81255562010-08-02 12:07:50 -07002378
Chris Wilson5eddb702010-09-11 13:48:45 +01002379 reg = DSPCNTR(plane);
2380 dspcntr = I915_READ(reg);
Jesse Barnes81255562010-08-02 12:07:50 -07002381 /* Mask out pixel format bits in case we change it */
2382 dspcntr &= ~DISPPLANE_PIXFORMAT_MASK;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002383 switch (fb->pixel_format) {
2384 case DRM_FORMAT_C8:
Jesse Barnes81255562010-08-02 12:07:50 -07002385 dspcntr |= DISPPLANE_8BPP;
2386 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002387 case DRM_FORMAT_XRGB1555:
2388 case DRM_FORMAT_ARGB1555:
2389 dspcntr |= DISPPLANE_BGRX555;
Jesse Barnes81255562010-08-02 12:07:50 -07002390 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002391 case DRM_FORMAT_RGB565:
2392 dspcntr |= DISPPLANE_BGRX565;
2393 break;
2394 case DRM_FORMAT_XRGB8888:
2395 case DRM_FORMAT_ARGB8888:
2396 dspcntr |= DISPPLANE_BGRX888;
2397 break;
2398 case DRM_FORMAT_XBGR8888:
2399 case DRM_FORMAT_ABGR8888:
2400 dspcntr |= DISPPLANE_RGBX888;
2401 break;
2402 case DRM_FORMAT_XRGB2101010:
2403 case DRM_FORMAT_ARGB2101010:
2404 dspcntr |= DISPPLANE_BGRX101010;
2405 break;
2406 case DRM_FORMAT_XBGR2101010:
2407 case DRM_FORMAT_ABGR2101010:
2408 dspcntr |= DISPPLANE_RGBX101010;
Jesse Barnes81255562010-08-02 12:07:50 -07002409 break;
2410 default:
Daniel Vetterbaba1332013-03-27 00:45:00 +01002411 BUG();
Jesse Barnes81255562010-08-02 12:07:50 -07002412 }
Ville Syrjälä57779d02012-10-31 17:50:14 +02002413
Chris Wilsona6c45cf2010-09-17 00:32:17 +01002414 if (INTEL_INFO(dev)->gen >= 4) {
Chris Wilson05394f32010-11-08 19:18:58 +00002415 if (obj->tiling_mode != I915_TILING_NONE)
Jesse Barnes81255562010-08-02 12:07:50 -07002416 dspcntr |= DISPPLANE_TILED;
2417 else
2418 dspcntr &= ~DISPPLANE_TILED;
2419 }
2420
Ville Syrjäläde1aa622013-06-07 10:47:01 +03002421 if (IS_G4X(dev))
2422 dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE;
2423
Chris Wilson5eddb702010-09-11 13:48:45 +01002424 I915_WRITE(reg, dspcntr);
Jesse Barnes81255562010-08-02 12:07:50 -07002425
Daniel Vettere506a0c2012-07-05 12:17:29 +02002426 linear_offset = y * fb->pitches[0] + x * (fb->bits_per_pixel / 8);
Jesse Barnes81255562010-08-02 12:07:50 -07002427
Daniel Vetterc2c75132012-07-05 12:17:30 +02002428 if (INTEL_INFO(dev)->gen >= 4) {
2429 intel_crtc->dspaddr_offset =
Chris Wilsonbc752862013-02-21 20:04:31 +00002430 intel_gen4_compute_page_offset(&x, &y, obj->tiling_mode,
2431 fb->bits_per_pixel / 8,
2432 fb->pitches[0]);
Daniel Vetterc2c75132012-07-05 12:17:30 +02002433 linear_offset -= intel_crtc->dspaddr_offset;
2434 } else {
Daniel Vettere506a0c2012-07-05 12:17:29 +02002435 intel_crtc->dspaddr_offset = linear_offset;
Daniel Vetterc2c75132012-07-05 12:17:30 +02002436 }
Daniel Vettere506a0c2012-07-05 12:17:29 +02002437
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002438 DRM_DEBUG_KMS("Writing base %08lX %08lX %d %d %d\n",
2439 i915_gem_obj_ggtt_offset(obj), linear_offset, x, y,
2440 fb->pitches[0]);
Ville Syrjälä01f2c772011-12-20 00:06:49 +02002441 I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]);
Chris Wilsona6c45cf2010-09-17 00:32:17 +01002442 if (INTEL_INFO(dev)->gen >= 4) {
Daniel Vetter85ba7b72014-01-24 10:31:44 +01002443 I915_WRITE(DSPSURF(plane),
2444 i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset);
Chris Wilson5eddb702010-09-11 13:48:45 +01002445 I915_WRITE(DSPTILEOFF(plane), (y << 16) | x);
Daniel Vettere506a0c2012-07-05 12:17:29 +02002446 I915_WRITE(DSPLINOFF(plane), linear_offset);
Chris Wilson5eddb702010-09-11 13:48:45 +01002447 } else
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002448 I915_WRITE(DSPADDR(plane), i915_gem_obj_ggtt_offset(obj) + linear_offset);
Chris Wilson5eddb702010-09-11 13:48:45 +01002449 POSTING_READ(reg);
Jesse Barnes17638cd2011-06-24 12:19:23 -07002450}
2451
Daniel Vetter29b9bde2014-04-24 23:55:01 +02002452static void ironlake_update_primary_plane(struct drm_crtc *crtc,
2453 struct drm_framebuffer *fb,
2454 int x, int y)
Jesse Barnes17638cd2011-06-24 12:19:23 -07002455{
2456 struct drm_device *dev = crtc->dev;
2457 struct drm_i915_private *dev_priv = dev->dev_private;
2458 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2459 struct intel_framebuffer *intel_fb;
2460 struct drm_i915_gem_object *obj;
2461 int plane = intel_crtc->plane;
Daniel Vettere506a0c2012-07-05 12:17:29 +02002462 unsigned long linear_offset;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002463 u32 dspcntr;
2464 u32 reg;
2465
Jesse Barnes17638cd2011-06-24 12:19:23 -07002466 intel_fb = to_intel_framebuffer(fb);
2467 obj = intel_fb->obj;
2468
2469 reg = DSPCNTR(plane);
2470 dspcntr = I915_READ(reg);
2471 /* Mask out pixel format bits in case we change it */
2472 dspcntr &= ~DISPPLANE_PIXFORMAT_MASK;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002473 switch (fb->pixel_format) {
2474 case DRM_FORMAT_C8:
Jesse Barnes17638cd2011-06-24 12:19:23 -07002475 dspcntr |= DISPPLANE_8BPP;
2476 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002477 case DRM_FORMAT_RGB565:
2478 dspcntr |= DISPPLANE_BGRX565;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002479 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002480 case DRM_FORMAT_XRGB8888:
2481 case DRM_FORMAT_ARGB8888:
2482 dspcntr |= DISPPLANE_BGRX888;
2483 break;
2484 case DRM_FORMAT_XBGR8888:
2485 case DRM_FORMAT_ABGR8888:
2486 dspcntr |= DISPPLANE_RGBX888;
2487 break;
2488 case DRM_FORMAT_XRGB2101010:
2489 case DRM_FORMAT_ARGB2101010:
2490 dspcntr |= DISPPLANE_BGRX101010;
2491 break;
2492 case DRM_FORMAT_XBGR2101010:
2493 case DRM_FORMAT_ABGR2101010:
2494 dspcntr |= DISPPLANE_RGBX101010;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002495 break;
2496 default:
Daniel Vetterbaba1332013-03-27 00:45:00 +01002497 BUG();
Jesse Barnes17638cd2011-06-24 12:19:23 -07002498 }
2499
2500 if (obj->tiling_mode != I915_TILING_NONE)
2501 dspcntr |= DISPPLANE_TILED;
2502 else
2503 dspcntr &= ~DISPPLANE_TILED;
2504
Ville Syrjäläb42c6002013-11-03 13:47:27 +02002505 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Paulo Zanoni1f5d76d2013-08-23 19:51:28 -03002506 dspcntr &= ~DISPPLANE_TRICKLE_FEED_DISABLE;
2507 else
2508 dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002509
2510 I915_WRITE(reg, dspcntr);
2511
Daniel Vettere506a0c2012-07-05 12:17:29 +02002512 linear_offset = y * fb->pitches[0] + x * (fb->bits_per_pixel / 8);
Daniel Vetterc2c75132012-07-05 12:17:30 +02002513 intel_crtc->dspaddr_offset =
Chris Wilsonbc752862013-02-21 20:04:31 +00002514 intel_gen4_compute_page_offset(&x, &y, obj->tiling_mode,
2515 fb->bits_per_pixel / 8,
2516 fb->pitches[0]);
Daniel Vetterc2c75132012-07-05 12:17:30 +02002517 linear_offset -= intel_crtc->dspaddr_offset;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002518
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002519 DRM_DEBUG_KMS("Writing base %08lX %08lX %d %d %d\n",
2520 i915_gem_obj_ggtt_offset(obj), linear_offset, x, y,
2521 fb->pitches[0]);
Ville Syrjälä01f2c772011-12-20 00:06:49 +02002522 I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]);
Daniel Vetter85ba7b72014-01-24 10:31:44 +01002523 I915_WRITE(DSPSURF(plane),
2524 i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset);
Paulo Zanonib3dc6852013-11-02 21:07:33 -07002525 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Damien Lespiaubc1c91e2012-10-29 12:14:21 +00002526 I915_WRITE(DSPOFFSET(plane), (y << 16) | x);
2527 } else {
2528 I915_WRITE(DSPTILEOFF(plane), (y << 16) | x);
2529 I915_WRITE(DSPLINOFF(plane), linear_offset);
2530 }
Jesse Barnes17638cd2011-06-24 12:19:23 -07002531 POSTING_READ(reg);
Jesse Barnes17638cd2011-06-24 12:19:23 -07002532}
2533
2534/* Assume fb object is pinned & idle & fenced and just update base pointers */
2535static int
2536intel_pipe_set_base_atomic(struct drm_crtc *crtc, struct drm_framebuffer *fb,
2537 int x, int y, enum mode_set_atomic state)
2538{
2539 struct drm_device *dev = crtc->dev;
2540 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002541
Chris Wilson6b8e6ed2012-04-17 15:08:19 +01002542 if (dev_priv->display.disable_fbc)
2543 dev_priv->display.disable_fbc(dev);
Daniel Vetter3dec0092010-08-20 21:40:52 +02002544 intel_increase_pllclock(crtc);
Jesse Barnes81255562010-08-02 12:07:50 -07002545
Daniel Vetter29b9bde2014-04-24 23:55:01 +02002546 dev_priv->display.update_primary_plane(crtc, fb, x, y);
2547
2548 return 0;
Jesse Barnes81255562010-08-02 12:07:50 -07002549}
2550
Ville Syrjälä96a02912013-02-18 19:08:49 +02002551void intel_display_handle_reset(struct drm_device *dev)
2552{
2553 struct drm_i915_private *dev_priv = dev->dev_private;
2554 struct drm_crtc *crtc;
2555
2556 /*
2557 * Flips in the rings have been nuked by the reset,
2558 * so complete all pending flips so that user space
2559 * will get its events and not get stuck.
2560 *
2561 * Also update the base address of all primary
2562 * planes to the the last fb to make sure we're
2563 * showing the correct fb after a reset.
2564 *
2565 * Need to make two loops over the crtcs so that we
2566 * don't try to grab a crtc mutex before the
2567 * pending_flip_queue really got woken up.
2568 */
2569
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01002570 for_each_crtc(dev, crtc) {
Ville Syrjälä96a02912013-02-18 19:08:49 +02002571 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2572 enum plane plane = intel_crtc->plane;
2573
2574 intel_prepare_page_flip(dev, plane);
2575 intel_finish_page_flip_plane(dev, plane);
2576 }
2577
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01002578 for_each_crtc(dev, crtc) {
Ville Syrjälä96a02912013-02-18 19:08:49 +02002579 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2580
2581 mutex_lock(&crtc->mutex);
Chris Wilson947fdaadf2013-11-27 12:01:32 +00002582 /*
2583 * FIXME: Once we have proper support for primary planes (and
2584 * disabling them without disabling the entire crtc) allow again
Dave Airlie66e514c2014-04-03 07:51:54 +10002585 * a NULL crtc->primary->fb.
Chris Wilson947fdaadf2013-11-27 12:01:32 +00002586 */
Matt Roperf4510a22014-04-01 15:22:40 -07002587 if (intel_crtc->active && crtc->primary->fb)
Matt Roper262ca2b2014-03-18 17:22:55 -07002588 dev_priv->display.update_primary_plane(crtc,
Dave Airlie66e514c2014-04-03 07:51:54 +10002589 crtc->primary->fb,
Matt Roper262ca2b2014-03-18 17:22:55 -07002590 crtc->x,
2591 crtc->y);
Ville Syrjälä96a02912013-02-18 19:08:49 +02002592 mutex_unlock(&crtc->mutex);
2593 }
2594}
2595
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002596static int
Chris Wilson14667a42012-04-03 17:58:35 +01002597intel_finish_fb(struct drm_framebuffer *old_fb)
2598{
2599 struct drm_i915_gem_object *obj = to_intel_framebuffer(old_fb)->obj;
2600 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
2601 bool was_interruptible = dev_priv->mm.interruptible;
2602 int ret;
2603
Chris Wilson14667a42012-04-03 17:58:35 +01002604 /* Big Hammer, we also need to ensure that any pending
2605 * MI_WAIT_FOR_EVENT inside a user batch buffer on the
2606 * current scanout is retired before unpinning the old
2607 * framebuffer.
2608 *
2609 * This should only fail upon a hung GPU, in which case we
2610 * can safely continue.
2611 */
2612 dev_priv->mm.interruptible = false;
2613 ret = i915_gem_object_finish_gpu(obj);
2614 dev_priv->mm.interruptible = was_interruptible;
2615
2616 return ret;
2617}
2618
Chris Wilson7d5e3792014-03-04 13:15:08 +00002619static bool intel_crtc_has_pending_flip(struct drm_crtc *crtc)
2620{
2621 struct drm_device *dev = crtc->dev;
2622 struct drm_i915_private *dev_priv = dev->dev_private;
2623 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2624 unsigned long flags;
2625 bool pending;
2626
2627 if (i915_reset_in_progress(&dev_priv->gpu_error) ||
2628 intel_crtc->reset_counter != atomic_read(&dev_priv->gpu_error.reset_counter))
2629 return false;
2630
2631 spin_lock_irqsave(&dev->event_lock, flags);
2632 pending = to_intel_crtc(crtc)->unpin_work != NULL;
2633 spin_unlock_irqrestore(&dev->event_lock, flags);
2634
2635 return pending;
2636}
2637
Chris Wilson14667a42012-04-03 17:58:35 +01002638static int
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -05002639intel_pipe_set_base(struct drm_crtc *crtc, int x, int y,
Daniel Vetter94352cf2012-07-05 22:51:56 +02002640 struct drm_framebuffer *fb)
Jesse Barnes79e53942008-11-07 14:24:08 -08002641{
2642 struct drm_device *dev = crtc->dev;
Chris Wilson6b8e6ed2012-04-17 15:08:19 +01002643 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -08002644 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter94352cf2012-07-05 22:51:56 +02002645 struct drm_framebuffer *old_fb;
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002646 int ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08002647
Chris Wilson7d5e3792014-03-04 13:15:08 +00002648 if (intel_crtc_has_pending_flip(crtc)) {
2649 DRM_ERROR("pipe is still busy with an old pageflip\n");
2650 return -EBUSY;
2651 }
2652
Jesse Barnes79e53942008-11-07 14:24:08 -08002653 /* no fb bound */
Daniel Vetter94352cf2012-07-05 22:51:56 +02002654 if (!fb) {
Jesse Barnesa5071c22011-07-19 15:38:56 -07002655 DRM_ERROR("No FB bound\n");
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002656 return 0;
2657 }
2658
Ben Widawsky7eb552a2013-03-13 14:05:41 -07002659 if (intel_crtc->plane > INTEL_INFO(dev)->num_pipes) {
Ville Syrjälä84f44ce2013-04-17 17:48:49 +03002660 DRM_ERROR("no plane for crtc: plane %c, num_pipes %d\n",
2661 plane_name(intel_crtc->plane),
2662 INTEL_INFO(dev)->num_pipes);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002663 return -EINVAL;
Jesse Barnes79e53942008-11-07 14:24:08 -08002664 }
2665
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002666 mutex_lock(&dev->struct_mutex);
Chris Wilson265db952010-09-20 15:41:01 +01002667 ret = intel_pin_and_fence_fb_obj(dev,
Daniel Vetter94352cf2012-07-05 22:51:56 +02002668 to_intel_framebuffer(fb)->obj,
Chris Wilson919926a2010-11-12 13:42:53 +00002669 NULL);
Ville Syrjälä8ac36ec2014-03-11 19:37:33 +02002670 mutex_unlock(&dev->struct_mutex);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002671 if (ret != 0) {
Jesse Barnesa5071c22011-07-19 15:38:56 -07002672 DRM_ERROR("pin & fence failed\n");
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002673 return ret;
2674 }
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -05002675
Damien Lespiaubb2043d2013-09-30 14:21:49 +01002676 /*
2677 * Update pipe size and adjust fitter if needed: the reason for this is
2678 * that in compute_mode_changes we check the native mode (not the pfit
2679 * mode) to see if we can flip rather than do a full mode set. In the
2680 * fastboot case, we'll flip, but if we don't update the pipesrc and
2681 * pfit state, we'll end up with a big fb scanned out into the wrong
2682 * sized surface.
2683 *
2684 * To fix this properly, we need to hoist the checks up into
2685 * compute_mode_changes (or above), check the actual pfit state and
2686 * whether the platform allows pfit disable with pipe active, and only
2687 * then update the pipesrc and pfit state, even on the flip path.
2688 */
Jani Nikulad330a952014-01-21 11:24:25 +02002689 if (i915.fastboot) {
Damien Lespiaud7bf63f2013-09-30 14:21:50 +01002690 const struct drm_display_mode *adjusted_mode =
2691 &intel_crtc->config.adjusted_mode;
2692
Jesse Barnes4d6a3e62013-06-26 01:38:18 +03002693 I915_WRITE(PIPESRC(intel_crtc->pipe),
Damien Lespiaud7bf63f2013-09-30 14:21:50 +01002694 ((adjusted_mode->crtc_hdisplay - 1) << 16) |
2695 (adjusted_mode->crtc_vdisplay - 1));
Chris Wilsonfd4daa92013-08-27 17:04:17 +01002696 if (!intel_crtc->config.pch_pfit.enabled &&
Jesse Barnes4d6a3e62013-06-26 01:38:18 +03002697 (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) ||
2698 intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP))) {
2699 I915_WRITE(PF_CTL(intel_crtc->pipe), 0);
2700 I915_WRITE(PF_WIN_POS(intel_crtc->pipe), 0);
2701 I915_WRITE(PF_WIN_SZ(intel_crtc->pipe), 0);
2702 }
Jesse Barnes0637d602013-12-19 10:48:01 -08002703 intel_crtc->config.pipe_src_w = adjusted_mode->crtc_hdisplay;
2704 intel_crtc->config.pipe_src_h = adjusted_mode->crtc_vdisplay;
Jesse Barnes4d6a3e62013-06-26 01:38:18 +03002705 }
2706
Daniel Vetter29b9bde2014-04-24 23:55:01 +02002707 dev_priv->display.update_primary_plane(crtc, fb, x, y);
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -05002708
Matt Roperf4510a22014-04-01 15:22:40 -07002709 old_fb = crtc->primary->fb;
2710 crtc->primary->fb = fb;
Daniel Vetter6c4c86f2012-09-10 21:58:30 +02002711 crtc->x = x;
2712 crtc->y = y;
Daniel Vetter94352cf2012-07-05 22:51:56 +02002713
Chris Wilsonb7f1de22010-12-14 16:09:31 +00002714 if (old_fb) {
Daniel Vetterd7697ee2013-06-02 17:23:01 +02002715 if (intel_crtc->active && old_fb != fb)
2716 intel_wait_for_vblank(dev, intel_crtc->pipe);
Ville Syrjälä8ac36ec2014-03-11 19:37:33 +02002717 mutex_lock(&dev->struct_mutex);
Chris Wilson1690e1e2011-12-14 13:57:08 +01002718 intel_unpin_fb_obj(to_intel_framebuffer(old_fb)->obj);
Ville Syrjälä8ac36ec2014-03-11 19:37:33 +02002719 mutex_unlock(&dev->struct_mutex);
Chris Wilsonb7f1de22010-12-14 16:09:31 +00002720 }
Jesse Barnes652c3932009-08-17 13:31:43 -07002721
Ville Syrjälä8ac36ec2014-03-11 19:37:33 +02002722 mutex_lock(&dev->struct_mutex);
Chris Wilson6b8e6ed2012-04-17 15:08:19 +01002723 intel_update_fbc(dev);
Rodrigo Vivi49065572013-07-11 18:45:05 -03002724 intel_edp_psr_update(dev);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002725 mutex_unlock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -08002726
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002727 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08002728}
2729
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08002730static void intel_fdi_normal_train(struct drm_crtc *crtc)
2731{
2732 struct drm_device *dev = crtc->dev;
2733 struct drm_i915_private *dev_priv = dev->dev_private;
2734 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2735 int pipe = intel_crtc->pipe;
2736 u32 reg, temp;
2737
2738 /* enable normal train */
2739 reg = FDI_TX_CTL(pipe);
2740 temp = I915_READ(reg);
Keith Packard61e499b2011-05-17 16:13:52 -07002741 if (IS_IVYBRIDGE(dev)) {
Jesse Barnes357555c2011-04-28 15:09:55 -07002742 temp &= ~FDI_LINK_TRAIN_NONE_IVB;
2743 temp |= FDI_LINK_TRAIN_NONE_IVB | FDI_TX_ENHANCE_FRAME_ENABLE;
Keith Packard61e499b2011-05-17 16:13:52 -07002744 } else {
2745 temp &= ~FDI_LINK_TRAIN_NONE;
2746 temp |= FDI_LINK_TRAIN_NONE | FDI_TX_ENHANCE_FRAME_ENABLE;
Jesse Barnes357555c2011-04-28 15:09:55 -07002747 }
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08002748 I915_WRITE(reg, temp);
2749
2750 reg = FDI_RX_CTL(pipe);
2751 temp = I915_READ(reg);
2752 if (HAS_PCH_CPT(dev)) {
2753 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2754 temp |= FDI_LINK_TRAIN_NORMAL_CPT;
2755 } else {
2756 temp &= ~FDI_LINK_TRAIN_NONE;
2757 temp |= FDI_LINK_TRAIN_NONE;
2758 }
2759 I915_WRITE(reg, temp | FDI_RX_ENHANCE_FRAME_ENABLE);
2760
2761 /* wait one idle pattern time */
2762 POSTING_READ(reg);
2763 udelay(1000);
Jesse Barnes357555c2011-04-28 15:09:55 -07002764
2765 /* IVB wants error correction enabled */
2766 if (IS_IVYBRIDGE(dev))
2767 I915_WRITE(reg, I915_READ(reg) | FDI_FS_ERRC_ENABLE |
2768 FDI_FE_ERRC_ENABLE);
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08002769}
2770
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01002771static bool pipe_has_enabled_pch(struct intel_crtc *crtc)
Daniel Vetter1e833f42013-02-19 22:31:57 +01002772{
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01002773 return crtc->base.enabled && crtc->active &&
2774 crtc->config.has_pch_encoder;
Daniel Vetter1e833f42013-02-19 22:31:57 +01002775}
2776
Daniel Vetter01a415f2012-10-27 15:58:40 +02002777static void ivb_modeset_global_resources(struct drm_device *dev)
2778{
2779 struct drm_i915_private *dev_priv = dev->dev_private;
2780 struct intel_crtc *pipe_B_crtc =
2781 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[PIPE_B]);
2782 struct intel_crtc *pipe_C_crtc =
2783 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[PIPE_C]);
2784 uint32_t temp;
2785
Daniel Vetter1e833f42013-02-19 22:31:57 +01002786 /*
2787 * When everything is off disable fdi C so that we could enable fdi B
2788 * with all lanes. Note that we don't care about enabled pipes without
2789 * an enabled pch encoder.
2790 */
2791 if (!pipe_has_enabled_pch(pipe_B_crtc) &&
2792 !pipe_has_enabled_pch(pipe_C_crtc)) {
Daniel Vetter01a415f2012-10-27 15:58:40 +02002793 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_B)) & FDI_RX_ENABLE);
2794 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_C)) & FDI_RX_ENABLE);
2795
2796 temp = I915_READ(SOUTH_CHICKEN1);
2797 temp &= ~FDI_BC_BIFURCATION_SELECT;
2798 DRM_DEBUG_KMS("disabling fdi C rx\n");
2799 I915_WRITE(SOUTH_CHICKEN1, temp);
2800 }
2801}
2802
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002803/* The FDI link training functions for ILK/Ibexpeak. */
2804static void ironlake_fdi_link_train(struct drm_crtc *crtc)
2805{
2806 struct drm_device *dev = crtc->dev;
2807 struct drm_i915_private *dev_priv = dev->dev_private;
2808 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2809 int pipe = intel_crtc->pipe;
Chris Wilson5eddb702010-09-11 13:48:45 +01002810 u32 reg, temp, tries;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002811
Ville Syrjälä1c8562f2014-04-25 22:12:07 +03002812 /* FDI needs bits from pipe first */
Jesse Barnes0fc932b2011-01-04 15:09:37 -08002813 assert_pipe_enabled(dev_priv, pipe);
Jesse Barnes0fc932b2011-01-04 15:09:37 -08002814
Adam Jacksone1a44742010-06-25 15:32:14 -04002815 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
2816 for train result */
Chris Wilson5eddb702010-09-11 13:48:45 +01002817 reg = FDI_RX_IMR(pipe);
2818 temp = I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04002819 temp &= ~FDI_RX_SYMBOL_LOCK;
2820 temp &= ~FDI_RX_BIT_LOCK;
Chris Wilson5eddb702010-09-11 13:48:45 +01002821 I915_WRITE(reg, temp);
2822 I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04002823 udelay(150);
2824
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002825 /* enable CPU FDI TX and PCH FDI RX */
Chris Wilson5eddb702010-09-11 13:48:45 +01002826 reg = FDI_TX_CTL(pipe);
2827 temp = I915_READ(reg);
Daniel Vetter627eb5a2013-04-29 19:33:42 +02002828 temp &= ~FDI_DP_PORT_WIDTH_MASK;
2829 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config.fdi_lanes);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002830 temp &= ~FDI_LINK_TRAIN_NONE;
2831 temp |= FDI_LINK_TRAIN_PATTERN_1;
Chris Wilson5eddb702010-09-11 13:48:45 +01002832 I915_WRITE(reg, temp | FDI_TX_ENABLE);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002833
Chris Wilson5eddb702010-09-11 13:48:45 +01002834 reg = FDI_RX_CTL(pipe);
2835 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002836 temp &= ~FDI_LINK_TRAIN_NONE;
2837 temp |= FDI_LINK_TRAIN_PATTERN_1;
Chris Wilson5eddb702010-09-11 13:48:45 +01002838 I915_WRITE(reg, temp | FDI_RX_ENABLE);
2839
2840 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002841 udelay(150);
2842
Jesse Barnes5b2adf82010-10-07 16:01:15 -07002843 /* Ironlake workaround, enable clock pointer after FDI enable*/
Daniel Vetter8f5718a2012-10-31 22:52:28 +01002844 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR);
2845 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR |
2846 FDI_RX_PHASE_SYNC_POINTER_EN);
Jesse Barnes5b2adf82010-10-07 16:01:15 -07002847
Chris Wilson5eddb702010-09-11 13:48:45 +01002848 reg = FDI_RX_IIR(pipe);
Adam Jacksone1a44742010-06-25 15:32:14 -04002849 for (tries = 0; tries < 5; tries++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002850 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002851 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2852
2853 if ((temp & FDI_RX_BIT_LOCK)) {
2854 DRM_DEBUG_KMS("FDI train 1 done.\n");
Chris Wilson5eddb702010-09-11 13:48:45 +01002855 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002856 break;
2857 }
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002858 }
Adam Jacksone1a44742010-06-25 15:32:14 -04002859 if (tries == 5)
Chris Wilson5eddb702010-09-11 13:48:45 +01002860 DRM_ERROR("FDI train 1 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002861
2862 /* Train 2 */
Chris Wilson5eddb702010-09-11 13:48:45 +01002863 reg = FDI_TX_CTL(pipe);
2864 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002865 temp &= ~FDI_LINK_TRAIN_NONE;
2866 temp |= FDI_LINK_TRAIN_PATTERN_2;
Chris Wilson5eddb702010-09-11 13:48:45 +01002867 I915_WRITE(reg, temp);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002868
Chris Wilson5eddb702010-09-11 13:48:45 +01002869 reg = FDI_RX_CTL(pipe);
2870 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002871 temp &= ~FDI_LINK_TRAIN_NONE;
2872 temp |= FDI_LINK_TRAIN_PATTERN_2;
Chris Wilson5eddb702010-09-11 13:48:45 +01002873 I915_WRITE(reg, temp);
2874
2875 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002876 udelay(150);
2877
Chris Wilson5eddb702010-09-11 13:48:45 +01002878 reg = FDI_RX_IIR(pipe);
Adam Jacksone1a44742010-06-25 15:32:14 -04002879 for (tries = 0; tries < 5; tries++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002880 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002881 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2882
2883 if (temp & FDI_RX_SYMBOL_LOCK) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002884 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002885 DRM_DEBUG_KMS("FDI train 2 done.\n");
2886 break;
2887 }
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002888 }
Adam Jacksone1a44742010-06-25 15:32:14 -04002889 if (tries == 5)
Chris Wilson5eddb702010-09-11 13:48:45 +01002890 DRM_ERROR("FDI train 2 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002891
2892 DRM_DEBUG_KMS("FDI train done\n");
Jesse Barnes5c5313c2010-10-07 16:01:11 -07002893
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002894}
2895
Akshay Joshi0206e352011-08-16 15:34:10 -04002896static const int snb_b_fdi_train_param[] = {
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002897 FDI_LINK_TRAIN_400MV_0DB_SNB_B,
2898 FDI_LINK_TRAIN_400MV_6DB_SNB_B,
2899 FDI_LINK_TRAIN_600MV_3_5DB_SNB_B,
2900 FDI_LINK_TRAIN_800MV_0DB_SNB_B,
2901};
2902
2903/* The FDI link training functions for SNB/Cougarpoint. */
2904static void gen6_fdi_link_train(struct drm_crtc *crtc)
2905{
2906 struct drm_device *dev = crtc->dev;
2907 struct drm_i915_private *dev_priv = dev->dev_private;
2908 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2909 int pipe = intel_crtc->pipe;
Sean Paulfa37d392012-03-02 12:53:39 -05002910 u32 reg, temp, i, retry;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002911
Adam Jacksone1a44742010-06-25 15:32:14 -04002912 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
2913 for train result */
Chris Wilson5eddb702010-09-11 13:48:45 +01002914 reg = FDI_RX_IMR(pipe);
2915 temp = I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04002916 temp &= ~FDI_RX_SYMBOL_LOCK;
2917 temp &= ~FDI_RX_BIT_LOCK;
Chris Wilson5eddb702010-09-11 13:48:45 +01002918 I915_WRITE(reg, temp);
2919
2920 POSTING_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04002921 udelay(150);
2922
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002923 /* enable CPU FDI TX and PCH FDI RX */
Chris Wilson5eddb702010-09-11 13:48:45 +01002924 reg = FDI_TX_CTL(pipe);
2925 temp = I915_READ(reg);
Daniel Vetter627eb5a2013-04-29 19:33:42 +02002926 temp &= ~FDI_DP_PORT_WIDTH_MASK;
2927 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config.fdi_lanes);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002928 temp &= ~FDI_LINK_TRAIN_NONE;
2929 temp |= FDI_LINK_TRAIN_PATTERN_1;
2930 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2931 /* SNB-B */
2932 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
Chris Wilson5eddb702010-09-11 13:48:45 +01002933 I915_WRITE(reg, temp | FDI_TX_ENABLE);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002934
Daniel Vetterd74cf322012-10-26 10:58:13 +02002935 I915_WRITE(FDI_RX_MISC(pipe),
2936 FDI_RX_TP1_TO_TP2_48 | FDI_RX_FDI_DELAY_90);
2937
Chris Wilson5eddb702010-09-11 13:48:45 +01002938 reg = FDI_RX_CTL(pipe);
2939 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002940 if (HAS_PCH_CPT(dev)) {
2941 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2942 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
2943 } else {
2944 temp &= ~FDI_LINK_TRAIN_NONE;
2945 temp |= FDI_LINK_TRAIN_PATTERN_1;
2946 }
Chris Wilson5eddb702010-09-11 13:48:45 +01002947 I915_WRITE(reg, temp | FDI_RX_ENABLE);
2948
2949 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002950 udelay(150);
2951
Akshay Joshi0206e352011-08-16 15:34:10 -04002952 for (i = 0; i < 4; i++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002953 reg = FDI_TX_CTL(pipe);
2954 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002955 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2956 temp |= snb_b_fdi_train_param[i];
Chris Wilson5eddb702010-09-11 13:48:45 +01002957 I915_WRITE(reg, temp);
2958
2959 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002960 udelay(500);
2961
Sean Paulfa37d392012-03-02 12:53:39 -05002962 for (retry = 0; retry < 5; retry++) {
2963 reg = FDI_RX_IIR(pipe);
2964 temp = I915_READ(reg);
2965 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2966 if (temp & FDI_RX_BIT_LOCK) {
2967 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
2968 DRM_DEBUG_KMS("FDI train 1 done.\n");
2969 break;
2970 }
2971 udelay(50);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002972 }
Sean Paulfa37d392012-03-02 12:53:39 -05002973 if (retry < 5)
2974 break;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002975 }
2976 if (i == 4)
Chris Wilson5eddb702010-09-11 13:48:45 +01002977 DRM_ERROR("FDI train 1 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002978
2979 /* Train 2 */
Chris Wilson5eddb702010-09-11 13:48:45 +01002980 reg = FDI_TX_CTL(pipe);
2981 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002982 temp &= ~FDI_LINK_TRAIN_NONE;
2983 temp |= FDI_LINK_TRAIN_PATTERN_2;
2984 if (IS_GEN6(dev)) {
2985 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2986 /* SNB-B */
2987 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
2988 }
Chris Wilson5eddb702010-09-11 13:48:45 +01002989 I915_WRITE(reg, temp);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002990
Chris Wilson5eddb702010-09-11 13:48:45 +01002991 reg = FDI_RX_CTL(pipe);
2992 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002993 if (HAS_PCH_CPT(dev)) {
2994 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2995 temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
2996 } else {
2997 temp &= ~FDI_LINK_TRAIN_NONE;
2998 temp |= FDI_LINK_TRAIN_PATTERN_2;
2999 }
Chris Wilson5eddb702010-09-11 13:48:45 +01003000 I915_WRITE(reg, temp);
3001
3002 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003003 udelay(150);
3004
Akshay Joshi0206e352011-08-16 15:34:10 -04003005 for (i = 0; i < 4; i++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01003006 reg = FDI_TX_CTL(pipe);
3007 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003008 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3009 temp |= snb_b_fdi_train_param[i];
Chris Wilson5eddb702010-09-11 13:48:45 +01003010 I915_WRITE(reg, temp);
3011
3012 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003013 udelay(500);
3014
Sean Paulfa37d392012-03-02 12:53:39 -05003015 for (retry = 0; retry < 5; retry++) {
3016 reg = FDI_RX_IIR(pipe);
3017 temp = I915_READ(reg);
3018 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3019 if (temp & FDI_RX_SYMBOL_LOCK) {
3020 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
3021 DRM_DEBUG_KMS("FDI train 2 done.\n");
3022 break;
3023 }
3024 udelay(50);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003025 }
Sean Paulfa37d392012-03-02 12:53:39 -05003026 if (retry < 5)
3027 break;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003028 }
3029 if (i == 4)
Chris Wilson5eddb702010-09-11 13:48:45 +01003030 DRM_ERROR("FDI train 2 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003031
3032 DRM_DEBUG_KMS("FDI train done.\n");
3033}
3034
Jesse Barnes357555c2011-04-28 15:09:55 -07003035/* Manual link training for Ivy Bridge A0 parts */
3036static void ivb_manual_fdi_link_train(struct drm_crtc *crtc)
3037{
3038 struct drm_device *dev = crtc->dev;
3039 struct drm_i915_private *dev_priv = dev->dev_private;
3040 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3041 int pipe = intel_crtc->pipe;
Jesse Barnes139ccd32013-08-19 11:04:55 -07003042 u32 reg, temp, i, j;
Jesse Barnes357555c2011-04-28 15:09:55 -07003043
3044 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
3045 for train result */
3046 reg = FDI_RX_IMR(pipe);
3047 temp = I915_READ(reg);
3048 temp &= ~FDI_RX_SYMBOL_LOCK;
3049 temp &= ~FDI_RX_BIT_LOCK;
3050 I915_WRITE(reg, temp);
3051
3052 POSTING_READ(reg);
3053 udelay(150);
3054
Daniel Vetter01a415f2012-10-27 15:58:40 +02003055 DRM_DEBUG_KMS("FDI_RX_IIR before link train 0x%x\n",
3056 I915_READ(FDI_RX_IIR(pipe)));
3057
Jesse Barnes139ccd32013-08-19 11:04:55 -07003058 /* Try each vswing and preemphasis setting twice before moving on */
3059 for (j = 0; j < ARRAY_SIZE(snb_b_fdi_train_param) * 2; j++) {
3060 /* disable first in case we need to retry */
Jesse Barnes357555c2011-04-28 15:09:55 -07003061 reg = FDI_TX_CTL(pipe);
3062 temp = I915_READ(reg);
Jesse Barnes139ccd32013-08-19 11:04:55 -07003063 temp &= ~(FDI_LINK_TRAIN_AUTO | FDI_LINK_TRAIN_NONE_IVB);
3064 temp &= ~FDI_TX_ENABLE;
3065 I915_WRITE(reg, temp);
3066
3067 reg = FDI_RX_CTL(pipe);
3068 temp = I915_READ(reg);
3069 temp &= ~FDI_LINK_TRAIN_AUTO;
3070 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3071 temp &= ~FDI_RX_ENABLE;
3072 I915_WRITE(reg, temp);
3073
3074 /* enable CPU FDI TX and PCH FDI RX */
3075 reg = FDI_TX_CTL(pipe);
3076 temp = I915_READ(reg);
3077 temp &= ~FDI_DP_PORT_WIDTH_MASK;
3078 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config.fdi_lanes);
3079 temp |= FDI_LINK_TRAIN_PATTERN_1_IVB;
Jesse Barnes357555c2011-04-28 15:09:55 -07003080 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
Jesse Barnes139ccd32013-08-19 11:04:55 -07003081 temp |= snb_b_fdi_train_param[j/2];
3082 temp |= FDI_COMPOSITE_SYNC;
3083 I915_WRITE(reg, temp | FDI_TX_ENABLE);
3084
3085 I915_WRITE(FDI_RX_MISC(pipe),
3086 FDI_RX_TP1_TO_TP2_48 | FDI_RX_FDI_DELAY_90);
3087
3088 reg = FDI_RX_CTL(pipe);
3089 temp = I915_READ(reg);
3090 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
3091 temp |= FDI_COMPOSITE_SYNC;
3092 I915_WRITE(reg, temp | FDI_RX_ENABLE);
3093
3094 POSTING_READ(reg);
3095 udelay(1); /* should be 0.5us */
3096
3097 for (i = 0; i < 4; i++) {
3098 reg = FDI_RX_IIR(pipe);
3099 temp = I915_READ(reg);
3100 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3101
3102 if (temp & FDI_RX_BIT_LOCK ||
3103 (I915_READ(reg) & FDI_RX_BIT_LOCK)) {
3104 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
3105 DRM_DEBUG_KMS("FDI train 1 done, level %i.\n",
3106 i);
3107 break;
3108 }
3109 udelay(1); /* should be 0.5us */
3110 }
3111 if (i == 4) {
3112 DRM_DEBUG_KMS("FDI train 1 fail on vswing %d\n", j / 2);
3113 continue;
3114 }
3115
3116 /* Train 2 */
3117 reg = FDI_TX_CTL(pipe);
3118 temp = I915_READ(reg);
3119 temp &= ~FDI_LINK_TRAIN_NONE_IVB;
3120 temp |= FDI_LINK_TRAIN_PATTERN_2_IVB;
3121 I915_WRITE(reg, temp);
3122
3123 reg = FDI_RX_CTL(pipe);
3124 temp = I915_READ(reg);
3125 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3126 temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
Jesse Barnes357555c2011-04-28 15:09:55 -07003127 I915_WRITE(reg, temp);
3128
3129 POSTING_READ(reg);
Jesse Barnes139ccd32013-08-19 11:04:55 -07003130 udelay(2); /* should be 1.5us */
Jesse Barnes357555c2011-04-28 15:09:55 -07003131
Jesse Barnes139ccd32013-08-19 11:04:55 -07003132 for (i = 0; i < 4; i++) {
3133 reg = FDI_RX_IIR(pipe);
3134 temp = I915_READ(reg);
3135 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
Jesse Barnes357555c2011-04-28 15:09:55 -07003136
Jesse Barnes139ccd32013-08-19 11:04:55 -07003137 if (temp & FDI_RX_SYMBOL_LOCK ||
3138 (I915_READ(reg) & FDI_RX_SYMBOL_LOCK)) {
3139 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
3140 DRM_DEBUG_KMS("FDI train 2 done, level %i.\n",
3141 i);
3142 goto train_done;
3143 }
3144 udelay(2); /* should be 1.5us */
Jesse Barnes357555c2011-04-28 15:09:55 -07003145 }
Jesse Barnes139ccd32013-08-19 11:04:55 -07003146 if (i == 4)
3147 DRM_DEBUG_KMS("FDI train 2 fail on vswing %d\n", j / 2);
Jesse Barnes357555c2011-04-28 15:09:55 -07003148 }
Jesse Barnes357555c2011-04-28 15:09:55 -07003149
Jesse Barnes139ccd32013-08-19 11:04:55 -07003150train_done:
Jesse Barnes357555c2011-04-28 15:09:55 -07003151 DRM_DEBUG_KMS("FDI train done.\n");
3152}
3153
Daniel Vetter88cefb62012-08-12 19:27:14 +02003154static void ironlake_fdi_pll_enable(struct intel_crtc *intel_crtc)
Jesse Barnes0e23b992010-09-10 11:10:00 -07003155{
Daniel Vetter88cefb62012-08-12 19:27:14 +02003156 struct drm_device *dev = intel_crtc->base.dev;
Jesse Barnes0e23b992010-09-10 11:10:00 -07003157 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes0e23b992010-09-10 11:10:00 -07003158 int pipe = intel_crtc->pipe;
Chris Wilson5eddb702010-09-11 13:48:45 +01003159 u32 reg, temp;
Jesse Barnes0e23b992010-09-10 11:10:00 -07003160
Jesse Barnesc64e3112010-09-10 11:27:03 -07003161
Jesse Barnes0e23b992010-09-10 11:10:00 -07003162 /* enable PCH FDI RX PLL, wait warmup plus DMI latency */
Chris Wilson5eddb702010-09-11 13:48:45 +01003163 reg = FDI_RX_CTL(pipe);
3164 temp = I915_READ(reg);
Daniel Vetter627eb5a2013-04-29 19:33:42 +02003165 temp &= ~(FDI_DP_PORT_WIDTH_MASK | (0x7 << 16));
3166 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config.fdi_lanes);
Daniel Vetterdfd07d72012-12-17 11:21:38 +01003167 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
Chris Wilson5eddb702010-09-11 13:48:45 +01003168 I915_WRITE(reg, temp | FDI_RX_PLL_ENABLE);
3169
3170 POSTING_READ(reg);
Jesse Barnes0e23b992010-09-10 11:10:00 -07003171 udelay(200);
3172
3173 /* Switch from Rawclk to PCDclk */
Chris Wilson5eddb702010-09-11 13:48:45 +01003174 temp = I915_READ(reg);
3175 I915_WRITE(reg, temp | FDI_PCDCLK);
3176
3177 POSTING_READ(reg);
Jesse Barnes0e23b992010-09-10 11:10:00 -07003178 udelay(200);
3179
Paulo Zanoni20749732012-11-23 15:30:38 -02003180 /* Enable CPU FDI TX PLL, always on for Ironlake */
3181 reg = FDI_TX_CTL(pipe);
3182 temp = I915_READ(reg);
3183 if ((temp & FDI_TX_PLL_ENABLE) == 0) {
3184 I915_WRITE(reg, temp | FDI_TX_PLL_ENABLE);
Chris Wilson5eddb702010-09-11 13:48:45 +01003185
Paulo Zanoni20749732012-11-23 15:30:38 -02003186 POSTING_READ(reg);
3187 udelay(100);
Jesse Barnes0e23b992010-09-10 11:10:00 -07003188 }
3189}
3190
Daniel Vetter88cefb62012-08-12 19:27:14 +02003191static void ironlake_fdi_pll_disable(struct intel_crtc *intel_crtc)
3192{
3193 struct drm_device *dev = intel_crtc->base.dev;
3194 struct drm_i915_private *dev_priv = dev->dev_private;
3195 int pipe = intel_crtc->pipe;
3196 u32 reg, temp;
3197
3198 /* Switch from PCDclk to Rawclk */
3199 reg = FDI_RX_CTL(pipe);
3200 temp = I915_READ(reg);
3201 I915_WRITE(reg, temp & ~FDI_PCDCLK);
3202
3203 /* Disable CPU FDI TX PLL */
3204 reg = FDI_TX_CTL(pipe);
3205 temp = I915_READ(reg);
3206 I915_WRITE(reg, temp & ~FDI_TX_PLL_ENABLE);
3207
3208 POSTING_READ(reg);
3209 udelay(100);
3210
3211 reg = FDI_RX_CTL(pipe);
3212 temp = I915_READ(reg);
3213 I915_WRITE(reg, temp & ~FDI_RX_PLL_ENABLE);
3214
3215 /* Wait for the clocks to turn off. */
3216 POSTING_READ(reg);
3217 udelay(100);
3218}
3219
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003220static void ironlake_fdi_disable(struct drm_crtc *crtc)
3221{
3222 struct drm_device *dev = crtc->dev;
3223 struct drm_i915_private *dev_priv = dev->dev_private;
3224 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3225 int pipe = intel_crtc->pipe;
3226 u32 reg, temp;
3227
3228 /* disable CPU FDI tx and PCH FDI rx */
3229 reg = FDI_TX_CTL(pipe);
3230 temp = I915_READ(reg);
3231 I915_WRITE(reg, temp & ~FDI_TX_ENABLE);
3232 POSTING_READ(reg);
3233
3234 reg = FDI_RX_CTL(pipe);
3235 temp = I915_READ(reg);
3236 temp &= ~(0x7 << 16);
Daniel Vetterdfd07d72012-12-17 11:21:38 +01003237 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003238 I915_WRITE(reg, temp & ~FDI_RX_ENABLE);
3239
3240 POSTING_READ(reg);
3241 udelay(100);
3242
3243 /* Ironlake workaround, disable clock pointer after downing FDI */
Robin Schroereba905b2014-05-18 02:24:50 +02003244 if (HAS_PCH_IBX(dev))
Jesse Barnes6f06ce12011-01-04 15:09:38 -08003245 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR);
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003246
3247 /* still set train pattern 1 */
3248 reg = FDI_TX_CTL(pipe);
3249 temp = I915_READ(reg);
3250 temp &= ~FDI_LINK_TRAIN_NONE;
3251 temp |= FDI_LINK_TRAIN_PATTERN_1;
3252 I915_WRITE(reg, temp);
3253
3254 reg = FDI_RX_CTL(pipe);
3255 temp = I915_READ(reg);
3256 if (HAS_PCH_CPT(dev)) {
3257 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3258 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
3259 } else {
3260 temp &= ~FDI_LINK_TRAIN_NONE;
3261 temp |= FDI_LINK_TRAIN_PATTERN_1;
3262 }
3263 /* BPC in FDI rx is consistent with that in PIPECONF */
3264 temp &= ~(0x07 << 16);
Daniel Vetterdfd07d72012-12-17 11:21:38 +01003265 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003266 I915_WRITE(reg, temp);
3267
3268 POSTING_READ(reg);
3269 udelay(100);
3270}
3271
Chris Wilson5dce5b932014-01-20 10:17:36 +00003272bool intel_has_pending_fb_unpin(struct drm_device *dev)
3273{
3274 struct intel_crtc *crtc;
3275
3276 /* Note that we don't need to be called with mode_config.lock here
3277 * as our list of CRTC objects is static for the lifetime of the
3278 * device and so cannot disappear as we iterate. Similarly, we can
3279 * happily treat the predicates as racy, atomic checks as userspace
3280 * cannot claim and pin a new fb without at least acquring the
3281 * struct_mutex and so serialising with us.
3282 */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01003283 for_each_intel_crtc(dev, crtc) {
Chris Wilson5dce5b932014-01-20 10:17:36 +00003284 if (atomic_read(&crtc->unpin_work_count) == 0)
3285 continue;
3286
3287 if (crtc->unpin_work)
3288 intel_wait_for_vblank(dev, crtc->pipe);
3289
3290 return true;
3291 }
3292
3293 return false;
3294}
3295
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01003296static void intel_crtc_wait_for_pending_flips(struct drm_crtc *crtc)
3297{
Chris Wilson0f911282012-04-17 10:05:38 +01003298 struct drm_device *dev = crtc->dev;
Chris Wilson5bb61642012-09-27 21:25:58 +01003299 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01003300
Matt Roperf4510a22014-04-01 15:22:40 -07003301 if (crtc->primary->fb == NULL)
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01003302 return;
3303
Daniel Vetter2c10d572012-12-20 21:24:07 +01003304 WARN_ON(waitqueue_active(&dev_priv->pending_flip_queue));
3305
Daniel Vettereed6d672014-05-19 16:09:35 +02003306 WARN_ON(wait_event_timeout(dev_priv->pending_flip_queue,
3307 !intel_crtc_has_pending_flip(crtc),
3308 60*HZ) == 0);
Chris Wilson5bb61642012-09-27 21:25:58 +01003309
Chris Wilson0f911282012-04-17 10:05:38 +01003310 mutex_lock(&dev->struct_mutex);
Matt Roperf4510a22014-04-01 15:22:40 -07003311 intel_finish_fb(crtc->primary->fb);
Chris Wilson0f911282012-04-17 10:05:38 +01003312 mutex_unlock(&dev->struct_mutex);
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01003313}
3314
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003315/* Program iCLKIP clock to the desired frequency */
3316static void lpt_program_iclkip(struct drm_crtc *crtc)
3317{
3318 struct drm_device *dev = crtc->dev;
3319 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiau241bfc32013-09-25 16:45:37 +01003320 int clock = to_intel_crtc(crtc)->config.adjusted_mode.crtc_clock;
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003321 u32 divsel, phaseinc, auxdiv, phasedir = 0;
3322 u32 temp;
3323
Daniel Vetter09153002012-12-12 14:06:44 +01003324 mutex_lock(&dev_priv->dpio_lock);
3325
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003326 /* It is necessary to ungate the pixclk gate prior to programming
3327 * the divisors, and gate it back when it is done.
3328 */
3329 I915_WRITE(PIXCLK_GATE, PIXCLK_GATE_GATE);
3330
3331 /* Disable SSCCTL */
3332 intel_sbi_write(dev_priv, SBI_SSCCTL6,
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003333 intel_sbi_read(dev_priv, SBI_SSCCTL6, SBI_ICLK) |
3334 SBI_SSCCTL_DISABLE,
3335 SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003336
3337 /* 20MHz is a corner case which is out of range for the 7-bit divisor */
Ville Syrjälä12d7cee2013-09-04 18:25:19 +03003338 if (clock == 20000) {
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003339 auxdiv = 1;
3340 divsel = 0x41;
3341 phaseinc = 0x20;
3342 } else {
3343 /* The iCLK virtual clock root frequency is in MHz,
Damien Lespiau241bfc32013-09-25 16:45:37 +01003344 * but the adjusted_mode->crtc_clock in in KHz. To get the
3345 * divisors, it is necessary to divide one by another, so we
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003346 * convert the virtual clock precision to KHz here for higher
3347 * precision.
3348 */
3349 u32 iclk_virtual_root_freq = 172800 * 1000;
3350 u32 iclk_pi_range = 64;
3351 u32 desired_divisor, msb_divisor_value, pi_value;
3352
Ville Syrjälä12d7cee2013-09-04 18:25:19 +03003353 desired_divisor = (iclk_virtual_root_freq / clock);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003354 msb_divisor_value = desired_divisor / iclk_pi_range;
3355 pi_value = desired_divisor % iclk_pi_range;
3356
3357 auxdiv = 0;
3358 divsel = msb_divisor_value - 2;
3359 phaseinc = pi_value;
3360 }
3361
3362 /* This should not happen with any sane values */
3363 WARN_ON(SBI_SSCDIVINTPHASE_DIVSEL(divsel) &
3364 ~SBI_SSCDIVINTPHASE_DIVSEL_MASK);
3365 WARN_ON(SBI_SSCDIVINTPHASE_DIR(phasedir) &
3366 ~SBI_SSCDIVINTPHASE_INCVAL_MASK);
3367
3368 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 +03003369 clock,
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003370 auxdiv,
3371 divsel,
3372 phasedir,
3373 phaseinc);
3374
3375 /* Program SSCDIVINTPHASE6 */
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003376 temp = intel_sbi_read(dev_priv, SBI_SSCDIVINTPHASE6, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003377 temp &= ~SBI_SSCDIVINTPHASE_DIVSEL_MASK;
3378 temp |= SBI_SSCDIVINTPHASE_DIVSEL(divsel);
3379 temp &= ~SBI_SSCDIVINTPHASE_INCVAL_MASK;
3380 temp |= SBI_SSCDIVINTPHASE_INCVAL(phaseinc);
3381 temp |= SBI_SSCDIVINTPHASE_DIR(phasedir);
3382 temp |= SBI_SSCDIVINTPHASE_PROPAGATE;
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003383 intel_sbi_write(dev_priv, SBI_SSCDIVINTPHASE6, temp, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003384
3385 /* Program SSCAUXDIV */
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003386 temp = intel_sbi_read(dev_priv, SBI_SSCAUXDIV6, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003387 temp &= ~SBI_SSCAUXDIV_FINALDIV2SEL(1);
3388 temp |= SBI_SSCAUXDIV_FINALDIV2SEL(auxdiv);
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003389 intel_sbi_write(dev_priv, SBI_SSCAUXDIV6, temp, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003390
3391 /* Enable modulator and associated divider */
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003392 temp = intel_sbi_read(dev_priv, SBI_SSCCTL6, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003393 temp &= ~SBI_SSCCTL_DISABLE;
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003394 intel_sbi_write(dev_priv, SBI_SSCCTL6, temp, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003395
3396 /* Wait for initialization time */
3397 udelay(24);
3398
3399 I915_WRITE(PIXCLK_GATE, PIXCLK_GATE_UNGATE);
Daniel Vetter09153002012-12-12 14:06:44 +01003400
3401 mutex_unlock(&dev_priv->dpio_lock);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003402}
3403
Daniel Vetter275f01b22013-05-03 11:49:47 +02003404static void ironlake_pch_transcoder_set_timings(struct intel_crtc *crtc,
3405 enum pipe pch_transcoder)
3406{
3407 struct drm_device *dev = crtc->base.dev;
3408 struct drm_i915_private *dev_priv = dev->dev_private;
3409 enum transcoder cpu_transcoder = crtc->config.cpu_transcoder;
3410
3411 I915_WRITE(PCH_TRANS_HTOTAL(pch_transcoder),
3412 I915_READ(HTOTAL(cpu_transcoder)));
3413 I915_WRITE(PCH_TRANS_HBLANK(pch_transcoder),
3414 I915_READ(HBLANK(cpu_transcoder)));
3415 I915_WRITE(PCH_TRANS_HSYNC(pch_transcoder),
3416 I915_READ(HSYNC(cpu_transcoder)));
3417
3418 I915_WRITE(PCH_TRANS_VTOTAL(pch_transcoder),
3419 I915_READ(VTOTAL(cpu_transcoder)));
3420 I915_WRITE(PCH_TRANS_VBLANK(pch_transcoder),
3421 I915_READ(VBLANK(cpu_transcoder)));
3422 I915_WRITE(PCH_TRANS_VSYNC(pch_transcoder),
3423 I915_READ(VSYNC(cpu_transcoder)));
3424 I915_WRITE(PCH_TRANS_VSYNCSHIFT(pch_transcoder),
3425 I915_READ(VSYNCSHIFT(cpu_transcoder)));
3426}
3427
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01003428static void cpt_enable_fdi_bc_bifurcation(struct drm_device *dev)
3429{
3430 struct drm_i915_private *dev_priv = dev->dev_private;
3431 uint32_t temp;
3432
3433 temp = I915_READ(SOUTH_CHICKEN1);
3434 if (temp & FDI_BC_BIFURCATION_SELECT)
3435 return;
3436
3437 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_B)) & FDI_RX_ENABLE);
3438 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_C)) & FDI_RX_ENABLE);
3439
3440 temp |= FDI_BC_BIFURCATION_SELECT;
3441 DRM_DEBUG_KMS("enabling fdi C rx\n");
3442 I915_WRITE(SOUTH_CHICKEN1, temp);
3443 POSTING_READ(SOUTH_CHICKEN1);
3444}
3445
3446static void ivybridge_update_fdi_bc_bifurcation(struct intel_crtc *intel_crtc)
3447{
3448 struct drm_device *dev = intel_crtc->base.dev;
3449 struct drm_i915_private *dev_priv = dev->dev_private;
3450
3451 switch (intel_crtc->pipe) {
3452 case PIPE_A:
3453 break;
3454 case PIPE_B:
3455 if (intel_crtc->config.fdi_lanes > 2)
3456 WARN_ON(I915_READ(SOUTH_CHICKEN1) & FDI_BC_BIFURCATION_SELECT);
3457 else
3458 cpt_enable_fdi_bc_bifurcation(dev);
3459
3460 break;
3461 case PIPE_C:
3462 cpt_enable_fdi_bc_bifurcation(dev);
3463
3464 break;
3465 default:
3466 BUG();
3467 }
3468}
3469
Jesse Barnesf67a5592011-01-05 10:31:48 -08003470/*
3471 * Enable PCH resources required for PCH ports:
3472 * - PCH PLLs
3473 * - FDI training & RX/TX
3474 * - update transcoder timings
3475 * - DP transcoding bits
3476 * - transcoder
3477 */
3478static void ironlake_pch_enable(struct drm_crtc *crtc)
Jesse Barnes79e53942008-11-07 14:24:08 -08003479{
3480 struct drm_device *dev = crtc->dev;
Zhenyu Wang2c072452009-06-05 15:38:42 +08003481 struct drm_i915_private *dev_priv = dev->dev_private;
3482 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3483 int pipe = intel_crtc->pipe;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003484 u32 reg, temp;
Jesse Barnes6be4a602010-09-10 10:26:01 -07003485
Daniel Vetterab9412b2013-05-03 11:49:46 +02003486 assert_pch_transcoder_disabled(dev_priv, pipe);
Chris Wilsone7e164d2012-05-11 09:21:25 +01003487
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01003488 if (IS_IVYBRIDGE(dev))
3489 ivybridge_update_fdi_bc_bifurcation(intel_crtc);
3490
Daniel Vettercd986ab2012-10-26 10:58:12 +02003491 /* Write the TU size bits before fdi link training, so that error
3492 * detection works. */
3493 I915_WRITE(FDI_RX_TUSIZE1(pipe),
3494 I915_READ(PIPE_DATA_M1(pipe)) & TU_SIZE_MASK);
3495
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003496 /* For PCH output, training FDI link */
Jesse Barnes674cf962011-04-28 14:27:04 -07003497 dev_priv->display.fdi_link_train(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003498
Daniel Vetter3ad8a202013-06-05 13:34:32 +02003499 /* We need to program the right clock selection before writing the pixel
3500 * mutliplier into the DPLL. */
Paulo Zanoni303b81e2012-10-31 18:12:23 -02003501 if (HAS_PCH_CPT(dev)) {
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003502 u32 sel;
Jesse Barnes4b645f12011-10-12 09:51:31 -07003503
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003504 temp = I915_READ(PCH_DPLL_SEL);
Daniel Vetter11887392013-06-05 13:34:09 +02003505 temp |= TRANS_DPLL_ENABLE(pipe);
3506 sel = TRANS_DPLLB_SEL(pipe);
Daniel Vettera43f6e02013-06-07 23:10:32 +02003507 if (intel_crtc->config.shared_dpll == DPLL_ID_PCH_PLL_B)
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003508 temp |= sel;
3509 else
3510 temp &= ~sel;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003511 I915_WRITE(PCH_DPLL_SEL, temp);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003512 }
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003513
Daniel Vetter3ad8a202013-06-05 13:34:32 +02003514 /* XXX: pch pll's can be enabled any time before we enable the PCH
3515 * transcoder, and we actually should do this to not upset any PCH
3516 * transcoder that already use the clock when we share it.
3517 *
3518 * Note that enable_shared_dpll tries to do the right thing, but
3519 * get_shared_dpll unconditionally resets the pll - we need that to have
3520 * the right LVDS enable sequence. */
Daniel Vetter85b38942014-04-24 23:55:14 +02003521 intel_enable_shared_dpll(intel_crtc);
Daniel Vetter3ad8a202013-06-05 13:34:32 +02003522
Jesse Barnesd9b6cb52011-01-04 15:09:35 -08003523 /* set transcoder timing, panel must allow it */
3524 assert_panel_unlocked(dev_priv, pipe);
Daniel Vetter275f01b22013-05-03 11:49:47 +02003525 ironlake_pch_transcoder_set_timings(intel_crtc, pipe);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003526
Paulo Zanoni303b81e2012-10-31 18:12:23 -02003527 intel_fdi_normal_train(crtc);
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08003528
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003529 /* For PCH DP, enable TRANS_DP_CTL */
3530 if (HAS_PCH_CPT(dev) &&
Keith Packard417e8222011-11-01 19:54:11 -07003531 (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT) ||
3532 intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP))) {
Daniel Vetterdfd07d72012-12-17 11:21:38 +01003533 u32 bpc = (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) >> 5;
Chris Wilson5eddb702010-09-11 13:48:45 +01003534 reg = TRANS_DP_CTL(pipe);
3535 temp = I915_READ(reg);
3536 temp &= ~(TRANS_DP_PORT_SEL_MASK |
Eric Anholt220cad32010-11-18 09:32:58 +08003537 TRANS_DP_SYNC_MASK |
3538 TRANS_DP_BPC_MASK);
Chris Wilson5eddb702010-09-11 13:48:45 +01003539 temp |= (TRANS_DP_OUTPUT_ENABLE |
3540 TRANS_DP_ENH_FRAMING);
Jesse Barnes9325c9f2011-06-24 12:19:21 -07003541 temp |= bpc << 9; /* same format but at 11:9 */
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003542
3543 if (crtc->mode.flags & DRM_MODE_FLAG_PHSYNC)
Chris Wilson5eddb702010-09-11 13:48:45 +01003544 temp |= TRANS_DP_HSYNC_ACTIVE_HIGH;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003545 if (crtc->mode.flags & DRM_MODE_FLAG_PVSYNC)
Chris Wilson5eddb702010-09-11 13:48:45 +01003546 temp |= TRANS_DP_VSYNC_ACTIVE_HIGH;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003547
3548 switch (intel_trans_dp_port_sel(crtc)) {
3549 case PCH_DP_B:
Chris Wilson5eddb702010-09-11 13:48:45 +01003550 temp |= TRANS_DP_PORT_SEL_B;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003551 break;
3552 case PCH_DP_C:
Chris Wilson5eddb702010-09-11 13:48:45 +01003553 temp |= TRANS_DP_PORT_SEL_C;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003554 break;
3555 case PCH_DP_D:
Chris Wilson5eddb702010-09-11 13:48:45 +01003556 temp |= TRANS_DP_PORT_SEL_D;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003557 break;
3558 default:
Daniel Vettere95d41e2012-10-26 10:58:16 +02003559 BUG();
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003560 }
3561
Chris Wilson5eddb702010-09-11 13:48:45 +01003562 I915_WRITE(reg, temp);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003563 }
3564
Paulo Zanonib8a4f402012-10-31 18:12:42 -02003565 ironlake_enable_pch_transcoder(dev_priv, pipe);
Jesse Barnesf67a5592011-01-05 10:31:48 -08003566}
3567
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003568static void lpt_pch_enable(struct drm_crtc *crtc)
3569{
3570 struct drm_device *dev = crtc->dev;
3571 struct drm_i915_private *dev_priv = dev->dev_private;
3572 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter3b117c82013-04-17 20:15:07 +02003573 enum transcoder cpu_transcoder = intel_crtc->config.cpu_transcoder;
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003574
Daniel Vetterab9412b2013-05-03 11:49:46 +02003575 assert_pch_transcoder_disabled(dev_priv, TRANSCODER_A);
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003576
Paulo Zanoni8c52b5e2012-10-31 18:12:24 -02003577 lpt_program_iclkip(crtc);
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003578
Paulo Zanoni0540e482012-10-31 18:12:40 -02003579 /* Set transcoder timing. */
Daniel Vetter275f01b22013-05-03 11:49:47 +02003580 ironlake_pch_transcoder_set_timings(intel_crtc, PIPE_A);
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003581
Paulo Zanoni937bb612012-10-31 18:12:47 -02003582 lpt_enable_pch_transcoder(dev_priv, cpu_transcoder);
Jesse Barnesf67a5592011-01-05 10:31:48 -08003583}
3584
Daniel Vettere2b78262013-06-07 23:10:03 +02003585static void intel_put_shared_dpll(struct intel_crtc *crtc)
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003586{
Daniel Vettere2b78262013-06-07 23:10:03 +02003587 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003588
3589 if (pll == NULL)
3590 return;
3591
3592 if (pll->refcount == 0) {
Daniel Vetter46edb022013-06-05 13:34:12 +02003593 WARN(1, "bad %s refcount\n", pll->name);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003594 return;
3595 }
3596
Daniel Vetterf4a091c2013-06-10 17:28:22 +02003597 if (--pll->refcount == 0) {
3598 WARN_ON(pll->on);
3599 WARN_ON(pll->active);
3600 }
3601
Daniel Vettera43f6e02013-06-07 23:10:32 +02003602 crtc->config.shared_dpll = DPLL_ID_PRIVATE;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003603}
3604
Daniel Vetterb89a1d32013-06-05 13:34:24 +02003605static struct intel_shared_dpll *intel_get_shared_dpll(struct intel_crtc *crtc)
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003606{
Daniel Vettere2b78262013-06-07 23:10:03 +02003607 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
3608 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
3609 enum intel_dpll_id i;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003610
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003611 if (pll) {
Daniel Vetter46edb022013-06-05 13:34:12 +02003612 DRM_DEBUG_KMS("CRTC:%d dropping existing %s\n",
3613 crtc->base.base.id, pll->name);
Daniel Vettere2b78262013-06-07 23:10:03 +02003614 intel_put_shared_dpll(crtc);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003615 }
3616
Daniel Vetter98b6bd92012-05-20 20:00:25 +02003617 if (HAS_PCH_IBX(dev_priv->dev)) {
3618 /* Ironlake PCH has a fixed PLL->PCH pipe mapping. */
Daniel Vetterd94ab062013-07-04 12:01:16 +02003619 i = (enum intel_dpll_id) crtc->pipe;
Daniel Vettere72f9fb2013-06-05 13:34:06 +02003620 pll = &dev_priv->shared_dplls[i];
Daniel Vetter98b6bd92012-05-20 20:00:25 +02003621
Daniel Vetter46edb022013-06-05 13:34:12 +02003622 DRM_DEBUG_KMS("CRTC:%d using pre-allocated %s\n",
3623 crtc->base.base.id, pll->name);
Daniel Vetter98b6bd92012-05-20 20:00:25 +02003624
Daniel Vetterf2a69f42014-05-20 15:19:19 +02003625 WARN_ON(pll->refcount);
3626
Daniel Vetter98b6bd92012-05-20 20:00:25 +02003627 goto found;
3628 }
3629
Daniel Vettere72f9fb2013-06-05 13:34:06 +02003630 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
3631 pll = &dev_priv->shared_dplls[i];
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003632
3633 /* Only want to check enabled timings first */
3634 if (pll->refcount == 0)
3635 continue;
3636
Daniel Vetterb89a1d32013-06-05 13:34:24 +02003637 if (memcmp(&crtc->config.dpll_hw_state, &pll->hw_state,
3638 sizeof(pll->hw_state)) == 0) {
Daniel Vetter46edb022013-06-05 13:34:12 +02003639 DRM_DEBUG_KMS("CRTC:%d sharing existing %s (refcount %d, ative %d)\n",
Daniel Vettere2b78262013-06-07 23:10:03 +02003640 crtc->base.base.id,
Daniel Vetter46edb022013-06-05 13:34:12 +02003641 pll->name, pll->refcount, pll->active);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003642
3643 goto found;
3644 }
3645 }
3646
3647 /* Ok no matching timings, maybe there's a free one? */
Daniel Vettere72f9fb2013-06-05 13:34:06 +02003648 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
3649 pll = &dev_priv->shared_dplls[i];
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003650 if (pll->refcount == 0) {
Daniel Vetter46edb022013-06-05 13:34:12 +02003651 DRM_DEBUG_KMS("CRTC:%d allocated %s\n",
3652 crtc->base.base.id, pll->name);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003653 goto found;
3654 }
3655 }
3656
3657 return NULL;
3658
3659found:
Daniel Vetterf2a69f42014-05-20 15:19:19 +02003660 if (pll->refcount == 0)
3661 pll->hw_state = crtc->config.dpll_hw_state;
3662
Daniel Vettera43f6e02013-06-07 23:10:32 +02003663 crtc->config.shared_dpll = i;
Daniel Vetter46edb022013-06-05 13:34:12 +02003664 DRM_DEBUG_DRIVER("using %s for pipe %c\n", pll->name,
3665 pipe_name(crtc->pipe));
Daniel Vetter66e985c2013-06-05 13:34:20 +02003666
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003667 pll->refcount++;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003668
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003669 return pll;
3670}
3671
Daniel Vettera1520312013-05-03 11:49:50 +02003672static void cpt_verify_modeset(struct drm_device *dev, int pipe)
Jesse Barnesd4270e52011-10-11 10:43:02 -07003673{
3674 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter23670b322012-11-01 09:15:30 +01003675 int dslreg = PIPEDSL(pipe);
Jesse Barnesd4270e52011-10-11 10:43:02 -07003676 u32 temp;
3677
3678 temp = I915_READ(dslreg);
3679 udelay(500);
3680 if (wait_for(I915_READ(dslreg) != temp, 5)) {
Jesse Barnesd4270e52011-10-11 10:43:02 -07003681 if (wait_for(I915_READ(dslreg) != temp, 5))
Ville Syrjälä84f44ce2013-04-17 17:48:49 +03003682 DRM_ERROR("mode set failed: pipe %c stuck\n", pipe_name(pipe));
Jesse Barnesd4270e52011-10-11 10:43:02 -07003683 }
3684}
3685
Jesse Barnesb074cec2013-04-25 12:55:02 -07003686static void ironlake_pfit_enable(struct intel_crtc *crtc)
3687{
3688 struct drm_device *dev = crtc->base.dev;
3689 struct drm_i915_private *dev_priv = dev->dev_private;
3690 int pipe = crtc->pipe;
3691
Chris Wilsonfd4daa92013-08-27 17:04:17 +01003692 if (crtc->config.pch_pfit.enabled) {
Jesse Barnesb074cec2013-04-25 12:55:02 -07003693 /* Force use of hard-coded filter coefficients
3694 * as some pre-programmed values are broken,
3695 * e.g. x201.
3696 */
3697 if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev))
3698 I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3 |
3699 PF_PIPE_SEL_IVB(pipe));
3700 else
3701 I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3);
3702 I915_WRITE(PF_WIN_POS(pipe), crtc->config.pch_pfit.pos);
3703 I915_WRITE(PF_WIN_SZ(pipe), crtc->config.pch_pfit.size);
Jesse Barnes040484a2011-01-03 12:14:26 -08003704 }
Jesse Barnesf67a5592011-01-05 10:31:48 -08003705}
3706
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03003707static void intel_enable_planes(struct drm_crtc *crtc)
3708{
3709 struct drm_device *dev = crtc->dev;
3710 enum pipe pipe = to_intel_crtc(crtc)->pipe;
Matt Roperaf2b6532014-04-01 15:22:32 -07003711 struct drm_plane *plane;
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03003712 struct intel_plane *intel_plane;
3713
Matt Roperaf2b6532014-04-01 15:22:32 -07003714 drm_for_each_legacy_plane(plane, &dev->mode_config.plane_list) {
3715 intel_plane = to_intel_plane(plane);
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03003716 if (intel_plane->pipe == pipe)
3717 intel_plane_restore(&intel_plane->base);
Matt Roperaf2b6532014-04-01 15:22:32 -07003718 }
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03003719}
3720
3721static void intel_disable_planes(struct drm_crtc *crtc)
3722{
3723 struct drm_device *dev = crtc->dev;
3724 enum pipe pipe = to_intel_crtc(crtc)->pipe;
Matt Roperaf2b6532014-04-01 15:22:32 -07003725 struct drm_plane *plane;
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03003726 struct intel_plane *intel_plane;
3727
Matt Roperaf2b6532014-04-01 15:22:32 -07003728 drm_for_each_legacy_plane(plane, &dev->mode_config.plane_list) {
3729 intel_plane = to_intel_plane(plane);
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03003730 if (intel_plane->pipe == pipe)
3731 intel_plane_disable(&intel_plane->base);
Matt Roperaf2b6532014-04-01 15:22:32 -07003732 }
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03003733}
3734
Ville Syrjälä20bc86732013-10-01 18:02:17 +03003735void hsw_enable_ips(struct intel_crtc *crtc)
Paulo Zanonid77e4532013-09-24 13:52:55 -03003736{
Ville Syrjäläcea165c2014-04-15 21:41:35 +03003737 struct drm_device *dev = crtc->base.dev;
3738 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanonid77e4532013-09-24 13:52:55 -03003739
3740 if (!crtc->config.ips_enabled)
3741 return;
3742
Ville Syrjäläcea165c2014-04-15 21:41:35 +03003743 /* We can only enable IPS after we enable a plane and wait for a vblank */
3744 intel_wait_for_vblank(dev, crtc->pipe);
3745
Paulo Zanonid77e4532013-09-24 13:52:55 -03003746 assert_plane_enabled(dev_priv, crtc->plane);
Ville Syrjäläcea165c2014-04-15 21:41:35 +03003747 if (IS_BROADWELL(dev)) {
Ben Widawsky2a114cc2013-11-02 21:07:47 -07003748 mutex_lock(&dev_priv->rps.hw_lock);
3749 WARN_ON(sandybridge_pcode_write(dev_priv, DISPLAY_IPS_CONTROL, 0xc0000000));
3750 mutex_unlock(&dev_priv->rps.hw_lock);
3751 /* Quoting Art Runyan: "its not safe to expect any particular
3752 * value in IPS_CTL bit 31 after enabling IPS through the
Jesse Barnese59150d2014-01-07 13:30:45 -08003753 * mailbox." Moreover, the mailbox may return a bogus state,
3754 * so we need to just enable it and continue on.
Ben Widawsky2a114cc2013-11-02 21:07:47 -07003755 */
3756 } else {
3757 I915_WRITE(IPS_CTL, IPS_ENABLE);
3758 /* The bit only becomes 1 in the next vblank, so this wait here
3759 * is essentially intel_wait_for_vblank. If we don't have this
3760 * and don't wait for vblanks until the end of crtc_enable, then
3761 * the HW state readout code will complain that the expected
3762 * IPS_CTL value is not the one we read. */
3763 if (wait_for(I915_READ_NOTRACE(IPS_CTL) & IPS_ENABLE, 50))
3764 DRM_ERROR("Timed out waiting for IPS enable\n");
3765 }
Paulo Zanonid77e4532013-09-24 13:52:55 -03003766}
3767
Ville Syrjälä20bc86732013-10-01 18:02:17 +03003768void hsw_disable_ips(struct intel_crtc *crtc)
Paulo Zanonid77e4532013-09-24 13:52:55 -03003769{
3770 struct drm_device *dev = crtc->base.dev;
3771 struct drm_i915_private *dev_priv = dev->dev_private;
3772
3773 if (!crtc->config.ips_enabled)
3774 return;
3775
3776 assert_plane_enabled(dev_priv, crtc->plane);
Ben Widawsky23d0b132014-04-10 14:32:41 -07003777 if (IS_BROADWELL(dev)) {
Ben Widawsky2a114cc2013-11-02 21:07:47 -07003778 mutex_lock(&dev_priv->rps.hw_lock);
3779 WARN_ON(sandybridge_pcode_write(dev_priv, DISPLAY_IPS_CONTROL, 0));
3780 mutex_unlock(&dev_priv->rps.hw_lock);
Ben Widawsky23d0b132014-04-10 14:32:41 -07003781 /* wait for pcode to finish disabling IPS, which may take up to 42ms */
3782 if (wait_for((I915_READ(IPS_CTL) & IPS_ENABLE) == 0, 42))
3783 DRM_ERROR("Timed out waiting for IPS disable\n");
Jesse Barnese59150d2014-01-07 13:30:45 -08003784 } else {
Ben Widawsky2a114cc2013-11-02 21:07:47 -07003785 I915_WRITE(IPS_CTL, 0);
Jesse Barnese59150d2014-01-07 13:30:45 -08003786 POSTING_READ(IPS_CTL);
3787 }
Paulo Zanonid77e4532013-09-24 13:52:55 -03003788
3789 /* We need to wait for a vblank before we can disable the plane. */
3790 intel_wait_for_vblank(dev, crtc->pipe);
3791}
3792
3793/** Loads the palette/gamma unit for the CRTC with the prepared values */
3794static void intel_crtc_load_lut(struct drm_crtc *crtc)
3795{
3796 struct drm_device *dev = crtc->dev;
3797 struct drm_i915_private *dev_priv = dev->dev_private;
3798 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3799 enum pipe pipe = intel_crtc->pipe;
3800 int palreg = PALETTE(pipe);
3801 int i;
3802 bool reenable_ips = false;
3803
3804 /* The clocks have to be on to load the palette. */
3805 if (!crtc->enabled || !intel_crtc->active)
3806 return;
3807
3808 if (!HAS_PCH_SPLIT(dev_priv->dev)) {
3809 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DSI))
3810 assert_dsi_pll_enabled(dev_priv);
3811 else
3812 assert_pll_enabled(dev_priv, pipe);
3813 }
3814
3815 /* use legacy palette for Ironlake */
3816 if (HAS_PCH_SPLIT(dev))
3817 palreg = LGC_PALETTE(pipe);
3818
3819 /* Workaround : Do not read or write the pipe palette/gamma data while
3820 * GAMMA_MODE is configured for split gamma and IPS_CTL has IPS enabled.
3821 */
Paulo Zanoni41e6fc42014-01-08 17:26:31 -02003822 if (IS_HASWELL(dev) && intel_crtc->config.ips_enabled &&
Paulo Zanonid77e4532013-09-24 13:52:55 -03003823 ((I915_READ(GAMMA_MODE(pipe)) & GAMMA_MODE_MODE_MASK) ==
3824 GAMMA_MODE_MODE_SPLIT)) {
3825 hsw_disable_ips(intel_crtc);
3826 reenable_ips = true;
3827 }
3828
3829 for (i = 0; i < 256; i++) {
3830 I915_WRITE(palreg + 4 * i,
3831 (intel_crtc->lut_r[i] << 16) |
3832 (intel_crtc->lut_g[i] << 8) |
3833 intel_crtc->lut_b[i]);
3834 }
3835
3836 if (reenable_ips)
3837 hsw_enable_ips(intel_crtc);
3838}
3839
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03003840static void intel_crtc_dpms_overlay(struct intel_crtc *intel_crtc, bool enable)
3841{
3842 if (!enable && intel_crtc->overlay) {
3843 struct drm_device *dev = intel_crtc->base.dev;
3844 struct drm_i915_private *dev_priv = dev->dev_private;
3845
3846 mutex_lock(&dev->struct_mutex);
3847 dev_priv->mm.interruptible = false;
3848 (void) intel_overlay_switch_off(intel_crtc->overlay);
3849 dev_priv->mm.interruptible = true;
3850 mutex_unlock(&dev->struct_mutex);
3851 }
3852
3853 /* Let userspace switch the overlay on again. In most cases userspace
3854 * has to recompute where to put it anyway.
3855 */
3856}
3857
3858/**
3859 * i9xx_fixup_plane - ugly workaround for G45 to fire up the hardware
3860 * cursor plane briefly if not already running after enabling the display
3861 * plane.
3862 * This workaround avoids occasional blank screens when self refresh is
3863 * enabled.
3864 */
3865static void
3866g4x_fixup_plane(struct drm_i915_private *dev_priv, enum pipe pipe)
3867{
3868 u32 cntl = I915_READ(CURCNTR(pipe));
3869
3870 if ((cntl & CURSOR_MODE) == 0) {
3871 u32 fw_bcl_self = I915_READ(FW_BLC_SELF);
3872
3873 I915_WRITE(FW_BLC_SELF, fw_bcl_self & ~FW_BLC_SELF_EN);
3874 I915_WRITE(CURCNTR(pipe), CURSOR_MODE_64_ARGB_AX);
3875 intel_wait_for_vblank(dev_priv->dev, pipe);
3876 I915_WRITE(CURCNTR(pipe), cntl);
3877 I915_WRITE(CURBASE(pipe), I915_READ(CURBASE(pipe)));
3878 I915_WRITE(FW_BLC_SELF, fw_bcl_self);
3879 }
3880}
3881
3882static void intel_crtc_enable_planes(struct drm_crtc *crtc)
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02003883{
3884 struct drm_device *dev = crtc->dev;
3885 struct drm_i915_private *dev_priv = dev->dev_private;
3886 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3887 int pipe = intel_crtc->pipe;
3888 int plane = intel_crtc->plane;
3889
3890 intel_enable_primary_hw_plane(dev_priv, plane, pipe);
3891 intel_enable_planes(crtc);
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03003892 /* The fixup needs to happen before cursor is enabled */
3893 if (IS_G4X(dev))
3894 g4x_fixup_plane(dev_priv, pipe);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02003895 intel_crtc_update_cursor(crtc, true);
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03003896 intel_crtc_dpms_overlay(intel_crtc, true);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02003897
3898 hsw_enable_ips(intel_crtc);
3899
3900 mutex_lock(&dev->struct_mutex);
3901 intel_update_fbc(dev);
Daniel Vetter71b1c372014-04-24 23:55:03 +02003902 intel_edp_psr_update(dev);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02003903 mutex_unlock(&dev->struct_mutex);
3904}
3905
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03003906static void intel_crtc_disable_planes(struct drm_crtc *crtc)
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02003907{
3908 struct drm_device *dev = crtc->dev;
3909 struct drm_i915_private *dev_priv = dev->dev_private;
3910 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3911 int pipe = intel_crtc->pipe;
3912 int plane = intel_crtc->plane;
3913
3914 intel_crtc_wait_for_pending_flips(crtc);
3915 drm_vblank_off(dev, pipe);
3916
3917 if (dev_priv->fbc.plane == plane)
3918 intel_disable_fbc(dev);
3919
3920 hsw_disable_ips(intel_crtc);
3921
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03003922 intel_crtc_dpms_overlay(intel_crtc, false);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02003923 intel_crtc_update_cursor(crtc, false);
3924 intel_disable_planes(crtc);
3925 intel_disable_primary_hw_plane(dev_priv, plane, pipe);
3926}
3927
Jesse Barnesf67a5592011-01-05 10:31:48 -08003928static void ironlake_crtc_enable(struct drm_crtc *crtc)
3929{
3930 struct drm_device *dev = crtc->dev;
3931 struct drm_i915_private *dev_priv = dev->dev_private;
3932 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02003933 struct intel_encoder *encoder;
Jesse Barnesf67a5592011-01-05 10:31:48 -08003934 int pipe = intel_crtc->pipe;
Daniel Vetter29407aa2014-04-24 23:55:08 +02003935 enum plane plane = intel_crtc->plane;
Jesse Barnesf67a5592011-01-05 10:31:48 -08003936
Daniel Vetter08a48462012-07-02 11:43:47 +02003937 WARN_ON(!crtc->enabled);
3938
Jesse Barnesf67a5592011-01-05 10:31:48 -08003939 if (intel_crtc->active)
3940 return;
3941
Daniel Vetterb14b1052014-04-24 23:55:13 +02003942 if (intel_crtc->config.has_pch_encoder)
3943 intel_prepare_shared_dpll(intel_crtc);
3944
Daniel Vetter29407aa2014-04-24 23:55:08 +02003945 if (intel_crtc->config.has_dp_encoder)
3946 intel_dp_set_m_n(intel_crtc);
3947
3948 intel_set_pipe_timings(intel_crtc);
3949
3950 if (intel_crtc->config.has_pch_encoder) {
3951 intel_cpu_transcoder_set_m_n(intel_crtc,
3952 &intel_crtc->config.fdi_m_n);
3953 }
3954
3955 ironlake_set_pipeconf(crtc);
3956
3957 /* Set up the display plane register */
3958 I915_WRITE(DSPCNTR(plane), DISPPLANE_GAMMA_ENABLE);
3959 POSTING_READ(DSPCNTR(plane));
3960
3961 dev_priv->display.update_primary_plane(crtc, crtc->primary->fb,
3962 crtc->x, crtc->y);
3963
Jesse Barnesf67a5592011-01-05 10:31:48 -08003964 intel_crtc->active = true;
Paulo Zanoni86642812013-04-12 17:57:57 -03003965
3966 intel_set_cpu_fifo_underrun_reporting(dev, pipe, true);
3967 intel_set_pch_fifo_underrun_reporting(dev, pipe, true);
3968
Daniel Vetterf6736a12013-06-05 13:34:30 +02003969 for_each_encoder_on_crtc(dev, crtc, encoder)
Daniel Vetter952735e2013-06-05 13:34:27 +02003970 if (encoder->pre_enable)
3971 encoder->pre_enable(encoder);
Jesse Barnesf67a5592011-01-05 10:31:48 -08003972
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01003973 if (intel_crtc->config.has_pch_encoder) {
Daniel Vetterfff367c2012-10-27 15:50:28 +02003974 /* Note: FDI PLL enabling _must_ be done before we enable the
3975 * cpu pipes, hence this is separate from all the other fdi/pch
3976 * enabling. */
Daniel Vetter88cefb62012-08-12 19:27:14 +02003977 ironlake_fdi_pll_enable(intel_crtc);
Daniel Vetter46b6f812012-09-06 22:08:33 +02003978 } else {
3979 assert_fdi_tx_disabled(dev_priv, pipe);
3980 assert_fdi_rx_disabled(dev_priv, pipe);
3981 }
Jesse Barnesf67a5592011-01-05 10:31:48 -08003982
Jesse Barnesb074cec2013-04-25 12:55:02 -07003983 ironlake_pfit_enable(intel_crtc);
Jesse Barnesf67a5592011-01-05 10:31:48 -08003984
Jesse Barnes9c54c0d2011-06-15 23:32:33 +02003985 /*
3986 * On ILK+ LUT must be loaded before the pipe is running but with
3987 * clocks enabled
3988 */
3989 intel_crtc_load_lut(crtc);
3990
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03003991 intel_update_watermarks(crtc);
Paulo Zanonie1fdc472014-01-17 13:51:12 -02003992 intel_enable_pipe(intel_crtc);
Jesse Barnesf67a5592011-01-05 10:31:48 -08003993
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01003994 if (intel_crtc->config.has_pch_encoder)
Jesse Barnesf67a5592011-01-05 10:31:48 -08003995 ironlake_pch_enable(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003996
Daniel Vetterfa5c73b2012-07-01 23:24:36 +02003997 for_each_encoder_on_crtc(dev, crtc, encoder)
3998 encoder->enable(encoder);
Daniel Vetter61b77dd2012-07-02 00:16:19 +02003999
4000 if (HAS_PCH_CPT(dev))
Daniel Vettera1520312013-05-03 11:49:50 +02004001 cpt_verify_modeset(dev, intel_crtc->pipe);
Daniel Vetter6ce94102012-10-04 19:20:03 +02004002
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004003 intel_crtc_enable_planes(crtc);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004004
Daniel Vetter6ce94102012-10-04 19:20:03 +02004005 /*
4006 * There seems to be a race in PCH platform hw (at least on some
4007 * outputs) where an enabled pipe still completes any pageflip right
4008 * away (as if the pipe is off) instead of waiting for vblank. As soon
4009 * as the first vblank happend, everything works as expected. Hence just
4010 * wait for one vblank before returning to avoid strange things
4011 * happening.
4012 */
4013 intel_wait_for_vblank(dev, intel_crtc->pipe);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004014}
4015
Paulo Zanoni42db64e2013-05-31 16:33:22 -03004016/* IPS only exists on ULT machines and is tied to pipe A. */
4017static bool hsw_crtc_supports_ips(struct intel_crtc *crtc)
4018{
Damien Lespiauf5adf942013-06-24 18:29:34 +01004019 return HAS_IPS(crtc->base.dev) && crtc->pipe == PIPE_A;
Paulo Zanoni42db64e2013-05-31 16:33:22 -03004020}
4021
Paulo Zanonie4916942013-09-20 16:21:19 -03004022/*
4023 * This implements the workaround described in the "notes" section of the mode
4024 * set sequence documentation. When going from no pipes or single pipe to
4025 * multiple pipes, and planes are enabled after the pipe, we need to wait at
4026 * least 2 vblanks on the first pipe before enabling planes on the second pipe.
4027 */
4028static void haswell_mode_set_planes_workaround(struct intel_crtc *crtc)
4029{
4030 struct drm_device *dev = crtc->base.dev;
4031 struct intel_crtc *crtc_it, *other_active_crtc = NULL;
4032
4033 /* We want to get the other_active_crtc only if there's only 1 other
4034 * active crtc. */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01004035 for_each_intel_crtc(dev, crtc_it) {
Paulo Zanonie4916942013-09-20 16:21:19 -03004036 if (!crtc_it->active || crtc_it == crtc)
4037 continue;
4038
4039 if (other_active_crtc)
4040 return;
4041
4042 other_active_crtc = crtc_it;
4043 }
4044 if (!other_active_crtc)
4045 return;
4046
4047 intel_wait_for_vblank(dev, other_active_crtc->pipe);
4048 intel_wait_for_vblank(dev, other_active_crtc->pipe);
4049}
4050
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004051static void haswell_crtc_enable(struct drm_crtc *crtc)
4052{
4053 struct drm_device *dev = crtc->dev;
4054 struct drm_i915_private *dev_priv = dev->dev_private;
4055 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4056 struct intel_encoder *encoder;
4057 int pipe = intel_crtc->pipe;
Daniel Vetter229fca92014-04-24 23:55:09 +02004058 enum plane plane = intel_crtc->plane;
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004059
4060 WARN_ON(!crtc->enabled);
4061
4062 if (intel_crtc->active)
4063 return;
4064
Daniel Vetter229fca92014-04-24 23:55:09 +02004065 if (intel_crtc->config.has_dp_encoder)
4066 intel_dp_set_m_n(intel_crtc);
4067
4068 intel_set_pipe_timings(intel_crtc);
4069
4070 if (intel_crtc->config.has_pch_encoder) {
4071 intel_cpu_transcoder_set_m_n(intel_crtc,
4072 &intel_crtc->config.fdi_m_n);
4073 }
4074
4075 haswell_set_pipeconf(crtc);
4076
4077 intel_set_pipe_csc(crtc);
4078
4079 /* Set up the display plane register */
4080 I915_WRITE(DSPCNTR(plane), DISPPLANE_GAMMA_ENABLE | DISPPLANE_PIPE_CSC_ENABLE);
4081 POSTING_READ(DSPCNTR(plane));
4082
4083 dev_priv->display.update_primary_plane(crtc, crtc->primary->fb,
4084 crtc->x, crtc->y);
4085
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004086 intel_crtc->active = true;
Paulo Zanoni86642812013-04-12 17:57:57 -03004087
4088 intel_set_cpu_fifo_underrun_reporting(dev, pipe, true);
4089 if (intel_crtc->config.has_pch_encoder)
4090 intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_A, true);
4091
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01004092 if (intel_crtc->config.has_pch_encoder)
Paulo Zanoni04945642012-11-01 21:00:59 -02004093 dev_priv->display.fdi_link_train(crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004094
4095 for_each_encoder_on_crtc(dev, crtc, encoder)
4096 if (encoder->pre_enable)
4097 encoder->pre_enable(encoder);
4098
Paulo Zanoni1f544382012-10-24 11:32:00 -02004099 intel_ddi_enable_pipe_clock(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004100
Jesse Barnesb074cec2013-04-25 12:55:02 -07004101 ironlake_pfit_enable(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004102
4103 /*
4104 * On ILK+ LUT must be loaded before the pipe is running but with
4105 * clocks enabled
4106 */
4107 intel_crtc_load_lut(crtc);
4108
Paulo Zanoni1f544382012-10-24 11:32:00 -02004109 intel_ddi_set_pipe_settings(crtc);
Damien Lespiau8228c252013-03-07 15:30:27 +00004110 intel_ddi_enable_transcoder_func(crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004111
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03004112 intel_update_watermarks(crtc);
Paulo Zanonie1fdc472014-01-17 13:51:12 -02004113 intel_enable_pipe(intel_crtc);
Paulo Zanoni42db64e2013-05-31 16:33:22 -03004114
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01004115 if (intel_crtc->config.has_pch_encoder)
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02004116 lpt_pch_enable(crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004117
Jani Nikula8807e552013-08-30 19:40:32 +03004118 for_each_encoder_on_crtc(dev, crtc, encoder) {
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004119 encoder->enable(encoder);
Jani Nikula8807e552013-08-30 19:40:32 +03004120 intel_opregion_notify_encoder(encoder, true);
4121 }
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004122
Paulo Zanonie4916942013-09-20 16:21:19 -03004123 /* If we change the relative order between pipe/planes enabling, we need
4124 * to change the workaround. */
4125 haswell_mode_set_planes_workaround(intel_crtc);
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004126 intel_crtc_enable_planes(crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004127}
4128
Daniel Vetter3f8dce32013-05-08 10:36:30 +02004129static void ironlake_pfit_disable(struct intel_crtc *crtc)
4130{
4131 struct drm_device *dev = crtc->base.dev;
4132 struct drm_i915_private *dev_priv = dev->dev_private;
4133 int pipe = crtc->pipe;
4134
4135 /* To avoid upsetting the power well on haswell only disable the pfit if
4136 * it's in use. The hw state code will make sure we get this right. */
Chris Wilsonfd4daa92013-08-27 17:04:17 +01004137 if (crtc->config.pch_pfit.enabled) {
Daniel Vetter3f8dce32013-05-08 10:36:30 +02004138 I915_WRITE(PF_CTL(pipe), 0);
4139 I915_WRITE(PF_WIN_POS(pipe), 0);
4140 I915_WRITE(PF_WIN_SZ(pipe), 0);
4141 }
4142}
4143
Jesse Barnes6be4a602010-09-10 10:26:01 -07004144static void ironlake_crtc_disable(struct drm_crtc *crtc)
4145{
4146 struct drm_device *dev = crtc->dev;
4147 struct drm_i915_private *dev_priv = dev->dev_private;
4148 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02004149 struct intel_encoder *encoder;
Jesse Barnes6be4a602010-09-10 10:26:01 -07004150 int pipe = intel_crtc->pipe;
Chris Wilson5eddb702010-09-11 13:48:45 +01004151 u32 reg, temp;
Jesse Barnes6be4a602010-09-10 10:26:01 -07004152
Chris Wilsonf7abfe82010-09-13 14:19:16 +01004153 if (!intel_crtc->active)
4154 return;
4155
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004156 intel_crtc_disable_planes(crtc);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004157
Daniel Vetterea9d7582012-07-10 10:42:52 +02004158 for_each_encoder_on_crtc(dev, crtc, encoder)
4159 encoder->disable(encoder);
4160
Daniel Vetterd925c592013-06-05 13:34:04 +02004161 if (intel_crtc->config.has_pch_encoder)
4162 intel_set_pch_fifo_underrun_reporting(dev, pipe, false);
4163
Jesse Barnesb24e7172011-01-04 15:09:30 -08004164 intel_disable_pipe(dev_priv, pipe);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004165
Daniel Vetter3f8dce32013-05-08 10:36:30 +02004166 ironlake_pfit_disable(intel_crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004167
Daniel Vetterbf49ec82012-09-06 22:15:40 +02004168 for_each_encoder_on_crtc(dev, crtc, encoder)
4169 if (encoder->post_disable)
4170 encoder->post_disable(encoder);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004171
Daniel Vetterd925c592013-06-05 13:34:04 +02004172 if (intel_crtc->config.has_pch_encoder) {
4173 ironlake_fdi_disable(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004174
Daniel Vetterd925c592013-06-05 13:34:04 +02004175 ironlake_disable_pch_transcoder(dev_priv, pipe);
4176 intel_set_pch_fifo_underrun_reporting(dev, pipe, true);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004177
Daniel Vetterd925c592013-06-05 13:34:04 +02004178 if (HAS_PCH_CPT(dev)) {
4179 /* disable TRANS_DP_CTL */
4180 reg = TRANS_DP_CTL(pipe);
4181 temp = I915_READ(reg);
4182 temp &= ~(TRANS_DP_OUTPUT_ENABLE |
4183 TRANS_DP_PORT_SEL_MASK);
4184 temp |= TRANS_DP_PORT_SEL_NONE;
4185 I915_WRITE(reg, temp);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004186
Daniel Vetterd925c592013-06-05 13:34:04 +02004187 /* disable DPLL_SEL */
4188 temp = I915_READ(PCH_DPLL_SEL);
Daniel Vetter11887392013-06-05 13:34:09 +02004189 temp &= ~(TRANS_DPLL_ENABLE(pipe) | TRANS_DPLLB_SEL(pipe));
Daniel Vetterd925c592013-06-05 13:34:04 +02004190 I915_WRITE(PCH_DPLL_SEL, temp);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08004191 }
Daniel Vetterd925c592013-06-05 13:34:04 +02004192
4193 /* disable PCH DPLL */
Daniel Vettere72f9fb2013-06-05 13:34:06 +02004194 intel_disable_shared_dpll(intel_crtc);
Daniel Vetterd925c592013-06-05 13:34:04 +02004195
4196 ironlake_fdi_pll_disable(intel_crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004197 }
4198
Chris Wilsonf7abfe82010-09-13 14:19:16 +01004199 intel_crtc->active = false;
Ville Syrjälä46ba6142013-09-10 11:40:40 +03004200 intel_update_watermarks(crtc);
Ben Widawskyd1ebd8162011-04-25 20:11:50 +01004201
4202 mutex_lock(&dev->struct_mutex);
Chris Wilson6b383a72010-09-13 13:54:26 +01004203 intel_update_fbc(dev);
Daniel Vetter71b1c372014-04-24 23:55:03 +02004204 intel_edp_psr_update(dev);
Ben Widawskyd1ebd8162011-04-25 20:11:50 +01004205 mutex_unlock(&dev->struct_mutex);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004206}
4207
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004208static void haswell_crtc_disable(struct drm_crtc *crtc)
4209{
4210 struct drm_device *dev = crtc->dev;
4211 struct drm_i915_private *dev_priv = dev->dev_private;
4212 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4213 struct intel_encoder *encoder;
4214 int pipe = intel_crtc->pipe;
Daniel Vetter3b117c82013-04-17 20:15:07 +02004215 enum transcoder cpu_transcoder = intel_crtc->config.cpu_transcoder;
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004216
4217 if (!intel_crtc->active)
4218 return;
4219
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004220 intel_crtc_disable_planes(crtc);
Ville Syrjälädda9a662013-09-19 17:00:37 -03004221
Jani Nikula8807e552013-08-30 19:40:32 +03004222 for_each_encoder_on_crtc(dev, crtc, encoder) {
4223 intel_opregion_notify_encoder(encoder, false);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004224 encoder->disable(encoder);
Jani Nikula8807e552013-08-30 19:40:32 +03004225 }
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004226
Paulo Zanoni86642812013-04-12 17:57:57 -03004227 if (intel_crtc->config.has_pch_encoder)
4228 intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_A, false);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004229 intel_disable_pipe(dev_priv, pipe);
4230
Paulo Zanoniad80a812012-10-24 16:06:19 -02004231 intel_ddi_disable_transcoder_func(dev_priv, cpu_transcoder);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004232
Daniel Vetter3f8dce32013-05-08 10:36:30 +02004233 ironlake_pfit_disable(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004234
Paulo Zanoni1f544382012-10-24 11:32:00 -02004235 intel_ddi_disable_pipe_clock(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004236
4237 for_each_encoder_on_crtc(dev, crtc, encoder)
4238 if (encoder->post_disable)
4239 encoder->post_disable(encoder);
4240
Daniel Vetter88adfff2013-03-28 10:42:01 +01004241 if (intel_crtc->config.has_pch_encoder) {
Paulo Zanoniab4d9662012-10-31 18:12:55 -02004242 lpt_disable_pch_transcoder(dev_priv);
Paulo Zanoni86642812013-04-12 17:57:57 -03004243 intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_A, true);
Paulo Zanoni1ad960f2012-11-01 21:05:05 -02004244 intel_ddi_fdi_disable(crtc);
Paulo Zanoni83616632012-10-23 18:29:54 -02004245 }
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004246
4247 intel_crtc->active = false;
Ville Syrjälä46ba6142013-09-10 11:40:40 +03004248 intel_update_watermarks(crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004249
4250 mutex_lock(&dev->struct_mutex);
4251 intel_update_fbc(dev);
Daniel Vetter71b1c372014-04-24 23:55:03 +02004252 intel_edp_psr_update(dev);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004253 mutex_unlock(&dev->struct_mutex);
4254}
4255
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004256static void ironlake_crtc_off(struct drm_crtc *crtc)
4257{
4258 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vettere72f9fb2013-06-05 13:34:06 +02004259 intel_put_shared_dpll(intel_crtc);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004260}
4261
Paulo Zanoni6441ab52012-10-05 12:05:58 -03004262static void haswell_crtc_off(struct drm_crtc *crtc)
4263{
4264 intel_ddi_put_crtc_pll(crtc);
4265}
4266
Jesse Barnes2dd24552013-04-25 12:55:01 -07004267static void i9xx_pfit_enable(struct intel_crtc *crtc)
4268{
4269 struct drm_device *dev = crtc->base.dev;
4270 struct drm_i915_private *dev_priv = dev->dev_private;
4271 struct intel_crtc_config *pipe_config = &crtc->config;
4272
Daniel Vetter328d8e82013-05-08 10:36:31 +02004273 if (!crtc->config.gmch_pfit.control)
Jesse Barnes2dd24552013-04-25 12:55:01 -07004274 return;
4275
Daniel Vetterc0b03412013-05-28 12:05:54 +02004276 /*
4277 * The panel fitter should only be adjusted whilst the pipe is disabled,
4278 * according to register description and PRM.
4279 */
Jesse Barnes2dd24552013-04-25 12:55:01 -07004280 WARN_ON(I915_READ(PFIT_CONTROL) & PFIT_ENABLE);
4281 assert_pipe_disabled(dev_priv, crtc->pipe);
4282
Jesse Barnesb074cec2013-04-25 12:55:02 -07004283 I915_WRITE(PFIT_PGM_RATIOS, pipe_config->gmch_pfit.pgm_ratios);
4284 I915_WRITE(PFIT_CONTROL, pipe_config->gmch_pfit.control);
Daniel Vetter5a80c452013-04-25 22:52:18 +02004285
4286 /* Border color in case we don't scale up to the full screen. Black by
4287 * default, change to something else for debugging. */
4288 I915_WRITE(BCLRPAT(crtc->pipe), 0);
Jesse Barnes2dd24552013-04-25 12:55:01 -07004289}
4290
Imre Deak77d22dc2014-03-05 16:20:52 +02004291#define for_each_power_domain(domain, mask) \
4292 for ((domain) = 0; (domain) < POWER_DOMAIN_NUM; (domain)++) \
4293 if ((1 << (domain)) & (mask))
4294
Imre Deak319be8a2014-03-04 19:22:57 +02004295enum intel_display_power_domain
4296intel_display_port_power_domain(struct intel_encoder *intel_encoder)
Imre Deak77d22dc2014-03-05 16:20:52 +02004297{
Imre Deak319be8a2014-03-04 19:22:57 +02004298 struct drm_device *dev = intel_encoder->base.dev;
4299 struct intel_digital_port *intel_dig_port;
4300
4301 switch (intel_encoder->type) {
4302 case INTEL_OUTPUT_UNKNOWN:
4303 /* Only DDI platforms should ever use this output type */
4304 WARN_ON_ONCE(!HAS_DDI(dev));
4305 case INTEL_OUTPUT_DISPLAYPORT:
4306 case INTEL_OUTPUT_HDMI:
4307 case INTEL_OUTPUT_EDP:
4308 intel_dig_port = enc_to_dig_port(&intel_encoder->base);
4309 switch (intel_dig_port->port) {
4310 case PORT_A:
4311 return POWER_DOMAIN_PORT_DDI_A_4_LANES;
4312 case PORT_B:
4313 return POWER_DOMAIN_PORT_DDI_B_4_LANES;
4314 case PORT_C:
4315 return POWER_DOMAIN_PORT_DDI_C_4_LANES;
4316 case PORT_D:
4317 return POWER_DOMAIN_PORT_DDI_D_4_LANES;
4318 default:
4319 WARN_ON_ONCE(1);
4320 return POWER_DOMAIN_PORT_OTHER;
4321 }
4322 case INTEL_OUTPUT_ANALOG:
4323 return POWER_DOMAIN_PORT_CRT;
4324 case INTEL_OUTPUT_DSI:
4325 return POWER_DOMAIN_PORT_DSI;
4326 default:
4327 return POWER_DOMAIN_PORT_OTHER;
4328 }
4329}
4330
4331static unsigned long get_crtc_power_domains(struct drm_crtc *crtc)
4332{
4333 struct drm_device *dev = crtc->dev;
4334 struct intel_encoder *intel_encoder;
4335 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4336 enum pipe pipe = intel_crtc->pipe;
4337 bool pfit_enabled = intel_crtc->config.pch_pfit.enabled;
Imre Deak77d22dc2014-03-05 16:20:52 +02004338 unsigned long mask;
4339 enum transcoder transcoder;
4340
4341 transcoder = intel_pipe_to_cpu_transcoder(dev->dev_private, pipe);
4342
4343 mask = BIT(POWER_DOMAIN_PIPE(pipe));
4344 mask |= BIT(POWER_DOMAIN_TRANSCODER(transcoder));
4345 if (pfit_enabled)
4346 mask |= BIT(POWER_DOMAIN_PIPE_PANEL_FITTER(pipe));
4347
Imre Deak319be8a2014-03-04 19:22:57 +02004348 for_each_encoder_on_crtc(dev, crtc, intel_encoder)
4349 mask |= BIT(intel_display_port_power_domain(intel_encoder));
4350
Imre Deak77d22dc2014-03-05 16:20:52 +02004351 return mask;
4352}
4353
4354void intel_display_set_init_power(struct drm_i915_private *dev_priv,
4355 bool enable)
4356{
4357 if (dev_priv->power_domains.init_power_on == enable)
4358 return;
4359
4360 if (enable)
4361 intel_display_power_get(dev_priv, POWER_DOMAIN_INIT);
4362 else
4363 intel_display_power_put(dev_priv, POWER_DOMAIN_INIT);
4364
4365 dev_priv->power_domains.init_power_on = enable;
4366}
4367
4368static void modeset_update_crtc_power_domains(struct drm_device *dev)
4369{
4370 struct drm_i915_private *dev_priv = dev->dev_private;
4371 unsigned long pipe_domains[I915_MAX_PIPES] = { 0, };
4372 struct intel_crtc *crtc;
4373
4374 /*
4375 * First get all needed power domains, then put all unneeded, to avoid
4376 * any unnecessary toggling of the power wells.
4377 */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01004378 for_each_intel_crtc(dev, crtc) {
Imre Deak77d22dc2014-03-05 16:20:52 +02004379 enum intel_display_power_domain domain;
4380
4381 if (!crtc->base.enabled)
4382 continue;
4383
Imre Deak319be8a2014-03-04 19:22:57 +02004384 pipe_domains[crtc->pipe] = get_crtc_power_domains(&crtc->base);
Imre Deak77d22dc2014-03-05 16:20:52 +02004385
4386 for_each_power_domain(domain, pipe_domains[crtc->pipe])
4387 intel_display_power_get(dev_priv, domain);
4388 }
4389
Damien Lespiaud3fcc802014-05-13 23:32:22 +01004390 for_each_intel_crtc(dev, crtc) {
Imre Deak77d22dc2014-03-05 16:20:52 +02004391 enum intel_display_power_domain domain;
4392
4393 for_each_power_domain(domain, crtc->enabled_power_domains)
4394 intel_display_power_put(dev_priv, domain);
4395
4396 crtc->enabled_power_domains = pipe_domains[crtc->pipe];
4397 }
4398
4399 intel_display_set_init_power(dev_priv, false);
4400}
4401
Jesse Barnes586f49d2013-11-04 16:06:59 -08004402int valleyview_get_vco(struct drm_i915_private *dev_priv)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004403{
Jesse Barnes586f49d2013-11-04 16:06:59 -08004404 int hpll_freq, vco_freq[] = { 800, 1600, 2000, 2400 };
Jesse Barnes30a970c2013-11-04 13:48:12 -08004405
Jesse Barnes586f49d2013-11-04 16:06:59 -08004406 /* Obtain SKU information */
4407 mutex_lock(&dev_priv->dpio_lock);
4408 hpll_freq = vlv_cck_read(dev_priv, CCK_FUSE_REG) &
4409 CCK_FUSE_HPLL_FREQ_MASK;
4410 mutex_unlock(&dev_priv->dpio_lock);
Jesse Barnes30a970c2013-11-04 13:48:12 -08004411
Jesse Barnes586f49d2013-11-04 16:06:59 -08004412 return vco_freq[hpll_freq];
Jesse Barnes30a970c2013-11-04 13:48:12 -08004413}
4414
4415/* Adjust CDclk dividers to allow high res or save power if possible */
4416static void valleyview_set_cdclk(struct drm_device *dev, int cdclk)
4417{
4418 struct drm_i915_private *dev_priv = dev->dev_private;
4419 u32 val, cmd;
4420
Imre Deakd60c4472014-03-27 17:45:10 +02004421 WARN_ON(valleyview_cur_cdclk(dev_priv) != dev_priv->vlv_cdclk_freq);
4422 dev_priv->vlv_cdclk_freq = cdclk;
4423
Jesse Barnes30a970c2013-11-04 13:48:12 -08004424 if (cdclk >= 320) /* jump to highest voltage for 400MHz too */
4425 cmd = 2;
4426 else if (cdclk == 266)
4427 cmd = 1;
4428 else
4429 cmd = 0;
4430
4431 mutex_lock(&dev_priv->rps.hw_lock);
4432 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
4433 val &= ~DSPFREQGUAR_MASK;
4434 val |= (cmd << DSPFREQGUAR_SHIFT);
4435 vlv_punit_write(dev_priv, PUNIT_REG_DSPFREQ, val);
4436 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ) &
4437 DSPFREQSTAT_MASK) == (cmd << DSPFREQSTAT_SHIFT),
4438 50)) {
4439 DRM_ERROR("timed out waiting for CDclk change\n");
4440 }
4441 mutex_unlock(&dev_priv->rps.hw_lock);
4442
4443 if (cdclk == 400) {
4444 u32 divider, vco;
4445
4446 vco = valleyview_get_vco(dev_priv);
4447 divider = ((vco << 1) / cdclk) - 1;
4448
4449 mutex_lock(&dev_priv->dpio_lock);
4450 /* adjust cdclk divider */
4451 val = vlv_cck_read(dev_priv, CCK_DISPLAY_CLOCK_CONTROL);
4452 val &= ~0xf;
4453 val |= divider;
4454 vlv_cck_write(dev_priv, CCK_DISPLAY_CLOCK_CONTROL, val);
4455 mutex_unlock(&dev_priv->dpio_lock);
4456 }
4457
4458 mutex_lock(&dev_priv->dpio_lock);
4459 /* adjust self-refresh exit latency value */
4460 val = vlv_bunit_read(dev_priv, BUNIT_REG_BISOC);
4461 val &= ~0x7f;
4462
4463 /*
4464 * For high bandwidth configs, we set a higher latency in the bunit
4465 * so that the core display fetch happens in time to avoid underruns.
4466 */
4467 if (cdclk == 400)
4468 val |= 4500 / 250; /* 4.5 usec */
4469 else
4470 val |= 3000 / 250; /* 3.0 usec */
4471 vlv_bunit_write(dev_priv, BUNIT_REG_BISOC, val);
4472 mutex_unlock(&dev_priv->dpio_lock);
4473
4474 /* Since we changed the CDclk, we need to update the GMBUSFREQ too */
4475 intel_i2c_reset(dev);
4476}
4477
Imre Deakd60c4472014-03-27 17:45:10 +02004478int valleyview_cur_cdclk(struct drm_i915_private *dev_priv)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004479{
4480 int cur_cdclk, vco;
4481 int divider;
4482
4483 vco = valleyview_get_vco(dev_priv);
4484
4485 mutex_lock(&dev_priv->dpio_lock);
4486 divider = vlv_cck_read(dev_priv, CCK_DISPLAY_CLOCK_CONTROL);
4487 mutex_unlock(&dev_priv->dpio_lock);
4488
4489 divider &= 0xf;
4490
4491 cur_cdclk = (vco << 1) / (divider + 1);
4492
4493 return cur_cdclk;
4494}
4495
4496static int valleyview_calc_cdclk(struct drm_i915_private *dev_priv,
4497 int max_pixclk)
4498{
Jesse Barnes30a970c2013-11-04 13:48:12 -08004499 /*
4500 * Really only a few cases to deal with, as only 4 CDclks are supported:
4501 * 200MHz
4502 * 267MHz
4503 * 320MHz
4504 * 400MHz
4505 * So we check to see whether we're above 90% of the lower bin and
4506 * adjust if needed.
4507 */
4508 if (max_pixclk > 288000) {
4509 return 400;
4510 } else if (max_pixclk > 240000) {
4511 return 320;
4512 } else
4513 return 266;
4514 /* Looks like the 200MHz CDclk freq doesn't work on some configs */
4515}
4516
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +02004517/* compute the max pixel clock for new configuration */
4518static int intel_mode_max_pixclk(struct drm_i915_private *dev_priv)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004519{
4520 struct drm_device *dev = dev_priv->dev;
4521 struct intel_crtc *intel_crtc;
4522 int max_pixclk = 0;
4523
Damien Lespiaud3fcc802014-05-13 23:32:22 +01004524 for_each_intel_crtc(dev, intel_crtc) {
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +02004525 if (intel_crtc->new_enabled)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004526 max_pixclk = max(max_pixclk,
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +02004527 intel_crtc->new_config->adjusted_mode.crtc_clock);
Jesse Barnes30a970c2013-11-04 13:48:12 -08004528 }
4529
4530 return max_pixclk;
4531}
4532
4533static void valleyview_modeset_global_pipes(struct drm_device *dev,
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +02004534 unsigned *prepare_pipes)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004535{
4536 struct drm_i915_private *dev_priv = dev->dev_private;
4537 struct intel_crtc *intel_crtc;
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +02004538 int max_pixclk = intel_mode_max_pixclk(dev_priv);
Jesse Barnes30a970c2013-11-04 13:48:12 -08004539
Imre Deakd60c4472014-03-27 17:45:10 +02004540 if (valleyview_calc_cdclk(dev_priv, max_pixclk) ==
4541 dev_priv->vlv_cdclk_freq)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004542 return;
4543
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +02004544 /* disable/enable all currently active pipes while we change cdclk */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01004545 for_each_intel_crtc(dev, intel_crtc)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004546 if (intel_crtc->base.enabled)
4547 *prepare_pipes |= (1 << intel_crtc->pipe);
4548}
4549
4550static void valleyview_modeset_global_resources(struct drm_device *dev)
4551{
4552 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +02004553 int max_pixclk = intel_mode_max_pixclk(dev_priv);
Jesse Barnes30a970c2013-11-04 13:48:12 -08004554 int req_cdclk = valleyview_calc_cdclk(dev_priv, max_pixclk);
4555
Imre Deakd60c4472014-03-27 17:45:10 +02004556 if (req_cdclk != dev_priv->vlv_cdclk_freq)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004557 valleyview_set_cdclk(dev, req_cdclk);
Imre Deak77961eb2014-03-05 16:20:56 +02004558 modeset_update_crtc_power_domains(dev);
Jesse Barnes30a970c2013-11-04 13:48:12 -08004559}
4560
Jesse Barnes89b667f2013-04-18 14:51:36 -07004561static void valleyview_crtc_enable(struct drm_crtc *crtc)
4562{
4563 struct drm_device *dev = crtc->dev;
Daniel Vetter5b18e572014-04-24 23:55:06 +02004564 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes89b667f2013-04-18 14:51:36 -07004565 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4566 struct intel_encoder *encoder;
4567 int pipe = intel_crtc->pipe;
Daniel Vetter5b18e572014-04-24 23:55:06 +02004568 int plane = intel_crtc->plane;
Jani Nikula23538ef2013-08-27 15:12:22 +03004569 bool is_dsi;
Daniel Vetter5b18e572014-04-24 23:55:06 +02004570 u32 dspcntr;
Jesse Barnes89b667f2013-04-18 14:51:36 -07004571
4572 WARN_ON(!crtc->enabled);
4573
4574 if (intel_crtc->active)
4575 return;
4576
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02004577 vlv_prepare_pll(intel_crtc);
4578
Daniel Vetter5b18e572014-04-24 23:55:06 +02004579 /* Set up the display plane register */
4580 dspcntr = DISPPLANE_GAMMA_ENABLE;
4581
4582 if (intel_crtc->config.has_dp_encoder)
4583 intel_dp_set_m_n(intel_crtc);
4584
4585 intel_set_pipe_timings(intel_crtc);
4586
4587 /* pipesrc and dspsize control the size that is scaled from,
4588 * which should always be the user's requested size.
4589 */
4590 I915_WRITE(DSPSIZE(plane),
4591 ((intel_crtc->config.pipe_src_h - 1) << 16) |
4592 (intel_crtc->config.pipe_src_w - 1));
4593 I915_WRITE(DSPPOS(plane), 0);
4594
4595 i9xx_set_pipeconf(intel_crtc);
4596
4597 I915_WRITE(DSPCNTR(plane), dspcntr);
4598 POSTING_READ(DSPCNTR(plane));
4599
4600 dev_priv->display.update_primary_plane(crtc, crtc->primary->fb,
4601 crtc->x, crtc->y);
4602
Jesse Barnes89b667f2013-04-18 14:51:36 -07004603 intel_crtc->active = true;
Jesse Barnes89b667f2013-04-18 14:51:36 -07004604
Jesse Barnes89b667f2013-04-18 14:51:36 -07004605 for_each_encoder_on_crtc(dev, crtc, encoder)
4606 if (encoder->pre_pll_enable)
4607 encoder->pre_pll_enable(encoder);
4608
Jani Nikula23538ef2013-08-27 15:12:22 +03004609 is_dsi = intel_pipe_has_type(crtc, INTEL_OUTPUT_DSI);
4610
Chon Ming Lee9d556c92014-05-02 14:27:47 +03004611 if (!is_dsi) {
4612 if (IS_CHERRYVIEW(dev))
4613 chv_enable_pll(intel_crtc);
4614 else
4615 vlv_enable_pll(intel_crtc);
4616 }
Jesse Barnes89b667f2013-04-18 14:51:36 -07004617
4618 for_each_encoder_on_crtc(dev, crtc, encoder)
4619 if (encoder->pre_enable)
4620 encoder->pre_enable(encoder);
4621
Jesse Barnes2dd24552013-04-25 12:55:01 -07004622 i9xx_pfit_enable(intel_crtc);
4623
Ville Syrjälä63cbb072013-06-04 13:48:59 +03004624 intel_crtc_load_lut(crtc);
4625
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03004626 intel_update_watermarks(crtc);
Paulo Zanonie1fdc472014-01-17 13:51:12 -02004627 intel_enable_pipe(intel_crtc);
Ville Syrjälä2d9d2b02014-01-17 11:44:31 +02004628 intel_set_cpu_fifo_underrun_reporting(dev, pipe, true);
Daniel Vetterbe6a6f82014-04-15 18:41:22 +02004629
Jani Nikula50049452013-07-30 12:20:32 +03004630 for_each_encoder_on_crtc(dev, crtc, encoder)
4631 encoder->enable(encoder);
Ville Syrjälä9ab04602014-05-08 19:23:14 +03004632
4633 intel_crtc_enable_planes(crtc);
Jesse Barnes89b667f2013-04-18 14:51:36 -07004634}
4635
Daniel Vetterf13c2ef2014-04-24 23:55:10 +02004636static void i9xx_set_pll_dividers(struct intel_crtc *crtc)
4637{
4638 struct drm_device *dev = crtc->base.dev;
4639 struct drm_i915_private *dev_priv = dev->dev_private;
4640
4641 I915_WRITE(FP0(crtc->pipe), crtc->config.dpll_hw_state.fp0);
4642 I915_WRITE(FP1(crtc->pipe), crtc->config.dpll_hw_state.fp1);
4643}
4644
Jesse Barnes0b8765c62010-09-10 10:31:34 -07004645static void i9xx_crtc_enable(struct drm_crtc *crtc)
Zhenyu Wang2c072452009-06-05 15:38:42 +08004646{
4647 struct drm_device *dev = crtc->dev;
Daniel Vetter5b18e572014-04-24 23:55:06 +02004648 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -08004649 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02004650 struct intel_encoder *encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08004651 int pipe = intel_crtc->pipe;
Daniel Vetter5b18e572014-04-24 23:55:06 +02004652 int plane = intel_crtc->plane;
4653 u32 dspcntr;
Jesse Barnes79e53942008-11-07 14:24:08 -08004654
Daniel Vetter08a48462012-07-02 11:43:47 +02004655 WARN_ON(!crtc->enabled);
4656
Chris Wilsonf7abfe82010-09-13 14:19:16 +01004657 if (intel_crtc->active)
4658 return;
4659
Daniel Vetterf13c2ef2014-04-24 23:55:10 +02004660 i9xx_set_pll_dividers(intel_crtc);
4661
Daniel Vetter5b18e572014-04-24 23:55:06 +02004662 /* Set up the display plane register */
4663 dspcntr = DISPPLANE_GAMMA_ENABLE;
4664
4665 if (pipe == 0)
4666 dspcntr &= ~DISPPLANE_SEL_PIPE_MASK;
4667 else
4668 dspcntr |= DISPPLANE_SEL_PIPE_B;
4669
4670 if (intel_crtc->config.has_dp_encoder)
4671 intel_dp_set_m_n(intel_crtc);
4672
4673 intel_set_pipe_timings(intel_crtc);
4674
4675 /* pipesrc and dspsize control the size that is scaled from,
4676 * which should always be the user's requested size.
4677 */
4678 I915_WRITE(DSPSIZE(plane),
4679 ((intel_crtc->config.pipe_src_h - 1) << 16) |
4680 (intel_crtc->config.pipe_src_w - 1));
4681 I915_WRITE(DSPPOS(plane), 0);
4682
4683 i9xx_set_pipeconf(intel_crtc);
4684
4685 I915_WRITE(DSPCNTR(plane), dspcntr);
4686 POSTING_READ(DSPCNTR(plane));
4687
4688 dev_priv->display.update_primary_plane(crtc, crtc->primary->fb,
4689 crtc->x, crtc->y);
4690
Chris Wilsonf7abfe82010-09-13 14:19:16 +01004691 intel_crtc->active = true;
Chris Wilson6b383a72010-09-13 13:54:26 +01004692
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02004693 for_each_encoder_on_crtc(dev, crtc, encoder)
Mika Kuoppala9d6d9f12013-02-08 16:35:38 +02004694 if (encoder->pre_enable)
4695 encoder->pre_enable(encoder);
4696
Daniel Vetterf6736a12013-06-05 13:34:30 +02004697 i9xx_enable_pll(intel_crtc);
4698
Jesse Barnes2dd24552013-04-25 12:55:01 -07004699 i9xx_pfit_enable(intel_crtc);
4700
Ville Syrjälä63cbb072013-06-04 13:48:59 +03004701 intel_crtc_load_lut(crtc);
4702
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03004703 intel_update_watermarks(crtc);
Paulo Zanonie1fdc472014-01-17 13:51:12 -02004704 intel_enable_pipe(intel_crtc);
Ville Syrjälä2d9d2b02014-01-17 11:44:31 +02004705 intel_set_cpu_fifo_underrun_reporting(dev, pipe, true);
Daniel Vetterbe6a6f82014-04-15 18:41:22 +02004706
Daniel Vetterfa5c73b2012-07-01 23:24:36 +02004707 for_each_encoder_on_crtc(dev, crtc, encoder)
4708 encoder->enable(encoder);
Ville Syrjälä9ab04602014-05-08 19:23:14 +03004709
4710 intel_crtc_enable_planes(crtc);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07004711}
4712
Daniel Vetter87476d62013-04-11 16:29:06 +02004713static void i9xx_pfit_disable(struct intel_crtc *crtc)
4714{
4715 struct drm_device *dev = crtc->base.dev;
4716 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter328d8e82013-05-08 10:36:31 +02004717
4718 if (!crtc->config.gmch_pfit.control)
4719 return;
Daniel Vetter87476d62013-04-11 16:29:06 +02004720
4721 assert_pipe_disabled(dev_priv, crtc->pipe);
4722
Daniel Vetter328d8e82013-05-08 10:36:31 +02004723 DRM_DEBUG_DRIVER("disabling pfit, current: 0x%08x\n",
4724 I915_READ(PFIT_CONTROL));
4725 I915_WRITE(PFIT_CONTROL, 0);
Daniel Vetter87476d62013-04-11 16:29:06 +02004726}
4727
Jesse Barnes0b8765c62010-09-10 10:31:34 -07004728static void i9xx_crtc_disable(struct drm_crtc *crtc)
4729{
4730 struct drm_device *dev = crtc->dev;
4731 struct drm_i915_private *dev_priv = dev->dev_private;
4732 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02004733 struct intel_encoder *encoder;
Jesse Barnes0b8765c62010-09-10 10:31:34 -07004734 int pipe = intel_crtc->pipe;
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02004735
Chris Wilsonf7abfe82010-09-13 14:19:16 +01004736 if (!intel_crtc->active)
4737 return;
4738
Ville Syrjälä9ab04602014-05-08 19:23:14 +03004739 intel_crtc_disable_planes(crtc);
4740
Daniel Vetterea9d7582012-07-10 10:42:52 +02004741 for_each_encoder_on_crtc(dev, crtc, encoder)
4742 encoder->disable(encoder);
4743
Ville Syrjälä2d9d2b02014-01-17 11:44:31 +02004744 intel_set_cpu_fifo_underrun_reporting(dev, pipe, false);
Jesse Barnesb24e7172011-01-04 15:09:30 -08004745 intel_disable_pipe(dev_priv, pipe);
Mika Kuoppala24a1f162013-02-08 16:35:37 +02004746
Daniel Vetter87476d62013-04-11 16:29:06 +02004747 i9xx_pfit_disable(intel_crtc);
Mika Kuoppala24a1f162013-02-08 16:35:37 +02004748
Jesse Barnes89b667f2013-04-18 14:51:36 -07004749 for_each_encoder_on_crtc(dev, crtc, encoder)
4750 if (encoder->post_disable)
4751 encoder->post_disable(encoder);
4752
Chon Ming Lee076ed3b2014-04-09 13:28:17 +03004753 if (!intel_pipe_has_type(crtc, INTEL_OUTPUT_DSI)) {
4754 if (IS_CHERRYVIEW(dev))
4755 chv_disable_pll(dev_priv, pipe);
4756 else if (IS_VALLEYVIEW(dev))
4757 vlv_disable_pll(dev_priv, pipe);
4758 else
4759 i9xx_disable_pll(dev_priv, pipe);
4760 }
Jesse Barnes0b8765c62010-09-10 10:31:34 -07004761
Chris Wilsonf7abfe82010-09-13 14:19:16 +01004762 intel_crtc->active = false;
Ville Syrjälä46ba6142013-09-10 11:40:40 +03004763 intel_update_watermarks(crtc);
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03004764
Daniel Vetterefa96242014-04-24 23:55:02 +02004765 mutex_lock(&dev->struct_mutex);
Chris Wilson6b383a72010-09-13 13:54:26 +01004766 intel_update_fbc(dev);
Daniel Vetter71b1c372014-04-24 23:55:03 +02004767 intel_edp_psr_update(dev);
Daniel Vetterefa96242014-04-24 23:55:02 +02004768 mutex_unlock(&dev->struct_mutex);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07004769}
4770
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004771static void i9xx_crtc_off(struct drm_crtc *crtc)
4772{
4773}
4774
Daniel Vetter976f8a22012-07-08 22:34:21 +02004775static void intel_crtc_update_sarea(struct drm_crtc *crtc,
4776 bool enabled)
Zhenyu Wang2c072452009-06-05 15:38:42 +08004777{
4778 struct drm_device *dev = crtc->dev;
4779 struct drm_i915_master_private *master_priv;
4780 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4781 int pipe = intel_crtc->pipe;
Jesse Barnes79e53942008-11-07 14:24:08 -08004782
4783 if (!dev->primary->master)
4784 return;
4785
4786 master_priv = dev->primary->master->driver_priv;
4787 if (!master_priv->sarea_priv)
4788 return;
4789
Jesse Barnes79e53942008-11-07 14:24:08 -08004790 switch (pipe) {
4791 case 0:
4792 master_priv->sarea_priv->pipeA_w = enabled ? crtc->mode.hdisplay : 0;
4793 master_priv->sarea_priv->pipeA_h = enabled ? crtc->mode.vdisplay : 0;
4794 break;
4795 case 1:
4796 master_priv->sarea_priv->pipeB_w = enabled ? crtc->mode.hdisplay : 0;
4797 master_priv->sarea_priv->pipeB_h = enabled ? crtc->mode.vdisplay : 0;
4798 break;
4799 default:
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08004800 DRM_ERROR("Can't update pipe %c in SAREA\n", pipe_name(pipe));
Jesse Barnes79e53942008-11-07 14:24:08 -08004801 break;
4802 }
Jesse Barnes79e53942008-11-07 14:24:08 -08004803}
4804
Daniel Vetter976f8a22012-07-08 22:34:21 +02004805/**
4806 * Sets the power management mode of the pipe and plane.
4807 */
4808void intel_crtc_update_dpms(struct drm_crtc *crtc)
Chris Wilsoncdd59982010-09-08 16:30:16 +01004809{
Chris Wilsoncdd59982010-09-08 16:30:16 +01004810 struct drm_device *dev = crtc->dev;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004811 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter976f8a22012-07-08 22:34:21 +02004812 struct intel_encoder *intel_encoder;
4813 bool enable = false;
Chris Wilsoncdd59982010-09-08 16:30:16 +01004814
Daniel Vetter976f8a22012-07-08 22:34:21 +02004815 for_each_encoder_on_crtc(dev, crtc, intel_encoder)
4816 enable |= intel_encoder->connectors_active;
4817
4818 if (enable)
4819 dev_priv->display.crtc_enable(crtc);
4820 else
4821 dev_priv->display.crtc_disable(crtc);
4822
4823 intel_crtc_update_sarea(crtc, enable);
4824}
4825
Daniel Vetter976f8a22012-07-08 22:34:21 +02004826static void intel_crtc_disable(struct drm_crtc *crtc)
4827{
4828 struct drm_device *dev = crtc->dev;
4829 struct drm_connector *connector;
4830 struct drm_i915_private *dev_priv = dev->dev_private;
4831
4832 /* crtc should still be enabled when we disable it. */
4833 WARN_ON(!crtc->enabled);
4834
4835 dev_priv->display.crtc_disable(crtc);
4836 intel_crtc_update_sarea(crtc, false);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004837 dev_priv->display.off(crtc);
4838
Chris Wilson931872f2012-01-16 23:01:13 +00004839 assert_plane_disabled(dev->dev_private, to_intel_crtc(crtc)->plane);
Jani Nikula93ce0ba2013-09-13 11:03:08 +03004840 assert_cursor_disabled(dev_priv, to_intel_crtc(crtc)->pipe);
Chris Wilson931872f2012-01-16 23:01:13 +00004841 assert_pipe_disabled(dev->dev_private, to_intel_crtc(crtc)->pipe);
Chris Wilsoncdd59982010-09-08 16:30:16 +01004842
Matt Roperf4510a22014-04-01 15:22:40 -07004843 if (crtc->primary->fb) {
Chris Wilsoncdd59982010-09-08 16:30:16 +01004844 mutex_lock(&dev->struct_mutex);
Matt Roperf4510a22014-04-01 15:22:40 -07004845 intel_unpin_fb_obj(to_intel_framebuffer(crtc->primary->fb)->obj);
Chris Wilsoncdd59982010-09-08 16:30:16 +01004846 mutex_unlock(&dev->struct_mutex);
Matt Roperf4510a22014-04-01 15:22:40 -07004847 crtc->primary->fb = NULL;
Daniel Vetter976f8a22012-07-08 22:34:21 +02004848 }
4849
4850 /* Update computed state. */
4851 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
4852 if (!connector->encoder || !connector->encoder->crtc)
4853 continue;
4854
4855 if (connector->encoder->crtc != crtc)
4856 continue;
4857
4858 connector->dpms = DRM_MODE_DPMS_OFF;
4859 to_intel_encoder(connector->encoder)->connectors_active = false;
Chris Wilsoncdd59982010-09-08 16:30:16 +01004860 }
4861}
4862
Chris Wilsonea5b2132010-08-04 13:50:23 +01004863void intel_encoder_destroy(struct drm_encoder *encoder)
4864{
Chris Wilson4ef69c72010-09-09 15:14:28 +01004865 struct intel_encoder *intel_encoder = to_intel_encoder(encoder);
Chris Wilsonea5b2132010-08-04 13:50:23 +01004866
Chris Wilsonea5b2132010-08-04 13:50:23 +01004867 drm_encoder_cleanup(encoder);
4868 kfree(intel_encoder);
4869}
4870
Damien Lespiau92373292013-08-08 22:28:57 +01004871/* Simple dpms helper for encoders with just one connector, no cloning and only
Daniel Vetter5ab432e2012-06-30 08:59:56 +02004872 * one kind of off state. It clamps all !ON modes to fully OFF and changes the
4873 * state of the entire output pipe. */
Damien Lespiau92373292013-08-08 22:28:57 +01004874static void intel_encoder_dpms(struct intel_encoder *encoder, int mode)
Daniel Vetter5ab432e2012-06-30 08:59:56 +02004875{
4876 if (mode == DRM_MODE_DPMS_ON) {
4877 encoder->connectors_active = true;
4878
Daniel Vetterb2cabb02012-07-01 22:42:24 +02004879 intel_crtc_update_dpms(encoder->base.crtc);
Daniel Vetter5ab432e2012-06-30 08:59:56 +02004880 } else {
4881 encoder->connectors_active = false;
4882
Daniel Vetterb2cabb02012-07-01 22:42:24 +02004883 intel_crtc_update_dpms(encoder->base.crtc);
Daniel Vetter5ab432e2012-06-30 08:59:56 +02004884 }
4885}
4886
Daniel Vetter0a91ca22012-07-02 21:54:27 +02004887/* Cross check the actual hw state with our own modeset state tracking (and it's
4888 * internal consistency). */
Daniel Vetterb9805142012-08-31 17:37:33 +02004889static void intel_connector_check_state(struct intel_connector *connector)
Daniel Vetter0a91ca22012-07-02 21:54:27 +02004890{
4891 if (connector->get_hw_state(connector)) {
4892 struct intel_encoder *encoder = connector->encoder;
4893 struct drm_crtc *crtc;
4894 bool encoder_enabled;
4895 enum pipe pipe;
4896
4897 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
4898 connector->base.base.id,
4899 drm_get_connector_name(&connector->base));
4900
4901 WARN(connector->base.dpms == DRM_MODE_DPMS_OFF,
4902 "wrong connector dpms state\n");
4903 WARN(connector->base.encoder != &encoder->base,
4904 "active connector not linked to encoder\n");
4905 WARN(!encoder->connectors_active,
4906 "encoder->connectors_active not set\n");
4907
4908 encoder_enabled = encoder->get_hw_state(encoder, &pipe);
4909 WARN(!encoder_enabled, "encoder not enabled\n");
4910 if (WARN_ON(!encoder->base.crtc))
4911 return;
4912
4913 crtc = encoder->base.crtc;
4914
4915 WARN(!crtc->enabled, "crtc not enabled\n");
4916 WARN(!to_intel_crtc(crtc)->active, "crtc not active\n");
4917 WARN(pipe != to_intel_crtc(crtc)->pipe,
4918 "encoder active on the wrong pipe\n");
4919 }
4920}
4921
Daniel Vetter5ab432e2012-06-30 08:59:56 +02004922/* Even simpler default implementation, if there's really no special case to
4923 * consider. */
4924void intel_connector_dpms(struct drm_connector *connector, int mode)
4925{
Daniel Vetter5ab432e2012-06-30 08:59:56 +02004926 /* All the simple cases only support two dpms states. */
4927 if (mode != DRM_MODE_DPMS_ON)
4928 mode = DRM_MODE_DPMS_OFF;
4929
4930 if (mode == connector->dpms)
4931 return;
4932
4933 connector->dpms = mode;
4934
4935 /* Only need to change hw state when actually enabled */
Chris Wilsonc9976dc2013-09-29 19:15:07 +01004936 if (connector->encoder)
4937 intel_encoder_dpms(to_intel_encoder(connector->encoder), mode);
Daniel Vetter0a91ca22012-07-02 21:54:27 +02004938
Daniel Vetterb9805142012-08-31 17:37:33 +02004939 intel_modeset_check_state(connector->dev);
Daniel Vetter5ab432e2012-06-30 08:59:56 +02004940}
4941
Daniel Vetterf0947c32012-07-02 13:10:34 +02004942/* Simple connector->get_hw_state implementation for encoders that support only
4943 * one connector and no cloning and hence the encoder state determines the state
4944 * of the connector. */
4945bool intel_connector_get_hw_state(struct intel_connector *connector)
4946{
Daniel Vetter24929352012-07-02 20:28:59 +02004947 enum pipe pipe = 0;
Daniel Vetterf0947c32012-07-02 13:10:34 +02004948 struct intel_encoder *encoder = connector->encoder;
4949
4950 return encoder->get_hw_state(encoder, &pipe);
4951}
4952
Daniel Vetter1857e1d2013-04-29 19:34:16 +02004953static bool ironlake_check_fdi_lanes(struct drm_device *dev, enum pipe pipe,
4954 struct intel_crtc_config *pipe_config)
4955{
4956 struct drm_i915_private *dev_priv = dev->dev_private;
4957 struct intel_crtc *pipe_B_crtc =
4958 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[PIPE_B]);
4959
4960 DRM_DEBUG_KMS("checking fdi config on pipe %c, lanes %i\n",
4961 pipe_name(pipe), pipe_config->fdi_lanes);
4962 if (pipe_config->fdi_lanes > 4) {
4963 DRM_DEBUG_KMS("invalid fdi lane config on pipe %c: %i lanes\n",
4964 pipe_name(pipe), pipe_config->fdi_lanes);
4965 return false;
4966 }
4967
Paulo Zanonibafb6552013-11-02 21:07:44 -07004968 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Daniel Vetter1857e1d2013-04-29 19:34:16 +02004969 if (pipe_config->fdi_lanes > 2) {
4970 DRM_DEBUG_KMS("only 2 lanes on haswell, required: %i lanes\n",
4971 pipe_config->fdi_lanes);
4972 return false;
4973 } else {
4974 return true;
4975 }
4976 }
4977
4978 if (INTEL_INFO(dev)->num_pipes == 2)
4979 return true;
4980
4981 /* Ivybridge 3 pipe is really complicated */
4982 switch (pipe) {
4983 case PIPE_A:
4984 return true;
4985 case PIPE_B:
4986 if (dev_priv->pipe_to_crtc_mapping[PIPE_C]->enabled &&
4987 pipe_config->fdi_lanes > 2) {
4988 DRM_DEBUG_KMS("invalid shared fdi lane config on pipe %c: %i lanes\n",
4989 pipe_name(pipe), pipe_config->fdi_lanes);
4990 return false;
4991 }
4992 return true;
4993 case PIPE_C:
Daniel Vetter1e833f42013-02-19 22:31:57 +01004994 if (!pipe_has_enabled_pch(pipe_B_crtc) ||
Daniel Vetter1857e1d2013-04-29 19:34:16 +02004995 pipe_B_crtc->config.fdi_lanes <= 2) {
4996 if (pipe_config->fdi_lanes > 2) {
4997 DRM_DEBUG_KMS("invalid shared fdi lane config on pipe %c: %i lanes\n",
4998 pipe_name(pipe), pipe_config->fdi_lanes);
4999 return false;
5000 }
5001 } else {
5002 DRM_DEBUG_KMS("fdi link B uses too many lanes to enable link C\n");
5003 return false;
5004 }
5005 return true;
5006 default:
5007 BUG();
5008 }
5009}
5010
Daniel Vettere29c22c2013-02-21 00:00:16 +01005011#define RETRY 1
5012static int ironlake_fdi_compute_config(struct intel_crtc *intel_crtc,
5013 struct intel_crtc_config *pipe_config)
Daniel Vetter877d48d2013-04-19 11:24:43 +02005014{
Daniel Vetter1857e1d2013-04-29 19:34:16 +02005015 struct drm_device *dev = intel_crtc->base.dev;
Daniel Vetter877d48d2013-04-19 11:24:43 +02005016 struct drm_display_mode *adjusted_mode = &pipe_config->adjusted_mode;
Daniel Vetterff9a6752013-06-01 17:16:21 +02005017 int lane, link_bw, fdi_dotclock;
Daniel Vettere29c22c2013-02-21 00:00:16 +01005018 bool setup_ok, needs_recompute = false;
Daniel Vetter877d48d2013-04-19 11:24:43 +02005019
Daniel Vettere29c22c2013-02-21 00:00:16 +01005020retry:
Daniel Vetter877d48d2013-04-19 11:24:43 +02005021 /* FDI is a binary signal running at ~2.7GHz, encoding
5022 * each output octet as 10 bits. The actual frequency
5023 * is stored as a divider into a 100MHz clock, and the
5024 * mode pixel clock is stored in units of 1KHz.
5025 * Hence the bw of each lane in terms of the mode signal
5026 * is:
5027 */
5028 link_bw = intel_fdi_link_freq(dev) * MHz(100)/KHz(1)/10;
5029
Damien Lespiau241bfc32013-09-25 16:45:37 +01005030 fdi_dotclock = adjusted_mode->crtc_clock;
Daniel Vetter877d48d2013-04-19 11:24:43 +02005031
Daniel Vetter2bd89a02013-06-01 17:16:19 +02005032 lane = ironlake_get_lanes_required(fdi_dotclock, link_bw,
Daniel Vetter877d48d2013-04-19 11:24:43 +02005033 pipe_config->pipe_bpp);
5034
5035 pipe_config->fdi_lanes = lane;
5036
Daniel Vetter2bd89a02013-06-01 17:16:19 +02005037 intel_link_compute_m_n(pipe_config->pipe_bpp, lane, fdi_dotclock,
Daniel Vetter877d48d2013-04-19 11:24:43 +02005038 link_bw, &pipe_config->fdi_m_n);
Daniel Vetter1857e1d2013-04-29 19:34:16 +02005039
Daniel Vettere29c22c2013-02-21 00:00:16 +01005040 setup_ok = ironlake_check_fdi_lanes(intel_crtc->base.dev,
5041 intel_crtc->pipe, pipe_config);
5042 if (!setup_ok && pipe_config->pipe_bpp > 6*3) {
5043 pipe_config->pipe_bpp -= 2*3;
5044 DRM_DEBUG_KMS("fdi link bw constraint, reducing pipe bpp to %i\n",
5045 pipe_config->pipe_bpp);
5046 needs_recompute = true;
5047 pipe_config->bw_constrained = true;
5048
5049 goto retry;
5050 }
5051
5052 if (needs_recompute)
5053 return RETRY;
5054
5055 return setup_ok ? 0 : -EINVAL;
Daniel Vetter877d48d2013-04-19 11:24:43 +02005056}
5057
Paulo Zanoni42db64e2013-05-31 16:33:22 -03005058static void hsw_compute_ips_config(struct intel_crtc *crtc,
5059 struct intel_crtc_config *pipe_config)
5060{
Jani Nikulad330a952014-01-21 11:24:25 +02005061 pipe_config->ips_enabled = i915.enable_ips &&
Paulo Zanoni3c4ca582013-05-31 16:33:23 -03005062 hsw_crtc_supports_ips(crtc) &&
Jesse Barnesb6dfdc92013-07-25 10:06:50 -07005063 pipe_config->pipe_bpp <= 24;
Paulo Zanoni42db64e2013-05-31 16:33:22 -03005064}
5065
Daniel Vettera43f6e02013-06-07 23:10:32 +02005066static int intel_crtc_compute_config(struct intel_crtc *crtc,
Daniel Vettere29c22c2013-02-21 00:00:16 +01005067 struct intel_crtc_config *pipe_config)
Jesse Barnes79e53942008-11-07 14:24:08 -08005068{
Daniel Vettera43f6e02013-06-07 23:10:32 +02005069 struct drm_device *dev = crtc->base.dev;
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01005070 struct drm_display_mode *adjusted_mode = &pipe_config->adjusted_mode;
Chris Wilson89749352010-09-12 18:25:19 +01005071
Ville Syrjäläad3a4472013-09-04 18:30:04 +03005072 /* FIXME should check pixel clock limits on all platforms */
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03005073 if (INTEL_INFO(dev)->gen < 4) {
5074 struct drm_i915_private *dev_priv = dev->dev_private;
5075 int clock_limit =
5076 dev_priv->display.get_display_clock_speed(dev);
5077
5078 /*
5079 * Enable pixel doubling when the dot clock
5080 * is > 90% of the (display) core speed.
5081 *
Ville Syrjäläb397c962013-09-04 18:30:06 +03005082 * GDG double wide on either pipe,
5083 * otherwise pipe A only.
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03005084 */
Ville Syrjäläb397c962013-09-04 18:30:06 +03005085 if ((crtc->pipe == PIPE_A || IS_I915G(dev)) &&
Damien Lespiau241bfc32013-09-25 16:45:37 +01005086 adjusted_mode->crtc_clock > clock_limit * 9 / 10) {
Ville Syrjäläad3a4472013-09-04 18:30:04 +03005087 clock_limit *= 2;
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03005088 pipe_config->double_wide = true;
Ville Syrjäläad3a4472013-09-04 18:30:04 +03005089 }
5090
Damien Lespiau241bfc32013-09-25 16:45:37 +01005091 if (adjusted_mode->crtc_clock > clock_limit * 9 / 10)
Daniel Vettere29c22c2013-02-21 00:00:16 +01005092 return -EINVAL;
Zhenyu Wang2c072452009-06-05 15:38:42 +08005093 }
Chris Wilson89749352010-09-12 18:25:19 +01005094
Ville Syrjälä1d1d0e22013-09-04 18:30:05 +03005095 /*
5096 * Pipe horizontal size must be even in:
5097 * - DVO ganged mode
5098 * - LVDS dual channel mode
5099 * - Double wide pipe
5100 */
5101 if ((intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_LVDS) &&
5102 intel_is_dual_link_lvds(dev)) || pipe_config->double_wide)
5103 pipe_config->pipe_src_w &= ~1;
5104
Damien Lespiau8693a822013-05-03 18:48:11 +01005105 /* Cantiga+ cannot handle modes with a hsync front porch of 0.
5106 * WaPruneModeWithIncorrectHsyncOffset:ctg,elk,ilk,snb,ivb,vlv,hsw.
Chris Wilson44f46b422012-06-21 13:19:59 +03005107 */
5108 if ((INTEL_INFO(dev)->gen > 4 || IS_G4X(dev)) &&
5109 adjusted_mode->hsync_start == adjusted_mode->hdisplay)
Daniel Vettere29c22c2013-02-21 00:00:16 +01005110 return -EINVAL;
Chris Wilson44f46b422012-06-21 13:19:59 +03005111
Daniel Vetterbd080ee2013-04-17 20:01:39 +02005112 if ((IS_G4X(dev) || IS_VALLEYVIEW(dev)) && pipe_config->pipe_bpp > 10*3) {
Daniel Vetter5d2d38d2013-03-27 00:45:01 +01005113 pipe_config->pipe_bpp = 10*3; /* 12bpc is gen5+ */
Daniel Vetterbd080ee2013-04-17 20:01:39 +02005114 } else if (INTEL_INFO(dev)->gen <= 4 && pipe_config->pipe_bpp > 8*3) {
Daniel Vetter5d2d38d2013-03-27 00:45:01 +01005115 /* only a 8bpc pipe, with 6bpc dither through the panel fitter
5116 * for lvds. */
5117 pipe_config->pipe_bpp = 8*3;
5118 }
5119
Damien Lespiauf5adf942013-06-24 18:29:34 +01005120 if (HAS_IPS(dev))
Daniel Vettera43f6e02013-06-07 23:10:32 +02005121 hsw_compute_ips_config(crtc, pipe_config);
5122
5123 /* XXX: PCH clock sharing is done in ->mode_set, so make sure the old
5124 * clock survives for now. */
5125 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev))
5126 pipe_config->shared_dpll = crtc->config.shared_dpll;
Paulo Zanoni42db64e2013-05-31 16:33:22 -03005127
Daniel Vetter877d48d2013-04-19 11:24:43 +02005128 if (pipe_config->has_pch_encoder)
Daniel Vettera43f6e02013-06-07 23:10:32 +02005129 return ironlake_fdi_compute_config(crtc, pipe_config);
Daniel Vetter877d48d2013-04-19 11:24:43 +02005130
Daniel Vettere29c22c2013-02-21 00:00:16 +01005131 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08005132}
5133
Jesse Barnes25eb05fc2012-03-28 13:39:23 -07005134static int valleyview_get_display_clock_speed(struct drm_device *dev)
5135{
5136 return 400000; /* FIXME */
5137}
5138
Jesse Barnese70236a2009-09-21 10:42:27 -07005139static int i945_get_display_clock_speed(struct drm_device *dev)
Jesse Barnes79e53942008-11-07 14:24:08 -08005140{
Jesse Barnese70236a2009-09-21 10:42:27 -07005141 return 400000;
5142}
Jesse Barnes79e53942008-11-07 14:24:08 -08005143
Jesse Barnese70236a2009-09-21 10:42:27 -07005144static int i915_get_display_clock_speed(struct drm_device *dev)
5145{
5146 return 333000;
5147}
Jesse Barnes79e53942008-11-07 14:24:08 -08005148
Jesse Barnese70236a2009-09-21 10:42:27 -07005149static int i9xx_misc_get_display_clock_speed(struct drm_device *dev)
5150{
5151 return 200000;
5152}
Jesse Barnes79e53942008-11-07 14:24:08 -08005153
Daniel Vetter257a7ff2013-07-26 08:35:42 +02005154static int pnv_get_display_clock_speed(struct drm_device *dev)
5155{
5156 u16 gcfgc = 0;
5157
5158 pci_read_config_word(dev->pdev, GCFGC, &gcfgc);
5159
5160 switch (gcfgc & GC_DISPLAY_CLOCK_MASK) {
5161 case GC_DISPLAY_CLOCK_267_MHZ_PNV:
5162 return 267000;
5163 case GC_DISPLAY_CLOCK_333_MHZ_PNV:
5164 return 333000;
5165 case GC_DISPLAY_CLOCK_444_MHZ_PNV:
5166 return 444000;
5167 case GC_DISPLAY_CLOCK_200_MHZ_PNV:
5168 return 200000;
5169 default:
5170 DRM_ERROR("Unknown pnv display core clock 0x%04x\n", gcfgc);
5171 case GC_DISPLAY_CLOCK_133_MHZ_PNV:
5172 return 133000;
5173 case GC_DISPLAY_CLOCK_167_MHZ_PNV:
5174 return 167000;
5175 }
5176}
5177
Jesse Barnese70236a2009-09-21 10:42:27 -07005178static int i915gm_get_display_clock_speed(struct drm_device *dev)
5179{
5180 u16 gcfgc = 0;
5181
5182 pci_read_config_word(dev->pdev, GCFGC, &gcfgc);
5183
5184 if (gcfgc & GC_LOW_FREQUENCY_ENABLE)
Jesse Barnes79e53942008-11-07 14:24:08 -08005185 return 133000;
Jesse Barnese70236a2009-09-21 10:42:27 -07005186 else {
5187 switch (gcfgc & GC_DISPLAY_CLOCK_MASK) {
5188 case GC_DISPLAY_CLOCK_333_MHZ:
5189 return 333000;
5190 default:
5191 case GC_DISPLAY_CLOCK_190_200_MHZ:
5192 return 190000;
5193 }
5194 }
5195}
Jesse Barnes79e53942008-11-07 14:24:08 -08005196
Jesse Barnese70236a2009-09-21 10:42:27 -07005197static int i865_get_display_clock_speed(struct drm_device *dev)
5198{
5199 return 266000;
5200}
5201
5202static int i855_get_display_clock_speed(struct drm_device *dev)
5203{
5204 u16 hpllcc = 0;
5205 /* Assume that the hardware is in the high speed state. This
5206 * should be the default.
5207 */
5208 switch (hpllcc & GC_CLOCK_CONTROL_MASK) {
5209 case GC_CLOCK_133_200:
5210 case GC_CLOCK_100_200:
5211 return 200000;
5212 case GC_CLOCK_166_250:
5213 return 250000;
5214 case GC_CLOCK_100_133:
5215 return 133000;
5216 }
5217
5218 /* Shouldn't happen */
5219 return 0;
5220}
5221
5222static int i830_get_display_clock_speed(struct drm_device *dev)
5223{
5224 return 133000;
Jesse Barnes79e53942008-11-07 14:24:08 -08005225}
5226
Zhenyu Wang2c072452009-06-05 15:38:42 +08005227static void
Ville Syrjäläa65851a2013-04-23 15:03:34 +03005228intel_reduce_m_n_ratio(uint32_t *num, uint32_t *den)
Zhenyu Wang2c072452009-06-05 15:38:42 +08005229{
Ville Syrjäläa65851a2013-04-23 15:03:34 +03005230 while (*num > DATA_LINK_M_N_MASK ||
5231 *den > DATA_LINK_M_N_MASK) {
Zhenyu Wang2c072452009-06-05 15:38:42 +08005232 *num >>= 1;
5233 *den >>= 1;
5234 }
5235}
5236
Ville Syrjäläa65851a2013-04-23 15:03:34 +03005237static void compute_m_n(unsigned int m, unsigned int n,
5238 uint32_t *ret_m, uint32_t *ret_n)
5239{
5240 *ret_n = min_t(unsigned int, roundup_pow_of_two(n), DATA_LINK_N_MAX);
5241 *ret_m = div_u64((uint64_t) m * *ret_n, n);
5242 intel_reduce_m_n_ratio(ret_m, ret_n);
5243}
5244
Daniel Vettere69d0bc2012-11-29 15:59:36 +01005245void
5246intel_link_compute_m_n(int bits_per_pixel, int nlanes,
5247 int pixel_clock, int link_clock,
5248 struct intel_link_m_n *m_n)
Zhenyu Wang2c072452009-06-05 15:38:42 +08005249{
Daniel Vettere69d0bc2012-11-29 15:59:36 +01005250 m_n->tu = 64;
Ville Syrjäläa65851a2013-04-23 15:03:34 +03005251
5252 compute_m_n(bits_per_pixel * pixel_clock,
5253 link_clock * nlanes * 8,
5254 &m_n->gmch_m, &m_n->gmch_n);
5255
5256 compute_m_n(pixel_clock, link_clock,
5257 &m_n->link_m, &m_n->link_n);
Zhenyu Wang2c072452009-06-05 15:38:42 +08005258}
5259
Chris Wilsona7615032011-01-12 17:04:08 +00005260static inline bool intel_panel_use_ssc(struct drm_i915_private *dev_priv)
5261{
Jani Nikulad330a952014-01-21 11:24:25 +02005262 if (i915.panel_use_ssc >= 0)
5263 return i915.panel_use_ssc != 0;
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03005264 return dev_priv->vbt.lvds_use_ssc
Keith Packard435793d2011-07-12 14:56:22 -07005265 && !(dev_priv->quirks & QUIRK_LVDS_SSC_DISABLE);
Chris Wilsona7615032011-01-12 17:04:08 +00005266}
5267
Jesse Barnesc65d77d2011-12-15 12:30:36 -08005268static int i9xx_get_refclk(struct drm_crtc *crtc, int num_connectors)
5269{
5270 struct drm_device *dev = crtc->dev;
5271 struct drm_i915_private *dev_priv = dev->dev_private;
5272 int refclk;
5273
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005274 if (IS_VALLEYVIEW(dev)) {
Daniel Vetter9a0ea492013-09-16 11:29:34 +02005275 refclk = 100000;
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005276 } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) &&
Jesse Barnesc65d77d2011-12-15 12:30:36 -08005277 intel_panel_use_ssc(dev_priv) && num_connectors < 2) {
Ville Syrjäläe91e9412013-12-09 18:54:16 +02005278 refclk = dev_priv->vbt.lvds_ssc_freq;
5279 DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n", refclk);
Jesse Barnesc65d77d2011-12-15 12:30:36 -08005280 } else if (!IS_GEN2(dev)) {
5281 refclk = 96000;
5282 } else {
5283 refclk = 48000;
5284 }
5285
5286 return refclk;
5287}
5288
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005289static uint32_t pnv_dpll_compute_fp(struct dpll *dpll)
Jesse Barnesc65d77d2011-12-15 12:30:36 -08005290{
Daniel Vetter7df00d72013-05-21 21:54:55 +02005291 return (1 << dpll->n) << 16 | dpll->m2;
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005292}
Daniel Vetterf47709a2013-03-28 10:42:02 +01005293
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005294static uint32_t i9xx_dpll_compute_fp(struct dpll *dpll)
5295{
5296 return dpll->n << 16 | dpll->m1 << 8 | dpll->m2;
Jesse Barnesc65d77d2011-12-15 12:30:36 -08005297}
5298
Daniel Vetterf47709a2013-03-28 10:42:02 +01005299static void i9xx_update_pll_dividers(struct intel_crtc *crtc,
Jesse Barnesa7516a02011-12-15 12:30:37 -08005300 intel_clock_t *reduced_clock)
5301{
Daniel Vetterf47709a2013-03-28 10:42:02 +01005302 struct drm_device *dev = crtc->base.dev;
Jesse Barnesa7516a02011-12-15 12:30:37 -08005303 u32 fp, fp2 = 0;
5304
5305 if (IS_PINEVIEW(dev)) {
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005306 fp = pnv_dpll_compute_fp(&crtc->config.dpll);
Jesse Barnesa7516a02011-12-15 12:30:37 -08005307 if (reduced_clock)
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005308 fp2 = pnv_dpll_compute_fp(reduced_clock);
Jesse Barnesa7516a02011-12-15 12:30:37 -08005309 } else {
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005310 fp = i9xx_dpll_compute_fp(&crtc->config.dpll);
Jesse Barnesa7516a02011-12-15 12:30:37 -08005311 if (reduced_clock)
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005312 fp2 = i9xx_dpll_compute_fp(reduced_clock);
Jesse Barnesa7516a02011-12-15 12:30:37 -08005313 }
5314
Daniel Vetter8bcc2792013-06-05 13:34:28 +02005315 crtc->config.dpll_hw_state.fp0 = fp;
Jesse Barnesa7516a02011-12-15 12:30:37 -08005316
Daniel Vetterf47709a2013-03-28 10:42:02 +01005317 crtc->lowfreq_avail = false;
5318 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_LVDS) &&
Jani Nikulad330a952014-01-21 11:24:25 +02005319 reduced_clock && i915.powersave) {
Daniel Vetter8bcc2792013-06-05 13:34:28 +02005320 crtc->config.dpll_hw_state.fp1 = fp2;
Daniel Vetterf47709a2013-03-28 10:42:02 +01005321 crtc->lowfreq_avail = true;
Jesse Barnesa7516a02011-12-15 12:30:37 -08005322 } else {
Daniel Vetter8bcc2792013-06-05 13:34:28 +02005323 crtc->config.dpll_hw_state.fp1 = fp;
Jesse Barnesa7516a02011-12-15 12:30:37 -08005324 }
5325}
5326
Chon Ming Lee5e69f972013-09-05 20:41:49 +08005327static void vlv_pllb_recal_opamp(struct drm_i915_private *dev_priv, enum pipe
5328 pipe)
Jesse Barnes89b667f2013-04-18 14:51:36 -07005329{
5330 u32 reg_val;
5331
5332 /*
5333 * PLLB opamp always calibrates to max value of 0x3f, force enable it
5334 * and set it to a reasonable value instead.
5335 */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005336 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW9(1));
Jesse Barnes89b667f2013-04-18 14:51:36 -07005337 reg_val &= 0xffffff00;
5338 reg_val |= 0x00000030;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005339 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9(1), reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005340
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005341 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_REF_DW13);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005342 reg_val &= 0x8cffffff;
5343 reg_val = 0x8c000000;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005344 vlv_dpio_write(dev_priv, pipe, VLV_REF_DW13, reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005345
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005346 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW9(1));
Jesse Barnes89b667f2013-04-18 14:51:36 -07005347 reg_val &= 0xffffff00;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005348 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9(1), reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005349
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005350 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_REF_DW13);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005351 reg_val &= 0x00ffffff;
5352 reg_val |= 0xb0000000;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005353 vlv_dpio_write(dev_priv, pipe, VLV_REF_DW13, reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005354}
5355
Daniel Vetterb5518422013-05-03 11:49:48 +02005356static void intel_pch_transcoder_set_m_n(struct intel_crtc *crtc,
5357 struct intel_link_m_n *m_n)
5358{
5359 struct drm_device *dev = crtc->base.dev;
5360 struct drm_i915_private *dev_priv = dev->dev_private;
5361 int pipe = crtc->pipe;
5362
Daniel Vettere3b95f12013-05-03 11:49:49 +02005363 I915_WRITE(PCH_TRANS_DATA_M1(pipe), TU_SIZE(m_n->tu) | m_n->gmch_m);
5364 I915_WRITE(PCH_TRANS_DATA_N1(pipe), m_n->gmch_n);
5365 I915_WRITE(PCH_TRANS_LINK_M1(pipe), m_n->link_m);
5366 I915_WRITE(PCH_TRANS_LINK_N1(pipe), m_n->link_n);
Daniel Vetterb5518422013-05-03 11:49:48 +02005367}
5368
5369static void intel_cpu_transcoder_set_m_n(struct intel_crtc *crtc,
5370 struct intel_link_m_n *m_n)
5371{
5372 struct drm_device *dev = crtc->base.dev;
5373 struct drm_i915_private *dev_priv = dev->dev_private;
5374 int pipe = crtc->pipe;
5375 enum transcoder transcoder = crtc->config.cpu_transcoder;
5376
5377 if (INTEL_INFO(dev)->gen >= 5) {
5378 I915_WRITE(PIPE_DATA_M1(transcoder), TU_SIZE(m_n->tu) | m_n->gmch_m);
5379 I915_WRITE(PIPE_DATA_N1(transcoder), m_n->gmch_n);
5380 I915_WRITE(PIPE_LINK_M1(transcoder), m_n->link_m);
5381 I915_WRITE(PIPE_LINK_N1(transcoder), m_n->link_n);
5382 } else {
Daniel Vettere3b95f12013-05-03 11:49:49 +02005383 I915_WRITE(PIPE_DATA_M_G4X(pipe), TU_SIZE(m_n->tu) | m_n->gmch_m);
5384 I915_WRITE(PIPE_DATA_N_G4X(pipe), m_n->gmch_n);
5385 I915_WRITE(PIPE_LINK_M_G4X(pipe), m_n->link_m);
5386 I915_WRITE(PIPE_LINK_N_G4X(pipe), m_n->link_n);
Daniel Vetterb5518422013-05-03 11:49:48 +02005387 }
5388}
5389
Daniel Vetter03afc4a2013-04-02 23:42:31 +02005390static void intel_dp_set_m_n(struct intel_crtc *crtc)
5391{
5392 if (crtc->config.has_pch_encoder)
5393 intel_pch_transcoder_set_m_n(crtc, &crtc->config.dp_m_n);
5394 else
5395 intel_cpu_transcoder_set_m_n(crtc, &crtc->config.dp_m_n);
5396}
5397
Daniel Vetterf47709a2013-03-28 10:42:02 +01005398static void vlv_update_pll(struct intel_crtc *crtc)
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005399{
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02005400 u32 dpll, dpll_md;
5401
5402 /*
5403 * Enable DPIO clock input. We should never disable the reference
5404 * clock for pipe B, since VGA hotplug / manual detection depends
5405 * on it.
5406 */
5407 dpll = DPLL_EXT_BUFFER_ENABLE_VLV | DPLL_REFA_CLK_ENABLE_VLV |
5408 DPLL_VGA_MODE_DIS | DPLL_INTEGRATED_CLOCK_VLV;
5409 /* We should never disable this, set it here for state tracking */
5410 if (crtc->pipe == PIPE_B)
5411 dpll |= DPLL_INTEGRATED_CRI_CLK_VLV;
5412 dpll |= DPLL_VCO_ENABLE;
5413 crtc->config.dpll_hw_state.dpll = dpll;
5414
5415 dpll_md = (crtc->config.pixel_multiplier - 1)
5416 << DPLL_MD_UDI_MULTIPLIER_SHIFT;
5417 crtc->config.dpll_hw_state.dpll_md = dpll_md;
5418}
5419
5420static void vlv_prepare_pll(struct intel_crtc *crtc)
5421{
Daniel Vetterf47709a2013-03-28 10:42:02 +01005422 struct drm_device *dev = crtc->base.dev;
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005423 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterf47709a2013-03-28 10:42:02 +01005424 int pipe = crtc->pipe;
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02005425 u32 mdiv;
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005426 u32 bestn, bestm1, bestm2, bestp1, bestp2;
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02005427 u32 coreclk, reg_val;
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005428
Daniel Vetter09153002012-12-12 14:06:44 +01005429 mutex_lock(&dev_priv->dpio_lock);
5430
Daniel Vetterf47709a2013-03-28 10:42:02 +01005431 bestn = crtc->config.dpll.n;
5432 bestm1 = crtc->config.dpll.m1;
5433 bestm2 = crtc->config.dpll.m2;
5434 bestp1 = crtc->config.dpll.p1;
5435 bestp2 = crtc->config.dpll.p2;
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005436
Jesse Barnes89b667f2013-04-18 14:51:36 -07005437 /* See eDP HDMI DPIO driver vbios notes doc */
5438
5439 /* PLL B needs special handling */
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02005440 if (pipe == PIPE_B)
Chon Ming Lee5e69f972013-09-05 20:41:49 +08005441 vlv_pllb_recal_opamp(dev_priv, pipe);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005442
5443 /* Set up Tx target for periodic Rcomp update */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005444 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9_BCAST, 0x0100000f);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005445
5446 /* Disable target IRef on PLL */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005447 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW8(pipe));
Jesse Barnes89b667f2013-04-18 14:51:36 -07005448 reg_val &= 0x00ffffff;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005449 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW8(pipe), reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005450
5451 /* Disable fast lock */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005452 vlv_dpio_write(dev_priv, pipe, VLV_CMN_DW0, 0x610);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005453
5454 /* Set idtafcrecal before PLL is enabled */
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005455 mdiv = ((bestm1 << DPIO_M1DIV_SHIFT) | (bestm2 & DPIO_M2DIV_MASK));
5456 mdiv |= ((bestp1 << DPIO_P1_SHIFT) | (bestp2 << DPIO_P2_SHIFT));
5457 mdiv |= ((bestn << DPIO_N_SHIFT));
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005458 mdiv |= (1 << DPIO_K_SHIFT);
Jesse Barnes7df50802013-05-02 10:48:09 -07005459
5460 /*
5461 * Post divider depends on pixel clock rate, DAC vs digital (and LVDS,
5462 * but we don't support that).
5463 * Note: don't use the DAC post divider as it seems unstable.
5464 */
5465 mdiv |= (DPIO_POST_DIV_HDMIDP << DPIO_POST_DIV_SHIFT);
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005466 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW3(pipe), mdiv);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005467
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005468 mdiv |= DPIO_ENABLE_CALIBRATION;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005469 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW3(pipe), mdiv);
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005470
Jesse Barnes89b667f2013-04-18 14:51:36 -07005471 /* Set HBR and RBR LPF coefficients */
Daniel Vetterff9a6752013-06-01 17:16:21 +02005472 if (crtc->config.port_clock == 162000 ||
Ville Syrjälä99750bd2013-06-14 14:02:52 +03005473 intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_ANALOG) ||
Jesse Barnes89b667f2013-04-18 14:51:36 -07005474 intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_HDMI))
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005475 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW10(pipe),
Ville Syrjälä885b0122013-07-05 19:21:38 +03005476 0x009f0003);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005477 else
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005478 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW10(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07005479 0x00d0000f);
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005480
Jesse Barnes89b667f2013-04-18 14:51:36 -07005481 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_EDP) ||
5482 intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_DISPLAYPORT)) {
5483 /* Use SSC source */
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02005484 if (pipe == PIPE_A)
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005485 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07005486 0x0df40000);
5487 else
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005488 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07005489 0x0df70000);
5490 } else { /* HDMI or VGA */
5491 /* Use bend source */
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02005492 if (pipe == PIPE_A)
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005493 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07005494 0x0df70000);
5495 else
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005496 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07005497 0x0df40000);
5498 }
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005499
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005500 coreclk = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW7(pipe));
Jesse Barnes89b667f2013-04-18 14:51:36 -07005501 coreclk = (coreclk & 0x0000ff00) | 0x01c00000;
5502 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_DISPLAYPORT) ||
5503 intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_EDP))
5504 coreclk |= 0x01000000;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005505 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW7(pipe), coreclk);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005506
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005507 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW11(pipe), 0x87871000);
Daniel Vetter09153002012-12-12 14:06:44 +01005508 mutex_unlock(&dev_priv->dpio_lock);
Jesse Barnesa0c4da22012-06-15 11:55:13 -07005509}
5510
Chon Ming Lee9d556c92014-05-02 14:27:47 +03005511static void chv_update_pll(struct intel_crtc *crtc)
5512{
5513 struct drm_device *dev = crtc->base.dev;
5514 struct drm_i915_private *dev_priv = dev->dev_private;
5515 int pipe = crtc->pipe;
5516 int dpll_reg = DPLL(crtc->pipe);
5517 enum dpio_channel port = vlv_pipe_to_channel(pipe);
Ville Syrjälä580d3812014-04-09 13:29:00 +03005518 u32 loopfilter, intcoeff;
Chon Ming Lee9d556c92014-05-02 14:27:47 +03005519 u32 bestn, bestm1, bestm2, bestp1, bestp2, bestm2_frac;
5520 int refclk;
5521
Ville Syrjäläa11b0702014-04-09 13:28:57 +03005522 crtc->config.dpll_hw_state.dpll = DPLL_SSC_REF_CLOCK_CHV |
5523 DPLL_REFA_CLK_ENABLE_VLV | DPLL_VGA_MODE_DIS |
5524 DPLL_VCO_ENABLE;
5525 if (pipe != PIPE_A)
5526 crtc->config.dpll_hw_state.dpll |= DPLL_INTEGRATED_CRI_CLK_VLV;
5527
5528 crtc->config.dpll_hw_state.dpll_md =
5529 (crtc->config.pixel_multiplier - 1) << DPLL_MD_UDI_MULTIPLIER_SHIFT;
Chon Ming Lee9d556c92014-05-02 14:27:47 +03005530
5531 bestn = crtc->config.dpll.n;
5532 bestm2_frac = crtc->config.dpll.m2 & 0x3fffff;
5533 bestm1 = crtc->config.dpll.m1;
5534 bestm2 = crtc->config.dpll.m2 >> 22;
5535 bestp1 = crtc->config.dpll.p1;
5536 bestp2 = crtc->config.dpll.p2;
5537
5538 /*
5539 * Enable Refclk and SSC
5540 */
Ville Syrjäläa11b0702014-04-09 13:28:57 +03005541 I915_WRITE(dpll_reg,
5542 crtc->config.dpll_hw_state.dpll & ~DPLL_VCO_ENABLE);
5543
5544 mutex_lock(&dev_priv->dpio_lock);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03005545
Chon Ming Lee9d556c92014-05-02 14:27:47 +03005546 /* p1 and p2 divider */
5547 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW13(port),
5548 5 << DPIO_CHV_S1_DIV_SHIFT |
5549 bestp1 << DPIO_CHV_P1_DIV_SHIFT |
5550 bestp2 << DPIO_CHV_P2_DIV_SHIFT |
5551 1 << DPIO_CHV_K_DIV_SHIFT);
5552
5553 /* Feedback post-divider - m2 */
5554 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW0(port), bestm2);
5555
5556 /* Feedback refclk divider - n and m1 */
5557 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW1(port),
5558 DPIO_CHV_M1_DIV_BY_2 |
5559 1 << DPIO_CHV_N_DIV_SHIFT);
5560
5561 /* M2 fraction division */
5562 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW2(port), bestm2_frac);
5563
5564 /* M2 fraction division enable */
5565 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW3(port),
5566 DPIO_CHV_FRAC_DIV_EN |
5567 (2 << DPIO_CHV_FEEDFWD_GAIN_SHIFT));
5568
5569 /* Loop filter */
5570 refclk = i9xx_get_refclk(&crtc->base, 0);
5571 loopfilter = 5 << DPIO_CHV_PROP_COEFF_SHIFT |
5572 2 << DPIO_CHV_GAIN_CTRL_SHIFT;
5573 if (refclk == 100000)
5574 intcoeff = 11;
5575 else if (refclk == 38400)
5576 intcoeff = 10;
5577 else
5578 intcoeff = 9;
5579 loopfilter |= intcoeff << DPIO_CHV_INT_COEFF_SHIFT;
5580 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW6(port), loopfilter);
5581
5582 /* AFC Recal */
5583 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port),
5584 vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW14(port)) |
5585 DPIO_AFC_RECAL);
5586
5587 mutex_unlock(&dev_priv->dpio_lock);
5588}
5589
Daniel Vetterf47709a2013-03-28 10:42:02 +01005590static void i9xx_update_pll(struct intel_crtc *crtc,
5591 intel_clock_t *reduced_clock,
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005592 int num_connectors)
5593{
Daniel Vetterf47709a2013-03-28 10:42:02 +01005594 struct drm_device *dev = crtc->base.dev;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005595 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005596 u32 dpll;
5597 bool is_sdvo;
Daniel Vetterf47709a2013-03-28 10:42:02 +01005598 struct dpll *clock = &crtc->config.dpll;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005599
Daniel Vetterf47709a2013-03-28 10:42:02 +01005600 i9xx_update_pll_dividers(crtc, reduced_clock);
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05305601
Daniel Vetterf47709a2013-03-28 10:42:02 +01005602 is_sdvo = intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_SDVO) ||
5603 intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_HDMI);
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005604
5605 dpll = DPLL_VGA_MODE_DIS;
5606
Daniel Vetterf47709a2013-03-28 10:42:02 +01005607 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_LVDS))
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005608 dpll |= DPLLB_MODE_LVDS;
5609 else
5610 dpll |= DPLLB_MODE_DAC_SERIAL;
Daniel Vetter6cc5f342013-03-27 00:44:53 +01005611
Daniel Vetteref1b4602013-06-01 17:17:04 +02005612 if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev)) {
Daniel Vetter198a037f2013-04-19 11:14:37 +02005613 dpll |= (crtc->config.pixel_multiplier - 1)
5614 << SDVO_MULTIPLIER_SHIFT_HIRES;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005615 }
Daniel Vetter198a037f2013-04-19 11:14:37 +02005616
5617 if (is_sdvo)
Daniel Vetter4a33e482013-07-06 12:52:05 +02005618 dpll |= DPLL_SDVO_HIGH_SPEED;
Daniel Vetter198a037f2013-04-19 11:14:37 +02005619
Daniel Vetterf47709a2013-03-28 10:42:02 +01005620 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_DISPLAYPORT))
Daniel Vetter4a33e482013-07-06 12:52:05 +02005621 dpll |= DPLL_SDVO_HIGH_SPEED;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005622
5623 /* compute bitmask from p1 value */
5624 if (IS_PINEVIEW(dev))
5625 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW;
5626 else {
5627 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
5628 if (IS_G4X(dev) && reduced_clock)
5629 dpll |= (1 << (reduced_clock->p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
5630 }
5631 switch (clock->p2) {
5632 case 5:
5633 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
5634 break;
5635 case 7:
5636 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
5637 break;
5638 case 10:
5639 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
5640 break;
5641 case 14:
5642 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
5643 break;
5644 }
5645 if (INTEL_INFO(dev)->gen >= 4)
5646 dpll |= (6 << PLL_LOAD_PULSE_PHASE_SHIFT);
5647
Daniel Vetter09ede542013-04-30 14:01:45 +02005648 if (crtc->config.sdvo_tv_clock)
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005649 dpll |= PLL_REF_INPUT_TVCLKINBC;
Daniel Vetterf47709a2013-03-28 10:42:02 +01005650 else if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_LVDS) &&
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005651 intel_panel_use_ssc(dev_priv) && num_connectors < 2)
5652 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
5653 else
5654 dpll |= PLL_REF_INPUT_DREFCLK;
5655
5656 dpll |= DPLL_VCO_ENABLE;
Daniel Vetter8bcc2792013-06-05 13:34:28 +02005657 crtc->config.dpll_hw_state.dpll = dpll;
5658
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005659 if (INTEL_INFO(dev)->gen >= 4) {
Daniel Vetteref1b4602013-06-01 17:17:04 +02005660 u32 dpll_md = (crtc->config.pixel_multiplier - 1)
5661 << DPLL_MD_UDI_MULTIPLIER_SHIFT;
Daniel Vetter8bcc2792013-06-05 13:34:28 +02005662 crtc->config.dpll_hw_state.dpll_md = dpll_md;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005663 }
5664}
5665
Daniel Vetterf47709a2013-03-28 10:42:02 +01005666static void i8xx_update_pll(struct intel_crtc *crtc,
Daniel Vetterf47709a2013-03-28 10:42:02 +01005667 intel_clock_t *reduced_clock,
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005668 int num_connectors)
5669{
Daniel Vetterf47709a2013-03-28 10:42:02 +01005670 struct drm_device *dev = crtc->base.dev;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005671 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005672 u32 dpll;
Daniel Vetterf47709a2013-03-28 10:42:02 +01005673 struct dpll *clock = &crtc->config.dpll;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005674
Daniel Vetterf47709a2013-03-28 10:42:02 +01005675 i9xx_update_pll_dividers(crtc, reduced_clock);
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05305676
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005677 dpll = DPLL_VGA_MODE_DIS;
5678
Daniel Vetterf47709a2013-03-28 10:42:02 +01005679 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_LVDS)) {
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005680 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
5681 } else {
5682 if (clock->p1 == 2)
5683 dpll |= PLL_P1_DIVIDE_BY_TWO;
5684 else
5685 dpll |= (clock->p1 - 2) << DPLL_FPA01_P1_POST_DIV_SHIFT;
5686 if (clock->p2 == 4)
5687 dpll |= PLL_P2_DIVIDE_BY_4;
5688 }
5689
Daniel Vetter4a33e482013-07-06 12:52:05 +02005690 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_DVO))
5691 dpll |= DPLL_DVO_2X_MODE;
5692
Daniel Vetterf47709a2013-03-28 10:42:02 +01005693 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_LVDS) &&
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005694 intel_panel_use_ssc(dev_priv) && num_connectors < 2)
5695 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
5696 else
5697 dpll |= PLL_REF_INPUT_DREFCLK;
5698
5699 dpll |= DPLL_VCO_ENABLE;
Daniel Vetter8bcc2792013-06-05 13:34:28 +02005700 crtc->config.dpll_hw_state.dpll = dpll;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005701}
5702
Daniel Vetter8a654f32013-06-01 17:16:22 +02005703static void intel_set_pipe_timings(struct intel_crtc *intel_crtc)
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005704{
5705 struct drm_device *dev = intel_crtc->base.dev;
5706 struct drm_i915_private *dev_priv = dev->dev_private;
5707 enum pipe pipe = intel_crtc->pipe;
Daniel Vetter3b117c82013-04-17 20:15:07 +02005708 enum transcoder cpu_transcoder = intel_crtc->config.cpu_transcoder;
Daniel Vetter8a654f32013-06-01 17:16:22 +02005709 struct drm_display_mode *adjusted_mode =
5710 &intel_crtc->config.adjusted_mode;
Ville Syrjälä1caea6e2014-03-28 23:29:32 +02005711 uint32_t crtc_vtotal, crtc_vblank_end;
5712 int vsyncshift = 0;
Daniel Vetter4d8a62e2013-05-03 11:49:51 +02005713
5714 /* We need to be careful not to changed the adjusted mode, for otherwise
5715 * the hw state checker will get angry at the mismatch. */
5716 crtc_vtotal = adjusted_mode->crtc_vtotal;
5717 crtc_vblank_end = adjusted_mode->crtc_vblank_end;
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005718
Ville Syrjälä609aeac2014-03-28 23:29:30 +02005719 if (adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE) {
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005720 /* the chip adds 2 halflines automatically */
Daniel Vetter4d8a62e2013-05-03 11:49:51 +02005721 crtc_vtotal -= 1;
5722 crtc_vblank_end -= 1;
Ville Syrjälä609aeac2014-03-28 23:29:30 +02005723
5724 if (intel_pipe_has_type(&intel_crtc->base, INTEL_OUTPUT_SDVO))
5725 vsyncshift = (adjusted_mode->crtc_htotal - 1) / 2;
5726 else
5727 vsyncshift = adjusted_mode->crtc_hsync_start -
5728 adjusted_mode->crtc_htotal / 2;
Ville Syrjälä1caea6e2014-03-28 23:29:32 +02005729 if (vsyncshift < 0)
5730 vsyncshift += adjusted_mode->crtc_htotal;
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005731 }
5732
5733 if (INTEL_INFO(dev)->gen > 3)
Paulo Zanonife2b8f92012-10-23 18:30:02 -02005734 I915_WRITE(VSYNCSHIFT(cpu_transcoder), vsyncshift);
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005735
Paulo Zanonife2b8f92012-10-23 18:30:02 -02005736 I915_WRITE(HTOTAL(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005737 (adjusted_mode->crtc_hdisplay - 1) |
5738 ((adjusted_mode->crtc_htotal - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02005739 I915_WRITE(HBLANK(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005740 (adjusted_mode->crtc_hblank_start - 1) |
5741 ((adjusted_mode->crtc_hblank_end - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02005742 I915_WRITE(HSYNC(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005743 (adjusted_mode->crtc_hsync_start - 1) |
5744 ((adjusted_mode->crtc_hsync_end - 1) << 16));
5745
Paulo Zanonife2b8f92012-10-23 18:30:02 -02005746 I915_WRITE(VTOTAL(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005747 (adjusted_mode->crtc_vdisplay - 1) |
Daniel Vetter4d8a62e2013-05-03 11:49:51 +02005748 ((crtc_vtotal - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02005749 I915_WRITE(VBLANK(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005750 (adjusted_mode->crtc_vblank_start - 1) |
Daniel Vetter4d8a62e2013-05-03 11:49:51 +02005751 ((crtc_vblank_end - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02005752 I915_WRITE(VSYNC(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005753 (adjusted_mode->crtc_vsync_start - 1) |
5754 ((adjusted_mode->crtc_vsync_end - 1) << 16));
5755
Paulo Zanonib5e508d2012-10-24 11:34:43 -02005756 /* Workaround: when the EDP input selection is B, the VTOTAL_B must be
5757 * programmed with the VTOTAL_EDP value. Same for VTOTAL_C. This is
5758 * documented on the DDI_FUNC_CTL register description, EDP Input Select
5759 * bits. */
5760 if (IS_HASWELL(dev) && cpu_transcoder == TRANSCODER_EDP &&
5761 (pipe == PIPE_B || pipe == PIPE_C))
5762 I915_WRITE(VTOTAL(pipe), I915_READ(VTOTAL(cpu_transcoder)));
5763
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005764 /* pipesrc controls the size that is scaled from, which should
5765 * always be the user's requested size.
5766 */
5767 I915_WRITE(PIPESRC(pipe),
Ville Syrjälä37327ab2013-09-04 18:25:28 +03005768 ((intel_crtc->config.pipe_src_w - 1) << 16) |
5769 (intel_crtc->config.pipe_src_h - 1));
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005770}
5771
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02005772static void intel_get_pipe_timings(struct intel_crtc *crtc,
5773 struct intel_crtc_config *pipe_config)
5774{
5775 struct drm_device *dev = crtc->base.dev;
5776 struct drm_i915_private *dev_priv = dev->dev_private;
5777 enum transcoder cpu_transcoder = pipe_config->cpu_transcoder;
5778 uint32_t tmp;
5779
5780 tmp = I915_READ(HTOTAL(cpu_transcoder));
5781 pipe_config->adjusted_mode.crtc_hdisplay = (tmp & 0xffff) + 1;
5782 pipe_config->adjusted_mode.crtc_htotal = ((tmp >> 16) & 0xffff) + 1;
5783 tmp = I915_READ(HBLANK(cpu_transcoder));
5784 pipe_config->adjusted_mode.crtc_hblank_start = (tmp & 0xffff) + 1;
5785 pipe_config->adjusted_mode.crtc_hblank_end = ((tmp >> 16) & 0xffff) + 1;
5786 tmp = I915_READ(HSYNC(cpu_transcoder));
5787 pipe_config->adjusted_mode.crtc_hsync_start = (tmp & 0xffff) + 1;
5788 pipe_config->adjusted_mode.crtc_hsync_end = ((tmp >> 16) & 0xffff) + 1;
5789
5790 tmp = I915_READ(VTOTAL(cpu_transcoder));
5791 pipe_config->adjusted_mode.crtc_vdisplay = (tmp & 0xffff) + 1;
5792 pipe_config->adjusted_mode.crtc_vtotal = ((tmp >> 16) & 0xffff) + 1;
5793 tmp = I915_READ(VBLANK(cpu_transcoder));
5794 pipe_config->adjusted_mode.crtc_vblank_start = (tmp & 0xffff) + 1;
5795 pipe_config->adjusted_mode.crtc_vblank_end = ((tmp >> 16) & 0xffff) + 1;
5796 tmp = I915_READ(VSYNC(cpu_transcoder));
5797 pipe_config->adjusted_mode.crtc_vsync_start = (tmp & 0xffff) + 1;
5798 pipe_config->adjusted_mode.crtc_vsync_end = ((tmp >> 16) & 0xffff) + 1;
5799
5800 if (I915_READ(PIPECONF(cpu_transcoder)) & PIPECONF_INTERLACE_MASK) {
5801 pipe_config->adjusted_mode.flags |= DRM_MODE_FLAG_INTERLACE;
5802 pipe_config->adjusted_mode.crtc_vtotal += 1;
5803 pipe_config->adjusted_mode.crtc_vblank_end += 1;
5804 }
5805
5806 tmp = I915_READ(PIPESRC(crtc->pipe));
Ville Syrjälä37327ab2013-09-04 18:25:28 +03005807 pipe_config->pipe_src_h = (tmp & 0xffff) + 1;
5808 pipe_config->pipe_src_w = ((tmp >> 16) & 0xffff) + 1;
5809
5810 pipe_config->requested_mode.vdisplay = pipe_config->pipe_src_h;
5811 pipe_config->requested_mode.hdisplay = pipe_config->pipe_src_w;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02005812}
5813
Daniel Vetterf6a83282014-02-11 15:28:57 -08005814void intel_mode_from_pipe_config(struct drm_display_mode *mode,
5815 struct intel_crtc_config *pipe_config)
Jesse Barnesbabea612013-06-26 18:57:38 +03005816{
Daniel Vetterf6a83282014-02-11 15:28:57 -08005817 mode->hdisplay = pipe_config->adjusted_mode.crtc_hdisplay;
5818 mode->htotal = pipe_config->adjusted_mode.crtc_htotal;
5819 mode->hsync_start = pipe_config->adjusted_mode.crtc_hsync_start;
5820 mode->hsync_end = pipe_config->adjusted_mode.crtc_hsync_end;
Jesse Barnesbabea612013-06-26 18:57:38 +03005821
Daniel Vetterf6a83282014-02-11 15:28:57 -08005822 mode->vdisplay = pipe_config->adjusted_mode.crtc_vdisplay;
5823 mode->vtotal = pipe_config->adjusted_mode.crtc_vtotal;
5824 mode->vsync_start = pipe_config->adjusted_mode.crtc_vsync_start;
5825 mode->vsync_end = pipe_config->adjusted_mode.crtc_vsync_end;
Jesse Barnesbabea612013-06-26 18:57:38 +03005826
Daniel Vetterf6a83282014-02-11 15:28:57 -08005827 mode->flags = pipe_config->adjusted_mode.flags;
Jesse Barnesbabea612013-06-26 18:57:38 +03005828
Daniel Vetterf6a83282014-02-11 15:28:57 -08005829 mode->clock = pipe_config->adjusted_mode.crtc_clock;
5830 mode->flags |= pipe_config->adjusted_mode.flags;
Jesse Barnesbabea612013-06-26 18:57:38 +03005831}
5832
Daniel Vetter84b046f2013-02-19 18:48:54 +01005833static void i9xx_set_pipeconf(struct intel_crtc *intel_crtc)
5834{
5835 struct drm_device *dev = intel_crtc->base.dev;
5836 struct drm_i915_private *dev_priv = dev->dev_private;
5837 uint32_t pipeconf;
5838
Daniel Vetter9f11a9e2013-06-13 00:54:58 +02005839 pipeconf = 0;
Daniel Vetter84b046f2013-02-19 18:48:54 +01005840
Daniel Vetter67c72a12013-09-24 11:46:14 +02005841 if (dev_priv->quirks & QUIRK_PIPEA_FORCE &&
5842 I915_READ(PIPECONF(intel_crtc->pipe)) & PIPECONF_ENABLE)
5843 pipeconf |= PIPECONF_ENABLE;
5844
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03005845 if (intel_crtc->config.double_wide)
5846 pipeconf |= PIPECONF_DOUBLE_WIDE;
Daniel Vetter84b046f2013-02-19 18:48:54 +01005847
Daniel Vetterff9ce462013-04-24 14:57:17 +02005848 /* only g4x and later have fancy bpc/dither controls */
5849 if (IS_G4X(dev) || IS_VALLEYVIEW(dev)) {
Daniel Vetterff9ce462013-04-24 14:57:17 +02005850 /* Bspec claims that we can't use dithering for 30bpp pipes. */
5851 if (intel_crtc->config.dither && intel_crtc->config.pipe_bpp != 30)
5852 pipeconf |= PIPECONF_DITHER_EN |
5853 PIPECONF_DITHER_TYPE_SP;
5854
5855 switch (intel_crtc->config.pipe_bpp) {
5856 case 18:
5857 pipeconf |= PIPECONF_6BPC;
5858 break;
5859 case 24:
5860 pipeconf |= PIPECONF_8BPC;
5861 break;
5862 case 30:
5863 pipeconf |= PIPECONF_10BPC;
5864 break;
5865 default:
5866 /* Case prevented by intel_choose_pipe_bpp_dither. */
5867 BUG();
Daniel Vetter84b046f2013-02-19 18:48:54 +01005868 }
5869 }
5870
5871 if (HAS_PIPE_CXSR(dev)) {
5872 if (intel_crtc->lowfreq_avail) {
5873 DRM_DEBUG_KMS("enabling CxSR downclocking\n");
5874 pipeconf |= PIPECONF_CXSR_DOWNCLOCK;
5875 } else {
5876 DRM_DEBUG_KMS("disabling CxSR downclocking\n");
Daniel Vetter84b046f2013-02-19 18:48:54 +01005877 }
5878 }
5879
Ville Syrjäläefc2cff2014-03-28 23:29:31 +02005880 if (intel_crtc->config.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE) {
5881 if (INTEL_INFO(dev)->gen < 4 ||
5882 intel_pipe_has_type(&intel_crtc->base, INTEL_OUTPUT_SDVO))
5883 pipeconf |= PIPECONF_INTERLACE_W_FIELD_INDICATION;
5884 else
5885 pipeconf |= PIPECONF_INTERLACE_W_SYNC_SHIFT;
5886 } else
Daniel Vetter84b046f2013-02-19 18:48:54 +01005887 pipeconf |= PIPECONF_PROGRESSIVE;
5888
Daniel Vetter9f11a9e2013-06-13 00:54:58 +02005889 if (IS_VALLEYVIEW(dev) && intel_crtc->config.limited_color_range)
5890 pipeconf |= PIPECONF_COLOR_RANGE_SELECT;
Ville Syrjälä9c8e09b2013-04-02 16:10:09 +03005891
Daniel Vetter84b046f2013-02-19 18:48:54 +01005892 I915_WRITE(PIPECONF(intel_crtc->pipe), pipeconf);
5893 POSTING_READ(PIPECONF(intel_crtc->pipe));
5894}
5895
Eric Anholtf564048e2011-03-30 13:01:02 -07005896static int i9xx_crtc_mode_set(struct drm_crtc *crtc,
Eric Anholtf564048e2011-03-30 13:01:02 -07005897 int x, int y,
Daniel Vetter94352cf2012-07-05 22:51:56 +02005898 struct drm_framebuffer *fb)
Jesse Barnes79e53942008-11-07 14:24:08 -08005899{
5900 struct drm_device *dev = crtc->dev;
5901 struct drm_i915_private *dev_priv = dev->dev_private;
5902 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Eric Anholtc751ce42010-03-25 11:48:48 -07005903 int refclk, num_connectors = 0;
Jesse Barnes652c3932009-08-17 13:31:43 -07005904 intel_clock_t clock, reduced_clock;
Daniel Vettera16af7212013-04-30 14:01:44 +02005905 bool ok, has_reduced_clock = false;
Jani Nikulae9fd1c02013-08-27 15:12:23 +03005906 bool is_lvds = false, is_dsi = false;
Chris Wilson5eddb702010-09-11 13:48:45 +01005907 struct intel_encoder *encoder;
Ma Lingd4906092009-03-18 20:13:27 +08005908 const intel_limit_t *limit;
Jesse Barnes79e53942008-11-07 14:24:08 -08005909
Daniel Vetter6c2b7c122012-07-05 09:50:24 +02005910 for_each_encoder_on_crtc(dev, crtc, encoder) {
Chris Wilson5eddb702010-09-11 13:48:45 +01005911 switch (encoder->type) {
Jesse Barnes79e53942008-11-07 14:24:08 -08005912 case INTEL_OUTPUT_LVDS:
5913 is_lvds = true;
5914 break;
Jani Nikulae9fd1c02013-08-27 15:12:23 +03005915 case INTEL_OUTPUT_DSI:
5916 is_dsi = true;
5917 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08005918 }
Kristian Høgsberg43565a02009-02-13 20:56:52 -05005919
Eric Anholtc751ce42010-03-25 11:48:48 -07005920 num_connectors++;
Jesse Barnes79e53942008-11-07 14:24:08 -08005921 }
5922
Jani Nikulaf2335332013-09-13 11:03:09 +03005923 if (is_dsi)
Daniel Vetter5b18e572014-04-24 23:55:06 +02005924 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08005925
Jani Nikulaf2335332013-09-13 11:03:09 +03005926 if (!intel_crtc->config.clock_set) {
5927 refclk = i9xx_get_refclk(crtc, num_connectors);
5928
Jani Nikulae9fd1c02013-08-27 15:12:23 +03005929 /*
5930 * Returns a set of divisors for the desired target clock with
5931 * the given refclk, or FALSE. The returned values represent
5932 * the clock equation: reflck * (5 * (m1 + 2) + (m2 + 2)) / (n +
5933 * 2) / p1 / p2.
5934 */
5935 limit = intel_limit(crtc, refclk);
5936 ok = dev_priv->display.find_dpll(limit, crtc,
5937 intel_crtc->config.port_clock,
5938 refclk, NULL, &clock);
Jani Nikulaf2335332013-09-13 11:03:09 +03005939 if (!ok) {
Jani Nikulae9fd1c02013-08-27 15:12:23 +03005940 DRM_ERROR("Couldn't find PLL settings for mode!\n");
5941 return -EINVAL;
5942 }
Eric Anholtf564048e2011-03-30 13:01:02 -07005943
Jani Nikulaf2335332013-09-13 11:03:09 +03005944 if (is_lvds && dev_priv->lvds_downclock_avail) {
5945 /*
5946 * Ensure we match the reduced clock's P to the target
5947 * clock. If the clocks don't match, we can't switch
5948 * the display clock by using the FP0/FP1. In such case
5949 * we will disable the LVDS downclock feature.
5950 */
5951 has_reduced_clock =
5952 dev_priv->display.find_dpll(limit, crtc,
5953 dev_priv->lvds_downclock,
5954 refclk, &clock,
5955 &reduced_clock);
5956 }
5957 /* Compat-code for transition, will disappear. */
Daniel Vetterf47709a2013-03-28 10:42:02 +01005958 intel_crtc->config.dpll.n = clock.n;
5959 intel_crtc->config.dpll.m1 = clock.m1;
5960 intel_crtc->config.dpll.m2 = clock.m2;
5961 intel_crtc->config.dpll.p1 = clock.p1;
5962 intel_crtc->config.dpll.p2 = clock.p2;
5963 }
Eric Anholtf564048e2011-03-30 13:01:02 -07005964
Jani Nikulae9fd1c02013-08-27 15:12:23 +03005965 if (IS_GEN2(dev)) {
Daniel Vetter8a654f32013-06-01 17:16:22 +02005966 i8xx_update_pll(intel_crtc,
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05305967 has_reduced_clock ? &reduced_clock : NULL,
5968 num_connectors);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03005969 } else if (IS_CHERRYVIEW(dev)) {
5970 chv_update_pll(intel_crtc);
Jani Nikulae9fd1c02013-08-27 15:12:23 +03005971 } else if (IS_VALLEYVIEW(dev)) {
Jani Nikulaf2335332013-09-13 11:03:09 +03005972 vlv_update_pll(intel_crtc);
Jani Nikulae9fd1c02013-08-27 15:12:23 +03005973 } else {
Daniel Vetterf47709a2013-03-28 10:42:02 +01005974 i9xx_update_pll(intel_crtc,
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005975 has_reduced_clock ? &reduced_clock : NULL,
Robin Schroereba905b2014-05-18 02:24:50 +02005976 num_connectors);
Jani Nikulae9fd1c02013-08-27 15:12:23 +03005977 }
Eric Anholtf564048e2011-03-30 13:01:02 -07005978
Daniel Vetterc8f7a0d2014-04-24 23:55:04 +02005979 return 0;
Eric Anholtf564048e2011-03-30 13:01:02 -07005980}
5981
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02005982static void i9xx_get_pfit_config(struct intel_crtc *crtc,
5983 struct intel_crtc_config *pipe_config)
5984{
5985 struct drm_device *dev = crtc->base.dev;
5986 struct drm_i915_private *dev_priv = dev->dev_private;
5987 uint32_t tmp;
5988
Ville Syrjälädc9e7dec2014-01-10 14:06:45 +02005989 if (INTEL_INFO(dev)->gen <= 3 && (IS_I830(dev) || !IS_MOBILE(dev)))
5990 return;
5991
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02005992 tmp = I915_READ(PFIT_CONTROL);
Daniel Vetter06922822013-07-11 13:35:40 +02005993 if (!(tmp & PFIT_ENABLE))
5994 return;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02005995
Daniel Vetter06922822013-07-11 13:35:40 +02005996 /* Check whether the pfit is attached to our pipe. */
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02005997 if (INTEL_INFO(dev)->gen < 4) {
5998 if (crtc->pipe != PIPE_B)
5999 return;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02006000 } else {
6001 if ((tmp & PFIT_PIPE_MASK) != (crtc->pipe << PFIT_PIPE_SHIFT))
6002 return;
6003 }
6004
Daniel Vetter06922822013-07-11 13:35:40 +02006005 pipe_config->gmch_pfit.control = tmp;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02006006 pipe_config->gmch_pfit.pgm_ratios = I915_READ(PFIT_PGM_RATIOS);
6007 if (INTEL_INFO(dev)->gen < 5)
6008 pipe_config->gmch_pfit.lvds_border_bits =
6009 I915_READ(LVDS) & LVDS_BORDER_ENABLE;
6010}
6011
Jesse Barnesacbec812013-09-20 11:29:32 -07006012static void vlv_crtc_clock_get(struct intel_crtc *crtc,
6013 struct intel_crtc_config *pipe_config)
6014{
6015 struct drm_device *dev = crtc->base.dev;
6016 struct drm_i915_private *dev_priv = dev->dev_private;
6017 int pipe = pipe_config->cpu_transcoder;
6018 intel_clock_t clock;
6019 u32 mdiv;
Chris Wilson662c6ec2013-09-25 14:24:01 -07006020 int refclk = 100000;
Jesse Barnesacbec812013-09-20 11:29:32 -07006021
6022 mutex_lock(&dev_priv->dpio_lock);
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006023 mdiv = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW3(pipe));
Jesse Barnesacbec812013-09-20 11:29:32 -07006024 mutex_unlock(&dev_priv->dpio_lock);
6025
6026 clock.m1 = (mdiv >> DPIO_M1DIV_SHIFT) & 7;
6027 clock.m2 = mdiv & DPIO_M2DIV_MASK;
6028 clock.n = (mdiv >> DPIO_N_SHIFT) & 0xf;
6029 clock.p1 = (mdiv >> DPIO_P1_SHIFT) & 7;
6030 clock.p2 = (mdiv >> DPIO_P2_SHIFT) & 0x1f;
6031
Ville Syrjäläf6466282013-10-14 14:50:31 +03006032 vlv_clock(refclk, &clock);
Jesse Barnesacbec812013-09-20 11:29:32 -07006033
Ville Syrjäläf6466282013-10-14 14:50:31 +03006034 /* clock.dot is the fast clock */
6035 pipe_config->port_clock = clock.dot / 5;
Jesse Barnesacbec812013-09-20 11:29:32 -07006036}
6037
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006038static void i9xx_get_plane_config(struct intel_crtc *crtc,
6039 struct intel_plane_config *plane_config)
6040{
6041 struct drm_device *dev = crtc->base.dev;
6042 struct drm_i915_private *dev_priv = dev->dev_private;
6043 u32 val, base, offset;
6044 int pipe = crtc->pipe, plane = crtc->plane;
6045 int fourcc, pixel_format;
6046 int aligned_height;
6047
Dave Airlie66e514c2014-04-03 07:51:54 +10006048 crtc->base.primary->fb = kzalloc(sizeof(struct intel_framebuffer), GFP_KERNEL);
6049 if (!crtc->base.primary->fb) {
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006050 DRM_DEBUG_KMS("failed to alloc fb\n");
6051 return;
6052 }
6053
6054 val = I915_READ(DSPCNTR(plane));
6055
6056 if (INTEL_INFO(dev)->gen >= 4)
6057 if (val & DISPPLANE_TILED)
6058 plane_config->tiled = true;
6059
6060 pixel_format = val & DISPPLANE_PIXFORMAT_MASK;
6061 fourcc = intel_format_to_fourcc(pixel_format);
Dave Airlie66e514c2014-04-03 07:51:54 +10006062 crtc->base.primary->fb->pixel_format = fourcc;
6063 crtc->base.primary->fb->bits_per_pixel =
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006064 drm_format_plane_cpp(fourcc, 0) * 8;
6065
6066 if (INTEL_INFO(dev)->gen >= 4) {
6067 if (plane_config->tiled)
6068 offset = I915_READ(DSPTILEOFF(plane));
6069 else
6070 offset = I915_READ(DSPLINOFF(plane));
6071 base = I915_READ(DSPSURF(plane)) & 0xfffff000;
6072 } else {
6073 base = I915_READ(DSPADDR(plane));
6074 }
6075 plane_config->base = base;
6076
6077 val = I915_READ(PIPESRC(pipe));
Dave Airlie66e514c2014-04-03 07:51:54 +10006078 crtc->base.primary->fb->width = ((val >> 16) & 0xfff) + 1;
6079 crtc->base.primary->fb->height = ((val >> 0) & 0xfff) + 1;
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006080
6081 val = I915_READ(DSPSTRIDE(pipe));
Dave Airlie66e514c2014-04-03 07:51:54 +10006082 crtc->base.primary->fb->pitches[0] = val & 0xffffff80;
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006083
Dave Airlie66e514c2014-04-03 07:51:54 +10006084 aligned_height = intel_align_height(dev, crtc->base.primary->fb->height,
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006085 plane_config->tiled);
6086
Dave Airlie66e514c2014-04-03 07:51:54 +10006087 plane_config->size = ALIGN(crtc->base.primary->fb->pitches[0] *
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006088 aligned_height, PAGE_SIZE);
6089
6090 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 +10006091 pipe, plane, crtc->base.primary->fb->width,
6092 crtc->base.primary->fb->height,
6093 crtc->base.primary->fb->bits_per_pixel, base,
6094 crtc->base.primary->fb->pitches[0],
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006095 plane_config->size);
6096
6097}
6098
Ville Syrjälä70b23a92014-04-09 13:28:22 +03006099static void chv_crtc_clock_get(struct intel_crtc *crtc,
6100 struct intel_crtc_config *pipe_config)
6101{
6102 struct drm_device *dev = crtc->base.dev;
6103 struct drm_i915_private *dev_priv = dev->dev_private;
6104 int pipe = pipe_config->cpu_transcoder;
6105 enum dpio_channel port = vlv_pipe_to_channel(pipe);
6106 intel_clock_t clock;
6107 u32 cmn_dw13, pll_dw0, pll_dw1, pll_dw2;
6108 int refclk = 100000;
6109
6110 mutex_lock(&dev_priv->dpio_lock);
6111 cmn_dw13 = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW13(port));
6112 pll_dw0 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW0(port));
6113 pll_dw1 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW1(port));
6114 pll_dw2 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW2(port));
6115 mutex_unlock(&dev_priv->dpio_lock);
6116
6117 clock.m1 = (pll_dw1 & 0x7) == DPIO_CHV_M1_DIV_BY_2 ? 2 : 0;
6118 clock.m2 = ((pll_dw0 & 0xff) << 22) | (pll_dw2 & 0x3fffff);
6119 clock.n = (pll_dw1 >> DPIO_CHV_N_DIV_SHIFT) & 0xf;
6120 clock.p1 = (cmn_dw13 >> DPIO_CHV_P1_DIV_SHIFT) & 0x7;
6121 clock.p2 = (cmn_dw13 >> DPIO_CHV_P2_DIV_SHIFT) & 0x1f;
6122
6123 chv_clock(refclk, &clock);
6124
6125 /* clock.dot is the fast clock */
6126 pipe_config->port_clock = clock.dot / 5;
6127}
6128
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01006129static bool i9xx_get_pipe_config(struct intel_crtc *crtc,
6130 struct intel_crtc_config *pipe_config)
6131{
6132 struct drm_device *dev = crtc->base.dev;
6133 struct drm_i915_private *dev_priv = dev->dev_private;
6134 uint32_t tmp;
6135
Imre Deakb5482bd2014-03-05 16:20:55 +02006136 if (!intel_display_power_enabled(dev_priv,
6137 POWER_DOMAIN_PIPE(crtc->pipe)))
6138 return false;
6139
Daniel Vettere143a212013-07-04 12:01:15 +02006140 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +02006141 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
Daniel Vettereccb1402013-05-22 00:50:22 +02006142
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01006143 tmp = I915_READ(PIPECONF(crtc->pipe));
6144 if (!(tmp & PIPECONF_ENABLE))
6145 return false;
6146
Ville Syrjälä42571ae2013-09-06 23:29:00 +03006147 if (IS_G4X(dev) || IS_VALLEYVIEW(dev)) {
6148 switch (tmp & PIPECONF_BPC_MASK) {
6149 case PIPECONF_6BPC:
6150 pipe_config->pipe_bpp = 18;
6151 break;
6152 case PIPECONF_8BPC:
6153 pipe_config->pipe_bpp = 24;
6154 break;
6155 case PIPECONF_10BPC:
6156 pipe_config->pipe_bpp = 30;
6157 break;
6158 default:
6159 break;
6160 }
6161 }
6162
Daniel Vetterb5a9fa02014-04-24 23:54:49 +02006163 if (IS_VALLEYVIEW(dev) && (tmp & PIPECONF_COLOR_RANGE_SELECT))
6164 pipe_config->limited_color_range = true;
6165
Ville Syrjälä282740f2013-09-04 18:30:03 +03006166 if (INTEL_INFO(dev)->gen < 4)
6167 pipe_config->double_wide = tmp & PIPECONF_DOUBLE_WIDE;
6168
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02006169 intel_get_pipe_timings(crtc, pipe_config);
6170
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02006171 i9xx_get_pfit_config(crtc, pipe_config);
6172
Daniel Vetter6c49f242013-06-06 12:45:25 +02006173 if (INTEL_INFO(dev)->gen >= 4) {
6174 tmp = I915_READ(DPLL_MD(crtc->pipe));
6175 pipe_config->pixel_multiplier =
6176 ((tmp & DPLL_MD_UDI_MULTIPLIER_MASK)
6177 >> DPLL_MD_UDI_MULTIPLIER_SHIFT) + 1;
Daniel Vetter8bcc2792013-06-05 13:34:28 +02006178 pipe_config->dpll_hw_state.dpll_md = tmp;
Daniel Vetter6c49f242013-06-06 12:45:25 +02006179 } else if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev)) {
6180 tmp = I915_READ(DPLL(crtc->pipe));
6181 pipe_config->pixel_multiplier =
6182 ((tmp & SDVO_MULTIPLIER_MASK)
6183 >> SDVO_MULTIPLIER_SHIFT_HIRES) + 1;
6184 } else {
6185 /* Note that on i915G/GM the pixel multiplier is in the sdvo
6186 * port and will be fixed up in the encoder->get_config
6187 * function. */
6188 pipe_config->pixel_multiplier = 1;
6189 }
Daniel Vetter8bcc2792013-06-05 13:34:28 +02006190 pipe_config->dpll_hw_state.dpll = I915_READ(DPLL(crtc->pipe));
6191 if (!IS_VALLEYVIEW(dev)) {
6192 pipe_config->dpll_hw_state.fp0 = I915_READ(FP0(crtc->pipe));
6193 pipe_config->dpll_hw_state.fp1 = I915_READ(FP1(crtc->pipe));
Ville Syrjälä165e9012013-06-26 17:44:15 +03006194 } else {
6195 /* Mask out read-only status bits. */
6196 pipe_config->dpll_hw_state.dpll &= ~(DPLL_LOCK_VLV |
6197 DPLL_PORTC_READY_MASK |
6198 DPLL_PORTB_READY_MASK);
Daniel Vetter8bcc2792013-06-05 13:34:28 +02006199 }
Daniel Vetter6c49f242013-06-06 12:45:25 +02006200
Ville Syrjälä70b23a92014-04-09 13:28:22 +03006201 if (IS_CHERRYVIEW(dev))
6202 chv_crtc_clock_get(crtc, pipe_config);
6203 else if (IS_VALLEYVIEW(dev))
Jesse Barnesacbec812013-09-20 11:29:32 -07006204 vlv_crtc_clock_get(crtc, pipe_config);
6205 else
6206 i9xx_crtc_clock_get(crtc, pipe_config);
Ville Syrjälä18442d02013-09-13 16:00:08 +03006207
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01006208 return true;
6209}
6210
Paulo Zanonidde86e22012-12-01 12:04:25 -02006211static void ironlake_init_pch_refclk(struct drm_device *dev)
Jesse Barnes13d83a62011-08-03 12:59:20 -07006212{
6213 struct drm_i915_private *dev_priv = dev->dev_private;
6214 struct drm_mode_config *mode_config = &dev->mode_config;
Jesse Barnes13d83a62011-08-03 12:59:20 -07006215 struct intel_encoder *encoder;
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006216 u32 val, final;
Jesse Barnes13d83a62011-08-03 12:59:20 -07006217 bool has_lvds = false;
Keith Packard199e5d72011-09-22 12:01:57 -07006218 bool has_cpu_edp = false;
Keith Packard199e5d72011-09-22 12:01:57 -07006219 bool has_panel = false;
Keith Packard99eb6a02011-09-26 14:29:12 -07006220 bool has_ck505 = false;
6221 bool can_ssc = false;
Jesse Barnes13d83a62011-08-03 12:59:20 -07006222
6223 /* We need to take the global config into account */
Keith Packard199e5d72011-09-22 12:01:57 -07006224 list_for_each_entry(encoder, &mode_config->encoder_list,
6225 base.head) {
6226 switch (encoder->type) {
6227 case INTEL_OUTPUT_LVDS:
6228 has_panel = true;
6229 has_lvds = true;
6230 break;
6231 case INTEL_OUTPUT_EDP:
6232 has_panel = true;
Imre Deak2de69052013-05-08 13:14:04 +03006233 if (enc_to_dig_port(&encoder->base)->port == PORT_A)
Keith Packard199e5d72011-09-22 12:01:57 -07006234 has_cpu_edp = true;
6235 break;
Jesse Barnes13d83a62011-08-03 12:59:20 -07006236 }
6237 }
6238
Keith Packard99eb6a02011-09-26 14:29:12 -07006239 if (HAS_PCH_IBX(dev)) {
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03006240 has_ck505 = dev_priv->vbt.display_clock_mode;
Keith Packard99eb6a02011-09-26 14:29:12 -07006241 can_ssc = has_ck505;
6242 } else {
6243 has_ck505 = false;
6244 can_ssc = true;
6245 }
6246
Imre Deak2de69052013-05-08 13:14:04 +03006247 DRM_DEBUG_KMS("has_panel %d has_lvds %d has_ck505 %d\n",
6248 has_panel, has_lvds, has_ck505);
Jesse Barnes13d83a62011-08-03 12:59:20 -07006249
6250 /* Ironlake: try to setup display ref clock before DPLL
6251 * enabling. This is only under driver's control after
6252 * PCH B stepping, previous chipset stepping should be
6253 * ignoring this setting.
6254 */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006255 val = I915_READ(PCH_DREF_CONTROL);
Jesse Barnes13d83a62011-08-03 12:59:20 -07006256
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006257 /* As we must carefully and slowly disable/enable each source in turn,
6258 * compute the final state we want first and check if we need to
6259 * make any changes at all.
6260 */
6261 final = val;
6262 final &= ~DREF_NONSPREAD_SOURCE_MASK;
Keith Packard99eb6a02011-09-26 14:29:12 -07006263 if (has_ck505)
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006264 final |= DREF_NONSPREAD_CK505_ENABLE;
Keith Packard99eb6a02011-09-26 14:29:12 -07006265 else
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006266 final |= DREF_NONSPREAD_SOURCE_ENABLE;
6267
6268 final &= ~DREF_SSC_SOURCE_MASK;
6269 final &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
6270 final &= ~DREF_SSC1_ENABLE;
Jesse Barnes13d83a62011-08-03 12:59:20 -07006271
Keith Packard199e5d72011-09-22 12:01:57 -07006272 if (has_panel) {
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006273 final |= DREF_SSC_SOURCE_ENABLE;
6274
6275 if (intel_panel_use_ssc(dev_priv) && can_ssc)
6276 final |= DREF_SSC1_ENABLE;
6277
6278 if (has_cpu_edp) {
6279 if (intel_panel_use_ssc(dev_priv) && can_ssc)
6280 final |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD;
6281 else
6282 final |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD;
6283 } else
6284 final |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
6285 } else {
6286 final |= DREF_SSC_SOURCE_DISABLE;
6287 final |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
6288 }
6289
6290 if (final == val)
6291 return;
6292
6293 /* Always enable nonspread source */
6294 val &= ~DREF_NONSPREAD_SOURCE_MASK;
6295
6296 if (has_ck505)
6297 val |= DREF_NONSPREAD_CK505_ENABLE;
6298 else
6299 val |= DREF_NONSPREAD_SOURCE_ENABLE;
6300
6301 if (has_panel) {
6302 val &= ~DREF_SSC_SOURCE_MASK;
6303 val |= DREF_SSC_SOURCE_ENABLE;
Jesse Barnes13d83a62011-08-03 12:59:20 -07006304
Keith Packard199e5d72011-09-22 12:01:57 -07006305 /* SSC must be turned on before enabling the CPU output */
Keith Packard99eb6a02011-09-26 14:29:12 -07006306 if (intel_panel_use_ssc(dev_priv) && can_ssc) {
Keith Packard199e5d72011-09-22 12:01:57 -07006307 DRM_DEBUG_KMS("Using SSC on panel\n");
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006308 val |= DREF_SSC1_ENABLE;
Daniel Vettere77166b2012-03-30 22:14:05 +02006309 } else
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006310 val &= ~DREF_SSC1_ENABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07006311
6312 /* Get SSC going before enabling the outputs */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006313 I915_WRITE(PCH_DREF_CONTROL, val);
Keith Packard199e5d72011-09-22 12:01:57 -07006314 POSTING_READ(PCH_DREF_CONTROL);
6315 udelay(200);
6316
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006317 val &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
Jesse Barnes13d83a62011-08-03 12:59:20 -07006318
6319 /* Enable CPU source on CPU attached eDP */
Keith Packard199e5d72011-09-22 12:01:57 -07006320 if (has_cpu_edp) {
Keith Packard99eb6a02011-09-26 14:29:12 -07006321 if (intel_panel_use_ssc(dev_priv) && can_ssc) {
Keith Packard199e5d72011-09-22 12:01:57 -07006322 DRM_DEBUG_KMS("Using SSC on eDP\n");
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006323 val |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD;
Robin Schroereba905b2014-05-18 02:24:50 +02006324 } else
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006325 val |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD;
Keith Packard199e5d72011-09-22 12:01:57 -07006326 } else
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006327 val |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07006328
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006329 I915_WRITE(PCH_DREF_CONTROL, val);
Keith Packard199e5d72011-09-22 12:01:57 -07006330 POSTING_READ(PCH_DREF_CONTROL);
6331 udelay(200);
6332 } else {
6333 DRM_DEBUG_KMS("Disabling SSC entirely\n");
6334
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006335 val &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
Keith Packard199e5d72011-09-22 12:01:57 -07006336
6337 /* Turn off CPU output */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006338 val |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07006339
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006340 I915_WRITE(PCH_DREF_CONTROL, val);
Keith Packard199e5d72011-09-22 12:01:57 -07006341 POSTING_READ(PCH_DREF_CONTROL);
6342 udelay(200);
6343
6344 /* Turn off the SSC source */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006345 val &= ~DREF_SSC_SOURCE_MASK;
6346 val |= DREF_SSC_SOURCE_DISABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07006347
6348 /* Turn off SSC1 */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006349 val &= ~DREF_SSC1_ENABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07006350
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006351 I915_WRITE(PCH_DREF_CONTROL, val);
Jesse Barnes13d83a62011-08-03 12:59:20 -07006352 POSTING_READ(PCH_DREF_CONTROL);
6353 udelay(200);
6354 }
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006355
6356 BUG_ON(val != final);
Jesse Barnes13d83a62011-08-03 12:59:20 -07006357}
6358
Paulo Zanonif31f2d52013-07-18 18:51:11 -03006359static void lpt_reset_fdi_mphy(struct drm_i915_private *dev_priv)
Paulo Zanonidde86e22012-12-01 12:04:25 -02006360{
Paulo Zanonif31f2d52013-07-18 18:51:11 -03006361 uint32_t tmp;
Paulo Zanonidde86e22012-12-01 12:04:25 -02006362
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006363 tmp = I915_READ(SOUTH_CHICKEN2);
6364 tmp |= FDI_MPHY_IOSFSB_RESET_CTL;
6365 I915_WRITE(SOUTH_CHICKEN2, tmp);
Paulo Zanonidde86e22012-12-01 12:04:25 -02006366
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006367 if (wait_for_atomic_us(I915_READ(SOUTH_CHICKEN2) &
6368 FDI_MPHY_IOSFSB_RESET_STATUS, 100))
6369 DRM_ERROR("FDI mPHY reset assert timeout\n");
Paulo Zanonidde86e22012-12-01 12:04:25 -02006370
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006371 tmp = I915_READ(SOUTH_CHICKEN2);
6372 tmp &= ~FDI_MPHY_IOSFSB_RESET_CTL;
6373 I915_WRITE(SOUTH_CHICKEN2, tmp);
Paulo Zanonidde86e22012-12-01 12:04:25 -02006374
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006375 if (wait_for_atomic_us((I915_READ(SOUTH_CHICKEN2) &
6376 FDI_MPHY_IOSFSB_RESET_STATUS) == 0, 100))
6377 DRM_ERROR("FDI mPHY reset de-assert timeout\n");
Paulo Zanonif31f2d52013-07-18 18:51:11 -03006378}
6379
6380/* WaMPhyProgramming:hsw */
6381static void lpt_program_fdi_mphy(struct drm_i915_private *dev_priv)
6382{
6383 uint32_t tmp;
Paulo Zanonidde86e22012-12-01 12:04:25 -02006384
6385 tmp = intel_sbi_read(dev_priv, 0x8008, SBI_MPHY);
6386 tmp &= ~(0xFF << 24);
6387 tmp |= (0x12 << 24);
6388 intel_sbi_write(dev_priv, 0x8008, tmp, SBI_MPHY);
6389
Paulo Zanonidde86e22012-12-01 12:04:25 -02006390 tmp = intel_sbi_read(dev_priv, 0x2008, SBI_MPHY);
6391 tmp |= (1 << 11);
6392 intel_sbi_write(dev_priv, 0x2008, tmp, SBI_MPHY);
6393
6394 tmp = intel_sbi_read(dev_priv, 0x2108, SBI_MPHY);
6395 tmp |= (1 << 11);
6396 intel_sbi_write(dev_priv, 0x2108, tmp, SBI_MPHY);
6397
Paulo Zanonidde86e22012-12-01 12:04:25 -02006398 tmp = intel_sbi_read(dev_priv, 0x206C, SBI_MPHY);
6399 tmp |= (1 << 24) | (1 << 21) | (1 << 18);
6400 intel_sbi_write(dev_priv, 0x206C, tmp, SBI_MPHY);
6401
6402 tmp = intel_sbi_read(dev_priv, 0x216C, SBI_MPHY);
6403 tmp |= (1 << 24) | (1 << 21) | (1 << 18);
6404 intel_sbi_write(dev_priv, 0x216C, tmp, SBI_MPHY);
6405
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006406 tmp = intel_sbi_read(dev_priv, 0x2080, SBI_MPHY);
6407 tmp &= ~(7 << 13);
6408 tmp |= (5 << 13);
6409 intel_sbi_write(dev_priv, 0x2080, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02006410
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006411 tmp = intel_sbi_read(dev_priv, 0x2180, SBI_MPHY);
6412 tmp &= ~(7 << 13);
6413 tmp |= (5 << 13);
6414 intel_sbi_write(dev_priv, 0x2180, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02006415
6416 tmp = intel_sbi_read(dev_priv, 0x208C, SBI_MPHY);
6417 tmp &= ~0xFF;
6418 tmp |= 0x1C;
6419 intel_sbi_write(dev_priv, 0x208C, tmp, SBI_MPHY);
6420
6421 tmp = intel_sbi_read(dev_priv, 0x218C, SBI_MPHY);
6422 tmp &= ~0xFF;
6423 tmp |= 0x1C;
6424 intel_sbi_write(dev_priv, 0x218C, tmp, SBI_MPHY);
6425
6426 tmp = intel_sbi_read(dev_priv, 0x2098, SBI_MPHY);
6427 tmp &= ~(0xFF << 16);
6428 tmp |= (0x1C << 16);
6429 intel_sbi_write(dev_priv, 0x2098, tmp, SBI_MPHY);
6430
6431 tmp = intel_sbi_read(dev_priv, 0x2198, SBI_MPHY);
6432 tmp &= ~(0xFF << 16);
6433 tmp |= (0x1C << 16);
6434 intel_sbi_write(dev_priv, 0x2198, tmp, SBI_MPHY);
6435
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006436 tmp = intel_sbi_read(dev_priv, 0x20C4, SBI_MPHY);
6437 tmp |= (1 << 27);
6438 intel_sbi_write(dev_priv, 0x20C4, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02006439
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006440 tmp = intel_sbi_read(dev_priv, 0x21C4, SBI_MPHY);
6441 tmp |= (1 << 27);
6442 intel_sbi_write(dev_priv, 0x21C4, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02006443
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006444 tmp = intel_sbi_read(dev_priv, 0x20EC, SBI_MPHY);
6445 tmp &= ~(0xF << 28);
6446 tmp |= (4 << 28);
6447 intel_sbi_write(dev_priv, 0x20EC, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02006448
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006449 tmp = intel_sbi_read(dev_priv, 0x21EC, SBI_MPHY);
6450 tmp &= ~(0xF << 28);
6451 tmp |= (4 << 28);
6452 intel_sbi_write(dev_priv, 0x21EC, tmp, SBI_MPHY);
Paulo Zanonif31f2d52013-07-18 18:51:11 -03006453}
6454
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03006455/* Implements 3 different sequences from BSpec chapter "Display iCLK
6456 * Programming" based on the parameters passed:
6457 * - Sequence to enable CLKOUT_DP
6458 * - Sequence to enable CLKOUT_DP without spread
6459 * - Sequence to enable CLKOUT_DP for FDI usage and configure PCH FDI I/O
6460 */
6461static void lpt_enable_clkout_dp(struct drm_device *dev, bool with_spread,
6462 bool with_fdi)
Paulo Zanonif31f2d52013-07-18 18:51:11 -03006463{
6464 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03006465 uint32_t reg, tmp;
6466
6467 if (WARN(with_fdi && !with_spread, "FDI requires downspread\n"))
6468 with_spread = true;
6469 if (WARN(dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE &&
6470 with_fdi, "LP PCH doesn't have FDI\n"))
6471 with_fdi = false;
Paulo Zanonif31f2d52013-07-18 18:51:11 -03006472
6473 mutex_lock(&dev_priv->dpio_lock);
6474
6475 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
6476 tmp &= ~SBI_SSCCTL_DISABLE;
6477 tmp |= SBI_SSCCTL_PATHALT;
6478 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
6479
6480 udelay(24);
6481
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03006482 if (with_spread) {
6483 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
6484 tmp &= ~SBI_SSCCTL_PATHALT;
6485 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
Paulo Zanonif31f2d52013-07-18 18:51:11 -03006486
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03006487 if (with_fdi) {
6488 lpt_reset_fdi_mphy(dev_priv);
6489 lpt_program_fdi_mphy(dev_priv);
6490 }
6491 }
Paulo Zanonidde86e22012-12-01 12:04:25 -02006492
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03006493 reg = (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) ?
6494 SBI_GEN0 : SBI_DBUFF0;
6495 tmp = intel_sbi_read(dev_priv, reg, SBI_ICLK);
6496 tmp |= SBI_GEN0_CFG_BUFFENABLE_DISABLE;
6497 intel_sbi_write(dev_priv, reg, tmp, SBI_ICLK);
Daniel Vetterc00db242013-01-22 15:33:27 +01006498
6499 mutex_unlock(&dev_priv->dpio_lock);
Paulo Zanonidde86e22012-12-01 12:04:25 -02006500}
6501
Paulo Zanoni47701c32013-07-23 11:19:25 -03006502/* Sequence to disable CLKOUT_DP */
6503static void lpt_disable_clkout_dp(struct drm_device *dev)
6504{
6505 struct drm_i915_private *dev_priv = dev->dev_private;
6506 uint32_t reg, tmp;
6507
6508 mutex_lock(&dev_priv->dpio_lock);
6509
6510 reg = (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) ?
6511 SBI_GEN0 : SBI_DBUFF0;
6512 tmp = intel_sbi_read(dev_priv, reg, SBI_ICLK);
6513 tmp &= ~SBI_GEN0_CFG_BUFFENABLE_DISABLE;
6514 intel_sbi_write(dev_priv, reg, tmp, SBI_ICLK);
6515
6516 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
6517 if (!(tmp & SBI_SSCCTL_DISABLE)) {
6518 if (!(tmp & SBI_SSCCTL_PATHALT)) {
6519 tmp |= SBI_SSCCTL_PATHALT;
6520 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
6521 udelay(32);
6522 }
6523 tmp |= SBI_SSCCTL_DISABLE;
6524 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
6525 }
6526
6527 mutex_unlock(&dev_priv->dpio_lock);
6528}
6529
Paulo Zanonibf8fa3d2013-07-12 14:19:38 -03006530static void lpt_init_pch_refclk(struct drm_device *dev)
6531{
6532 struct drm_mode_config *mode_config = &dev->mode_config;
6533 struct intel_encoder *encoder;
6534 bool has_vga = false;
6535
6536 list_for_each_entry(encoder, &mode_config->encoder_list, base.head) {
6537 switch (encoder->type) {
6538 case INTEL_OUTPUT_ANALOG:
6539 has_vga = true;
6540 break;
6541 }
6542 }
6543
Paulo Zanoni47701c32013-07-23 11:19:25 -03006544 if (has_vga)
6545 lpt_enable_clkout_dp(dev, true, true);
6546 else
6547 lpt_disable_clkout_dp(dev);
Paulo Zanonibf8fa3d2013-07-12 14:19:38 -03006548}
6549
Paulo Zanonidde86e22012-12-01 12:04:25 -02006550/*
6551 * Initialize reference clocks when the driver loads
6552 */
6553void intel_init_pch_refclk(struct drm_device *dev)
6554{
6555 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev))
6556 ironlake_init_pch_refclk(dev);
6557 else if (HAS_PCH_LPT(dev))
6558 lpt_init_pch_refclk(dev);
6559}
6560
Jesse Barnesd9d444c2011-09-02 13:03:05 -07006561static int ironlake_get_refclk(struct drm_crtc *crtc)
6562{
6563 struct drm_device *dev = crtc->dev;
6564 struct drm_i915_private *dev_priv = dev->dev_private;
6565 struct intel_encoder *encoder;
Jesse Barnesd9d444c2011-09-02 13:03:05 -07006566 int num_connectors = 0;
6567 bool is_lvds = false;
6568
Daniel Vetter6c2b7c122012-07-05 09:50:24 +02006569 for_each_encoder_on_crtc(dev, crtc, encoder) {
Jesse Barnesd9d444c2011-09-02 13:03:05 -07006570 switch (encoder->type) {
6571 case INTEL_OUTPUT_LVDS:
6572 is_lvds = true;
6573 break;
Jesse Barnesd9d444c2011-09-02 13:03:05 -07006574 }
6575 num_connectors++;
6576 }
6577
6578 if (is_lvds && intel_panel_use_ssc(dev_priv) && num_connectors < 2) {
Ville Syrjäläe91e9412013-12-09 18:54:16 +02006579 DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n",
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03006580 dev_priv->vbt.lvds_ssc_freq);
Ville Syrjäläe91e9412013-12-09 18:54:16 +02006581 return dev_priv->vbt.lvds_ssc_freq;
Jesse Barnesd9d444c2011-09-02 13:03:05 -07006582 }
6583
6584 return 120000;
6585}
6586
Daniel Vetter6ff93602013-04-19 11:24:36 +02006587static void ironlake_set_pipeconf(struct drm_crtc *crtc)
Paulo Zanonic8203562012-09-12 10:06:29 -03006588{
6589 struct drm_i915_private *dev_priv = crtc->dev->dev_private;
6590 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6591 int pipe = intel_crtc->pipe;
6592 uint32_t val;
6593
Daniel Vetter78114072013-06-13 00:54:57 +02006594 val = 0;
Paulo Zanonic8203562012-09-12 10:06:29 -03006595
Daniel Vetter965e0c42013-03-27 00:44:57 +01006596 switch (intel_crtc->config.pipe_bpp) {
Paulo Zanonic8203562012-09-12 10:06:29 -03006597 case 18:
Daniel Vetterdfd07d72012-12-17 11:21:38 +01006598 val |= PIPECONF_6BPC;
Paulo Zanonic8203562012-09-12 10:06:29 -03006599 break;
6600 case 24:
Daniel Vetterdfd07d72012-12-17 11:21:38 +01006601 val |= PIPECONF_8BPC;
Paulo Zanonic8203562012-09-12 10:06:29 -03006602 break;
6603 case 30:
Daniel Vetterdfd07d72012-12-17 11:21:38 +01006604 val |= PIPECONF_10BPC;
Paulo Zanonic8203562012-09-12 10:06:29 -03006605 break;
6606 case 36:
Daniel Vetterdfd07d72012-12-17 11:21:38 +01006607 val |= PIPECONF_12BPC;
Paulo Zanonic8203562012-09-12 10:06:29 -03006608 break;
6609 default:
Paulo Zanonicc769b62012-09-20 18:36:03 -03006610 /* Case prevented by intel_choose_pipe_bpp_dither. */
6611 BUG();
Paulo Zanonic8203562012-09-12 10:06:29 -03006612 }
6613
Daniel Vetterd8b32242013-04-25 17:54:44 +02006614 if (intel_crtc->config.dither)
Paulo Zanonic8203562012-09-12 10:06:29 -03006615 val |= (PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_SP);
6616
Daniel Vetter6ff93602013-04-19 11:24:36 +02006617 if (intel_crtc->config.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
Paulo Zanonic8203562012-09-12 10:06:29 -03006618 val |= PIPECONF_INTERLACED_ILK;
6619 else
6620 val |= PIPECONF_PROGRESSIVE;
6621
Daniel Vetter50f3b012013-03-27 00:44:56 +01006622 if (intel_crtc->config.limited_color_range)
Ville Syrjälä3685a8f2013-01-17 16:31:28 +02006623 val |= PIPECONF_COLOR_RANGE_SELECT;
Ville Syrjälä3685a8f2013-01-17 16:31:28 +02006624
Paulo Zanonic8203562012-09-12 10:06:29 -03006625 I915_WRITE(PIPECONF(pipe), val);
6626 POSTING_READ(PIPECONF(pipe));
6627}
6628
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02006629/*
6630 * Set up the pipe CSC unit.
6631 *
6632 * Currently only full range RGB to limited range RGB conversion
6633 * is supported, but eventually this should handle various
6634 * RGB<->YCbCr scenarios as well.
6635 */
Daniel Vetter50f3b012013-03-27 00:44:56 +01006636static void intel_set_pipe_csc(struct drm_crtc *crtc)
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02006637{
6638 struct drm_device *dev = crtc->dev;
6639 struct drm_i915_private *dev_priv = dev->dev_private;
6640 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6641 int pipe = intel_crtc->pipe;
6642 uint16_t coeff = 0x7800; /* 1.0 */
6643
6644 /*
6645 * TODO: Check what kind of values actually come out of the pipe
6646 * with these coeff/postoff values and adjust to get the best
6647 * accuracy. Perhaps we even need to take the bpc value into
6648 * consideration.
6649 */
6650
Daniel Vetter50f3b012013-03-27 00:44:56 +01006651 if (intel_crtc->config.limited_color_range)
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02006652 coeff = ((235 - 16) * (1 << 12) / 255) & 0xff8; /* 0.xxx... */
6653
6654 /*
6655 * GY/GU and RY/RU should be the other way around according
6656 * to BSpec, but reality doesn't agree. Just set them up in
6657 * a way that results in the correct picture.
6658 */
6659 I915_WRITE(PIPE_CSC_COEFF_RY_GY(pipe), coeff << 16);
6660 I915_WRITE(PIPE_CSC_COEFF_BY(pipe), 0);
6661
6662 I915_WRITE(PIPE_CSC_COEFF_RU_GU(pipe), coeff);
6663 I915_WRITE(PIPE_CSC_COEFF_BU(pipe), 0);
6664
6665 I915_WRITE(PIPE_CSC_COEFF_RV_GV(pipe), 0);
6666 I915_WRITE(PIPE_CSC_COEFF_BV(pipe), coeff << 16);
6667
6668 I915_WRITE(PIPE_CSC_PREOFF_HI(pipe), 0);
6669 I915_WRITE(PIPE_CSC_PREOFF_ME(pipe), 0);
6670 I915_WRITE(PIPE_CSC_PREOFF_LO(pipe), 0);
6671
6672 if (INTEL_INFO(dev)->gen > 6) {
6673 uint16_t postoff = 0;
6674
Daniel Vetter50f3b012013-03-27 00:44:56 +01006675 if (intel_crtc->config.limited_color_range)
Ville Syrjälä32cf0cb2013-11-28 22:10:38 +02006676 postoff = (16 * (1 << 12) / 255) & 0x1fff;
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02006677
6678 I915_WRITE(PIPE_CSC_POSTOFF_HI(pipe), postoff);
6679 I915_WRITE(PIPE_CSC_POSTOFF_ME(pipe), postoff);
6680 I915_WRITE(PIPE_CSC_POSTOFF_LO(pipe), postoff);
6681
6682 I915_WRITE(PIPE_CSC_MODE(pipe), 0);
6683 } else {
6684 uint32_t mode = CSC_MODE_YUV_TO_RGB;
6685
Daniel Vetter50f3b012013-03-27 00:44:56 +01006686 if (intel_crtc->config.limited_color_range)
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02006687 mode |= CSC_BLACK_SCREEN_OFFSET;
6688
6689 I915_WRITE(PIPE_CSC_MODE(pipe), mode);
6690 }
6691}
6692
Daniel Vetter6ff93602013-04-19 11:24:36 +02006693static void haswell_set_pipeconf(struct drm_crtc *crtc)
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03006694{
Paulo Zanoni756f85c2013-11-02 21:07:38 -07006695 struct drm_device *dev = crtc->dev;
6696 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03006697 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Paulo Zanoni756f85c2013-11-02 21:07:38 -07006698 enum pipe pipe = intel_crtc->pipe;
Daniel Vetter3b117c82013-04-17 20:15:07 +02006699 enum transcoder cpu_transcoder = intel_crtc->config.cpu_transcoder;
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03006700 uint32_t val;
6701
Daniel Vetter3eff4fa2013-06-13 00:54:59 +02006702 val = 0;
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03006703
Paulo Zanoni756f85c2013-11-02 21:07:38 -07006704 if (IS_HASWELL(dev) && intel_crtc->config.dither)
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03006705 val |= (PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_SP);
6706
Daniel Vetter6ff93602013-04-19 11:24:36 +02006707 if (intel_crtc->config.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03006708 val |= PIPECONF_INTERLACED_ILK;
6709 else
6710 val |= PIPECONF_PROGRESSIVE;
6711
Paulo Zanoni702e7a52012-10-23 18:29:59 -02006712 I915_WRITE(PIPECONF(cpu_transcoder), val);
6713 POSTING_READ(PIPECONF(cpu_transcoder));
Daniel Vetter3eff4fa2013-06-13 00:54:59 +02006714
6715 I915_WRITE(GAMMA_MODE(intel_crtc->pipe), GAMMA_MODE_MODE_8BIT);
6716 POSTING_READ(GAMMA_MODE(intel_crtc->pipe));
Paulo Zanoni756f85c2013-11-02 21:07:38 -07006717
6718 if (IS_BROADWELL(dev)) {
6719 val = 0;
6720
6721 switch (intel_crtc->config.pipe_bpp) {
6722 case 18:
6723 val |= PIPEMISC_DITHER_6_BPC;
6724 break;
6725 case 24:
6726 val |= PIPEMISC_DITHER_8_BPC;
6727 break;
6728 case 30:
6729 val |= PIPEMISC_DITHER_10_BPC;
6730 break;
6731 case 36:
6732 val |= PIPEMISC_DITHER_12_BPC;
6733 break;
6734 default:
6735 /* Case prevented by pipe_config_set_bpp. */
6736 BUG();
6737 }
6738
6739 if (intel_crtc->config.dither)
6740 val |= PIPEMISC_DITHER_ENABLE | PIPEMISC_DITHER_TYPE_SP;
6741
6742 I915_WRITE(PIPEMISC(pipe), val);
6743 }
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03006744}
6745
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03006746static bool ironlake_compute_clocks(struct drm_crtc *crtc,
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03006747 intel_clock_t *clock,
6748 bool *has_reduced_clock,
6749 intel_clock_t *reduced_clock)
6750{
6751 struct drm_device *dev = crtc->dev;
6752 struct drm_i915_private *dev_priv = dev->dev_private;
6753 struct intel_encoder *intel_encoder;
6754 int refclk;
6755 const intel_limit_t *limit;
Daniel Vettera16af7212013-04-30 14:01:44 +02006756 bool ret, is_lvds = false;
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03006757
6758 for_each_encoder_on_crtc(dev, crtc, intel_encoder) {
6759 switch (intel_encoder->type) {
6760 case INTEL_OUTPUT_LVDS:
6761 is_lvds = true;
6762 break;
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03006763 }
6764 }
6765
6766 refclk = ironlake_get_refclk(crtc);
6767
6768 /*
6769 * Returns a set of divisors for the desired target clock with the given
6770 * refclk, or FALSE. The returned values represent the clock equation:
6771 * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2.
6772 */
6773 limit = intel_limit(crtc, refclk);
Daniel Vetterff9a6752013-06-01 17:16:21 +02006774 ret = dev_priv->display.find_dpll(limit, crtc,
6775 to_intel_crtc(crtc)->config.port_clock,
Daniel Vetteree9300b2013-06-03 22:40:22 +02006776 refclk, NULL, clock);
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03006777 if (!ret)
6778 return false;
6779
6780 if (is_lvds && dev_priv->lvds_downclock_avail) {
6781 /*
6782 * Ensure we match the reduced clock's P to the target clock.
6783 * If the clocks don't match, we can't switch the display clock
6784 * by using the FP0/FP1. In such case we will disable the LVDS
6785 * downclock feature.
6786 */
Daniel Vetteree9300b2013-06-03 22:40:22 +02006787 *has_reduced_clock =
6788 dev_priv->display.find_dpll(limit, crtc,
6789 dev_priv->lvds_downclock,
6790 refclk, clock,
6791 reduced_clock);
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03006792 }
6793
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03006794 return true;
6795}
6796
Paulo Zanonid4b19312012-11-29 11:29:32 -02006797int ironlake_get_lanes_required(int target_clock, int link_bw, int bpp)
6798{
6799 /*
6800 * Account for spread spectrum to avoid
6801 * oversubscribing the link. Max center spread
6802 * is 2.5%; use 5% for safety's sake.
6803 */
6804 u32 bps = target_clock * bpp * 21 / 20;
Ville Syrjälä619d4d02014-02-27 14:23:14 +02006805 return DIV_ROUND_UP(bps, link_bw * 8);
Paulo Zanonid4b19312012-11-29 11:29:32 -02006806}
6807
Daniel Vetter7429e9d2013-04-20 17:19:46 +02006808static bool ironlake_needs_fb_cb_tune(struct dpll *dpll, int factor)
Daniel Vetter6cf86a52013-04-02 23:38:10 +02006809{
Daniel Vetter7429e9d2013-04-20 17:19:46 +02006810 return i9xx_dpll_compute_m(dpll) < factor * dpll->n;
Paulo Zanonif48d8f22012-09-20 18:36:04 -03006811}
6812
Paulo Zanonide13a2e2012-09-20 18:36:05 -03006813static uint32_t ironlake_compute_dpll(struct intel_crtc *intel_crtc,
Daniel Vetter7429e9d2013-04-20 17:19:46 +02006814 u32 *fp,
Daniel Vetter9a7c7892013-04-04 22:20:34 +02006815 intel_clock_t *reduced_clock, u32 *fp2)
Paulo Zanonide13a2e2012-09-20 18:36:05 -03006816{
6817 struct drm_crtc *crtc = &intel_crtc->base;
6818 struct drm_device *dev = crtc->dev;
6819 struct drm_i915_private *dev_priv = dev->dev_private;
6820 struct intel_encoder *intel_encoder;
6821 uint32_t dpll;
Daniel Vetter6cc5f342013-03-27 00:44:53 +01006822 int factor, num_connectors = 0;
Daniel Vetter09ede542013-04-30 14:01:45 +02006823 bool is_lvds = false, is_sdvo = false;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03006824
6825 for_each_encoder_on_crtc(dev, crtc, intel_encoder) {
6826 switch (intel_encoder->type) {
6827 case INTEL_OUTPUT_LVDS:
6828 is_lvds = true;
6829 break;
6830 case INTEL_OUTPUT_SDVO:
6831 case INTEL_OUTPUT_HDMI:
6832 is_sdvo = true;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03006833 break;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03006834 }
6835
6836 num_connectors++;
6837 }
Jesse Barnes79e53942008-11-07 14:24:08 -08006838
Chris Wilsonc1858122010-12-03 21:35:48 +00006839 /* Enable autotuning of the PLL clock (if permissible) */
Eric Anholt8febb292011-03-30 13:01:07 -07006840 factor = 21;
6841 if (is_lvds) {
6842 if ((intel_panel_use_ssc(dev_priv) &&
Ville Syrjäläe91e9412013-12-09 18:54:16 +02006843 dev_priv->vbt.lvds_ssc_freq == 100000) ||
Daniel Vetterf0b44052013-04-04 22:20:33 +02006844 (HAS_PCH_IBX(dev) && intel_is_dual_link_lvds(dev)))
Eric Anholt8febb292011-03-30 13:01:07 -07006845 factor = 25;
Daniel Vetter09ede542013-04-30 14:01:45 +02006846 } else if (intel_crtc->config.sdvo_tv_clock)
Eric Anholt8febb292011-03-30 13:01:07 -07006847 factor = 20;
Chris Wilsonc1858122010-12-03 21:35:48 +00006848
Daniel Vetter7429e9d2013-04-20 17:19:46 +02006849 if (ironlake_needs_fb_cb_tune(&intel_crtc->config.dpll, factor))
Daniel Vetter7d0ac5b2013-04-04 22:20:32 +02006850 *fp |= FP_CB_TUNE;
Chris Wilsonc1858122010-12-03 21:35:48 +00006851
Daniel Vetter9a7c7892013-04-04 22:20:34 +02006852 if (fp2 && (reduced_clock->m < factor * reduced_clock->n))
6853 *fp2 |= FP_CB_TUNE;
6854
Chris Wilson5eddb702010-09-11 13:48:45 +01006855 dpll = 0;
Zhenyu Wang2c072452009-06-05 15:38:42 +08006856
Eric Anholta07d6782011-03-30 13:01:08 -07006857 if (is_lvds)
6858 dpll |= DPLLB_MODE_LVDS;
6859 else
6860 dpll |= DPLLB_MODE_DAC_SERIAL;
Daniel Vetter198a037f2013-04-19 11:14:37 +02006861
Daniel Vetteref1b4602013-06-01 17:17:04 +02006862 dpll |= (intel_crtc->config.pixel_multiplier - 1)
6863 << PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT;
Daniel Vetter198a037f2013-04-19 11:14:37 +02006864
6865 if (is_sdvo)
Daniel Vetter4a33e482013-07-06 12:52:05 +02006866 dpll |= DPLL_SDVO_HIGH_SPEED;
Daniel Vetter9566e9a2013-04-19 11:14:36 +02006867 if (intel_crtc->config.has_dp_encoder)
Daniel Vetter4a33e482013-07-06 12:52:05 +02006868 dpll |= DPLL_SDVO_HIGH_SPEED;
Jesse Barnes79e53942008-11-07 14:24:08 -08006869
Eric Anholta07d6782011-03-30 13:01:08 -07006870 /* compute bitmask from p1 value */
Daniel Vetter7429e9d2013-04-20 17:19:46 +02006871 dpll |= (1 << (intel_crtc->config.dpll.p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
Eric Anholta07d6782011-03-30 13:01:08 -07006872 /* also FPA1 */
Daniel Vetter7429e9d2013-04-20 17:19:46 +02006873 dpll |= (1 << (intel_crtc->config.dpll.p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
Eric Anholta07d6782011-03-30 13:01:08 -07006874
Daniel Vetter7429e9d2013-04-20 17:19:46 +02006875 switch (intel_crtc->config.dpll.p2) {
Eric Anholta07d6782011-03-30 13:01:08 -07006876 case 5:
6877 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
6878 break;
6879 case 7:
6880 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
6881 break;
6882 case 10:
6883 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
6884 break;
6885 case 14:
6886 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
6887 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08006888 }
6889
Daniel Vetterb4c09f32013-04-30 14:01:42 +02006890 if (is_lvds && intel_panel_use_ssc(dev_priv) && num_connectors < 2)
Kristian Høgsberg43565a02009-02-13 20:56:52 -05006891 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
Jesse Barnes79e53942008-11-07 14:24:08 -08006892 else
6893 dpll |= PLL_REF_INPUT_DREFCLK;
6894
Daniel Vetter959e16d2013-06-05 13:34:21 +02006895 return dpll | DPLL_VCO_ENABLE;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03006896}
6897
Jesse Barnes79e53942008-11-07 14:24:08 -08006898static int ironlake_crtc_mode_set(struct drm_crtc *crtc,
Jesse Barnes79e53942008-11-07 14:24:08 -08006899 int x, int y,
Daniel Vetter94352cf2012-07-05 22:51:56 +02006900 struct drm_framebuffer *fb)
Jesse Barnes79e53942008-11-07 14:24:08 -08006901{
6902 struct drm_device *dev = crtc->dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08006903 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03006904 int num_connectors = 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08006905 intel_clock_t clock, reduced_clock;
Daniel Vettercbbab5b2013-04-19 11:14:31 +02006906 u32 dpll = 0, fp = 0, fp2 = 0;
Paulo Zanonie2f12b02012-09-20 18:36:06 -03006907 bool ok, has_reduced_clock = false;
Daniel Vetter8b470472013-03-28 10:41:59 +01006908 bool is_lvds = false;
Paulo Zanonif48d8f22012-09-20 18:36:04 -03006909 struct intel_encoder *encoder;
Daniel Vettere2b78262013-06-07 23:10:03 +02006910 struct intel_shared_dpll *pll;
Jesse Barnes79e53942008-11-07 14:24:08 -08006911
6912 for_each_encoder_on_crtc(dev, crtc, encoder) {
6913 switch (encoder->type) {
6914 case INTEL_OUTPUT_LVDS:
6915 is_lvds = true;
6916 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08006917 }
6918
6919 num_connectors++;
6920 }
6921
Paulo Zanoni5dc52982012-10-05 12:05:56 -03006922 WARN(!(HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev)),
6923 "Unexpected PCH type %d\n", INTEL_PCH_TYPE(dev));
6924
Daniel Vetterff9a6752013-06-01 17:16:21 +02006925 ok = ironlake_compute_clocks(crtc, &clock,
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03006926 &has_reduced_clock, &reduced_clock);
Daniel Vetteree9300b2013-06-03 22:40:22 +02006927 if (!ok && !intel_crtc->config.clock_set) {
Jesse Barnes79e53942008-11-07 14:24:08 -08006928 DRM_ERROR("Couldn't find PLL settings for mode!\n");
6929 return -EINVAL;
6930 }
Daniel Vetterf47709a2013-03-28 10:42:02 +01006931 /* Compat-code for transition, will disappear. */
6932 if (!intel_crtc->config.clock_set) {
6933 intel_crtc->config.dpll.n = clock.n;
6934 intel_crtc->config.dpll.m1 = clock.m1;
6935 intel_crtc->config.dpll.m2 = clock.m2;
6936 intel_crtc->config.dpll.p1 = clock.p1;
6937 intel_crtc->config.dpll.p2 = clock.p2;
6938 }
Jesse Barnes79e53942008-11-07 14:24:08 -08006939
Paulo Zanoni5dc52982012-10-05 12:05:56 -03006940 /* CPU eDP is the only output that doesn't need a PCH PLL of its own. */
Daniel Vetter8b470472013-03-28 10:41:59 +01006941 if (intel_crtc->config.has_pch_encoder) {
Daniel Vetter7429e9d2013-04-20 17:19:46 +02006942 fp = i9xx_dpll_compute_fp(&intel_crtc->config.dpll);
Daniel Vettercbbab5b2013-04-19 11:14:31 +02006943 if (has_reduced_clock)
Daniel Vetter7429e9d2013-04-20 17:19:46 +02006944 fp2 = i9xx_dpll_compute_fp(&reduced_clock);
Daniel Vettercbbab5b2013-04-19 11:14:31 +02006945
Daniel Vetter7429e9d2013-04-20 17:19:46 +02006946 dpll = ironlake_compute_dpll(intel_crtc,
Daniel Vettercbbab5b2013-04-19 11:14:31 +02006947 &fp, &reduced_clock,
6948 has_reduced_clock ? &fp2 : NULL);
6949
Daniel Vetter959e16d2013-06-05 13:34:21 +02006950 intel_crtc->config.dpll_hw_state.dpll = dpll;
Daniel Vetter66e985c2013-06-05 13:34:20 +02006951 intel_crtc->config.dpll_hw_state.fp0 = fp;
6952 if (has_reduced_clock)
6953 intel_crtc->config.dpll_hw_state.fp1 = fp2;
6954 else
6955 intel_crtc->config.dpll_hw_state.fp1 = fp;
6956
Daniel Vetterb89a1d32013-06-05 13:34:24 +02006957 pll = intel_get_shared_dpll(intel_crtc);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01006958 if (pll == NULL) {
Ville Syrjälä84f44ce2013-04-17 17:48:49 +03006959 DRM_DEBUG_DRIVER("failed to find PLL for pipe %c\n",
Daniel Vetter29407aa2014-04-24 23:55:08 +02006960 pipe_name(intel_crtc->pipe));
Jesse Barnes4b645f12011-10-12 09:51:31 -07006961 return -EINVAL;
6962 }
Jesse Barnesee7b9f92012-04-20 17:11:53 +01006963 } else
Daniel Vettere72f9fb2013-06-05 13:34:06 +02006964 intel_put_shared_dpll(intel_crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08006965
Jani Nikulad330a952014-01-21 11:24:25 +02006966 if (is_lvds && has_reduced_clock && i915.powersave)
Daniel Vetterbcd644e2013-06-05 13:34:22 +02006967 intel_crtc->lowfreq_avail = true;
6968 else
6969 intel_crtc->lowfreq_avail = false;
Daniel Vettere2b78262013-06-07 23:10:03 +02006970
Daniel Vetterc8f7a0d2014-04-24 23:55:04 +02006971 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08006972}
6973
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03006974static void intel_pch_transcoder_get_m_n(struct intel_crtc *crtc,
6975 struct intel_link_m_n *m_n)
Daniel Vetter72419202013-04-04 13:28:53 +02006976{
6977 struct drm_device *dev = crtc->base.dev;
6978 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03006979 enum pipe pipe = crtc->pipe;
Daniel Vetter72419202013-04-04 13:28:53 +02006980
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03006981 m_n->link_m = I915_READ(PCH_TRANS_LINK_M1(pipe));
6982 m_n->link_n = I915_READ(PCH_TRANS_LINK_N1(pipe));
6983 m_n->gmch_m = I915_READ(PCH_TRANS_DATA_M1(pipe))
6984 & ~TU_SIZE_MASK;
6985 m_n->gmch_n = I915_READ(PCH_TRANS_DATA_N1(pipe));
6986 m_n->tu = ((I915_READ(PCH_TRANS_DATA_M1(pipe))
6987 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
6988}
6989
6990static void intel_cpu_transcoder_get_m_n(struct intel_crtc *crtc,
6991 enum transcoder transcoder,
6992 struct intel_link_m_n *m_n)
6993{
6994 struct drm_device *dev = crtc->base.dev;
6995 struct drm_i915_private *dev_priv = dev->dev_private;
6996 enum pipe pipe = crtc->pipe;
6997
6998 if (INTEL_INFO(dev)->gen >= 5) {
6999 m_n->link_m = I915_READ(PIPE_LINK_M1(transcoder));
7000 m_n->link_n = I915_READ(PIPE_LINK_N1(transcoder));
7001 m_n->gmch_m = I915_READ(PIPE_DATA_M1(transcoder))
7002 & ~TU_SIZE_MASK;
7003 m_n->gmch_n = I915_READ(PIPE_DATA_N1(transcoder));
7004 m_n->tu = ((I915_READ(PIPE_DATA_M1(transcoder))
7005 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
7006 } else {
7007 m_n->link_m = I915_READ(PIPE_LINK_M_G4X(pipe));
7008 m_n->link_n = I915_READ(PIPE_LINK_N_G4X(pipe));
7009 m_n->gmch_m = I915_READ(PIPE_DATA_M_G4X(pipe))
7010 & ~TU_SIZE_MASK;
7011 m_n->gmch_n = I915_READ(PIPE_DATA_N_G4X(pipe));
7012 m_n->tu = ((I915_READ(PIPE_DATA_M_G4X(pipe))
7013 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
7014 }
7015}
7016
7017void intel_dp_get_m_n(struct intel_crtc *crtc,
7018 struct intel_crtc_config *pipe_config)
7019{
7020 if (crtc->config.has_pch_encoder)
7021 intel_pch_transcoder_get_m_n(crtc, &pipe_config->dp_m_n);
7022 else
7023 intel_cpu_transcoder_get_m_n(crtc, pipe_config->cpu_transcoder,
7024 &pipe_config->dp_m_n);
7025}
7026
Daniel Vetter72419202013-04-04 13:28:53 +02007027static void ironlake_get_fdi_m_n_config(struct intel_crtc *crtc,
7028 struct intel_crtc_config *pipe_config)
7029{
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03007030 intel_cpu_transcoder_get_m_n(crtc, pipe_config->cpu_transcoder,
7031 &pipe_config->fdi_m_n);
Daniel Vetter72419202013-04-04 13:28:53 +02007032}
7033
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007034static void ironlake_get_pfit_config(struct intel_crtc *crtc,
7035 struct intel_crtc_config *pipe_config)
7036{
7037 struct drm_device *dev = crtc->base.dev;
7038 struct drm_i915_private *dev_priv = dev->dev_private;
7039 uint32_t tmp;
7040
7041 tmp = I915_READ(PF_CTL(crtc->pipe));
7042
7043 if (tmp & PF_ENABLE) {
Chris Wilsonfd4daa92013-08-27 17:04:17 +01007044 pipe_config->pch_pfit.enabled = true;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007045 pipe_config->pch_pfit.pos = I915_READ(PF_WIN_POS(crtc->pipe));
7046 pipe_config->pch_pfit.size = I915_READ(PF_WIN_SZ(crtc->pipe));
Daniel Vettercb8b2a32013-06-01 17:16:23 +02007047
7048 /* We currently do not free assignements of panel fitters on
7049 * ivb/hsw (since we don't use the higher upscaling modes which
7050 * differentiates them) so just WARN about this case for now. */
7051 if (IS_GEN7(dev)) {
7052 WARN_ON((tmp & PF_PIPE_SEL_MASK_IVB) !=
7053 PF_PIPE_SEL_IVB(crtc->pipe));
7054 }
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007055 }
Jesse Barnes79e53942008-11-07 14:24:08 -08007056}
7057
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007058static void ironlake_get_plane_config(struct intel_crtc *crtc,
7059 struct intel_plane_config *plane_config)
7060{
7061 struct drm_device *dev = crtc->base.dev;
7062 struct drm_i915_private *dev_priv = dev->dev_private;
7063 u32 val, base, offset;
7064 int pipe = crtc->pipe, plane = crtc->plane;
7065 int fourcc, pixel_format;
7066 int aligned_height;
7067
Dave Airlie66e514c2014-04-03 07:51:54 +10007068 crtc->base.primary->fb = kzalloc(sizeof(struct intel_framebuffer), GFP_KERNEL);
7069 if (!crtc->base.primary->fb) {
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007070 DRM_DEBUG_KMS("failed to alloc fb\n");
7071 return;
7072 }
7073
7074 val = I915_READ(DSPCNTR(plane));
7075
7076 if (INTEL_INFO(dev)->gen >= 4)
7077 if (val & DISPPLANE_TILED)
7078 plane_config->tiled = true;
7079
7080 pixel_format = val & DISPPLANE_PIXFORMAT_MASK;
7081 fourcc = intel_format_to_fourcc(pixel_format);
Dave Airlie66e514c2014-04-03 07:51:54 +10007082 crtc->base.primary->fb->pixel_format = fourcc;
7083 crtc->base.primary->fb->bits_per_pixel =
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007084 drm_format_plane_cpp(fourcc, 0) * 8;
7085
7086 base = I915_READ(DSPSURF(plane)) & 0xfffff000;
7087 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
7088 offset = I915_READ(DSPOFFSET(plane));
7089 } else {
7090 if (plane_config->tiled)
7091 offset = I915_READ(DSPTILEOFF(plane));
7092 else
7093 offset = I915_READ(DSPLINOFF(plane));
7094 }
7095 plane_config->base = base;
7096
7097 val = I915_READ(PIPESRC(pipe));
Dave Airlie66e514c2014-04-03 07:51:54 +10007098 crtc->base.primary->fb->width = ((val >> 16) & 0xfff) + 1;
7099 crtc->base.primary->fb->height = ((val >> 0) & 0xfff) + 1;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007100
7101 val = I915_READ(DSPSTRIDE(pipe));
Dave Airlie66e514c2014-04-03 07:51:54 +10007102 crtc->base.primary->fb->pitches[0] = val & 0xffffff80;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007103
Dave Airlie66e514c2014-04-03 07:51:54 +10007104 aligned_height = intel_align_height(dev, crtc->base.primary->fb->height,
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007105 plane_config->tiled);
7106
Dave Airlie66e514c2014-04-03 07:51:54 +10007107 plane_config->size = ALIGN(crtc->base.primary->fb->pitches[0] *
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007108 aligned_height, PAGE_SIZE);
7109
7110 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 +10007111 pipe, plane, crtc->base.primary->fb->width,
7112 crtc->base.primary->fb->height,
7113 crtc->base.primary->fb->bits_per_pixel, base,
7114 crtc->base.primary->fb->pitches[0],
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007115 plane_config->size);
7116}
7117
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01007118static bool ironlake_get_pipe_config(struct intel_crtc *crtc,
7119 struct intel_crtc_config *pipe_config)
7120{
7121 struct drm_device *dev = crtc->base.dev;
7122 struct drm_i915_private *dev_priv = dev->dev_private;
7123 uint32_t tmp;
7124
Daniel Vettere143a212013-07-04 12:01:15 +02007125 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +02007126 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
Daniel Vettereccb1402013-05-22 00:50:22 +02007127
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01007128 tmp = I915_READ(PIPECONF(crtc->pipe));
7129 if (!(tmp & PIPECONF_ENABLE))
7130 return false;
7131
Ville Syrjälä42571ae2013-09-06 23:29:00 +03007132 switch (tmp & PIPECONF_BPC_MASK) {
7133 case PIPECONF_6BPC:
7134 pipe_config->pipe_bpp = 18;
7135 break;
7136 case PIPECONF_8BPC:
7137 pipe_config->pipe_bpp = 24;
7138 break;
7139 case PIPECONF_10BPC:
7140 pipe_config->pipe_bpp = 30;
7141 break;
7142 case PIPECONF_12BPC:
7143 pipe_config->pipe_bpp = 36;
7144 break;
7145 default:
7146 break;
7147 }
7148
Daniel Vetterb5a9fa02014-04-24 23:54:49 +02007149 if (tmp & PIPECONF_COLOR_RANGE_SELECT)
7150 pipe_config->limited_color_range = true;
7151
Daniel Vetterab9412b2013-05-03 11:49:46 +02007152 if (I915_READ(PCH_TRANSCONF(crtc->pipe)) & TRANS_ENABLE) {
Daniel Vetter66e985c2013-06-05 13:34:20 +02007153 struct intel_shared_dpll *pll;
7154
Daniel Vetter88adfff2013-03-28 10:42:01 +01007155 pipe_config->has_pch_encoder = true;
7156
Daniel Vetter627eb5a2013-04-29 19:33:42 +02007157 tmp = I915_READ(FDI_RX_CTL(crtc->pipe));
7158 pipe_config->fdi_lanes = ((FDI_DP_PORT_WIDTH_MASK & tmp) >>
7159 FDI_DP_PORT_WIDTH_SHIFT) + 1;
Daniel Vetter72419202013-04-04 13:28:53 +02007160
7161 ironlake_get_fdi_m_n_config(crtc, pipe_config);
Daniel Vetter6c49f242013-06-06 12:45:25 +02007162
Daniel Vetterc0d43d62013-06-07 23:11:08 +02007163 if (HAS_PCH_IBX(dev_priv->dev)) {
Daniel Vetterd94ab062013-07-04 12:01:16 +02007164 pipe_config->shared_dpll =
7165 (enum intel_dpll_id) crtc->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +02007166 } else {
7167 tmp = I915_READ(PCH_DPLL_SEL);
7168 if (tmp & TRANS_DPLLB_SEL(crtc->pipe))
7169 pipe_config->shared_dpll = DPLL_ID_PCH_PLL_B;
7170 else
7171 pipe_config->shared_dpll = DPLL_ID_PCH_PLL_A;
7172 }
Daniel Vetter66e985c2013-06-05 13:34:20 +02007173
7174 pll = &dev_priv->shared_dplls[pipe_config->shared_dpll];
7175
7176 WARN_ON(!pll->get_hw_state(dev_priv, pll,
7177 &pipe_config->dpll_hw_state));
Daniel Vetterc93f54c2013-06-27 19:47:19 +02007178
7179 tmp = pipe_config->dpll_hw_state.dpll;
7180 pipe_config->pixel_multiplier =
7181 ((tmp & PLL_REF_SDVO_HDMI_MULTIPLIER_MASK)
7182 >> PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT) + 1;
Ville Syrjälä18442d02013-09-13 16:00:08 +03007183
7184 ironlake_pch_clock_get(crtc, pipe_config);
Daniel Vetter6c49f242013-06-06 12:45:25 +02007185 } else {
7186 pipe_config->pixel_multiplier = 1;
Daniel Vetter627eb5a2013-04-29 19:33:42 +02007187 }
7188
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02007189 intel_get_pipe_timings(crtc, pipe_config);
7190
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007191 ironlake_get_pfit_config(crtc, pipe_config);
7192
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01007193 return true;
7194}
7195
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007196static void assert_can_disable_lcpll(struct drm_i915_private *dev_priv)
7197{
7198 struct drm_device *dev = dev_priv->dev;
7199 struct intel_ddi_plls *plls = &dev_priv->ddi_plls;
7200 struct intel_crtc *crtc;
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007201
Damien Lespiaud3fcc802014-05-13 23:32:22 +01007202 for_each_intel_crtc(dev, crtc)
Paulo Zanoni798183c2013-12-06 20:29:01 -02007203 WARN(crtc->active, "CRTC for pipe %c enabled\n",
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007204 pipe_name(crtc->pipe));
7205
7206 WARN(I915_READ(HSW_PWR_WELL_DRIVER), "Power well on\n");
7207 WARN(plls->spll_refcount, "SPLL enabled\n");
7208 WARN(plls->wrpll1_refcount, "WRPLL1 enabled\n");
7209 WARN(plls->wrpll2_refcount, "WRPLL2 enabled\n");
7210 WARN(I915_READ(PCH_PP_STATUS) & PP_ON, "Panel power on\n");
7211 WARN(I915_READ(BLC_PWM_CPU_CTL2) & BLM_PWM_ENABLE,
7212 "CPU PWM1 enabled\n");
7213 WARN(I915_READ(HSW_BLC_PWM2_CTL) & BLM_PWM_ENABLE,
7214 "CPU PWM2 enabled\n");
7215 WARN(I915_READ(BLC_PWM_PCH_CTL1) & BLM_PCH_PWM_ENABLE,
7216 "PCH PWM1 enabled\n");
7217 WARN(I915_READ(UTIL_PIN_CTL) & UTIL_PIN_ENABLE,
7218 "Utility pin enabled\n");
7219 WARN(I915_READ(PCH_GTC_CTL) & PCH_GTC_ENABLE, "PCH GTC enabled\n");
7220
Paulo Zanoni9926ada2014-04-01 19:39:47 -03007221 /*
7222 * In theory we can still leave IRQs enabled, as long as only the HPD
7223 * interrupts remain enabled. We used to check for that, but since it's
7224 * gen-specific and since we only disable LCPLL after we fully disable
7225 * the interrupts, the check below should be enough.
7226 */
7227 WARN(!dev_priv->pm.irqs_disabled, "IRQs enabled\n");
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007228}
7229
Paulo Zanoni3c4c9b82014-03-07 20:12:36 -03007230static void hsw_write_dcomp(struct drm_i915_private *dev_priv, uint32_t val)
7231{
7232 struct drm_device *dev = dev_priv->dev;
7233
7234 if (IS_HASWELL(dev)) {
7235 mutex_lock(&dev_priv->rps.hw_lock);
7236 if (sandybridge_pcode_write(dev_priv, GEN6_PCODE_WRITE_D_COMP,
7237 val))
7238 DRM_ERROR("Failed to disable D_COMP\n");
7239 mutex_unlock(&dev_priv->rps.hw_lock);
7240 } else {
7241 I915_WRITE(D_COMP, val);
7242 }
7243 POSTING_READ(D_COMP);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007244}
7245
7246/*
7247 * This function implements pieces of two sequences from BSpec:
7248 * - Sequence for display software to disable LCPLL
7249 * - Sequence for display software to allow package C8+
7250 * The steps implemented here are just the steps that actually touch the LCPLL
7251 * register. Callers should take care of disabling all the display engine
7252 * functions, doing the mode unset, fixing interrupts, etc.
7253 */
Paulo Zanoni6ff58d52013-09-24 13:52:57 -03007254static void hsw_disable_lcpll(struct drm_i915_private *dev_priv,
7255 bool switch_to_fclk, bool allow_power_down)
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007256{
7257 uint32_t val;
7258
7259 assert_can_disable_lcpll(dev_priv);
7260
7261 val = I915_READ(LCPLL_CTL);
7262
7263 if (switch_to_fclk) {
7264 val |= LCPLL_CD_SOURCE_FCLK;
7265 I915_WRITE(LCPLL_CTL, val);
7266
7267 if (wait_for_atomic_us(I915_READ(LCPLL_CTL) &
7268 LCPLL_CD_SOURCE_FCLK_DONE, 1))
7269 DRM_ERROR("Switching to FCLK failed\n");
7270
7271 val = I915_READ(LCPLL_CTL);
7272 }
7273
7274 val |= LCPLL_PLL_DISABLE;
7275 I915_WRITE(LCPLL_CTL, val);
7276 POSTING_READ(LCPLL_CTL);
7277
7278 if (wait_for((I915_READ(LCPLL_CTL) & LCPLL_PLL_LOCK) == 0, 1))
7279 DRM_ERROR("LCPLL still locked\n");
7280
7281 val = I915_READ(D_COMP);
7282 val |= D_COMP_COMP_DISABLE;
Paulo Zanoni3c4c9b82014-03-07 20:12:36 -03007283 hsw_write_dcomp(dev_priv, val);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007284 ndelay(100);
7285
7286 if (wait_for((I915_READ(D_COMP) & D_COMP_RCOMP_IN_PROGRESS) == 0, 1))
7287 DRM_ERROR("D_COMP RCOMP still in progress\n");
7288
7289 if (allow_power_down) {
7290 val = I915_READ(LCPLL_CTL);
7291 val |= LCPLL_POWER_DOWN_ALLOW;
7292 I915_WRITE(LCPLL_CTL, val);
7293 POSTING_READ(LCPLL_CTL);
7294 }
7295}
7296
7297/*
7298 * Fully restores LCPLL, disallowing power down and switching back to LCPLL
7299 * source.
7300 */
Paulo Zanoni6ff58d52013-09-24 13:52:57 -03007301static void hsw_restore_lcpll(struct drm_i915_private *dev_priv)
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007302{
7303 uint32_t val;
Paulo Zanonia8a8bd52014-03-07 20:08:05 -03007304 unsigned long irqflags;
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007305
7306 val = I915_READ(LCPLL_CTL);
7307
7308 if ((val & (LCPLL_PLL_LOCK | LCPLL_PLL_DISABLE | LCPLL_CD_SOURCE_FCLK |
7309 LCPLL_POWER_DOWN_ALLOW)) == LCPLL_PLL_LOCK)
7310 return;
7311
Paulo Zanonia8a8bd52014-03-07 20:08:05 -03007312 /*
7313 * Make sure we're not on PC8 state before disabling PC8, otherwise
7314 * we'll hang the machine. To prevent PC8 state, just enable force_wake.
7315 *
7316 * The other problem is that hsw_restore_lcpll() is called as part of
7317 * the runtime PM resume sequence, so we can't just call
7318 * gen6_gt_force_wake_get() because that function calls
7319 * intel_runtime_pm_get(), and we can't change the runtime PM refcount
7320 * while we are on the resume sequence. So to solve this problem we have
7321 * to call special forcewake code that doesn't touch runtime PM and
7322 * doesn't enable the forcewake delayed work.
7323 */
7324 spin_lock_irqsave(&dev_priv->uncore.lock, irqflags);
7325 if (dev_priv->uncore.forcewake_count++ == 0)
7326 dev_priv->uncore.funcs.force_wake_get(dev_priv, FORCEWAKE_ALL);
7327 spin_unlock_irqrestore(&dev_priv->uncore.lock, irqflags);
Paulo Zanoni215733f2013-08-19 13:18:07 -03007328
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007329 if (val & LCPLL_POWER_DOWN_ALLOW) {
7330 val &= ~LCPLL_POWER_DOWN_ALLOW;
7331 I915_WRITE(LCPLL_CTL, val);
Daniel Vetter35d8f2e2013-08-21 23:38:08 +02007332 POSTING_READ(LCPLL_CTL);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007333 }
7334
7335 val = I915_READ(D_COMP);
7336 val |= D_COMP_COMP_FORCE;
7337 val &= ~D_COMP_COMP_DISABLE;
Paulo Zanoni3c4c9b82014-03-07 20:12:36 -03007338 hsw_write_dcomp(dev_priv, val);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007339
7340 val = I915_READ(LCPLL_CTL);
7341 val &= ~LCPLL_PLL_DISABLE;
7342 I915_WRITE(LCPLL_CTL, val);
7343
7344 if (wait_for(I915_READ(LCPLL_CTL) & LCPLL_PLL_LOCK, 5))
7345 DRM_ERROR("LCPLL not locked yet\n");
7346
7347 if (val & LCPLL_CD_SOURCE_FCLK) {
7348 val = I915_READ(LCPLL_CTL);
7349 val &= ~LCPLL_CD_SOURCE_FCLK;
7350 I915_WRITE(LCPLL_CTL, val);
7351
7352 if (wait_for_atomic_us((I915_READ(LCPLL_CTL) &
7353 LCPLL_CD_SOURCE_FCLK_DONE) == 0, 1))
7354 DRM_ERROR("Switching back to LCPLL failed\n");
7355 }
Paulo Zanoni215733f2013-08-19 13:18:07 -03007356
Paulo Zanonia8a8bd52014-03-07 20:08:05 -03007357 /* See the big comment above. */
7358 spin_lock_irqsave(&dev_priv->uncore.lock, irqflags);
7359 if (--dev_priv->uncore.forcewake_count == 0)
7360 dev_priv->uncore.funcs.force_wake_put(dev_priv, FORCEWAKE_ALL);
7361 spin_unlock_irqrestore(&dev_priv->uncore.lock, irqflags);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007362}
7363
Paulo Zanoni765dab62014-03-07 20:08:18 -03007364/*
7365 * Package states C8 and deeper are really deep PC states that can only be
7366 * reached when all the devices on the system allow it, so even if the graphics
7367 * device allows PC8+, it doesn't mean the system will actually get to these
7368 * states. Our driver only allows PC8+ when going into runtime PM.
7369 *
7370 * The requirements for PC8+ are that all the outputs are disabled, the power
7371 * well is disabled and most interrupts are disabled, and these are also
7372 * requirements for runtime PM. When these conditions are met, we manually do
7373 * the other conditions: disable the interrupts, clocks and switch LCPLL refclk
7374 * to Fclk. If we're in PC8+ and we get an non-hotplug interrupt, we can hard
7375 * hang the machine.
7376 *
7377 * When we really reach PC8 or deeper states (not just when we allow it) we lose
7378 * the state of some registers, so when we come back from PC8+ we need to
7379 * restore this state. We don't get into PC8+ if we're not in RC6, so we don't
7380 * need to take care of the registers kept by RC6. Notice that this happens even
7381 * if we don't put the device in PCI D3 state (which is what currently happens
7382 * because of the runtime PM support).
7383 *
7384 * For more, read "Display Sequences for Package C8" on the hardware
7385 * documentation.
7386 */
Paulo Zanonia14cb6f2014-03-07 20:08:17 -03007387void hsw_enable_pc8(struct drm_i915_private *dev_priv)
Paulo Zanonic67a4702013-08-19 13:18:09 -03007388{
Paulo Zanonic67a4702013-08-19 13:18:09 -03007389 struct drm_device *dev = dev_priv->dev;
7390 uint32_t val;
7391
Paulo Zanonic67a4702013-08-19 13:18:09 -03007392 DRM_DEBUG_KMS("Enabling package C8+\n");
7393
Paulo Zanonic67a4702013-08-19 13:18:09 -03007394 if (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) {
7395 val = I915_READ(SOUTH_DSPCLK_GATE_D);
7396 val &= ~PCH_LP_PARTITION_LEVEL_DISABLE;
7397 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
7398 }
7399
7400 lpt_disable_clkout_dp(dev);
Paulo Zanonic67a4702013-08-19 13:18:09 -03007401 hsw_disable_lcpll(dev_priv, true, true);
7402}
7403
Paulo Zanonia14cb6f2014-03-07 20:08:17 -03007404void hsw_disable_pc8(struct drm_i915_private *dev_priv)
Paulo Zanonic67a4702013-08-19 13:18:09 -03007405{
7406 struct drm_device *dev = dev_priv->dev;
7407 uint32_t val;
7408
Paulo Zanonic67a4702013-08-19 13:18:09 -03007409 DRM_DEBUG_KMS("Disabling package C8+\n");
7410
7411 hsw_restore_lcpll(dev_priv);
Paulo Zanonic67a4702013-08-19 13:18:09 -03007412 lpt_init_pch_refclk(dev);
7413
7414 if (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) {
7415 val = I915_READ(SOUTH_DSPCLK_GATE_D);
7416 val |= PCH_LP_PARTITION_LEVEL_DISABLE;
7417 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
7418 }
7419
7420 intel_prepare_ddi(dev);
Paulo Zanonic67a4702013-08-19 13:18:09 -03007421}
7422
Paulo Zanoni9a952a02014-03-07 20:12:34 -03007423static void snb_modeset_global_resources(struct drm_device *dev)
7424{
7425 modeset_update_crtc_power_domains(dev);
7426}
7427
Imre Deak4f074122013-10-16 17:25:51 +03007428static void haswell_modeset_global_resources(struct drm_device *dev)
7429{
Paulo Zanonida723562013-12-19 11:54:51 -02007430 modeset_update_crtc_power_domains(dev);
Daniel Vetterd6dd9eb2013-01-29 16:35:20 -02007431}
7432
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03007433static int haswell_crtc_mode_set(struct drm_crtc *crtc,
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03007434 int x, int y,
7435 struct drm_framebuffer *fb)
7436{
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03007437 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03007438
Paulo Zanoni566b7342013-11-25 15:27:08 -02007439 if (!intel_ddi_pll_select(intel_crtc))
Paulo Zanoni6441ab52012-10-05 12:05:58 -03007440 return -EINVAL;
Paulo Zanoni566b7342013-11-25 15:27:08 -02007441 intel_ddi_pll_enable(intel_crtc);
Paulo Zanoni6441ab52012-10-05 12:05:58 -03007442
Daniel Vetter644cef32014-04-24 23:55:07 +02007443 intel_crtc->lowfreq_avail = false;
7444
Daniel Vetterc8f7a0d2014-04-24 23:55:04 +02007445 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08007446}
7447
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01007448static bool haswell_get_pipe_config(struct intel_crtc *crtc,
7449 struct intel_crtc_config *pipe_config)
7450{
7451 struct drm_device *dev = crtc->base.dev;
7452 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007453 enum intel_display_power_domain pfit_domain;
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01007454 uint32_t tmp;
7455
Imre Deakb5482bd2014-03-05 16:20:55 +02007456 if (!intel_display_power_enabled(dev_priv,
7457 POWER_DOMAIN_PIPE(crtc->pipe)))
7458 return false;
7459
Daniel Vettere143a212013-07-04 12:01:15 +02007460 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +02007461 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
7462
Daniel Vettereccb1402013-05-22 00:50:22 +02007463 tmp = I915_READ(TRANS_DDI_FUNC_CTL(TRANSCODER_EDP));
7464 if (tmp & TRANS_DDI_FUNC_ENABLE) {
7465 enum pipe trans_edp_pipe;
7466 switch (tmp & TRANS_DDI_EDP_INPUT_MASK) {
7467 default:
7468 WARN(1, "unknown pipe linked to edp transcoder\n");
7469 case TRANS_DDI_EDP_INPUT_A_ONOFF:
7470 case TRANS_DDI_EDP_INPUT_A_ON:
7471 trans_edp_pipe = PIPE_A;
7472 break;
7473 case TRANS_DDI_EDP_INPUT_B_ONOFF:
7474 trans_edp_pipe = PIPE_B;
7475 break;
7476 case TRANS_DDI_EDP_INPUT_C_ONOFF:
7477 trans_edp_pipe = PIPE_C;
7478 break;
7479 }
7480
7481 if (trans_edp_pipe == crtc->pipe)
7482 pipe_config->cpu_transcoder = TRANSCODER_EDP;
7483 }
7484
Imre Deakda7e29b2014-02-18 00:02:02 +02007485 if (!intel_display_power_enabled(dev_priv,
Daniel Vettereccb1402013-05-22 00:50:22 +02007486 POWER_DOMAIN_TRANSCODER(pipe_config->cpu_transcoder)))
Paulo Zanoni2bfce952013-04-18 16:35:40 -03007487 return false;
7488
Daniel Vettereccb1402013-05-22 00:50:22 +02007489 tmp = I915_READ(PIPECONF(pipe_config->cpu_transcoder));
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01007490 if (!(tmp & PIPECONF_ENABLE))
7491 return false;
7492
Daniel Vetter88adfff2013-03-28 10:42:01 +01007493 /*
Paulo Zanonif196e6b2013-04-18 16:35:41 -03007494 * Haswell has only FDI/PCH transcoder A. It is which is connected to
Daniel Vetter88adfff2013-03-28 10:42:01 +01007495 * DDI E. So just check whether this pipe is wired to DDI E and whether
7496 * the PCH transcoder is on.
7497 */
Daniel Vettereccb1402013-05-22 00:50:22 +02007498 tmp = I915_READ(TRANS_DDI_FUNC_CTL(pipe_config->cpu_transcoder));
Daniel Vetter88adfff2013-03-28 10:42:01 +01007499 if ((tmp & TRANS_DDI_PORT_MASK) == TRANS_DDI_SELECT_PORT(PORT_E) &&
Daniel Vetterab9412b2013-05-03 11:49:46 +02007500 I915_READ(LPT_TRANSCONF) & TRANS_ENABLE) {
Daniel Vetter88adfff2013-03-28 10:42:01 +01007501 pipe_config->has_pch_encoder = true;
7502
Daniel Vetter627eb5a2013-04-29 19:33:42 +02007503 tmp = I915_READ(FDI_RX_CTL(PIPE_A));
7504 pipe_config->fdi_lanes = ((FDI_DP_PORT_WIDTH_MASK & tmp) >>
7505 FDI_DP_PORT_WIDTH_SHIFT) + 1;
Daniel Vetter72419202013-04-04 13:28:53 +02007506
7507 ironlake_get_fdi_m_n_config(crtc, pipe_config);
Daniel Vetter627eb5a2013-04-29 19:33:42 +02007508 }
7509
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02007510 intel_get_pipe_timings(crtc, pipe_config);
7511
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007512 pfit_domain = POWER_DOMAIN_PIPE_PANEL_FITTER(crtc->pipe);
Imre Deakda7e29b2014-02-18 00:02:02 +02007513 if (intel_display_power_enabled(dev_priv, pfit_domain))
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007514 ironlake_get_pfit_config(crtc, pipe_config);
Daniel Vetter88adfff2013-03-28 10:42:01 +01007515
Jesse Barnese59150d2014-01-07 13:30:45 -08007516 if (IS_HASWELL(dev))
7517 pipe_config->ips_enabled = hsw_crtc_supports_ips(crtc) &&
7518 (I915_READ(IPS_CTL) & IPS_ENABLE);
Paulo Zanoni42db64e2013-05-31 16:33:22 -03007519
Daniel Vetter6c49f242013-06-06 12:45:25 +02007520 pipe_config->pixel_multiplier = 1;
7521
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01007522 return true;
7523}
7524
Jani Nikula1a915102013-10-16 12:34:48 +03007525static struct {
7526 int clock;
7527 u32 config;
7528} hdmi_audio_clock[] = {
7529 { DIV_ROUND_UP(25200 * 1000, 1001), AUD_CONFIG_PIXEL_CLOCK_HDMI_25175 },
7530 { 25200, AUD_CONFIG_PIXEL_CLOCK_HDMI_25200 }, /* default per bspec */
7531 { 27000, AUD_CONFIG_PIXEL_CLOCK_HDMI_27000 },
7532 { 27000 * 1001 / 1000, AUD_CONFIG_PIXEL_CLOCK_HDMI_27027 },
7533 { 54000, AUD_CONFIG_PIXEL_CLOCK_HDMI_54000 },
7534 { 54000 * 1001 / 1000, AUD_CONFIG_PIXEL_CLOCK_HDMI_54054 },
7535 { DIV_ROUND_UP(74250 * 1000, 1001), AUD_CONFIG_PIXEL_CLOCK_HDMI_74176 },
7536 { 74250, AUD_CONFIG_PIXEL_CLOCK_HDMI_74250 },
7537 { DIV_ROUND_UP(148500 * 1000, 1001), AUD_CONFIG_PIXEL_CLOCK_HDMI_148352 },
7538 { 148500, AUD_CONFIG_PIXEL_CLOCK_HDMI_148500 },
7539};
7540
7541/* get AUD_CONFIG_PIXEL_CLOCK_HDMI_* value for mode */
7542static u32 audio_config_hdmi_pixel_clock(struct drm_display_mode *mode)
7543{
7544 int i;
7545
7546 for (i = 0; i < ARRAY_SIZE(hdmi_audio_clock); i++) {
7547 if (mode->clock == hdmi_audio_clock[i].clock)
7548 break;
7549 }
7550
7551 if (i == ARRAY_SIZE(hdmi_audio_clock)) {
7552 DRM_DEBUG_KMS("HDMI audio pixel clock setting for %d not found, falling back to defaults\n", mode->clock);
7553 i = 1;
7554 }
7555
7556 DRM_DEBUG_KMS("Configuring HDMI audio for pixel clock %d (0x%08x)\n",
7557 hdmi_audio_clock[i].clock,
7558 hdmi_audio_clock[i].config);
7559
7560 return hdmi_audio_clock[i].config;
7561}
7562
Wu Fengguang3a9627f2011-12-09 20:42:19 +08007563static bool intel_eld_uptodate(struct drm_connector *connector,
7564 int reg_eldv, uint32_t bits_eldv,
7565 int reg_elda, uint32_t bits_elda,
7566 int reg_edid)
7567{
7568 struct drm_i915_private *dev_priv = connector->dev->dev_private;
7569 uint8_t *eld = connector->eld;
7570 uint32_t i;
7571
7572 i = I915_READ(reg_eldv);
7573 i &= bits_eldv;
7574
7575 if (!eld[0])
7576 return !i;
7577
7578 if (!i)
7579 return false;
7580
7581 i = I915_READ(reg_elda);
7582 i &= ~bits_elda;
7583 I915_WRITE(reg_elda, i);
7584
7585 for (i = 0; i < eld[2]; i++)
7586 if (I915_READ(reg_edid) != *((uint32_t *)eld + i))
7587 return false;
7588
7589 return true;
7590}
7591
Wu Fengguange0dac652011-09-05 14:25:34 +08007592static void g4x_write_eld(struct drm_connector *connector,
Jani Nikula34427052013-10-16 12:34:47 +03007593 struct drm_crtc *crtc,
7594 struct drm_display_mode *mode)
Wu Fengguange0dac652011-09-05 14:25:34 +08007595{
7596 struct drm_i915_private *dev_priv = connector->dev->dev_private;
7597 uint8_t *eld = connector->eld;
7598 uint32_t eldv;
7599 uint32_t len;
7600 uint32_t i;
7601
7602 i = I915_READ(G4X_AUD_VID_DID);
7603
7604 if (i == INTEL_AUDIO_DEVBLC || i == INTEL_AUDIO_DEVCL)
7605 eldv = G4X_ELDV_DEVCL_DEVBLC;
7606 else
7607 eldv = G4X_ELDV_DEVCTG;
7608
Wu Fengguang3a9627f2011-12-09 20:42:19 +08007609 if (intel_eld_uptodate(connector,
7610 G4X_AUD_CNTL_ST, eldv,
7611 G4X_AUD_CNTL_ST, G4X_ELD_ADDR,
7612 G4X_HDMIW_HDMIEDID))
7613 return;
7614
Wu Fengguange0dac652011-09-05 14:25:34 +08007615 i = I915_READ(G4X_AUD_CNTL_ST);
7616 i &= ~(eldv | G4X_ELD_ADDR);
7617 len = (i >> 9) & 0x1f; /* ELD buffer size */
7618 I915_WRITE(G4X_AUD_CNTL_ST, i);
7619
7620 if (!eld[0])
7621 return;
7622
7623 len = min_t(uint8_t, eld[2], len);
7624 DRM_DEBUG_DRIVER("ELD size %d\n", len);
7625 for (i = 0; i < len; i++)
7626 I915_WRITE(G4X_HDMIW_HDMIEDID, *((uint32_t *)eld + i));
7627
7628 i = I915_READ(G4X_AUD_CNTL_ST);
7629 i |= eldv;
7630 I915_WRITE(G4X_AUD_CNTL_ST, i);
7631}
7632
Wang Xingchao83358c852012-08-16 22:43:37 +08007633static void haswell_write_eld(struct drm_connector *connector,
Jani Nikula34427052013-10-16 12:34:47 +03007634 struct drm_crtc *crtc,
7635 struct drm_display_mode *mode)
Wang Xingchao83358c852012-08-16 22:43:37 +08007636{
7637 struct drm_i915_private *dev_priv = connector->dev->dev_private;
7638 uint8_t *eld = connector->eld;
Wang Xingchao83358c852012-08-16 22:43:37 +08007639 uint32_t eldv;
7640 uint32_t i;
7641 int len;
7642 int pipe = to_intel_crtc(crtc)->pipe;
7643 int tmp;
7644
7645 int hdmiw_hdmiedid = HSW_AUD_EDID_DATA(pipe);
7646 int aud_cntl_st = HSW_AUD_DIP_ELD_CTRL(pipe);
7647 int aud_config = HSW_AUD_CFG(pipe);
7648 int aud_cntrl_st2 = HSW_AUD_PIN_ELD_CP_VLD;
7649
Wang Xingchao83358c852012-08-16 22:43:37 +08007650 /* Audio output enable */
7651 DRM_DEBUG_DRIVER("HDMI audio: enable codec\n");
7652 tmp = I915_READ(aud_cntrl_st2);
7653 tmp |= (AUDIO_OUTPUT_ENABLE_A << (pipe * 4));
7654 I915_WRITE(aud_cntrl_st2, tmp);
Daniel Vetterc7905792014-04-16 16:56:09 +02007655 POSTING_READ(aud_cntrl_st2);
Wang Xingchao83358c852012-08-16 22:43:37 +08007656
Daniel Vetterc7905792014-04-16 16:56:09 +02007657 assert_pipe_disabled(dev_priv, to_intel_crtc(crtc)->pipe);
Wang Xingchao83358c852012-08-16 22:43:37 +08007658
7659 /* Set ELD valid state */
7660 tmp = I915_READ(aud_cntrl_st2);
Takashi Iwai7e7cb342013-09-10 07:30:36 +02007661 DRM_DEBUG_DRIVER("HDMI audio: pin eld vld status=0x%08x\n", tmp);
Wang Xingchao83358c852012-08-16 22:43:37 +08007662 tmp |= (AUDIO_ELD_VALID_A << (pipe * 4));
7663 I915_WRITE(aud_cntrl_st2, tmp);
7664 tmp = I915_READ(aud_cntrl_st2);
Takashi Iwai7e7cb342013-09-10 07:30:36 +02007665 DRM_DEBUG_DRIVER("HDMI audio: eld vld status=0x%08x\n", tmp);
Wang Xingchao83358c852012-08-16 22:43:37 +08007666
7667 /* Enable HDMI mode */
7668 tmp = I915_READ(aud_config);
Takashi Iwai7e7cb342013-09-10 07:30:36 +02007669 DRM_DEBUG_DRIVER("HDMI audio: audio conf: 0x%08x\n", tmp);
Wang Xingchao83358c852012-08-16 22:43:37 +08007670 /* clear N_programing_enable and N_value_index */
7671 tmp &= ~(AUD_CONFIG_N_VALUE_INDEX | AUD_CONFIG_N_PROG_ENABLE);
7672 I915_WRITE(aud_config, tmp);
7673
7674 DRM_DEBUG_DRIVER("ELD on pipe %c\n", pipe_name(pipe));
7675
7676 eldv = AUDIO_ELD_VALID_A << (pipe * 4);
7677
7678 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT)) {
7679 DRM_DEBUG_DRIVER("ELD: DisplayPort detected\n");
7680 eld[5] |= (1 << 2); /* Conn_Type, 0x1 = DisplayPort */
7681 I915_WRITE(aud_config, AUD_CONFIG_N_VALUE_INDEX); /* 0x1 = DP */
Jani Nikula1a915102013-10-16 12:34:48 +03007682 } else {
7683 I915_WRITE(aud_config, audio_config_hdmi_pixel_clock(mode));
7684 }
Wang Xingchao83358c852012-08-16 22:43:37 +08007685
7686 if (intel_eld_uptodate(connector,
7687 aud_cntrl_st2, eldv,
7688 aud_cntl_st, IBX_ELD_ADDRESS,
7689 hdmiw_hdmiedid))
7690 return;
7691
7692 i = I915_READ(aud_cntrl_st2);
7693 i &= ~eldv;
7694 I915_WRITE(aud_cntrl_st2, i);
7695
7696 if (!eld[0])
7697 return;
7698
7699 i = I915_READ(aud_cntl_st);
7700 i &= ~IBX_ELD_ADDRESS;
7701 I915_WRITE(aud_cntl_st, i);
7702 i = (i >> 29) & DIP_PORT_SEL_MASK; /* DIP_Port_Select, 0x1 = PortB */
7703 DRM_DEBUG_DRIVER("port num:%d\n", i);
7704
7705 len = min_t(uint8_t, eld[2], 21); /* 84 bytes of hw ELD buffer */
7706 DRM_DEBUG_DRIVER("ELD size %d\n", len);
7707 for (i = 0; i < len; i++)
7708 I915_WRITE(hdmiw_hdmiedid, *((uint32_t *)eld + i));
7709
7710 i = I915_READ(aud_cntrl_st2);
7711 i |= eldv;
7712 I915_WRITE(aud_cntrl_st2, i);
7713
7714}
7715
Wu Fengguange0dac652011-09-05 14:25:34 +08007716static void ironlake_write_eld(struct drm_connector *connector,
Jani Nikula34427052013-10-16 12:34:47 +03007717 struct drm_crtc *crtc,
7718 struct drm_display_mode *mode)
Wu Fengguange0dac652011-09-05 14:25:34 +08007719{
7720 struct drm_i915_private *dev_priv = connector->dev->dev_private;
7721 uint8_t *eld = connector->eld;
7722 uint32_t eldv;
7723 uint32_t i;
7724 int len;
7725 int hdmiw_hdmiedid;
Wu Fengguangb6daa022012-01-06 14:41:31 -06007726 int aud_config;
Wu Fengguange0dac652011-09-05 14:25:34 +08007727 int aud_cntl_st;
7728 int aud_cntrl_st2;
Wang Xingchao9b138a82012-08-09 16:52:18 +08007729 int pipe = to_intel_crtc(crtc)->pipe;
Wu Fengguange0dac652011-09-05 14:25:34 +08007730
Wu Fengguangb3f33cb2011-12-09 20:42:17 +08007731 if (HAS_PCH_IBX(connector->dev)) {
Wang Xingchao9b138a82012-08-09 16:52:18 +08007732 hdmiw_hdmiedid = IBX_HDMIW_HDMIEDID(pipe);
7733 aud_config = IBX_AUD_CFG(pipe);
7734 aud_cntl_st = IBX_AUD_CNTL_ST(pipe);
Wu Fengguang1202b4c62011-12-09 20:42:18 +08007735 aud_cntrl_st2 = IBX_AUD_CNTL_ST2;
Mengdong Lin9ca2fe72013-11-01 00:17:03 -04007736 } else if (IS_VALLEYVIEW(connector->dev)) {
7737 hdmiw_hdmiedid = VLV_HDMIW_HDMIEDID(pipe);
7738 aud_config = VLV_AUD_CFG(pipe);
7739 aud_cntl_st = VLV_AUD_CNTL_ST(pipe);
7740 aud_cntrl_st2 = VLV_AUD_CNTL_ST2;
Wu Fengguange0dac652011-09-05 14:25:34 +08007741 } else {
Wang Xingchao9b138a82012-08-09 16:52:18 +08007742 hdmiw_hdmiedid = CPT_HDMIW_HDMIEDID(pipe);
7743 aud_config = CPT_AUD_CFG(pipe);
7744 aud_cntl_st = CPT_AUD_CNTL_ST(pipe);
Wu Fengguang1202b4c62011-12-09 20:42:18 +08007745 aud_cntrl_st2 = CPT_AUD_CNTRL_ST2;
Wu Fengguange0dac652011-09-05 14:25:34 +08007746 }
7747
Wang Xingchao9b138a82012-08-09 16:52:18 +08007748 DRM_DEBUG_DRIVER("ELD on pipe %c\n", pipe_name(pipe));
Wu Fengguange0dac652011-09-05 14:25:34 +08007749
Mengdong Lin9ca2fe72013-11-01 00:17:03 -04007750 if (IS_VALLEYVIEW(connector->dev)) {
7751 struct intel_encoder *intel_encoder;
7752 struct intel_digital_port *intel_dig_port;
7753
7754 intel_encoder = intel_attached_encoder(connector);
7755 intel_dig_port = enc_to_dig_port(&intel_encoder->base);
7756 i = intel_dig_port->port;
7757 } else {
7758 i = I915_READ(aud_cntl_st);
7759 i = (i >> 29) & DIP_PORT_SEL_MASK;
7760 /* DIP_Port_Select, 0x1 = PortB */
7761 }
7762
Wu Fengguange0dac652011-09-05 14:25:34 +08007763 if (!i) {
7764 DRM_DEBUG_DRIVER("Audio directed to unknown port\n");
7765 /* operate blindly on all ports */
Wu Fengguang1202b4c62011-12-09 20:42:18 +08007766 eldv = IBX_ELD_VALIDB;
7767 eldv |= IBX_ELD_VALIDB << 4;
7768 eldv |= IBX_ELD_VALIDB << 8;
Wu Fengguange0dac652011-09-05 14:25:34 +08007769 } else {
Ville Syrjälä2582a852013-04-17 17:48:47 +03007770 DRM_DEBUG_DRIVER("ELD on port %c\n", port_name(i));
Wu Fengguang1202b4c62011-12-09 20:42:18 +08007771 eldv = IBX_ELD_VALIDB << ((i - 1) * 4);
Wu Fengguange0dac652011-09-05 14:25:34 +08007772 }
7773
Wu Fengguang3a9627f2011-12-09 20:42:19 +08007774 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT)) {
7775 DRM_DEBUG_DRIVER("ELD: DisplayPort detected\n");
7776 eld[5] |= (1 << 2); /* Conn_Type, 0x1 = DisplayPort */
Wu Fengguangb6daa022012-01-06 14:41:31 -06007777 I915_WRITE(aud_config, AUD_CONFIG_N_VALUE_INDEX); /* 0x1 = DP */
Jani Nikula1a915102013-10-16 12:34:48 +03007778 } else {
7779 I915_WRITE(aud_config, audio_config_hdmi_pixel_clock(mode));
7780 }
Wu Fengguang3a9627f2011-12-09 20:42:19 +08007781
7782 if (intel_eld_uptodate(connector,
7783 aud_cntrl_st2, eldv,
7784 aud_cntl_st, IBX_ELD_ADDRESS,
7785 hdmiw_hdmiedid))
7786 return;
7787
Wu Fengguange0dac652011-09-05 14:25:34 +08007788 i = I915_READ(aud_cntrl_st2);
7789 i &= ~eldv;
7790 I915_WRITE(aud_cntrl_st2, i);
7791
7792 if (!eld[0])
7793 return;
7794
Wu Fengguange0dac652011-09-05 14:25:34 +08007795 i = I915_READ(aud_cntl_st);
Wu Fengguang1202b4c62011-12-09 20:42:18 +08007796 i &= ~IBX_ELD_ADDRESS;
Wu Fengguange0dac652011-09-05 14:25:34 +08007797 I915_WRITE(aud_cntl_st, i);
7798
7799 len = min_t(uint8_t, eld[2], 21); /* 84 bytes of hw ELD buffer */
7800 DRM_DEBUG_DRIVER("ELD size %d\n", len);
7801 for (i = 0; i < len; i++)
7802 I915_WRITE(hdmiw_hdmiedid, *((uint32_t *)eld + i));
7803
7804 i = I915_READ(aud_cntrl_st2);
7805 i |= eldv;
7806 I915_WRITE(aud_cntrl_st2, i);
7807}
7808
7809void intel_write_eld(struct drm_encoder *encoder,
7810 struct drm_display_mode *mode)
7811{
7812 struct drm_crtc *crtc = encoder->crtc;
7813 struct drm_connector *connector;
7814 struct drm_device *dev = encoder->dev;
7815 struct drm_i915_private *dev_priv = dev->dev_private;
7816
7817 connector = drm_select_eld(encoder, mode);
7818 if (!connector)
7819 return;
7820
7821 DRM_DEBUG_DRIVER("ELD on [CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
7822 connector->base.id,
7823 drm_get_connector_name(connector),
7824 connector->encoder->base.id,
7825 drm_get_encoder_name(connector->encoder));
7826
7827 connector->eld[6] = drm_av_sync_delay(connector, mode) / 2;
7828
7829 if (dev_priv->display.write_eld)
Jani Nikula34427052013-10-16 12:34:47 +03007830 dev_priv->display.write_eld(connector, crtc, mode);
Wu Fengguange0dac652011-09-05 14:25:34 +08007831}
7832
Chris Wilson560b85b2010-08-07 11:01:38 +01007833static void i845_update_cursor(struct drm_crtc *crtc, u32 base)
7834{
7835 struct drm_device *dev = crtc->dev;
7836 struct drm_i915_private *dev_priv = dev->dev_private;
7837 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
7838 bool visible = base != 0;
7839 u32 cntl;
7840
7841 if (intel_crtc->cursor_visible == visible)
7842 return;
7843
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08007844 cntl = I915_READ(_CURACNTR);
Chris Wilson560b85b2010-08-07 11:01:38 +01007845 if (visible) {
7846 /* On these chipsets we can only modify the base whilst
7847 * the cursor is disabled.
7848 */
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08007849 I915_WRITE(_CURABASE, base);
Chris Wilson560b85b2010-08-07 11:01:38 +01007850
7851 cntl &= ~(CURSOR_FORMAT_MASK);
7852 /* XXX width must be 64, stride 256 => 0x00 << 28 */
7853 cntl |= CURSOR_ENABLE |
7854 CURSOR_GAMMA_ENABLE |
7855 CURSOR_FORMAT_ARGB;
7856 } else
7857 cntl &= ~(CURSOR_ENABLE | CURSOR_GAMMA_ENABLE);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08007858 I915_WRITE(_CURACNTR, cntl);
Chris Wilson560b85b2010-08-07 11:01:38 +01007859
7860 intel_crtc->cursor_visible = visible;
7861}
7862
7863static void i9xx_update_cursor(struct drm_crtc *crtc, u32 base)
7864{
7865 struct drm_device *dev = crtc->dev;
7866 struct drm_i915_private *dev_priv = dev->dev_private;
7867 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
7868 int pipe = intel_crtc->pipe;
7869 bool visible = base != 0;
7870
7871 if (intel_crtc->cursor_visible != visible) {
Sagar Kamble4726e0b2014-03-10 17:06:23 +05307872 int16_t width = intel_crtc->cursor_width;
Jesse Barnes548f2452011-02-17 10:40:53 -08007873 uint32_t cntl = I915_READ(CURCNTR(pipe));
Chris Wilson560b85b2010-08-07 11:01:38 +01007874 if (base) {
7875 cntl &= ~(CURSOR_MODE | MCURSOR_PIPE_SELECT);
Sagar Kamble4726e0b2014-03-10 17:06:23 +05307876 cntl |= MCURSOR_GAMMA_ENABLE;
7877
7878 switch (width) {
7879 case 64:
7880 cntl |= CURSOR_MODE_64_ARGB_AX;
7881 break;
7882 case 128:
7883 cntl |= CURSOR_MODE_128_ARGB_AX;
7884 break;
7885 case 256:
7886 cntl |= CURSOR_MODE_256_ARGB_AX;
7887 break;
7888 default:
7889 WARN_ON(1);
7890 return;
7891 }
Chris Wilson560b85b2010-08-07 11:01:38 +01007892 cntl |= pipe << 28; /* Connect to correct pipe */
7893 } else {
7894 cntl &= ~(CURSOR_MODE | MCURSOR_GAMMA_ENABLE);
7895 cntl |= CURSOR_MODE_DISABLE;
7896 }
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08007897 I915_WRITE(CURCNTR(pipe), cntl);
Chris Wilson560b85b2010-08-07 11:01:38 +01007898
7899 intel_crtc->cursor_visible = visible;
7900 }
7901 /* and commit changes on next vblank */
Daniel Vetterb2ea8ef2013-11-04 08:13:45 +01007902 POSTING_READ(CURCNTR(pipe));
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08007903 I915_WRITE(CURBASE(pipe), base);
Daniel Vetterb2ea8ef2013-11-04 08:13:45 +01007904 POSTING_READ(CURBASE(pipe));
Chris Wilson560b85b2010-08-07 11:01:38 +01007905}
7906
Jesse Barnes65a21cd2011-10-12 11:10:21 -07007907static void ivb_update_cursor(struct drm_crtc *crtc, u32 base)
7908{
7909 struct drm_device *dev = crtc->dev;
7910 struct drm_i915_private *dev_priv = dev->dev_private;
7911 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
7912 int pipe = intel_crtc->pipe;
7913 bool visible = base != 0;
7914
7915 if (intel_crtc->cursor_visible != visible) {
Sagar Kamble4726e0b2014-03-10 17:06:23 +05307916 int16_t width = intel_crtc->cursor_width;
Ville Syrjälä5efb3e22014-04-09 13:28:53 +03007917 uint32_t cntl = I915_READ(CURCNTR(pipe));
Jesse Barnes65a21cd2011-10-12 11:10:21 -07007918 if (base) {
7919 cntl &= ~CURSOR_MODE;
Sagar Kamble4726e0b2014-03-10 17:06:23 +05307920 cntl |= MCURSOR_GAMMA_ENABLE;
7921 switch (width) {
7922 case 64:
7923 cntl |= CURSOR_MODE_64_ARGB_AX;
7924 break;
7925 case 128:
7926 cntl |= CURSOR_MODE_128_ARGB_AX;
7927 break;
7928 case 256:
7929 cntl |= CURSOR_MODE_256_ARGB_AX;
7930 break;
7931 default:
7932 WARN_ON(1);
7933 return;
7934 }
Jesse Barnes65a21cd2011-10-12 11:10:21 -07007935 } else {
7936 cntl &= ~(CURSOR_MODE | MCURSOR_GAMMA_ENABLE);
7937 cntl |= CURSOR_MODE_DISABLE;
7938 }
Ville Syrjälä6bbfa1c2013-11-02 21:07:39 -07007939 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02007940 cntl |= CURSOR_PIPE_CSC_ENABLE;
Paulo Zanoni1f5d76d2013-08-23 19:51:28 -03007941 cntl &= ~CURSOR_TRICKLE_FEED_DISABLE;
7942 }
Ville Syrjälä5efb3e22014-04-09 13:28:53 +03007943 I915_WRITE(CURCNTR(pipe), cntl);
Jesse Barnes65a21cd2011-10-12 11:10:21 -07007944
7945 intel_crtc->cursor_visible = visible;
7946 }
7947 /* and commit changes on next vblank */
Ville Syrjälä5efb3e22014-04-09 13:28:53 +03007948 POSTING_READ(CURCNTR(pipe));
7949 I915_WRITE(CURBASE(pipe), base);
7950 POSTING_READ(CURBASE(pipe));
Jesse Barnes65a21cd2011-10-12 11:10:21 -07007951}
7952
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01007953/* If no-part of the cursor is visible on the framebuffer, then the GPU may hang... */
Chris Wilson6b383a72010-09-13 13:54:26 +01007954static void intel_crtc_update_cursor(struct drm_crtc *crtc,
7955 bool on)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01007956{
7957 struct drm_device *dev = crtc->dev;
7958 struct drm_i915_private *dev_priv = dev->dev_private;
7959 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
7960 int pipe = intel_crtc->pipe;
7961 int x = intel_crtc->cursor_x;
7962 int y = intel_crtc->cursor_y;
Ville Syrjäläd6e4db12013-09-04 18:25:31 +03007963 u32 base = 0, pos = 0;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01007964 bool visible;
7965
Ville Syrjäläd6e4db12013-09-04 18:25:31 +03007966 if (on)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01007967 base = intel_crtc->cursor_addr;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01007968
Ville Syrjäläd6e4db12013-09-04 18:25:31 +03007969 if (x >= intel_crtc->config.pipe_src_w)
7970 base = 0;
7971
7972 if (y >= intel_crtc->config.pipe_src_h)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01007973 base = 0;
7974
7975 if (x < 0) {
Ville Syrjäläefc90642013-09-04 18:25:30 +03007976 if (x + intel_crtc->cursor_width <= 0)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01007977 base = 0;
7978
7979 pos |= CURSOR_POS_SIGN << CURSOR_X_SHIFT;
7980 x = -x;
7981 }
7982 pos |= x << CURSOR_X_SHIFT;
7983
7984 if (y < 0) {
Ville Syrjäläefc90642013-09-04 18:25:30 +03007985 if (y + intel_crtc->cursor_height <= 0)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01007986 base = 0;
7987
7988 pos |= CURSOR_POS_SIGN << CURSOR_Y_SHIFT;
7989 y = -y;
7990 }
7991 pos |= y << CURSOR_Y_SHIFT;
7992
7993 visible = base != 0;
Chris Wilson560b85b2010-08-07 11:01:38 +01007994 if (!visible && !intel_crtc->cursor_visible)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01007995 return;
7996
Ville Syrjälä5efb3e22014-04-09 13:28:53 +03007997 I915_WRITE(CURPOS(pipe), pos);
7998
7999 if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev) || IS_BROADWELL(dev))
Jesse Barnes65a21cd2011-10-12 11:10:21 -07008000 ivb_update_cursor(crtc, base);
Ville Syrjälä5efb3e22014-04-09 13:28:53 +03008001 else if (IS_845G(dev) || IS_I865G(dev))
8002 i845_update_cursor(crtc, base);
8003 else
8004 i9xx_update_cursor(crtc, base);
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01008005}
8006
Jesse Barnes79e53942008-11-07 14:24:08 -08008007static int intel_crtc_cursor_set(struct drm_crtc *crtc,
Chris Wilson05394f32010-11-08 19:18:58 +00008008 struct drm_file *file,
Jesse Barnes79e53942008-11-07 14:24:08 -08008009 uint32_t handle,
8010 uint32_t width, uint32_t height)
8011{
8012 struct drm_device *dev = crtc->dev;
8013 struct drm_i915_private *dev_priv = dev->dev_private;
8014 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Chris Wilson05394f32010-11-08 19:18:58 +00008015 struct drm_i915_gem_object *obj;
Chris Wilson64f962e2014-03-26 12:38:15 +00008016 unsigned old_width;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01008017 uint32_t addr;
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05008018 int ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08008019
Jesse Barnes79e53942008-11-07 14:24:08 -08008020 /* if we want to turn off the cursor ignore width and height */
8021 if (!handle) {
Zhao Yakui28c97732009-10-09 11:39:41 +08008022 DRM_DEBUG_KMS("cursor off\n");
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05008023 addr = 0;
Chris Wilson05394f32010-11-08 19:18:58 +00008024 obj = NULL;
Pierre Willenbrock50044172009-02-23 10:12:15 +10008025 mutex_lock(&dev->struct_mutex);
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05008026 goto finish;
Jesse Barnes79e53942008-11-07 14:24:08 -08008027 }
8028
Sagar Kamble4726e0b2014-03-10 17:06:23 +05308029 /* Check for which cursor types we support */
8030 if (!((width == 64 && height == 64) ||
8031 (width == 128 && height == 128 && !IS_GEN2(dev)) ||
8032 (width == 256 && height == 256 && !IS_GEN2(dev)))) {
8033 DRM_DEBUG("Cursor dimension not supported\n");
Jesse Barnes79e53942008-11-07 14:24:08 -08008034 return -EINVAL;
8035 }
8036
Chris Wilson05394f32010-11-08 19:18:58 +00008037 obj = to_intel_bo(drm_gem_object_lookup(dev, file, handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00008038 if (&obj->base == NULL)
Jesse Barnes79e53942008-11-07 14:24:08 -08008039 return -ENOENT;
8040
Chris Wilson05394f32010-11-08 19:18:58 +00008041 if (obj->base.size < width * height * 4) {
Daniel Vetter3b25b312014-02-14 14:06:06 +01008042 DRM_DEBUG_KMS("buffer is to small\n");
Dave Airlie34b8686e2009-01-15 14:03:07 +10008043 ret = -ENOMEM;
8044 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -08008045 }
8046
Dave Airlie71acb5e2008-12-30 20:31:46 +10008047 /* we only need to pin inside GTT if cursor is non-phy */
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05008048 mutex_lock(&dev->struct_mutex);
Damien Lespiau3d13ef22014-02-07 19:12:47 +00008049 if (!INTEL_INFO(dev)->cursor_needs_physical) {
Chris Wilson693db182013-03-05 14:52:39 +00008050 unsigned alignment;
8051
Chris Wilsond9e86c02010-11-10 16:40:20 +00008052 if (obj->tiling_mode) {
Daniel Vetter3b25b312014-02-14 14:06:06 +01008053 DRM_DEBUG_KMS("cursor cannot be tiled\n");
Chris Wilsond9e86c02010-11-10 16:40:20 +00008054 ret = -EINVAL;
8055 goto fail_locked;
8056 }
8057
Chris Wilson693db182013-03-05 14:52:39 +00008058 /* Note that the w/a also requires 2 PTE of padding following
8059 * the bo. We currently fill all unused PTE with the shadow
8060 * page and so we should always have valid PTE following the
8061 * cursor preventing the VT-d warning.
8062 */
8063 alignment = 0;
8064 if (need_vtd_wa(dev))
8065 alignment = 64*1024;
8066
8067 ret = i915_gem_object_pin_to_display_plane(obj, alignment, NULL);
Chris Wilsone7b526b2010-06-02 08:30:48 +01008068 if (ret) {
Daniel Vetter3b25b312014-02-14 14:06:06 +01008069 DRM_DEBUG_KMS("failed to move cursor bo into the GTT\n");
Chris Wilson2da3b9b2011-04-14 09:41:17 +01008070 goto fail_locked;
Chris Wilsone7b526b2010-06-02 08:30:48 +01008071 }
8072
Chris Wilsond9e86c02010-11-10 16:40:20 +00008073 ret = i915_gem_object_put_fence(obj);
8074 if (ret) {
Daniel Vetter3b25b312014-02-14 14:06:06 +01008075 DRM_DEBUG_KMS("failed to release fence for cursor");
Chris Wilsond9e86c02010-11-10 16:40:20 +00008076 goto fail_unpin;
8077 }
8078
Ben Widawskyf343c5f2013-07-05 14:41:04 -07008079 addr = i915_gem_obj_ggtt_offset(obj);
Dave Airlie71acb5e2008-12-30 20:31:46 +10008080 } else {
Chris Wilson6eeefaf2010-08-07 11:01:39 +01008081 int align = IS_I830(dev) ? 16 * 1024 : 256;
Chris Wilson05394f32010-11-08 19:18:58 +00008082 ret = i915_gem_attach_phys_object(dev, obj,
Chris Wilson6eeefaf2010-08-07 11:01:39 +01008083 (intel_crtc->pipe == 0) ? I915_GEM_PHYS_CURSOR_0 : I915_GEM_PHYS_CURSOR_1,
8084 align);
Dave Airlie71acb5e2008-12-30 20:31:46 +10008085 if (ret) {
Daniel Vetter3b25b312014-02-14 14:06:06 +01008086 DRM_DEBUG_KMS("failed to attach phys object\n");
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05008087 goto fail_locked;
Dave Airlie71acb5e2008-12-30 20:31:46 +10008088 }
Chris Wilson05394f32010-11-08 19:18:58 +00008089 addr = obj->phys_obj->handle->busaddr;
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05008090 }
8091
Chris Wilsona6c45cf2010-09-17 00:32:17 +01008092 if (IS_GEN2(dev))
Jesse Barnes14b60392009-05-20 16:47:08 -04008093 I915_WRITE(CURSIZE, (height << 12) | width);
8094
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05008095 finish:
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05008096 if (intel_crtc->cursor_bo) {
Damien Lespiau3d13ef22014-02-07 19:12:47 +00008097 if (INTEL_INFO(dev)->cursor_needs_physical) {
Chris Wilson05394f32010-11-08 19:18:58 +00008098 if (intel_crtc->cursor_bo != obj)
Dave Airlie71acb5e2008-12-30 20:31:46 +10008099 i915_gem_detach_phys_object(dev, intel_crtc->cursor_bo);
8100 } else
Chris Wilsoncc98b412013-08-09 12:25:09 +01008101 i915_gem_object_unpin_from_display_plane(intel_crtc->cursor_bo);
Chris Wilson05394f32010-11-08 19:18:58 +00008102 drm_gem_object_unreference(&intel_crtc->cursor_bo->base);
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05008103 }
Jesse Barnes80824002009-09-10 15:28:06 -07008104
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05008105 mutex_unlock(&dev->struct_mutex);
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05008106
Chris Wilson64f962e2014-03-26 12:38:15 +00008107 old_width = intel_crtc->cursor_width;
8108
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05008109 intel_crtc->cursor_addr = addr;
Chris Wilson05394f32010-11-08 19:18:58 +00008110 intel_crtc->cursor_bo = obj;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01008111 intel_crtc->cursor_width = width;
8112 intel_crtc->cursor_height = height;
8113
Chris Wilson64f962e2014-03-26 12:38:15 +00008114 if (intel_crtc->active) {
8115 if (old_width != width)
8116 intel_update_watermarks(crtc);
Ville Syrjäläf2f5f772013-09-17 18:33:44 +03008117 intel_crtc_update_cursor(crtc, intel_crtc->cursor_bo != NULL);
Chris Wilson64f962e2014-03-26 12:38:15 +00008118 }
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05008119
Jesse Barnes79e53942008-11-07 14:24:08 -08008120 return 0;
Chris Wilsone7b526b2010-06-02 08:30:48 +01008121fail_unpin:
Chris Wilsoncc98b412013-08-09 12:25:09 +01008122 i915_gem_object_unpin_from_display_plane(obj);
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05008123fail_locked:
Dave Airlie34b8686e2009-01-15 14:03:07 +10008124 mutex_unlock(&dev->struct_mutex);
Luca Barbieribc9025b2010-02-09 05:49:12 +00008125fail:
Chris Wilson05394f32010-11-08 19:18:58 +00008126 drm_gem_object_unreference_unlocked(&obj->base);
Dave Airlie34b8686e2009-01-15 14:03:07 +10008127 return ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08008128}
8129
8130static int intel_crtc_cursor_move(struct drm_crtc *crtc, int x, int y)
8131{
Jesse Barnes79e53942008-11-07 14:24:08 -08008132 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08008133
Ville Syrjälä92e76c82013-10-21 19:01:58 +03008134 intel_crtc->cursor_x = clamp_t(int, x, SHRT_MIN, SHRT_MAX);
8135 intel_crtc->cursor_y = clamp_t(int, y, SHRT_MIN, SHRT_MAX);
Jesse Barnes652c3932009-08-17 13:31:43 -07008136
Ville Syrjäläf2f5f772013-09-17 18:33:44 +03008137 if (intel_crtc->active)
8138 intel_crtc_update_cursor(crtc, intel_crtc->cursor_bo != NULL);
Jesse Barnes79e53942008-11-07 14:24:08 -08008139
8140 return 0;
8141}
8142
Jesse Barnes79e53942008-11-07 14:24:08 -08008143static void intel_crtc_gamma_set(struct drm_crtc *crtc, u16 *red, u16 *green,
James Simmons72034252010-08-03 01:33:19 +01008144 u16 *blue, uint32_t start, uint32_t size)
Jesse Barnes79e53942008-11-07 14:24:08 -08008145{
James Simmons72034252010-08-03 01:33:19 +01008146 int end = (start + size > 256) ? 256 : start + size, i;
Jesse Barnes79e53942008-11-07 14:24:08 -08008147 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08008148
James Simmons72034252010-08-03 01:33:19 +01008149 for (i = start; i < end; i++) {
Jesse Barnes79e53942008-11-07 14:24:08 -08008150 intel_crtc->lut_r[i] = red[i] >> 8;
8151 intel_crtc->lut_g[i] = green[i] >> 8;
8152 intel_crtc->lut_b[i] = blue[i] >> 8;
8153 }
8154
8155 intel_crtc_load_lut(crtc);
8156}
8157
Jesse Barnes79e53942008-11-07 14:24:08 -08008158/* VESA 640x480x72Hz mode to set on the pipe */
8159static struct drm_display_mode load_detect_mode = {
8160 DRM_MODE("640x480", DRM_MODE_TYPE_DEFAULT, 31500, 640, 664,
8161 704, 832, 0, 480, 489, 491, 520, 0, DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
8162};
8163
Daniel Vettera8bb6812014-02-10 18:00:39 +01008164struct drm_framebuffer *
8165__intel_framebuffer_create(struct drm_device *dev,
8166 struct drm_mode_fb_cmd2 *mode_cmd,
8167 struct drm_i915_gem_object *obj)
Chris Wilsond2dff872011-04-19 08:36:26 +01008168{
8169 struct intel_framebuffer *intel_fb;
8170 int ret;
8171
8172 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
8173 if (!intel_fb) {
8174 drm_gem_object_unreference_unlocked(&obj->base);
8175 return ERR_PTR(-ENOMEM);
8176 }
8177
8178 ret = intel_framebuffer_init(dev, intel_fb, mode_cmd, obj);
Daniel Vetterdd4916c2013-10-09 21:23:51 +02008179 if (ret)
8180 goto err;
Chris Wilsond2dff872011-04-19 08:36:26 +01008181
8182 return &intel_fb->base;
Daniel Vetterdd4916c2013-10-09 21:23:51 +02008183err:
8184 drm_gem_object_unreference_unlocked(&obj->base);
8185 kfree(intel_fb);
8186
8187 return ERR_PTR(ret);
Chris Wilsond2dff872011-04-19 08:36:26 +01008188}
8189
Daniel Vetterb5ea6422014-03-02 21:18:00 +01008190static struct drm_framebuffer *
Daniel Vettera8bb6812014-02-10 18:00:39 +01008191intel_framebuffer_create(struct drm_device *dev,
8192 struct drm_mode_fb_cmd2 *mode_cmd,
8193 struct drm_i915_gem_object *obj)
8194{
8195 struct drm_framebuffer *fb;
8196 int ret;
8197
8198 ret = i915_mutex_lock_interruptible(dev);
8199 if (ret)
8200 return ERR_PTR(ret);
8201 fb = __intel_framebuffer_create(dev, mode_cmd, obj);
8202 mutex_unlock(&dev->struct_mutex);
8203
8204 return fb;
8205}
8206
Chris Wilsond2dff872011-04-19 08:36:26 +01008207static u32
8208intel_framebuffer_pitch_for_width(int width, int bpp)
8209{
8210 u32 pitch = DIV_ROUND_UP(width * bpp, 8);
8211 return ALIGN(pitch, 64);
8212}
8213
8214static u32
8215intel_framebuffer_size_for_mode(struct drm_display_mode *mode, int bpp)
8216{
8217 u32 pitch = intel_framebuffer_pitch_for_width(mode->hdisplay, bpp);
8218 return ALIGN(pitch * mode->vdisplay, PAGE_SIZE);
8219}
8220
8221static struct drm_framebuffer *
8222intel_framebuffer_create_for_mode(struct drm_device *dev,
8223 struct drm_display_mode *mode,
8224 int depth, int bpp)
8225{
8226 struct drm_i915_gem_object *obj;
Chris Wilson0fed39b2012-11-05 22:25:07 +00008227 struct drm_mode_fb_cmd2 mode_cmd = { 0 };
Chris Wilsond2dff872011-04-19 08:36:26 +01008228
8229 obj = i915_gem_alloc_object(dev,
8230 intel_framebuffer_size_for_mode(mode, bpp));
8231 if (obj == NULL)
8232 return ERR_PTR(-ENOMEM);
8233
8234 mode_cmd.width = mode->hdisplay;
8235 mode_cmd.height = mode->vdisplay;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08008236 mode_cmd.pitches[0] = intel_framebuffer_pitch_for_width(mode_cmd.width,
8237 bpp);
Dave Airlie5ca0c342012-02-23 15:33:40 +00008238 mode_cmd.pixel_format = drm_mode_legacy_fb_format(bpp, depth);
Chris Wilsond2dff872011-04-19 08:36:26 +01008239
8240 return intel_framebuffer_create(dev, &mode_cmd, obj);
8241}
8242
8243static struct drm_framebuffer *
8244mode_fits_in_fbdev(struct drm_device *dev,
8245 struct drm_display_mode *mode)
8246{
Daniel Vetter4520f532013-10-09 09:18:51 +02008247#ifdef CONFIG_DRM_I915_FBDEV
Chris Wilsond2dff872011-04-19 08:36:26 +01008248 struct drm_i915_private *dev_priv = dev->dev_private;
8249 struct drm_i915_gem_object *obj;
8250 struct drm_framebuffer *fb;
8251
Daniel Vetter4c0e5522014-02-14 16:35:54 +01008252 if (!dev_priv->fbdev)
8253 return NULL;
8254
8255 if (!dev_priv->fbdev->fb)
Chris Wilsond2dff872011-04-19 08:36:26 +01008256 return NULL;
8257
Jesse Barnes8bcd4552014-02-07 12:10:38 -08008258 obj = dev_priv->fbdev->fb->obj;
Daniel Vetter4c0e5522014-02-14 16:35:54 +01008259 BUG_ON(!obj);
Chris Wilsond2dff872011-04-19 08:36:26 +01008260
Jesse Barnes8bcd4552014-02-07 12:10:38 -08008261 fb = &dev_priv->fbdev->fb->base;
Ville Syrjälä01f2c772011-12-20 00:06:49 +02008262 if (fb->pitches[0] < intel_framebuffer_pitch_for_width(mode->hdisplay,
8263 fb->bits_per_pixel))
Chris Wilsond2dff872011-04-19 08:36:26 +01008264 return NULL;
8265
Ville Syrjälä01f2c772011-12-20 00:06:49 +02008266 if (obj->base.size < mode->vdisplay * fb->pitches[0])
Chris Wilsond2dff872011-04-19 08:36:26 +01008267 return NULL;
8268
8269 return fb;
Daniel Vetter4520f532013-10-09 09:18:51 +02008270#else
8271 return NULL;
8272#endif
Chris Wilsond2dff872011-04-19 08:36:26 +01008273}
8274
Daniel Vetterd2434ab2012-08-12 21:20:10 +02008275bool intel_get_load_detect_pipe(struct drm_connector *connector,
Chris Wilson71731882011-04-19 23:10:58 +01008276 struct drm_display_mode *mode,
Chris Wilson8261b192011-04-19 23:18:09 +01008277 struct intel_load_detect_pipe *old)
Jesse Barnes79e53942008-11-07 14:24:08 -08008278{
8279 struct intel_crtc *intel_crtc;
Daniel Vetterd2434ab2012-08-12 21:20:10 +02008280 struct intel_encoder *intel_encoder =
8281 intel_attached_encoder(connector);
Jesse Barnes79e53942008-11-07 14:24:08 -08008282 struct drm_crtc *possible_crtc;
Chris Wilson4ef69c72010-09-09 15:14:28 +01008283 struct drm_encoder *encoder = &intel_encoder->base;
Jesse Barnes79e53942008-11-07 14:24:08 -08008284 struct drm_crtc *crtc = NULL;
8285 struct drm_device *dev = encoder->dev;
Daniel Vetter94352cf2012-07-05 22:51:56 +02008286 struct drm_framebuffer *fb;
Jesse Barnes79e53942008-11-07 14:24:08 -08008287 int i = -1;
8288
Chris Wilsond2dff872011-04-19 08:36:26 +01008289 DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
8290 connector->base.id, drm_get_connector_name(connector),
8291 encoder->base.id, drm_get_encoder_name(encoder));
8292
Jesse Barnes79e53942008-11-07 14:24:08 -08008293 /*
8294 * Algorithm gets a little messy:
Chris Wilson7a5e4802011-04-19 23:21:12 +01008295 *
Jesse Barnes79e53942008-11-07 14:24:08 -08008296 * - if the connector already has an assigned crtc, use it (but make
8297 * sure it's on first)
Chris Wilson7a5e4802011-04-19 23:21:12 +01008298 *
Jesse Barnes79e53942008-11-07 14:24:08 -08008299 * - try to find the first unused crtc that can drive this connector,
8300 * and use that if we find one
Jesse Barnes79e53942008-11-07 14:24:08 -08008301 */
8302
8303 /* See if we already have a CRTC for this connector */
8304 if (encoder->crtc) {
8305 crtc = encoder->crtc;
Chris Wilson8261b192011-04-19 23:18:09 +01008306
Daniel Vetter7b240562012-12-12 00:35:33 +01008307 mutex_lock(&crtc->mutex);
8308
Daniel Vetter24218aa2012-08-12 19:27:11 +02008309 old->dpms_mode = connector->dpms;
Chris Wilson8261b192011-04-19 23:18:09 +01008310 old->load_detect_temp = false;
8311
8312 /* Make sure the crtc and connector are running */
Daniel Vetter24218aa2012-08-12 19:27:11 +02008313 if (connector->dpms != DRM_MODE_DPMS_ON)
8314 connector->funcs->dpms(connector, DRM_MODE_DPMS_ON);
Chris Wilson8261b192011-04-19 23:18:09 +01008315
Chris Wilson71731882011-04-19 23:10:58 +01008316 return true;
Jesse Barnes79e53942008-11-07 14:24:08 -08008317 }
8318
8319 /* Find an unused one (if possible) */
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01008320 for_each_crtc(dev, possible_crtc) {
Jesse Barnes79e53942008-11-07 14:24:08 -08008321 i++;
8322 if (!(encoder->possible_crtcs & (1 << i)))
8323 continue;
8324 if (!possible_crtc->enabled) {
8325 crtc = possible_crtc;
8326 break;
8327 }
Jesse Barnes79e53942008-11-07 14:24:08 -08008328 }
8329
8330 /*
8331 * If we didn't find an unused CRTC, don't use any.
8332 */
8333 if (!crtc) {
Chris Wilson71731882011-04-19 23:10:58 +01008334 DRM_DEBUG_KMS("no pipe available for load-detect\n");
8335 return false;
Jesse Barnes79e53942008-11-07 14:24:08 -08008336 }
8337
Daniel Vetter7b240562012-12-12 00:35:33 +01008338 mutex_lock(&crtc->mutex);
Daniel Vetterfc303102012-07-09 10:40:58 +02008339 intel_encoder->new_crtc = to_intel_crtc(crtc);
8340 to_intel_connector(connector)->new_encoder = intel_encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08008341
8342 intel_crtc = to_intel_crtc(crtc);
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008343 intel_crtc->new_enabled = true;
8344 intel_crtc->new_config = &intel_crtc->config;
Daniel Vetter24218aa2012-08-12 19:27:11 +02008345 old->dpms_mode = connector->dpms;
Chris Wilson8261b192011-04-19 23:18:09 +01008346 old->load_detect_temp = true;
Chris Wilsond2dff872011-04-19 08:36:26 +01008347 old->release_fb = NULL;
Jesse Barnes79e53942008-11-07 14:24:08 -08008348
Chris Wilson64927112011-04-20 07:25:26 +01008349 if (!mode)
8350 mode = &load_detect_mode;
Jesse Barnes79e53942008-11-07 14:24:08 -08008351
Chris Wilsond2dff872011-04-19 08:36:26 +01008352 /* We need a framebuffer large enough to accommodate all accesses
8353 * that the plane may generate whilst we perform load detection.
8354 * We can not rely on the fbcon either being present (we get called
8355 * during its initialisation to detect all boot displays, or it may
8356 * not even exist) or that it is large enough to satisfy the
8357 * requested mode.
8358 */
Daniel Vetter94352cf2012-07-05 22:51:56 +02008359 fb = mode_fits_in_fbdev(dev, mode);
8360 if (fb == NULL) {
Chris Wilsond2dff872011-04-19 08:36:26 +01008361 DRM_DEBUG_KMS("creating tmp fb for load-detection\n");
Daniel Vetter94352cf2012-07-05 22:51:56 +02008362 fb = intel_framebuffer_create_for_mode(dev, mode, 24, 32);
8363 old->release_fb = fb;
Chris Wilsond2dff872011-04-19 08:36:26 +01008364 } else
8365 DRM_DEBUG_KMS("reusing fbdev for load-detection framebuffer\n");
Daniel Vetter94352cf2012-07-05 22:51:56 +02008366 if (IS_ERR(fb)) {
Chris Wilsond2dff872011-04-19 08:36:26 +01008367 DRM_DEBUG_KMS("failed to allocate framebuffer for load-detection\n");
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008368 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -08008369 }
Chris Wilsond2dff872011-04-19 08:36:26 +01008370
Chris Wilsonc0c36b942012-12-19 16:08:43 +00008371 if (intel_set_mode(crtc, mode, 0, 0, fb)) {
Chris Wilson64927112011-04-20 07:25:26 +01008372 DRM_DEBUG_KMS("failed to set mode on load-detect pipe\n");
Chris Wilsond2dff872011-04-19 08:36:26 +01008373 if (old->release_fb)
8374 old->release_fb->funcs->destroy(old->release_fb);
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008375 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -08008376 }
Chris Wilson71731882011-04-19 23:10:58 +01008377
Jesse Barnes79e53942008-11-07 14:24:08 -08008378 /* let the connector get through one full cycle before testing */
Jesse Barnes9d0498a2010-08-18 13:20:54 -07008379 intel_wait_for_vblank(dev, intel_crtc->pipe);
Chris Wilson71731882011-04-19 23:10:58 +01008380 return true;
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008381
8382 fail:
8383 intel_crtc->new_enabled = crtc->enabled;
8384 if (intel_crtc->new_enabled)
8385 intel_crtc->new_config = &intel_crtc->config;
8386 else
8387 intel_crtc->new_config = NULL;
8388 mutex_unlock(&crtc->mutex);
8389 return false;
Jesse Barnes79e53942008-11-07 14:24:08 -08008390}
8391
Daniel Vetterd2434ab2012-08-12 21:20:10 +02008392void intel_release_load_detect_pipe(struct drm_connector *connector,
Chris Wilson8261b192011-04-19 23:18:09 +01008393 struct intel_load_detect_pipe *old)
Jesse Barnes79e53942008-11-07 14:24:08 -08008394{
Daniel Vetterd2434ab2012-08-12 21:20:10 +02008395 struct intel_encoder *intel_encoder =
8396 intel_attached_encoder(connector);
Chris Wilson4ef69c72010-09-09 15:14:28 +01008397 struct drm_encoder *encoder = &intel_encoder->base;
Daniel Vetter7b240562012-12-12 00:35:33 +01008398 struct drm_crtc *crtc = encoder->crtc;
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008399 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08008400
Chris Wilsond2dff872011-04-19 08:36:26 +01008401 DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
8402 connector->base.id, drm_get_connector_name(connector),
8403 encoder->base.id, drm_get_encoder_name(encoder));
8404
Chris Wilson8261b192011-04-19 23:18:09 +01008405 if (old->load_detect_temp) {
Daniel Vetterfc303102012-07-09 10:40:58 +02008406 to_intel_connector(connector)->new_encoder = NULL;
8407 intel_encoder->new_crtc = NULL;
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008408 intel_crtc->new_enabled = false;
8409 intel_crtc->new_config = NULL;
Daniel Vetterfc303102012-07-09 10:40:58 +02008410 intel_set_mode(crtc, NULL, 0, 0, NULL);
Chris Wilsond2dff872011-04-19 08:36:26 +01008411
Daniel Vetter36206362012-12-10 20:42:17 +01008412 if (old->release_fb) {
8413 drm_framebuffer_unregister_private(old->release_fb);
8414 drm_framebuffer_unreference(old->release_fb);
8415 }
Chris Wilsond2dff872011-04-19 08:36:26 +01008416
Daniel Vetter67c96402013-01-23 16:25:09 +00008417 mutex_unlock(&crtc->mutex);
Chris Wilson0622a532011-04-21 09:32:11 +01008418 return;
Jesse Barnes79e53942008-11-07 14:24:08 -08008419 }
8420
Eric Anholtc751ce42010-03-25 11:48:48 -07008421 /* Switch crtc and encoder back off if necessary */
Daniel Vetter24218aa2012-08-12 19:27:11 +02008422 if (old->dpms_mode != DRM_MODE_DPMS_ON)
8423 connector->funcs->dpms(connector, old->dpms_mode);
Daniel Vetter7b240562012-12-12 00:35:33 +01008424
8425 mutex_unlock(&crtc->mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -08008426}
8427
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +03008428static int i9xx_pll_refclk(struct drm_device *dev,
8429 const struct intel_crtc_config *pipe_config)
8430{
8431 struct drm_i915_private *dev_priv = dev->dev_private;
8432 u32 dpll = pipe_config->dpll_hw_state.dpll;
8433
8434 if ((dpll & PLL_REF_INPUT_MASK) == PLLB_REF_INPUT_SPREADSPECTRUMIN)
Ville Syrjäläe91e9412013-12-09 18:54:16 +02008435 return dev_priv->vbt.lvds_ssc_freq;
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +03008436 else if (HAS_PCH_SPLIT(dev))
8437 return 120000;
8438 else if (!IS_GEN2(dev))
8439 return 96000;
8440 else
8441 return 48000;
8442}
8443
Jesse Barnes79e53942008-11-07 14:24:08 -08008444/* Returns the clock of the currently programmed mode of the given pipe. */
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008445static void i9xx_crtc_clock_get(struct intel_crtc *crtc,
8446 struct intel_crtc_config *pipe_config)
Jesse Barnes79e53942008-11-07 14:24:08 -08008447{
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008448 struct drm_device *dev = crtc->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08008449 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008450 int pipe = pipe_config->cpu_transcoder;
Ville Syrjälä293623f2013-09-13 16:18:46 +03008451 u32 dpll = pipe_config->dpll_hw_state.dpll;
Jesse Barnes79e53942008-11-07 14:24:08 -08008452 u32 fp;
8453 intel_clock_t clock;
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +03008454 int refclk = i9xx_pll_refclk(dev, pipe_config);
Jesse Barnes79e53942008-11-07 14:24:08 -08008455
8456 if ((dpll & DISPLAY_RATE_SELECT_FPA1) == 0)
Ville Syrjälä293623f2013-09-13 16:18:46 +03008457 fp = pipe_config->dpll_hw_state.fp0;
Jesse Barnes79e53942008-11-07 14:24:08 -08008458 else
Ville Syrjälä293623f2013-09-13 16:18:46 +03008459 fp = pipe_config->dpll_hw_state.fp1;
Jesse Barnes79e53942008-11-07 14:24:08 -08008460
8461 clock.m1 = (fp & FP_M1_DIV_MASK) >> FP_M1_DIV_SHIFT;
Adam Jacksonf2b115e2009-12-03 17:14:42 -05008462 if (IS_PINEVIEW(dev)) {
8463 clock.n = ffs((fp & FP_N_PINEVIEW_DIV_MASK) >> FP_N_DIV_SHIFT) - 1;
8464 clock.m2 = (fp & FP_M2_PINEVIEW_DIV_MASK) >> FP_M2_DIV_SHIFT;
Shaohua Li21778322009-02-23 15:19:16 +08008465 } else {
8466 clock.n = (fp & FP_N_DIV_MASK) >> FP_N_DIV_SHIFT;
8467 clock.m2 = (fp & FP_M2_DIV_MASK) >> FP_M2_DIV_SHIFT;
8468 }
8469
Chris Wilsona6c45cf2010-09-17 00:32:17 +01008470 if (!IS_GEN2(dev)) {
Adam Jacksonf2b115e2009-12-03 17:14:42 -05008471 if (IS_PINEVIEW(dev))
8472 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_PINEVIEW) >>
8473 DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW);
Shaohua Li21778322009-02-23 15:19:16 +08008474 else
8475 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK) >>
Jesse Barnes79e53942008-11-07 14:24:08 -08008476 DPLL_FPA01_P1_POST_DIV_SHIFT);
8477
8478 switch (dpll & DPLL_MODE_MASK) {
8479 case DPLLB_MODE_DAC_SERIAL:
8480 clock.p2 = dpll & DPLL_DAC_SERIAL_P2_CLOCK_DIV_5 ?
8481 5 : 10;
8482 break;
8483 case DPLLB_MODE_LVDS:
8484 clock.p2 = dpll & DPLLB_LVDS_P2_CLOCK_DIV_7 ?
8485 7 : 14;
8486 break;
8487 default:
Zhao Yakui28c97732009-10-09 11:39:41 +08008488 DRM_DEBUG_KMS("Unknown DPLL mode %08x in programmed "
Jesse Barnes79e53942008-11-07 14:24:08 -08008489 "mode\n", (int)(dpll & DPLL_MODE_MASK));
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008490 return;
Jesse Barnes79e53942008-11-07 14:24:08 -08008491 }
8492
Daniel Vetterac58c3f2013-06-01 17:16:17 +02008493 if (IS_PINEVIEW(dev))
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +03008494 pineview_clock(refclk, &clock);
Daniel Vetterac58c3f2013-06-01 17:16:17 +02008495 else
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +03008496 i9xx_clock(refclk, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08008497 } else {
Ville Syrjälä0fb58222014-01-10 14:06:46 +02008498 u32 lvds = IS_I830(dev) ? 0 : I915_READ(LVDS);
Ville Syrjäläb1c560d2013-12-09 18:54:13 +02008499 bool is_lvds = (pipe == 1) && (lvds & LVDS_PORT_EN);
Jesse Barnes79e53942008-11-07 14:24:08 -08008500
8501 if (is_lvds) {
8502 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830_LVDS) >>
8503 DPLL_FPA01_P1_POST_DIV_SHIFT);
Ville Syrjäläb1c560d2013-12-09 18:54:13 +02008504
8505 if (lvds & LVDS_CLKB_POWER_UP)
8506 clock.p2 = 7;
8507 else
8508 clock.p2 = 14;
Jesse Barnes79e53942008-11-07 14:24:08 -08008509 } else {
8510 if (dpll & PLL_P1_DIVIDE_BY_TWO)
8511 clock.p1 = 2;
8512 else {
8513 clock.p1 = ((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830) >>
8514 DPLL_FPA01_P1_POST_DIV_SHIFT) + 2;
8515 }
8516 if (dpll & PLL_P2_DIVIDE_BY_4)
8517 clock.p2 = 4;
8518 else
8519 clock.p2 = 2;
Jesse Barnes79e53942008-11-07 14:24:08 -08008520 }
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +03008521
8522 i9xx_clock(refclk, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08008523 }
8524
Ville Syrjälä18442d02013-09-13 16:00:08 +03008525 /*
8526 * This value includes pixel_multiplier. We will use
Damien Lespiau241bfc32013-09-25 16:45:37 +01008527 * port_clock to compute adjusted_mode.crtc_clock in the
Ville Syrjälä18442d02013-09-13 16:00:08 +03008528 * encoder's get_config() function.
8529 */
8530 pipe_config->port_clock = clock.dot;
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008531}
8532
Ville Syrjälä6878da02013-09-13 15:59:11 +03008533int intel_dotclock_calculate(int link_freq,
8534 const struct intel_link_m_n *m_n)
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008535{
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008536 /*
8537 * The calculation for the data clock is:
Ville Syrjälä1041a022013-09-06 23:28:58 +03008538 * pixel_clock = ((m/n)*(link_clock * nr_lanes))/bpp
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008539 * But we want to avoid losing precison if possible, so:
Ville Syrjälä1041a022013-09-06 23:28:58 +03008540 * pixel_clock = ((m * link_clock * nr_lanes)/(n*bpp))
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008541 *
8542 * and the link clock is simpler:
Ville Syrjälä1041a022013-09-06 23:28:58 +03008543 * link_clock = (m * link_clock) / n
Jesse Barnes79e53942008-11-07 14:24:08 -08008544 */
8545
Ville Syrjälä6878da02013-09-13 15:59:11 +03008546 if (!m_n->link_n)
8547 return 0;
8548
8549 return div_u64((u64)m_n->link_m * link_freq, m_n->link_n);
8550}
8551
Ville Syrjälä18442d02013-09-13 16:00:08 +03008552static void ironlake_pch_clock_get(struct intel_crtc *crtc,
8553 struct intel_crtc_config *pipe_config)
Ville Syrjälä6878da02013-09-13 15:59:11 +03008554{
8555 struct drm_device *dev = crtc->base.dev;
Ville Syrjälä18442d02013-09-13 16:00:08 +03008556
8557 /* read out port_clock from the DPLL */
8558 i9xx_crtc_clock_get(crtc, pipe_config);
Ville Syrjälä6878da02013-09-13 15:59:11 +03008559
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008560 /*
Ville Syrjälä18442d02013-09-13 16:00:08 +03008561 * This value does not include pixel_multiplier.
Damien Lespiau241bfc32013-09-25 16:45:37 +01008562 * We will check that port_clock and adjusted_mode.crtc_clock
Ville Syrjälä18442d02013-09-13 16:00:08 +03008563 * agree once we know their relationship in the encoder's
8564 * get_config() function.
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008565 */
Damien Lespiau241bfc32013-09-25 16:45:37 +01008566 pipe_config->adjusted_mode.crtc_clock =
Ville Syrjälä18442d02013-09-13 16:00:08 +03008567 intel_dotclock_calculate(intel_fdi_link_freq(dev) * 10000,
8568 &pipe_config->fdi_m_n);
Jesse Barnes79e53942008-11-07 14:24:08 -08008569}
8570
8571/** Returns the currently programmed mode of the given pipe. */
8572struct drm_display_mode *intel_crtc_mode_get(struct drm_device *dev,
8573 struct drm_crtc *crtc)
8574{
Jesse Barnes548f2452011-02-17 10:40:53 -08008575 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -08008576 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter3b117c82013-04-17 20:15:07 +02008577 enum transcoder cpu_transcoder = intel_crtc->config.cpu_transcoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08008578 struct drm_display_mode *mode;
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008579 struct intel_crtc_config pipe_config;
Paulo Zanonife2b8f92012-10-23 18:30:02 -02008580 int htot = I915_READ(HTOTAL(cpu_transcoder));
8581 int hsync = I915_READ(HSYNC(cpu_transcoder));
8582 int vtot = I915_READ(VTOTAL(cpu_transcoder));
8583 int vsync = I915_READ(VSYNC(cpu_transcoder));
Ville Syrjälä293623f2013-09-13 16:18:46 +03008584 enum pipe pipe = intel_crtc->pipe;
Jesse Barnes79e53942008-11-07 14:24:08 -08008585
8586 mode = kzalloc(sizeof(*mode), GFP_KERNEL);
8587 if (!mode)
8588 return NULL;
8589
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008590 /*
8591 * Construct a pipe_config sufficient for getting the clock info
8592 * back out of crtc_clock_get.
8593 *
8594 * Note, if LVDS ever uses a non-1 pixel multiplier, we'll need
8595 * to use a real value here instead.
8596 */
Ville Syrjälä293623f2013-09-13 16:18:46 +03008597 pipe_config.cpu_transcoder = (enum transcoder) pipe;
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008598 pipe_config.pixel_multiplier = 1;
Ville Syrjälä293623f2013-09-13 16:18:46 +03008599 pipe_config.dpll_hw_state.dpll = I915_READ(DPLL(pipe));
8600 pipe_config.dpll_hw_state.fp0 = I915_READ(FP0(pipe));
8601 pipe_config.dpll_hw_state.fp1 = I915_READ(FP1(pipe));
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008602 i9xx_crtc_clock_get(intel_crtc, &pipe_config);
8603
Ville Syrjälä773ae032013-09-23 17:48:20 +03008604 mode->clock = pipe_config.port_clock / pipe_config.pixel_multiplier;
Jesse Barnes79e53942008-11-07 14:24:08 -08008605 mode->hdisplay = (htot & 0xffff) + 1;
8606 mode->htotal = ((htot & 0xffff0000) >> 16) + 1;
8607 mode->hsync_start = (hsync & 0xffff) + 1;
8608 mode->hsync_end = ((hsync & 0xffff0000) >> 16) + 1;
8609 mode->vdisplay = (vtot & 0xffff) + 1;
8610 mode->vtotal = ((vtot & 0xffff0000) >> 16) + 1;
8611 mode->vsync_start = (vsync & 0xffff) + 1;
8612 mode->vsync_end = ((vsync & 0xffff0000) >> 16) + 1;
8613
8614 drm_mode_set_name(mode);
Jesse Barnes79e53942008-11-07 14:24:08 -08008615
8616 return mode;
8617}
8618
Daniel Vetter3dec0092010-08-20 21:40:52 +02008619static void intel_increase_pllclock(struct drm_crtc *crtc)
Jesse Barnes652c3932009-08-17 13:31:43 -07008620{
8621 struct drm_device *dev = crtc->dev;
Jani Nikulafbee40d2014-03-31 14:27:18 +03008622 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes652c3932009-08-17 13:31:43 -07008623 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
8624 int pipe = intel_crtc->pipe;
Jesse Barnesdbdc6472010-12-30 09:36:39 -08008625 int dpll_reg = DPLL(pipe);
8626 int dpll;
Jesse Barnes652c3932009-08-17 13:31:43 -07008627
Eric Anholtbad720f2009-10-22 16:11:14 -07008628 if (HAS_PCH_SPLIT(dev))
Jesse Barnes652c3932009-08-17 13:31:43 -07008629 return;
8630
8631 if (!dev_priv->lvds_downclock_avail)
8632 return;
8633
Jesse Barnesdbdc6472010-12-30 09:36:39 -08008634 dpll = I915_READ(dpll_reg);
Jesse Barnes652c3932009-08-17 13:31:43 -07008635 if (!HAS_PIPE_CXSR(dev) && (dpll & DISPLAY_RATE_SELECT_FPA1)) {
Zhao Yakui44d98a62009-10-09 11:39:40 +08008636 DRM_DEBUG_DRIVER("upclocking LVDS\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07008637
Sean Paul8ac5a6d2012-02-13 13:14:51 -05008638 assert_panel_unlocked(dev_priv, pipe);
Jesse Barnes652c3932009-08-17 13:31:43 -07008639
8640 dpll &= ~DISPLAY_RATE_SELECT_FPA1;
8641 I915_WRITE(dpll_reg, dpll);
Jesse Barnes9d0498a2010-08-18 13:20:54 -07008642 intel_wait_for_vblank(dev, pipe);
Jesse Barnesdbdc6472010-12-30 09:36:39 -08008643
Jesse Barnes652c3932009-08-17 13:31:43 -07008644 dpll = I915_READ(dpll_reg);
8645 if (dpll & DISPLAY_RATE_SELECT_FPA1)
Zhao Yakui44d98a62009-10-09 11:39:40 +08008646 DRM_DEBUG_DRIVER("failed to upclock LVDS!\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07008647 }
Jesse Barnes652c3932009-08-17 13:31:43 -07008648}
8649
8650static void intel_decrease_pllclock(struct drm_crtc *crtc)
8651{
8652 struct drm_device *dev = crtc->dev;
Jani Nikulafbee40d2014-03-31 14:27:18 +03008653 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes652c3932009-08-17 13:31:43 -07008654 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes652c3932009-08-17 13:31:43 -07008655
Eric Anholtbad720f2009-10-22 16:11:14 -07008656 if (HAS_PCH_SPLIT(dev))
Jesse Barnes652c3932009-08-17 13:31:43 -07008657 return;
8658
8659 if (!dev_priv->lvds_downclock_avail)
8660 return;
8661
8662 /*
8663 * Since this is called by a timer, we should never get here in
8664 * the manual case.
8665 */
8666 if (!HAS_PIPE_CXSR(dev) && intel_crtc->lowfreq_avail) {
Chris Wilson074b5e12012-05-02 12:07:06 +01008667 int pipe = intel_crtc->pipe;
8668 int dpll_reg = DPLL(pipe);
Daniel Vetterdc257cf2012-05-07 11:30:46 +02008669 int dpll;
Chris Wilson074b5e12012-05-02 12:07:06 +01008670
Zhao Yakui44d98a62009-10-09 11:39:40 +08008671 DRM_DEBUG_DRIVER("downclocking LVDS\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07008672
Sean Paul8ac5a6d2012-02-13 13:14:51 -05008673 assert_panel_unlocked(dev_priv, pipe);
Jesse Barnes652c3932009-08-17 13:31:43 -07008674
Chris Wilson074b5e12012-05-02 12:07:06 +01008675 dpll = I915_READ(dpll_reg);
Jesse Barnes652c3932009-08-17 13:31:43 -07008676 dpll |= DISPLAY_RATE_SELECT_FPA1;
8677 I915_WRITE(dpll_reg, dpll);
Jesse Barnes9d0498a2010-08-18 13:20:54 -07008678 intel_wait_for_vblank(dev, pipe);
Jesse Barnes652c3932009-08-17 13:31:43 -07008679 dpll = I915_READ(dpll_reg);
8680 if (!(dpll & DISPLAY_RATE_SELECT_FPA1))
Zhao Yakui44d98a62009-10-09 11:39:40 +08008681 DRM_DEBUG_DRIVER("failed to downclock LVDS!\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07008682 }
8683
8684}
8685
Chris Wilsonf047e392012-07-21 12:31:41 +01008686void intel_mark_busy(struct drm_device *dev)
Jesse Barnes652c3932009-08-17 13:31:43 -07008687{
Paulo Zanonic67a4702013-08-19 13:18:09 -03008688 struct drm_i915_private *dev_priv = dev->dev_private;
8689
Chris Wilsonf62a0072014-02-21 17:55:39 +00008690 if (dev_priv->mm.busy)
8691 return;
8692
Paulo Zanoni43694d62014-03-07 20:08:08 -03008693 intel_runtime_pm_get(dev_priv);
Paulo Zanonic67a4702013-08-19 13:18:09 -03008694 i915_update_gfx_val(dev_priv);
Chris Wilsonf62a0072014-02-21 17:55:39 +00008695 dev_priv->mm.busy = true;
Chris Wilsonf047e392012-07-21 12:31:41 +01008696}
8697
8698void intel_mark_idle(struct drm_device *dev)
8699{
Paulo Zanonic67a4702013-08-19 13:18:09 -03008700 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson725a5b52013-01-08 11:02:57 +00008701 struct drm_crtc *crtc;
8702
Chris Wilsonf62a0072014-02-21 17:55:39 +00008703 if (!dev_priv->mm.busy)
8704 return;
8705
8706 dev_priv->mm.busy = false;
8707
Jani Nikulad330a952014-01-21 11:24:25 +02008708 if (!i915.powersave)
Paulo Zanonibb4cdd52014-02-21 13:52:19 -03008709 goto out;
Chris Wilson725a5b52013-01-08 11:02:57 +00008710
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01008711 for_each_crtc(dev, crtc) {
Matt Roperf4510a22014-04-01 15:22:40 -07008712 if (!crtc->primary->fb)
Chris Wilson725a5b52013-01-08 11:02:57 +00008713 continue;
8714
8715 intel_decrease_pllclock(crtc);
8716 }
Chris Wilsonb29c19b2013-09-25 17:34:56 +01008717
Damien Lespiau3d13ef22014-02-07 19:12:47 +00008718 if (INTEL_INFO(dev)->gen >= 6)
Chris Wilsonb29c19b2013-09-25 17:34:56 +01008719 gen6_rps_idle(dev->dev_private);
Paulo Zanonibb4cdd52014-02-21 13:52:19 -03008720
8721out:
Paulo Zanoni43694d62014-03-07 20:08:08 -03008722 intel_runtime_pm_put(dev_priv);
Chris Wilsonf047e392012-07-21 12:31:41 +01008723}
8724
Chris Wilsonc65355b2013-06-06 16:53:41 -03008725void intel_mark_fb_busy(struct drm_i915_gem_object *obj,
8726 struct intel_ring_buffer *ring)
Chris Wilsonf047e392012-07-21 12:31:41 +01008727{
8728 struct drm_device *dev = obj->base.dev;
Jesse Barnes652c3932009-08-17 13:31:43 -07008729 struct drm_crtc *crtc;
Jesse Barnes652c3932009-08-17 13:31:43 -07008730
Jani Nikulad330a952014-01-21 11:24:25 +02008731 if (!i915.powersave)
Jesse Barnes652c3932009-08-17 13:31:43 -07008732 return;
8733
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01008734 for_each_crtc(dev, crtc) {
Matt Roperf4510a22014-04-01 15:22:40 -07008735 if (!crtc->primary->fb)
Jesse Barnes652c3932009-08-17 13:31:43 -07008736 continue;
8737
Matt Roperf4510a22014-04-01 15:22:40 -07008738 if (to_intel_framebuffer(crtc->primary->fb)->obj != obj)
Chris Wilsonc65355b2013-06-06 16:53:41 -03008739 continue;
8740
8741 intel_increase_pllclock(crtc);
8742 if (ring && intel_fbc_enabled(dev))
8743 ring->fbc_dirty = true;
Jesse Barnes652c3932009-08-17 13:31:43 -07008744 }
Jesse Barnes652c3932009-08-17 13:31:43 -07008745}
8746
Jesse Barnes79e53942008-11-07 14:24:08 -08008747static void intel_crtc_destroy(struct drm_crtc *crtc)
8748{
8749 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter67e77c52010-08-20 22:26:30 +02008750 struct drm_device *dev = crtc->dev;
8751 struct intel_unpin_work *work;
8752 unsigned long flags;
8753
8754 spin_lock_irqsave(&dev->event_lock, flags);
8755 work = intel_crtc->unpin_work;
8756 intel_crtc->unpin_work = NULL;
8757 spin_unlock_irqrestore(&dev->event_lock, flags);
8758
8759 if (work) {
8760 cancel_work_sync(&work->work);
8761 kfree(work);
8762 }
Jesse Barnes79e53942008-11-07 14:24:08 -08008763
Mika Kuoppala40ccc722013-04-23 17:27:08 +03008764 intel_crtc_cursor_set(crtc, NULL, 0, 0, 0);
8765
Jesse Barnes79e53942008-11-07 14:24:08 -08008766 drm_crtc_cleanup(crtc);
Daniel Vetter67e77c52010-08-20 22:26:30 +02008767
Jesse Barnes79e53942008-11-07 14:24:08 -08008768 kfree(intel_crtc);
8769}
8770
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008771static void intel_unpin_work_fn(struct work_struct *__work)
8772{
8773 struct intel_unpin_work *work =
8774 container_of(__work, struct intel_unpin_work, work);
Chris Wilsonb4a98e52012-11-01 09:26:26 +00008775 struct drm_device *dev = work->crtc->dev;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008776
Chris Wilsonb4a98e52012-11-01 09:26:26 +00008777 mutex_lock(&dev->struct_mutex);
Chris Wilson1690e1e2011-12-14 13:57:08 +01008778 intel_unpin_fb_obj(work->old_fb_obj);
Chris Wilson05394f32010-11-08 19:18:58 +00008779 drm_gem_object_unreference(&work->pending_flip_obj->base);
8780 drm_gem_object_unreference(&work->old_fb_obj->base);
Chris Wilsond9e86c02010-11-10 16:40:20 +00008781
Chris Wilsonb4a98e52012-11-01 09:26:26 +00008782 intel_update_fbc(dev);
8783 mutex_unlock(&dev->struct_mutex);
8784
8785 BUG_ON(atomic_read(&to_intel_crtc(work->crtc)->unpin_work_count) == 0);
8786 atomic_dec(&to_intel_crtc(work->crtc)->unpin_work_count);
8787
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008788 kfree(work);
8789}
8790
Jesse Barnes1afe3e92010-03-26 10:35:20 -07008791static void do_intel_finish_page_flip(struct drm_device *dev,
Mario Kleiner49b14a52010-12-09 07:00:07 +01008792 struct drm_crtc *crtc)
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008793{
Jani Nikulafbee40d2014-03-31 14:27:18 +03008794 struct drm_i915_private *dev_priv = dev->dev_private;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008795 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
8796 struct intel_unpin_work *work;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008797 unsigned long flags;
8798
8799 /* Ignore early vblank irqs */
8800 if (intel_crtc == NULL)
8801 return;
8802
8803 spin_lock_irqsave(&dev->event_lock, flags);
8804 work = intel_crtc->unpin_work;
Chris Wilsone7d841c2012-12-03 11:36:30 +00008805
8806 /* Ensure we don't miss a work->pending update ... */
8807 smp_rmb();
8808
8809 if (work == NULL || atomic_read(&work->pending) < INTEL_FLIP_COMPLETE) {
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008810 spin_unlock_irqrestore(&dev->event_lock, flags);
8811 return;
8812 }
8813
Chris Wilsone7d841c2012-12-03 11:36:30 +00008814 /* and that the unpin work is consistent wrt ->pending. */
8815 smp_rmb();
8816
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008817 intel_crtc->unpin_work = NULL;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008818
Rob Clark45a066e2012-10-08 14:50:40 -05008819 if (work->event)
8820 drm_send_vblank_event(dev, intel_crtc->pipe, work->event);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008821
Mario Kleiner0af7e4d2010-12-08 04:07:19 +01008822 drm_vblank_put(dev, intel_crtc->pipe);
8823
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008824 spin_unlock_irqrestore(&dev->event_lock, flags);
8825
Daniel Vetter2c10d572012-12-20 21:24:07 +01008826 wake_up_all(&dev_priv->pending_flip_queue);
Chris Wilsonb4a98e52012-11-01 09:26:26 +00008827
8828 queue_work(dev_priv->wq, &work->work);
Jesse Barnese5510fa2010-07-01 16:48:37 -07008829
8830 trace_i915_flip_complete(intel_crtc->plane, work->pending_flip_obj);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008831}
8832
Jesse Barnes1afe3e92010-03-26 10:35:20 -07008833void intel_finish_page_flip(struct drm_device *dev, int pipe)
8834{
Jani Nikulafbee40d2014-03-31 14:27:18 +03008835 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes1afe3e92010-03-26 10:35:20 -07008836 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
8837
Mario Kleiner49b14a52010-12-09 07:00:07 +01008838 do_intel_finish_page_flip(dev, crtc);
Jesse Barnes1afe3e92010-03-26 10:35:20 -07008839}
8840
8841void intel_finish_page_flip_plane(struct drm_device *dev, int plane)
8842{
Jani Nikulafbee40d2014-03-31 14:27:18 +03008843 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes1afe3e92010-03-26 10:35:20 -07008844 struct drm_crtc *crtc = dev_priv->plane_to_crtc_mapping[plane];
8845
Mario Kleiner49b14a52010-12-09 07:00:07 +01008846 do_intel_finish_page_flip(dev, crtc);
Jesse Barnes1afe3e92010-03-26 10:35:20 -07008847}
8848
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +03008849/* Is 'a' after or equal to 'b'? */
8850static bool g4x_flip_count_after_eq(u32 a, u32 b)
8851{
8852 return !((a - b) & 0x80000000);
8853}
8854
8855static bool page_flip_finished(struct intel_crtc *crtc)
8856{
8857 struct drm_device *dev = crtc->base.dev;
8858 struct drm_i915_private *dev_priv = dev->dev_private;
8859
8860 /*
8861 * The relevant registers doen't exist on pre-ctg.
8862 * As the flip done interrupt doesn't trigger for mmio
8863 * flips on gmch platforms, a flip count check isn't
8864 * really needed there. But since ctg has the registers,
8865 * include it in the check anyway.
8866 */
8867 if (INTEL_INFO(dev)->gen < 5 && !IS_G4X(dev))
8868 return true;
8869
8870 /*
8871 * A DSPSURFLIVE check isn't enough in case the mmio and CS flips
8872 * used the same base address. In that case the mmio flip might
8873 * have completed, but the CS hasn't even executed the flip yet.
8874 *
8875 * A flip count check isn't enough as the CS might have updated
8876 * the base address just after start of vblank, but before we
8877 * managed to process the interrupt. This means we'd complete the
8878 * CS flip too soon.
8879 *
8880 * Combining both checks should get us a good enough result. It may
8881 * still happen that the CS flip has been executed, but has not
8882 * yet actually completed. But in case the base address is the same
8883 * anyway, we don't really care.
8884 */
8885 return (I915_READ(DSPSURFLIVE(crtc->plane)) & ~0xfff) ==
8886 crtc->unpin_work->gtt_offset &&
8887 g4x_flip_count_after_eq(I915_READ(PIPE_FLIPCOUNT_GM45(crtc->pipe)),
8888 crtc->unpin_work->flip_count);
8889}
8890
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008891void intel_prepare_page_flip(struct drm_device *dev, int plane)
8892{
Jani Nikulafbee40d2014-03-31 14:27:18 +03008893 struct drm_i915_private *dev_priv = dev->dev_private;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008894 struct intel_crtc *intel_crtc =
8895 to_intel_crtc(dev_priv->plane_to_crtc_mapping[plane]);
8896 unsigned long flags;
8897
Chris Wilsone7d841c2012-12-03 11:36:30 +00008898 /* NB: An MMIO update of the plane base pointer will also
8899 * generate a page-flip completion irq, i.e. every modeset
8900 * is also accompanied by a spurious intel_prepare_page_flip().
8901 */
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008902 spin_lock_irqsave(&dev->event_lock, flags);
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +03008903 if (intel_crtc->unpin_work && page_flip_finished(intel_crtc))
Chris Wilsone7d841c2012-12-03 11:36:30 +00008904 atomic_inc_not_zero(&intel_crtc->unpin_work->pending);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008905 spin_unlock_irqrestore(&dev->event_lock, flags);
8906}
8907
Robin Schroereba905b2014-05-18 02:24:50 +02008908static inline void intel_mark_page_flip_active(struct intel_crtc *intel_crtc)
Chris Wilsone7d841c2012-12-03 11:36:30 +00008909{
8910 /* Ensure that the work item is consistent when activating it ... */
8911 smp_wmb();
8912 atomic_set(&intel_crtc->unpin_work->pending, INTEL_FLIP_PENDING);
8913 /* and that it is marked active as soon as the irq could fire. */
8914 smp_wmb();
8915}
8916
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008917static int intel_gen2_queue_flip(struct drm_device *dev,
8918 struct drm_crtc *crtc,
8919 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07008920 struct drm_i915_gem_object *obj,
8921 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008922{
8923 struct drm_i915_private *dev_priv = dev->dev_private;
8924 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008925 u32 flip_mask;
Daniel Vetter6d90c952012-04-26 23:28:05 +02008926 struct intel_ring_buffer *ring = &dev_priv->ring[RCS];
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008927 int ret;
8928
Daniel Vetter6d90c952012-04-26 23:28:05 +02008929 ret = intel_pin_and_fence_fb_obj(dev, obj, ring);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008930 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01008931 goto err;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008932
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +03008933 intel_crtc->unpin_work->gtt_offset =
8934 i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset;
8935
Daniel Vetter6d90c952012-04-26 23:28:05 +02008936 ret = intel_ring_begin(ring, 6);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008937 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01008938 goto err_unpin;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008939
8940 /* Can't queue multiple flips, so wait for the previous
8941 * one to finish before executing the next.
8942 */
8943 if (intel_crtc->plane)
8944 flip_mask = MI_WAIT_FOR_PLANE_B_FLIP;
8945 else
8946 flip_mask = MI_WAIT_FOR_PLANE_A_FLIP;
Daniel Vetter6d90c952012-04-26 23:28:05 +02008947 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | flip_mask);
8948 intel_ring_emit(ring, MI_NOOP);
8949 intel_ring_emit(ring, MI_DISPLAY_FLIP |
8950 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
8951 intel_ring_emit(ring, fb->pitches[0]);
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +03008952 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset);
Daniel Vetter6d90c952012-04-26 23:28:05 +02008953 intel_ring_emit(ring, 0); /* aux display base address, unused */
Chris Wilsone7d841c2012-12-03 11:36:30 +00008954
8955 intel_mark_page_flip_active(intel_crtc);
Chris Wilson09246732013-08-10 22:16:32 +01008956 __intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01008957 return 0;
8958
8959err_unpin:
8960 intel_unpin_fb_obj(obj);
8961err:
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008962 return ret;
8963}
8964
8965static int intel_gen3_queue_flip(struct drm_device *dev,
8966 struct drm_crtc *crtc,
8967 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07008968 struct drm_i915_gem_object *obj,
8969 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008970{
8971 struct drm_i915_private *dev_priv = dev->dev_private;
8972 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008973 u32 flip_mask;
Daniel Vetter6d90c952012-04-26 23:28:05 +02008974 struct intel_ring_buffer *ring = &dev_priv->ring[RCS];
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008975 int ret;
8976
Daniel Vetter6d90c952012-04-26 23:28:05 +02008977 ret = intel_pin_and_fence_fb_obj(dev, obj, ring);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008978 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01008979 goto err;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008980
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +03008981 intel_crtc->unpin_work->gtt_offset =
8982 i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset;
8983
Daniel Vetter6d90c952012-04-26 23:28:05 +02008984 ret = intel_ring_begin(ring, 6);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008985 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01008986 goto err_unpin;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008987
8988 if (intel_crtc->plane)
8989 flip_mask = MI_WAIT_FOR_PLANE_B_FLIP;
8990 else
8991 flip_mask = MI_WAIT_FOR_PLANE_A_FLIP;
Daniel Vetter6d90c952012-04-26 23:28:05 +02008992 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | flip_mask);
8993 intel_ring_emit(ring, MI_NOOP);
8994 intel_ring_emit(ring, MI_DISPLAY_FLIP_I915 |
8995 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
8996 intel_ring_emit(ring, fb->pitches[0]);
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +03008997 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset);
Daniel Vetter6d90c952012-04-26 23:28:05 +02008998 intel_ring_emit(ring, MI_NOOP);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008999
Chris Wilsone7d841c2012-12-03 11:36:30 +00009000 intel_mark_page_flip_active(intel_crtc);
Chris Wilson09246732013-08-10 22:16:32 +01009001 __intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01009002 return 0;
9003
9004err_unpin:
9005 intel_unpin_fb_obj(obj);
9006err:
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009007 return ret;
9008}
9009
9010static int intel_gen4_queue_flip(struct drm_device *dev,
9011 struct drm_crtc *crtc,
9012 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07009013 struct drm_i915_gem_object *obj,
9014 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009015{
9016 struct drm_i915_private *dev_priv = dev->dev_private;
9017 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
9018 uint32_t pf, pipesrc;
Daniel Vetter6d90c952012-04-26 23:28:05 +02009019 struct intel_ring_buffer *ring = &dev_priv->ring[RCS];
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009020 int ret;
9021
Daniel Vetter6d90c952012-04-26 23:28:05 +02009022 ret = intel_pin_and_fence_fb_obj(dev, obj, ring);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009023 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01009024 goto err;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009025
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +03009026 intel_crtc->unpin_work->gtt_offset =
9027 i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset;
9028
Daniel Vetter6d90c952012-04-26 23:28:05 +02009029 ret = intel_ring_begin(ring, 4);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009030 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01009031 goto err_unpin;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009032
9033 /* i965+ uses the linear or tiled offsets from the
9034 * Display Registers (which do not change across a page-flip)
9035 * so we need only reprogram the base address.
9036 */
Daniel Vetter6d90c952012-04-26 23:28:05 +02009037 intel_ring_emit(ring, MI_DISPLAY_FLIP |
9038 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
9039 intel_ring_emit(ring, fb->pitches[0]);
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +03009040 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset |
Daniel Vetterc2c75132012-07-05 12:17:30 +02009041 obj->tiling_mode);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009042
9043 /* XXX Enabling the panel-fitter across page-flip is so far
9044 * untested on non-native modes, so ignore it for now.
9045 * pf = I915_READ(pipe == 0 ? PFA_CTL_1 : PFB_CTL_1) & PF_ENABLE;
9046 */
9047 pf = 0;
9048 pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff;
Daniel Vetter6d90c952012-04-26 23:28:05 +02009049 intel_ring_emit(ring, pf | pipesrc);
Chris Wilsone7d841c2012-12-03 11:36:30 +00009050
9051 intel_mark_page_flip_active(intel_crtc);
Chris Wilson09246732013-08-10 22:16:32 +01009052 __intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01009053 return 0;
9054
9055err_unpin:
9056 intel_unpin_fb_obj(obj);
9057err:
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009058 return ret;
9059}
9060
9061static int intel_gen6_queue_flip(struct drm_device *dev,
9062 struct drm_crtc *crtc,
9063 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07009064 struct drm_i915_gem_object *obj,
9065 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009066{
9067 struct drm_i915_private *dev_priv = dev->dev_private;
9068 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter6d90c952012-04-26 23:28:05 +02009069 struct intel_ring_buffer *ring = &dev_priv->ring[RCS];
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009070 uint32_t pf, pipesrc;
9071 int ret;
9072
Daniel Vetter6d90c952012-04-26 23:28:05 +02009073 ret = intel_pin_and_fence_fb_obj(dev, obj, ring);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009074 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01009075 goto err;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009076
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +03009077 intel_crtc->unpin_work->gtt_offset =
9078 i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset;
9079
Daniel Vetter6d90c952012-04-26 23:28:05 +02009080 ret = intel_ring_begin(ring, 4);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009081 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01009082 goto err_unpin;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009083
Daniel Vetter6d90c952012-04-26 23:28:05 +02009084 intel_ring_emit(ring, MI_DISPLAY_FLIP |
9085 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
9086 intel_ring_emit(ring, fb->pitches[0] | obj->tiling_mode);
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +03009087 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009088
Chris Wilson99d9acd2012-04-17 20:37:00 +01009089 /* Contrary to the suggestions in the documentation,
9090 * "Enable Panel Fitter" does not seem to be required when page
9091 * flipping with a non-native mode, and worse causes a normal
9092 * modeset to fail.
9093 * pf = I915_READ(PF_CTL(intel_crtc->pipe)) & PF_ENABLE;
9094 */
9095 pf = 0;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009096 pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff;
Daniel Vetter6d90c952012-04-26 23:28:05 +02009097 intel_ring_emit(ring, pf | pipesrc);
Chris Wilsone7d841c2012-12-03 11:36:30 +00009098
9099 intel_mark_page_flip_active(intel_crtc);
Chris Wilson09246732013-08-10 22:16:32 +01009100 __intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01009101 return 0;
9102
9103err_unpin:
9104 intel_unpin_fb_obj(obj);
9105err:
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009106 return ret;
9107}
9108
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009109static int intel_gen7_queue_flip(struct drm_device *dev,
9110 struct drm_crtc *crtc,
9111 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07009112 struct drm_i915_gem_object *obj,
9113 uint32_t flags)
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009114{
9115 struct drm_i915_private *dev_priv = dev->dev_private;
9116 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Chris Wilsonffe74d72013-08-26 20:58:12 +01009117 struct intel_ring_buffer *ring;
Daniel Vettercb05d8d2012-05-23 14:02:00 +02009118 uint32_t plane_bit = 0;
Chris Wilsonffe74d72013-08-26 20:58:12 +01009119 int len, ret;
9120
9121 ring = obj->ring;
Chris Wilson1c5fd082013-09-04 10:54:30 +01009122 if (IS_VALLEYVIEW(dev) || ring == NULL || ring->id != RCS)
Chris Wilsonffe74d72013-08-26 20:58:12 +01009123 ring = &dev_priv->ring[BCS];
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009124
9125 ret = intel_pin_and_fence_fb_obj(dev, obj, ring);
9126 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01009127 goto err;
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009128
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +03009129 intel_crtc->unpin_work->gtt_offset =
9130 i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset;
9131
Robin Schroereba905b2014-05-18 02:24:50 +02009132 switch (intel_crtc->plane) {
Daniel Vettercb05d8d2012-05-23 14:02:00 +02009133 case PLANE_A:
9134 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_A;
9135 break;
9136 case PLANE_B:
9137 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_B;
9138 break;
9139 case PLANE_C:
9140 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_C;
9141 break;
9142 default:
9143 WARN_ONCE(1, "unknown plane in flip command\n");
9144 ret = -ENODEV;
Eugeni Dodonovab3951e2012-06-18 19:03:38 -03009145 goto err_unpin;
Daniel Vettercb05d8d2012-05-23 14:02:00 +02009146 }
9147
Chris Wilsonffe74d72013-08-26 20:58:12 +01009148 len = 4;
Damien Lespiauf4768282014-04-07 20:24:34 +01009149 if (ring->id == RCS) {
Chris Wilsonffe74d72013-08-26 20:58:12 +01009150 len += 6;
Damien Lespiauf4768282014-04-07 20:24:34 +01009151 /*
9152 * On Gen 8, SRM is now taking an extra dword to accommodate
9153 * 48bits addresses, and we need a NOOP for the batch size to
9154 * stay even.
9155 */
9156 if (IS_GEN8(dev))
9157 len += 2;
9158 }
Chris Wilsonffe74d72013-08-26 20:58:12 +01009159
Ville Syrjäläf66fab82014-02-11 19:52:06 +02009160 /*
9161 * BSpec MI_DISPLAY_FLIP for IVB:
9162 * "The full packet must be contained within the same cache line."
9163 *
9164 * Currently the LRI+SRM+MI_DISPLAY_FLIP all fit within the same
9165 * cacheline, if we ever start emitting more commands before
9166 * the MI_DISPLAY_FLIP we may need to first emit everything else,
9167 * then do the cacheline alignment, and finally emit the
9168 * MI_DISPLAY_FLIP.
9169 */
9170 ret = intel_ring_cacheline_align(ring);
9171 if (ret)
9172 goto err_unpin;
9173
Chris Wilsonffe74d72013-08-26 20:58:12 +01009174 ret = intel_ring_begin(ring, len);
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009175 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01009176 goto err_unpin;
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009177
Chris Wilsonffe74d72013-08-26 20:58:12 +01009178 /* Unmask the flip-done completion message. Note that the bspec says that
9179 * we should do this for both the BCS and RCS, and that we must not unmask
9180 * more than one flip event at any time (or ensure that one flip message
9181 * can be sent by waiting for flip-done prior to queueing new flips).
9182 * Experimentation says that BCS works despite DERRMR masking all
9183 * flip-done completion events and that unmasking all planes at once
9184 * for the RCS also doesn't appear to drop events. Setting the DERRMR
9185 * to zero does lead to lockups within MI_DISPLAY_FLIP.
9186 */
9187 if (ring->id == RCS) {
9188 intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(1));
9189 intel_ring_emit(ring, DERRMR);
9190 intel_ring_emit(ring, ~(DERRMR_PIPEA_PRI_FLIP_DONE |
9191 DERRMR_PIPEB_PRI_FLIP_DONE |
9192 DERRMR_PIPEC_PRI_FLIP_DONE));
Damien Lespiauf4768282014-04-07 20:24:34 +01009193 if (IS_GEN8(dev))
9194 intel_ring_emit(ring, MI_STORE_REGISTER_MEM_GEN8(1) |
9195 MI_SRM_LRM_GLOBAL_GTT);
9196 else
9197 intel_ring_emit(ring, MI_STORE_REGISTER_MEM(1) |
9198 MI_SRM_LRM_GLOBAL_GTT);
Chris Wilsonffe74d72013-08-26 20:58:12 +01009199 intel_ring_emit(ring, DERRMR);
9200 intel_ring_emit(ring, ring->scratch.gtt_offset + 256);
Damien Lespiauf4768282014-04-07 20:24:34 +01009201 if (IS_GEN8(dev)) {
9202 intel_ring_emit(ring, 0);
9203 intel_ring_emit(ring, MI_NOOP);
9204 }
Chris Wilsonffe74d72013-08-26 20:58:12 +01009205 }
9206
Daniel Vettercb05d8d2012-05-23 14:02:00 +02009207 intel_ring_emit(ring, MI_DISPLAY_FLIP_I915 | plane_bit);
Ville Syrjälä01f2c772011-12-20 00:06:49 +02009208 intel_ring_emit(ring, (fb->pitches[0] | obj->tiling_mode));
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +03009209 intel_ring_emit(ring, intel_crtc->unpin_work->gtt_offset);
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009210 intel_ring_emit(ring, (MI_NOOP));
Chris Wilsone7d841c2012-12-03 11:36:30 +00009211
9212 intel_mark_page_flip_active(intel_crtc);
Chris Wilson09246732013-08-10 22:16:32 +01009213 __intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01009214 return 0;
9215
9216err_unpin:
9217 intel_unpin_fb_obj(obj);
9218err:
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009219 return ret;
9220}
9221
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009222static int intel_default_queue_flip(struct drm_device *dev,
9223 struct drm_crtc *crtc,
9224 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07009225 struct drm_i915_gem_object *obj,
9226 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009227{
9228 return -ENODEV;
9229}
9230
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009231static int intel_crtc_page_flip(struct drm_crtc *crtc,
9232 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07009233 struct drm_pending_vblank_event *event,
9234 uint32_t page_flip_flags)
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009235{
9236 struct drm_device *dev = crtc->dev;
9237 struct drm_i915_private *dev_priv = dev->dev_private;
Matt Roperf4510a22014-04-01 15:22:40 -07009238 struct drm_framebuffer *old_fb = crtc->primary->fb;
Ville Syrjälä4a35f832013-02-22 16:53:38 +02009239 struct drm_i915_gem_object *obj = to_intel_framebuffer(fb)->obj;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009240 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
9241 struct intel_unpin_work *work;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009242 unsigned long flags;
Chris Wilson52e68632010-08-08 10:15:59 +01009243 int ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009244
Ville Syrjäläe6a595d2012-05-24 21:08:59 +03009245 /* Can't change pixel format via MI display flips. */
Matt Roperf4510a22014-04-01 15:22:40 -07009246 if (fb->pixel_format != crtc->primary->fb->pixel_format)
Ville Syrjäläe6a595d2012-05-24 21:08:59 +03009247 return -EINVAL;
9248
9249 /*
9250 * TILEOFF/LINOFF registers can't be changed via MI display flips.
9251 * Note that pitch changes could also affect these register.
9252 */
9253 if (INTEL_INFO(dev)->gen > 3 &&
Matt Roperf4510a22014-04-01 15:22:40 -07009254 (fb->offsets[0] != crtc->primary->fb->offsets[0] ||
9255 fb->pitches[0] != crtc->primary->fb->pitches[0]))
Ville Syrjäläe6a595d2012-05-24 21:08:59 +03009256 return -EINVAL;
9257
Chris Wilsonf900db42014-02-20 09:26:13 +00009258 if (i915_terminally_wedged(&dev_priv->gpu_error))
9259 goto out_hang;
9260
Daniel Vetterb14c5672013-09-19 12:18:32 +02009261 work = kzalloc(sizeof(*work), GFP_KERNEL);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009262 if (work == NULL)
9263 return -ENOMEM;
9264
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009265 work->event = event;
Chris Wilsonb4a98e52012-11-01 09:26:26 +00009266 work->crtc = crtc;
Ville Syrjälä4a35f832013-02-22 16:53:38 +02009267 work->old_fb_obj = to_intel_framebuffer(old_fb)->obj;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009268 INIT_WORK(&work->work, intel_unpin_work_fn);
9269
Jesse Barnes7317c75e62011-08-29 09:45:28 -07009270 ret = drm_vblank_get(dev, intel_crtc->pipe);
9271 if (ret)
9272 goto free_work;
9273
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009274 /* We borrow the event spin lock for protecting unpin_work */
9275 spin_lock_irqsave(&dev->event_lock, flags);
9276 if (intel_crtc->unpin_work) {
9277 spin_unlock_irqrestore(&dev->event_lock, flags);
9278 kfree(work);
Jesse Barnes7317c75e62011-08-29 09:45:28 -07009279 drm_vblank_put(dev, intel_crtc->pipe);
Chris Wilson468f0b42010-05-27 13:18:13 +01009280
9281 DRM_DEBUG_DRIVER("flip queue: crtc already busy\n");
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009282 return -EBUSY;
9283 }
9284 intel_crtc->unpin_work = work;
9285 spin_unlock_irqrestore(&dev->event_lock, flags);
9286
Chris Wilsonb4a98e52012-11-01 09:26:26 +00009287 if (atomic_read(&intel_crtc->unpin_work_count) >= 2)
9288 flush_workqueue(dev_priv->wq);
9289
Chris Wilson79158102012-05-23 11:13:58 +01009290 ret = i915_mutex_lock_interruptible(dev);
9291 if (ret)
9292 goto cleanup;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009293
Jesse Barnes75dfca82010-02-10 15:09:44 -08009294 /* Reference the objects for the scheduled work. */
Chris Wilson05394f32010-11-08 19:18:58 +00009295 drm_gem_object_reference(&work->old_fb_obj->base);
9296 drm_gem_object_reference(&obj->base);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009297
Matt Roperf4510a22014-04-01 15:22:40 -07009298 crtc->primary->fb = fb;
Chris Wilson96b099f2010-06-07 14:03:04 +01009299
Chris Wilsone1f99ce2010-10-27 12:45:26 +01009300 work->pending_flip_obj = obj;
Chris Wilsone1f99ce2010-10-27 12:45:26 +01009301
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01009302 work->enable_stall_check = true;
9303
Chris Wilsonb4a98e52012-11-01 09:26:26 +00009304 atomic_inc(&intel_crtc->unpin_work_count);
Ville Syrjälä10d83732013-01-29 18:13:34 +02009305 intel_crtc->reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
Chris Wilsone1f99ce2010-10-27 12:45:26 +01009306
Ville Syrjälä75f7f3e2014-04-15 21:41:34 +03009307 if (INTEL_INFO(dev)->gen >= 5 || IS_G4X(dev))
9308 work->flip_count = I915_READ(PIPE_FLIPCOUNT_GM45(intel_crtc->pipe)) + 1;
9309
Keith Packarded8d1972013-07-22 18:49:58 -07009310 ret = dev_priv->display.queue_flip(dev, crtc, fb, obj, page_flip_flags);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009311 if (ret)
9312 goto cleanup_pending;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009313
Chris Wilson7782de32011-07-08 12:22:41 +01009314 intel_disable_fbc(dev);
Chris Wilsonc65355b2013-06-06 16:53:41 -03009315 intel_mark_fb_busy(obj, NULL);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009316 mutex_unlock(&dev->struct_mutex);
9317
Jesse Barnese5510fa2010-07-01 16:48:37 -07009318 trace_i915_flip_request(intel_crtc->plane, obj);
9319
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009320 return 0;
Chris Wilson96b099f2010-06-07 14:03:04 +01009321
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009322cleanup_pending:
Chris Wilsonb4a98e52012-11-01 09:26:26 +00009323 atomic_dec(&intel_crtc->unpin_work_count);
Matt Roperf4510a22014-04-01 15:22:40 -07009324 crtc->primary->fb = old_fb;
Chris Wilson05394f32010-11-08 19:18:58 +00009325 drm_gem_object_unreference(&work->old_fb_obj->base);
9326 drm_gem_object_unreference(&obj->base);
Chris Wilson96b099f2010-06-07 14:03:04 +01009327 mutex_unlock(&dev->struct_mutex);
9328
Chris Wilson79158102012-05-23 11:13:58 +01009329cleanup:
Chris Wilson96b099f2010-06-07 14:03:04 +01009330 spin_lock_irqsave(&dev->event_lock, flags);
9331 intel_crtc->unpin_work = NULL;
9332 spin_unlock_irqrestore(&dev->event_lock, flags);
9333
Jesse Barnes7317c75e62011-08-29 09:45:28 -07009334 drm_vblank_put(dev, intel_crtc->pipe);
9335free_work:
Chris Wilson96b099f2010-06-07 14:03:04 +01009336 kfree(work);
9337
Chris Wilsonf900db42014-02-20 09:26:13 +00009338 if (ret == -EIO) {
9339out_hang:
9340 intel_crtc_wait_for_pending_flips(crtc);
9341 ret = intel_pipe_set_base(crtc, crtc->x, crtc->y, fb);
9342 if (ret == 0 && event)
9343 drm_send_vblank_event(dev, intel_crtc->pipe, event);
9344 }
Chris Wilson96b099f2010-06-07 14:03:04 +01009345 return ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009346}
9347
Chris Wilsonf6e5b162011-04-12 18:06:51 +01009348static struct drm_crtc_helper_funcs intel_helper_funcs = {
Chris Wilsonf6e5b162011-04-12 18:06:51 +01009349 .mode_set_base_atomic = intel_pipe_set_base_atomic,
9350 .load_lut = intel_crtc_load_lut,
Chris Wilsonf6e5b162011-04-12 18:06:51 +01009351};
9352
Daniel Vetter9a935852012-07-05 22:34:27 +02009353/**
9354 * intel_modeset_update_staged_output_state
9355 *
9356 * Updates the staged output configuration state, e.g. after we've read out the
9357 * current hw state.
9358 */
9359static void intel_modeset_update_staged_output_state(struct drm_device *dev)
9360{
Ville Syrjälä76688512014-01-10 11:28:06 +02009361 struct intel_crtc *crtc;
Daniel Vetter9a935852012-07-05 22:34:27 +02009362 struct intel_encoder *encoder;
9363 struct intel_connector *connector;
9364
9365 list_for_each_entry(connector, &dev->mode_config.connector_list,
9366 base.head) {
9367 connector->new_encoder =
9368 to_intel_encoder(connector->base.encoder);
9369 }
9370
9371 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
9372 base.head) {
9373 encoder->new_crtc =
9374 to_intel_crtc(encoder->base.crtc);
9375 }
Ville Syrjälä76688512014-01-10 11:28:06 +02009376
Damien Lespiaud3fcc802014-05-13 23:32:22 +01009377 for_each_intel_crtc(dev, crtc) {
Ville Syrjälä76688512014-01-10 11:28:06 +02009378 crtc->new_enabled = crtc->base.enabled;
Ville Syrjälä7bd0a8e2014-01-14 14:31:38 +02009379
9380 if (crtc->new_enabled)
9381 crtc->new_config = &crtc->config;
9382 else
9383 crtc->new_config = NULL;
Ville Syrjälä76688512014-01-10 11:28:06 +02009384 }
Daniel Vetter9a935852012-07-05 22:34:27 +02009385}
9386
9387/**
9388 * intel_modeset_commit_output_state
9389 *
9390 * This function copies the stage display pipe configuration to the real one.
9391 */
9392static void intel_modeset_commit_output_state(struct drm_device *dev)
9393{
Ville Syrjälä76688512014-01-10 11:28:06 +02009394 struct intel_crtc *crtc;
Daniel Vetter9a935852012-07-05 22:34:27 +02009395 struct intel_encoder *encoder;
9396 struct intel_connector *connector;
9397
9398 list_for_each_entry(connector, &dev->mode_config.connector_list,
9399 base.head) {
9400 connector->base.encoder = &connector->new_encoder->base;
9401 }
9402
9403 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
9404 base.head) {
9405 encoder->base.crtc = &encoder->new_crtc->base;
9406 }
Ville Syrjälä76688512014-01-10 11:28:06 +02009407
Damien Lespiaud3fcc802014-05-13 23:32:22 +01009408 for_each_intel_crtc(dev, crtc) {
Ville Syrjälä76688512014-01-10 11:28:06 +02009409 crtc->base.enabled = crtc->new_enabled;
9410 }
Daniel Vetter9a935852012-07-05 22:34:27 +02009411}
9412
Daniel Vetter050f7ae2013-06-02 13:26:23 +02009413static void
Robin Schroereba905b2014-05-18 02:24:50 +02009414connected_sink_compute_bpp(struct intel_connector *connector,
Daniel Vetter050f7ae2013-06-02 13:26:23 +02009415 struct intel_crtc_config *pipe_config)
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01009416{
Daniel Vetter050f7ae2013-06-02 13:26:23 +02009417 int bpp = pipe_config->pipe_bpp;
9418
9419 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] checking for sink bpp constrains\n",
9420 connector->base.base.id,
9421 drm_get_connector_name(&connector->base));
9422
9423 /* Don't use an invalid EDID bpc value */
9424 if (connector->base.display_info.bpc &&
9425 connector->base.display_info.bpc * 3 < bpp) {
9426 DRM_DEBUG_KMS("clamping display bpp (was %d) to EDID reported max of %d\n",
9427 bpp, connector->base.display_info.bpc*3);
9428 pipe_config->pipe_bpp = connector->base.display_info.bpc*3;
9429 }
9430
9431 /* Clamp bpp to 8 on screens without EDID 1.4 */
9432 if (connector->base.display_info.bpc == 0 && bpp > 24) {
9433 DRM_DEBUG_KMS("clamping display bpp (was %d) to default limit of 24\n",
9434 bpp);
9435 pipe_config->pipe_bpp = 24;
9436 }
9437}
9438
9439static int
9440compute_baseline_pipe_bpp(struct intel_crtc *crtc,
9441 struct drm_framebuffer *fb,
9442 struct intel_crtc_config *pipe_config)
9443{
9444 struct drm_device *dev = crtc->base.dev;
9445 struct intel_connector *connector;
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01009446 int bpp;
9447
Daniel Vetterd42264b2013-03-28 16:38:08 +01009448 switch (fb->pixel_format) {
9449 case DRM_FORMAT_C8:
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01009450 bpp = 8*3; /* since we go through a colormap */
9451 break;
Daniel Vetterd42264b2013-03-28 16:38:08 +01009452 case DRM_FORMAT_XRGB1555:
9453 case DRM_FORMAT_ARGB1555:
9454 /* checked in intel_framebuffer_init already */
9455 if (WARN_ON(INTEL_INFO(dev)->gen > 3))
9456 return -EINVAL;
9457 case DRM_FORMAT_RGB565:
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01009458 bpp = 6*3; /* min is 18bpp */
9459 break;
Daniel Vetterd42264b2013-03-28 16:38:08 +01009460 case DRM_FORMAT_XBGR8888:
9461 case DRM_FORMAT_ABGR8888:
9462 /* checked in intel_framebuffer_init already */
9463 if (WARN_ON(INTEL_INFO(dev)->gen < 4))
9464 return -EINVAL;
9465 case DRM_FORMAT_XRGB8888:
9466 case DRM_FORMAT_ARGB8888:
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01009467 bpp = 8*3;
9468 break;
Daniel Vetterd42264b2013-03-28 16:38:08 +01009469 case DRM_FORMAT_XRGB2101010:
9470 case DRM_FORMAT_ARGB2101010:
9471 case DRM_FORMAT_XBGR2101010:
9472 case DRM_FORMAT_ABGR2101010:
9473 /* checked in intel_framebuffer_init already */
9474 if (WARN_ON(INTEL_INFO(dev)->gen < 4))
Daniel Vetterbaba1332013-03-27 00:45:00 +01009475 return -EINVAL;
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01009476 bpp = 10*3;
9477 break;
Daniel Vetterbaba1332013-03-27 00:45:00 +01009478 /* TODO: gen4+ supports 16 bpc floating point, too. */
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01009479 default:
9480 DRM_DEBUG_KMS("unsupported depth\n");
9481 return -EINVAL;
9482 }
9483
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01009484 pipe_config->pipe_bpp = bpp;
9485
9486 /* Clamp display bpp to EDID value */
9487 list_for_each_entry(connector, &dev->mode_config.connector_list,
Daniel Vetter050f7ae2013-06-02 13:26:23 +02009488 base.head) {
Daniel Vetter1b829e02013-06-02 13:26:24 +02009489 if (!connector->new_encoder ||
9490 connector->new_encoder->new_crtc != crtc)
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01009491 continue;
9492
Daniel Vetter050f7ae2013-06-02 13:26:23 +02009493 connected_sink_compute_bpp(connector, pipe_config);
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01009494 }
9495
9496 return bpp;
9497}
9498
Daniel Vetter644db712013-09-19 14:53:58 +02009499static void intel_dump_crtc_timings(const struct drm_display_mode *mode)
9500{
9501 DRM_DEBUG_KMS("crtc timings: %d %d %d %d %d %d %d %d %d, "
9502 "type: 0x%x flags: 0x%x\n",
Damien Lespiau13428302013-09-25 16:45:36 +01009503 mode->crtc_clock,
Daniel Vetter644db712013-09-19 14:53:58 +02009504 mode->crtc_hdisplay, mode->crtc_hsync_start,
9505 mode->crtc_hsync_end, mode->crtc_htotal,
9506 mode->crtc_vdisplay, mode->crtc_vsync_start,
9507 mode->crtc_vsync_end, mode->crtc_vtotal, mode->type, mode->flags);
9508}
9509
Daniel Vetterc0b03412013-05-28 12:05:54 +02009510static void intel_dump_pipe_config(struct intel_crtc *crtc,
9511 struct intel_crtc_config *pipe_config,
9512 const char *context)
9513{
9514 DRM_DEBUG_KMS("[CRTC:%d]%s config for pipe %c\n", crtc->base.base.id,
9515 context, pipe_name(crtc->pipe));
9516
9517 DRM_DEBUG_KMS("cpu_transcoder: %c\n", transcoder_name(pipe_config->cpu_transcoder));
9518 DRM_DEBUG_KMS("pipe bpp: %i, dithering: %i\n",
9519 pipe_config->pipe_bpp, pipe_config->dither);
9520 DRM_DEBUG_KMS("fdi/pch: %i, lanes: %i, gmch_m: %u, gmch_n: %u, link_m: %u, link_n: %u, tu: %u\n",
9521 pipe_config->has_pch_encoder,
9522 pipe_config->fdi_lanes,
9523 pipe_config->fdi_m_n.gmch_m, pipe_config->fdi_m_n.gmch_n,
9524 pipe_config->fdi_m_n.link_m, pipe_config->fdi_m_n.link_n,
9525 pipe_config->fdi_m_n.tu);
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03009526 DRM_DEBUG_KMS("dp: %i, gmch_m: %u, gmch_n: %u, link_m: %u, link_n: %u, tu: %u\n",
9527 pipe_config->has_dp_encoder,
9528 pipe_config->dp_m_n.gmch_m, pipe_config->dp_m_n.gmch_n,
9529 pipe_config->dp_m_n.link_m, pipe_config->dp_m_n.link_n,
9530 pipe_config->dp_m_n.tu);
Daniel Vetterc0b03412013-05-28 12:05:54 +02009531 DRM_DEBUG_KMS("requested mode:\n");
9532 drm_mode_debug_printmodeline(&pipe_config->requested_mode);
9533 DRM_DEBUG_KMS("adjusted mode:\n");
9534 drm_mode_debug_printmodeline(&pipe_config->adjusted_mode);
Daniel Vetter644db712013-09-19 14:53:58 +02009535 intel_dump_crtc_timings(&pipe_config->adjusted_mode);
Ville Syrjäläd71b8d42013-09-06 23:29:08 +03009536 DRM_DEBUG_KMS("port clock: %d\n", pipe_config->port_clock);
Ville Syrjälä37327ab2013-09-04 18:25:28 +03009537 DRM_DEBUG_KMS("pipe src size: %dx%d\n",
9538 pipe_config->pipe_src_w, pipe_config->pipe_src_h);
Daniel Vetterc0b03412013-05-28 12:05:54 +02009539 DRM_DEBUG_KMS("gmch pfit: control: 0x%08x, ratios: 0x%08x, lvds border: 0x%08x\n",
9540 pipe_config->gmch_pfit.control,
9541 pipe_config->gmch_pfit.pgm_ratios,
9542 pipe_config->gmch_pfit.lvds_border_bits);
Chris Wilsonfd4daa92013-08-27 17:04:17 +01009543 DRM_DEBUG_KMS("pch pfit: pos: 0x%08x, size: 0x%08x, %s\n",
Daniel Vetterc0b03412013-05-28 12:05:54 +02009544 pipe_config->pch_pfit.pos,
Chris Wilsonfd4daa92013-08-27 17:04:17 +01009545 pipe_config->pch_pfit.size,
9546 pipe_config->pch_pfit.enabled ? "enabled" : "disabled");
Paulo Zanoni42db64e2013-05-31 16:33:22 -03009547 DRM_DEBUG_KMS("ips: %i\n", pipe_config->ips_enabled);
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03009548 DRM_DEBUG_KMS("double wide: %i\n", pipe_config->double_wide);
Daniel Vetterc0b03412013-05-28 12:05:54 +02009549}
9550
Ville Syrjäläbc079e82014-03-03 16:15:28 +02009551static bool encoders_cloneable(const struct intel_encoder *a,
9552 const struct intel_encoder *b)
Daniel Vetteraccfc0c2013-05-30 15:04:25 +02009553{
Ville Syrjäläbc079e82014-03-03 16:15:28 +02009554 /* masks could be asymmetric, so check both ways */
9555 return a == b || (a->cloneable & (1 << b->type) &&
9556 b->cloneable & (1 << a->type));
9557}
Daniel Vetteraccfc0c2013-05-30 15:04:25 +02009558
Ville Syrjäläbc079e82014-03-03 16:15:28 +02009559static bool check_single_encoder_cloning(struct intel_crtc *crtc,
9560 struct intel_encoder *encoder)
9561{
9562 struct drm_device *dev = crtc->base.dev;
9563 struct intel_encoder *source_encoder;
9564
9565 list_for_each_entry(source_encoder,
9566 &dev->mode_config.encoder_list, base.head) {
9567 if (source_encoder->new_crtc != crtc)
Daniel Vetteraccfc0c2013-05-30 15:04:25 +02009568 continue;
9569
Ville Syrjäläbc079e82014-03-03 16:15:28 +02009570 if (!encoders_cloneable(encoder, source_encoder))
9571 return false;
Daniel Vetteraccfc0c2013-05-30 15:04:25 +02009572 }
9573
Ville Syrjäläbc079e82014-03-03 16:15:28 +02009574 return true;
9575}
9576
9577static bool check_encoder_cloning(struct intel_crtc *crtc)
9578{
9579 struct drm_device *dev = crtc->base.dev;
9580 struct intel_encoder *encoder;
9581
9582 list_for_each_entry(encoder,
9583 &dev->mode_config.encoder_list, base.head) {
9584 if (encoder->new_crtc != crtc)
9585 continue;
9586
9587 if (!check_single_encoder_cloning(crtc, encoder))
9588 return false;
9589 }
9590
9591 return true;
Daniel Vetteraccfc0c2013-05-30 15:04:25 +02009592}
9593
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01009594static struct intel_crtc_config *
9595intel_modeset_pipe_config(struct drm_crtc *crtc,
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01009596 struct drm_framebuffer *fb,
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01009597 struct drm_display_mode *mode)
Daniel Vetter7758a112012-07-08 19:40:39 +02009598{
9599 struct drm_device *dev = crtc->dev;
Daniel Vetter7758a112012-07-08 19:40:39 +02009600 struct intel_encoder *encoder;
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01009601 struct intel_crtc_config *pipe_config;
Daniel Vettere29c22c2013-02-21 00:00:16 +01009602 int plane_bpp, ret = -EINVAL;
9603 bool retry = true;
Daniel Vetter7758a112012-07-08 19:40:39 +02009604
Ville Syrjäläbc079e82014-03-03 16:15:28 +02009605 if (!check_encoder_cloning(to_intel_crtc(crtc))) {
Daniel Vetteraccfc0c2013-05-30 15:04:25 +02009606 DRM_DEBUG_KMS("rejecting invalid cloning configuration\n");
9607 return ERR_PTR(-EINVAL);
9608 }
9609
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01009610 pipe_config = kzalloc(sizeof(*pipe_config), GFP_KERNEL);
9611 if (!pipe_config)
Daniel Vetter7758a112012-07-08 19:40:39 +02009612 return ERR_PTR(-ENOMEM);
9613
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01009614 drm_mode_copy(&pipe_config->adjusted_mode, mode);
9615 drm_mode_copy(&pipe_config->requested_mode, mode);
Ville Syrjälä37327ab2013-09-04 18:25:28 +03009616
Daniel Vettere143a212013-07-04 12:01:15 +02009617 pipe_config->cpu_transcoder =
9618 (enum transcoder) to_intel_crtc(crtc)->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +02009619 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01009620
Imre Deak2960bc92013-07-30 13:36:32 +03009621 /*
9622 * Sanitize sync polarity flags based on requested ones. If neither
9623 * positive or negative polarity is requested, treat this as meaning
9624 * negative polarity.
9625 */
9626 if (!(pipe_config->adjusted_mode.flags &
9627 (DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NHSYNC)))
9628 pipe_config->adjusted_mode.flags |= DRM_MODE_FLAG_NHSYNC;
9629
9630 if (!(pipe_config->adjusted_mode.flags &
9631 (DRM_MODE_FLAG_PVSYNC | DRM_MODE_FLAG_NVSYNC)))
9632 pipe_config->adjusted_mode.flags |= DRM_MODE_FLAG_NVSYNC;
9633
Daniel Vetter050f7ae2013-06-02 13:26:23 +02009634 /* Compute a starting value for pipe_config->pipe_bpp taking the source
9635 * plane pixel format and any sink constraints into account. Returns the
9636 * source plane bpp so that dithering can be selected on mismatches
9637 * after encoders and crtc also have had their say. */
9638 plane_bpp = compute_baseline_pipe_bpp(to_intel_crtc(crtc),
9639 fb, pipe_config);
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01009640 if (plane_bpp < 0)
9641 goto fail;
9642
Ville Syrjäläe41a56b2013-10-01 22:52:14 +03009643 /*
9644 * Determine the real pipe dimensions. Note that stereo modes can
9645 * increase the actual pipe size due to the frame doubling and
9646 * insertion of additional space for blanks between the frame. This
9647 * is stored in the crtc timings. We use the requested mode to do this
9648 * computation to clearly distinguish it from the adjusted mode, which
9649 * can be changed by the connectors in the below retry loop.
9650 */
9651 drm_mode_set_crtcinfo(&pipe_config->requested_mode, CRTC_STEREO_DOUBLE);
9652 pipe_config->pipe_src_w = pipe_config->requested_mode.crtc_hdisplay;
9653 pipe_config->pipe_src_h = pipe_config->requested_mode.crtc_vdisplay;
9654
Daniel Vettere29c22c2013-02-21 00:00:16 +01009655encoder_retry:
Daniel Vetteref1b4602013-06-01 17:17:04 +02009656 /* Ensure the port clock defaults are reset when retrying. */
Daniel Vetterff9a6752013-06-01 17:16:21 +02009657 pipe_config->port_clock = 0;
Daniel Vetteref1b4602013-06-01 17:17:04 +02009658 pipe_config->pixel_multiplier = 1;
Daniel Vetterff9a6752013-06-01 17:16:21 +02009659
Daniel Vetter135c81b2013-07-21 21:37:09 +02009660 /* Fill in default crtc timings, allow encoders to overwrite them. */
Damien Lespiau6ce70f52013-09-25 16:45:38 +01009661 drm_mode_set_crtcinfo(&pipe_config->adjusted_mode, CRTC_STEREO_DOUBLE);
Daniel Vetter135c81b2013-07-21 21:37:09 +02009662
Daniel Vetter7758a112012-07-08 19:40:39 +02009663 /* Pass our mode to the connectors and the CRTC to give them a chance to
9664 * adjust it according to limitations or connector properties, and also
9665 * a chance to reject the mode entirely.
9666 */
9667 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
9668 base.head) {
9669
9670 if (&encoder->new_crtc->base != crtc)
9671 continue;
Daniel Vetter7ae89232013-03-27 00:44:52 +01009672
Daniel Vetterefea6e82013-07-21 21:36:59 +02009673 if (!(encoder->compute_config(encoder, pipe_config))) {
9674 DRM_DEBUG_KMS("Encoder config failure\n");
Daniel Vetter7758a112012-07-08 19:40:39 +02009675 goto fail;
9676 }
9677 }
9678
Daniel Vetterff9a6752013-06-01 17:16:21 +02009679 /* Set default port clock if not overwritten by the encoder. Needs to be
9680 * done afterwards in case the encoder adjusts the mode. */
9681 if (!pipe_config->port_clock)
Damien Lespiau241bfc32013-09-25 16:45:37 +01009682 pipe_config->port_clock = pipe_config->adjusted_mode.crtc_clock
9683 * pipe_config->pixel_multiplier;
Daniel Vetterff9a6752013-06-01 17:16:21 +02009684
Daniel Vettera43f6e02013-06-07 23:10:32 +02009685 ret = intel_crtc_compute_config(to_intel_crtc(crtc), pipe_config);
Daniel Vettere29c22c2013-02-21 00:00:16 +01009686 if (ret < 0) {
Daniel Vetter7758a112012-07-08 19:40:39 +02009687 DRM_DEBUG_KMS("CRTC fixup failed\n");
9688 goto fail;
9689 }
Daniel Vettere29c22c2013-02-21 00:00:16 +01009690
9691 if (ret == RETRY) {
9692 if (WARN(!retry, "loop in pipe configuration computation\n")) {
9693 ret = -EINVAL;
9694 goto fail;
9695 }
9696
9697 DRM_DEBUG_KMS("CRTC bw constrained, retrying\n");
9698 retry = false;
9699 goto encoder_retry;
9700 }
9701
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01009702 pipe_config->dither = pipe_config->pipe_bpp != plane_bpp;
9703 DRM_DEBUG_KMS("plane bpp: %i, pipe bpp: %i, dithering: %i\n",
9704 plane_bpp, pipe_config->pipe_bpp, pipe_config->dither);
9705
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01009706 return pipe_config;
Daniel Vetter7758a112012-07-08 19:40:39 +02009707fail:
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01009708 kfree(pipe_config);
Daniel Vettere29c22c2013-02-21 00:00:16 +01009709 return ERR_PTR(ret);
Daniel Vetter7758a112012-07-08 19:40:39 +02009710}
9711
Daniel Vettere2e1ed42012-07-08 21:14:38 +02009712/* Computes which crtcs are affected and sets the relevant bits in the mask. For
9713 * simplicity we use the crtc's pipe number (because it's easier to obtain). */
9714static void
9715intel_modeset_affected_pipes(struct drm_crtc *crtc, unsigned *modeset_pipes,
9716 unsigned *prepare_pipes, unsigned *disable_pipes)
9717{
9718 struct intel_crtc *intel_crtc;
9719 struct drm_device *dev = crtc->dev;
9720 struct intel_encoder *encoder;
9721 struct intel_connector *connector;
9722 struct drm_crtc *tmp_crtc;
9723
9724 *disable_pipes = *modeset_pipes = *prepare_pipes = 0;
9725
9726 /* Check which crtcs have changed outputs connected to them, these need
9727 * to be part of the prepare_pipes mask. We don't (yet) support global
9728 * modeset across multiple crtcs, so modeset_pipes will only have one
9729 * bit set at most. */
9730 list_for_each_entry(connector, &dev->mode_config.connector_list,
9731 base.head) {
9732 if (connector->base.encoder == &connector->new_encoder->base)
9733 continue;
9734
9735 if (connector->base.encoder) {
9736 tmp_crtc = connector->base.encoder->crtc;
9737
9738 *prepare_pipes |= 1 << to_intel_crtc(tmp_crtc)->pipe;
9739 }
9740
9741 if (connector->new_encoder)
9742 *prepare_pipes |=
9743 1 << connector->new_encoder->new_crtc->pipe;
9744 }
9745
9746 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
9747 base.head) {
9748 if (encoder->base.crtc == &encoder->new_crtc->base)
9749 continue;
9750
9751 if (encoder->base.crtc) {
9752 tmp_crtc = encoder->base.crtc;
9753
9754 *prepare_pipes |= 1 << to_intel_crtc(tmp_crtc)->pipe;
9755 }
9756
9757 if (encoder->new_crtc)
9758 *prepare_pipes |= 1 << encoder->new_crtc->pipe;
9759 }
9760
Ville Syrjälä76688512014-01-10 11:28:06 +02009761 /* Check for pipes that will be enabled/disabled ... */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01009762 for_each_intel_crtc(dev, intel_crtc) {
Ville Syrjälä76688512014-01-10 11:28:06 +02009763 if (intel_crtc->base.enabled == intel_crtc->new_enabled)
Daniel Vettere2e1ed42012-07-08 21:14:38 +02009764 continue;
9765
Ville Syrjälä76688512014-01-10 11:28:06 +02009766 if (!intel_crtc->new_enabled)
Daniel Vettere2e1ed42012-07-08 21:14:38 +02009767 *disable_pipes |= 1 << intel_crtc->pipe;
Ville Syrjälä76688512014-01-10 11:28:06 +02009768 else
9769 *prepare_pipes |= 1 << intel_crtc->pipe;
Daniel Vettere2e1ed42012-07-08 21:14:38 +02009770 }
9771
9772
9773 /* set_mode is also used to update properties on life display pipes. */
9774 intel_crtc = to_intel_crtc(crtc);
Ville Syrjälä76688512014-01-10 11:28:06 +02009775 if (intel_crtc->new_enabled)
Daniel Vettere2e1ed42012-07-08 21:14:38 +02009776 *prepare_pipes |= 1 << intel_crtc->pipe;
9777
Daniel Vetterb6c51642013-04-12 18:48:43 +02009778 /*
9779 * For simplicity do a full modeset on any pipe where the output routing
9780 * changed. We could be more clever, but that would require us to be
9781 * more careful with calling the relevant encoder->mode_set functions.
9782 */
Daniel Vettere2e1ed42012-07-08 21:14:38 +02009783 if (*prepare_pipes)
9784 *modeset_pipes = *prepare_pipes;
9785
9786 /* ... and mask these out. */
9787 *modeset_pipes &= ~(*disable_pipes);
9788 *prepare_pipes &= ~(*disable_pipes);
Daniel Vetterb6c51642013-04-12 18:48:43 +02009789
9790 /*
9791 * HACK: We don't (yet) fully support global modesets. intel_set_config
9792 * obies this rule, but the modeset restore mode of
9793 * intel_modeset_setup_hw_state does not.
9794 */
9795 *modeset_pipes &= 1 << intel_crtc->pipe;
9796 *prepare_pipes &= 1 << intel_crtc->pipe;
Daniel Vettere3641d32013-04-11 19:49:07 +02009797
9798 DRM_DEBUG_KMS("set mode pipe masks: modeset: %x, prepare: %x, disable: %x\n",
9799 *modeset_pipes, *prepare_pipes, *disable_pipes);
Daniel Vettere2e1ed42012-07-08 21:14:38 +02009800}
9801
Daniel Vetterea9d7582012-07-10 10:42:52 +02009802static bool intel_crtc_in_use(struct drm_crtc *crtc)
9803{
9804 struct drm_encoder *encoder;
9805 struct drm_device *dev = crtc->dev;
9806
9807 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head)
9808 if (encoder->crtc == crtc)
9809 return true;
9810
9811 return false;
9812}
9813
9814static void
9815intel_modeset_update_state(struct drm_device *dev, unsigned prepare_pipes)
9816{
9817 struct intel_encoder *intel_encoder;
9818 struct intel_crtc *intel_crtc;
9819 struct drm_connector *connector;
9820
9821 list_for_each_entry(intel_encoder, &dev->mode_config.encoder_list,
9822 base.head) {
9823 if (!intel_encoder->base.crtc)
9824 continue;
9825
9826 intel_crtc = to_intel_crtc(intel_encoder->base.crtc);
9827
9828 if (prepare_pipes & (1 << intel_crtc->pipe))
9829 intel_encoder->connectors_active = false;
9830 }
9831
9832 intel_modeset_commit_output_state(dev);
9833
Ville Syrjälä76688512014-01-10 11:28:06 +02009834 /* Double check state. */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01009835 for_each_intel_crtc(dev, intel_crtc) {
Ville Syrjälä76688512014-01-10 11:28:06 +02009836 WARN_ON(intel_crtc->base.enabled != intel_crtc_in_use(&intel_crtc->base));
Ville Syrjälä7bd0a8e2014-01-14 14:31:38 +02009837 WARN_ON(intel_crtc->new_config &&
9838 intel_crtc->new_config != &intel_crtc->config);
9839 WARN_ON(intel_crtc->base.enabled != !!intel_crtc->new_config);
Daniel Vetterea9d7582012-07-10 10:42:52 +02009840 }
9841
9842 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
9843 if (!connector->encoder || !connector->encoder->crtc)
9844 continue;
9845
9846 intel_crtc = to_intel_crtc(connector->encoder->crtc);
9847
9848 if (prepare_pipes & (1 << intel_crtc->pipe)) {
Daniel Vetter68d34722012-09-06 22:08:35 +02009849 struct drm_property *dpms_property =
9850 dev->mode_config.dpms_property;
9851
Daniel Vetterea9d7582012-07-10 10:42:52 +02009852 connector->dpms = DRM_MODE_DPMS_ON;
Rob Clark662595d2012-10-11 20:36:04 -05009853 drm_object_property_set_value(&connector->base,
Daniel Vetter68d34722012-09-06 22:08:35 +02009854 dpms_property,
9855 DRM_MODE_DPMS_ON);
Daniel Vetterea9d7582012-07-10 10:42:52 +02009856
9857 intel_encoder = to_intel_encoder(connector->encoder);
9858 intel_encoder->connectors_active = true;
9859 }
9860 }
9861
9862}
9863
Ville Syrjälä3bd26262013-09-06 23:29:02 +03009864static bool intel_fuzzy_clock_check(int clock1, int clock2)
Jesse Barnesf1f644d2013-06-27 00:39:25 +03009865{
Ville Syrjälä3bd26262013-09-06 23:29:02 +03009866 int diff;
Jesse Barnesf1f644d2013-06-27 00:39:25 +03009867
9868 if (clock1 == clock2)
9869 return true;
9870
9871 if (!clock1 || !clock2)
9872 return false;
9873
9874 diff = abs(clock1 - clock2);
9875
9876 if (((((diff + clock1 + clock2) * 100)) / (clock1 + clock2)) < 105)
9877 return true;
9878
9879 return false;
9880}
9881
Daniel Vetter25c5b262012-07-08 22:08:04 +02009882#define for_each_intel_crtc_masked(dev, mask, intel_crtc) \
9883 list_for_each_entry((intel_crtc), \
9884 &(dev)->mode_config.crtc_list, \
9885 base.head) \
Daniel Vetter0973f182013-04-19 11:25:33 +02009886 if (mask & (1 <<(intel_crtc)->pipe))
Daniel Vetter25c5b262012-07-08 22:08:04 +02009887
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01009888static bool
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02009889intel_pipe_config_compare(struct drm_device *dev,
9890 struct intel_crtc_config *current_config,
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01009891 struct intel_crtc_config *pipe_config)
9892{
Daniel Vetter66e985c2013-06-05 13:34:20 +02009893#define PIPE_CONF_CHECK_X(name) \
9894 if (current_config->name != pipe_config->name) { \
9895 DRM_ERROR("mismatch in " #name " " \
9896 "(expected 0x%08x, found 0x%08x)\n", \
9897 current_config->name, \
9898 pipe_config->name); \
9899 return false; \
9900 }
9901
Daniel Vetter08a24032013-04-19 11:25:34 +02009902#define PIPE_CONF_CHECK_I(name) \
9903 if (current_config->name != pipe_config->name) { \
9904 DRM_ERROR("mismatch in " #name " " \
9905 "(expected %i, found %i)\n", \
9906 current_config->name, \
9907 pipe_config->name); \
9908 return false; \
Daniel Vetter88adfff2013-03-28 10:42:01 +01009909 }
9910
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02009911#define PIPE_CONF_CHECK_FLAGS(name, mask) \
9912 if ((current_config->name ^ pipe_config->name) & (mask)) { \
Jesse Barnes6f024882013-07-01 10:19:09 -07009913 DRM_ERROR("mismatch in " #name "(" #mask ") " \
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02009914 "(expected %i, found %i)\n", \
9915 current_config->name & (mask), \
9916 pipe_config->name & (mask)); \
9917 return false; \
9918 }
9919
Ville Syrjälä5e550652013-09-06 23:29:07 +03009920#define PIPE_CONF_CHECK_CLOCK_FUZZY(name) \
9921 if (!intel_fuzzy_clock_check(current_config->name, pipe_config->name)) { \
9922 DRM_ERROR("mismatch in " #name " " \
9923 "(expected %i, found %i)\n", \
9924 current_config->name, \
9925 pipe_config->name); \
9926 return false; \
9927 }
9928
Daniel Vetterbb760062013-06-06 14:55:52 +02009929#define PIPE_CONF_QUIRK(quirk) \
9930 ((current_config->quirks | pipe_config->quirks) & (quirk))
9931
Daniel Vettereccb1402013-05-22 00:50:22 +02009932 PIPE_CONF_CHECK_I(cpu_transcoder);
9933
Daniel Vetter08a24032013-04-19 11:25:34 +02009934 PIPE_CONF_CHECK_I(has_pch_encoder);
9935 PIPE_CONF_CHECK_I(fdi_lanes);
Daniel Vetter72419202013-04-04 13:28:53 +02009936 PIPE_CONF_CHECK_I(fdi_m_n.gmch_m);
9937 PIPE_CONF_CHECK_I(fdi_m_n.gmch_n);
9938 PIPE_CONF_CHECK_I(fdi_m_n.link_m);
9939 PIPE_CONF_CHECK_I(fdi_m_n.link_n);
9940 PIPE_CONF_CHECK_I(fdi_m_n.tu);
Daniel Vetter08a24032013-04-19 11:25:34 +02009941
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03009942 PIPE_CONF_CHECK_I(has_dp_encoder);
9943 PIPE_CONF_CHECK_I(dp_m_n.gmch_m);
9944 PIPE_CONF_CHECK_I(dp_m_n.gmch_n);
9945 PIPE_CONF_CHECK_I(dp_m_n.link_m);
9946 PIPE_CONF_CHECK_I(dp_m_n.link_n);
9947 PIPE_CONF_CHECK_I(dp_m_n.tu);
9948
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02009949 PIPE_CONF_CHECK_I(adjusted_mode.crtc_hdisplay);
9950 PIPE_CONF_CHECK_I(adjusted_mode.crtc_htotal);
9951 PIPE_CONF_CHECK_I(adjusted_mode.crtc_hblank_start);
9952 PIPE_CONF_CHECK_I(adjusted_mode.crtc_hblank_end);
9953 PIPE_CONF_CHECK_I(adjusted_mode.crtc_hsync_start);
9954 PIPE_CONF_CHECK_I(adjusted_mode.crtc_hsync_end);
9955
9956 PIPE_CONF_CHECK_I(adjusted_mode.crtc_vdisplay);
9957 PIPE_CONF_CHECK_I(adjusted_mode.crtc_vtotal);
9958 PIPE_CONF_CHECK_I(adjusted_mode.crtc_vblank_start);
9959 PIPE_CONF_CHECK_I(adjusted_mode.crtc_vblank_end);
9960 PIPE_CONF_CHECK_I(adjusted_mode.crtc_vsync_start);
9961 PIPE_CONF_CHECK_I(adjusted_mode.crtc_vsync_end);
9962
Daniel Vetterc93f54c2013-06-27 19:47:19 +02009963 PIPE_CONF_CHECK_I(pixel_multiplier);
Daniel Vetter6897b4b2014-04-24 23:54:47 +02009964 PIPE_CONF_CHECK_I(has_hdmi_sink);
Daniel Vetterb5a9fa02014-04-24 23:54:49 +02009965 if ((INTEL_INFO(dev)->gen < 8 && !IS_HASWELL(dev)) ||
9966 IS_VALLEYVIEW(dev))
9967 PIPE_CONF_CHECK_I(limited_color_range);
Daniel Vetter6c49f242013-06-06 12:45:25 +02009968
Daniel Vetter9ed109a2014-04-24 23:54:52 +02009969 PIPE_CONF_CHECK_I(has_audio);
9970
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02009971 PIPE_CONF_CHECK_FLAGS(adjusted_mode.flags,
9972 DRM_MODE_FLAG_INTERLACE);
9973
Daniel Vetterbb760062013-06-06 14:55:52 +02009974 if (!PIPE_CONF_QUIRK(PIPE_CONFIG_QUIRK_MODE_SYNC_FLAGS)) {
9975 PIPE_CONF_CHECK_FLAGS(adjusted_mode.flags,
9976 DRM_MODE_FLAG_PHSYNC);
9977 PIPE_CONF_CHECK_FLAGS(adjusted_mode.flags,
9978 DRM_MODE_FLAG_NHSYNC);
9979 PIPE_CONF_CHECK_FLAGS(adjusted_mode.flags,
9980 DRM_MODE_FLAG_PVSYNC);
9981 PIPE_CONF_CHECK_FLAGS(adjusted_mode.flags,
9982 DRM_MODE_FLAG_NVSYNC);
9983 }
Jesse Barnes045ac3b2013-05-14 17:08:26 -07009984
Ville Syrjälä37327ab2013-09-04 18:25:28 +03009985 PIPE_CONF_CHECK_I(pipe_src_w);
9986 PIPE_CONF_CHECK_I(pipe_src_h);
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02009987
Daniel Vetter99535992014-04-13 12:00:33 +02009988 /*
9989 * FIXME: BIOS likes to set up a cloned config with lvds+external
9990 * screen. Since we don't yet re-compute the pipe config when moving
9991 * just the lvds port away to another pipe the sw tracking won't match.
9992 *
9993 * Proper atomic modesets with recomputed global state will fix this.
9994 * Until then just don't check gmch state for inherited modes.
9995 */
9996 if (!PIPE_CONF_QUIRK(PIPE_CONFIG_QUIRK_INHERITED_MODE)) {
9997 PIPE_CONF_CHECK_I(gmch_pfit.control);
9998 /* pfit ratios are autocomputed by the hw on gen4+ */
9999 if (INTEL_INFO(dev)->gen < 4)
10000 PIPE_CONF_CHECK_I(gmch_pfit.pgm_ratios);
10001 PIPE_CONF_CHECK_I(gmch_pfit.lvds_border_bits);
10002 }
10003
Chris Wilsonfd4daa92013-08-27 17:04:17 +010010004 PIPE_CONF_CHECK_I(pch_pfit.enabled);
10005 if (current_config->pch_pfit.enabled) {
10006 PIPE_CONF_CHECK_I(pch_pfit.pos);
10007 PIPE_CONF_CHECK_I(pch_pfit.size);
10008 }
Daniel Vetter2fa2fe92013-05-07 23:34:16 +020010009
Jesse Barnese59150d2014-01-07 13:30:45 -080010010 /* BDW+ don't expose a synchronous way to read the state */
10011 if (IS_HASWELL(dev))
10012 PIPE_CONF_CHECK_I(ips_enabled);
Paulo Zanoni42db64e2013-05-31 16:33:22 -030010013
Ville Syrjälä282740f2013-09-04 18:30:03 +030010014 PIPE_CONF_CHECK_I(double_wide);
10015
Daniel Vetterc0d43d62013-06-07 23:11:08 +020010016 PIPE_CONF_CHECK_I(shared_dpll);
Daniel Vetter66e985c2013-06-05 13:34:20 +020010017 PIPE_CONF_CHECK_X(dpll_hw_state.dpll);
Daniel Vetter8bcc2792013-06-05 13:34:28 +020010018 PIPE_CONF_CHECK_X(dpll_hw_state.dpll_md);
Daniel Vetter66e985c2013-06-05 13:34:20 +020010019 PIPE_CONF_CHECK_X(dpll_hw_state.fp0);
10020 PIPE_CONF_CHECK_X(dpll_hw_state.fp1);
Daniel Vetterc0d43d62013-06-07 23:11:08 +020010021
Ville Syrjälä42571ae2013-09-06 23:29:00 +030010022 if (IS_G4X(dev) || INTEL_INFO(dev)->gen >= 5)
10023 PIPE_CONF_CHECK_I(pipe_bpp);
10024
Jesse Barnesa9a7e982014-01-20 14:18:04 -080010025 PIPE_CONF_CHECK_CLOCK_FUZZY(adjusted_mode.crtc_clock);
10026 PIPE_CONF_CHECK_CLOCK_FUZZY(port_clock);
Ville Syrjälä5e550652013-09-06 23:29:07 +030010027
Daniel Vetter66e985c2013-06-05 13:34:20 +020010028#undef PIPE_CONF_CHECK_X
Daniel Vetter08a24032013-04-19 11:25:34 +020010029#undef PIPE_CONF_CHECK_I
Daniel Vetter1bd1bd82013-04-29 21:56:12 +020010030#undef PIPE_CONF_CHECK_FLAGS
Ville Syrjälä5e550652013-09-06 23:29:07 +030010031#undef PIPE_CONF_CHECK_CLOCK_FUZZY
Daniel Vetterbb760062013-06-06 14:55:52 +020010032#undef PIPE_CONF_QUIRK
Daniel Vetter627eb5a2013-04-29 19:33:42 +020010033
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010010034 return true;
10035}
10036
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020010037static void
10038check_connector_state(struct drm_device *dev)
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010039{
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010040 struct intel_connector *connector;
10041
10042 list_for_each_entry(connector, &dev->mode_config.connector_list,
10043 base.head) {
10044 /* This also checks the encoder/connector hw state with the
10045 * ->get_hw_state callbacks. */
10046 intel_connector_check_state(connector);
10047
10048 WARN(&connector->new_encoder->base != connector->base.encoder,
10049 "connector's staged encoder doesn't match current encoder\n");
10050 }
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020010051}
10052
10053static void
10054check_encoder_state(struct drm_device *dev)
10055{
10056 struct intel_encoder *encoder;
10057 struct intel_connector *connector;
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010058
10059 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
10060 base.head) {
10061 bool enabled = false;
10062 bool active = false;
10063 enum pipe pipe, tracked_pipe;
10064
10065 DRM_DEBUG_KMS("[ENCODER:%d:%s]\n",
10066 encoder->base.base.id,
10067 drm_get_encoder_name(&encoder->base));
10068
10069 WARN(&encoder->new_crtc->base != encoder->base.crtc,
10070 "encoder's stage crtc doesn't match current crtc\n");
10071 WARN(encoder->connectors_active && !encoder->base.crtc,
10072 "encoder's active_connectors set, but no crtc\n");
10073
10074 list_for_each_entry(connector, &dev->mode_config.connector_list,
10075 base.head) {
10076 if (connector->base.encoder != &encoder->base)
10077 continue;
10078 enabled = true;
10079 if (connector->base.dpms != DRM_MODE_DPMS_OFF)
10080 active = true;
10081 }
10082 WARN(!!encoder->base.crtc != enabled,
10083 "encoder's enabled state mismatch "
10084 "(expected %i, found %i)\n",
10085 !!encoder->base.crtc, enabled);
10086 WARN(active && !encoder->base.crtc,
10087 "active encoder with no crtc\n");
10088
10089 WARN(encoder->connectors_active != active,
10090 "encoder's computed active state doesn't match tracked active state "
10091 "(expected %i, found %i)\n", active, encoder->connectors_active);
10092
10093 active = encoder->get_hw_state(encoder, &pipe);
10094 WARN(active != encoder->connectors_active,
10095 "encoder's hw state doesn't match sw tracking "
10096 "(expected %i, found %i)\n",
10097 encoder->connectors_active, active);
10098
10099 if (!encoder->base.crtc)
10100 continue;
10101
10102 tracked_pipe = to_intel_crtc(encoder->base.crtc)->pipe;
10103 WARN(active && pipe != tracked_pipe,
10104 "active encoder's pipe doesn't match"
10105 "(expected %i, found %i)\n",
10106 tracked_pipe, pipe);
10107
10108 }
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020010109}
10110
10111static void
10112check_crtc_state(struct drm_device *dev)
10113{
Jani Nikulafbee40d2014-03-31 14:27:18 +030010114 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020010115 struct intel_crtc *crtc;
10116 struct intel_encoder *encoder;
10117 struct intel_crtc_config pipe_config;
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010118
Damien Lespiaud3fcc802014-05-13 23:32:22 +010010119 for_each_intel_crtc(dev, crtc) {
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010120 bool enabled = false;
10121 bool active = false;
10122
Jesse Barnes045ac3b2013-05-14 17:08:26 -070010123 memset(&pipe_config, 0, sizeof(pipe_config));
10124
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010125 DRM_DEBUG_KMS("[CRTC:%d]\n",
10126 crtc->base.base.id);
10127
10128 WARN(crtc->active && !crtc->base.enabled,
10129 "active crtc, but not enabled in sw tracking\n");
10130
10131 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
10132 base.head) {
10133 if (encoder->base.crtc != &crtc->base)
10134 continue;
10135 enabled = true;
10136 if (encoder->connectors_active)
10137 active = true;
10138 }
Daniel Vetter6c49f242013-06-06 12:45:25 +020010139
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010140 WARN(active != crtc->active,
10141 "crtc's computed active state doesn't match tracked active state "
10142 "(expected %i, found %i)\n", active, crtc->active);
10143 WARN(enabled != crtc->base.enabled,
10144 "crtc's computed enabled state doesn't match tracked enabled state "
10145 "(expected %i, found %i)\n", enabled, crtc->base.enabled);
10146
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010010147 active = dev_priv->display.get_pipe_config(crtc,
10148 &pipe_config);
Daniel Vetterd62cf622013-05-29 10:41:29 +020010149
10150 /* hw state is inconsistent with the pipe A quirk */
10151 if (crtc->pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE)
10152 active = crtc->active;
10153
Daniel Vetter6c49f242013-06-06 12:45:25 +020010154 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
10155 base.head) {
Ville Syrjälä3eaba512013-08-05 17:57:48 +030010156 enum pipe pipe;
Daniel Vetter6c49f242013-06-06 12:45:25 +020010157 if (encoder->base.crtc != &crtc->base)
10158 continue;
Daniel Vetter1d37b682013-11-18 09:00:59 +010010159 if (encoder->get_hw_state(encoder, &pipe))
Daniel Vetter6c49f242013-06-06 12:45:25 +020010160 encoder->get_config(encoder, &pipe_config);
10161 }
10162
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010010163 WARN(crtc->active != active,
10164 "crtc active state doesn't match with hw state "
10165 "(expected %i, found %i)\n", crtc->active, active);
10166
Daniel Vetterc0b03412013-05-28 12:05:54 +020010167 if (active &&
10168 !intel_pipe_config_compare(dev, &crtc->config, &pipe_config)) {
10169 WARN(1, "pipe state doesn't match!\n");
10170 intel_dump_pipe_config(crtc, &pipe_config,
10171 "[hw state]");
10172 intel_dump_pipe_config(crtc, &crtc->config,
10173 "[sw state]");
10174 }
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010175 }
10176}
10177
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020010178static void
10179check_shared_dpll_state(struct drm_device *dev)
10180{
Jani Nikulafbee40d2014-03-31 14:27:18 +030010181 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020010182 struct intel_crtc *crtc;
10183 struct intel_dpll_hw_state dpll_hw_state;
10184 int i;
Daniel Vetter53589012013-06-05 13:34:16 +020010185
10186 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
10187 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
10188 int enabled_crtcs = 0, active_crtcs = 0;
10189 bool active;
10190
10191 memset(&dpll_hw_state, 0, sizeof(dpll_hw_state));
10192
10193 DRM_DEBUG_KMS("%s\n", pll->name);
10194
10195 active = pll->get_hw_state(dev_priv, pll, &dpll_hw_state);
10196
10197 WARN(pll->active > pll->refcount,
10198 "more active pll users than references: %i vs %i\n",
10199 pll->active, pll->refcount);
10200 WARN(pll->active && !pll->on,
10201 "pll in active use but not on in sw tracking\n");
Daniel Vetter35c95372013-07-17 06:55:04 +020010202 WARN(pll->on && !pll->active,
10203 "pll in on but not on in use in sw tracking\n");
Daniel Vetter53589012013-06-05 13:34:16 +020010204 WARN(pll->on != active,
10205 "pll on state mismatch (expected %i, found %i)\n",
10206 pll->on, active);
10207
Damien Lespiaud3fcc802014-05-13 23:32:22 +010010208 for_each_intel_crtc(dev, crtc) {
Daniel Vetter53589012013-06-05 13:34:16 +020010209 if (crtc->base.enabled && intel_crtc_to_shared_dpll(crtc) == pll)
10210 enabled_crtcs++;
10211 if (crtc->active && intel_crtc_to_shared_dpll(crtc) == pll)
10212 active_crtcs++;
10213 }
10214 WARN(pll->active != active_crtcs,
10215 "pll active crtcs mismatch (expected %i, found %i)\n",
10216 pll->active, active_crtcs);
10217 WARN(pll->refcount != enabled_crtcs,
10218 "pll enabled crtcs mismatch (expected %i, found %i)\n",
10219 pll->refcount, enabled_crtcs);
Daniel Vetter66e985c2013-06-05 13:34:20 +020010220
10221 WARN(pll->on && memcmp(&pll->hw_state, &dpll_hw_state,
10222 sizeof(dpll_hw_state)),
10223 "pll hw state mismatch\n");
Daniel Vetter53589012013-06-05 13:34:16 +020010224 }
Daniel Vettera6778b32012-07-02 09:56:42 +020010225}
10226
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020010227void
10228intel_modeset_check_state(struct drm_device *dev)
10229{
10230 check_connector_state(dev);
10231 check_encoder_state(dev);
10232 check_crtc_state(dev);
10233 check_shared_dpll_state(dev);
10234}
10235
Ville Syrjälä18442d02013-09-13 16:00:08 +030010236void ironlake_check_encoder_dotclock(const struct intel_crtc_config *pipe_config,
10237 int dotclock)
10238{
10239 /*
10240 * FDI already provided one idea for the dotclock.
10241 * Yell if the encoder disagrees.
10242 */
Damien Lespiau241bfc32013-09-25 16:45:37 +010010243 WARN(!intel_fuzzy_clock_check(pipe_config->adjusted_mode.crtc_clock, dotclock),
Ville Syrjälä18442d02013-09-13 16:00:08 +030010244 "FDI dotclock and encoder dotclock mismatch, fdi: %i, encoder: %i\n",
Damien Lespiau241bfc32013-09-25 16:45:37 +010010245 pipe_config->adjusted_mode.crtc_clock, dotclock);
Ville Syrjälä18442d02013-09-13 16:00:08 +030010246}
10247
Daniel Vetterf30da182013-04-11 20:22:50 +020010248static int __intel_set_mode(struct drm_crtc *crtc,
10249 struct drm_display_mode *mode,
10250 int x, int y, struct drm_framebuffer *fb)
Daniel Vettera6778b32012-07-02 09:56:42 +020010251{
10252 struct drm_device *dev = crtc->dev;
Jani Nikulafbee40d2014-03-31 14:27:18 +030010253 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä4b4b9232013-10-26 17:59:30 +030010254 struct drm_display_mode *saved_mode;
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010010255 struct intel_crtc_config *pipe_config = NULL;
Daniel Vetter25c5b262012-07-08 22:08:04 +020010256 struct intel_crtc *intel_crtc;
10257 unsigned disable_pipes, prepare_pipes, modeset_pipes;
Chris Wilsonc0c36b942012-12-19 16:08:43 +000010258 int ret = 0;
Daniel Vettera6778b32012-07-02 09:56:42 +020010259
Ville Syrjälä4b4b9232013-10-26 17:59:30 +030010260 saved_mode = kmalloc(sizeof(*saved_mode), GFP_KERNEL);
Chris Wilsonc0c36b942012-12-19 16:08:43 +000010261 if (!saved_mode)
10262 return -ENOMEM;
Daniel Vettera6778b32012-07-02 09:56:42 +020010263
Daniel Vettere2e1ed42012-07-08 21:14:38 +020010264 intel_modeset_affected_pipes(crtc, &modeset_pipes,
Daniel Vetter25c5b262012-07-08 22:08:04 +020010265 &prepare_pipes, &disable_pipes);
10266
Tim Gardner3ac18232012-12-07 07:54:26 -070010267 *saved_mode = crtc->mode;
Daniel Vettera6778b32012-07-02 09:56:42 +020010268
Daniel Vetter25c5b262012-07-08 22:08:04 +020010269 /* Hack: Because we don't (yet) support global modeset on multiple
10270 * crtcs, we don't keep track of the new mode for more than one crtc.
10271 * Hence simply check whether any bit is set in modeset_pipes in all the
10272 * pieces of code that are not yet converted to deal with mutliple crtcs
10273 * changing their mode at the same time. */
Daniel Vetter25c5b262012-07-08 22:08:04 +020010274 if (modeset_pipes) {
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010275 pipe_config = intel_modeset_pipe_config(crtc, fb, mode);
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010010276 if (IS_ERR(pipe_config)) {
10277 ret = PTR_ERR(pipe_config);
10278 pipe_config = NULL;
10279
Tim Gardner3ac18232012-12-07 07:54:26 -070010280 goto out;
Daniel Vetter25c5b262012-07-08 22:08:04 +020010281 }
Daniel Vetterc0b03412013-05-28 12:05:54 +020010282 intel_dump_pipe_config(to_intel_crtc(crtc), pipe_config,
10283 "[modeset]");
Ville Syrjälä50741ab2014-01-10 11:28:07 +020010284 to_intel_crtc(crtc)->new_config = pipe_config;
Daniel Vettera6778b32012-07-02 09:56:42 +020010285 }
10286
Jesse Barnes30a970c2013-11-04 13:48:12 -080010287 /*
10288 * See if the config requires any additional preparation, e.g.
10289 * to adjust global state with pipes off. We need to do this
10290 * here so we can get the modeset_pipe updated config for the new
10291 * mode set on this crtc. For other crtcs we need to use the
10292 * adjusted_mode bits in the crtc directly.
10293 */
Ville Syrjäläc164f832013-11-05 22:34:12 +020010294 if (IS_VALLEYVIEW(dev)) {
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +020010295 valleyview_modeset_global_pipes(dev, &prepare_pipes);
Jesse Barnes30a970c2013-11-04 13:48:12 -080010296
Ville Syrjäläc164f832013-11-05 22:34:12 +020010297 /* may have added more to prepare_pipes than we should */
10298 prepare_pipes &= ~disable_pipes;
10299 }
10300
Daniel Vetter460da9162013-03-27 00:44:51 +010010301 for_each_intel_crtc_masked(dev, disable_pipes, intel_crtc)
10302 intel_crtc_disable(&intel_crtc->base);
10303
Daniel Vetterea9d7582012-07-10 10:42:52 +020010304 for_each_intel_crtc_masked(dev, prepare_pipes, intel_crtc) {
10305 if (intel_crtc->base.enabled)
10306 dev_priv->display.crtc_disable(&intel_crtc->base);
10307 }
Daniel Vettera6778b32012-07-02 09:56:42 +020010308
Daniel Vetter6c4c86f2012-09-10 21:58:30 +020010309 /* crtc->mode is already used by the ->mode_set callbacks, hence we need
10310 * to set it here already despite that we pass it down the callchain.
10311 */
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010010312 if (modeset_pipes) {
Daniel Vetter25c5b262012-07-08 22:08:04 +020010313 crtc->mode = *mode;
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010010314 /* mode_set/enable/disable functions rely on a correct pipe
10315 * config. */
10316 to_intel_crtc(crtc)->config = *pipe_config;
Ville Syrjälä50741ab2014-01-10 11:28:07 +020010317 to_intel_crtc(crtc)->new_config = &to_intel_crtc(crtc)->config;
Ville Syrjäläc326c0a2013-10-28 12:53:41 +020010318
10319 /*
10320 * Calculate and store various constants which
10321 * are later needed by vblank and swap-completion
10322 * timestamping. They are derived from true hwmode.
10323 */
10324 drm_calc_timestamping_constants(crtc,
10325 &pipe_config->adjusted_mode);
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010010326 }
Daniel Vetter7758a112012-07-08 19:40:39 +020010327
Daniel Vetterea9d7582012-07-10 10:42:52 +020010328 /* Only after disabling all output pipelines that will be changed can we
10329 * update the the output configuration. */
10330 intel_modeset_update_state(dev, prepare_pipes);
10331
Daniel Vetter47fab732012-10-26 10:58:18 +020010332 if (dev_priv->display.modeset_global_resources)
10333 dev_priv->display.modeset_global_resources(dev);
10334
Daniel Vettera6778b32012-07-02 09:56:42 +020010335 /* Set up the DPLL and any encoders state that needs to adjust or depend
10336 * on the DPLL.
10337 */
Daniel Vetter25c5b262012-07-08 22:08:04 +020010338 for_each_intel_crtc_masked(dev, modeset_pipes, intel_crtc) {
Daniel Vetter4c107942014-04-24 23:55:05 +020010339 struct drm_framebuffer *old_fb;
10340
10341 mutex_lock(&dev->struct_mutex);
10342 ret = intel_pin_and_fence_fb_obj(dev,
10343 to_intel_framebuffer(fb)->obj,
10344 NULL);
10345 if (ret != 0) {
10346 DRM_ERROR("pin & fence failed\n");
10347 mutex_unlock(&dev->struct_mutex);
10348 goto done;
10349 }
10350 old_fb = crtc->primary->fb;
10351 if (old_fb)
10352 intel_unpin_fb_obj(to_intel_framebuffer(old_fb)->obj);
10353 mutex_unlock(&dev->struct_mutex);
10354
10355 crtc->primary->fb = fb;
10356 crtc->x = x;
10357 crtc->y = y;
10358
Daniel Vetter4271b752014-04-24 23:55:00 +020010359 ret = dev_priv->display.crtc_mode_set(&intel_crtc->base,
10360 x, y, fb);
Chris Wilsonc0c36b942012-12-19 16:08:43 +000010361 if (ret)
10362 goto done;
Daniel Vettera6778b32012-07-02 09:56:42 +020010363 }
10364
10365 /* Now enable the clocks, plane, pipe, and connectors that we set up. */
Daniel Vetter25c5b262012-07-08 22:08:04 +020010366 for_each_intel_crtc_masked(dev, prepare_pipes, intel_crtc)
10367 dev_priv->display.crtc_enable(&intel_crtc->base);
Daniel Vettera6778b32012-07-02 09:56:42 +020010368
Daniel Vettera6778b32012-07-02 09:56:42 +020010369 /* FIXME: add subpixel order */
10370done:
Ville Syrjälä4b4b9232013-10-26 17:59:30 +030010371 if (ret && crtc->enabled)
Tim Gardner3ac18232012-12-07 07:54:26 -070010372 crtc->mode = *saved_mode;
Daniel Vettera6778b32012-07-02 09:56:42 +020010373
Tim Gardner3ac18232012-12-07 07:54:26 -070010374out:
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010010375 kfree(pipe_config);
Tim Gardner3ac18232012-12-07 07:54:26 -070010376 kfree(saved_mode);
Daniel Vettera6778b32012-07-02 09:56:42 +020010377 return ret;
10378}
10379
Damien Lespiaue7457a92013-08-08 22:28:59 +010010380static int intel_set_mode(struct drm_crtc *crtc,
10381 struct drm_display_mode *mode,
10382 int x, int y, struct drm_framebuffer *fb)
Daniel Vetterf30da182013-04-11 20:22:50 +020010383{
10384 int ret;
10385
10386 ret = __intel_set_mode(crtc, mode, x, y, fb);
10387
10388 if (ret == 0)
10389 intel_modeset_check_state(crtc->dev);
10390
10391 return ret;
10392}
10393
Chris Wilsonc0c36b942012-12-19 16:08:43 +000010394void intel_crtc_restore_mode(struct drm_crtc *crtc)
10395{
Matt Roperf4510a22014-04-01 15:22:40 -070010396 intel_set_mode(crtc, &crtc->mode, crtc->x, crtc->y, crtc->primary->fb);
Chris Wilsonc0c36b942012-12-19 16:08:43 +000010397}
10398
Daniel Vetter25c5b262012-07-08 22:08:04 +020010399#undef for_each_intel_crtc_masked
10400
Daniel Vetterd9e55602012-07-04 22:16:09 +020010401static void intel_set_config_free(struct intel_set_config *config)
10402{
10403 if (!config)
10404 return;
10405
Daniel Vetter1aa4b622012-07-05 16:20:48 +020010406 kfree(config->save_connector_encoders);
10407 kfree(config->save_encoder_crtcs);
Ville Syrjälä76688512014-01-10 11:28:06 +020010408 kfree(config->save_crtc_enabled);
Daniel Vetterd9e55602012-07-04 22:16:09 +020010409 kfree(config);
10410}
10411
Daniel Vetter85f9eb72012-07-04 22:24:08 +020010412static int intel_set_config_save_state(struct drm_device *dev,
10413 struct intel_set_config *config)
10414{
Ville Syrjälä76688512014-01-10 11:28:06 +020010415 struct drm_crtc *crtc;
Daniel Vetter85f9eb72012-07-04 22:24:08 +020010416 struct drm_encoder *encoder;
10417 struct drm_connector *connector;
10418 int count;
10419
Ville Syrjälä76688512014-01-10 11:28:06 +020010420 config->save_crtc_enabled =
10421 kcalloc(dev->mode_config.num_crtc,
10422 sizeof(bool), GFP_KERNEL);
10423 if (!config->save_crtc_enabled)
10424 return -ENOMEM;
10425
Daniel Vetter1aa4b622012-07-05 16:20:48 +020010426 config->save_encoder_crtcs =
10427 kcalloc(dev->mode_config.num_encoder,
10428 sizeof(struct drm_crtc *), GFP_KERNEL);
10429 if (!config->save_encoder_crtcs)
Daniel Vetter85f9eb72012-07-04 22:24:08 +020010430 return -ENOMEM;
10431
Daniel Vetter1aa4b622012-07-05 16:20:48 +020010432 config->save_connector_encoders =
10433 kcalloc(dev->mode_config.num_connector,
10434 sizeof(struct drm_encoder *), GFP_KERNEL);
10435 if (!config->save_connector_encoders)
Daniel Vetter85f9eb72012-07-04 22:24:08 +020010436 return -ENOMEM;
10437
10438 /* Copy data. Note that driver private data is not affected.
10439 * Should anything bad happen only the expected state is
10440 * restored, not the drivers personal bookkeeping.
10441 */
10442 count = 0;
Damien Lespiau70e1e0e2014-05-13 23:32:24 +010010443 for_each_crtc(dev, crtc) {
Ville Syrjälä76688512014-01-10 11:28:06 +020010444 config->save_crtc_enabled[count++] = crtc->enabled;
10445 }
10446
10447 count = 0;
Daniel Vetter85f9eb72012-07-04 22:24:08 +020010448 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
Daniel Vetter1aa4b622012-07-05 16:20:48 +020010449 config->save_encoder_crtcs[count++] = encoder->crtc;
Daniel Vetter85f9eb72012-07-04 22:24:08 +020010450 }
10451
10452 count = 0;
10453 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
Daniel Vetter1aa4b622012-07-05 16:20:48 +020010454 config->save_connector_encoders[count++] = connector->encoder;
Daniel Vetter85f9eb72012-07-04 22:24:08 +020010455 }
10456
10457 return 0;
10458}
10459
10460static void intel_set_config_restore_state(struct drm_device *dev,
10461 struct intel_set_config *config)
10462{
Ville Syrjälä76688512014-01-10 11:28:06 +020010463 struct intel_crtc *crtc;
Daniel Vetter9a935852012-07-05 22:34:27 +020010464 struct intel_encoder *encoder;
10465 struct intel_connector *connector;
Daniel Vetter85f9eb72012-07-04 22:24:08 +020010466 int count;
10467
10468 count = 0;
Damien Lespiaud3fcc802014-05-13 23:32:22 +010010469 for_each_intel_crtc(dev, crtc) {
Ville Syrjälä76688512014-01-10 11:28:06 +020010470 crtc->new_enabled = config->save_crtc_enabled[count++];
Ville Syrjälä7bd0a8e2014-01-14 14:31:38 +020010471
10472 if (crtc->new_enabled)
10473 crtc->new_config = &crtc->config;
10474 else
10475 crtc->new_config = NULL;
Ville Syrjälä76688512014-01-10 11:28:06 +020010476 }
10477
10478 count = 0;
Daniel Vetter9a935852012-07-05 22:34:27 +020010479 list_for_each_entry(encoder, &dev->mode_config.encoder_list, base.head) {
10480 encoder->new_crtc =
10481 to_intel_crtc(config->save_encoder_crtcs[count++]);
Daniel Vetter85f9eb72012-07-04 22:24:08 +020010482 }
10483
10484 count = 0;
Daniel Vetter9a935852012-07-05 22:34:27 +020010485 list_for_each_entry(connector, &dev->mode_config.connector_list, base.head) {
10486 connector->new_encoder =
10487 to_intel_encoder(config->save_connector_encoders[count++]);
Daniel Vetter85f9eb72012-07-04 22:24:08 +020010488 }
10489}
10490
Imre Deake3de42b2013-05-03 19:44:07 +020010491static bool
Chris Wilson2e57f472013-07-17 12:14:40 +010010492is_crtc_connector_off(struct drm_mode_set *set)
Imre Deake3de42b2013-05-03 19:44:07 +020010493{
10494 int i;
10495
Chris Wilson2e57f472013-07-17 12:14:40 +010010496 if (set->num_connectors == 0)
10497 return false;
10498
10499 if (WARN_ON(set->connectors == NULL))
10500 return false;
10501
10502 for (i = 0; i < set->num_connectors; i++)
10503 if (set->connectors[i]->encoder &&
10504 set->connectors[i]->encoder->crtc == set->crtc &&
10505 set->connectors[i]->dpms != DRM_MODE_DPMS_ON)
Imre Deake3de42b2013-05-03 19:44:07 +020010506 return true;
10507
10508 return false;
10509}
10510
Daniel Vetter5e2b5842012-07-04 22:41:29 +020010511static void
10512intel_set_config_compute_mode_changes(struct drm_mode_set *set,
10513 struct intel_set_config *config)
10514{
10515
10516 /* We should be able to check here if the fb has the same properties
10517 * and then just flip_or_move it */
Chris Wilson2e57f472013-07-17 12:14:40 +010010518 if (is_crtc_connector_off(set)) {
10519 config->mode_changed = true;
Matt Roperf4510a22014-04-01 15:22:40 -070010520 } else if (set->crtc->primary->fb != set->fb) {
Daniel Vetter5e2b5842012-07-04 22:41:29 +020010521 /* If we have no fb then treat it as a full mode set */
Matt Roperf4510a22014-04-01 15:22:40 -070010522 if (set->crtc->primary->fb == NULL) {
Jesse Barnes319d9822013-06-26 01:38:19 +030010523 struct intel_crtc *intel_crtc =
10524 to_intel_crtc(set->crtc);
10525
Jani Nikulad330a952014-01-21 11:24:25 +020010526 if (intel_crtc->active && i915.fastboot) {
Jesse Barnes319d9822013-06-26 01:38:19 +030010527 DRM_DEBUG_KMS("crtc has no fb, will flip\n");
10528 config->fb_changed = true;
10529 } else {
10530 DRM_DEBUG_KMS("inactive crtc, full mode set\n");
10531 config->mode_changed = true;
10532 }
Daniel Vetter5e2b5842012-07-04 22:41:29 +020010533 } else if (set->fb == NULL) {
10534 config->mode_changed = true;
Daniel Vetter72f49012013-03-28 16:01:35 +010010535 } else if (set->fb->pixel_format !=
Matt Roperf4510a22014-04-01 15:22:40 -070010536 set->crtc->primary->fb->pixel_format) {
Daniel Vetter5e2b5842012-07-04 22:41:29 +020010537 config->mode_changed = true;
Imre Deake3de42b2013-05-03 19:44:07 +020010538 } else {
Daniel Vetter5e2b5842012-07-04 22:41:29 +020010539 config->fb_changed = true;
Imre Deake3de42b2013-05-03 19:44:07 +020010540 }
Daniel Vetter5e2b5842012-07-04 22:41:29 +020010541 }
10542
Daniel Vetter835c5872012-07-10 18:11:08 +020010543 if (set->fb && (set->x != set->crtc->x || set->y != set->crtc->y))
Daniel Vetter5e2b5842012-07-04 22:41:29 +020010544 config->fb_changed = true;
10545
10546 if (set->mode && !drm_mode_equal(set->mode, &set->crtc->mode)) {
10547 DRM_DEBUG_KMS("modes are different, full mode set\n");
10548 drm_mode_debug_printmodeline(&set->crtc->mode);
10549 drm_mode_debug_printmodeline(set->mode);
10550 config->mode_changed = true;
10551 }
Chris Wilsona1d95702013-08-13 18:48:47 +010010552
10553 DRM_DEBUG_KMS("computed changes for [CRTC:%d], mode_changed=%d, fb_changed=%d\n",
10554 set->crtc->base.id, config->mode_changed, config->fb_changed);
Daniel Vetter5e2b5842012-07-04 22:41:29 +020010555}
10556
Daniel Vetter2e431052012-07-04 22:42:15 +020010557static int
Daniel Vetter9a935852012-07-05 22:34:27 +020010558intel_modeset_stage_output_state(struct drm_device *dev,
10559 struct drm_mode_set *set,
10560 struct intel_set_config *config)
Daniel Vetter50f56112012-07-02 09:35:43 +020010561{
Daniel Vetter9a935852012-07-05 22:34:27 +020010562 struct intel_connector *connector;
10563 struct intel_encoder *encoder;
Ville Syrjälä76688512014-01-10 11:28:06 +020010564 struct intel_crtc *crtc;
Paulo Zanonif3f08572013-08-12 14:56:53 -030010565 int ro;
Daniel Vetter50f56112012-07-02 09:35:43 +020010566
Damien Lespiau9abdda72013-02-13 13:29:23 +000010567 /* The upper layers ensure that we either disable a crtc or have a list
Daniel Vetter9a935852012-07-05 22:34:27 +020010568 * of connectors. For paranoia, double-check this. */
10569 WARN_ON(!set->fb && (set->num_connectors != 0));
10570 WARN_ON(set->fb && (set->num_connectors == 0));
10571
Daniel Vetter9a935852012-07-05 22:34:27 +020010572 list_for_each_entry(connector, &dev->mode_config.connector_list,
10573 base.head) {
10574 /* Otherwise traverse passed in connector list and get encoders
10575 * for them. */
Daniel Vetter50f56112012-07-02 09:35:43 +020010576 for (ro = 0; ro < set->num_connectors; ro++) {
Daniel Vetter9a935852012-07-05 22:34:27 +020010577 if (set->connectors[ro] == &connector->base) {
10578 connector->new_encoder = connector->encoder;
Daniel Vetter50f56112012-07-02 09:35:43 +020010579 break;
10580 }
10581 }
10582
Daniel Vetter9a935852012-07-05 22:34:27 +020010583 /* If we disable the crtc, disable all its connectors. Also, if
10584 * the connector is on the changing crtc but not on the new
10585 * connector list, disable it. */
10586 if ((!set->fb || ro == set->num_connectors) &&
10587 connector->base.encoder &&
10588 connector->base.encoder->crtc == set->crtc) {
10589 connector->new_encoder = NULL;
10590
10591 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] to [NOCRTC]\n",
10592 connector->base.base.id,
10593 drm_get_connector_name(&connector->base));
10594 }
10595
10596
10597 if (&connector->new_encoder->base != connector->base.encoder) {
Daniel Vetter50f56112012-07-02 09:35:43 +020010598 DRM_DEBUG_KMS("encoder changed, full mode switch\n");
Daniel Vetter5e2b5842012-07-04 22:41:29 +020010599 config->mode_changed = true;
Daniel Vetter50f56112012-07-02 09:35:43 +020010600 }
Daniel Vetter9a935852012-07-05 22:34:27 +020010601 }
10602 /* connector->new_encoder is now updated for all connectors. */
10603
10604 /* Update crtc of enabled connectors. */
Daniel Vetter9a935852012-07-05 22:34:27 +020010605 list_for_each_entry(connector, &dev->mode_config.connector_list,
10606 base.head) {
Ville Syrjälä76688512014-01-10 11:28:06 +020010607 struct drm_crtc *new_crtc;
10608
Daniel Vetter9a935852012-07-05 22:34:27 +020010609 if (!connector->new_encoder)
Daniel Vetter50f56112012-07-02 09:35:43 +020010610 continue;
10611
Daniel Vetter9a935852012-07-05 22:34:27 +020010612 new_crtc = connector->new_encoder->base.crtc;
Daniel Vetter50f56112012-07-02 09:35:43 +020010613
10614 for (ro = 0; ro < set->num_connectors; ro++) {
Daniel Vetter9a935852012-07-05 22:34:27 +020010615 if (set->connectors[ro] == &connector->base)
Daniel Vetter50f56112012-07-02 09:35:43 +020010616 new_crtc = set->crtc;
10617 }
10618
10619 /* Make sure the new CRTC will work with the encoder */
Thierry Reding14509912014-01-13 12:00:22 +010010620 if (!drm_encoder_crtc_ok(&connector->new_encoder->base,
10621 new_crtc)) {
Daniel Vetter5e2b5842012-07-04 22:41:29 +020010622 return -EINVAL;
Daniel Vetter50f56112012-07-02 09:35:43 +020010623 }
Daniel Vetter9a935852012-07-05 22:34:27 +020010624 connector->encoder->new_crtc = to_intel_crtc(new_crtc);
10625
10626 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] to [CRTC:%d]\n",
10627 connector->base.base.id,
10628 drm_get_connector_name(&connector->base),
10629 new_crtc->base.id);
10630 }
10631
10632 /* Check for any encoders that needs to be disabled. */
10633 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
10634 base.head) {
Paulo Zanoni5a65f352014-01-07 14:55:53 -020010635 int num_connectors = 0;
Daniel Vetter9a935852012-07-05 22:34:27 +020010636 list_for_each_entry(connector,
10637 &dev->mode_config.connector_list,
10638 base.head) {
10639 if (connector->new_encoder == encoder) {
10640 WARN_ON(!connector->new_encoder->new_crtc);
Paulo Zanoni5a65f352014-01-07 14:55:53 -020010641 num_connectors++;
Daniel Vetter9a935852012-07-05 22:34:27 +020010642 }
10643 }
Paulo Zanoni5a65f352014-01-07 14:55:53 -020010644
10645 if (num_connectors == 0)
10646 encoder->new_crtc = NULL;
10647 else if (num_connectors > 1)
10648 return -EINVAL;
10649
Daniel Vetter9a935852012-07-05 22:34:27 +020010650 /* Only now check for crtc changes so we don't miss encoders
10651 * that will be disabled. */
10652 if (&encoder->new_crtc->base != encoder->base.crtc) {
Daniel Vetter50f56112012-07-02 09:35:43 +020010653 DRM_DEBUG_KMS("crtc changed, full mode switch\n");
Daniel Vetter5e2b5842012-07-04 22:41:29 +020010654 config->mode_changed = true;
Daniel Vetter50f56112012-07-02 09:35:43 +020010655 }
10656 }
Daniel Vetter9a935852012-07-05 22:34:27 +020010657 /* Now we've also updated encoder->new_crtc for all encoders. */
Daniel Vetter50f56112012-07-02 09:35:43 +020010658
Damien Lespiaud3fcc802014-05-13 23:32:22 +010010659 for_each_intel_crtc(dev, crtc) {
Ville Syrjälä76688512014-01-10 11:28:06 +020010660 crtc->new_enabled = false;
10661
10662 list_for_each_entry(encoder,
10663 &dev->mode_config.encoder_list,
10664 base.head) {
10665 if (encoder->new_crtc == crtc) {
10666 crtc->new_enabled = true;
10667 break;
10668 }
10669 }
10670
10671 if (crtc->new_enabled != crtc->base.enabled) {
10672 DRM_DEBUG_KMS("crtc %sabled, full mode switch\n",
10673 crtc->new_enabled ? "en" : "dis");
10674 config->mode_changed = true;
10675 }
Ville Syrjälä7bd0a8e2014-01-14 14:31:38 +020010676
10677 if (crtc->new_enabled)
10678 crtc->new_config = &crtc->config;
10679 else
10680 crtc->new_config = NULL;
Ville Syrjälä76688512014-01-10 11:28:06 +020010681 }
10682
Daniel Vetter2e431052012-07-04 22:42:15 +020010683 return 0;
10684}
10685
Ville Syrjälä7d00a1f2014-01-10 11:28:09 +020010686static void disable_crtc_nofb(struct intel_crtc *crtc)
10687{
10688 struct drm_device *dev = crtc->base.dev;
10689 struct intel_encoder *encoder;
10690 struct intel_connector *connector;
10691
10692 DRM_DEBUG_KMS("Trying to restore without FB -> disabling pipe %c\n",
10693 pipe_name(crtc->pipe));
10694
10695 list_for_each_entry(connector, &dev->mode_config.connector_list, base.head) {
10696 if (connector->new_encoder &&
10697 connector->new_encoder->new_crtc == crtc)
10698 connector->new_encoder = NULL;
10699 }
10700
10701 list_for_each_entry(encoder, &dev->mode_config.encoder_list, base.head) {
10702 if (encoder->new_crtc == crtc)
10703 encoder->new_crtc = NULL;
10704 }
10705
10706 crtc->new_enabled = false;
Ville Syrjälä7bd0a8e2014-01-14 14:31:38 +020010707 crtc->new_config = NULL;
Ville Syrjälä7d00a1f2014-01-10 11:28:09 +020010708}
10709
Daniel Vetter2e431052012-07-04 22:42:15 +020010710static int intel_crtc_set_config(struct drm_mode_set *set)
10711{
10712 struct drm_device *dev;
Daniel Vetter2e431052012-07-04 22:42:15 +020010713 struct drm_mode_set save_set;
10714 struct intel_set_config *config;
10715 int ret;
Daniel Vetter2e431052012-07-04 22:42:15 +020010716
Daniel Vetter8d3e3752012-07-05 16:09:09 +020010717 BUG_ON(!set);
10718 BUG_ON(!set->crtc);
10719 BUG_ON(!set->crtc->helper_private);
Daniel Vetter2e431052012-07-04 22:42:15 +020010720
Daniel Vetter7e53f3a2013-01-21 10:52:17 +010010721 /* Enforce sane interface api - has been abused by the fb helper. */
10722 BUG_ON(!set->mode && set->fb);
10723 BUG_ON(set->fb && set->num_connectors == 0);
Daniel Vetter431e50f2012-07-10 17:53:42 +020010724
Daniel Vetter2e431052012-07-04 22:42:15 +020010725 if (set->fb) {
10726 DRM_DEBUG_KMS("[CRTC:%d] [FB:%d] #connectors=%d (x y) (%i %i)\n",
10727 set->crtc->base.id, set->fb->base.id,
10728 (int)set->num_connectors, set->x, set->y);
10729 } else {
10730 DRM_DEBUG_KMS("[CRTC:%d] [NOFB]\n", set->crtc->base.id);
Daniel Vetter2e431052012-07-04 22:42:15 +020010731 }
10732
10733 dev = set->crtc->dev;
10734
10735 ret = -ENOMEM;
10736 config = kzalloc(sizeof(*config), GFP_KERNEL);
10737 if (!config)
10738 goto out_config;
10739
10740 ret = intel_set_config_save_state(dev, config);
10741 if (ret)
10742 goto out_config;
10743
10744 save_set.crtc = set->crtc;
10745 save_set.mode = &set->crtc->mode;
10746 save_set.x = set->crtc->x;
10747 save_set.y = set->crtc->y;
Matt Roperf4510a22014-04-01 15:22:40 -070010748 save_set.fb = set->crtc->primary->fb;
Daniel Vetter2e431052012-07-04 22:42:15 +020010749
10750 /* Compute whether we need a full modeset, only an fb base update or no
10751 * change at all. In the future we might also check whether only the
10752 * mode changed, e.g. for LVDS where we only change the panel fitter in
10753 * such cases. */
10754 intel_set_config_compute_mode_changes(set, config);
10755
Daniel Vetter9a935852012-07-05 22:34:27 +020010756 ret = intel_modeset_stage_output_state(dev, set, config);
Daniel Vetter2e431052012-07-04 22:42:15 +020010757 if (ret)
10758 goto fail;
10759
Daniel Vetter5e2b5842012-07-04 22:41:29 +020010760 if (config->mode_changed) {
Chris Wilsonc0c36b942012-12-19 16:08:43 +000010761 ret = intel_set_mode(set->crtc, set->mode,
10762 set->x, set->y, set->fb);
Daniel Vetter5e2b5842012-07-04 22:41:29 +020010763 } else if (config->fb_changed) {
Ville Syrjälä4878cae2013-02-18 19:08:48 +020010764 intel_crtc_wait_for_pending_flips(set->crtc);
10765
Daniel Vetter4f660f42012-07-02 09:47:37 +020010766 ret = intel_pipe_set_base(set->crtc,
Daniel Vetter94352cf2012-07-05 22:51:56 +020010767 set->x, set->y, set->fb);
Jesse Barnes7ca51a32014-01-07 13:50:49 -080010768 /*
10769 * In the fastboot case this may be our only check of the
10770 * state after boot. It would be better to only do it on
10771 * the first update, but we don't have a nice way of doing that
10772 * (and really, set_config isn't used much for high freq page
10773 * flipping, so increasing its cost here shouldn't be a big
10774 * deal).
10775 */
Jani Nikulad330a952014-01-21 11:24:25 +020010776 if (i915.fastboot && ret == 0)
Jesse Barnes7ca51a32014-01-07 13:50:49 -080010777 intel_modeset_check_state(set->crtc->dev);
Daniel Vetter50f56112012-07-02 09:35:43 +020010778 }
10779
Chris Wilson2d05eae2013-05-03 17:36:25 +010010780 if (ret) {
Daniel Vetterbf67dfe2013-06-25 11:06:52 +020010781 DRM_DEBUG_KMS("failed to set mode on [CRTC:%d], err = %d\n",
10782 set->crtc->base.id, ret);
Daniel Vetter50f56112012-07-02 09:35:43 +020010783fail:
Chris Wilson2d05eae2013-05-03 17:36:25 +010010784 intel_set_config_restore_state(dev, config);
Daniel Vetter50f56112012-07-02 09:35:43 +020010785
Ville Syrjälä7d00a1f2014-01-10 11:28:09 +020010786 /*
10787 * HACK: if the pipe was on, but we didn't have a framebuffer,
10788 * force the pipe off to avoid oopsing in the modeset code
10789 * due to fb==NULL. This should only happen during boot since
10790 * we don't yet reconstruct the FB from the hardware state.
10791 */
10792 if (to_intel_crtc(save_set.crtc)->new_enabled && !save_set.fb)
10793 disable_crtc_nofb(to_intel_crtc(save_set.crtc));
10794
Chris Wilson2d05eae2013-05-03 17:36:25 +010010795 /* Try to restore the config */
10796 if (config->mode_changed &&
10797 intel_set_mode(save_set.crtc, save_set.mode,
10798 save_set.x, save_set.y, save_set.fb))
10799 DRM_ERROR("failed to restore config after modeset failure\n");
10800 }
Daniel Vetter50f56112012-07-02 09:35:43 +020010801
Daniel Vetterd9e55602012-07-04 22:16:09 +020010802out_config:
10803 intel_set_config_free(config);
Daniel Vetter50f56112012-07-02 09:35:43 +020010804 return ret;
10805}
10806
Chris Wilsonf6e5b162011-04-12 18:06:51 +010010807static const struct drm_crtc_funcs intel_crtc_funcs = {
Chris Wilsonf6e5b162011-04-12 18:06:51 +010010808 .cursor_set = intel_crtc_cursor_set,
10809 .cursor_move = intel_crtc_cursor_move,
10810 .gamma_set = intel_crtc_gamma_set,
Daniel Vetter50f56112012-07-02 09:35:43 +020010811 .set_config = intel_crtc_set_config,
Chris Wilsonf6e5b162011-04-12 18:06:51 +010010812 .destroy = intel_crtc_destroy,
10813 .page_flip = intel_crtc_page_flip,
10814};
10815
Paulo Zanoni79f689a2012-10-05 12:05:52 -030010816static void intel_cpu_pll_init(struct drm_device *dev)
10817{
Paulo Zanoniaffa9352012-11-23 15:30:39 -020010818 if (HAS_DDI(dev))
Paulo Zanoni79f689a2012-10-05 12:05:52 -030010819 intel_ddi_pll_init(dev);
10820}
10821
Daniel Vetter53589012013-06-05 13:34:16 +020010822static bool ibx_pch_dpll_get_hw_state(struct drm_i915_private *dev_priv,
10823 struct intel_shared_dpll *pll,
10824 struct intel_dpll_hw_state *hw_state)
Jesse Barnesee7b9f92012-04-20 17:11:53 +010010825{
Daniel Vetter53589012013-06-05 13:34:16 +020010826 uint32_t val;
10827
10828 val = I915_READ(PCH_DPLL(pll->id));
Daniel Vetter66e985c2013-06-05 13:34:20 +020010829 hw_state->dpll = val;
10830 hw_state->fp0 = I915_READ(PCH_FP0(pll->id));
10831 hw_state->fp1 = I915_READ(PCH_FP1(pll->id));
Daniel Vetter53589012013-06-05 13:34:16 +020010832
10833 return val & DPLL_VCO_ENABLE;
10834}
10835
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020010836static void ibx_pch_dpll_mode_set(struct drm_i915_private *dev_priv,
10837 struct intel_shared_dpll *pll)
10838{
10839 I915_WRITE(PCH_FP0(pll->id), pll->hw_state.fp0);
10840 I915_WRITE(PCH_FP1(pll->id), pll->hw_state.fp1);
10841}
10842
Daniel Vettere7b903d2013-06-05 13:34:14 +020010843static void ibx_pch_dpll_enable(struct drm_i915_private *dev_priv,
10844 struct intel_shared_dpll *pll)
10845{
Daniel Vettere7b903d2013-06-05 13:34:14 +020010846 /* PCH refclock must be enabled first */
Paulo Zanoni89eff4b2014-01-08 11:12:28 -020010847 ibx_assert_pch_refclk_enabled(dev_priv);
Daniel Vettere7b903d2013-06-05 13:34:14 +020010848
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020010849 I915_WRITE(PCH_DPLL(pll->id), pll->hw_state.dpll);
10850
10851 /* Wait for the clocks to stabilize. */
10852 POSTING_READ(PCH_DPLL(pll->id));
10853 udelay(150);
10854
10855 /* The pixel multiplier can only be updated once the
10856 * DPLL is enabled and the clocks are stable.
10857 *
10858 * So write it again.
10859 */
10860 I915_WRITE(PCH_DPLL(pll->id), pll->hw_state.dpll);
10861 POSTING_READ(PCH_DPLL(pll->id));
Daniel Vettere7b903d2013-06-05 13:34:14 +020010862 udelay(200);
10863}
10864
10865static void ibx_pch_dpll_disable(struct drm_i915_private *dev_priv,
10866 struct intel_shared_dpll *pll)
10867{
10868 struct drm_device *dev = dev_priv->dev;
10869 struct intel_crtc *crtc;
Daniel Vettere7b903d2013-06-05 13:34:14 +020010870
10871 /* Make sure no transcoder isn't still depending on us. */
Damien Lespiaud3fcc802014-05-13 23:32:22 +010010872 for_each_intel_crtc(dev, crtc) {
Daniel Vettere7b903d2013-06-05 13:34:14 +020010873 if (intel_crtc_to_shared_dpll(crtc) == pll)
10874 assert_pch_transcoder_disabled(dev_priv, crtc->pipe);
10875 }
10876
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020010877 I915_WRITE(PCH_DPLL(pll->id), 0);
10878 POSTING_READ(PCH_DPLL(pll->id));
Daniel Vettere7b903d2013-06-05 13:34:14 +020010879 udelay(200);
10880}
10881
Daniel Vetter46edb022013-06-05 13:34:12 +020010882static char *ibx_pch_dpll_names[] = {
10883 "PCH DPLL A",
10884 "PCH DPLL B",
10885};
10886
Daniel Vetter7c74ade2013-06-05 13:34:11 +020010887static void ibx_pch_dpll_init(struct drm_device *dev)
Jesse Barnesee7b9f92012-04-20 17:11:53 +010010888{
Daniel Vettere7b903d2013-06-05 13:34:14 +020010889 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesee7b9f92012-04-20 17:11:53 +010010890 int i;
10891
Daniel Vetter7c74ade2013-06-05 13:34:11 +020010892 dev_priv->num_shared_dpll = 2;
Jesse Barnesee7b9f92012-04-20 17:11:53 +010010893
Daniel Vettere72f9fb2013-06-05 13:34:06 +020010894 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
Daniel Vetter46edb022013-06-05 13:34:12 +020010895 dev_priv->shared_dplls[i].id = i;
10896 dev_priv->shared_dplls[i].name = ibx_pch_dpll_names[i];
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020010897 dev_priv->shared_dplls[i].mode_set = ibx_pch_dpll_mode_set;
Daniel Vettere7b903d2013-06-05 13:34:14 +020010898 dev_priv->shared_dplls[i].enable = ibx_pch_dpll_enable;
10899 dev_priv->shared_dplls[i].disable = ibx_pch_dpll_disable;
Daniel Vetter53589012013-06-05 13:34:16 +020010900 dev_priv->shared_dplls[i].get_hw_state =
10901 ibx_pch_dpll_get_hw_state;
Jesse Barnesee7b9f92012-04-20 17:11:53 +010010902 }
10903}
10904
Daniel Vetter7c74ade2013-06-05 13:34:11 +020010905static void intel_shared_dpll_init(struct drm_device *dev)
10906{
Daniel Vettere7b903d2013-06-05 13:34:14 +020010907 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter7c74ade2013-06-05 13:34:11 +020010908
10909 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev))
10910 ibx_pch_dpll_init(dev);
10911 else
10912 dev_priv->num_shared_dpll = 0;
10913
10914 BUG_ON(dev_priv->num_shared_dpll > I915_NUM_PLLS);
Daniel Vetter7c74ade2013-06-05 13:34:11 +020010915}
10916
Hannes Ederb358d0a2008-12-18 21:18:47 +010010917static void intel_crtc_init(struct drm_device *dev, int pipe)
Jesse Barnes79e53942008-11-07 14:24:08 -080010918{
Jani Nikulafbee40d2014-03-31 14:27:18 +030010919 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -080010920 struct intel_crtc *intel_crtc;
10921 int i;
10922
Daniel Vetter955382f2013-09-19 14:05:45 +020010923 intel_crtc = kzalloc(sizeof(*intel_crtc), GFP_KERNEL);
Jesse Barnes79e53942008-11-07 14:24:08 -080010924 if (intel_crtc == NULL)
10925 return;
10926
10927 drm_crtc_init(dev, &intel_crtc->base, &intel_crtc_funcs);
10928
10929 drm_mode_crtc_set_gamma_size(&intel_crtc->base, 256);
Jesse Barnes79e53942008-11-07 14:24:08 -080010930 for (i = 0; i < 256; i++) {
10931 intel_crtc->lut_r[i] = i;
10932 intel_crtc->lut_g[i] = i;
10933 intel_crtc->lut_b[i] = i;
10934 }
10935
Ville Syrjälä1f1c2e22013-11-28 17:30:01 +020010936 /*
10937 * On gen2/3 only plane A can do fbc, but the panel fitter and lvds port
10938 * is hooked to plane B. Hence we want plane A feeding pipe B.
10939 */
Jesse Barnes80824002009-09-10 15:28:06 -070010940 intel_crtc->pipe = pipe;
10941 intel_crtc->plane = pipe;
Daniel Vetter3a77c4c2014-01-10 08:50:12 +010010942 if (HAS_FBC(dev) && INTEL_INFO(dev)->gen < 4) {
Zhao Yakui28c97732009-10-09 11:39:41 +080010943 DRM_DEBUG_KMS("swapping pipes & planes for FBC\n");
Chris Wilsone2e767a2010-09-13 16:53:12 +010010944 intel_crtc->plane = !pipe;
Jesse Barnes80824002009-09-10 15:28:06 -070010945 }
10946
Ville Syrjälä8d7849d2014-04-29 13:35:46 +030010947 init_waitqueue_head(&intel_crtc->vbl_wait);
10948
Jesse Barnes22fd0fa2009-12-02 13:42:53 -080010949 BUG_ON(pipe >= ARRAY_SIZE(dev_priv->plane_to_crtc_mapping) ||
10950 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] != NULL);
10951 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] = &intel_crtc->base;
10952 dev_priv->pipe_to_crtc_mapping[intel_crtc->pipe] = &intel_crtc->base;
10953
Jesse Barnes79e53942008-11-07 14:24:08 -080010954 drm_crtc_helper_add(&intel_crtc->base, &intel_helper_funcs);
Jesse Barnes79e53942008-11-07 14:24:08 -080010955}
10956
Jesse Barnes752aa882013-10-31 18:55:49 +020010957enum pipe intel_get_pipe_from_connector(struct intel_connector *connector)
10958{
10959 struct drm_encoder *encoder = connector->base.encoder;
10960
10961 WARN_ON(!mutex_is_locked(&connector->base.dev->mode_config.mutex));
10962
10963 if (!encoder)
10964 return INVALID_PIPE;
10965
10966 return to_intel_crtc(encoder->crtc)->pipe;
10967}
10968
Carl Worth08d7b3d2009-04-29 14:43:54 -070010969int intel_get_pipe_from_crtc_id(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +000010970 struct drm_file *file)
Carl Worth08d7b3d2009-04-29 14:43:54 -070010971{
Carl Worth08d7b3d2009-04-29 14:43:54 -070010972 struct drm_i915_get_pipe_from_crtc_id *pipe_from_crtc_id = data;
Daniel Vetterc05422d2009-08-11 16:05:30 +020010973 struct drm_mode_object *drmmode_obj;
10974 struct intel_crtc *crtc;
Carl Worth08d7b3d2009-04-29 14:43:54 -070010975
Daniel Vetter1cff8f62012-04-24 09:55:08 +020010976 if (!drm_core_check_feature(dev, DRIVER_MODESET))
10977 return -ENODEV;
Carl Worth08d7b3d2009-04-29 14:43:54 -070010978
Daniel Vetterc05422d2009-08-11 16:05:30 +020010979 drmmode_obj = drm_mode_object_find(dev, pipe_from_crtc_id->crtc_id,
10980 DRM_MODE_OBJECT_CRTC);
Carl Worth08d7b3d2009-04-29 14:43:54 -070010981
Daniel Vetterc05422d2009-08-11 16:05:30 +020010982 if (!drmmode_obj) {
Carl Worth08d7b3d2009-04-29 14:43:54 -070010983 DRM_ERROR("no such CRTC id\n");
Ville Syrjälä3f2c2052013-10-17 13:35:03 +030010984 return -ENOENT;
Carl Worth08d7b3d2009-04-29 14:43:54 -070010985 }
10986
Daniel Vetterc05422d2009-08-11 16:05:30 +020010987 crtc = to_intel_crtc(obj_to_crtc(drmmode_obj));
10988 pipe_from_crtc_id->pipe = crtc->pipe;
Carl Worth08d7b3d2009-04-29 14:43:54 -070010989
Daniel Vetterc05422d2009-08-11 16:05:30 +020010990 return 0;
Carl Worth08d7b3d2009-04-29 14:43:54 -070010991}
10992
Daniel Vetter66a92782012-07-12 20:08:18 +020010993static int intel_encoder_clones(struct intel_encoder *encoder)
Jesse Barnes79e53942008-11-07 14:24:08 -080010994{
Daniel Vetter66a92782012-07-12 20:08:18 +020010995 struct drm_device *dev = encoder->base.dev;
10996 struct intel_encoder *source_encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -080010997 int index_mask = 0;
Jesse Barnes79e53942008-11-07 14:24:08 -080010998 int entry = 0;
10999
Daniel Vetter66a92782012-07-12 20:08:18 +020011000 list_for_each_entry(source_encoder,
11001 &dev->mode_config.encoder_list, base.head) {
Ville Syrjäläbc079e82014-03-03 16:15:28 +020011002 if (encoders_cloneable(encoder, source_encoder))
Daniel Vetter66a92782012-07-12 20:08:18 +020011003 index_mask |= (1 << entry);
11004
Jesse Barnes79e53942008-11-07 14:24:08 -080011005 entry++;
11006 }
Chris Wilson4ef69c72010-09-09 15:14:28 +010011007
Jesse Barnes79e53942008-11-07 14:24:08 -080011008 return index_mask;
11009}
11010
Chris Wilson4d302442010-12-14 19:21:29 +000011011static bool has_edp_a(struct drm_device *dev)
11012{
11013 struct drm_i915_private *dev_priv = dev->dev_private;
11014
11015 if (!IS_MOBILE(dev))
11016 return false;
11017
11018 if ((I915_READ(DP_A) & DP_DETECTED) == 0)
11019 return false;
11020
Damien Lespiaue3589902014-02-07 19:12:50 +000011021 if (IS_GEN5(dev) && (I915_READ(FUSE_STRAP) & ILK_eDP_A_DISABLE))
Chris Wilson4d302442010-12-14 19:21:29 +000011022 return false;
11023
11024 return true;
11025}
11026
Damien Lespiauba0fbca2014-01-08 14:18:23 +000011027const char *intel_output_name(int output)
11028{
11029 static const char *names[] = {
11030 [INTEL_OUTPUT_UNUSED] = "Unused",
11031 [INTEL_OUTPUT_ANALOG] = "Analog",
11032 [INTEL_OUTPUT_DVO] = "DVO",
11033 [INTEL_OUTPUT_SDVO] = "SDVO",
11034 [INTEL_OUTPUT_LVDS] = "LVDS",
11035 [INTEL_OUTPUT_TVOUT] = "TV",
11036 [INTEL_OUTPUT_HDMI] = "HDMI",
11037 [INTEL_OUTPUT_DISPLAYPORT] = "DisplayPort",
11038 [INTEL_OUTPUT_EDP] = "eDP",
11039 [INTEL_OUTPUT_DSI] = "DSI",
11040 [INTEL_OUTPUT_UNKNOWN] = "Unknown",
11041 };
11042
11043 if (output < 0 || output >= ARRAY_SIZE(names) || !names[output])
11044 return "Invalid";
11045
11046 return names[output];
11047}
11048
Jesse Barnes79e53942008-11-07 14:24:08 -080011049static void intel_setup_outputs(struct drm_device *dev)
11050{
Eric Anholt725e30a2009-01-22 13:01:02 -080011051 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson4ef69c72010-09-09 15:14:28 +010011052 struct intel_encoder *encoder;
Adam Jacksoncb0953d2010-07-16 14:46:29 -040011053 bool dpd_is_edp = false;
Jesse Barnes79e53942008-11-07 14:24:08 -080011054
Daniel Vetterc9093352013-06-06 22:22:47 +020011055 intel_lvds_init(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -080011056
Ville Syrjälä7895a812014-04-09 13:28:23 +030011057 if (!IS_ULT(dev) && !IS_CHERRYVIEW(dev))
Paulo Zanoni79935fc2012-11-20 13:27:40 -020011058 intel_crt_init(dev);
Adam Jacksoncb0953d2010-07-16 14:46:29 -040011059
Paulo Zanoniaffa9352012-11-23 15:30:39 -020011060 if (HAS_DDI(dev)) {
Eugeni Dodonov0e72a5b2012-05-09 15:37:27 -030011061 int found;
11062
11063 /* Haswell uses DDI functions to detect digital outputs */
11064 found = I915_READ(DDI_BUF_CTL_A) & DDI_INIT_DISPLAY_DETECTED;
11065 /* DDI A only supports eDP */
11066 if (found)
11067 intel_ddi_init(dev, PORT_A);
11068
11069 /* DDI B, C and D detection is indicated by the SFUSE_STRAP
11070 * register */
11071 found = I915_READ(SFUSE_STRAP);
11072
11073 if (found & SFUSE_STRAP_DDIB_DETECTED)
11074 intel_ddi_init(dev, PORT_B);
11075 if (found & SFUSE_STRAP_DDIC_DETECTED)
11076 intel_ddi_init(dev, PORT_C);
11077 if (found & SFUSE_STRAP_DDID_DETECTED)
11078 intel_ddi_init(dev, PORT_D);
11079 } else if (HAS_PCH_SPLIT(dev)) {
Adam Jacksoncb0953d2010-07-16 14:46:29 -040011080 int found;
Ville Syrjälä5d8a7752013-11-01 18:22:39 +020011081 dpd_is_edp = intel_dp_is_edp(dev, PORT_D);
Daniel Vetter270b3042012-10-27 15:52:05 +020011082
11083 if (has_edp_a(dev))
11084 intel_dp_init(dev, DP_A, PORT_A);
Adam Jacksoncb0953d2010-07-16 14:46:29 -040011085
Paulo Zanonidc0fa712013-02-19 16:21:46 -030011086 if (I915_READ(PCH_HDMIB) & SDVO_DETECTED) {
Zhao Yakui461ed3c2010-03-30 15:11:33 +080011087 /* PCH SDVOB multiplex with HDMIB */
Daniel Vettereef4eac2012-03-23 23:43:35 +010011088 found = intel_sdvo_init(dev, PCH_SDVOB, true);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +080011089 if (!found)
Paulo Zanonie2debe92013-02-18 19:00:27 -030011090 intel_hdmi_init(dev, PCH_HDMIB, PORT_B);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +080011091 if (!found && (I915_READ(PCH_DP_B) & DP_DETECTED))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030011092 intel_dp_init(dev, PCH_DP_B, PORT_B);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +080011093 }
11094
Paulo Zanonidc0fa712013-02-19 16:21:46 -030011095 if (I915_READ(PCH_HDMIC) & SDVO_DETECTED)
Paulo Zanonie2debe92013-02-18 19:00:27 -030011096 intel_hdmi_init(dev, PCH_HDMIC, PORT_C);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +080011097
Paulo Zanonidc0fa712013-02-19 16:21:46 -030011098 if (!dpd_is_edp && I915_READ(PCH_HDMID) & SDVO_DETECTED)
Paulo Zanonie2debe92013-02-18 19:00:27 -030011099 intel_hdmi_init(dev, PCH_HDMID, PORT_D);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +080011100
Zhenyu Wang5eb08b62009-07-24 01:00:31 +080011101 if (I915_READ(PCH_DP_C) & DP_DETECTED)
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030011102 intel_dp_init(dev, PCH_DP_C, PORT_C);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +080011103
Daniel Vetter270b3042012-10-27 15:52:05 +020011104 if (I915_READ(PCH_DP_D) & DP_DETECTED)
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030011105 intel_dp_init(dev, PCH_DP_D, PORT_D);
Jesse Barnes4a87d652012-06-15 11:55:16 -070011106 } else if (IS_VALLEYVIEW(dev)) {
Artem Bityutskiy585a94b2013-10-16 18:10:41 +030011107 if (I915_READ(VLV_DISPLAY_BASE + GEN4_HDMIB) & SDVO_DETECTED) {
11108 intel_hdmi_init(dev, VLV_DISPLAY_BASE + GEN4_HDMIB,
11109 PORT_B);
11110 if (I915_READ(VLV_DISPLAY_BASE + DP_B) & DP_DETECTED)
11111 intel_dp_init(dev, VLV_DISPLAY_BASE + DP_B, PORT_B);
11112 }
11113
Jesse Barnes6f6005a2013-08-09 09:34:35 -070011114 if (I915_READ(VLV_DISPLAY_BASE + GEN4_HDMIC) & SDVO_DETECTED) {
11115 intel_hdmi_init(dev, VLV_DISPLAY_BASE + GEN4_HDMIC,
11116 PORT_C);
11117 if (I915_READ(VLV_DISPLAY_BASE + DP_C) & DP_DETECTED)
Ville Syrjälä5d8a7752013-11-01 18:22:39 +020011118 intel_dp_init(dev, VLV_DISPLAY_BASE + DP_C, PORT_C);
Jesse Barnes6f6005a2013-08-09 09:34:35 -070011119 }
Gajanan Bhat19c03922012-09-27 19:13:07 +053011120
Ville Syrjälä9418c1f2014-04-09 13:28:56 +030011121 if (IS_CHERRYVIEW(dev)) {
11122 if (I915_READ(VLV_DISPLAY_BASE + CHV_HDMID) & SDVO_DETECTED) {
11123 intel_hdmi_init(dev, VLV_DISPLAY_BASE + CHV_HDMID,
11124 PORT_D);
11125 if (I915_READ(VLV_DISPLAY_BASE + DP_D) & DP_DETECTED)
11126 intel_dp_init(dev, VLV_DISPLAY_BASE + DP_D, PORT_D);
11127 }
11128 }
11129
Jani Nikula3cfca972013-08-27 15:12:26 +030011130 intel_dsi_init(dev);
Zhenyu Wang103a1962009-11-27 11:44:36 +080011131 } else if (SUPPORTS_DIGITAL_OUTPUTS(dev)) {
Ma Ling27185ae2009-08-24 13:50:23 +080011132 bool found = false;
Eric Anholt7d573822009-01-02 13:33:00 -080011133
Paulo Zanonie2debe92013-02-18 19:00:27 -030011134 if (I915_READ(GEN3_SDVOB) & SDVO_DETECTED) {
Jesse Barnesb01f2c32009-12-11 11:07:17 -080011135 DRM_DEBUG_KMS("probing SDVOB\n");
Paulo Zanonie2debe92013-02-18 19:00:27 -030011136 found = intel_sdvo_init(dev, GEN3_SDVOB, true);
Jesse Barnesb01f2c32009-12-11 11:07:17 -080011137 if (!found && SUPPORTS_INTEGRATED_HDMI(dev)) {
11138 DRM_DEBUG_KMS("probing HDMI on SDVOB\n");
Paulo Zanonie2debe92013-02-18 19:00:27 -030011139 intel_hdmi_init(dev, GEN4_HDMIB, PORT_B);
Jesse Barnesb01f2c32009-12-11 11:07:17 -080011140 }
Ma Ling27185ae2009-08-24 13:50:23 +080011141
Imre Deake7281ea2013-05-08 13:14:08 +030011142 if (!found && SUPPORTS_INTEGRATED_DP(dev))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030011143 intel_dp_init(dev, DP_B, PORT_B);
Eric Anholt725e30a2009-01-22 13:01:02 -080011144 }
Kristian Høgsberg13520b02009-03-13 15:42:14 -040011145
11146 /* Before G4X SDVOC doesn't have its own detect register */
Kristian Høgsberg13520b02009-03-13 15:42:14 -040011147
Paulo Zanonie2debe92013-02-18 19:00:27 -030011148 if (I915_READ(GEN3_SDVOB) & SDVO_DETECTED) {
Jesse Barnesb01f2c32009-12-11 11:07:17 -080011149 DRM_DEBUG_KMS("probing SDVOC\n");
Paulo Zanonie2debe92013-02-18 19:00:27 -030011150 found = intel_sdvo_init(dev, GEN3_SDVOC, false);
Jesse Barnesb01f2c32009-12-11 11:07:17 -080011151 }
Ma Ling27185ae2009-08-24 13:50:23 +080011152
Paulo Zanonie2debe92013-02-18 19:00:27 -030011153 if (!found && (I915_READ(GEN3_SDVOC) & SDVO_DETECTED)) {
Ma Ling27185ae2009-08-24 13:50:23 +080011154
Jesse Barnesb01f2c32009-12-11 11:07:17 -080011155 if (SUPPORTS_INTEGRATED_HDMI(dev)) {
11156 DRM_DEBUG_KMS("probing HDMI on SDVOC\n");
Paulo Zanonie2debe92013-02-18 19:00:27 -030011157 intel_hdmi_init(dev, GEN4_HDMIC, PORT_C);
Jesse Barnesb01f2c32009-12-11 11:07:17 -080011158 }
Imre Deake7281ea2013-05-08 13:14:08 +030011159 if (SUPPORTS_INTEGRATED_DP(dev))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030011160 intel_dp_init(dev, DP_C, PORT_C);
Eric Anholt725e30a2009-01-22 13:01:02 -080011161 }
Ma Ling27185ae2009-08-24 13:50:23 +080011162
Jesse Barnesb01f2c32009-12-11 11:07:17 -080011163 if (SUPPORTS_INTEGRATED_DP(dev) &&
Imre Deake7281ea2013-05-08 13:14:08 +030011164 (I915_READ(DP_D) & DP_DETECTED))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030011165 intel_dp_init(dev, DP_D, PORT_D);
Eric Anholtbad720f2009-10-22 16:11:14 -070011166 } else if (IS_GEN2(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -080011167 intel_dvo_init(dev);
11168
Zhenyu Wang103a1962009-11-27 11:44:36 +080011169 if (SUPPORTS_TV(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -080011170 intel_tv_init(dev);
11171
Chris Wilson4ef69c72010-09-09 15:14:28 +010011172 list_for_each_entry(encoder, &dev->mode_config.encoder_list, base.head) {
11173 encoder->base.possible_crtcs = encoder->crtc_mask;
11174 encoder->base.possible_clones =
Daniel Vetter66a92782012-07-12 20:08:18 +020011175 intel_encoder_clones(encoder);
Jesse Barnes79e53942008-11-07 14:24:08 -080011176 }
Chris Wilson47356eb2011-01-11 17:06:04 +000011177
Paulo Zanonidde86e22012-12-01 12:04:25 -020011178 intel_init_pch_refclk(dev);
Daniel Vetter270b3042012-10-27 15:52:05 +020011179
11180 drm_helper_move_panel_connectors_to_head(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -080011181}
11182
11183static void intel_user_framebuffer_destroy(struct drm_framebuffer *fb)
11184{
11185 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
Jesse Barnes79e53942008-11-07 14:24:08 -080011186
Daniel Vetteref2d6332014-02-10 18:00:38 +010011187 drm_framebuffer_cleanup(fb);
11188 WARN_ON(!intel_fb->obj->framebuffer_references--);
11189 drm_gem_object_unreference_unlocked(&intel_fb->obj->base);
Jesse Barnes79e53942008-11-07 14:24:08 -080011190 kfree(intel_fb);
11191}
11192
11193static int intel_user_framebuffer_create_handle(struct drm_framebuffer *fb,
Chris Wilson05394f32010-11-08 19:18:58 +000011194 struct drm_file *file,
Jesse Barnes79e53942008-11-07 14:24:08 -080011195 unsigned int *handle)
11196{
11197 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
Chris Wilson05394f32010-11-08 19:18:58 +000011198 struct drm_i915_gem_object *obj = intel_fb->obj;
Jesse Barnes79e53942008-11-07 14:24:08 -080011199
Chris Wilson05394f32010-11-08 19:18:58 +000011200 return drm_gem_handle_create(file, &obj->base, handle);
Jesse Barnes79e53942008-11-07 14:24:08 -080011201}
11202
11203static const struct drm_framebuffer_funcs intel_fb_funcs = {
11204 .destroy = intel_user_framebuffer_destroy,
11205 .create_handle = intel_user_framebuffer_create_handle,
11206};
11207
Daniel Vetterb5ea6422014-03-02 21:18:00 +010011208static int intel_framebuffer_init(struct drm_device *dev,
11209 struct intel_framebuffer *intel_fb,
11210 struct drm_mode_fb_cmd2 *mode_cmd,
11211 struct drm_i915_gem_object *obj)
Jesse Barnes79e53942008-11-07 14:24:08 -080011212{
Jesse Barnesa57ce0b2014-02-07 12:10:35 -080011213 int aligned_height;
Chris Wilsona35cdaa2013-06-25 17:26:45 +010011214 int pitch_limit;
Jesse Barnes79e53942008-11-07 14:24:08 -080011215 int ret;
11216
Daniel Vetterdd4916c2013-10-09 21:23:51 +020011217 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
11218
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000011219 if (obj->tiling_mode == I915_TILING_Y) {
11220 DRM_DEBUG("hardware does not support tiling Y\n");
Chris Wilson57cd6502010-08-08 12:34:44 +010011221 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000011222 }
Chris Wilson57cd6502010-08-08 12:34:44 +010011223
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000011224 if (mode_cmd->pitches[0] & 63) {
11225 DRM_DEBUG("pitch (%d) must be at least 64 byte aligned\n",
11226 mode_cmd->pitches[0]);
Chris Wilson57cd6502010-08-08 12:34:44 +010011227 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000011228 }
Chris Wilson57cd6502010-08-08 12:34:44 +010011229
Chris Wilsona35cdaa2013-06-25 17:26:45 +010011230 if (INTEL_INFO(dev)->gen >= 5 && !IS_VALLEYVIEW(dev)) {
11231 pitch_limit = 32*1024;
11232 } else if (INTEL_INFO(dev)->gen >= 4) {
11233 if (obj->tiling_mode)
11234 pitch_limit = 16*1024;
11235 else
11236 pitch_limit = 32*1024;
11237 } else if (INTEL_INFO(dev)->gen >= 3) {
11238 if (obj->tiling_mode)
11239 pitch_limit = 8*1024;
11240 else
11241 pitch_limit = 16*1024;
11242 } else
11243 /* XXX DSPC is limited to 4k tiled */
11244 pitch_limit = 8*1024;
11245
11246 if (mode_cmd->pitches[0] > pitch_limit) {
11247 DRM_DEBUG("%s pitch (%d) must be at less than %d\n",
11248 obj->tiling_mode ? "tiled" : "linear",
11249 mode_cmd->pitches[0], pitch_limit);
Ville Syrjälä5d7bd702012-10-31 17:50:18 +020011250 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000011251 }
Ville Syrjälä5d7bd702012-10-31 17:50:18 +020011252
11253 if (obj->tiling_mode != I915_TILING_NONE &&
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000011254 mode_cmd->pitches[0] != obj->stride) {
11255 DRM_DEBUG("pitch (%d) must match tiling stride (%d)\n",
11256 mode_cmd->pitches[0], obj->stride);
Ville Syrjälä5d7bd702012-10-31 17:50:18 +020011257 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000011258 }
Ville Syrjälä5d7bd702012-10-31 17:50:18 +020011259
Ville Syrjälä57779d02012-10-31 17:50:14 +020011260 /* Reject formats not supported by any plane early. */
Jesse Barnes308e5bc2011-11-14 14:51:28 -080011261 switch (mode_cmd->pixel_format) {
Ville Syrjälä57779d02012-10-31 17:50:14 +020011262 case DRM_FORMAT_C8:
Ville Syrjälä04b39242011-11-17 18:05:13 +020011263 case DRM_FORMAT_RGB565:
11264 case DRM_FORMAT_XRGB8888:
11265 case DRM_FORMAT_ARGB8888:
Ville Syrjälä57779d02012-10-31 17:50:14 +020011266 break;
11267 case DRM_FORMAT_XRGB1555:
11268 case DRM_FORMAT_ARGB1555:
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000011269 if (INTEL_INFO(dev)->gen > 3) {
Ville Syrjälä4ee62c72013-06-07 15:43:05 +000011270 DRM_DEBUG("unsupported pixel format: %s\n",
11271 drm_get_format_name(mode_cmd->pixel_format));
Ville Syrjälä57779d02012-10-31 17:50:14 +020011272 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000011273 }
Ville Syrjälä57779d02012-10-31 17:50:14 +020011274 break;
11275 case DRM_FORMAT_XBGR8888:
11276 case DRM_FORMAT_ABGR8888:
Ville Syrjälä04b39242011-11-17 18:05:13 +020011277 case DRM_FORMAT_XRGB2101010:
11278 case DRM_FORMAT_ARGB2101010:
Ville Syrjälä57779d02012-10-31 17:50:14 +020011279 case DRM_FORMAT_XBGR2101010:
11280 case DRM_FORMAT_ABGR2101010:
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000011281 if (INTEL_INFO(dev)->gen < 4) {
Ville Syrjälä4ee62c72013-06-07 15:43:05 +000011282 DRM_DEBUG("unsupported pixel format: %s\n",
11283 drm_get_format_name(mode_cmd->pixel_format));
Ville Syrjälä57779d02012-10-31 17:50:14 +020011284 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000011285 }
Jesse Barnesb5626742011-06-24 12:19:27 -070011286 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +020011287 case DRM_FORMAT_YUYV:
11288 case DRM_FORMAT_UYVY:
11289 case DRM_FORMAT_YVYU:
11290 case DRM_FORMAT_VYUY:
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000011291 if (INTEL_INFO(dev)->gen < 5) {
Ville Syrjälä4ee62c72013-06-07 15:43:05 +000011292 DRM_DEBUG("unsupported pixel format: %s\n",
11293 drm_get_format_name(mode_cmd->pixel_format));
Ville Syrjälä57779d02012-10-31 17:50:14 +020011294 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000011295 }
Chris Wilson57cd6502010-08-08 12:34:44 +010011296 break;
11297 default:
Ville Syrjälä4ee62c72013-06-07 15:43:05 +000011298 DRM_DEBUG("unsupported pixel format: %s\n",
11299 drm_get_format_name(mode_cmd->pixel_format));
Chris Wilson57cd6502010-08-08 12:34:44 +010011300 return -EINVAL;
11301 }
11302
Ville Syrjälä90f9a332012-10-31 17:50:19 +020011303 /* FIXME need to adjust LINOFF/TILEOFF accordingly. */
11304 if (mode_cmd->offsets[0] != 0)
11305 return -EINVAL;
11306
Jesse Barnesa57ce0b2014-02-07 12:10:35 -080011307 aligned_height = intel_align_height(dev, mode_cmd->height,
11308 obj->tiling_mode);
Daniel Vetter53155c02013-10-09 21:55:33 +020011309 /* FIXME drm helper for size checks (especially planar formats)? */
11310 if (obj->base.size < aligned_height * mode_cmd->pitches[0])
11311 return -EINVAL;
11312
Daniel Vetterc7d73f62012-12-13 23:38:38 +010011313 drm_helper_mode_fill_fb_struct(&intel_fb->base, mode_cmd);
11314 intel_fb->obj = obj;
Daniel Vetter80075d42013-10-09 21:23:52 +020011315 intel_fb->obj->framebuffer_references++;
Daniel Vetterc7d73f62012-12-13 23:38:38 +010011316
Jesse Barnes79e53942008-11-07 14:24:08 -080011317 ret = drm_framebuffer_init(dev, &intel_fb->base, &intel_fb_funcs);
11318 if (ret) {
11319 DRM_ERROR("framebuffer init failed %d\n", ret);
11320 return ret;
11321 }
11322
Jesse Barnes79e53942008-11-07 14:24:08 -080011323 return 0;
11324}
11325
Jesse Barnes79e53942008-11-07 14:24:08 -080011326static struct drm_framebuffer *
11327intel_user_framebuffer_create(struct drm_device *dev,
11328 struct drm_file *filp,
Jesse Barnes308e5bc2011-11-14 14:51:28 -080011329 struct drm_mode_fb_cmd2 *mode_cmd)
Jesse Barnes79e53942008-11-07 14:24:08 -080011330{
Chris Wilson05394f32010-11-08 19:18:58 +000011331 struct drm_i915_gem_object *obj;
Jesse Barnes79e53942008-11-07 14:24:08 -080011332
Jesse Barnes308e5bc2011-11-14 14:51:28 -080011333 obj = to_intel_bo(drm_gem_object_lookup(dev, filp,
11334 mode_cmd->handles[0]));
Chris Wilsonc8725222011-02-19 11:31:06 +000011335 if (&obj->base == NULL)
Chris Wilsoncce13ff2010-08-08 13:36:38 +010011336 return ERR_PTR(-ENOENT);
Jesse Barnes79e53942008-11-07 14:24:08 -080011337
Chris Wilsond2dff872011-04-19 08:36:26 +010011338 return intel_framebuffer_create(dev, mode_cmd, obj);
Jesse Barnes79e53942008-11-07 14:24:08 -080011339}
11340
Daniel Vetter4520f532013-10-09 09:18:51 +020011341#ifndef CONFIG_DRM_I915_FBDEV
Daniel Vetter0632fef2013-10-08 17:44:49 +020011342static inline void intel_fbdev_output_poll_changed(struct drm_device *dev)
Daniel Vetter4520f532013-10-09 09:18:51 +020011343{
11344}
11345#endif
11346
Jesse Barnes79e53942008-11-07 14:24:08 -080011347static const struct drm_mode_config_funcs intel_mode_funcs = {
Jesse Barnes79e53942008-11-07 14:24:08 -080011348 .fb_create = intel_user_framebuffer_create,
Daniel Vetter0632fef2013-10-08 17:44:49 +020011349 .output_poll_changed = intel_fbdev_output_poll_changed,
Jesse Barnes79e53942008-11-07 14:24:08 -080011350};
11351
Jesse Barnese70236a2009-09-21 10:42:27 -070011352/* Set up chip specific display functions */
11353static void intel_init_display(struct drm_device *dev)
11354{
11355 struct drm_i915_private *dev_priv = dev->dev_private;
11356
Daniel Vetteree9300b2013-06-03 22:40:22 +020011357 if (HAS_PCH_SPLIT(dev) || IS_G4X(dev))
11358 dev_priv->display.find_dpll = g4x_find_best_dpll;
Chon Ming Leeef9348c2014-04-09 13:28:18 +030011359 else if (IS_CHERRYVIEW(dev))
11360 dev_priv->display.find_dpll = chv_find_best_dpll;
Daniel Vetteree9300b2013-06-03 22:40:22 +020011361 else if (IS_VALLEYVIEW(dev))
11362 dev_priv->display.find_dpll = vlv_find_best_dpll;
11363 else if (IS_PINEVIEW(dev))
11364 dev_priv->display.find_dpll = pnv_find_best_dpll;
11365 else
11366 dev_priv->display.find_dpll = i9xx_find_best_dpll;
11367
Paulo Zanoniaffa9352012-11-23 15:30:39 -020011368 if (HAS_DDI(dev)) {
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010011369 dev_priv->display.get_pipe_config = haswell_get_pipe_config;
Jesse Barnes4c6baa52014-03-07 08:57:50 -080011370 dev_priv->display.get_plane_config = ironlake_get_plane_config;
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -030011371 dev_priv->display.crtc_mode_set = haswell_crtc_mode_set;
Paulo Zanoni4f771f12012-10-23 18:29:51 -020011372 dev_priv->display.crtc_enable = haswell_crtc_enable;
11373 dev_priv->display.crtc_disable = haswell_crtc_disable;
Paulo Zanoni6441ab52012-10-05 12:05:58 -030011374 dev_priv->display.off = haswell_crtc_off;
Matt Roper262ca2b2014-03-18 17:22:55 -070011375 dev_priv->display.update_primary_plane =
11376 ironlake_update_primary_plane;
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -030011377 } else if (HAS_PCH_SPLIT(dev)) {
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010011378 dev_priv->display.get_pipe_config = ironlake_get_pipe_config;
Jesse Barnes4c6baa52014-03-07 08:57:50 -080011379 dev_priv->display.get_plane_config = ironlake_get_plane_config;
Eric Anholtf564048e2011-03-30 13:01:02 -070011380 dev_priv->display.crtc_mode_set = ironlake_crtc_mode_set;
Daniel Vetter76e5a892012-06-29 22:39:33 +020011381 dev_priv->display.crtc_enable = ironlake_crtc_enable;
11382 dev_priv->display.crtc_disable = ironlake_crtc_disable;
Jesse Barnesee7b9f92012-04-20 17:11:53 +010011383 dev_priv->display.off = ironlake_crtc_off;
Matt Roper262ca2b2014-03-18 17:22:55 -070011384 dev_priv->display.update_primary_plane =
11385 ironlake_update_primary_plane;
Jesse Barnes89b667f2013-04-18 14:51:36 -070011386 } else if (IS_VALLEYVIEW(dev)) {
11387 dev_priv->display.get_pipe_config = i9xx_get_pipe_config;
Jesse Barnes1ad292b2014-03-07 08:57:49 -080011388 dev_priv->display.get_plane_config = i9xx_get_plane_config;
Jesse Barnes89b667f2013-04-18 14:51:36 -070011389 dev_priv->display.crtc_mode_set = i9xx_crtc_mode_set;
11390 dev_priv->display.crtc_enable = valleyview_crtc_enable;
11391 dev_priv->display.crtc_disable = i9xx_crtc_disable;
11392 dev_priv->display.off = i9xx_crtc_off;
Matt Roper262ca2b2014-03-18 17:22:55 -070011393 dev_priv->display.update_primary_plane =
11394 i9xx_update_primary_plane;
Eric Anholtf564048e2011-03-30 13:01:02 -070011395 } else {
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010011396 dev_priv->display.get_pipe_config = i9xx_get_pipe_config;
Jesse Barnes1ad292b2014-03-07 08:57:49 -080011397 dev_priv->display.get_plane_config = i9xx_get_plane_config;
Eric Anholtf564048e2011-03-30 13:01:02 -070011398 dev_priv->display.crtc_mode_set = i9xx_crtc_mode_set;
Daniel Vetter76e5a892012-06-29 22:39:33 +020011399 dev_priv->display.crtc_enable = i9xx_crtc_enable;
11400 dev_priv->display.crtc_disable = i9xx_crtc_disable;
Jesse Barnesee7b9f92012-04-20 17:11:53 +010011401 dev_priv->display.off = i9xx_crtc_off;
Matt Roper262ca2b2014-03-18 17:22:55 -070011402 dev_priv->display.update_primary_plane =
11403 i9xx_update_primary_plane;
Eric Anholtf564048e2011-03-30 13:01:02 -070011404 }
Jesse Barnese70236a2009-09-21 10:42:27 -070011405
Jesse Barnese70236a2009-09-21 10:42:27 -070011406 /* Returns the core display clock speed */
Jesse Barnes25eb05fc2012-03-28 13:39:23 -070011407 if (IS_VALLEYVIEW(dev))
11408 dev_priv->display.get_display_clock_speed =
11409 valleyview_get_display_clock_speed;
11410 else if (IS_I945G(dev) || (IS_G33(dev) && !IS_PINEVIEW_M(dev)))
Jesse Barnese70236a2009-09-21 10:42:27 -070011411 dev_priv->display.get_display_clock_speed =
11412 i945_get_display_clock_speed;
11413 else if (IS_I915G(dev))
11414 dev_priv->display.get_display_clock_speed =
11415 i915_get_display_clock_speed;
Daniel Vetter257a7ff2013-07-26 08:35:42 +020011416 else if (IS_I945GM(dev) || IS_845G(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -070011417 dev_priv->display.get_display_clock_speed =
11418 i9xx_misc_get_display_clock_speed;
Daniel Vetter257a7ff2013-07-26 08:35:42 +020011419 else if (IS_PINEVIEW(dev))
11420 dev_priv->display.get_display_clock_speed =
11421 pnv_get_display_clock_speed;
Jesse Barnese70236a2009-09-21 10:42:27 -070011422 else if (IS_I915GM(dev))
11423 dev_priv->display.get_display_clock_speed =
11424 i915gm_get_display_clock_speed;
11425 else if (IS_I865G(dev))
11426 dev_priv->display.get_display_clock_speed =
11427 i865_get_display_clock_speed;
Daniel Vetterf0f8a9c2009-09-15 22:57:33 +020011428 else if (IS_I85X(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -070011429 dev_priv->display.get_display_clock_speed =
11430 i855_get_display_clock_speed;
11431 else /* 852, 830 */
11432 dev_priv->display.get_display_clock_speed =
11433 i830_get_display_clock_speed;
11434
Zhenyu Wang7f8a8562010-04-01 13:07:53 +080011435 if (HAS_PCH_SPLIT(dev)) {
Chris Wilsonf00a3dd2010-10-21 14:57:17 +010011436 if (IS_GEN5(dev)) {
Jesse Barnes674cf962011-04-28 14:27:04 -070011437 dev_priv->display.fdi_link_train = ironlake_fdi_link_train;
Wu Fengguange0dac652011-09-05 14:25:34 +080011438 dev_priv->display.write_eld = ironlake_write_eld;
Yuanhan Liu13982612010-12-15 15:42:31 +080011439 } else if (IS_GEN6(dev)) {
Jesse Barnes674cf962011-04-28 14:27:04 -070011440 dev_priv->display.fdi_link_train = gen6_fdi_link_train;
Wu Fengguange0dac652011-09-05 14:25:34 +080011441 dev_priv->display.write_eld = ironlake_write_eld;
Paulo Zanoni9a952a02014-03-07 20:12:34 -030011442 dev_priv->display.modeset_global_resources =
11443 snb_modeset_global_resources;
Jesse Barnes357555c2011-04-28 15:09:55 -070011444 } else if (IS_IVYBRIDGE(dev)) {
11445 /* FIXME: detect B0+ stepping and use auto training */
11446 dev_priv->display.fdi_link_train = ivb_manual_fdi_link_train;
Wu Fengguange0dac652011-09-05 14:25:34 +080011447 dev_priv->display.write_eld = ironlake_write_eld;
Daniel Vetter01a415f2012-10-27 15:58:40 +020011448 dev_priv->display.modeset_global_resources =
11449 ivb_modeset_global_resources;
Ben Widawsky4e0bbc32013-11-02 21:07:07 -070011450 } else if (IS_HASWELL(dev) || IS_GEN8(dev)) {
Eugeni Dodonovc82e4d22012-05-09 15:37:21 -030011451 dev_priv->display.fdi_link_train = hsw_fdi_link_train;
Wang Xingchao83358c852012-08-16 22:43:37 +080011452 dev_priv->display.write_eld = haswell_write_eld;
Daniel Vetterd6dd9eb2013-01-29 16:35:20 -020011453 dev_priv->display.modeset_global_resources =
11454 haswell_modeset_global_resources;
Paulo Zanonia0e63c22012-12-06 11:12:39 -020011455 }
Jesse Barnes6067aae2011-04-28 15:04:31 -070011456 } else if (IS_G4X(dev)) {
Wu Fengguange0dac652011-09-05 14:25:34 +080011457 dev_priv->display.write_eld = g4x_write_eld;
Jesse Barnes30a970c2013-11-04 13:48:12 -080011458 } else if (IS_VALLEYVIEW(dev)) {
11459 dev_priv->display.modeset_global_resources =
11460 valleyview_modeset_global_resources;
Mengdong Lin9ca2fe72013-11-01 00:17:03 -040011461 dev_priv->display.write_eld = ironlake_write_eld;
Jesse Barnese70236a2009-09-21 10:42:27 -070011462 }
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011463
11464 /* Default just returns -ENODEV to indicate unsupported */
11465 dev_priv->display.queue_flip = intel_default_queue_flip;
11466
11467 switch (INTEL_INFO(dev)->gen) {
11468 case 2:
11469 dev_priv->display.queue_flip = intel_gen2_queue_flip;
11470 break;
11471
11472 case 3:
11473 dev_priv->display.queue_flip = intel_gen3_queue_flip;
11474 break;
11475
11476 case 4:
11477 case 5:
11478 dev_priv->display.queue_flip = intel_gen4_queue_flip;
11479 break;
11480
11481 case 6:
11482 dev_priv->display.queue_flip = intel_gen6_queue_flip;
11483 break;
Jesse Barnes7c9017e2011-06-16 12:18:54 -070011484 case 7:
Ben Widawsky4e0bbc32013-11-02 21:07:07 -070011485 case 8: /* FIXME(BDW): Check that the gen8 RCS flip works. */
Jesse Barnes7c9017e2011-06-16 12:18:54 -070011486 dev_priv->display.queue_flip = intel_gen7_queue_flip;
11487 break;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011488 }
Jani Nikula7bd688c2013-11-08 16:48:56 +020011489
11490 intel_panel_init_backlight_funcs(dev);
Jesse Barnese70236a2009-09-21 10:42:27 -070011491}
11492
Jesse Barnesb690e962010-07-19 13:53:12 -070011493/*
11494 * Some BIOSes insist on assuming the GPU's pipe A is enabled at suspend,
11495 * resume, or other times. This quirk makes sure that's the case for
11496 * affected systems.
11497 */
Akshay Joshi0206e352011-08-16 15:34:10 -040011498static void quirk_pipea_force(struct drm_device *dev)
Jesse Barnesb690e962010-07-19 13:53:12 -070011499{
11500 struct drm_i915_private *dev_priv = dev->dev_private;
11501
11502 dev_priv->quirks |= QUIRK_PIPEA_FORCE;
Daniel Vetterbc0daf42012-04-01 13:16:49 +020011503 DRM_INFO("applying pipe a force quirk\n");
Jesse Barnesb690e962010-07-19 13:53:12 -070011504}
11505
Keith Packard435793d2011-07-12 14:56:22 -070011506/*
11507 * Some machines (Lenovo U160) do not work with SSC on LVDS for some reason
11508 */
11509static void quirk_ssc_force_disable(struct drm_device *dev)
11510{
11511 struct drm_i915_private *dev_priv = dev->dev_private;
11512 dev_priv->quirks |= QUIRK_LVDS_SSC_DISABLE;
Daniel Vetterbc0daf42012-04-01 13:16:49 +020011513 DRM_INFO("applying lvds SSC disable quirk\n");
Keith Packard435793d2011-07-12 14:56:22 -070011514}
11515
Carsten Emde4dca20e2012-03-15 15:56:26 +010011516/*
Carsten Emde5a15ab52012-03-15 15:56:27 +010011517 * A machine (e.g. Acer Aspire 5734Z) may need to invert the panel backlight
11518 * brightness value
Carsten Emde4dca20e2012-03-15 15:56:26 +010011519 */
11520static void quirk_invert_brightness(struct drm_device *dev)
11521{
11522 struct drm_i915_private *dev_priv = dev->dev_private;
11523 dev_priv->quirks |= QUIRK_INVERT_BRIGHTNESS;
Daniel Vetterbc0daf42012-04-01 13:16:49 +020011524 DRM_INFO("applying inverted panel brightness quirk\n");
Jesse Barnesb690e962010-07-19 13:53:12 -070011525}
11526
11527struct intel_quirk {
11528 int device;
11529 int subsystem_vendor;
11530 int subsystem_device;
11531 void (*hook)(struct drm_device *dev);
11532};
11533
Egbert Eich5f85f1762012-10-14 15:46:38 +020011534/* For systems that don't have a meaningful PCI subdevice/subvendor ID */
11535struct intel_dmi_quirk {
11536 void (*hook)(struct drm_device *dev);
11537 const struct dmi_system_id (*dmi_id_list)[];
11538};
11539
11540static int intel_dmi_reverse_brightness(const struct dmi_system_id *id)
11541{
11542 DRM_INFO("Backlight polarity reversed on %s\n", id->ident);
11543 return 1;
11544}
11545
11546static const struct intel_dmi_quirk intel_dmi_quirks[] = {
11547 {
11548 .dmi_id_list = &(const struct dmi_system_id[]) {
11549 {
11550 .callback = intel_dmi_reverse_brightness,
11551 .ident = "NCR Corporation",
11552 .matches = {DMI_MATCH(DMI_SYS_VENDOR, "NCR Corporation"),
11553 DMI_MATCH(DMI_PRODUCT_NAME, ""),
11554 },
11555 },
11556 { } /* terminating entry */
11557 },
11558 .hook = quirk_invert_brightness,
11559 },
11560};
11561
Ben Widawskyc43b5632012-04-16 14:07:40 -070011562static struct intel_quirk intel_quirks[] = {
Jesse Barnesb690e962010-07-19 13:53:12 -070011563 /* HP Mini needs pipe A force quirk (LP: #322104) */
Akshay Joshi0206e352011-08-16 15:34:10 -040011564 { 0x27ae, 0x103c, 0x361a, quirk_pipea_force },
Jesse Barnesb690e962010-07-19 13:53:12 -070011565
Jesse Barnesb690e962010-07-19 13:53:12 -070011566 /* Toshiba Protege R-205, S-209 needs pipe A force quirk */
11567 { 0x2592, 0x1179, 0x0001, quirk_pipea_force },
11568
Jesse Barnesb690e962010-07-19 13:53:12 -070011569 /* ThinkPad T60 needs pipe A force quirk (bug #16494) */
11570 { 0x2782, 0x17aa, 0x201a, quirk_pipea_force },
11571
Chris Wilsona4945f92013-10-08 11:16:59 +010011572 /* 830 needs to leave pipe A & dpll A up */
Daniel Vetterdcdaed62012-08-12 21:19:34 +020011573 { 0x3577, PCI_ANY_ID, PCI_ANY_ID, quirk_pipea_force },
Keith Packard435793d2011-07-12 14:56:22 -070011574
11575 /* Lenovo U160 cannot use SSC on LVDS */
11576 { 0x0046, 0x17aa, 0x3920, quirk_ssc_force_disable },
Michel Alexandre Salim070d3292011-07-28 18:52:06 +020011577
11578 /* Sony Vaio Y cannot use SSC on LVDS */
11579 { 0x0046, 0x104d, 0x9076, quirk_ssc_force_disable },
Carsten Emde5a15ab52012-03-15 15:56:27 +010011580
Alexander van Heukelumbe505f62013-12-28 21:00:39 +010011581 /* Acer Aspire 5734Z must invert backlight brightness */
11582 { 0x2a42, 0x1025, 0x0459, quirk_invert_brightness },
11583
11584 /* Acer/eMachines G725 */
11585 { 0x2a42, 0x1025, 0x0210, quirk_invert_brightness },
11586
11587 /* Acer/eMachines e725 */
11588 { 0x2a42, 0x1025, 0x0212, quirk_invert_brightness },
11589
11590 /* Acer/Packard Bell NCL20 */
11591 { 0x2a42, 0x1025, 0x034b, quirk_invert_brightness },
11592
11593 /* Acer Aspire 4736Z */
11594 { 0x2a42, 0x1025, 0x0260, quirk_invert_brightness },
Jani Nikula0f540c32014-01-13 17:30:34 +020011595
11596 /* Acer Aspire 5336 */
11597 { 0x2a42, 0x1025, 0x048a, quirk_invert_brightness },
Jesse Barnesb690e962010-07-19 13:53:12 -070011598};
11599
11600static void intel_init_quirks(struct drm_device *dev)
11601{
11602 struct pci_dev *d = dev->pdev;
11603 int i;
11604
11605 for (i = 0; i < ARRAY_SIZE(intel_quirks); i++) {
11606 struct intel_quirk *q = &intel_quirks[i];
11607
11608 if (d->device == q->device &&
11609 (d->subsystem_vendor == q->subsystem_vendor ||
11610 q->subsystem_vendor == PCI_ANY_ID) &&
11611 (d->subsystem_device == q->subsystem_device ||
11612 q->subsystem_device == PCI_ANY_ID))
11613 q->hook(dev);
11614 }
Egbert Eich5f85f1762012-10-14 15:46:38 +020011615 for (i = 0; i < ARRAY_SIZE(intel_dmi_quirks); i++) {
11616 if (dmi_check_system(*intel_dmi_quirks[i].dmi_id_list) != 0)
11617 intel_dmi_quirks[i].hook(dev);
11618 }
Jesse Barnesb690e962010-07-19 13:53:12 -070011619}
11620
Jesse Barnes9cce37f2010-08-13 15:11:26 -070011621/* Disable the VGA plane that we never use */
11622static void i915_disable_vga(struct drm_device *dev)
11623{
11624 struct drm_i915_private *dev_priv = dev->dev_private;
11625 u8 sr1;
Ville Syrjälä766aa1c2013-01-25 21:44:46 +020011626 u32 vga_reg = i915_vgacntrl_reg(dev);
Jesse Barnes9cce37f2010-08-13 15:11:26 -070011627
Ville Syrjälä2b37c612014-01-22 21:32:38 +020011628 /* WaEnableVGAAccessThroughIOPort:ctg,elk,ilk,snb,ivb,vlv,hsw */
Jesse Barnes9cce37f2010-08-13 15:11:26 -070011629 vga_get_uninterruptible(dev->pdev, VGA_RSRC_LEGACY_IO);
Jesse Barnes3fdcf432012-04-06 11:46:27 -070011630 outb(SR01, VGA_SR_INDEX);
Jesse Barnes9cce37f2010-08-13 15:11:26 -070011631 sr1 = inb(VGA_SR_DATA);
11632 outb(sr1 | 1<<5, VGA_SR_DATA);
11633 vga_put(dev->pdev, VGA_RSRC_LEGACY_IO);
11634 udelay(300);
11635
11636 I915_WRITE(vga_reg, VGA_DISP_DISABLE);
11637 POSTING_READ(vga_reg);
11638}
11639
Daniel Vetterf8175862012-04-10 15:50:11 +020011640void intel_modeset_init_hw(struct drm_device *dev)
11641{
Eugeni Dodonova8f78b52012-06-28 15:55:35 -030011642 intel_prepare_ddi(dev);
11643
Daniel Vetterf8175862012-04-10 15:50:11 +020011644 intel_init_clock_gating(dev);
11645
Jesse Barnes5382f5f352013-12-16 16:34:24 -080011646 intel_reset_dpio(dev);
Jesse Barnes40e9cf62013-10-03 11:35:46 -070011647
Daniel Vetter8090c6b2012-06-24 16:42:32 +020011648 intel_enable_gt_powersave(dev);
Daniel Vetterf8175862012-04-10 15:50:11 +020011649}
11650
Imre Deak7d708ee2013-04-17 14:04:50 +030011651void intel_modeset_suspend_hw(struct drm_device *dev)
11652{
11653 intel_suspend_hw(dev);
11654}
11655
Jesse Barnes79e53942008-11-07 14:24:08 -080011656void intel_modeset_init(struct drm_device *dev)
11657{
Jesse Barnes652c3932009-08-17 13:31:43 -070011658 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiau1fe47782014-03-03 17:31:47 +000011659 int sprite, ret;
Damien Lespiau8cc87b72014-03-03 17:31:44 +000011660 enum pipe pipe;
Jesse Barnes46f297f2014-03-07 08:57:48 -080011661 struct intel_crtc *crtc;
Jesse Barnes79e53942008-11-07 14:24:08 -080011662
11663 drm_mode_config_init(dev);
11664
11665 dev->mode_config.min_width = 0;
11666 dev->mode_config.min_height = 0;
11667
Dave Airlie019d96c2011-09-29 16:20:42 +010011668 dev->mode_config.preferred_depth = 24;
11669 dev->mode_config.prefer_shadow = 1;
11670
Laurent Pincharte6ecefa2012-05-17 13:27:23 +020011671 dev->mode_config.funcs = &intel_mode_funcs;
Jesse Barnes79e53942008-11-07 14:24:08 -080011672
Jesse Barnesb690e962010-07-19 13:53:12 -070011673 intel_init_quirks(dev);
11674
Eugeni Dodonov1fa61102012-04-18 15:29:26 -030011675 intel_init_pm(dev);
11676
Ben Widawskye3c74752013-04-05 13:12:39 -070011677 if (INTEL_INFO(dev)->num_pipes == 0)
11678 return;
11679
Jesse Barnese70236a2009-09-21 10:42:27 -070011680 intel_init_display(dev);
11681
Chris Wilsona6c45cf2010-09-17 00:32:17 +010011682 if (IS_GEN2(dev)) {
11683 dev->mode_config.max_width = 2048;
11684 dev->mode_config.max_height = 2048;
11685 } else if (IS_GEN3(dev)) {
Keith Packard5e4d6fa2009-07-12 23:53:17 -070011686 dev->mode_config.max_width = 4096;
11687 dev->mode_config.max_height = 4096;
Jesse Barnes79e53942008-11-07 14:24:08 -080011688 } else {
Chris Wilsona6c45cf2010-09-17 00:32:17 +010011689 dev->mode_config.max_width = 8192;
11690 dev->mode_config.max_height = 8192;
Jesse Barnes79e53942008-11-07 14:24:08 -080011691 }
Damien Lespiau068be562014-03-28 14:17:49 +000011692
11693 if (IS_GEN2(dev)) {
11694 dev->mode_config.cursor_width = GEN2_CURSOR_WIDTH;
11695 dev->mode_config.cursor_height = GEN2_CURSOR_HEIGHT;
11696 } else {
11697 dev->mode_config.cursor_width = MAX_CURSOR_WIDTH;
11698 dev->mode_config.cursor_height = MAX_CURSOR_HEIGHT;
11699 }
11700
Ben Widawsky5d4545a2013-01-17 12:45:15 -080011701 dev->mode_config.fb_base = dev_priv->gtt.mappable_base;
Jesse Barnes79e53942008-11-07 14:24:08 -080011702
Zhao Yakui28c97732009-10-09 11:39:41 +080011703 DRM_DEBUG_KMS("%d display pipe%s available.\n",
Ben Widawsky7eb552a2013-03-13 14:05:41 -070011704 INTEL_INFO(dev)->num_pipes,
11705 INTEL_INFO(dev)->num_pipes > 1 ? "s" : "");
Jesse Barnes79e53942008-11-07 14:24:08 -080011706
Damien Lespiau8cc87b72014-03-03 17:31:44 +000011707 for_each_pipe(pipe) {
11708 intel_crtc_init(dev, pipe);
Damien Lespiau1fe47782014-03-03 17:31:47 +000011709 for_each_sprite(pipe, sprite) {
11710 ret = intel_plane_init(dev, pipe, sprite);
Jesse Barnes7f1f3852013-04-02 11:22:20 -070011711 if (ret)
Ville Syrjälä06da8da2013-04-17 17:48:51 +030011712 DRM_DEBUG_KMS("pipe %c sprite %c init failed: %d\n",
Damien Lespiau1fe47782014-03-03 17:31:47 +000011713 pipe_name(pipe), sprite_name(pipe, sprite), ret);
Jesse Barnes7f1f3852013-04-02 11:22:20 -070011714 }
Jesse Barnes79e53942008-11-07 14:24:08 -080011715 }
11716
Jesse Barnesf42bb702013-12-16 16:34:23 -080011717 intel_init_dpio(dev);
Jesse Barnes5382f5f352013-12-16 16:34:24 -080011718 intel_reset_dpio(dev);
Jesse Barnesf42bb702013-12-16 16:34:23 -080011719
Paulo Zanoni79f689a2012-10-05 12:05:52 -030011720 intel_cpu_pll_init(dev);
Daniel Vettere72f9fb2013-06-05 13:34:06 +020011721 intel_shared_dpll_init(dev);
Jesse Barnesee7b9f92012-04-20 17:11:53 +010011722
Jesse Barnes9cce37f2010-08-13 15:11:26 -070011723 /* Just disable it once at startup */
11724 i915_disable_vga(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -080011725 intel_setup_outputs(dev);
Chris Wilson11be49e2012-11-15 11:32:20 +000011726
11727 /* Just in case the BIOS is doing something questionable. */
11728 intel_disable_fbc(dev);
Jesse Barnesfa9fa082014-02-11 15:28:56 -080011729
Jesse Barnes8b687df2014-02-21 13:13:39 -080011730 mutex_lock(&dev->mode_config.mutex);
Jesse Barnesfa9fa082014-02-11 15:28:56 -080011731 intel_modeset_setup_hw_state(dev, false);
Jesse Barnes8b687df2014-02-21 13:13:39 -080011732 mutex_unlock(&dev->mode_config.mutex);
Jesse Barnes46f297f2014-03-07 08:57:48 -080011733
Damien Lespiaud3fcc802014-05-13 23:32:22 +010011734 for_each_intel_crtc(dev, crtc) {
Jesse Barnes46f297f2014-03-07 08:57:48 -080011735 if (!crtc->active)
11736 continue;
11737
Jesse Barnes46f297f2014-03-07 08:57:48 -080011738 /*
Jesse Barnes46f297f2014-03-07 08:57:48 -080011739 * Note that reserving the BIOS fb up front prevents us
11740 * from stuffing other stolen allocations like the ring
11741 * on top. This prevents some ugliness at boot time, and
11742 * can even allow for smooth boot transitions if the BIOS
11743 * fb is large enough for the active pipe configuration.
11744 */
11745 if (dev_priv->display.get_plane_config) {
11746 dev_priv->display.get_plane_config(crtc,
11747 &crtc->plane_config);
11748 /*
11749 * If the fb is shared between multiple heads, we'll
11750 * just get the first one.
11751 */
Jesse Barnes484b41d2014-03-07 08:57:55 -080011752 intel_find_plane_obj(crtc, &crtc->plane_config);
Jesse Barnes46f297f2014-03-07 08:57:48 -080011753 }
Jesse Barnes46f297f2014-03-07 08:57:48 -080011754 }
Chris Wilson2c7111d2011-03-29 10:40:27 +010011755}
Jesse Barnesd5bb0812011-01-05 12:01:26 -080011756
Daniel Vetter24929352012-07-02 20:28:59 +020011757static void
11758intel_connector_break_all_links(struct intel_connector *connector)
11759{
11760 connector->base.dpms = DRM_MODE_DPMS_OFF;
11761 connector->base.encoder = NULL;
11762 connector->encoder->connectors_active = false;
11763 connector->encoder->base.crtc = NULL;
11764}
11765
Daniel Vetter7fad7982012-07-04 17:51:47 +020011766static void intel_enable_pipe_a(struct drm_device *dev)
11767{
11768 struct intel_connector *connector;
11769 struct drm_connector *crt = NULL;
11770 struct intel_load_detect_pipe load_detect_temp;
11771
11772 /* We can't just switch on the pipe A, we need to set things up with a
11773 * proper mode and output configuration. As a gross hack, enable pipe A
11774 * by enabling the load detect pipe once. */
11775 list_for_each_entry(connector,
11776 &dev->mode_config.connector_list,
11777 base.head) {
11778 if (connector->encoder->type == INTEL_OUTPUT_ANALOG) {
11779 crt = &connector->base;
11780 break;
11781 }
11782 }
11783
11784 if (!crt)
11785 return;
11786
11787 if (intel_get_load_detect_pipe(crt, NULL, &load_detect_temp))
11788 intel_release_load_detect_pipe(crt, &load_detect_temp);
11789
11790
11791}
11792
Daniel Vetterfa555832012-10-10 23:14:00 +020011793static bool
11794intel_check_plane_mapping(struct intel_crtc *crtc)
11795{
Ben Widawsky7eb552a2013-03-13 14:05:41 -070011796 struct drm_device *dev = crtc->base.dev;
11797 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterfa555832012-10-10 23:14:00 +020011798 u32 reg, val;
11799
Ben Widawsky7eb552a2013-03-13 14:05:41 -070011800 if (INTEL_INFO(dev)->num_pipes == 1)
Daniel Vetterfa555832012-10-10 23:14:00 +020011801 return true;
11802
11803 reg = DSPCNTR(!crtc->plane);
11804 val = I915_READ(reg);
11805
11806 if ((val & DISPLAY_PLANE_ENABLE) &&
11807 (!!(val & DISPPLANE_SEL_PIPE_MASK) == crtc->pipe))
11808 return false;
11809
11810 return true;
11811}
11812
Daniel Vetter24929352012-07-02 20:28:59 +020011813static void intel_sanitize_crtc(struct intel_crtc *crtc)
11814{
11815 struct drm_device *dev = crtc->base.dev;
11816 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterfa555832012-10-10 23:14:00 +020011817 u32 reg;
Daniel Vetter24929352012-07-02 20:28:59 +020011818
Daniel Vetter24929352012-07-02 20:28:59 +020011819 /* Clear any frame start delays used for debugging left by the BIOS */
Daniel Vetter3b117c82013-04-17 20:15:07 +020011820 reg = PIPECONF(crtc->config.cpu_transcoder);
Daniel Vetter24929352012-07-02 20:28:59 +020011821 I915_WRITE(reg, I915_READ(reg) & ~PIPECONF_FRAME_START_DELAY_MASK);
11822
11823 /* We need to sanitize the plane -> pipe mapping first because this will
Daniel Vetterfa555832012-10-10 23:14:00 +020011824 * disable the crtc (and hence change the state) if it is wrong. Note
11825 * that gen4+ has a fixed plane -> pipe mapping. */
11826 if (INTEL_INFO(dev)->gen < 4 && !intel_check_plane_mapping(crtc)) {
Daniel Vetter24929352012-07-02 20:28:59 +020011827 struct intel_connector *connector;
11828 bool plane;
11829
Daniel Vetter24929352012-07-02 20:28:59 +020011830 DRM_DEBUG_KMS("[CRTC:%d] wrong plane connection detected!\n",
11831 crtc->base.base.id);
11832
11833 /* Pipe has the wrong plane attached and the plane is active.
11834 * Temporarily change the plane mapping and disable everything
11835 * ... */
11836 plane = crtc->plane;
11837 crtc->plane = !plane;
11838 dev_priv->display.crtc_disable(&crtc->base);
11839 crtc->plane = plane;
11840
11841 /* ... and break all links. */
11842 list_for_each_entry(connector, &dev->mode_config.connector_list,
11843 base.head) {
11844 if (connector->encoder->base.crtc != &crtc->base)
11845 continue;
11846
11847 intel_connector_break_all_links(connector);
11848 }
11849
11850 WARN_ON(crtc->active);
11851 crtc->base.enabled = false;
11852 }
Daniel Vetter24929352012-07-02 20:28:59 +020011853
Daniel Vetter7fad7982012-07-04 17:51:47 +020011854 if (dev_priv->quirks & QUIRK_PIPEA_FORCE &&
11855 crtc->pipe == PIPE_A && !crtc->active) {
11856 /* BIOS forgot to enable pipe A, this mostly happens after
11857 * resume. Force-enable the pipe to fix this, the update_dpms
11858 * call below we restore the pipe to the right state, but leave
11859 * the required bits on. */
11860 intel_enable_pipe_a(dev);
11861 }
11862
Daniel Vetter24929352012-07-02 20:28:59 +020011863 /* Adjust the state of the output pipe according to whether we
11864 * have active connectors/encoders. */
11865 intel_crtc_update_dpms(&crtc->base);
11866
11867 if (crtc->active != crtc->base.enabled) {
11868 struct intel_encoder *encoder;
11869
11870 /* This can happen either due to bugs in the get_hw_state
11871 * functions or because the pipe is force-enabled due to the
11872 * pipe A quirk. */
11873 DRM_DEBUG_KMS("[CRTC:%d] hw state adjusted, was %s, now %s\n",
11874 crtc->base.base.id,
11875 crtc->base.enabled ? "enabled" : "disabled",
11876 crtc->active ? "enabled" : "disabled");
11877
11878 crtc->base.enabled = crtc->active;
11879
11880 /* Because we only establish the connector -> encoder ->
11881 * crtc links if something is active, this means the
11882 * crtc is now deactivated. Break the links. connector
11883 * -> encoder links are only establish when things are
11884 * actually up, hence no need to break them. */
11885 WARN_ON(crtc->active);
11886
11887 for_each_encoder_on_crtc(dev, &crtc->base, encoder) {
11888 WARN_ON(encoder->connectors_active);
11889 encoder->base.crtc = NULL;
11890 }
11891 }
Daniel Vetter4cc31482014-03-24 00:01:41 +010011892 if (crtc->active) {
11893 /*
11894 * We start out with underrun reporting disabled to avoid races.
11895 * For correct bookkeeping mark this on active crtcs.
11896 *
11897 * No protection against concurrent access is required - at
11898 * worst a fifo underrun happens which also sets this to false.
11899 */
11900 crtc->cpu_fifo_underrun_disabled = true;
11901 crtc->pch_fifo_underrun_disabled = true;
11902 }
Daniel Vetter24929352012-07-02 20:28:59 +020011903}
11904
11905static void intel_sanitize_encoder(struct intel_encoder *encoder)
11906{
11907 struct intel_connector *connector;
11908 struct drm_device *dev = encoder->base.dev;
11909
11910 /* We need to check both for a crtc link (meaning that the
11911 * encoder is active and trying to read from a pipe) and the
11912 * pipe itself being active. */
11913 bool has_active_crtc = encoder->base.crtc &&
11914 to_intel_crtc(encoder->base.crtc)->active;
11915
11916 if (encoder->connectors_active && !has_active_crtc) {
11917 DRM_DEBUG_KMS("[ENCODER:%d:%s] has active connectors but no active pipe!\n",
11918 encoder->base.base.id,
11919 drm_get_encoder_name(&encoder->base));
11920
11921 /* Connector is active, but has no active pipe. This is
11922 * fallout from our resume register restoring. Disable
11923 * the encoder manually again. */
11924 if (encoder->base.crtc) {
11925 DRM_DEBUG_KMS("[ENCODER:%d:%s] manually disabled\n",
11926 encoder->base.base.id,
11927 drm_get_encoder_name(&encoder->base));
11928 encoder->disable(encoder);
11929 }
11930
11931 /* Inconsistent output/port/pipe state happens presumably due to
11932 * a bug in one of the get_hw_state functions. Or someplace else
11933 * in our code, like the register restore mess on resume. Clamp
11934 * things to off as a safer default. */
11935 list_for_each_entry(connector,
11936 &dev->mode_config.connector_list,
11937 base.head) {
11938 if (connector->encoder != encoder)
11939 continue;
11940
11941 intel_connector_break_all_links(connector);
11942 }
11943 }
11944 /* Enabled encoders without active connectors will be fixed in
11945 * the crtc fixup. */
11946}
11947
Imre Deak04098752014-02-18 00:02:16 +020011948void i915_redisable_vga_power_on(struct drm_device *dev)
Krzysztof Mazur0fde9012012-12-19 11:03:41 +010011949{
11950 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä766aa1c2013-01-25 21:44:46 +020011951 u32 vga_reg = i915_vgacntrl_reg(dev);
Krzysztof Mazur0fde9012012-12-19 11:03:41 +010011952
Imre Deak04098752014-02-18 00:02:16 +020011953 if (!(I915_READ(vga_reg) & VGA_DISP_DISABLE)) {
11954 DRM_DEBUG_KMS("Something enabled VGA plane, disabling it\n");
11955 i915_disable_vga(dev);
11956 }
11957}
11958
11959void i915_redisable_vga(struct drm_device *dev)
11960{
11961 struct drm_i915_private *dev_priv = dev->dev_private;
11962
Paulo Zanoni8dc8a272013-08-02 16:22:24 -030011963 /* This function can be called both from intel_modeset_setup_hw_state or
11964 * at a very early point in our resume sequence, where the power well
11965 * structures are not yet restored. Since this function is at a very
11966 * paranoid "someone might have enabled VGA while we were not looking"
11967 * level, just check if the power well is enabled instead of trying to
11968 * follow the "don't touch the power well if we don't need it" policy
11969 * the rest of the driver uses. */
Imre Deak04098752014-02-18 00:02:16 +020011970 if (!intel_display_power_enabled(dev_priv, POWER_DOMAIN_VGA))
Paulo Zanoni8dc8a272013-08-02 16:22:24 -030011971 return;
11972
Imre Deak04098752014-02-18 00:02:16 +020011973 i915_redisable_vga_power_on(dev);
Krzysztof Mazur0fde9012012-12-19 11:03:41 +010011974}
11975
Ville Syrjälä98ec7732014-04-30 17:43:01 +030011976static bool primary_get_hw_state(struct intel_crtc *crtc)
11977{
11978 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
11979
11980 if (!crtc->active)
11981 return false;
11982
11983 return I915_READ(DSPCNTR(crtc->plane)) & DISPLAY_PLANE_ENABLE;
11984}
11985
Daniel Vetter30e984d2013-06-05 13:34:17 +020011986static void intel_modeset_readout_hw_state(struct drm_device *dev)
Daniel Vetter24929352012-07-02 20:28:59 +020011987{
11988 struct drm_i915_private *dev_priv = dev->dev_private;
11989 enum pipe pipe;
Daniel Vetter24929352012-07-02 20:28:59 +020011990 struct intel_crtc *crtc;
11991 struct intel_encoder *encoder;
11992 struct intel_connector *connector;
Daniel Vetter53589012013-06-05 13:34:16 +020011993 int i;
Daniel Vetter24929352012-07-02 20:28:59 +020011994
Damien Lespiaud3fcc802014-05-13 23:32:22 +010011995 for_each_intel_crtc(dev, crtc) {
Daniel Vetter88adfff2013-03-28 10:42:01 +010011996 memset(&crtc->config, 0, sizeof(crtc->config));
Daniel Vetter3b117c82013-04-17 20:15:07 +020011997
Daniel Vetter99535992014-04-13 12:00:33 +020011998 crtc->config.quirks |= PIPE_CONFIG_QUIRK_INHERITED_MODE;
11999
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010012000 crtc->active = dev_priv->display.get_pipe_config(crtc,
12001 &crtc->config);
Daniel Vetter24929352012-07-02 20:28:59 +020012002
12003 crtc->base.enabled = crtc->active;
Ville Syrjälä98ec7732014-04-30 17:43:01 +030012004 crtc->primary_enabled = primary_get_hw_state(crtc);
Daniel Vetter24929352012-07-02 20:28:59 +020012005
12006 DRM_DEBUG_KMS("[CRTC:%d] hw state readout: %s\n",
12007 crtc->base.base.id,
12008 crtc->active ? "enabled" : "disabled");
12009 }
12010
Daniel Vetter53589012013-06-05 13:34:16 +020012011 /* FIXME: Smash this into the new shared dpll infrastructure. */
Paulo Zanoniaffa9352012-11-23 15:30:39 -020012012 if (HAS_DDI(dev))
Paulo Zanoni6441ab52012-10-05 12:05:58 -030012013 intel_ddi_setup_hw_pll_state(dev);
12014
Daniel Vetter53589012013-06-05 13:34:16 +020012015 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
12016 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
12017
12018 pll->on = pll->get_hw_state(dev_priv, pll, &pll->hw_state);
12019 pll->active = 0;
Damien Lespiaud3fcc802014-05-13 23:32:22 +010012020 for_each_intel_crtc(dev, crtc) {
Daniel Vetter53589012013-06-05 13:34:16 +020012021 if (crtc->active && intel_crtc_to_shared_dpll(crtc) == pll)
12022 pll->active++;
12023 }
12024 pll->refcount = pll->active;
12025
Daniel Vetter35c95372013-07-17 06:55:04 +020012026 DRM_DEBUG_KMS("%s hw state readout: refcount %i, on %i\n",
12027 pll->name, pll->refcount, pll->on);
Daniel Vetter53589012013-06-05 13:34:16 +020012028 }
12029
Daniel Vetter24929352012-07-02 20:28:59 +020012030 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
12031 base.head) {
12032 pipe = 0;
12033
12034 if (encoder->get_hw_state(encoder, &pipe)) {
Jesse Barnes045ac3b2013-05-14 17:08:26 -070012035 crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
12036 encoder->base.crtc = &crtc->base;
Daniel Vetter1d37b682013-11-18 09:00:59 +010012037 encoder->get_config(encoder, &crtc->config);
Daniel Vetter24929352012-07-02 20:28:59 +020012038 } else {
12039 encoder->base.crtc = NULL;
12040 }
12041
12042 encoder->connectors_active = false;
Damien Lespiau6f2bcce2013-10-16 12:29:54 +010012043 DRM_DEBUG_KMS("[ENCODER:%d:%s] hw state readout: %s, pipe %c\n",
Daniel Vetter24929352012-07-02 20:28:59 +020012044 encoder->base.base.id,
12045 drm_get_encoder_name(&encoder->base),
12046 encoder->base.crtc ? "enabled" : "disabled",
Damien Lespiau6f2bcce2013-10-16 12:29:54 +010012047 pipe_name(pipe));
Daniel Vetter24929352012-07-02 20:28:59 +020012048 }
12049
12050 list_for_each_entry(connector, &dev->mode_config.connector_list,
12051 base.head) {
12052 if (connector->get_hw_state(connector)) {
12053 connector->base.dpms = DRM_MODE_DPMS_ON;
12054 connector->encoder->connectors_active = true;
12055 connector->base.encoder = &connector->encoder->base;
12056 } else {
12057 connector->base.dpms = DRM_MODE_DPMS_OFF;
12058 connector->base.encoder = NULL;
12059 }
12060 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] hw state readout: %s\n",
12061 connector->base.base.id,
12062 drm_get_connector_name(&connector->base),
12063 connector->base.encoder ? "enabled" : "disabled");
12064 }
Daniel Vetter30e984d2013-06-05 13:34:17 +020012065}
12066
12067/* Scan out the current hw modeset state, sanitizes it and maps it into the drm
12068 * and i915 state tracking structures. */
12069void intel_modeset_setup_hw_state(struct drm_device *dev,
12070 bool force_restore)
12071{
12072 struct drm_i915_private *dev_priv = dev->dev_private;
12073 enum pipe pipe;
Daniel Vetter30e984d2013-06-05 13:34:17 +020012074 struct intel_crtc *crtc;
12075 struct intel_encoder *encoder;
Daniel Vetter35c95372013-07-17 06:55:04 +020012076 int i;
Daniel Vetter30e984d2013-06-05 13:34:17 +020012077
12078 intel_modeset_readout_hw_state(dev);
Daniel Vetter24929352012-07-02 20:28:59 +020012079
Jesse Barnesbabea612013-06-26 18:57:38 +030012080 /*
12081 * Now that we have the config, copy it to each CRTC struct
12082 * Note that this could go away if we move to using crtc_config
12083 * checking everywhere.
12084 */
Damien Lespiaud3fcc802014-05-13 23:32:22 +010012085 for_each_intel_crtc(dev, crtc) {
Jani Nikulad330a952014-01-21 11:24:25 +020012086 if (crtc->active && i915.fastboot) {
Daniel Vetterf6a83282014-02-11 15:28:57 -080012087 intel_mode_from_pipe_config(&crtc->base.mode, &crtc->config);
Jesse Barnesbabea612013-06-26 18:57:38 +030012088 DRM_DEBUG_KMS("[CRTC:%d] found active mode: ",
12089 crtc->base.base.id);
12090 drm_mode_debug_printmodeline(&crtc->base.mode);
12091 }
12092 }
12093
Daniel Vetter24929352012-07-02 20:28:59 +020012094 /* HW state is read out, now we need to sanitize this mess. */
12095 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
12096 base.head) {
12097 intel_sanitize_encoder(encoder);
12098 }
12099
12100 for_each_pipe(pipe) {
12101 crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
12102 intel_sanitize_crtc(crtc);
Daniel Vetterc0b03412013-05-28 12:05:54 +020012103 intel_dump_pipe_config(crtc, &crtc->config, "[setup_hw_state]");
Daniel Vetter24929352012-07-02 20:28:59 +020012104 }
Daniel Vetter9a935852012-07-05 22:34:27 +020012105
Daniel Vetter35c95372013-07-17 06:55:04 +020012106 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
12107 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
12108
12109 if (!pll->on || pll->active)
12110 continue;
12111
12112 DRM_DEBUG_KMS("%s enabled but not in use, disabling\n", pll->name);
12113
12114 pll->disable(dev_priv, pll);
12115 pll->on = false;
12116 }
12117
Ville Syrjälä96f90c52013-12-05 15:51:38 +020012118 if (HAS_PCH_SPLIT(dev))
Ville Syrjälä243e6a42013-10-14 14:55:24 +030012119 ilk_wm_get_hw_state(dev);
12120
Daniel Vetter45e2b5f2012-11-23 18:16:34 +010012121 if (force_restore) {
Ville Syrjälä7d0bc1e2013-09-16 17:38:33 +030012122 i915_redisable_vga(dev);
12123
Daniel Vetterf30da182013-04-11 20:22:50 +020012124 /*
12125 * We need to use raw interfaces for restoring state to avoid
12126 * checking (bogus) intermediate states.
12127 */
Daniel Vetter45e2b5f2012-11-23 18:16:34 +010012128 for_each_pipe(pipe) {
Jesse Barnesb5644d02013-03-26 13:25:27 -070012129 struct drm_crtc *crtc =
12130 dev_priv->pipe_to_crtc_mapping[pipe];
Daniel Vetterf30da182013-04-11 20:22:50 +020012131
12132 __intel_set_mode(crtc, &crtc->mode, crtc->x, crtc->y,
Matt Roperf4510a22014-04-01 15:22:40 -070012133 crtc->primary->fb);
Daniel Vetter45e2b5f2012-11-23 18:16:34 +010012134 }
12135 } else {
12136 intel_modeset_update_staged_output_state(dev);
12137 }
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012138
12139 intel_modeset_check_state(dev);
Chris Wilson2c7111d2011-03-29 10:40:27 +010012140}
12141
12142void intel_modeset_gem_init(struct drm_device *dev)
12143{
Jesse Barnes484b41d2014-03-07 08:57:55 -080012144 struct drm_crtc *c;
12145 struct intel_framebuffer *fb;
12146
Imre Deakae484342014-03-31 15:10:44 +030012147 mutex_lock(&dev->struct_mutex);
12148 intel_init_gt_powersave(dev);
12149 mutex_unlock(&dev->struct_mutex);
12150
Chris Wilson1833b132012-05-09 11:56:28 +010012151 intel_modeset_init_hw(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +020012152
12153 intel_setup_overlay(dev);
Jesse Barnes484b41d2014-03-07 08:57:55 -080012154
12155 /*
12156 * Make sure any fbs we allocated at startup are properly
12157 * pinned & fenced. When we do the allocation it's too early
12158 * for this.
12159 */
12160 mutex_lock(&dev->struct_mutex);
Damien Lespiau70e1e0e2014-05-13 23:32:24 +010012161 for_each_crtc(dev, c) {
Dave Airlie66e514c2014-04-03 07:51:54 +100012162 if (!c->primary->fb)
Jesse Barnes484b41d2014-03-07 08:57:55 -080012163 continue;
12164
Dave Airlie66e514c2014-04-03 07:51:54 +100012165 fb = to_intel_framebuffer(c->primary->fb);
Jesse Barnes484b41d2014-03-07 08:57:55 -080012166 if (intel_pin_and_fence_fb_obj(dev, fb->obj, NULL)) {
12167 DRM_ERROR("failed to pin boot fb on pipe %d\n",
12168 to_intel_crtc(c)->pipe);
Dave Airlie66e514c2014-04-03 07:51:54 +100012169 drm_framebuffer_unreference(c->primary->fb);
12170 c->primary->fb = NULL;
Jesse Barnes484b41d2014-03-07 08:57:55 -080012171 }
12172 }
12173 mutex_unlock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -080012174}
12175
Imre Deak4932e2c2014-02-11 17:12:48 +020012176void intel_connector_unregister(struct intel_connector *intel_connector)
12177{
12178 struct drm_connector *connector = &intel_connector->base;
12179
12180 intel_panel_destroy_backlight(connector);
12181 drm_sysfs_connector_remove(connector);
12182}
12183
Jesse Barnes79e53942008-11-07 14:24:08 -080012184void intel_modeset_cleanup(struct drm_device *dev)
12185{
Jesse Barnes652c3932009-08-17 13:31:43 -070012186 struct drm_i915_private *dev_priv = dev->dev_private;
12187 struct drm_crtc *crtc;
Paulo Zanonid9255d52013-09-26 20:05:59 -030012188 struct drm_connector *connector;
Jesse Barnes652c3932009-08-17 13:31:43 -070012189
Daniel Vetterfd0c0642013-04-24 11:13:35 +020012190 /*
12191 * Interrupts and polling as the first thing to avoid creating havoc.
12192 * Too much stuff here (turning of rps, connectors, ...) would
12193 * experience fancy races otherwise.
12194 */
12195 drm_irq_uninstall(dev);
12196 cancel_work_sync(&dev_priv->hotplug_work);
12197 /*
12198 * Due to the hpd irq storm handling the hotplug work can re-arm the
12199 * poll handlers. Hence disable polling after hpd handling is shut down.
12200 */
Keith Packardf87ea762010-10-03 19:36:26 -070012201 drm_kms_helper_poll_fini(dev);
Daniel Vetterfd0c0642013-04-24 11:13:35 +020012202
Jesse Barnes652c3932009-08-17 13:31:43 -070012203 mutex_lock(&dev->struct_mutex);
12204
Jesse Barnes723bfd72010-10-07 16:01:13 -070012205 intel_unregister_dsm_handler();
12206
Damien Lespiau70e1e0e2014-05-13 23:32:24 +010012207 for_each_crtc(dev, crtc) {
Jesse Barnes652c3932009-08-17 13:31:43 -070012208 /* Skip inactive CRTCs */
Matt Roperf4510a22014-04-01 15:22:40 -070012209 if (!crtc->primary->fb)
Jesse Barnes652c3932009-08-17 13:31:43 -070012210 continue;
12211
Daniel Vetter3dec0092010-08-20 21:40:52 +020012212 intel_increase_pllclock(crtc);
Jesse Barnes652c3932009-08-17 13:31:43 -070012213 }
12214
Chris Wilson973d04f2011-07-08 12:22:37 +010012215 intel_disable_fbc(dev);
Jesse Barnese70236a2009-09-21 10:42:27 -070012216
Daniel Vetter8090c6b2012-06-24 16:42:32 +020012217 intel_disable_gt_powersave(dev);
Chris Wilson0cdab212010-12-05 17:27:06 +000012218
Daniel Vetter930ebb42012-06-29 23:32:16 +020012219 ironlake_teardown_rc6(dev);
12220
Kristian Høgsberg69341a52009-11-11 12:19:17 -050012221 mutex_unlock(&dev->struct_mutex);
12222
Chris Wilson1630fe72011-07-08 12:22:42 +010012223 /* flush any delayed tasks or pending work */
12224 flush_scheduled_work();
12225
Jani Nikuladb31af12013-11-08 16:48:53 +020012226 /* destroy the backlight and sysfs files before encoders/connectors */
12227 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
Imre Deak4932e2c2014-02-11 17:12:48 +020012228 struct intel_connector *intel_connector;
12229
12230 intel_connector = to_intel_connector(connector);
12231 intel_connector->unregister(intel_connector);
Jani Nikuladb31af12013-11-08 16:48:53 +020012232 }
Paulo Zanonid9255d52013-09-26 20:05:59 -030012233
Jesse Barnes79e53942008-11-07 14:24:08 -080012234 drm_mode_config_cleanup(dev);
Daniel Vetter4d7bb012012-12-18 15:24:37 +010012235
12236 intel_cleanup_overlay(dev);
Imre Deakae484342014-03-31 15:10:44 +030012237
12238 mutex_lock(&dev->struct_mutex);
12239 intel_cleanup_gt_powersave(dev);
12240 mutex_unlock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -080012241}
12242
Dave Airlie28d52042009-09-21 14:33:58 +100012243/*
Zhenyu Wangf1c79df2010-03-30 14:39:29 +080012244 * Return which encoder is currently attached for connector.
12245 */
Chris Wilsondf0e9242010-09-09 16:20:55 +010012246struct drm_encoder *intel_best_encoder(struct drm_connector *connector)
Jesse Barnes79e53942008-11-07 14:24:08 -080012247{
Chris Wilsondf0e9242010-09-09 16:20:55 +010012248 return &intel_attached_encoder(connector)->base;
12249}
Jesse Barnes79e53942008-11-07 14:24:08 -080012250
Chris Wilsondf0e9242010-09-09 16:20:55 +010012251void intel_connector_attach_encoder(struct intel_connector *connector,
12252 struct intel_encoder *encoder)
12253{
12254 connector->encoder = encoder;
12255 drm_mode_connector_attach_encoder(&connector->base,
12256 &encoder->base);
Jesse Barnes79e53942008-11-07 14:24:08 -080012257}
Dave Airlie28d52042009-09-21 14:33:58 +100012258
12259/*
12260 * set vga decode state - true == enable VGA decode
12261 */
12262int intel_modeset_vga_set_state(struct drm_device *dev, bool state)
12263{
12264 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsona885b3c2013-12-17 14:34:50 +000012265 unsigned reg = INTEL_INFO(dev)->gen >= 6 ? SNB_GMCH_CTRL : INTEL_GMCH_CTRL;
Dave Airlie28d52042009-09-21 14:33:58 +100012266 u16 gmch_ctrl;
12267
Chris Wilson75fa0412014-02-07 18:37:02 -020012268 if (pci_read_config_word(dev_priv->bridge_dev, reg, &gmch_ctrl)) {
12269 DRM_ERROR("failed to read control word\n");
12270 return -EIO;
12271 }
12272
Chris Wilsonc0cc8a52014-02-07 18:37:03 -020012273 if (!!(gmch_ctrl & INTEL_GMCH_VGA_DISABLE) == !state)
12274 return 0;
12275
Dave Airlie28d52042009-09-21 14:33:58 +100012276 if (state)
12277 gmch_ctrl &= ~INTEL_GMCH_VGA_DISABLE;
12278 else
12279 gmch_ctrl |= INTEL_GMCH_VGA_DISABLE;
Chris Wilson75fa0412014-02-07 18:37:02 -020012280
12281 if (pci_write_config_word(dev_priv->bridge_dev, reg, gmch_ctrl)) {
12282 DRM_ERROR("failed to write control word\n");
12283 return -EIO;
12284 }
12285
Dave Airlie28d52042009-09-21 14:33:58 +100012286 return 0;
12287}
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012288
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012289struct intel_display_error_state {
Paulo Zanoniff57f1b2013-05-03 12:15:37 -030012290
12291 u32 power_well_driver;
12292
Chris Wilson63b66e52013-08-08 15:12:06 +020012293 int num_transcoders;
12294
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012295 struct intel_cursor_error_state {
12296 u32 control;
12297 u32 position;
12298 u32 base;
12299 u32 size;
Damien Lespiau52331302012-08-15 19:23:25 +010012300 } cursor[I915_MAX_PIPES];
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012301
12302 struct intel_pipe_error_state {
Imre Deakddf9c532013-11-27 22:02:02 +020012303 bool power_domain_on;
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012304 u32 source;
Imre Deakf301b1e2014-04-18 15:55:04 +030012305 u32 stat;
Damien Lespiau52331302012-08-15 19:23:25 +010012306 } pipe[I915_MAX_PIPES];
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012307
12308 struct intel_plane_error_state {
12309 u32 control;
12310 u32 stride;
12311 u32 size;
12312 u32 pos;
12313 u32 addr;
12314 u32 surface;
12315 u32 tile_offset;
Damien Lespiau52331302012-08-15 19:23:25 +010012316 } plane[I915_MAX_PIPES];
Chris Wilson63b66e52013-08-08 15:12:06 +020012317
12318 struct intel_transcoder_error_state {
Imre Deakddf9c532013-11-27 22:02:02 +020012319 bool power_domain_on;
Chris Wilson63b66e52013-08-08 15:12:06 +020012320 enum transcoder cpu_transcoder;
12321
12322 u32 conf;
12323
12324 u32 htotal;
12325 u32 hblank;
12326 u32 hsync;
12327 u32 vtotal;
12328 u32 vblank;
12329 u32 vsync;
12330 } transcoder[4];
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012331};
12332
12333struct intel_display_error_state *
12334intel_display_capture_error_state(struct drm_device *dev)
12335{
Jani Nikulafbee40d2014-03-31 14:27:18 +030012336 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012337 struct intel_display_error_state *error;
Chris Wilson63b66e52013-08-08 15:12:06 +020012338 int transcoders[] = {
12339 TRANSCODER_A,
12340 TRANSCODER_B,
12341 TRANSCODER_C,
12342 TRANSCODER_EDP,
12343 };
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012344 int i;
12345
Chris Wilson63b66e52013-08-08 15:12:06 +020012346 if (INTEL_INFO(dev)->num_pipes == 0)
12347 return NULL;
12348
Paulo Zanoni9d1cb912013-11-01 13:32:08 -020012349 error = kzalloc(sizeof(*error), GFP_ATOMIC);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012350 if (error == NULL)
12351 return NULL;
12352
Imre Deak190be112013-11-25 17:15:31 +020012353 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Paulo Zanoniff57f1b2013-05-03 12:15:37 -030012354 error->power_well_driver = I915_READ(HSW_PWR_WELL_DRIVER);
12355
Damien Lespiau52331302012-08-15 19:23:25 +010012356 for_each_pipe(i) {
Imre Deakddf9c532013-11-27 22:02:02 +020012357 error->pipe[i].power_domain_on =
Imre Deakda7e29b2014-02-18 00:02:02 +020012358 intel_display_power_enabled_sw(dev_priv,
12359 POWER_DOMAIN_PIPE(i));
Imre Deakddf9c532013-11-27 22:02:02 +020012360 if (!error->pipe[i].power_domain_on)
Paulo Zanoni9d1cb912013-11-01 13:32:08 -020012361 continue;
12362
Ville Syrjälä5efb3e22014-04-09 13:28:53 +030012363 error->cursor[i].control = I915_READ(CURCNTR(i));
12364 error->cursor[i].position = I915_READ(CURPOS(i));
12365 error->cursor[i].base = I915_READ(CURBASE(i));
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012366
12367 error->plane[i].control = I915_READ(DSPCNTR(i));
12368 error->plane[i].stride = I915_READ(DSPSTRIDE(i));
Paulo Zanoni80ca3782013-03-22 14:20:57 -030012369 if (INTEL_INFO(dev)->gen <= 3) {
Paulo Zanoni51889b32013-03-06 20:03:13 -030012370 error->plane[i].size = I915_READ(DSPSIZE(i));
Paulo Zanoni80ca3782013-03-22 14:20:57 -030012371 error->plane[i].pos = I915_READ(DSPPOS(i));
12372 }
Paulo Zanonica291362013-03-06 20:03:14 -030012373 if (INTEL_INFO(dev)->gen <= 7 && !IS_HASWELL(dev))
12374 error->plane[i].addr = I915_READ(DSPADDR(i));
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012375 if (INTEL_INFO(dev)->gen >= 4) {
12376 error->plane[i].surface = I915_READ(DSPSURF(i));
12377 error->plane[i].tile_offset = I915_READ(DSPTILEOFF(i));
12378 }
12379
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012380 error->pipe[i].source = I915_READ(PIPESRC(i));
Imre Deakf301b1e2014-04-18 15:55:04 +030012381
12382 if (!HAS_PCH_SPLIT(dev))
12383 error->pipe[i].stat = I915_READ(PIPESTAT(i));
Chris Wilson63b66e52013-08-08 15:12:06 +020012384 }
12385
12386 error->num_transcoders = INTEL_INFO(dev)->num_pipes;
12387 if (HAS_DDI(dev_priv->dev))
12388 error->num_transcoders++; /* Account for eDP. */
12389
12390 for (i = 0; i < error->num_transcoders; i++) {
12391 enum transcoder cpu_transcoder = transcoders[i];
12392
Imre Deakddf9c532013-11-27 22:02:02 +020012393 error->transcoder[i].power_domain_on =
Imre Deakda7e29b2014-02-18 00:02:02 +020012394 intel_display_power_enabled_sw(dev_priv,
Paulo Zanoni38cc1da2013-12-20 15:09:41 -020012395 POWER_DOMAIN_TRANSCODER(cpu_transcoder));
Imre Deakddf9c532013-11-27 22:02:02 +020012396 if (!error->transcoder[i].power_domain_on)
Paulo Zanoni9d1cb912013-11-01 13:32:08 -020012397 continue;
12398
Chris Wilson63b66e52013-08-08 15:12:06 +020012399 error->transcoder[i].cpu_transcoder = cpu_transcoder;
12400
12401 error->transcoder[i].conf = I915_READ(PIPECONF(cpu_transcoder));
12402 error->transcoder[i].htotal = I915_READ(HTOTAL(cpu_transcoder));
12403 error->transcoder[i].hblank = I915_READ(HBLANK(cpu_transcoder));
12404 error->transcoder[i].hsync = I915_READ(HSYNC(cpu_transcoder));
12405 error->transcoder[i].vtotal = I915_READ(VTOTAL(cpu_transcoder));
12406 error->transcoder[i].vblank = I915_READ(VBLANK(cpu_transcoder));
12407 error->transcoder[i].vsync = I915_READ(VSYNC(cpu_transcoder));
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012408 }
12409
12410 return error;
12411}
12412
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030012413#define err_printf(e, ...) i915_error_printf(e, __VA_ARGS__)
12414
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012415void
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030012416intel_display_print_error_state(struct drm_i915_error_state_buf *m,
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012417 struct drm_device *dev,
12418 struct intel_display_error_state *error)
12419{
12420 int i;
12421
Chris Wilson63b66e52013-08-08 15:12:06 +020012422 if (!error)
12423 return;
12424
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030012425 err_printf(m, "Num Pipes: %d\n", INTEL_INFO(dev)->num_pipes);
Imre Deak190be112013-11-25 17:15:31 +020012426 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030012427 err_printf(m, "PWR_WELL_CTL2: %08x\n",
Paulo Zanoniff57f1b2013-05-03 12:15:37 -030012428 error->power_well_driver);
Damien Lespiau52331302012-08-15 19:23:25 +010012429 for_each_pipe(i) {
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030012430 err_printf(m, "Pipe [%d]:\n", i);
Imre Deakddf9c532013-11-27 22:02:02 +020012431 err_printf(m, " Power: %s\n",
12432 error->pipe[i].power_domain_on ? "on" : "off");
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030012433 err_printf(m, " SRC: %08x\n", error->pipe[i].source);
Imre Deakf301b1e2014-04-18 15:55:04 +030012434 err_printf(m, " STAT: %08x\n", error->pipe[i].stat);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012435
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030012436 err_printf(m, "Plane [%d]:\n", i);
12437 err_printf(m, " CNTR: %08x\n", error->plane[i].control);
12438 err_printf(m, " STRIDE: %08x\n", error->plane[i].stride);
Paulo Zanoni80ca3782013-03-22 14:20:57 -030012439 if (INTEL_INFO(dev)->gen <= 3) {
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030012440 err_printf(m, " SIZE: %08x\n", error->plane[i].size);
12441 err_printf(m, " POS: %08x\n", error->plane[i].pos);
Paulo Zanoni80ca3782013-03-22 14:20:57 -030012442 }
Paulo Zanoni4b71a572013-03-22 14:19:21 -030012443 if (INTEL_INFO(dev)->gen <= 7 && !IS_HASWELL(dev))
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030012444 err_printf(m, " ADDR: %08x\n", error->plane[i].addr);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012445 if (INTEL_INFO(dev)->gen >= 4) {
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030012446 err_printf(m, " SURF: %08x\n", error->plane[i].surface);
12447 err_printf(m, " TILEOFF: %08x\n", error->plane[i].tile_offset);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012448 }
12449
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030012450 err_printf(m, "Cursor [%d]:\n", i);
12451 err_printf(m, " CNTR: %08x\n", error->cursor[i].control);
12452 err_printf(m, " POS: %08x\n", error->cursor[i].position);
12453 err_printf(m, " BASE: %08x\n", error->cursor[i].base);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012454 }
Chris Wilson63b66e52013-08-08 15:12:06 +020012455
12456 for (i = 0; i < error->num_transcoders; i++) {
Chris Wilson1cf84bb2013-10-21 09:10:33 +010012457 err_printf(m, "CPU transcoder: %c\n",
Chris Wilson63b66e52013-08-08 15:12:06 +020012458 transcoder_name(error->transcoder[i].cpu_transcoder));
Imre Deakddf9c532013-11-27 22:02:02 +020012459 err_printf(m, " Power: %s\n",
12460 error->transcoder[i].power_domain_on ? "on" : "off");
Chris Wilson63b66e52013-08-08 15:12:06 +020012461 err_printf(m, " CONF: %08x\n", error->transcoder[i].conf);
12462 err_printf(m, " HTOTAL: %08x\n", error->transcoder[i].htotal);
12463 err_printf(m, " HBLANK: %08x\n", error->transcoder[i].hblank);
12464 err_printf(m, " HSYNC: %08x\n", error->transcoder[i].hsync);
12465 err_printf(m, " VTOTAL: %08x\n", error->transcoder[i].vtotal);
12466 err_printf(m, " VBLANK: %08x\n", error->transcoder[i].vblank);
12467 err_printf(m, " VSYNC: %08x\n", error->transcoder[i].vsync);
12468 }
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012469}