blob: a68dcce6ac3949c030d538c9a54a19b9ed417d33 [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 Barnesa0c4da242012-06-15 11:55:13 -0700336 .n = { .min = 1, .max = 7 },
Jesse Barnesa0c4da242012-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 Barnesa0c4da242012-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 Barnesa0c4da242012-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 Barnesa0c4da242012-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 Barnesa0c4da242012-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 Barnesa0c4da242012-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 Barnesa0c4da242012-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 Barnesa0c4da242012-06-15 11:55:13 -0700766 }
767 }
768 }
769 }
770 }
Jesse Barnesa0c4da242012-06-15 11:55:13 -0700771
Ville Syrjälä49e497e2013-09-24 21:26:31 +0300772 return found;
Jesse Barnesa0c4da242012-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);
1577 int dpll = DPLL(crtc->pipe);
1578 u32 tmp;
1579
1580 assert_pipe_disabled(dev_priv, crtc->pipe);
1581
1582 BUG_ON(!IS_CHERRYVIEW(dev_priv->dev));
1583
1584 mutex_lock(&dev_priv->dpio_lock);
1585
1586 /* Enable back the 10bit clock to display controller */
1587 tmp = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW14(port));
1588 tmp |= DPIO_DCLKP_EN;
1589 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port), tmp);
1590
1591 /*
1592 * Need to wait > 100ns between dclkp clock enable bit and PLL enable.
1593 */
1594 udelay(1);
1595
1596 /* Enable PLL */
1597 tmp = I915_READ(dpll);
1598 tmp |= DPLL_VCO_ENABLE;
1599 I915_WRITE(dpll, tmp);
1600
1601 /* Check PLL is locked */
1602 if (wait_for(((I915_READ(dpll) & DPLL_LOCK_VLV) == DPLL_LOCK_VLV), 1))
1603 DRM_ERROR("PLL %d failed to lock\n", pipe);
1604
1605 /* Deassert soft data lane reset*/
1606 tmp = vlv_dpio_read(dev_priv, pipe, VLV_PCS_DW0(port));
1607 tmp |= (DPIO_PCS_TX_LANE2_RESET | DPIO_PCS_TX_LANE1_RESET);
1608 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW0(port), tmp);
1609
1610
1611 mutex_unlock(&dev_priv->dpio_lock);
1612}
1613
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001614static void i9xx_enable_pll(struct intel_crtc *crtc)
Daniel Vetter87442f72013-06-06 00:52:17 +02001615{
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001616 struct drm_device *dev = crtc->base.dev;
1617 struct drm_i915_private *dev_priv = dev->dev_private;
1618 int reg = DPLL(crtc->pipe);
1619 u32 dpll = crtc->config.dpll_hw_state.dpll;
Daniel Vetter87442f72013-06-06 00:52:17 +02001620
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001621 assert_pipe_disabled(dev_priv, crtc->pipe);
Daniel Vetter87442f72013-06-06 00:52:17 +02001622
1623 /* No really, not for ILK+ */
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001624 BUG_ON(INTEL_INFO(dev)->gen >= 5);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001625
1626 /* PLL is protected by panel, make sure we can write it */
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001627 if (IS_MOBILE(dev) && !IS_I830(dev))
1628 assert_panel_unlocked(dev_priv, crtc->pipe);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001629
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001630 I915_WRITE(reg, dpll);
1631
1632 /* Wait for the clocks to stabilize. */
1633 POSTING_READ(reg);
1634 udelay(150);
1635
1636 if (INTEL_INFO(dev)->gen >= 4) {
1637 I915_WRITE(DPLL_MD(crtc->pipe),
1638 crtc->config.dpll_hw_state.dpll_md);
1639 } else {
1640 /* The pixel multiplier can only be updated once the
1641 * DPLL is enabled and the clocks are stable.
1642 *
1643 * So write it again.
1644 */
1645 I915_WRITE(reg, dpll);
1646 }
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001647
1648 /* We do this three times for luck */
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001649 I915_WRITE(reg, dpll);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001650 POSTING_READ(reg);
1651 udelay(150); /* wait for warmup */
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001652 I915_WRITE(reg, dpll);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001653 POSTING_READ(reg);
1654 udelay(150); /* wait for warmup */
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02001655 I915_WRITE(reg, dpll);
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001656 POSTING_READ(reg);
1657 udelay(150); /* wait for warmup */
1658}
1659
1660/**
Daniel Vetter50b44a42013-06-05 13:34:33 +02001661 * i9xx_disable_pll - disable a PLL
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001662 * @dev_priv: i915 private structure
1663 * @pipe: pipe PLL to disable
1664 *
1665 * Disable the PLL for @pipe, making sure the pipe is off first.
1666 *
1667 * Note! This is for pre-ILK only.
1668 */
Daniel Vetter50b44a42013-06-05 13:34:33 +02001669static void i9xx_disable_pll(struct drm_i915_private *dev_priv, enum pipe pipe)
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001670{
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001671 /* Don't disable pipe A or pipe A PLLs if needed */
1672 if (pipe == PIPE_A && (dev_priv->quirks & QUIRK_PIPEA_FORCE))
1673 return;
1674
1675 /* Make sure the pipe isn't still relying on us */
1676 assert_pipe_disabled(dev_priv, pipe);
1677
Daniel Vetter50b44a42013-06-05 13:34:33 +02001678 I915_WRITE(DPLL(pipe), 0);
1679 POSTING_READ(DPLL(pipe));
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001680}
1681
Jesse Barnesf6071162013-10-01 10:41:38 -07001682static void vlv_disable_pll(struct drm_i915_private *dev_priv, enum pipe pipe)
1683{
1684 u32 val = 0;
1685
1686 /* Make sure the pipe isn't still relying on us */
1687 assert_pipe_disabled(dev_priv, pipe);
1688
Imre Deake5cbfbf2014-01-09 17:08:16 +02001689 /*
1690 * Leave integrated clock source and reference clock enabled for pipe B.
1691 * The latter is needed for VGA hotplug / manual detection.
1692 */
Jesse Barnesf6071162013-10-01 10:41:38 -07001693 if (pipe == PIPE_B)
Imre Deake5cbfbf2014-01-09 17:08:16 +02001694 val = DPLL_INTEGRATED_CRI_CLK_VLV | DPLL_REFA_CLK_ENABLE_VLV;
Jesse Barnesf6071162013-10-01 10:41:38 -07001695 I915_WRITE(DPLL(pipe), val);
1696 POSTING_READ(DPLL(pipe));
Chon Ming Lee076ed3b2014-04-09 13:28:17 +03001697
1698}
1699
1700static void chv_disable_pll(struct drm_i915_private *dev_priv, enum pipe pipe)
1701{
1702 int dpll = DPLL(pipe);
1703 u32 val;
1704
1705 /* Set PLL en = 0 */
1706 val = I915_READ(dpll);
1707 val &= ~DPLL_VCO_ENABLE;
1708 I915_WRITE(dpll, val);
1709
Jesse Barnesf6071162013-10-01 10:41:38 -07001710}
1711
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001712void vlv_wait_port_ready(struct drm_i915_private *dev_priv,
1713 struct intel_digital_port *dport)
Jesse Barnes89b667f2013-04-18 14:51:36 -07001714{
1715 u32 port_mask;
Chon Ming Lee00fc31b2014-04-09 13:28:15 +03001716 int dpll_reg;
Jesse Barnes89b667f2013-04-18 14:51:36 -07001717
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001718 switch (dport->port) {
1719 case PORT_B:
Jesse Barnes89b667f2013-04-18 14:51:36 -07001720 port_mask = DPLL_PORTB_READY_MASK;
Chon Ming Lee00fc31b2014-04-09 13:28:15 +03001721 dpll_reg = DPLL(0);
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001722 break;
1723 case PORT_C:
Jesse Barnes89b667f2013-04-18 14:51:36 -07001724 port_mask = DPLL_PORTC_READY_MASK;
Chon Ming Lee00fc31b2014-04-09 13:28:15 +03001725 dpll_reg = DPLL(0);
1726 break;
1727 case PORT_D:
1728 port_mask = DPLL_PORTD_READY_MASK;
1729 dpll_reg = DPIO_PHY_STATUS;
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001730 break;
1731 default:
1732 BUG();
1733 }
Jesse Barnes89b667f2013-04-18 14:51:36 -07001734
Chon Ming Lee00fc31b2014-04-09 13:28:15 +03001735 if (wait_for((I915_READ(dpll_reg) & port_mask) == 0, 1000))
Jesse Barnes89b667f2013-04-18 14:51:36 -07001736 WARN(1, "timed out waiting for port %c ready: 0x%08x\n",
Chon Ming Lee00fc31b2014-04-09 13:28:15 +03001737 port_name(dport->port), I915_READ(dpll_reg));
Jesse Barnes89b667f2013-04-18 14:51:36 -07001738}
1739
Daniel Vetterb14b1052014-04-24 23:55:13 +02001740static void intel_prepare_shared_dpll(struct intel_crtc *crtc)
1741{
1742 struct drm_device *dev = crtc->base.dev;
1743 struct drm_i915_private *dev_priv = dev->dev_private;
1744 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
1745
1746 WARN_ON(!pll->refcount);
1747 if (pll->active == 0) {
1748 DRM_DEBUG_DRIVER("setting up %s\n", pll->name);
1749 WARN_ON(pll->on);
1750 assert_shared_dpll_disabled(dev_priv, pll);
1751
1752 pll->mode_set(dev_priv, pll);
1753 }
1754}
1755
Jesse Barnes63d7bbe2011-01-04 15:09:33 -08001756/**
Daniel Vetter85b38942014-04-24 23:55:14 +02001757 * intel_enable_shared_dpll - enable PCH PLL
Jesse Barnes92f25842011-01-04 15:09:34 -08001758 * @dev_priv: i915 private structure
1759 * @pipe: pipe PLL to enable
1760 *
1761 * The PCH PLL needs to be enabled before the PCH transcoder, since it
1762 * drives the transcoder clock.
1763 */
Daniel Vetter85b38942014-04-24 23:55:14 +02001764static void intel_enable_shared_dpll(struct intel_crtc *crtc)
Jesse Barnes92f25842011-01-04 15:09:34 -08001765{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001766 struct drm_device *dev = crtc->base.dev;
1767 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vettere2b78262013-06-07 23:10:03 +02001768 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
Jesse Barnes92f25842011-01-04 15:09:34 -08001769
Daniel Vetter87a875b2013-06-05 13:34:19 +02001770 if (WARN_ON(pll == NULL))
Chris Wilson48da64a2012-05-13 20:16:12 +01001771 return;
1772
1773 if (WARN_ON(pll->refcount == 0))
1774 return;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001775
Daniel Vetter46edb022013-06-05 13:34:12 +02001776 DRM_DEBUG_KMS("enable %s (active %d, on? %d)for crtc %d\n",
1777 pll->name, pll->active, pll->on,
Daniel Vettere2b78262013-06-07 23:10:03 +02001778 crtc->base.base.id);
Jesse Barnes92f25842011-01-04 15:09:34 -08001779
Daniel Vettercdbd2312013-06-05 13:34:03 +02001780 if (pll->active++) {
1781 WARN_ON(!pll->on);
Daniel Vettere9d69442013-06-05 13:34:15 +02001782 assert_shared_dpll_enabled(dev_priv, pll);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001783 return;
1784 }
Daniel Vetterf4a091c2013-06-10 17:28:22 +02001785 WARN_ON(pll->on);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001786
Daniel Vetter46edb022013-06-05 13:34:12 +02001787 DRM_DEBUG_KMS("enabling %s\n", pll->name);
Daniel Vettere7b903d2013-06-05 13:34:14 +02001788 pll->enable(dev_priv, pll);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001789 pll->on = true;
Jesse Barnes92f25842011-01-04 15:09:34 -08001790}
1791
Daniel Vettere2b78262013-06-07 23:10:03 +02001792static void intel_disable_shared_dpll(struct intel_crtc *crtc)
Jesse Barnes92f25842011-01-04 15:09:34 -08001793{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001794 struct drm_device *dev = crtc->base.dev;
1795 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vettere2b78262013-06-07 23:10:03 +02001796 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
Jesse Barnes4c609cb2011-09-02 12:52:11 -07001797
Jesse Barnes92f25842011-01-04 15:09:34 -08001798 /* PCH only available on ILK+ */
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001799 BUG_ON(INTEL_INFO(dev)->gen < 5);
Daniel Vetter87a875b2013-06-05 13:34:19 +02001800 if (WARN_ON(pll == NULL))
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001801 return;
1802
Chris Wilson48da64a2012-05-13 20:16:12 +01001803 if (WARN_ON(pll->refcount == 0))
1804 return;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001805
Daniel Vetter46edb022013-06-05 13:34:12 +02001806 DRM_DEBUG_KMS("disable %s (active %d, on? %d) for crtc %d\n",
1807 pll->name, pll->active, pll->on,
Daniel Vettere2b78262013-06-07 23:10:03 +02001808 crtc->base.base.id);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001809
Chris Wilson48da64a2012-05-13 20:16:12 +01001810 if (WARN_ON(pll->active == 0)) {
Daniel Vettere9d69442013-06-05 13:34:15 +02001811 assert_shared_dpll_disabled(dev_priv, pll);
Chris Wilson48da64a2012-05-13 20:16:12 +01001812 return;
1813 }
1814
Daniel Vettere9d69442013-06-05 13:34:15 +02001815 assert_shared_dpll_enabled(dev_priv, pll);
Daniel Vetterf4a091c2013-06-10 17:28:22 +02001816 WARN_ON(!pll->on);
Daniel Vettercdbd2312013-06-05 13:34:03 +02001817 if (--pll->active)
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001818 return;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001819
Daniel Vetter46edb022013-06-05 13:34:12 +02001820 DRM_DEBUG_KMS("disabling %s\n", pll->name);
Daniel Vettere7b903d2013-06-05 13:34:14 +02001821 pll->disable(dev_priv, pll);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01001822 pll->on = false;
Jesse Barnes92f25842011-01-04 15:09:34 -08001823}
1824
Paulo Zanonib8a4f402012-10-31 18:12:42 -02001825static void ironlake_enable_pch_transcoder(struct drm_i915_private *dev_priv,
1826 enum pipe pipe)
Jesse Barnes040484a2011-01-03 12:14:26 -08001827{
Daniel Vetter23670b322012-11-01 09:15:30 +01001828 struct drm_device *dev = dev_priv->dev;
Paulo Zanoni7c26e5c2012-02-14 17:07:09 -02001829 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
Daniel Vettere2b78262013-06-07 23:10:03 +02001830 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter23670b322012-11-01 09:15:30 +01001831 uint32_t reg, val, pipeconf_val;
Jesse Barnes040484a2011-01-03 12:14:26 -08001832
1833 /* PCH only available on ILK+ */
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001834 BUG_ON(INTEL_INFO(dev)->gen < 5);
Jesse Barnes040484a2011-01-03 12:14:26 -08001835
1836 /* Make sure PCH DPLL is enabled */
Daniel Vettere72f9fb2013-06-05 13:34:06 +02001837 assert_shared_dpll_enabled(dev_priv,
Daniel Vettere9d69442013-06-05 13:34:15 +02001838 intel_crtc_to_shared_dpll(intel_crtc));
Jesse Barnes040484a2011-01-03 12:14:26 -08001839
1840 /* FDI must be feeding us bits for PCH ports */
1841 assert_fdi_tx_enabled(dev_priv, pipe);
1842 assert_fdi_rx_enabled(dev_priv, pipe);
1843
Daniel Vetter23670b322012-11-01 09:15:30 +01001844 if (HAS_PCH_CPT(dev)) {
1845 /* Workaround: Set the timing override bit before enabling the
1846 * pch transcoder. */
1847 reg = TRANS_CHICKEN2(pipe);
1848 val = I915_READ(reg);
1849 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
1850 I915_WRITE(reg, val);
Eugeni Dodonov59c859d2012-05-09 15:37:19 -03001851 }
Daniel Vetter23670b322012-11-01 09:15:30 +01001852
Daniel Vetterab9412b2013-05-03 11:49:46 +02001853 reg = PCH_TRANSCONF(pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08001854 val = I915_READ(reg);
Paulo Zanoni5f7f7262012-02-03 17:47:15 -02001855 pipeconf_val = I915_READ(PIPECONF(pipe));
Jesse Barnese9bcff52011-06-24 12:19:20 -07001856
1857 if (HAS_PCH_IBX(dev_priv->dev)) {
1858 /*
1859 * make the BPC in transcoder be consistent with
1860 * that in pipeconf reg.
1861 */
Daniel Vetterdfd07d72012-12-17 11:21:38 +01001862 val &= ~PIPECONF_BPC_MASK;
1863 val |= pipeconf_val & PIPECONF_BPC_MASK;
Jesse Barnese9bcff52011-06-24 12:19:20 -07001864 }
Paulo Zanoni5f7f7262012-02-03 17:47:15 -02001865
1866 val &= ~TRANS_INTERLACE_MASK;
1867 if ((pipeconf_val & PIPECONF_INTERLACE_MASK) == PIPECONF_INTERLACED_ILK)
Paulo Zanoni7c26e5c2012-02-14 17:07:09 -02001868 if (HAS_PCH_IBX(dev_priv->dev) &&
1869 intel_pipe_has_type(crtc, INTEL_OUTPUT_SDVO))
1870 val |= TRANS_LEGACY_INTERLACED_ILK;
1871 else
1872 val |= TRANS_INTERLACED;
Paulo Zanoni5f7f7262012-02-03 17:47:15 -02001873 else
1874 val |= TRANS_PROGRESSIVE;
1875
Jesse Barnes040484a2011-01-03 12:14:26 -08001876 I915_WRITE(reg, val | TRANS_ENABLE);
1877 if (wait_for(I915_READ(reg) & TRANS_STATE_ENABLE, 100))
Ville Syrjälä4bb6f1f2013-04-17 17:48:50 +03001878 DRM_ERROR("failed to enable transcoder %c\n", pipe_name(pipe));
Jesse Barnes040484a2011-01-03 12:14:26 -08001879}
1880
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001881static void lpt_enable_pch_transcoder(struct drm_i915_private *dev_priv,
Paulo Zanoni937bb612012-10-31 18:12:47 -02001882 enum transcoder cpu_transcoder)
Jesse Barnes040484a2011-01-03 12:14:26 -08001883{
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001884 u32 val, pipeconf_val;
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001885
1886 /* PCH only available on ILK+ */
Damien Lespiau3d13ef22014-02-07 19:12:47 +00001887 BUG_ON(INTEL_INFO(dev_priv->dev)->gen < 5);
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001888
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001889 /* FDI must be feeding us bits for PCH ports */
Daniel Vetter1a240d42012-11-29 22:18:51 +01001890 assert_fdi_tx_enabled(dev_priv, (enum pipe) cpu_transcoder);
Paulo Zanoni937bb612012-10-31 18:12:47 -02001891 assert_fdi_rx_enabled(dev_priv, TRANSCODER_A);
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001892
Paulo Zanoni223a6fd2012-10-31 18:12:52 -02001893 /* Workaround: set timing override bit. */
1894 val = I915_READ(_TRANSA_CHICKEN2);
Daniel Vetter23670b322012-11-01 09:15:30 +01001895 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
Paulo Zanoni223a6fd2012-10-31 18:12:52 -02001896 I915_WRITE(_TRANSA_CHICKEN2, val);
1897
Paulo Zanoni25f3ef12012-10-31 18:12:49 -02001898 val = TRANS_ENABLE;
Paulo Zanoni937bb612012-10-31 18:12:47 -02001899 pipeconf_val = I915_READ(PIPECONF(cpu_transcoder));
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001900
Paulo Zanoni9a76b1c2012-10-31 18:12:48 -02001901 if ((pipeconf_val & PIPECONF_INTERLACE_MASK_HSW) ==
1902 PIPECONF_INTERLACED_ILK)
Paulo Zanonia35f2672012-10-31 18:12:45 -02001903 val |= TRANS_INTERLACED;
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001904 else
1905 val |= TRANS_PROGRESSIVE;
1906
Daniel Vetterab9412b2013-05-03 11:49:46 +02001907 I915_WRITE(LPT_TRANSCONF, val);
1908 if (wait_for(I915_READ(LPT_TRANSCONF) & TRANS_STATE_ENABLE, 100))
Paulo Zanoni937bb612012-10-31 18:12:47 -02001909 DRM_ERROR("Failed to enable PCH transcoder\n");
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001910}
1911
Paulo Zanonib8a4f402012-10-31 18:12:42 -02001912static void ironlake_disable_pch_transcoder(struct drm_i915_private *dev_priv,
1913 enum pipe pipe)
Jesse Barnes040484a2011-01-03 12:14:26 -08001914{
Daniel Vetter23670b322012-11-01 09:15:30 +01001915 struct drm_device *dev = dev_priv->dev;
1916 uint32_t reg, val;
Jesse Barnes040484a2011-01-03 12:14:26 -08001917
1918 /* FDI relies on the transcoder */
1919 assert_fdi_tx_disabled(dev_priv, pipe);
1920 assert_fdi_rx_disabled(dev_priv, pipe);
1921
Jesse Barnes291906f2011-02-02 12:28:03 -08001922 /* Ports must be off as well */
1923 assert_pch_ports_disabled(dev_priv, pipe);
1924
Daniel Vetterab9412b2013-05-03 11:49:46 +02001925 reg = PCH_TRANSCONF(pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08001926 val = I915_READ(reg);
1927 val &= ~TRANS_ENABLE;
1928 I915_WRITE(reg, val);
1929 /* wait for PCH transcoder off, transcoder state */
1930 if (wait_for((I915_READ(reg) & TRANS_STATE_ENABLE) == 0, 50))
Ville Syrjälä4bb6f1f2013-04-17 17:48:50 +03001931 DRM_ERROR("failed to disable transcoder %c\n", pipe_name(pipe));
Daniel Vetter23670b322012-11-01 09:15:30 +01001932
1933 if (!HAS_PCH_IBX(dev)) {
1934 /* Workaround: Clear the timing override chicken bit again. */
1935 reg = TRANS_CHICKEN2(pipe);
1936 val = I915_READ(reg);
1937 val &= ~TRANS_CHICKEN2_TIMING_OVERRIDE;
1938 I915_WRITE(reg, val);
1939 }
Jesse Barnes040484a2011-01-03 12:14:26 -08001940}
1941
Paulo Zanoniab4d9662012-10-31 18:12:55 -02001942static void lpt_disable_pch_transcoder(struct drm_i915_private *dev_priv)
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001943{
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001944 u32 val;
1945
Daniel Vetterab9412b2013-05-03 11:49:46 +02001946 val = I915_READ(LPT_TRANSCONF);
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001947 val &= ~TRANS_ENABLE;
Daniel Vetterab9412b2013-05-03 11:49:46 +02001948 I915_WRITE(LPT_TRANSCONF, val);
Paulo Zanoni8fb033d2012-10-31 18:12:43 -02001949 /* wait for PCH transcoder off, transcoder state */
Daniel Vetterab9412b2013-05-03 11:49:46 +02001950 if (wait_for((I915_READ(LPT_TRANSCONF) & TRANS_STATE_ENABLE) == 0, 50))
Paulo Zanoni8a52fd92012-10-31 18:12:51 -02001951 DRM_ERROR("Failed to disable PCH transcoder\n");
Paulo Zanoni223a6fd2012-10-31 18:12:52 -02001952
1953 /* Workaround: clear timing override bit. */
1954 val = I915_READ(_TRANSA_CHICKEN2);
Daniel Vetter23670b322012-11-01 09:15:30 +01001955 val &= ~TRANS_CHICKEN2_TIMING_OVERRIDE;
Paulo Zanoni223a6fd2012-10-31 18:12:52 -02001956 I915_WRITE(_TRANSA_CHICKEN2, val);
Jesse Barnes92f25842011-01-04 15:09:34 -08001957}
1958
1959/**
Chris Wilson309cfea2011-01-28 13:54:53 +00001960 * intel_enable_pipe - enable a pipe, asserting requirements
Paulo Zanoni03722642014-01-17 13:51:09 -02001961 * @crtc: crtc responsible for the pipe
Jesse Barnesb24e7172011-01-04 15:09:30 -08001962 *
Paulo Zanoni03722642014-01-17 13:51:09 -02001963 * Enable @crtc's pipe, making sure that various hardware specific requirements
Jesse Barnesb24e7172011-01-04 15:09:30 -08001964 * are met, if applicable, e.g. PLL enabled, LVDS pairs enabled, etc.
Jesse Barnesb24e7172011-01-04 15:09:30 -08001965 */
Paulo Zanonie1fdc472014-01-17 13:51:12 -02001966static void intel_enable_pipe(struct intel_crtc *crtc)
Jesse Barnesb24e7172011-01-04 15:09:30 -08001967{
Paulo Zanoni03722642014-01-17 13:51:09 -02001968 struct drm_device *dev = crtc->base.dev;
1969 struct drm_i915_private *dev_priv = dev->dev_private;
1970 enum pipe pipe = crtc->pipe;
Paulo Zanoni702e7a52012-10-23 18:29:59 -02001971 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
1972 pipe);
Daniel Vetter1a240d42012-11-29 22:18:51 +01001973 enum pipe pch_transcoder;
Jesse Barnesb24e7172011-01-04 15:09:30 -08001974 int reg;
1975 u32 val;
1976
Daniel Vetter58c6eaa2013-04-11 16:29:09 +02001977 assert_planes_disabled(dev_priv, pipe);
Jani Nikula93ce0ba2013-09-13 11:03:08 +03001978 assert_cursor_disabled(dev_priv, pipe);
Daniel Vetter58c6eaa2013-04-11 16:29:09 +02001979 assert_sprites_disabled(dev_priv, pipe);
1980
Paulo Zanoni681e5812012-12-06 11:12:38 -02001981 if (HAS_PCH_LPT(dev_priv->dev))
Paulo Zanonicc391bb2012-11-20 13:27:37 -02001982 pch_transcoder = TRANSCODER_A;
1983 else
1984 pch_transcoder = pipe;
1985
Jesse Barnesb24e7172011-01-04 15:09:30 -08001986 /*
1987 * A pipe without a PLL won't actually be able to drive bits from
1988 * a plane. On ILK+ the pipe PLLs are integrated, so we don't
1989 * need the check.
1990 */
1991 if (!HAS_PCH_SPLIT(dev_priv->dev))
Paulo Zanonifbf32182014-01-17 13:51:11 -02001992 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_DSI))
Jani Nikula23538ef2013-08-27 15:12:22 +03001993 assert_dsi_pll_enabled(dev_priv);
1994 else
1995 assert_pll_enabled(dev_priv, pipe);
Jesse Barnes040484a2011-01-03 12:14:26 -08001996 else {
Paulo Zanoni30421c42014-01-17 13:51:10 -02001997 if (crtc->config.has_pch_encoder) {
Jesse Barnes040484a2011-01-03 12:14:26 -08001998 /* if driving the PCH, we need FDI enabled */
Paulo Zanonicc391bb2012-11-20 13:27:37 -02001999 assert_fdi_rx_pll_enabled(dev_priv, pch_transcoder);
Daniel Vetter1a240d42012-11-29 22:18:51 +01002000 assert_fdi_tx_pll_enabled(dev_priv,
2001 (enum pipe) cpu_transcoder);
Jesse Barnes040484a2011-01-03 12:14:26 -08002002 }
2003 /* FIXME: assert CPU port conditions for SNB+ */
2004 }
Jesse Barnesb24e7172011-01-04 15:09:30 -08002005
Paulo Zanoni702e7a52012-10-23 18:29:59 -02002006 reg = PIPECONF(cpu_transcoder);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002007 val = I915_READ(reg);
Paulo Zanoni7ad25d42014-01-17 13:51:13 -02002008 if (val & PIPECONF_ENABLE) {
2009 WARN_ON(!(pipe == PIPE_A &&
2010 dev_priv->quirks & QUIRK_PIPEA_FORCE));
Chris Wilson00d70b12011-03-17 07:18:29 +00002011 return;
Paulo Zanoni7ad25d42014-01-17 13:51:13 -02002012 }
Chris Wilson00d70b12011-03-17 07:18:29 +00002013
2014 I915_WRITE(reg, val | PIPECONF_ENABLE);
Paulo Zanoni851855d2013-12-19 19:12:29 -02002015 POSTING_READ(reg);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002016}
2017
2018/**
Chris Wilson309cfea2011-01-28 13:54:53 +00002019 * intel_disable_pipe - disable a pipe, asserting requirements
Jesse Barnesb24e7172011-01-04 15:09:30 -08002020 * @dev_priv: i915 private structure
2021 * @pipe: pipe to disable
2022 *
2023 * Disable @pipe, making sure that various hardware specific requirements
2024 * are met, if applicable, e.g. plane disabled, panel fitter off, etc.
2025 *
2026 * @pipe should be %PIPE_A or %PIPE_B.
2027 *
2028 * Will wait until the pipe has shut down before returning.
2029 */
2030static void intel_disable_pipe(struct drm_i915_private *dev_priv,
2031 enum pipe pipe)
2032{
Paulo Zanoni702e7a52012-10-23 18:29:59 -02002033 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
2034 pipe);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002035 int reg;
2036 u32 val;
2037
2038 /*
2039 * Make sure planes won't keep trying to pump pixels to us,
2040 * or we might hang the display.
2041 */
2042 assert_planes_disabled(dev_priv, pipe);
Jani Nikula93ce0ba2013-09-13 11:03:08 +03002043 assert_cursor_disabled(dev_priv, pipe);
Jesse Barnes19332d72013-03-28 09:55:38 -07002044 assert_sprites_disabled(dev_priv, pipe);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002045
2046 /* Don't disable pipe A or pipe A PLLs if needed */
2047 if (pipe == PIPE_A && (dev_priv->quirks & QUIRK_PIPEA_FORCE))
2048 return;
2049
Paulo Zanoni702e7a52012-10-23 18:29:59 -02002050 reg = PIPECONF(cpu_transcoder);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002051 val = I915_READ(reg);
Chris Wilson00d70b12011-03-17 07:18:29 +00002052 if ((val & PIPECONF_ENABLE) == 0)
2053 return;
2054
2055 I915_WRITE(reg, val & ~PIPECONF_ENABLE);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002056 intel_wait_for_pipe_off(dev_priv->dev, pipe);
2057}
2058
Keith Packardd74362c2011-07-28 14:47:14 -07002059/*
2060 * Plane regs are double buffered, going from enabled->disabled needs a
2061 * trigger in order to latch. The display address reg provides this.
2062 */
Ville Syrjälä1dba99f2013-10-01 18:02:18 +03002063void intel_flush_primary_plane(struct drm_i915_private *dev_priv,
2064 enum plane plane)
Keith Packardd74362c2011-07-28 14:47:14 -07002065{
Damien Lespiau3d13ef22014-02-07 19:12:47 +00002066 struct drm_device *dev = dev_priv->dev;
2067 u32 reg = INTEL_INFO(dev)->gen >= 4 ? DSPSURF(plane) : DSPADDR(plane);
Ville Syrjälä1dba99f2013-10-01 18:02:18 +03002068
2069 I915_WRITE(reg, I915_READ(reg));
2070 POSTING_READ(reg);
Keith Packardd74362c2011-07-28 14:47:14 -07002071}
2072
Jesse Barnesb24e7172011-01-04 15:09:30 -08002073/**
Matt Roper262ca2b2014-03-18 17:22:55 -07002074 * intel_enable_primary_hw_plane - enable the primary plane on a given pipe
Jesse Barnesb24e7172011-01-04 15:09:30 -08002075 * @dev_priv: i915 private structure
2076 * @plane: plane to enable
2077 * @pipe: pipe being fed
2078 *
2079 * Enable @plane on @pipe, making sure that @pipe is running first.
2080 */
Matt Roper262ca2b2014-03-18 17:22:55 -07002081static void intel_enable_primary_hw_plane(struct drm_i915_private *dev_priv,
2082 enum plane plane, enum pipe pipe)
Jesse Barnesb24e7172011-01-04 15:09:30 -08002083{
Ville Syrjälä939c2fe2013-10-01 18:02:10 +03002084 struct intel_crtc *intel_crtc =
2085 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002086 int reg;
2087 u32 val;
2088
2089 /* If the pipe isn't enabled, we can't pump pixels and may hang */
2090 assert_pipe_enabled(dev_priv, pipe);
2091
Ville Syrjälä98ec7732014-04-30 17:43:01 +03002092 if (intel_crtc->primary_enabled)
2093 return;
Ville Syrjälä0037f712013-10-01 18:02:20 +03002094
Ville Syrjälä4c445e02013-10-09 17:24:58 +03002095 intel_crtc->primary_enabled = true;
Ville Syrjälä939c2fe2013-10-01 18:02:10 +03002096
Jesse Barnesb24e7172011-01-04 15:09:30 -08002097 reg = DSPCNTR(plane);
2098 val = I915_READ(reg);
Ville Syrjälä10efa932014-04-28 15:53:25 +03002099 WARN_ON(val & DISPLAY_PLANE_ENABLE);
Chris Wilson00d70b12011-03-17 07:18:29 +00002100
2101 I915_WRITE(reg, val | DISPLAY_PLANE_ENABLE);
Ville Syrjälä1dba99f2013-10-01 18:02:18 +03002102 intel_flush_primary_plane(dev_priv, plane);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002103 intel_wait_for_vblank(dev_priv->dev, pipe);
2104}
2105
Jesse Barnesb24e7172011-01-04 15:09:30 -08002106/**
Matt Roper262ca2b2014-03-18 17:22:55 -07002107 * intel_disable_primary_hw_plane - disable the primary hardware plane
Jesse Barnesb24e7172011-01-04 15:09:30 -08002108 * @dev_priv: i915 private structure
2109 * @plane: plane to disable
2110 * @pipe: pipe consuming the data
2111 *
2112 * Disable @plane; should be an independent operation.
2113 */
Matt Roper262ca2b2014-03-18 17:22:55 -07002114static void intel_disable_primary_hw_plane(struct drm_i915_private *dev_priv,
2115 enum plane plane, enum pipe pipe)
Jesse Barnesb24e7172011-01-04 15:09:30 -08002116{
Ville Syrjälä939c2fe2013-10-01 18:02:10 +03002117 struct intel_crtc *intel_crtc =
2118 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002119 int reg;
2120 u32 val;
2121
Ville Syrjälä98ec7732014-04-30 17:43:01 +03002122 if (!intel_crtc->primary_enabled)
2123 return;
Ville Syrjälä0037f712013-10-01 18:02:20 +03002124
Ville Syrjälä4c445e02013-10-09 17:24:58 +03002125 intel_crtc->primary_enabled = false;
Ville Syrjälä939c2fe2013-10-01 18:02:10 +03002126
Jesse Barnesb24e7172011-01-04 15:09:30 -08002127 reg = DSPCNTR(plane);
2128 val = I915_READ(reg);
Ville Syrjälä10efa932014-04-28 15:53:25 +03002129 WARN_ON((val & DISPLAY_PLANE_ENABLE) == 0);
Chris Wilson00d70b12011-03-17 07:18:29 +00002130
2131 I915_WRITE(reg, val & ~DISPLAY_PLANE_ENABLE);
Ville Syrjälä1dba99f2013-10-01 18:02:18 +03002132 intel_flush_primary_plane(dev_priv, plane);
Jesse Barnesb24e7172011-01-04 15:09:30 -08002133 intel_wait_for_vblank(dev_priv->dev, pipe);
2134}
2135
Chris Wilson693db182013-03-05 14:52:39 +00002136static bool need_vtd_wa(struct drm_device *dev)
2137{
2138#ifdef CONFIG_INTEL_IOMMU
2139 if (INTEL_INFO(dev)->gen >= 6 && intel_iommu_gfx_mapped)
2140 return true;
2141#endif
2142 return false;
2143}
2144
Jesse Barnesa57ce0b2014-02-07 12:10:35 -08002145static int intel_align_height(struct drm_device *dev, int height, bool tiled)
2146{
2147 int tile_height;
2148
2149 tile_height = tiled ? (IS_GEN2(dev) ? 16 : 8) : 1;
2150 return ALIGN(height, tile_height);
2151}
2152
Chris Wilson127bd2a2010-07-23 23:32:05 +01002153int
Chris Wilson48b956c2010-09-14 12:50:34 +01002154intel_pin_and_fence_fb_obj(struct drm_device *dev,
Chris Wilson05394f32010-11-08 19:18:58 +00002155 struct drm_i915_gem_object *obj,
Chris Wilson919926a2010-11-12 13:42:53 +00002156 struct intel_ring_buffer *pipelined)
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002157{
Chris Wilsonce453d82011-02-21 14:43:56 +00002158 struct drm_i915_private *dev_priv = dev->dev_private;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002159 u32 alignment;
2160 int ret;
2161
Chris Wilson05394f32010-11-08 19:18:58 +00002162 switch (obj->tiling_mode) {
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002163 case I915_TILING_NONE:
Chris Wilson534843d2010-07-05 18:01:46 +01002164 if (IS_BROADWATER(dev) || IS_CRESTLINE(dev))
2165 alignment = 128 * 1024;
Chris Wilsona6c45cf2010-09-17 00:32:17 +01002166 else if (INTEL_INFO(dev)->gen >= 4)
Chris Wilson534843d2010-07-05 18:01:46 +01002167 alignment = 4 * 1024;
2168 else
2169 alignment = 64 * 1024;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002170 break;
2171 case I915_TILING_X:
2172 /* pin() will align the object as required by fence */
2173 alignment = 0;
2174 break;
2175 case I915_TILING_Y:
Daniel Vetter80075d42013-10-09 21:23:52 +02002176 WARN(1, "Y tiled bo slipped through, driver bug!\n");
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002177 return -EINVAL;
2178 default:
2179 BUG();
2180 }
2181
Chris Wilson693db182013-03-05 14:52:39 +00002182 /* Note that the w/a also requires 64 PTE of padding following the
2183 * bo. We currently fill all unused PTE with the shadow page and so
2184 * we should always have valid PTE following the scanout preventing
2185 * the VT-d warning.
2186 */
2187 if (need_vtd_wa(dev) && alignment < 256 * 1024)
2188 alignment = 256 * 1024;
2189
Chris Wilsonce453d82011-02-21 14:43:56 +00002190 dev_priv->mm.interruptible = false;
Chris Wilson2da3b9b2011-04-14 09:41:17 +01002191 ret = i915_gem_object_pin_to_display_plane(obj, alignment, pipelined);
Chris Wilson48b956c2010-09-14 12:50:34 +01002192 if (ret)
Chris Wilsonce453d82011-02-21 14:43:56 +00002193 goto err_interruptible;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002194
2195 /* Install a fence for tiled scan-out. Pre-i965 always needs a
2196 * fence, whereas 965+ only requires a fence if using
2197 * framebuffer compression. For simplicity, we always install
2198 * a fence as the cost is not that onerous.
2199 */
Chris Wilson06d98132012-04-17 15:31:24 +01002200 ret = i915_gem_object_get_fence(obj);
Chris Wilson9a5a53b2012-03-22 15:10:00 +00002201 if (ret)
2202 goto err_unpin;
Chris Wilson1690e1e2011-12-14 13:57:08 +01002203
Chris Wilson9a5a53b2012-03-22 15:10:00 +00002204 i915_gem_object_pin_fence(obj);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002205
Chris Wilsonce453d82011-02-21 14:43:56 +00002206 dev_priv->mm.interruptible = true;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002207 return 0;
Chris Wilson48b956c2010-09-14 12:50:34 +01002208
2209err_unpin:
Chris Wilsoncc98b412013-08-09 12:25:09 +01002210 i915_gem_object_unpin_from_display_plane(obj);
Chris Wilsonce453d82011-02-21 14:43:56 +00002211err_interruptible:
2212 dev_priv->mm.interruptible = true;
Chris Wilson48b956c2010-09-14 12:50:34 +01002213 return ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002214}
2215
Chris Wilson1690e1e2011-12-14 13:57:08 +01002216void intel_unpin_fb_obj(struct drm_i915_gem_object *obj)
2217{
2218 i915_gem_object_unpin_fence(obj);
Chris Wilsoncc98b412013-08-09 12:25:09 +01002219 i915_gem_object_unpin_from_display_plane(obj);
Chris Wilson1690e1e2011-12-14 13:57:08 +01002220}
2221
Daniel Vetterc2c75132012-07-05 12:17:30 +02002222/* Computes the linear offset to the base tile and adjusts x, y. bytes per pixel
2223 * is assumed to be a power-of-two. */
Chris Wilsonbc752862013-02-21 20:04:31 +00002224unsigned long intel_gen4_compute_page_offset(int *x, int *y,
2225 unsigned int tiling_mode,
2226 unsigned int cpp,
2227 unsigned int pitch)
Daniel Vetterc2c75132012-07-05 12:17:30 +02002228{
Chris Wilsonbc752862013-02-21 20:04:31 +00002229 if (tiling_mode != I915_TILING_NONE) {
2230 unsigned int tile_rows, tiles;
Daniel Vetterc2c75132012-07-05 12:17:30 +02002231
Chris Wilsonbc752862013-02-21 20:04:31 +00002232 tile_rows = *y / 8;
2233 *y %= 8;
Daniel Vetterc2c75132012-07-05 12:17:30 +02002234
Chris Wilsonbc752862013-02-21 20:04:31 +00002235 tiles = *x / (512/cpp);
2236 *x %= 512/cpp;
2237
2238 return tile_rows * pitch * 8 + tiles * 4096;
2239 } else {
2240 unsigned int offset;
2241
2242 offset = *y * pitch + *x * cpp;
2243 *y = 0;
2244 *x = (offset & 4095) / cpp;
2245 return offset & -4096;
2246 }
Daniel Vetterc2c75132012-07-05 12:17:30 +02002247}
2248
Jesse Barnes46f297f2014-03-07 08:57:48 -08002249int intel_format_to_fourcc(int format)
2250{
2251 switch (format) {
2252 case DISPPLANE_8BPP:
2253 return DRM_FORMAT_C8;
2254 case DISPPLANE_BGRX555:
2255 return DRM_FORMAT_XRGB1555;
2256 case DISPPLANE_BGRX565:
2257 return DRM_FORMAT_RGB565;
2258 default:
2259 case DISPPLANE_BGRX888:
2260 return DRM_FORMAT_XRGB8888;
2261 case DISPPLANE_RGBX888:
2262 return DRM_FORMAT_XBGR8888;
2263 case DISPPLANE_BGRX101010:
2264 return DRM_FORMAT_XRGB2101010;
2265 case DISPPLANE_RGBX101010:
2266 return DRM_FORMAT_XBGR2101010;
2267 }
2268}
2269
Jesse Barnes484b41d2014-03-07 08:57:55 -08002270static bool intel_alloc_plane_obj(struct intel_crtc *crtc,
Jesse Barnes46f297f2014-03-07 08:57:48 -08002271 struct intel_plane_config *plane_config)
2272{
2273 struct drm_device *dev = crtc->base.dev;
2274 struct drm_i915_gem_object *obj = NULL;
2275 struct drm_mode_fb_cmd2 mode_cmd = { 0 };
2276 u32 base = plane_config->base;
2277
Chris Wilsonff2652e2014-03-10 08:07:02 +00002278 if (plane_config->size == 0)
2279 return false;
2280
Jesse Barnes46f297f2014-03-07 08:57:48 -08002281 obj = i915_gem_object_create_stolen_for_preallocated(dev, base, base,
2282 plane_config->size);
2283 if (!obj)
Jesse Barnes484b41d2014-03-07 08:57:55 -08002284 return false;
Jesse Barnes46f297f2014-03-07 08:57:48 -08002285
2286 if (plane_config->tiled) {
2287 obj->tiling_mode = I915_TILING_X;
Dave Airlie66e514c2014-04-03 07:51:54 +10002288 obj->stride = crtc->base.primary->fb->pitches[0];
Jesse Barnes46f297f2014-03-07 08:57:48 -08002289 }
2290
Dave Airlie66e514c2014-04-03 07:51:54 +10002291 mode_cmd.pixel_format = crtc->base.primary->fb->pixel_format;
2292 mode_cmd.width = crtc->base.primary->fb->width;
2293 mode_cmd.height = crtc->base.primary->fb->height;
2294 mode_cmd.pitches[0] = crtc->base.primary->fb->pitches[0];
Jesse Barnes46f297f2014-03-07 08:57:48 -08002295
2296 mutex_lock(&dev->struct_mutex);
2297
Dave Airlie66e514c2014-04-03 07:51:54 +10002298 if (intel_framebuffer_init(dev, to_intel_framebuffer(crtc->base.primary->fb),
Jesse Barnes484b41d2014-03-07 08:57:55 -08002299 &mode_cmd, obj)) {
Jesse Barnes46f297f2014-03-07 08:57:48 -08002300 DRM_DEBUG_KMS("intel fb init failed\n");
2301 goto out_unref_obj;
2302 }
2303
2304 mutex_unlock(&dev->struct_mutex);
Jesse Barnes484b41d2014-03-07 08:57:55 -08002305
2306 DRM_DEBUG_KMS("plane fb obj %p\n", obj);
2307 return true;
Jesse Barnes46f297f2014-03-07 08:57:48 -08002308
2309out_unref_obj:
2310 drm_gem_object_unreference(&obj->base);
2311 mutex_unlock(&dev->struct_mutex);
Jesse Barnes484b41d2014-03-07 08:57:55 -08002312 return false;
2313}
2314
2315static void intel_find_plane_obj(struct intel_crtc *intel_crtc,
2316 struct intel_plane_config *plane_config)
2317{
2318 struct drm_device *dev = intel_crtc->base.dev;
2319 struct drm_crtc *c;
2320 struct intel_crtc *i;
2321 struct intel_framebuffer *fb;
2322
Dave Airlie66e514c2014-04-03 07:51:54 +10002323 if (!intel_crtc->base.primary->fb)
Jesse Barnes484b41d2014-03-07 08:57:55 -08002324 return;
2325
2326 if (intel_alloc_plane_obj(intel_crtc, plane_config))
2327 return;
2328
Dave Airlie66e514c2014-04-03 07:51:54 +10002329 kfree(intel_crtc->base.primary->fb);
2330 intel_crtc->base.primary->fb = NULL;
Jesse Barnes484b41d2014-03-07 08:57:55 -08002331
2332 /*
2333 * Failed to alloc the obj, check to see if we should share
2334 * an fb with another CRTC instead
2335 */
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01002336 for_each_crtc(dev, c) {
Jesse Barnes484b41d2014-03-07 08:57:55 -08002337 i = to_intel_crtc(c);
2338
2339 if (c == &intel_crtc->base)
2340 continue;
2341
Dave Airlie66e514c2014-04-03 07:51:54 +10002342 if (!i->active || !c->primary->fb)
Jesse Barnes484b41d2014-03-07 08:57:55 -08002343 continue;
2344
Dave Airlie66e514c2014-04-03 07:51:54 +10002345 fb = to_intel_framebuffer(c->primary->fb);
Jesse Barnes484b41d2014-03-07 08:57:55 -08002346 if (i915_gem_obj_ggtt_offset(fb->obj) == plane_config->base) {
Dave Airlie66e514c2014-04-03 07:51:54 +10002347 drm_framebuffer_reference(c->primary->fb);
2348 intel_crtc->base.primary->fb = c->primary->fb;
Jesse Barnes484b41d2014-03-07 08:57:55 -08002349 break;
2350 }
2351 }
Jesse Barnes46f297f2014-03-07 08:57:48 -08002352}
2353
Daniel Vetter29b9bde2014-04-24 23:55:01 +02002354static void i9xx_update_primary_plane(struct drm_crtc *crtc,
2355 struct drm_framebuffer *fb,
2356 int x, int y)
Jesse Barnes81255562010-08-02 12:07:50 -07002357{
2358 struct drm_device *dev = crtc->dev;
2359 struct drm_i915_private *dev_priv = dev->dev_private;
2360 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2361 struct intel_framebuffer *intel_fb;
Chris Wilson05394f32010-11-08 19:18:58 +00002362 struct drm_i915_gem_object *obj;
Jesse Barnes81255562010-08-02 12:07:50 -07002363 int plane = intel_crtc->plane;
Daniel Vettere506a0c2012-07-05 12:17:29 +02002364 unsigned long linear_offset;
Jesse Barnes81255562010-08-02 12:07:50 -07002365 u32 dspcntr;
Chris Wilson5eddb702010-09-11 13:48:45 +01002366 u32 reg;
Jesse Barnes81255562010-08-02 12:07:50 -07002367
Jesse Barnes81255562010-08-02 12:07:50 -07002368 intel_fb = to_intel_framebuffer(fb);
2369 obj = intel_fb->obj;
Jesse Barnes81255562010-08-02 12:07:50 -07002370
Chris Wilson5eddb702010-09-11 13:48:45 +01002371 reg = DSPCNTR(plane);
2372 dspcntr = I915_READ(reg);
Jesse Barnes81255562010-08-02 12:07:50 -07002373 /* Mask out pixel format bits in case we change it */
2374 dspcntr &= ~DISPPLANE_PIXFORMAT_MASK;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002375 switch (fb->pixel_format) {
2376 case DRM_FORMAT_C8:
Jesse Barnes81255562010-08-02 12:07:50 -07002377 dspcntr |= DISPPLANE_8BPP;
2378 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002379 case DRM_FORMAT_XRGB1555:
2380 case DRM_FORMAT_ARGB1555:
2381 dspcntr |= DISPPLANE_BGRX555;
Jesse Barnes81255562010-08-02 12:07:50 -07002382 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002383 case DRM_FORMAT_RGB565:
2384 dspcntr |= DISPPLANE_BGRX565;
2385 break;
2386 case DRM_FORMAT_XRGB8888:
2387 case DRM_FORMAT_ARGB8888:
2388 dspcntr |= DISPPLANE_BGRX888;
2389 break;
2390 case DRM_FORMAT_XBGR8888:
2391 case DRM_FORMAT_ABGR8888:
2392 dspcntr |= DISPPLANE_RGBX888;
2393 break;
2394 case DRM_FORMAT_XRGB2101010:
2395 case DRM_FORMAT_ARGB2101010:
2396 dspcntr |= DISPPLANE_BGRX101010;
2397 break;
2398 case DRM_FORMAT_XBGR2101010:
2399 case DRM_FORMAT_ABGR2101010:
2400 dspcntr |= DISPPLANE_RGBX101010;
Jesse Barnes81255562010-08-02 12:07:50 -07002401 break;
2402 default:
Daniel Vetterbaba1332013-03-27 00:45:00 +01002403 BUG();
Jesse Barnes81255562010-08-02 12:07:50 -07002404 }
Ville Syrjälä57779d02012-10-31 17:50:14 +02002405
Chris Wilsona6c45cf2010-09-17 00:32:17 +01002406 if (INTEL_INFO(dev)->gen >= 4) {
Chris Wilson05394f32010-11-08 19:18:58 +00002407 if (obj->tiling_mode != I915_TILING_NONE)
Jesse Barnes81255562010-08-02 12:07:50 -07002408 dspcntr |= DISPPLANE_TILED;
2409 else
2410 dspcntr &= ~DISPPLANE_TILED;
2411 }
2412
Ville Syrjäläde1aa622013-06-07 10:47:01 +03002413 if (IS_G4X(dev))
2414 dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE;
2415
Chris Wilson5eddb702010-09-11 13:48:45 +01002416 I915_WRITE(reg, dspcntr);
Jesse Barnes81255562010-08-02 12:07:50 -07002417
Daniel Vettere506a0c2012-07-05 12:17:29 +02002418 linear_offset = y * fb->pitches[0] + x * (fb->bits_per_pixel / 8);
Jesse Barnes81255562010-08-02 12:07:50 -07002419
Daniel Vetterc2c75132012-07-05 12:17:30 +02002420 if (INTEL_INFO(dev)->gen >= 4) {
2421 intel_crtc->dspaddr_offset =
Chris Wilsonbc752862013-02-21 20:04:31 +00002422 intel_gen4_compute_page_offset(&x, &y, obj->tiling_mode,
2423 fb->bits_per_pixel / 8,
2424 fb->pitches[0]);
Daniel Vetterc2c75132012-07-05 12:17:30 +02002425 linear_offset -= intel_crtc->dspaddr_offset;
2426 } else {
Daniel Vettere506a0c2012-07-05 12:17:29 +02002427 intel_crtc->dspaddr_offset = linear_offset;
Daniel Vetterc2c75132012-07-05 12:17:30 +02002428 }
Daniel Vettere506a0c2012-07-05 12:17:29 +02002429
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002430 DRM_DEBUG_KMS("Writing base %08lX %08lX %d %d %d\n",
2431 i915_gem_obj_ggtt_offset(obj), linear_offset, x, y,
2432 fb->pitches[0]);
Ville Syrjälä01f2c772011-12-20 00:06:49 +02002433 I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]);
Chris Wilsona6c45cf2010-09-17 00:32:17 +01002434 if (INTEL_INFO(dev)->gen >= 4) {
Daniel Vetter85ba7b72014-01-24 10:31:44 +01002435 I915_WRITE(DSPSURF(plane),
2436 i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset);
Chris Wilson5eddb702010-09-11 13:48:45 +01002437 I915_WRITE(DSPTILEOFF(plane), (y << 16) | x);
Daniel Vettere506a0c2012-07-05 12:17:29 +02002438 I915_WRITE(DSPLINOFF(plane), linear_offset);
Chris Wilson5eddb702010-09-11 13:48:45 +01002439 } else
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002440 I915_WRITE(DSPADDR(plane), i915_gem_obj_ggtt_offset(obj) + linear_offset);
Chris Wilson5eddb702010-09-11 13:48:45 +01002441 POSTING_READ(reg);
Jesse Barnes17638cd2011-06-24 12:19:23 -07002442}
2443
Daniel Vetter29b9bde2014-04-24 23:55:01 +02002444static void ironlake_update_primary_plane(struct drm_crtc *crtc,
2445 struct drm_framebuffer *fb,
2446 int x, int y)
Jesse Barnes17638cd2011-06-24 12:19:23 -07002447{
2448 struct drm_device *dev = crtc->dev;
2449 struct drm_i915_private *dev_priv = dev->dev_private;
2450 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2451 struct intel_framebuffer *intel_fb;
2452 struct drm_i915_gem_object *obj;
2453 int plane = intel_crtc->plane;
Daniel Vettere506a0c2012-07-05 12:17:29 +02002454 unsigned long linear_offset;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002455 u32 dspcntr;
2456 u32 reg;
2457
Jesse Barnes17638cd2011-06-24 12:19:23 -07002458 intel_fb = to_intel_framebuffer(fb);
2459 obj = intel_fb->obj;
2460
2461 reg = DSPCNTR(plane);
2462 dspcntr = I915_READ(reg);
2463 /* Mask out pixel format bits in case we change it */
2464 dspcntr &= ~DISPPLANE_PIXFORMAT_MASK;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002465 switch (fb->pixel_format) {
2466 case DRM_FORMAT_C8:
Jesse Barnes17638cd2011-06-24 12:19:23 -07002467 dspcntr |= DISPPLANE_8BPP;
2468 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002469 case DRM_FORMAT_RGB565:
2470 dspcntr |= DISPPLANE_BGRX565;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002471 break;
Ville Syrjälä57779d02012-10-31 17:50:14 +02002472 case DRM_FORMAT_XRGB8888:
2473 case DRM_FORMAT_ARGB8888:
2474 dspcntr |= DISPPLANE_BGRX888;
2475 break;
2476 case DRM_FORMAT_XBGR8888:
2477 case DRM_FORMAT_ABGR8888:
2478 dspcntr |= DISPPLANE_RGBX888;
2479 break;
2480 case DRM_FORMAT_XRGB2101010:
2481 case DRM_FORMAT_ARGB2101010:
2482 dspcntr |= DISPPLANE_BGRX101010;
2483 break;
2484 case DRM_FORMAT_XBGR2101010:
2485 case DRM_FORMAT_ABGR2101010:
2486 dspcntr |= DISPPLANE_RGBX101010;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002487 break;
2488 default:
Daniel Vetterbaba1332013-03-27 00:45:00 +01002489 BUG();
Jesse Barnes17638cd2011-06-24 12:19:23 -07002490 }
2491
2492 if (obj->tiling_mode != I915_TILING_NONE)
2493 dspcntr |= DISPPLANE_TILED;
2494 else
2495 dspcntr &= ~DISPPLANE_TILED;
2496
Ville Syrjäläb42c6002013-11-03 13:47:27 +02002497 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Paulo Zanoni1f5d76d2013-08-23 19:51:28 -03002498 dspcntr &= ~DISPPLANE_TRICKLE_FEED_DISABLE;
2499 else
2500 dspcntr |= DISPPLANE_TRICKLE_FEED_DISABLE;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002501
2502 I915_WRITE(reg, dspcntr);
2503
Daniel Vettere506a0c2012-07-05 12:17:29 +02002504 linear_offset = y * fb->pitches[0] + x * (fb->bits_per_pixel / 8);
Daniel Vetterc2c75132012-07-05 12:17:30 +02002505 intel_crtc->dspaddr_offset =
Chris Wilsonbc752862013-02-21 20:04:31 +00002506 intel_gen4_compute_page_offset(&x, &y, obj->tiling_mode,
2507 fb->bits_per_pixel / 8,
2508 fb->pitches[0]);
Daniel Vetterc2c75132012-07-05 12:17:30 +02002509 linear_offset -= intel_crtc->dspaddr_offset;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002510
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002511 DRM_DEBUG_KMS("Writing base %08lX %08lX %d %d %d\n",
2512 i915_gem_obj_ggtt_offset(obj), linear_offset, x, y,
2513 fb->pitches[0]);
Ville Syrjälä01f2c772011-12-20 00:06:49 +02002514 I915_WRITE(DSPSTRIDE(plane), fb->pitches[0]);
Daniel Vetter85ba7b72014-01-24 10:31:44 +01002515 I915_WRITE(DSPSURF(plane),
2516 i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset);
Paulo Zanonib3dc6852013-11-02 21:07:33 -07002517 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Damien Lespiaubc1c91e2012-10-29 12:14:21 +00002518 I915_WRITE(DSPOFFSET(plane), (y << 16) | x);
2519 } else {
2520 I915_WRITE(DSPTILEOFF(plane), (y << 16) | x);
2521 I915_WRITE(DSPLINOFF(plane), linear_offset);
2522 }
Jesse Barnes17638cd2011-06-24 12:19:23 -07002523 POSTING_READ(reg);
Jesse Barnes17638cd2011-06-24 12:19:23 -07002524}
2525
2526/* Assume fb object is pinned & idle & fenced and just update base pointers */
2527static int
2528intel_pipe_set_base_atomic(struct drm_crtc *crtc, struct drm_framebuffer *fb,
2529 int x, int y, enum mode_set_atomic state)
2530{
2531 struct drm_device *dev = crtc->dev;
2532 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes17638cd2011-06-24 12:19:23 -07002533
Chris Wilson6b8e6ed2012-04-17 15:08:19 +01002534 if (dev_priv->display.disable_fbc)
2535 dev_priv->display.disable_fbc(dev);
Daniel Vetter3dec0092010-08-20 21:40:52 +02002536 intel_increase_pllclock(crtc);
Jesse Barnes81255562010-08-02 12:07:50 -07002537
Daniel Vetter29b9bde2014-04-24 23:55:01 +02002538 dev_priv->display.update_primary_plane(crtc, fb, x, y);
2539
2540 return 0;
Jesse Barnes81255562010-08-02 12:07:50 -07002541}
2542
Ville Syrjälä96a02912013-02-18 19:08:49 +02002543void intel_display_handle_reset(struct drm_device *dev)
2544{
2545 struct drm_i915_private *dev_priv = dev->dev_private;
2546 struct drm_crtc *crtc;
2547
2548 /*
2549 * Flips in the rings have been nuked by the reset,
2550 * so complete all pending flips so that user space
2551 * will get its events and not get stuck.
2552 *
2553 * Also update the base address of all primary
2554 * planes to the the last fb to make sure we're
2555 * showing the correct fb after a reset.
2556 *
2557 * Need to make two loops over the crtcs so that we
2558 * don't try to grab a crtc mutex before the
2559 * pending_flip_queue really got woken up.
2560 */
2561
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01002562 for_each_crtc(dev, crtc) {
Ville Syrjälä96a02912013-02-18 19:08:49 +02002563 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2564 enum plane plane = intel_crtc->plane;
2565
2566 intel_prepare_page_flip(dev, plane);
2567 intel_finish_page_flip_plane(dev, plane);
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
2573 mutex_lock(&crtc->mutex);
Chris Wilson947fdaadf2013-11-27 12:01:32 +00002574 /*
2575 * FIXME: Once we have proper support for primary planes (and
2576 * disabling them without disabling the entire crtc) allow again
Dave Airlie66e514c2014-04-03 07:51:54 +10002577 * a NULL crtc->primary->fb.
Chris Wilson947fdaadf2013-11-27 12:01:32 +00002578 */
Matt Roperf4510a22014-04-01 15:22:40 -07002579 if (intel_crtc->active && crtc->primary->fb)
Matt Roper262ca2b2014-03-18 17:22:55 -07002580 dev_priv->display.update_primary_plane(crtc,
Dave Airlie66e514c2014-04-03 07:51:54 +10002581 crtc->primary->fb,
Matt Roper262ca2b2014-03-18 17:22:55 -07002582 crtc->x,
2583 crtc->y);
Ville Syrjälä96a02912013-02-18 19:08:49 +02002584 mutex_unlock(&crtc->mutex);
2585 }
2586}
2587
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05002588static int
Chris Wilson14667a42012-04-03 17:58:35 +01002589intel_finish_fb(struct drm_framebuffer *old_fb)
2590{
2591 struct drm_i915_gem_object *obj = to_intel_framebuffer(old_fb)->obj;
2592 struct drm_i915_private *dev_priv = obj->base.dev->dev_private;
2593 bool was_interruptible = dev_priv->mm.interruptible;
2594 int ret;
2595
Chris Wilson14667a42012-04-03 17:58:35 +01002596 /* Big Hammer, we also need to ensure that any pending
2597 * MI_WAIT_FOR_EVENT inside a user batch buffer on the
2598 * current scanout is retired before unpinning the old
2599 * framebuffer.
2600 *
2601 * This should only fail upon a hung GPU, in which case we
2602 * can safely continue.
2603 */
2604 dev_priv->mm.interruptible = false;
2605 ret = i915_gem_object_finish_gpu(obj);
2606 dev_priv->mm.interruptible = was_interruptible;
2607
2608 return ret;
2609}
2610
Chris Wilson7d5e3792014-03-04 13:15:08 +00002611static bool intel_crtc_has_pending_flip(struct drm_crtc *crtc)
2612{
2613 struct drm_device *dev = crtc->dev;
2614 struct drm_i915_private *dev_priv = dev->dev_private;
2615 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2616 unsigned long flags;
2617 bool pending;
2618
2619 if (i915_reset_in_progress(&dev_priv->gpu_error) ||
2620 intel_crtc->reset_counter != atomic_read(&dev_priv->gpu_error.reset_counter))
2621 return false;
2622
2623 spin_lock_irqsave(&dev->event_lock, flags);
2624 pending = to_intel_crtc(crtc)->unpin_work != NULL;
2625 spin_unlock_irqrestore(&dev->event_lock, flags);
2626
2627 return pending;
2628}
2629
Chris Wilson14667a42012-04-03 17:58:35 +01002630static int
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -05002631intel_pipe_set_base(struct drm_crtc *crtc, int x, int y,
Daniel Vetter94352cf2012-07-05 22:51:56 +02002632 struct drm_framebuffer *fb)
Jesse Barnes79e53942008-11-07 14:24:08 -08002633{
2634 struct drm_device *dev = crtc->dev;
Chris Wilson6b8e6ed2012-04-17 15:08:19 +01002635 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -08002636 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter94352cf2012-07-05 22:51:56 +02002637 struct drm_framebuffer *old_fb;
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002638 int ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08002639
Chris Wilson7d5e3792014-03-04 13:15:08 +00002640 if (intel_crtc_has_pending_flip(crtc)) {
2641 DRM_ERROR("pipe is still busy with an old pageflip\n");
2642 return -EBUSY;
2643 }
2644
Jesse Barnes79e53942008-11-07 14:24:08 -08002645 /* no fb bound */
Daniel Vetter94352cf2012-07-05 22:51:56 +02002646 if (!fb) {
Jesse Barnesa5071c22011-07-19 15:38:56 -07002647 DRM_ERROR("No FB bound\n");
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002648 return 0;
2649 }
2650
Ben Widawsky7eb552a2013-03-13 14:05:41 -07002651 if (intel_crtc->plane > INTEL_INFO(dev)->num_pipes) {
Ville Syrjälä84f44ce2013-04-17 17:48:49 +03002652 DRM_ERROR("no plane for crtc: plane %c, num_pipes %d\n",
2653 plane_name(intel_crtc->plane),
2654 INTEL_INFO(dev)->num_pipes);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002655 return -EINVAL;
Jesse Barnes79e53942008-11-07 14:24:08 -08002656 }
2657
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002658 mutex_lock(&dev->struct_mutex);
Chris Wilson265db952010-09-20 15:41:01 +01002659 ret = intel_pin_and_fence_fb_obj(dev,
Daniel Vetter94352cf2012-07-05 22:51:56 +02002660 to_intel_framebuffer(fb)->obj,
Chris Wilson919926a2010-11-12 13:42:53 +00002661 NULL);
Ville Syrjälä8ac36ec2014-03-11 19:37:33 +02002662 mutex_unlock(&dev->struct_mutex);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002663 if (ret != 0) {
Jesse Barnesa5071c22011-07-19 15:38:56 -07002664 DRM_ERROR("pin & fence failed\n");
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002665 return ret;
2666 }
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -05002667
Damien Lespiaubb2043d2013-09-30 14:21:49 +01002668 /*
2669 * Update pipe size and adjust fitter if needed: the reason for this is
2670 * that in compute_mode_changes we check the native mode (not the pfit
2671 * mode) to see if we can flip rather than do a full mode set. In the
2672 * fastboot case, we'll flip, but if we don't update the pipesrc and
2673 * pfit state, we'll end up with a big fb scanned out into the wrong
2674 * sized surface.
2675 *
2676 * To fix this properly, we need to hoist the checks up into
2677 * compute_mode_changes (or above), check the actual pfit state and
2678 * whether the platform allows pfit disable with pipe active, and only
2679 * then update the pipesrc and pfit state, even on the flip path.
2680 */
Jani Nikulad330a952014-01-21 11:24:25 +02002681 if (i915.fastboot) {
Damien Lespiaud7bf63f2013-09-30 14:21:50 +01002682 const struct drm_display_mode *adjusted_mode =
2683 &intel_crtc->config.adjusted_mode;
2684
Jesse Barnes4d6a3e62013-06-26 01:38:18 +03002685 I915_WRITE(PIPESRC(intel_crtc->pipe),
Damien Lespiaud7bf63f2013-09-30 14:21:50 +01002686 ((adjusted_mode->crtc_hdisplay - 1) << 16) |
2687 (adjusted_mode->crtc_vdisplay - 1));
Chris Wilsonfd4daa92013-08-27 17:04:17 +01002688 if (!intel_crtc->config.pch_pfit.enabled &&
Jesse Barnes4d6a3e62013-06-26 01:38:18 +03002689 (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) ||
2690 intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP))) {
2691 I915_WRITE(PF_CTL(intel_crtc->pipe), 0);
2692 I915_WRITE(PF_WIN_POS(intel_crtc->pipe), 0);
2693 I915_WRITE(PF_WIN_SZ(intel_crtc->pipe), 0);
2694 }
Jesse Barnes0637d602013-12-19 10:48:01 -08002695 intel_crtc->config.pipe_src_w = adjusted_mode->crtc_hdisplay;
2696 intel_crtc->config.pipe_src_h = adjusted_mode->crtc_vdisplay;
Jesse Barnes4d6a3e62013-06-26 01:38:18 +03002697 }
2698
Daniel Vetter29b9bde2014-04-24 23:55:01 +02002699 dev_priv->display.update_primary_plane(crtc, fb, x, y);
Kristian Høgsberg3c4fdcf2008-12-17 22:14:46 -05002700
Matt Roperf4510a22014-04-01 15:22:40 -07002701 old_fb = crtc->primary->fb;
2702 crtc->primary->fb = fb;
Daniel Vetter6c4c86f2012-09-10 21:58:30 +02002703 crtc->x = x;
2704 crtc->y = y;
Daniel Vetter94352cf2012-07-05 22:51:56 +02002705
Chris Wilsonb7f1de22010-12-14 16:09:31 +00002706 if (old_fb) {
Daniel Vetterd7697ee2013-06-02 17:23:01 +02002707 if (intel_crtc->active && old_fb != fb)
2708 intel_wait_for_vblank(dev, intel_crtc->pipe);
Ville Syrjälä8ac36ec2014-03-11 19:37:33 +02002709 mutex_lock(&dev->struct_mutex);
Chris Wilson1690e1e2011-12-14 13:57:08 +01002710 intel_unpin_fb_obj(to_intel_framebuffer(old_fb)->obj);
Ville Syrjälä8ac36ec2014-03-11 19:37:33 +02002711 mutex_unlock(&dev->struct_mutex);
Chris Wilsonb7f1de22010-12-14 16:09:31 +00002712 }
Jesse Barnes652c3932009-08-17 13:31:43 -07002713
Ville Syrjälä8ac36ec2014-03-11 19:37:33 +02002714 mutex_lock(&dev->struct_mutex);
Chris Wilson6b8e6ed2012-04-17 15:08:19 +01002715 intel_update_fbc(dev);
Rodrigo Vivi49065572013-07-11 18:45:05 -03002716 intel_edp_psr_update(dev);
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002717 mutex_unlock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -08002718
Chris Wilson5c3b82e2009-02-11 13:25:09 +00002719 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08002720}
2721
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08002722static void intel_fdi_normal_train(struct drm_crtc *crtc)
2723{
2724 struct drm_device *dev = crtc->dev;
2725 struct drm_i915_private *dev_priv = dev->dev_private;
2726 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2727 int pipe = intel_crtc->pipe;
2728 u32 reg, temp;
2729
2730 /* enable normal train */
2731 reg = FDI_TX_CTL(pipe);
2732 temp = I915_READ(reg);
Keith Packard61e499b2011-05-17 16:13:52 -07002733 if (IS_IVYBRIDGE(dev)) {
Jesse Barnes357555c2011-04-28 15:09:55 -07002734 temp &= ~FDI_LINK_TRAIN_NONE_IVB;
2735 temp |= FDI_LINK_TRAIN_NONE_IVB | FDI_TX_ENHANCE_FRAME_ENABLE;
Keith Packard61e499b2011-05-17 16:13:52 -07002736 } else {
2737 temp &= ~FDI_LINK_TRAIN_NONE;
2738 temp |= FDI_LINK_TRAIN_NONE | FDI_TX_ENHANCE_FRAME_ENABLE;
Jesse Barnes357555c2011-04-28 15:09:55 -07002739 }
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08002740 I915_WRITE(reg, temp);
2741
2742 reg = FDI_RX_CTL(pipe);
2743 temp = I915_READ(reg);
2744 if (HAS_PCH_CPT(dev)) {
2745 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2746 temp |= FDI_LINK_TRAIN_NORMAL_CPT;
2747 } else {
2748 temp &= ~FDI_LINK_TRAIN_NONE;
2749 temp |= FDI_LINK_TRAIN_NONE;
2750 }
2751 I915_WRITE(reg, temp | FDI_RX_ENHANCE_FRAME_ENABLE);
2752
2753 /* wait one idle pattern time */
2754 POSTING_READ(reg);
2755 udelay(1000);
Jesse Barnes357555c2011-04-28 15:09:55 -07002756
2757 /* IVB wants error correction enabled */
2758 if (IS_IVYBRIDGE(dev))
2759 I915_WRITE(reg, I915_READ(reg) | FDI_FS_ERRC_ENABLE |
2760 FDI_FE_ERRC_ENABLE);
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08002761}
2762
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01002763static bool pipe_has_enabled_pch(struct intel_crtc *crtc)
Daniel Vetter1e833f42013-02-19 22:31:57 +01002764{
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01002765 return crtc->base.enabled && crtc->active &&
2766 crtc->config.has_pch_encoder;
Daniel Vetter1e833f42013-02-19 22:31:57 +01002767}
2768
Daniel Vetter01a415f2012-10-27 15:58:40 +02002769static void ivb_modeset_global_resources(struct drm_device *dev)
2770{
2771 struct drm_i915_private *dev_priv = dev->dev_private;
2772 struct intel_crtc *pipe_B_crtc =
2773 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[PIPE_B]);
2774 struct intel_crtc *pipe_C_crtc =
2775 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[PIPE_C]);
2776 uint32_t temp;
2777
Daniel Vetter1e833f42013-02-19 22:31:57 +01002778 /*
2779 * When everything is off disable fdi C so that we could enable fdi B
2780 * with all lanes. Note that we don't care about enabled pipes without
2781 * an enabled pch encoder.
2782 */
2783 if (!pipe_has_enabled_pch(pipe_B_crtc) &&
2784 !pipe_has_enabled_pch(pipe_C_crtc)) {
Daniel Vetter01a415f2012-10-27 15:58:40 +02002785 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_B)) & FDI_RX_ENABLE);
2786 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_C)) & FDI_RX_ENABLE);
2787
2788 temp = I915_READ(SOUTH_CHICKEN1);
2789 temp &= ~FDI_BC_BIFURCATION_SELECT;
2790 DRM_DEBUG_KMS("disabling fdi C rx\n");
2791 I915_WRITE(SOUTH_CHICKEN1, temp);
2792 }
2793}
2794
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002795/* The FDI link training functions for ILK/Ibexpeak. */
2796static void ironlake_fdi_link_train(struct drm_crtc *crtc)
2797{
2798 struct drm_device *dev = crtc->dev;
2799 struct drm_i915_private *dev_priv = dev->dev_private;
2800 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2801 int pipe = intel_crtc->pipe;
Chris Wilson5eddb702010-09-11 13:48:45 +01002802 u32 reg, temp, tries;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002803
Ville Syrjälä1c8562f2014-04-25 22:12:07 +03002804 /* FDI needs bits from pipe first */
Jesse Barnes0fc932b2011-01-04 15:09:37 -08002805 assert_pipe_enabled(dev_priv, pipe);
Jesse Barnes0fc932b2011-01-04 15:09:37 -08002806
Adam Jacksone1a44742010-06-25 15:32:14 -04002807 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
2808 for train result */
Chris Wilson5eddb702010-09-11 13:48:45 +01002809 reg = FDI_RX_IMR(pipe);
2810 temp = I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04002811 temp &= ~FDI_RX_SYMBOL_LOCK;
2812 temp &= ~FDI_RX_BIT_LOCK;
Chris Wilson5eddb702010-09-11 13:48:45 +01002813 I915_WRITE(reg, temp);
2814 I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04002815 udelay(150);
2816
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002817 /* enable CPU FDI TX and PCH FDI RX */
Chris Wilson5eddb702010-09-11 13:48:45 +01002818 reg = FDI_TX_CTL(pipe);
2819 temp = I915_READ(reg);
Daniel Vetter627eb5a2013-04-29 19:33:42 +02002820 temp &= ~FDI_DP_PORT_WIDTH_MASK;
2821 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config.fdi_lanes);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002822 temp &= ~FDI_LINK_TRAIN_NONE;
2823 temp |= FDI_LINK_TRAIN_PATTERN_1;
Chris Wilson5eddb702010-09-11 13:48:45 +01002824 I915_WRITE(reg, temp | FDI_TX_ENABLE);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002825
Chris Wilson5eddb702010-09-11 13:48:45 +01002826 reg = FDI_RX_CTL(pipe);
2827 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002828 temp &= ~FDI_LINK_TRAIN_NONE;
2829 temp |= FDI_LINK_TRAIN_PATTERN_1;
Chris Wilson5eddb702010-09-11 13:48:45 +01002830 I915_WRITE(reg, temp | FDI_RX_ENABLE);
2831
2832 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002833 udelay(150);
2834
Jesse Barnes5b2adf82010-10-07 16:01:15 -07002835 /* Ironlake workaround, enable clock pointer after FDI enable*/
Daniel Vetter8f5718a2012-10-31 22:52:28 +01002836 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR);
2837 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR |
2838 FDI_RX_PHASE_SYNC_POINTER_EN);
Jesse Barnes5b2adf82010-10-07 16:01:15 -07002839
Chris Wilson5eddb702010-09-11 13:48:45 +01002840 reg = FDI_RX_IIR(pipe);
Adam Jacksone1a44742010-06-25 15:32:14 -04002841 for (tries = 0; tries < 5; tries++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002842 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002843 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2844
2845 if ((temp & FDI_RX_BIT_LOCK)) {
2846 DRM_DEBUG_KMS("FDI train 1 done.\n");
Chris Wilson5eddb702010-09-11 13:48:45 +01002847 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002848 break;
2849 }
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002850 }
Adam Jacksone1a44742010-06-25 15:32:14 -04002851 if (tries == 5)
Chris Wilson5eddb702010-09-11 13:48:45 +01002852 DRM_ERROR("FDI train 1 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002853
2854 /* Train 2 */
Chris Wilson5eddb702010-09-11 13:48:45 +01002855 reg = FDI_TX_CTL(pipe);
2856 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002857 temp &= ~FDI_LINK_TRAIN_NONE;
2858 temp |= FDI_LINK_TRAIN_PATTERN_2;
Chris Wilson5eddb702010-09-11 13:48:45 +01002859 I915_WRITE(reg, temp);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002860
Chris Wilson5eddb702010-09-11 13:48:45 +01002861 reg = FDI_RX_CTL(pipe);
2862 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002863 temp &= ~FDI_LINK_TRAIN_NONE;
2864 temp |= FDI_LINK_TRAIN_PATTERN_2;
Chris Wilson5eddb702010-09-11 13:48:45 +01002865 I915_WRITE(reg, temp);
2866
2867 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002868 udelay(150);
2869
Chris Wilson5eddb702010-09-11 13:48:45 +01002870 reg = FDI_RX_IIR(pipe);
Adam Jacksone1a44742010-06-25 15:32:14 -04002871 for (tries = 0; tries < 5; tries++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002872 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002873 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2874
2875 if (temp & FDI_RX_SYMBOL_LOCK) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002876 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002877 DRM_DEBUG_KMS("FDI train 2 done.\n");
2878 break;
2879 }
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002880 }
Adam Jacksone1a44742010-06-25 15:32:14 -04002881 if (tries == 5)
Chris Wilson5eddb702010-09-11 13:48:45 +01002882 DRM_ERROR("FDI train 2 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002883
2884 DRM_DEBUG_KMS("FDI train done\n");
Jesse Barnes5c5313c2010-10-07 16:01:11 -07002885
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002886}
2887
Akshay Joshi0206e352011-08-16 15:34:10 -04002888static const int snb_b_fdi_train_param[] = {
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002889 FDI_LINK_TRAIN_400MV_0DB_SNB_B,
2890 FDI_LINK_TRAIN_400MV_6DB_SNB_B,
2891 FDI_LINK_TRAIN_600MV_3_5DB_SNB_B,
2892 FDI_LINK_TRAIN_800MV_0DB_SNB_B,
2893};
2894
2895/* The FDI link training functions for SNB/Cougarpoint. */
2896static void gen6_fdi_link_train(struct drm_crtc *crtc)
2897{
2898 struct drm_device *dev = crtc->dev;
2899 struct drm_i915_private *dev_priv = dev->dev_private;
2900 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2901 int pipe = intel_crtc->pipe;
Sean Paulfa37d392012-03-02 12:53:39 -05002902 u32 reg, temp, i, retry;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002903
Adam Jacksone1a44742010-06-25 15:32:14 -04002904 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
2905 for train result */
Chris Wilson5eddb702010-09-11 13:48:45 +01002906 reg = FDI_RX_IMR(pipe);
2907 temp = I915_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04002908 temp &= ~FDI_RX_SYMBOL_LOCK;
2909 temp &= ~FDI_RX_BIT_LOCK;
Chris Wilson5eddb702010-09-11 13:48:45 +01002910 I915_WRITE(reg, temp);
2911
2912 POSTING_READ(reg);
Adam Jacksone1a44742010-06-25 15:32:14 -04002913 udelay(150);
2914
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002915 /* enable CPU FDI TX and PCH FDI RX */
Chris Wilson5eddb702010-09-11 13:48:45 +01002916 reg = FDI_TX_CTL(pipe);
2917 temp = I915_READ(reg);
Daniel Vetter627eb5a2013-04-29 19:33:42 +02002918 temp &= ~FDI_DP_PORT_WIDTH_MASK;
2919 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config.fdi_lanes);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002920 temp &= ~FDI_LINK_TRAIN_NONE;
2921 temp |= FDI_LINK_TRAIN_PATTERN_1;
2922 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2923 /* SNB-B */
2924 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
Chris Wilson5eddb702010-09-11 13:48:45 +01002925 I915_WRITE(reg, temp | FDI_TX_ENABLE);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002926
Daniel Vetterd74cf322012-10-26 10:58:13 +02002927 I915_WRITE(FDI_RX_MISC(pipe),
2928 FDI_RX_TP1_TO_TP2_48 | FDI_RX_FDI_DELAY_90);
2929
Chris Wilson5eddb702010-09-11 13:48:45 +01002930 reg = FDI_RX_CTL(pipe);
2931 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002932 if (HAS_PCH_CPT(dev)) {
2933 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2934 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
2935 } else {
2936 temp &= ~FDI_LINK_TRAIN_NONE;
2937 temp |= FDI_LINK_TRAIN_PATTERN_1;
2938 }
Chris Wilson5eddb702010-09-11 13:48:45 +01002939 I915_WRITE(reg, temp | FDI_RX_ENABLE);
2940
2941 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002942 udelay(150);
2943
Akshay Joshi0206e352011-08-16 15:34:10 -04002944 for (i = 0; i < 4; i++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002945 reg = FDI_TX_CTL(pipe);
2946 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002947 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2948 temp |= snb_b_fdi_train_param[i];
Chris Wilson5eddb702010-09-11 13:48:45 +01002949 I915_WRITE(reg, temp);
2950
2951 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002952 udelay(500);
2953
Sean Paulfa37d392012-03-02 12:53:39 -05002954 for (retry = 0; retry < 5; retry++) {
2955 reg = FDI_RX_IIR(pipe);
2956 temp = I915_READ(reg);
2957 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
2958 if (temp & FDI_RX_BIT_LOCK) {
2959 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
2960 DRM_DEBUG_KMS("FDI train 1 done.\n");
2961 break;
2962 }
2963 udelay(50);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002964 }
Sean Paulfa37d392012-03-02 12:53:39 -05002965 if (retry < 5)
2966 break;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002967 }
2968 if (i == 4)
Chris Wilson5eddb702010-09-11 13:48:45 +01002969 DRM_ERROR("FDI train 1 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002970
2971 /* Train 2 */
Chris Wilson5eddb702010-09-11 13:48:45 +01002972 reg = FDI_TX_CTL(pipe);
2973 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002974 temp &= ~FDI_LINK_TRAIN_NONE;
2975 temp |= FDI_LINK_TRAIN_PATTERN_2;
2976 if (IS_GEN6(dev)) {
2977 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
2978 /* SNB-B */
2979 temp |= FDI_LINK_TRAIN_400MV_0DB_SNB_B;
2980 }
Chris Wilson5eddb702010-09-11 13:48:45 +01002981 I915_WRITE(reg, temp);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002982
Chris Wilson5eddb702010-09-11 13:48:45 +01002983 reg = FDI_RX_CTL(pipe);
2984 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002985 if (HAS_PCH_CPT(dev)) {
2986 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
2987 temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
2988 } else {
2989 temp &= ~FDI_LINK_TRAIN_NONE;
2990 temp |= FDI_LINK_TRAIN_PATTERN_2;
2991 }
Chris Wilson5eddb702010-09-11 13:48:45 +01002992 I915_WRITE(reg, temp);
2993
2994 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08002995 udelay(150);
2996
Akshay Joshi0206e352011-08-16 15:34:10 -04002997 for (i = 0; i < 4; i++) {
Chris Wilson5eddb702010-09-11 13:48:45 +01002998 reg = FDI_TX_CTL(pipe);
2999 temp = I915_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003000 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
3001 temp |= snb_b_fdi_train_param[i];
Chris Wilson5eddb702010-09-11 13:48:45 +01003002 I915_WRITE(reg, temp);
3003
3004 POSTING_READ(reg);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003005 udelay(500);
3006
Sean Paulfa37d392012-03-02 12:53:39 -05003007 for (retry = 0; retry < 5; retry++) {
3008 reg = FDI_RX_IIR(pipe);
3009 temp = I915_READ(reg);
3010 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3011 if (temp & FDI_RX_SYMBOL_LOCK) {
3012 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
3013 DRM_DEBUG_KMS("FDI train 2 done.\n");
3014 break;
3015 }
3016 udelay(50);
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003017 }
Sean Paulfa37d392012-03-02 12:53:39 -05003018 if (retry < 5)
3019 break;
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003020 }
3021 if (i == 4)
Chris Wilson5eddb702010-09-11 13:48:45 +01003022 DRM_ERROR("FDI train 2 fail!\n");
Zhenyu Wang8db9d772010-04-07 16:15:54 +08003023
3024 DRM_DEBUG_KMS("FDI train done.\n");
3025}
3026
Jesse Barnes357555c2011-04-28 15:09:55 -07003027/* Manual link training for Ivy Bridge A0 parts */
3028static void ivb_manual_fdi_link_train(struct drm_crtc *crtc)
3029{
3030 struct drm_device *dev = crtc->dev;
3031 struct drm_i915_private *dev_priv = dev->dev_private;
3032 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3033 int pipe = intel_crtc->pipe;
Jesse Barnes139ccd32013-08-19 11:04:55 -07003034 u32 reg, temp, i, j;
Jesse Barnes357555c2011-04-28 15:09:55 -07003035
3036 /* Train 1: umask FDI RX Interrupt symbol_lock and bit_lock bit
3037 for train result */
3038 reg = FDI_RX_IMR(pipe);
3039 temp = I915_READ(reg);
3040 temp &= ~FDI_RX_SYMBOL_LOCK;
3041 temp &= ~FDI_RX_BIT_LOCK;
3042 I915_WRITE(reg, temp);
3043
3044 POSTING_READ(reg);
3045 udelay(150);
3046
Daniel Vetter01a415f2012-10-27 15:58:40 +02003047 DRM_DEBUG_KMS("FDI_RX_IIR before link train 0x%x\n",
3048 I915_READ(FDI_RX_IIR(pipe)));
3049
Jesse Barnes139ccd32013-08-19 11:04:55 -07003050 /* Try each vswing and preemphasis setting twice before moving on */
3051 for (j = 0; j < ARRAY_SIZE(snb_b_fdi_train_param) * 2; j++) {
3052 /* disable first in case we need to retry */
Jesse Barnes357555c2011-04-28 15:09:55 -07003053 reg = FDI_TX_CTL(pipe);
3054 temp = I915_READ(reg);
Jesse Barnes139ccd32013-08-19 11:04:55 -07003055 temp &= ~(FDI_LINK_TRAIN_AUTO | FDI_LINK_TRAIN_NONE_IVB);
3056 temp &= ~FDI_TX_ENABLE;
3057 I915_WRITE(reg, temp);
3058
3059 reg = FDI_RX_CTL(pipe);
3060 temp = I915_READ(reg);
3061 temp &= ~FDI_LINK_TRAIN_AUTO;
3062 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3063 temp &= ~FDI_RX_ENABLE;
3064 I915_WRITE(reg, temp);
3065
3066 /* enable CPU FDI TX and PCH FDI RX */
3067 reg = FDI_TX_CTL(pipe);
3068 temp = I915_READ(reg);
3069 temp &= ~FDI_DP_PORT_WIDTH_MASK;
3070 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config.fdi_lanes);
3071 temp |= FDI_LINK_TRAIN_PATTERN_1_IVB;
Jesse Barnes357555c2011-04-28 15:09:55 -07003072 temp &= ~FDI_LINK_TRAIN_VOL_EMP_MASK;
Jesse Barnes139ccd32013-08-19 11:04:55 -07003073 temp |= snb_b_fdi_train_param[j/2];
3074 temp |= FDI_COMPOSITE_SYNC;
3075 I915_WRITE(reg, temp | FDI_TX_ENABLE);
3076
3077 I915_WRITE(FDI_RX_MISC(pipe),
3078 FDI_RX_TP1_TO_TP2_48 | FDI_RX_FDI_DELAY_90);
3079
3080 reg = FDI_RX_CTL(pipe);
3081 temp = I915_READ(reg);
3082 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
3083 temp |= FDI_COMPOSITE_SYNC;
3084 I915_WRITE(reg, temp | FDI_RX_ENABLE);
3085
3086 POSTING_READ(reg);
3087 udelay(1); /* should be 0.5us */
3088
3089 for (i = 0; i < 4; i++) {
3090 reg = FDI_RX_IIR(pipe);
3091 temp = I915_READ(reg);
3092 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
3093
3094 if (temp & FDI_RX_BIT_LOCK ||
3095 (I915_READ(reg) & FDI_RX_BIT_LOCK)) {
3096 I915_WRITE(reg, temp | FDI_RX_BIT_LOCK);
3097 DRM_DEBUG_KMS("FDI train 1 done, level %i.\n",
3098 i);
3099 break;
3100 }
3101 udelay(1); /* should be 0.5us */
3102 }
3103 if (i == 4) {
3104 DRM_DEBUG_KMS("FDI train 1 fail on vswing %d\n", j / 2);
3105 continue;
3106 }
3107
3108 /* Train 2 */
3109 reg = FDI_TX_CTL(pipe);
3110 temp = I915_READ(reg);
3111 temp &= ~FDI_LINK_TRAIN_NONE_IVB;
3112 temp |= FDI_LINK_TRAIN_PATTERN_2_IVB;
3113 I915_WRITE(reg, temp);
3114
3115 reg = FDI_RX_CTL(pipe);
3116 temp = I915_READ(reg);
3117 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3118 temp |= FDI_LINK_TRAIN_PATTERN_2_CPT;
Jesse Barnes357555c2011-04-28 15:09:55 -07003119 I915_WRITE(reg, temp);
3120
3121 POSTING_READ(reg);
Jesse Barnes139ccd32013-08-19 11:04:55 -07003122 udelay(2); /* should be 1.5us */
Jesse Barnes357555c2011-04-28 15:09:55 -07003123
Jesse Barnes139ccd32013-08-19 11:04:55 -07003124 for (i = 0; i < 4; i++) {
3125 reg = FDI_RX_IIR(pipe);
3126 temp = I915_READ(reg);
3127 DRM_DEBUG_KMS("FDI_RX_IIR 0x%x\n", temp);
Jesse Barnes357555c2011-04-28 15:09:55 -07003128
Jesse Barnes139ccd32013-08-19 11:04:55 -07003129 if (temp & FDI_RX_SYMBOL_LOCK ||
3130 (I915_READ(reg) & FDI_RX_SYMBOL_LOCK)) {
3131 I915_WRITE(reg, temp | FDI_RX_SYMBOL_LOCK);
3132 DRM_DEBUG_KMS("FDI train 2 done, level %i.\n",
3133 i);
3134 goto train_done;
3135 }
3136 udelay(2); /* should be 1.5us */
Jesse Barnes357555c2011-04-28 15:09:55 -07003137 }
Jesse Barnes139ccd32013-08-19 11:04:55 -07003138 if (i == 4)
3139 DRM_DEBUG_KMS("FDI train 2 fail on vswing %d\n", j / 2);
Jesse Barnes357555c2011-04-28 15:09:55 -07003140 }
Jesse Barnes357555c2011-04-28 15:09:55 -07003141
Jesse Barnes139ccd32013-08-19 11:04:55 -07003142train_done:
Jesse Barnes357555c2011-04-28 15:09:55 -07003143 DRM_DEBUG_KMS("FDI train done.\n");
3144}
3145
Daniel Vetter88cefb62012-08-12 19:27:14 +02003146static void ironlake_fdi_pll_enable(struct intel_crtc *intel_crtc)
Jesse Barnes0e23b992010-09-10 11:10:00 -07003147{
Daniel Vetter88cefb62012-08-12 19:27:14 +02003148 struct drm_device *dev = intel_crtc->base.dev;
Jesse Barnes0e23b992010-09-10 11:10:00 -07003149 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes0e23b992010-09-10 11:10:00 -07003150 int pipe = intel_crtc->pipe;
Chris Wilson5eddb702010-09-11 13:48:45 +01003151 u32 reg, temp;
Jesse Barnes0e23b992010-09-10 11:10:00 -07003152
Jesse Barnesc64e3112010-09-10 11:27:03 -07003153
Jesse Barnes0e23b992010-09-10 11:10:00 -07003154 /* enable PCH FDI RX PLL, wait warmup plus DMI latency */
Chris Wilson5eddb702010-09-11 13:48:45 +01003155 reg = FDI_RX_CTL(pipe);
3156 temp = I915_READ(reg);
Daniel Vetter627eb5a2013-04-29 19:33:42 +02003157 temp &= ~(FDI_DP_PORT_WIDTH_MASK | (0x7 << 16));
3158 temp |= FDI_DP_PORT_WIDTH(intel_crtc->config.fdi_lanes);
Daniel Vetterdfd07d72012-12-17 11:21:38 +01003159 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
Chris Wilson5eddb702010-09-11 13:48:45 +01003160 I915_WRITE(reg, temp | FDI_RX_PLL_ENABLE);
3161
3162 POSTING_READ(reg);
Jesse Barnes0e23b992010-09-10 11:10:00 -07003163 udelay(200);
3164
3165 /* Switch from Rawclk to PCDclk */
Chris Wilson5eddb702010-09-11 13:48:45 +01003166 temp = I915_READ(reg);
3167 I915_WRITE(reg, temp | FDI_PCDCLK);
3168
3169 POSTING_READ(reg);
Jesse Barnes0e23b992010-09-10 11:10:00 -07003170 udelay(200);
3171
Paulo Zanoni20749732012-11-23 15:30:38 -02003172 /* Enable CPU FDI TX PLL, always on for Ironlake */
3173 reg = FDI_TX_CTL(pipe);
3174 temp = I915_READ(reg);
3175 if ((temp & FDI_TX_PLL_ENABLE) == 0) {
3176 I915_WRITE(reg, temp | FDI_TX_PLL_ENABLE);
Chris Wilson5eddb702010-09-11 13:48:45 +01003177
Paulo Zanoni20749732012-11-23 15:30:38 -02003178 POSTING_READ(reg);
3179 udelay(100);
Jesse Barnes0e23b992010-09-10 11:10:00 -07003180 }
3181}
3182
Daniel Vetter88cefb62012-08-12 19:27:14 +02003183static void ironlake_fdi_pll_disable(struct intel_crtc *intel_crtc)
3184{
3185 struct drm_device *dev = intel_crtc->base.dev;
3186 struct drm_i915_private *dev_priv = dev->dev_private;
3187 int pipe = intel_crtc->pipe;
3188 u32 reg, temp;
3189
3190 /* Switch from PCDclk to Rawclk */
3191 reg = FDI_RX_CTL(pipe);
3192 temp = I915_READ(reg);
3193 I915_WRITE(reg, temp & ~FDI_PCDCLK);
3194
3195 /* Disable CPU FDI TX PLL */
3196 reg = FDI_TX_CTL(pipe);
3197 temp = I915_READ(reg);
3198 I915_WRITE(reg, temp & ~FDI_TX_PLL_ENABLE);
3199
3200 POSTING_READ(reg);
3201 udelay(100);
3202
3203 reg = FDI_RX_CTL(pipe);
3204 temp = I915_READ(reg);
3205 I915_WRITE(reg, temp & ~FDI_RX_PLL_ENABLE);
3206
3207 /* Wait for the clocks to turn off. */
3208 POSTING_READ(reg);
3209 udelay(100);
3210}
3211
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003212static void ironlake_fdi_disable(struct drm_crtc *crtc)
3213{
3214 struct drm_device *dev = crtc->dev;
3215 struct drm_i915_private *dev_priv = dev->dev_private;
3216 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3217 int pipe = intel_crtc->pipe;
3218 u32 reg, temp;
3219
3220 /* disable CPU FDI tx and PCH FDI rx */
3221 reg = FDI_TX_CTL(pipe);
3222 temp = I915_READ(reg);
3223 I915_WRITE(reg, temp & ~FDI_TX_ENABLE);
3224 POSTING_READ(reg);
3225
3226 reg = FDI_RX_CTL(pipe);
3227 temp = I915_READ(reg);
3228 temp &= ~(0x7 << 16);
Daniel Vetterdfd07d72012-12-17 11:21:38 +01003229 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003230 I915_WRITE(reg, temp & ~FDI_RX_ENABLE);
3231
3232 POSTING_READ(reg);
3233 udelay(100);
3234
3235 /* Ironlake workaround, disable clock pointer after downing FDI */
Robin Schroereba905b2014-05-18 02:24:50 +02003236 if (HAS_PCH_IBX(dev))
Jesse Barnes6f06ce12011-01-04 15:09:38 -08003237 I915_WRITE(FDI_RX_CHICKEN(pipe), FDI_RX_PHASE_SYNC_POINTER_OVR);
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003238
3239 /* still set train pattern 1 */
3240 reg = FDI_TX_CTL(pipe);
3241 temp = I915_READ(reg);
3242 temp &= ~FDI_LINK_TRAIN_NONE;
3243 temp |= FDI_LINK_TRAIN_PATTERN_1;
3244 I915_WRITE(reg, temp);
3245
3246 reg = FDI_RX_CTL(pipe);
3247 temp = I915_READ(reg);
3248 if (HAS_PCH_CPT(dev)) {
3249 temp &= ~FDI_LINK_TRAIN_PATTERN_MASK_CPT;
3250 temp |= FDI_LINK_TRAIN_PATTERN_1_CPT;
3251 } else {
3252 temp &= ~FDI_LINK_TRAIN_NONE;
3253 temp |= FDI_LINK_TRAIN_PATTERN_1;
3254 }
3255 /* BPC in FDI rx is consistent with that in PIPECONF */
3256 temp &= ~(0x07 << 16);
Daniel Vetterdfd07d72012-12-17 11:21:38 +01003257 temp |= (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) << 11;
Jesse Barnes0fc932b2011-01-04 15:09:37 -08003258 I915_WRITE(reg, temp);
3259
3260 POSTING_READ(reg);
3261 udelay(100);
3262}
3263
Chris Wilson5dce5b932014-01-20 10:17:36 +00003264bool intel_has_pending_fb_unpin(struct drm_device *dev)
3265{
3266 struct intel_crtc *crtc;
3267
3268 /* Note that we don't need to be called with mode_config.lock here
3269 * as our list of CRTC objects is static for the lifetime of the
3270 * device and so cannot disappear as we iterate. Similarly, we can
3271 * happily treat the predicates as racy, atomic checks as userspace
3272 * cannot claim and pin a new fb without at least acquring the
3273 * struct_mutex and so serialising with us.
3274 */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01003275 for_each_intel_crtc(dev, crtc) {
Chris Wilson5dce5b932014-01-20 10:17:36 +00003276 if (atomic_read(&crtc->unpin_work_count) == 0)
3277 continue;
3278
3279 if (crtc->unpin_work)
3280 intel_wait_for_vblank(dev, crtc->pipe);
3281
3282 return true;
3283 }
3284
3285 return false;
3286}
3287
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01003288static void intel_crtc_wait_for_pending_flips(struct drm_crtc *crtc)
3289{
Chris Wilson0f911282012-04-17 10:05:38 +01003290 struct drm_device *dev = crtc->dev;
Chris Wilson5bb61642012-09-27 21:25:58 +01003291 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01003292
Matt Roperf4510a22014-04-01 15:22:40 -07003293 if (crtc->primary->fb == NULL)
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01003294 return;
3295
Daniel Vetter2c10d572012-12-20 21:24:07 +01003296 WARN_ON(waitqueue_active(&dev_priv->pending_flip_queue));
3297
Daniel Vettereed6d672014-05-19 16:09:35 +02003298 WARN_ON(wait_event_timeout(dev_priv->pending_flip_queue,
3299 !intel_crtc_has_pending_flip(crtc),
3300 60*HZ) == 0);
Chris Wilson5bb61642012-09-27 21:25:58 +01003301
Chris Wilson0f911282012-04-17 10:05:38 +01003302 mutex_lock(&dev->struct_mutex);
Matt Roperf4510a22014-04-01 15:22:40 -07003303 intel_finish_fb(crtc->primary->fb);
Chris Wilson0f911282012-04-17 10:05:38 +01003304 mutex_unlock(&dev->struct_mutex);
Chris Wilsone6c3a2a2010-09-23 23:04:43 +01003305}
3306
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003307/* Program iCLKIP clock to the desired frequency */
3308static void lpt_program_iclkip(struct drm_crtc *crtc)
3309{
3310 struct drm_device *dev = crtc->dev;
3311 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiau241bfc32013-09-25 16:45:37 +01003312 int clock = to_intel_crtc(crtc)->config.adjusted_mode.crtc_clock;
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003313 u32 divsel, phaseinc, auxdiv, phasedir = 0;
3314 u32 temp;
3315
Daniel Vetter09153002012-12-12 14:06:44 +01003316 mutex_lock(&dev_priv->dpio_lock);
3317
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003318 /* It is necessary to ungate the pixclk gate prior to programming
3319 * the divisors, and gate it back when it is done.
3320 */
3321 I915_WRITE(PIXCLK_GATE, PIXCLK_GATE_GATE);
3322
3323 /* Disable SSCCTL */
3324 intel_sbi_write(dev_priv, SBI_SSCCTL6,
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003325 intel_sbi_read(dev_priv, SBI_SSCCTL6, SBI_ICLK) |
3326 SBI_SSCCTL_DISABLE,
3327 SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003328
3329 /* 20MHz is a corner case which is out of range for the 7-bit divisor */
Ville Syrjälä12d7cee2013-09-04 18:25:19 +03003330 if (clock == 20000) {
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003331 auxdiv = 1;
3332 divsel = 0x41;
3333 phaseinc = 0x20;
3334 } else {
3335 /* The iCLK virtual clock root frequency is in MHz,
Damien Lespiau241bfc32013-09-25 16:45:37 +01003336 * but the adjusted_mode->crtc_clock in in KHz. To get the
3337 * divisors, it is necessary to divide one by another, so we
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003338 * convert the virtual clock precision to KHz here for higher
3339 * precision.
3340 */
3341 u32 iclk_virtual_root_freq = 172800 * 1000;
3342 u32 iclk_pi_range = 64;
3343 u32 desired_divisor, msb_divisor_value, pi_value;
3344
Ville Syrjälä12d7cee2013-09-04 18:25:19 +03003345 desired_divisor = (iclk_virtual_root_freq / clock);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003346 msb_divisor_value = desired_divisor / iclk_pi_range;
3347 pi_value = desired_divisor % iclk_pi_range;
3348
3349 auxdiv = 0;
3350 divsel = msb_divisor_value - 2;
3351 phaseinc = pi_value;
3352 }
3353
3354 /* This should not happen with any sane values */
3355 WARN_ON(SBI_SSCDIVINTPHASE_DIVSEL(divsel) &
3356 ~SBI_SSCDIVINTPHASE_DIVSEL_MASK);
3357 WARN_ON(SBI_SSCDIVINTPHASE_DIR(phasedir) &
3358 ~SBI_SSCDIVINTPHASE_INCVAL_MASK);
3359
3360 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 +03003361 clock,
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003362 auxdiv,
3363 divsel,
3364 phasedir,
3365 phaseinc);
3366
3367 /* Program SSCDIVINTPHASE6 */
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003368 temp = intel_sbi_read(dev_priv, SBI_SSCDIVINTPHASE6, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003369 temp &= ~SBI_SSCDIVINTPHASE_DIVSEL_MASK;
3370 temp |= SBI_SSCDIVINTPHASE_DIVSEL(divsel);
3371 temp &= ~SBI_SSCDIVINTPHASE_INCVAL_MASK;
3372 temp |= SBI_SSCDIVINTPHASE_INCVAL(phaseinc);
3373 temp |= SBI_SSCDIVINTPHASE_DIR(phasedir);
3374 temp |= SBI_SSCDIVINTPHASE_PROPAGATE;
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003375 intel_sbi_write(dev_priv, SBI_SSCDIVINTPHASE6, temp, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003376
3377 /* Program SSCAUXDIV */
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003378 temp = intel_sbi_read(dev_priv, SBI_SSCAUXDIV6, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003379 temp &= ~SBI_SSCAUXDIV_FINALDIV2SEL(1);
3380 temp |= SBI_SSCAUXDIV_FINALDIV2SEL(auxdiv);
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003381 intel_sbi_write(dev_priv, SBI_SSCAUXDIV6, temp, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003382
3383 /* Enable modulator and associated divider */
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003384 temp = intel_sbi_read(dev_priv, SBI_SSCCTL6, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003385 temp &= ~SBI_SSCCTL_DISABLE;
Paulo Zanoni988d6ee2012-12-01 12:04:24 -02003386 intel_sbi_write(dev_priv, SBI_SSCCTL6, temp, SBI_ICLK);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003387
3388 /* Wait for initialization time */
3389 udelay(24);
3390
3391 I915_WRITE(PIXCLK_GATE, PIXCLK_GATE_UNGATE);
Daniel Vetter09153002012-12-12 14:06:44 +01003392
3393 mutex_unlock(&dev_priv->dpio_lock);
Eugeni Dodonove615efe2012-05-09 15:37:26 -03003394}
3395
Daniel Vetter275f01b22013-05-03 11:49:47 +02003396static void ironlake_pch_transcoder_set_timings(struct intel_crtc *crtc,
3397 enum pipe pch_transcoder)
3398{
3399 struct drm_device *dev = crtc->base.dev;
3400 struct drm_i915_private *dev_priv = dev->dev_private;
3401 enum transcoder cpu_transcoder = crtc->config.cpu_transcoder;
3402
3403 I915_WRITE(PCH_TRANS_HTOTAL(pch_transcoder),
3404 I915_READ(HTOTAL(cpu_transcoder)));
3405 I915_WRITE(PCH_TRANS_HBLANK(pch_transcoder),
3406 I915_READ(HBLANK(cpu_transcoder)));
3407 I915_WRITE(PCH_TRANS_HSYNC(pch_transcoder),
3408 I915_READ(HSYNC(cpu_transcoder)));
3409
3410 I915_WRITE(PCH_TRANS_VTOTAL(pch_transcoder),
3411 I915_READ(VTOTAL(cpu_transcoder)));
3412 I915_WRITE(PCH_TRANS_VBLANK(pch_transcoder),
3413 I915_READ(VBLANK(cpu_transcoder)));
3414 I915_WRITE(PCH_TRANS_VSYNC(pch_transcoder),
3415 I915_READ(VSYNC(cpu_transcoder)));
3416 I915_WRITE(PCH_TRANS_VSYNCSHIFT(pch_transcoder),
3417 I915_READ(VSYNCSHIFT(cpu_transcoder)));
3418}
3419
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01003420static void cpt_enable_fdi_bc_bifurcation(struct drm_device *dev)
3421{
3422 struct drm_i915_private *dev_priv = dev->dev_private;
3423 uint32_t temp;
3424
3425 temp = I915_READ(SOUTH_CHICKEN1);
3426 if (temp & FDI_BC_BIFURCATION_SELECT)
3427 return;
3428
3429 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_B)) & FDI_RX_ENABLE);
3430 WARN_ON(I915_READ(FDI_RX_CTL(PIPE_C)) & FDI_RX_ENABLE);
3431
3432 temp |= FDI_BC_BIFURCATION_SELECT;
3433 DRM_DEBUG_KMS("enabling fdi C rx\n");
3434 I915_WRITE(SOUTH_CHICKEN1, temp);
3435 POSTING_READ(SOUTH_CHICKEN1);
3436}
3437
3438static void ivybridge_update_fdi_bc_bifurcation(struct intel_crtc *intel_crtc)
3439{
3440 struct drm_device *dev = intel_crtc->base.dev;
3441 struct drm_i915_private *dev_priv = dev->dev_private;
3442
3443 switch (intel_crtc->pipe) {
3444 case PIPE_A:
3445 break;
3446 case PIPE_B:
3447 if (intel_crtc->config.fdi_lanes > 2)
3448 WARN_ON(I915_READ(SOUTH_CHICKEN1) & FDI_BC_BIFURCATION_SELECT);
3449 else
3450 cpt_enable_fdi_bc_bifurcation(dev);
3451
3452 break;
3453 case PIPE_C:
3454 cpt_enable_fdi_bc_bifurcation(dev);
3455
3456 break;
3457 default:
3458 BUG();
3459 }
3460}
3461
Jesse Barnesf67a5592011-01-05 10:31:48 -08003462/*
3463 * Enable PCH resources required for PCH ports:
3464 * - PCH PLLs
3465 * - FDI training & RX/TX
3466 * - update transcoder timings
3467 * - DP transcoding bits
3468 * - transcoder
3469 */
3470static void ironlake_pch_enable(struct drm_crtc *crtc)
Jesse Barnes79e53942008-11-07 14:24:08 -08003471{
3472 struct drm_device *dev = crtc->dev;
Zhenyu Wang2c072452009-06-05 15:38:42 +08003473 struct drm_i915_private *dev_priv = dev->dev_private;
3474 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3475 int pipe = intel_crtc->pipe;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003476 u32 reg, temp;
Jesse Barnes6be4a602010-09-10 10:26:01 -07003477
Daniel Vetterab9412b2013-05-03 11:49:46 +02003478 assert_pch_transcoder_disabled(dev_priv, pipe);
Chris Wilsone7e164d2012-05-11 09:21:25 +01003479
Daniel Vetter1fbc0d72013-10-29 12:04:08 +01003480 if (IS_IVYBRIDGE(dev))
3481 ivybridge_update_fdi_bc_bifurcation(intel_crtc);
3482
Daniel Vettercd986ab2012-10-26 10:58:12 +02003483 /* Write the TU size bits before fdi link training, so that error
3484 * detection works. */
3485 I915_WRITE(FDI_RX_TUSIZE1(pipe),
3486 I915_READ(PIPE_DATA_M1(pipe)) & TU_SIZE_MASK);
3487
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003488 /* For PCH output, training FDI link */
Jesse Barnes674cf962011-04-28 14:27:04 -07003489 dev_priv->display.fdi_link_train(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003490
Daniel Vetter3ad8a202013-06-05 13:34:32 +02003491 /* We need to program the right clock selection before writing the pixel
3492 * mutliplier into the DPLL. */
Paulo Zanoni303b81e2012-10-31 18:12:23 -02003493 if (HAS_PCH_CPT(dev)) {
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003494 u32 sel;
Jesse Barnes4b645f12011-10-12 09:51:31 -07003495
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003496 temp = I915_READ(PCH_DPLL_SEL);
Daniel Vetter11887392013-06-05 13:34:09 +02003497 temp |= TRANS_DPLL_ENABLE(pipe);
3498 sel = TRANS_DPLLB_SEL(pipe);
Daniel Vettera43f6e02013-06-07 23:10:32 +02003499 if (intel_crtc->config.shared_dpll == DPLL_ID_PCH_PLL_B)
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003500 temp |= sel;
3501 else
3502 temp &= ~sel;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003503 I915_WRITE(PCH_DPLL_SEL, temp);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003504 }
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003505
Daniel Vetter3ad8a202013-06-05 13:34:32 +02003506 /* XXX: pch pll's can be enabled any time before we enable the PCH
3507 * transcoder, and we actually should do this to not upset any PCH
3508 * transcoder that already use the clock when we share it.
3509 *
3510 * Note that enable_shared_dpll tries to do the right thing, but
3511 * get_shared_dpll unconditionally resets the pll - we need that to have
3512 * the right LVDS enable sequence. */
Daniel Vetter85b38942014-04-24 23:55:14 +02003513 intel_enable_shared_dpll(intel_crtc);
Daniel Vetter3ad8a202013-06-05 13:34:32 +02003514
Jesse Barnesd9b6cb52011-01-04 15:09:35 -08003515 /* set transcoder timing, panel must allow it */
3516 assert_panel_unlocked(dev_priv, pipe);
Daniel Vetter275f01b22013-05-03 11:49:47 +02003517 ironlake_pch_transcoder_set_timings(intel_crtc, pipe);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003518
Paulo Zanoni303b81e2012-10-31 18:12:23 -02003519 intel_fdi_normal_train(crtc);
Zhenyu Wang5e84e1a2010-10-28 16:38:08 +08003520
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003521 /* For PCH DP, enable TRANS_DP_CTL */
3522 if (HAS_PCH_CPT(dev) &&
Keith Packard417e8222011-11-01 19:54:11 -07003523 (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT) ||
3524 intel_pipe_has_type(crtc, INTEL_OUTPUT_EDP))) {
Daniel Vetterdfd07d72012-12-17 11:21:38 +01003525 u32 bpc = (I915_READ(PIPECONF(pipe)) & PIPECONF_BPC_MASK) >> 5;
Chris Wilson5eddb702010-09-11 13:48:45 +01003526 reg = TRANS_DP_CTL(pipe);
3527 temp = I915_READ(reg);
3528 temp &= ~(TRANS_DP_PORT_SEL_MASK |
Eric Anholt220cad32010-11-18 09:32:58 +08003529 TRANS_DP_SYNC_MASK |
3530 TRANS_DP_BPC_MASK);
Chris Wilson5eddb702010-09-11 13:48:45 +01003531 temp |= (TRANS_DP_OUTPUT_ENABLE |
3532 TRANS_DP_ENH_FRAMING);
Jesse Barnes9325c9f2011-06-24 12:19:21 -07003533 temp |= bpc << 9; /* same format but at 11:9 */
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003534
3535 if (crtc->mode.flags & DRM_MODE_FLAG_PHSYNC)
Chris Wilson5eddb702010-09-11 13:48:45 +01003536 temp |= TRANS_DP_HSYNC_ACTIVE_HIGH;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003537 if (crtc->mode.flags & DRM_MODE_FLAG_PVSYNC)
Chris Wilson5eddb702010-09-11 13:48:45 +01003538 temp |= TRANS_DP_VSYNC_ACTIVE_HIGH;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003539
3540 switch (intel_trans_dp_port_sel(crtc)) {
3541 case PCH_DP_B:
Chris Wilson5eddb702010-09-11 13:48:45 +01003542 temp |= TRANS_DP_PORT_SEL_B;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003543 break;
3544 case PCH_DP_C:
Chris Wilson5eddb702010-09-11 13:48:45 +01003545 temp |= TRANS_DP_PORT_SEL_C;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003546 break;
3547 case PCH_DP_D:
Chris Wilson5eddb702010-09-11 13:48:45 +01003548 temp |= TRANS_DP_PORT_SEL_D;
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003549 break;
3550 default:
Daniel Vettere95d41e2012-10-26 10:58:16 +02003551 BUG();
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003552 }
3553
Chris Wilson5eddb702010-09-11 13:48:45 +01003554 I915_WRITE(reg, temp);
Jesse Barnesc98e9dc2010-09-10 10:57:18 -07003555 }
3556
Paulo Zanonib8a4f402012-10-31 18:12:42 -02003557 ironlake_enable_pch_transcoder(dev_priv, pipe);
Jesse Barnesf67a5592011-01-05 10:31:48 -08003558}
3559
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003560static void lpt_pch_enable(struct drm_crtc *crtc)
3561{
3562 struct drm_device *dev = crtc->dev;
3563 struct drm_i915_private *dev_priv = dev->dev_private;
3564 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter3b117c82013-04-17 20:15:07 +02003565 enum transcoder cpu_transcoder = intel_crtc->config.cpu_transcoder;
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003566
Daniel Vetterab9412b2013-05-03 11:49:46 +02003567 assert_pch_transcoder_disabled(dev_priv, TRANSCODER_A);
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003568
Paulo Zanoni8c52b5e2012-10-31 18:12:24 -02003569 lpt_program_iclkip(crtc);
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003570
Paulo Zanoni0540e482012-10-31 18:12:40 -02003571 /* Set transcoder timing. */
Daniel Vetter275f01b22013-05-03 11:49:47 +02003572 ironlake_pch_transcoder_set_timings(intel_crtc, PIPE_A);
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02003573
Paulo Zanoni937bb612012-10-31 18:12:47 -02003574 lpt_enable_pch_transcoder(dev_priv, cpu_transcoder);
Jesse Barnesf67a5592011-01-05 10:31:48 -08003575}
3576
Daniel Vettere2b78262013-06-07 23:10:03 +02003577static void intel_put_shared_dpll(struct intel_crtc *crtc)
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003578{
Daniel Vettere2b78262013-06-07 23:10:03 +02003579 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003580
3581 if (pll == NULL)
3582 return;
3583
3584 if (pll->refcount == 0) {
Daniel Vetter46edb022013-06-05 13:34:12 +02003585 WARN(1, "bad %s refcount\n", pll->name);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003586 return;
3587 }
3588
Daniel Vetterf4a091c2013-06-10 17:28:22 +02003589 if (--pll->refcount == 0) {
3590 WARN_ON(pll->on);
3591 WARN_ON(pll->active);
3592 }
3593
Daniel Vettera43f6e02013-06-07 23:10:32 +02003594 crtc->config.shared_dpll = DPLL_ID_PRIVATE;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003595}
3596
Daniel Vetterb89a1d32013-06-05 13:34:24 +02003597static struct intel_shared_dpll *intel_get_shared_dpll(struct intel_crtc *crtc)
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003598{
Daniel Vettere2b78262013-06-07 23:10:03 +02003599 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
3600 struct intel_shared_dpll *pll = intel_crtc_to_shared_dpll(crtc);
3601 enum intel_dpll_id i;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003602
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003603 if (pll) {
Daniel Vetter46edb022013-06-05 13:34:12 +02003604 DRM_DEBUG_KMS("CRTC:%d dropping existing %s\n",
3605 crtc->base.base.id, pll->name);
Daniel Vettere2b78262013-06-07 23:10:03 +02003606 intel_put_shared_dpll(crtc);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003607 }
3608
Daniel Vetter98b6bd92012-05-20 20:00:25 +02003609 if (HAS_PCH_IBX(dev_priv->dev)) {
3610 /* Ironlake PCH has a fixed PLL->PCH pipe mapping. */
Daniel Vetterd94ab062013-07-04 12:01:16 +02003611 i = (enum intel_dpll_id) crtc->pipe;
Daniel Vettere72f9fb2013-06-05 13:34:06 +02003612 pll = &dev_priv->shared_dplls[i];
Daniel Vetter98b6bd92012-05-20 20:00:25 +02003613
Daniel Vetter46edb022013-06-05 13:34:12 +02003614 DRM_DEBUG_KMS("CRTC:%d using pre-allocated %s\n",
3615 crtc->base.base.id, pll->name);
Daniel Vetter98b6bd92012-05-20 20:00:25 +02003616
Daniel Vetterf2a69f42014-05-20 15:19:19 +02003617 WARN_ON(pll->refcount);
3618
Daniel Vetter98b6bd92012-05-20 20:00:25 +02003619 goto found;
3620 }
3621
Daniel Vettere72f9fb2013-06-05 13:34:06 +02003622 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
3623 pll = &dev_priv->shared_dplls[i];
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003624
3625 /* Only want to check enabled timings first */
3626 if (pll->refcount == 0)
3627 continue;
3628
Daniel Vetterb89a1d32013-06-05 13:34:24 +02003629 if (memcmp(&crtc->config.dpll_hw_state, &pll->hw_state,
3630 sizeof(pll->hw_state)) == 0) {
Daniel Vetter46edb022013-06-05 13:34:12 +02003631 DRM_DEBUG_KMS("CRTC:%d sharing existing %s (refcount %d, ative %d)\n",
Daniel Vettere2b78262013-06-07 23:10:03 +02003632 crtc->base.base.id,
Daniel Vetter46edb022013-06-05 13:34:12 +02003633 pll->name, pll->refcount, pll->active);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003634
3635 goto found;
3636 }
3637 }
3638
3639 /* Ok no matching timings, maybe there's a free one? */
Daniel Vettere72f9fb2013-06-05 13:34:06 +02003640 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
3641 pll = &dev_priv->shared_dplls[i];
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003642 if (pll->refcount == 0) {
Daniel Vetter46edb022013-06-05 13:34:12 +02003643 DRM_DEBUG_KMS("CRTC:%d allocated %s\n",
3644 crtc->base.base.id, pll->name);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003645 goto found;
3646 }
3647 }
3648
3649 return NULL;
3650
3651found:
Daniel Vetterf2a69f42014-05-20 15:19:19 +02003652 if (pll->refcount == 0)
3653 pll->hw_state = crtc->config.dpll_hw_state;
3654
Daniel Vettera43f6e02013-06-07 23:10:32 +02003655 crtc->config.shared_dpll = i;
Daniel Vetter46edb022013-06-05 13:34:12 +02003656 DRM_DEBUG_DRIVER("using %s for pipe %c\n", pll->name,
3657 pipe_name(crtc->pipe));
Daniel Vetter66e985c2013-06-05 13:34:20 +02003658
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003659 pll->refcount++;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003660
Jesse Barnesee7b9f92012-04-20 17:11:53 +01003661 return pll;
3662}
3663
Daniel Vettera1520312013-05-03 11:49:50 +02003664static void cpt_verify_modeset(struct drm_device *dev, int pipe)
Jesse Barnesd4270e52011-10-11 10:43:02 -07003665{
3666 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter23670b322012-11-01 09:15:30 +01003667 int dslreg = PIPEDSL(pipe);
Jesse Barnesd4270e52011-10-11 10:43:02 -07003668 u32 temp;
3669
3670 temp = I915_READ(dslreg);
3671 udelay(500);
3672 if (wait_for(I915_READ(dslreg) != temp, 5)) {
Jesse Barnesd4270e52011-10-11 10:43:02 -07003673 if (wait_for(I915_READ(dslreg) != temp, 5))
Ville Syrjälä84f44ce2013-04-17 17:48:49 +03003674 DRM_ERROR("mode set failed: pipe %c stuck\n", pipe_name(pipe));
Jesse Barnesd4270e52011-10-11 10:43:02 -07003675 }
3676}
3677
Jesse Barnesb074cec2013-04-25 12:55:02 -07003678static void ironlake_pfit_enable(struct intel_crtc *crtc)
3679{
3680 struct drm_device *dev = crtc->base.dev;
3681 struct drm_i915_private *dev_priv = dev->dev_private;
3682 int pipe = crtc->pipe;
3683
Chris Wilsonfd4daa92013-08-27 17:04:17 +01003684 if (crtc->config.pch_pfit.enabled) {
Jesse Barnesb074cec2013-04-25 12:55:02 -07003685 /* Force use of hard-coded filter coefficients
3686 * as some pre-programmed values are broken,
3687 * e.g. x201.
3688 */
3689 if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev))
3690 I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3 |
3691 PF_PIPE_SEL_IVB(pipe));
3692 else
3693 I915_WRITE(PF_CTL(pipe), PF_ENABLE | PF_FILTER_MED_3x3);
3694 I915_WRITE(PF_WIN_POS(pipe), crtc->config.pch_pfit.pos);
3695 I915_WRITE(PF_WIN_SZ(pipe), crtc->config.pch_pfit.size);
Jesse Barnes040484a2011-01-03 12:14:26 -08003696 }
Jesse Barnesf67a5592011-01-05 10:31:48 -08003697}
3698
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03003699static void intel_enable_planes(struct drm_crtc *crtc)
3700{
3701 struct drm_device *dev = crtc->dev;
3702 enum pipe pipe = to_intel_crtc(crtc)->pipe;
Matt Roperaf2b6532014-04-01 15:22:32 -07003703 struct drm_plane *plane;
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03003704 struct intel_plane *intel_plane;
3705
Matt Roperaf2b6532014-04-01 15:22:32 -07003706 drm_for_each_legacy_plane(plane, &dev->mode_config.plane_list) {
3707 intel_plane = to_intel_plane(plane);
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03003708 if (intel_plane->pipe == pipe)
3709 intel_plane_restore(&intel_plane->base);
Matt Roperaf2b6532014-04-01 15:22:32 -07003710 }
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03003711}
3712
3713static void intel_disable_planes(struct drm_crtc *crtc)
3714{
3715 struct drm_device *dev = crtc->dev;
3716 enum pipe pipe = to_intel_crtc(crtc)->pipe;
Matt Roperaf2b6532014-04-01 15:22:32 -07003717 struct drm_plane *plane;
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03003718 struct intel_plane *intel_plane;
3719
Matt Roperaf2b6532014-04-01 15:22:32 -07003720 drm_for_each_legacy_plane(plane, &dev->mode_config.plane_list) {
3721 intel_plane = to_intel_plane(plane);
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03003722 if (intel_plane->pipe == pipe)
3723 intel_plane_disable(&intel_plane->base);
Matt Roperaf2b6532014-04-01 15:22:32 -07003724 }
Ville Syrjäläbb53d4a2013-06-04 13:49:04 +03003725}
3726
Ville Syrjälä20bc86732013-10-01 18:02:17 +03003727void hsw_enable_ips(struct intel_crtc *crtc)
Paulo Zanonid77e4532013-09-24 13:52:55 -03003728{
3729 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
3730
3731 if (!crtc->config.ips_enabled)
3732 return;
3733
3734 /* We can only enable IPS after we enable a plane and wait for a vblank.
3735 * We guarantee that the plane is enabled by calling intel_enable_ips
3736 * only after intel_enable_plane. And intel_enable_plane already waits
3737 * for a vblank, so all we need to do here is to enable the IPS bit. */
3738 assert_plane_enabled(dev_priv, crtc->plane);
Ben Widawsky2a114cc2013-11-02 21:07:47 -07003739 if (IS_BROADWELL(crtc->base.dev)) {
3740 mutex_lock(&dev_priv->rps.hw_lock);
3741 WARN_ON(sandybridge_pcode_write(dev_priv, DISPLAY_IPS_CONTROL, 0xc0000000));
3742 mutex_unlock(&dev_priv->rps.hw_lock);
3743 /* Quoting Art Runyan: "its not safe to expect any particular
3744 * value in IPS_CTL bit 31 after enabling IPS through the
Jesse Barnese59150d2014-01-07 13:30:45 -08003745 * mailbox." Moreover, the mailbox may return a bogus state,
3746 * so we need to just enable it and continue on.
Ben Widawsky2a114cc2013-11-02 21:07:47 -07003747 */
3748 } else {
3749 I915_WRITE(IPS_CTL, IPS_ENABLE);
3750 /* The bit only becomes 1 in the next vblank, so this wait here
3751 * is essentially intel_wait_for_vblank. If we don't have this
3752 * and don't wait for vblanks until the end of crtc_enable, then
3753 * the HW state readout code will complain that the expected
3754 * IPS_CTL value is not the one we read. */
3755 if (wait_for(I915_READ_NOTRACE(IPS_CTL) & IPS_ENABLE, 50))
3756 DRM_ERROR("Timed out waiting for IPS enable\n");
3757 }
Paulo Zanonid77e4532013-09-24 13:52:55 -03003758}
3759
Ville Syrjälä20bc86732013-10-01 18:02:17 +03003760void hsw_disable_ips(struct intel_crtc *crtc)
Paulo Zanonid77e4532013-09-24 13:52:55 -03003761{
3762 struct drm_device *dev = crtc->base.dev;
3763 struct drm_i915_private *dev_priv = dev->dev_private;
3764
3765 if (!crtc->config.ips_enabled)
3766 return;
3767
3768 assert_plane_enabled(dev_priv, crtc->plane);
Ben Widawsky23d0b132014-04-10 14:32:41 -07003769 if (IS_BROADWELL(dev)) {
Ben Widawsky2a114cc2013-11-02 21:07:47 -07003770 mutex_lock(&dev_priv->rps.hw_lock);
3771 WARN_ON(sandybridge_pcode_write(dev_priv, DISPLAY_IPS_CONTROL, 0));
3772 mutex_unlock(&dev_priv->rps.hw_lock);
Ben Widawsky23d0b132014-04-10 14:32:41 -07003773 /* wait for pcode to finish disabling IPS, which may take up to 42ms */
3774 if (wait_for((I915_READ(IPS_CTL) & IPS_ENABLE) == 0, 42))
3775 DRM_ERROR("Timed out waiting for IPS disable\n");
Jesse Barnese59150d2014-01-07 13:30:45 -08003776 } else {
Ben Widawsky2a114cc2013-11-02 21:07:47 -07003777 I915_WRITE(IPS_CTL, 0);
Jesse Barnese59150d2014-01-07 13:30:45 -08003778 POSTING_READ(IPS_CTL);
3779 }
Paulo Zanonid77e4532013-09-24 13:52:55 -03003780
3781 /* We need to wait for a vblank before we can disable the plane. */
3782 intel_wait_for_vblank(dev, crtc->pipe);
3783}
3784
3785/** Loads the palette/gamma unit for the CRTC with the prepared values */
3786static void intel_crtc_load_lut(struct drm_crtc *crtc)
3787{
3788 struct drm_device *dev = crtc->dev;
3789 struct drm_i915_private *dev_priv = dev->dev_private;
3790 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3791 enum pipe pipe = intel_crtc->pipe;
3792 int palreg = PALETTE(pipe);
3793 int i;
3794 bool reenable_ips = false;
3795
3796 /* The clocks have to be on to load the palette. */
3797 if (!crtc->enabled || !intel_crtc->active)
3798 return;
3799
3800 if (!HAS_PCH_SPLIT(dev_priv->dev)) {
3801 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DSI))
3802 assert_dsi_pll_enabled(dev_priv);
3803 else
3804 assert_pll_enabled(dev_priv, pipe);
3805 }
3806
3807 /* use legacy palette for Ironlake */
3808 if (HAS_PCH_SPLIT(dev))
3809 palreg = LGC_PALETTE(pipe);
3810
3811 /* Workaround : Do not read or write the pipe palette/gamma data while
3812 * GAMMA_MODE is configured for split gamma and IPS_CTL has IPS enabled.
3813 */
Paulo Zanoni41e6fc42014-01-08 17:26:31 -02003814 if (IS_HASWELL(dev) && intel_crtc->config.ips_enabled &&
Paulo Zanonid77e4532013-09-24 13:52:55 -03003815 ((I915_READ(GAMMA_MODE(pipe)) & GAMMA_MODE_MODE_MASK) ==
3816 GAMMA_MODE_MODE_SPLIT)) {
3817 hsw_disable_ips(intel_crtc);
3818 reenable_ips = true;
3819 }
3820
3821 for (i = 0; i < 256; i++) {
3822 I915_WRITE(palreg + 4 * i,
3823 (intel_crtc->lut_r[i] << 16) |
3824 (intel_crtc->lut_g[i] << 8) |
3825 intel_crtc->lut_b[i]);
3826 }
3827
3828 if (reenable_ips)
3829 hsw_enable_ips(intel_crtc);
3830}
3831
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03003832static void intel_crtc_dpms_overlay(struct intel_crtc *intel_crtc, bool enable)
3833{
3834 if (!enable && intel_crtc->overlay) {
3835 struct drm_device *dev = intel_crtc->base.dev;
3836 struct drm_i915_private *dev_priv = dev->dev_private;
3837
3838 mutex_lock(&dev->struct_mutex);
3839 dev_priv->mm.interruptible = false;
3840 (void) intel_overlay_switch_off(intel_crtc->overlay);
3841 dev_priv->mm.interruptible = true;
3842 mutex_unlock(&dev->struct_mutex);
3843 }
3844
3845 /* Let userspace switch the overlay on again. In most cases userspace
3846 * has to recompute where to put it anyway.
3847 */
3848}
3849
3850/**
3851 * i9xx_fixup_plane - ugly workaround for G45 to fire up the hardware
3852 * cursor plane briefly if not already running after enabling the display
3853 * plane.
3854 * This workaround avoids occasional blank screens when self refresh is
3855 * enabled.
3856 */
3857static void
3858g4x_fixup_plane(struct drm_i915_private *dev_priv, enum pipe pipe)
3859{
3860 u32 cntl = I915_READ(CURCNTR(pipe));
3861
3862 if ((cntl & CURSOR_MODE) == 0) {
3863 u32 fw_bcl_self = I915_READ(FW_BLC_SELF);
3864
3865 I915_WRITE(FW_BLC_SELF, fw_bcl_self & ~FW_BLC_SELF_EN);
3866 I915_WRITE(CURCNTR(pipe), CURSOR_MODE_64_ARGB_AX);
3867 intel_wait_for_vblank(dev_priv->dev, pipe);
3868 I915_WRITE(CURCNTR(pipe), cntl);
3869 I915_WRITE(CURBASE(pipe), I915_READ(CURBASE(pipe)));
3870 I915_WRITE(FW_BLC_SELF, fw_bcl_self);
3871 }
3872}
3873
3874static void intel_crtc_enable_planes(struct drm_crtc *crtc)
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02003875{
3876 struct drm_device *dev = crtc->dev;
3877 struct drm_i915_private *dev_priv = dev->dev_private;
3878 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3879 int pipe = intel_crtc->pipe;
3880 int plane = intel_crtc->plane;
3881
3882 intel_enable_primary_hw_plane(dev_priv, plane, pipe);
3883 intel_enable_planes(crtc);
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03003884 /* The fixup needs to happen before cursor is enabled */
3885 if (IS_G4X(dev))
3886 g4x_fixup_plane(dev_priv, pipe);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02003887 intel_crtc_update_cursor(crtc, true);
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03003888 intel_crtc_dpms_overlay(intel_crtc, true);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02003889
3890 hsw_enable_ips(intel_crtc);
3891
3892 mutex_lock(&dev->struct_mutex);
3893 intel_update_fbc(dev);
Daniel Vetter71b1c372014-04-24 23:55:03 +02003894 intel_edp_psr_update(dev);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02003895 mutex_unlock(&dev->struct_mutex);
3896}
3897
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03003898static void intel_crtc_disable_planes(struct drm_crtc *crtc)
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02003899{
3900 struct drm_device *dev = crtc->dev;
3901 struct drm_i915_private *dev_priv = dev->dev_private;
3902 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3903 int pipe = intel_crtc->pipe;
3904 int plane = intel_crtc->plane;
3905
3906 intel_crtc_wait_for_pending_flips(crtc);
3907 drm_vblank_off(dev, pipe);
3908
3909 if (dev_priv->fbc.plane == plane)
3910 intel_disable_fbc(dev);
3911
3912 hsw_disable_ips(intel_crtc);
3913
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03003914 intel_crtc_dpms_overlay(intel_crtc, false);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02003915 intel_crtc_update_cursor(crtc, false);
3916 intel_disable_planes(crtc);
3917 intel_disable_primary_hw_plane(dev_priv, plane, pipe);
3918}
3919
Jesse Barnesf67a5592011-01-05 10:31:48 -08003920static void ironlake_crtc_enable(struct drm_crtc *crtc)
3921{
3922 struct drm_device *dev = crtc->dev;
3923 struct drm_i915_private *dev_priv = dev->dev_private;
3924 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02003925 struct intel_encoder *encoder;
Jesse Barnesf67a5592011-01-05 10:31:48 -08003926 int pipe = intel_crtc->pipe;
Daniel Vetter29407aa2014-04-24 23:55:08 +02003927 enum plane plane = intel_crtc->plane;
Jesse Barnesf67a5592011-01-05 10:31:48 -08003928
Daniel Vetter08a48462012-07-02 11:43:47 +02003929 WARN_ON(!crtc->enabled);
3930
Jesse Barnesf67a5592011-01-05 10:31:48 -08003931 if (intel_crtc->active)
3932 return;
3933
Daniel Vetterb14b1052014-04-24 23:55:13 +02003934 if (intel_crtc->config.has_pch_encoder)
3935 intel_prepare_shared_dpll(intel_crtc);
3936
Daniel Vetter29407aa2014-04-24 23:55:08 +02003937 if (intel_crtc->config.has_dp_encoder)
3938 intel_dp_set_m_n(intel_crtc);
3939
3940 intel_set_pipe_timings(intel_crtc);
3941
3942 if (intel_crtc->config.has_pch_encoder) {
3943 intel_cpu_transcoder_set_m_n(intel_crtc,
3944 &intel_crtc->config.fdi_m_n);
3945 }
3946
3947 ironlake_set_pipeconf(crtc);
3948
3949 /* Set up the display plane register */
3950 I915_WRITE(DSPCNTR(plane), DISPPLANE_GAMMA_ENABLE);
3951 POSTING_READ(DSPCNTR(plane));
3952
3953 dev_priv->display.update_primary_plane(crtc, crtc->primary->fb,
3954 crtc->x, crtc->y);
3955
Jesse Barnesf67a5592011-01-05 10:31:48 -08003956 intel_crtc->active = true;
Paulo Zanoni86642812013-04-12 17:57:57 -03003957
3958 intel_set_cpu_fifo_underrun_reporting(dev, pipe, true);
3959 intel_set_pch_fifo_underrun_reporting(dev, pipe, true);
3960
Daniel Vetterf6736a12013-06-05 13:34:30 +02003961 for_each_encoder_on_crtc(dev, crtc, encoder)
Daniel Vetter952735e2013-06-05 13:34:27 +02003962 if (encoder->pre_enable)
3963 encoder->pre_enable(encoder);
Jesse Barnesf67a5592011-01-05 10:31:48 -08003964
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01003965 if (intel_crtc->config.has_pch_encoder) {
Daniel Vetterfff367c2012-10-27 15:50:28 +02003966 /* Note: FDI PLL enabling _must_ be done before we enable the
3967 * cpu pipes, hence this is separate from all the other fdi/pch
3968 * enabling. */
Daniel Vetter88cefb62012-08-12 19:27:14 +02003969 ironlake_fdi_pll_enable(intel_crtc);
Daniel Vetter46b6f812012-09-06 22:08:33 +02003970 } else {
3971 assert_fdi_tx_disabled(dev_priv, pipe);
3972 assert_fdi_rx_disabled(dev_priv, pipe);
3973 }
Jesse Barnesf67a5592011-01-05 10:31:48 -08003974
Jesse Barnesb074cec2013-04-25 12:55:02 -07003975 ironlake_pfit_enable(intel_crtc);
Jesse Barnesf67a5592011-01-05 10:31:48 -08003976
Jesse Barnes9c54c0d2011-06-15 23:32:33 +02003977 /*
3978 * On ILK+ LUT must be loaded before the pipe is running but with
3979 * clocks enabled
3980 */
3981 intel_crtc_load_lut(crtc);
3982
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03003983 intel_update_watermarks(crtc);
Paulo Zanonie1fdc472014-01-17 13:51:12 -02003984 intel_enable_pipe(intel_crtc);
Jesse Barnesf67a5592011-01-05 10:31:48 -08003985
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01003986 if (intel_crtc->config.has_pch_encoder)
Jesse Barnesf67a5592011-01-05 10:31:48 -08003987 ironlake_pch_enable(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07003988
Daniel Vetterfa5c73b2012-07-01 23:24:36 +02003989 for_each_encoder_on_crtc(dev, crtc, encoder)
3990 encoder->enable(encoder);
Daniel Vetter61b77dd2012-07-02 00:16:19 +02003991
3992 if (HAS_PCH_CPT(dev))
Daniel Vettera1520312013-05-03 11:49:50 +02003993 cpt_verify_modeset(dev, intel_crtc->pipe);
Daniel Vetter6ce94102012-10-04 19:20:03 +02003994
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03003995 intel_crtc_enable_planes(crtc);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02003996
Daniel Vetter6ce94102012-10-04 19:20:03 +02003997 /*
3998 * There seems to be a race in PCH platform hw (at least on some
3999 * outputs) where an enabled pipe still completes any pageflip right
4000 * away (as if the pipe is off) instead of waiting for vblank. As soon
4001 * as the first vblank happend, everything works as expected. Hence just
4002 * wait for one vblank before returning to avoid strange things
4003 * happening.
4004 */
4005 intel_wait_for_vblank(dev, intel_crtc->pipe);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004006}
4007
Paulo Zanoni42db64e2013-05-31 16:33:22 -03004008/* IPS only exists on ULT machines and is tied to pipe A. */
4009static bool hsw_crtc_supports_ips(struct intel_crtc *crtc)
4010{
Damien Lespiauf5adf942013-06-24 18:29:34 +01004011 return HAS_IPS(crtc->base.dev) && crtc->pipe == PIPE_A;
Paulo Zanoni42db64e2013-05-31 16:33:22 -03004012}
4013
Paulo Zanonie4916942013-09-20 16:21:19 -03004014/*
4015 * This implements the workaround described in the "notes" section of the mode
4016 * set sequence documentation. When going from no pipes or single pipe to
4017 * multiple pipes, and planes are enabled after the pipe, we need to wait at
4018 * least 2 vblanks on the first pipe before enabling planes on the second pipe.
4019 */
4020static void haswell_mode_set_planes_workaround(struct intel_crtc *crtc)
4021{
4022 struct drm_device *dev = crtc->base.dev;
4023 struct intel_crtc *crtc_it, *other_active_crtc = NULL;
4024
4025 /* We want to get the other_active_crtc only if there's only 1 other
4026 * active crtc. */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01004027 for_each_intel_crtc(dev, crtc_it) {
Paulo Zanonie4916942013-09-20 16:21:19 -03004028 if (!crtc_it->active || crtc_it == crtc)
4029 continue;
4030
4031 if (other_active_crtc)
4032 return;
4033
4034 other_active_crtc = crtc_it;
4035 }
4036 if (!other_active_crtc)
4037 return;
4038
4039 intel_wait_for_vblank(dev, other_active_crtc->pipe);
4040 intel_wait_for_vblank(dev, other_active_crtc->pipe);
4041}
4042
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004043static void haswell_crtc_enable(struct drm_crtc *crtc)
4044{
4045 struct drm_device *dev = crtc->dev;
4046 struct drm_i915_private *dev_priv = dev->dev_private;
4047 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4048 struct intel_encoder *encoder;
4049 int pipe = intel_crtc->pipe;
Daniel Vetter229fca92014-04-24 23:55:09 +02004050 enum plane plane = intel_crtc->plane;
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004051
4052 WARN_ON(!crtc->enabled);
4053
4054 if (intel_crtc->active)
4055 return;
4056
Daniel Vetter229fca92014-04-24 23:55:09 +02004057 if (intel_crtc->config.has_dp_encoder)
4058 intel_dp_set_m_n(intel_crtc);
4059
4060 intel_set_pipe_timings(intel_crtc);
4061
4062 if (intel_crtc->config.has_pch_encoder) {
4063 intel_cpu_transcoder_set_m_n(intel_crtc,
4064 &intel_crtc->config.fdi_m_n);
4065 }
4066
4067 haswell_set_pipeconf(crtc);
4068
4069 intel_set_pipe_csc(crtc);
4070
4071 /* Set up the display plane register */
4072 I915_WRITE(DSPCNTR(plane), DISPPLANE_GAMMA_ENABLE | DISPPLANE_PIPE_CSC_ENABLE);
4073 POSTING_READ(DSPCNTR(plane));
4074
4075 dev_priv->display.update_primary_plane(crtc, crtc->primary->fb,
4076 crtc->x, crtc->y);
4077
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004078 intel_crtc->active = true;
Paulo Zanoni86642812013-04-12 17:57:57 -03004079
4080 intel_set_cpu_fifo_underrun_reporting(dev, pipe, true);
4081 if (intel_crtc->config.has_pch_encoder)
4082 intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_A, true);
4083
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01004084 if (intel_crtc->config.has_pch_encoder)
Paulo Zanoni04945642012-11-01 21:00:59 -02004085 dev_priv->display.fdi_link_train(crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004086
4087 for_each_encoder_on_crtc(dev, crtc, encoder)
4088 if (encoder->pre_enable)
4089 encoder->pre_enable(encoder);
4090
Paulo Zanoni1f544382012-10-24 11:32:00 -02004091 intel_ddi_enable_pipe_clock(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004092
Jesse Barnesb074cec2013-04-25 12:55:02 -07004093 ironlake_pfit_enable(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004094
4095 /*
4096 * On ILK+ LUT must be loaded before the pipe is running but with
4097 * clocks enabled
4098 */
4099 intel_crtc_load_lut(crtc);
4100
Paulo Zanoni1f544382012-10-24 11:32:00 -02004101 intel_ddi_set_pipe_settings(crtc);
Damien Lespiau8228c252013-03-07 15:30:27 +00004102 intel_ddi_enable_transcoder_func(crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004103
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03004104 intel_update_watermarks(crtc);
Paulo Zanonie1fdc472014-01-17 13:51:12 -02004105 intel_enable_pipe(intel_crtc);
Paulo Zanoni42db64e2013-05-31 16:33:22 -03004106
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01004107 if (intel_crtc->config.has_pch_encoder)
Paulo Zanoni1507e5b2012-10-31 18:12:22 -02004108 lpt_pch_enable(crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004109
Jani Nikula8807e552013-08-30 19:40:32 +03004110 for_each_encoder_on_crtc(dev, crtc, encoder) {
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004111 encoder->enable(encoder);
Jani Nikula8807e552013-08-30 19:40:32 +03004112 intel_opregion_notify_encoder(encoder, true);
4113 }
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004114
Paulo Zanonie4916942013-09-20 16:21:19 -03004115 /* If we change the relative order between pipe/planes enabling, we need
4116 * to change the workaround. */
4117 haswell_mode_set_planes_workaround(intel_crtc);
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004118 intel_crtc_enable_planes(crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004119}
4120
Daniel Vetter3f8dce32013-05-08 10:36:30 +02004121static void ironlake_pfit_disable(struct intel_crtc *crtc)
4122{
4123 struct drm_device *dev = crtc->base.dev;
4124 struct drm_i915_private *dev_priv = dev->dev_private;
4125 int pipe = crtc->pipe;
4126
4127 /* To avoid upsetting the power well on haswell only disable the pfit if
4128 * it's in use. The hw state code will make sure we get this right. */
Chris Wilsonfd4daa92013-08-27 17:04:17 +01004129 if (crtc->config.pch_pfit.enabled) {
Daniel Vetter3f8dce32013-05-08 10:36:30 +02004130 I915_WRITE(PF_CTL(pipe), 0);
4131 I915_WRITE(PF_WIN_POS(pipe), 0);
4132 I915_WRITE(PF_WIN_SZ(pipe), 0);
4133 }
4134}
4135
Jesse Barnes6be4a602010-09-10 10:26:01 -07004136static void ironlake_crtc_disable(struct drm_crtc *crtc)
4137{
4138 struct drm_device *dev = crtc->dev;
4139 struct drm_i915_private *dev_priv = dev->dev_private;
4140 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02004141 struct intel_encoder *encoder;
Jesse Barnes6be4a602010-09-10 10:26:01 -07004142 int pipe = intel_crtc->pipe;
Chris Wilson5eddb702010-09-11 13:48:45 +01004143 u32 reg, temp;
Jesse Barnes6be4a602010-09-10 10:26:01 -07004144
Chris Wilsonf7abfe82010-09-13 14:19:16 +01004145 if (!intel_crtc->active)
4146 return;
4147
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004148 intel_crtc_disable_planes(crtc);
Ville Syrjäläa5c4d7b2014-03-07 18:32:13 +02004149
Daniel Vetterea9d7582012-07-10 10:42:52 +02004150 for_each_encoder_on_crtc(dev, crtc, encoder)
4151 encoder->disable(encoder);
4152
Daniel Vetterd925c592013-06-05 13:34:04 +02004153 if (intel_crtc->config.has_pch_encoder)
4154 intel_set_pch_fifo_underrun_reporting(dev, pipe, false);
4155
Jesse Barnesb24e7172011-01-04 15:09:30 -08004156 intel_disable_pipe(dev_priv, pipe);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004157
Daniel Vetter3f8dce32013-05-08 10:36:30 +02004158 ironlake_pfit_disable(intel_crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004159
Daniel Vetterbf49ec82012-09-06 22:15:40 +02004160 for_each_encoder_on_crtc(dev, crtc, encoder)
4161 if (encoder->post_disable)
4162 encoder->post_disable(encoder);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004163
Daniel Vetterd925c592013-06-05 13:34:04 +02004164 if (intel_crtc->config.has_pch_encoder) {
4165 ironlake_fdi_disable(crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004166
Daniel Vetterd925c592013-06-05 13:34:04 +02004167 ironlake_disable_pch_transcoder(dev_priv, pipe);
4168 intel_set_pch_fifo_underrun_reporting(dev, pipe, true);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004169
Daniel Vetterd925c592013-06-05 13:34:04 +02004170 if (HAS_PCH_CPT(dev)) {
4171 /* disable TRANS_DP_CTL */
4172 reg = TRANS_DP_CTL(pipe);
4173 temp = I915_READ(reg);
4174 temp &= ~(TRANS_DP_OUTPUT_ENABLE |
4175 TRANS_DP_PORT_SEL_MASK);
4176 temp |= TRANS_DP_PORT_SEL_NONE;
4177 I915_WRITE(reg, temp);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004178
Daniel Vetterd925c592013-06-05 13:34:04 +02004179 /* disable DPLL_SEL */
4180 temp = I915_READ(PCH_DPLL_SEL);
Daniel Vetter11887392013-06-05 13:34:09 +02004181 temp &= ~(TRANS_DPLL_ENABLE(pipe) | TRANS_DPLLB_SEL(pipe));
Daniel Vetterd925c592013-06-05 13:34:04 +02004182 I915_WRITE(PCH_DPLL_SEL, temp);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08004183 }
Daniel Vetterd925c592013-06-05 13:34:04 +02004184
4185 /* disable PCH DPLL */
Daniel Vettere72f9fb2013-06-05 13:34:06 +02004186 intel_disable_shared_dpll(intel_crtc);
Daniel Vetterd925c592013-06-05 13:34:04 +02004187
4188 ironlake_fdi_pll_disable(intel_crtc);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004189 }
4190
Chris Wilsonf7abfe82010-09-13 14:19:16 +01004191 intel_crtc->active = false;
Ville Syrjälä46ba6142013-09-10 11:40:40 +03004192 intel_update_watermarks(crtc);
Ben Widawskyd1ebd8162011-04-25 20:11:50 +01004193
4194 mutex_lock(&dev->struct_mutex);
Chris Wilson6b383a72010-09-13 13:54:26 +01004195 intel_update_fbc(dev);
Daniel Vetter71b1c372014-04-24 23:55:03 +02004196 intel_edp_psr_update(dev);
Ben Widawskyd1ebd8162011-04-25 20:11:50 +01004197 mutex_unlock(&dev->struct_mutex);
Jesse Barnes6be4a602010-09-10 10:26:01 -07004198}
4199
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004200static void haswell_crtc_disable(struct drm_crtc *crtc)
4201{
4202 struct drm_device *dev = crtc->dev;
4203 struct drm_i915_private *dev_priv = dev->dev_private;
4204 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4205 struct intel_encoder *encoder;
4206 int pipe = intel_crtc->pipe;
Daniel Vetter3b117c82013-04-17 20:15:07 +02004207 enum transcoder cpu_transcoder = intel_crtc->config.cpu_transcoder;
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004208
4209 if (!intel_crtc->active)
4210 return;
4211
Ville Syrjäläd3eedb12014-05-08 19:23:13 +03004212 intel_crtc_disable_planes(crtc);
Ville Syrjälädda9a662013-09-19 17:00:37 -03004213
Jani Nikula8807e552013-08-30 19:40:32 +03004214 for_each_encoder_on_crtc(dev, crtc, encoder) {
4215 intel_opregion_notify_encoder(encoder, false);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004216 encoder->disable(encoder);
Jani Nikula8807e552013-08-30 19:40:32 +03004217 }
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004218
Paulo Zanoni86642812013-04-12 17:57:57 -03004219 if (intel_crtc->config.has_pch_encoder)
4220 intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_A, false);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004221 intel_disable_pipe(dev_priv, pipe);
4222
Paulo Zanoniad80a812012-10-24 16:06:19 -02004223 intel_ddi_disable_transcoder_func(dev_priv, cpu_transcoder);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004224
Daniel Vetter3f8dce32013-05-08 10:36:30 +02004225 ironlake_pfit_disable(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004226
Paulo Zanoni1f544382012-10-24 11:32:00 -02004227 intel_ddi_disable_pipe_clock(intel_crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004228
4229 for_each_encoder_on_crtc(dev, crtc, encoder)
4230 if (encoder->post_disable)
4231 encoder->post_disable(encoder);
4232
Daniel Vetter88adfff2013-03-28 10:42:01 +01004233 if (intel_crtc->config.has_pch_encoder) {
Paulo Zanoniab4d9662012-10-31 18:12:55 -02004234 lpt_disable_pch_transcoder(dev_priv);
Paulo Zanoni86642812013-04-12 17:57:57 -03004235 intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_A, true);
Paulo Zanoni1ad960f2012-11-01 21:05:05 -02004236 intel_ddi_fdi_disable(crtc);
Paulo Zanoni83616632012-10-23 18:29:54 -02004237 }
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004238
4239 intel_crtc->active = false;
Ville Syrjälä46ba6142013-09-10 11:40:40 +03004240 intel_update_watermarks(crtc);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004241
4242 mutex_lock(&dev->struct_mutex);
4243 intel_update_fbc(dev);
Daniel Vetter71b1c372014-04-24 23:55:03 +02004244 intel_edp_psr_update(dev);
Paulo Zanoni4f771f12012-10-23 18:29:51 -02004245 mutex_unlock(&dev->struct_mutex);
4246}
4247
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004248static void ironlake_crtc_off(struct drm_crtc *crtc)
4249{
4250 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vettere72f9fb2013-06-05 13:34:06 +02004251 intel_put_shared_dpll(intel_crtc);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004252}
4253
Paulo Zanoni6441ab52012-10-05 12:05:58 -03004254static void haswell_crtc_off(struct drm_crtc *crtc)
4255{
4256 intel_ddi_put_crtc_pll(crtc);
4257}
4258
Jesse Barnes2dd24552013-04-25 12:55:01 -07004259static void i9xx_pfit_enable(struct intel_crtc *crtc)
4260{
4261 struct drm_device *dev = crtc->base.dev;
4262 struct drm_i915_private *dev_priv = dev->dev_private;
4263 struct intel_crtc_config *pipe_config = &crtc->config;
4264
Daniel Vetter328d8e82013-05-08 10:36:31 +02004265 if (!crtc->config.gmch_pfit.control)
Jesse Barnes2dd24552013-04-25 12:55:01 -07004266 return;
4267
Daniel Vetterc0b03412013-05-28 12:05:54 +02004268 /*
4269 * The panel fitter should only be adjusted whilst the pipe is disabled,
4270 * according to register description and PRM.
4271 */
Jesse Barnes2dd24552013-04-25 12:55:01 -07004272 WARN_ON(I915_READ(PFIT_CONTROL) & PFIT_ENABLE);
4273 assert_pipe_disabled(dev_priv, crtc->pipe);
4274
Jesse Barnesb074cec2013-04-25 12:55:02 -07004275 I915_WRITE(PFIT_PGM_RATIOS, pipe_config->gmch_pfit.pgm_ratios);
4276 I915_WRITE(PFIT_CONTROL, pipe_config->gmch_pfit.control);
Daniel Vetter5a80c452013-04-25 22:52:18 +02004277
4278 /* Border color in case we don't scale up to the full screen. Black by
4279 * default, change to something else for debugging. */
4280 I915_WRITE(BCLRPAT(crtc->pipe), 0);
Jesse Barnes2dd24552013-04-25 12:55:01 -07004281}
4282
Imre Deak77d22dc2014-03-05 16:20:52 +02004283#define for_each_power_domain(domain, mask) \
4284 for ((domain) = 0; (domain) < POWER_DOMAIN_NUM; (domain)++) \
4285 if ((1 << (domain)) & (mask))
4286
Imre Deak319be8a2014-03-04 19:22:57 +02004287enum intel_display_power_domain
4288intel_display_port_power_domain(struct intel_encoder *intel_encoder)
Imre Deak77d22dc2014-03-05 16:20:52 +02004289{
Imre Deak319be8a2014-03-04 19:22:57 +02004290 struct drm_device *dev = intel_encoder->base.dev;
4291 struct intel_digital_port *intel_dig_port;
4292
4293 switch (intel_encoder->type) {
4294 case INTEL_OUTPUT_UNKNOWN:
4295 /* Only DDI platforms should ever use this output type */
4296 WARN_ON_ONCE(!HAS_DDI(dev));
4297 case INTEL_OUTPUT_DISPLAYPORT:
4298 case INTEL_OUTPUT_HDMI:
4299 case INTEL_OUTPUT_EDP:
4300 intel_dig_port = enc_to_dig_port(&intel_encoder->base);
4301 switch (intel_dig_port->port) {
4302 case PORT_A:
4303 return POWER_DOMAIN_PORT_DDI_A_4_LANES;
4304 case PORT_B:
4305 return POWER_DOMAIN_PORT_DDI_B_4_LANES;
4306 case PORT_C:
4307 return POWER_DOMAIN_PORT_DDI_C_4_LANES;
4308 case PORT_D:
4309 return POWER_DOMAIN_PORT_DDI_D_4_LANES;
4310 default:
4311 WARN_ON_ONCE(1);
4312 return POWER_DOMAIN_PORT_OTHER;
4313 }
4314 case INTEL_OUTPUT_ANALOG:
4315 return POWER_DOMAIN_PORT_CRT;
4316 case INTEL_OUTPUT_DSI:
4317 return POWER_DOMAIN_PORT_DSI;
4318 default:
4319 return POWER_DOMAIN_PORT_OTHER;
4320 }
4321}
4322
4323static unsigned long get_crtc_power_domains(struct drm_crtc *crtc)
4324{
4325 struct drm_device *dev = crtc->dev;
4326 struct intel_encoder *intel_encoder;
4327 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4328 enum pipe pipe = intel_crtc->pipe;
4329 bool pfit_enabled = intel_crtc->config.pch_pfit.enabled;
Imre Deak77d22dc2014-03-05 16:20:52 +02004330 unsigned long mask;
4331 enum transcoder transcoder;
4332
4333 transcoder = intel_pipe_to_cpu_transcoder(dev->dev_private, pipe);
4334
4335 mask = BIT(POWER_DOMAIN_PIPE(pipe));
4336 mask |= BIT(POWER_DOMAIN_TRANSCODER(transcoder));
4337 if (pfit_enabled)
4338 mask |= BIT(POWER_DOMAIN_PIPE_PANEL_FITTER(pipe));
4339
Imre Deak319be8a2014-03-04 19:22:57 +02004340 for_each_encoder_on_crtc(dev, crtc, intel_encoder)
4341 mask |= BIT(intel_display_port_power_domain(intel_encoder));
4342
Imre Deak77d22dc2014-03-05 16:20:52 +02004343 return mask;
4344}
4345
4346void intel_display_set_init_power(struct drm_i915_private *dev_priv,
4347 bool enable)
4348{
4349 if (dev_priv->power_domains.init_power_on == enable)
4350 return;
4351
4352 if (enable)
4353 intel_display_power_get(dev_priv, POWER_DOMAIN_INIT);
4354 else
4355 intel_display_power_put(dev_priv, POWER_DOMAIN_INIT);
4356
4357 dev_priv->power_domains.init_power_on = enable;
4358}
4359
4360static void modeset_update_crtc_power_domains(struct drm_device *dev)
4361{
4362 struct drm_i915_private *dev_priv = dev->dev_private;
4363 unsigned long pipe_domains[I915_MAX_PIPES] = { 0, };
4364 struct intel_crtc *crtc;
4365
4366 /*
4367 * First get all needed power domains, then put all unneeded, to avoid
4368 * any unnecessary toggling of the power wells.
4369 */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01004370 for_each_intel_crtc(dev, crtc) {
Imre Deak77d22dc2014-03-05 16:20:52 +02004371 enum intel_display_power_domain domain;
4372
4373 if (!crtc->base.enabled)
4374 continue;
4375
Imre Deak319be8a2014-03-04 19:22:57 +02004376 pipe_domains[crtc->pipe] = get_crtc_power_domains(&crtc->base);
Imre Deak77d22dc2014-03-05 16:20:52 +02004377
4378 for_each_power_domain(domain, pipe_domains[crtc->pipe])
4379 intel_display_power_get(dev_priv, domain);
4380 }
4381
Damien Lespiaud3fcc802014-05-13 23:32:22 +01004382 for_each_intel_crtc(dev, crtc) {
Imre Deak77d22dc2014-03-05 16:20:52 +02004383 enum intel_display_power_domain domain;
4384
4385 for_each_power_domain(domain, crtc->enabled_power_domains)
4386 intel_display_power_put(dev_priv, domain);
4387
4388 crtc->enabled_power_domains = pipe_domains[crtc->pipe];
4389 }
4390
4391 intel_display_set_init_power(dev_priv, false);
4392}
4393
Jesse Barnes586f49d2013-11-04 16:06:59 -08004394int valleyview_get_vco(struct drm_i915_private *dev_priv)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004395{
Jesse Barnes586f49d2013-11-04 16:06:59 -08004396 int hpll_freq, vco_freq[] = { 800, 1600, 2000, 2400 };
Jesse Barnes30a970c2013-11-04 13:48:12 -08004397
Jesse Barnes586f49d2013-11-04 16:06:59 -08004398 /* Obtain SKU information */
4399 mutex_lock(&dev_priv->dpio_lock);
4400 hpll_freq = vlv_cck_read(dev_priv, CCK_FUSE_REG) &
4401 CCK_FUSE_HPLL_FREQ_MASK;
4402 mutex_unlock(&dev_priv->dpio_lock);
Jesse Barnes30a970c2013-11-04 13:48:12 -08004403
Jesse Barnes586f49d2013-11-04 16:06:59 -08004404 return vco_freq[hpll_freq];
Jesse Barnes30a970c2013-11-04 13:48:12 -08004405}
4406
4407/* Adjust CDclk dividers to allow high res or save power if possible */
4408static void valleyview_set_cdclk(struct drm_device *dev, int cdclk)
4409{
4410 struct drm_i915_private *dev_priv = dev->dev_private;
4411 u32 val, cmd;
4412
Imre Deakd60c4472014-03-27 17:45:10 +02004413 WARN_ON(valleyview_cur_cdclk(dev_priv) != dev_priv->vlv_cdclk_freq);
4414 dev_priv->vlv_cdclk_freq = cdclk;
4415
Jesse Barnes30a970c2013-11-04 13:48:12 -08004416 if (cdclk >= 320) /* jump to highest voltage for 400MHz too */
4417 cmd = 2;
4418 else if (cdclk == 266)
4419 cmd = 1;
4420 else
4421 cmd = 0;
4422
4423 mutex_lock(&dev_priv->rps.hw_lock);
4424 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
4425 val &= ~DSPFREQGUAR_MASK;
4426 val |= (cmd << DSPFREQGUAR_SHIFT);
4427 vlv_punit_write(dev_priv, PUNIT_REG_DSPFREQ, val);
4428 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ) &
4429 DSPFREQSTAT_MASK) == (cmd << DSPFREQSTAT_SHIFT),
4430 50)) {
4431 DRM_ERROR("timed out waiting for CDclk change\n");
4432 }
4433 mutex_unlock(&dev_priv->rps.hw_lock);
4434
4435 if (cdclk == 400) {
4436 u32 divider, vco;
4437
4438 vco = valleyview_get_vco(dev_priv);
4439 divider = ((vco << 1) / cdclk) - 1;
4440
4441 mutex_lock(&dev_priv->dpio_lock);
4442 /* adjust cdclk divider */
4443 val = vlv_cck_read(dev_priv, CCK_DISPLAY_CLOCK_CONTROL);
4444 val &= ~0xf;
4445 val |= divider;
4446 vlv_cck_write(dev_priv, CCK_DISPLAY_CLOCK_CONTROL, val);
4447 mutex_unlock(&dev_priv->dpio_lock);
4448 }
4449
4450 mutex_lock(&dev_priv->dpio_lock);
4451 /* adjust self-refresh exit latency value */
4452 val = vlv_bunit_read(dev_priv, BUNIT_REG_BISOC);
4453 val &= ~0x7f;
4454
4455 /*
4456 * For high bandwidth configs, we set a higher latency in the bunit
4457 * so that the core display fetch happens in time to avoid underruns.
4458 */
4459 if (cdclk == 400)
4460 val |= 4500 / 250; /* 4.5 usec */
4461 else
4462 val |= 3000 / 250; /* 3.0 usec */
4463 vlv_bunit_write(dev_priv, BUNIT_REG_BISOC, val);
4464 mutex_unlock(&dev_priv->dpio_lock);
4465
4466 /* Since we changed the CDclk, we need to update the GMBUSFREQ too */
4467 intel_i2c_reset(dev);
4468}
4469
Imre Deakd60c4472014-03-27 17:45:10 +02004470int valleyview_cur_cdclk(struct drm_i915_private *dev_priv)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004471{
4472 int cur_cdclk, vco;
4473 int divider;
4474
4475 vco = valleyview_get_vco(dev_priv);
4476
4477 mutex_lock(&dev_priv->dpio_lock);
4478 divider = vlv_cck_read(dev_priv, CCK_DISPLAY_CLOCK_CONTROL);
4479 mutex_unlock(&dev_priv->dpio_lock);
4480
4481 divider &= 0xf;
4482
4483 cur_cdclk = (vco << 1) / (divider + 1);
4484
4485 return cur_cdclk;
4486}
4487
4488static int valleyview_calc_cdclk(struct drm_i915_private *dev_priv,
4489 int max_pixclk)
4490{
Jesse Barnes30a970c2013-11-04 13:48:12 -08004491 /*
4492 * Really only a few cases to deal with, as only 4 CDclks are supported:
4493 * 200MHz
4494 * 267MHz
4495 * 320MHz
4496 * 400MHz
4497 * So we check to see whether we're above 90% of the lower bin and
4498 * adjust if needed.
4499 */
4500 if (max_pixclk > 288000) {
4501 return 400;
4502 } else if (max_pixclk > 240000) {
4503 return 320;
4504 } else
4505 return 266;
4506 /* Looks like the 200MHz CDclk freq doesn't work on some configs */
4507}
4508
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +02004509/* compute the max pixel clock for new configuration */
4510static int intel_mode_max_pixclk(struct drm_i915_private *dev_priv)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004511{
4512 struct drm_device *dev = dev_priv->dev;
4513 struct intel_crtc *intel_crtc;
4514 int max_pixclk = 0;
4515
Damien Lespiaud3fcc802014-05-13 23:32:22 +01004516 for_each_intel_crtc(dev, intel_crtc) {
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +02004517 if (intel_crtc->new_enabled)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004518 max_pixclk = max(max_pixclk,
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +02004519 intel_crtc->new_config->adjusted_mode.crtc_clock);
Jesse Barnes30a970c2013-11-04 13:48:12 -08004520 }
4521
4522 return max_pixclk;
4523}
4524
4525static void valleyview_modeset_global_pipes(struct drm_device *dev,
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +02004526 unsigned *prepare_pipes)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004527{
4528 struct drm_i915_private *dev_priv = dev->dev_private;
4529 struct intel_crtc *intel_crtc;
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +02004530 int max_pixclk = intel_mode_max_pixclk(dev_priv);
Jesse Barnes30a970c2013-11-04 13:48:12 -08004531
Imre Deakd60c4472014-03-27 17:45:10 +02004532 if (valleyview_calc_cdclk(dev_priv, max_pixclk) ==
4533 dev_priv->vlv_cdclk_freq)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004534 return;
4535
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +02004536 /* disable/enable all currently active pipes while we change cdclk */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01004537 for_each_intel_crtc(dev, intel_crtc)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004538 if (intel_crtc->base.enabled)
4539 *prepare_pipes |= (1 << intel_crtc->pipe);
4540}
4541
4542static void valleyview_modeset_global_resources(struct drm_device *dev)
4543{
4544 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +02004545 int max_pixclk = intel_mode_max_pixclk(dev_priv);
Jesse Barnes30a970c2013-11-04 13:48:12 -08004546 int req_cdclk = valleyview_calc_cdclk(dev_priv, max_pixclk);
4547
Imre Deakd60c4472014-03-27 17:45:10 +02004548 if (req_cdclk != dev_priv->vlv_cdclk_freq)
Jesse Barnes30a970c2013-11-04 13:48:12 -08004549 valleyview_set_cdclk(dev, req_cdclk);
Imre Deak77961eb2014-03-05 16:20:56 +02004550 modeset_update_crtc_power_domains(dev);
Jesse Barnes30a970c2013-11-04 13:48:12 -08004551}
4552
Jesse Barnes89b667f2013-04-18 14:51:36 -07004553static void valleyview_crtc_enable(struct drm_crtc *crtc)
4554{
4555 struct drm_device *dev = crtc->dev;
Daniel Vetter5b18e572014-04-24 23:55:06 +02004556 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes89b667f2013-04-18 14:51:36 -07004557 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4558 struct intel_encoder *encoder;
4559 int pipe = intel_crtc->pipe;
Daniel Vetter5b18e572014-04-24 23:55:06 +02004560 int plane = intel_crtc->plane;
Jani Nikula23538ef2013-08-27 15:12:22 +03004561 bool is_dsi;
Daniel Vetter5b18e572014-04-24 23:55:06 +02004562 u32 dspcntr;
Jesse Barnes89b667f2013-04-18 14:51:36 -07004563
4564 WARN_ON(!crtc->enabled);
4565
4566 if (intel_crtc->active)
4567 return;
4568
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02004569 vlv_prepare_pll(intel_crtc);
4570
Daniel Vetter5b18e572014-04-24 23:55:06 +02004571 /* Set up the display plane register */
4572 dspcntr = DISPPLANE_GAMMA_ENABLE;
4573
4574 if (intel_crtc->config.has_dp_encoder)
4575 intel_dp_set_m_n(intel_crtc);
4576
4577 intel_set_pipe_timings(intel_crtc);
4578
4579 /* pipesrc and dspsize control the size that is scaled from,
4580 * which should always be the user's requested size.
4581 */
4582 I915_WRITE(DSPSIZE(plane),
4583 ((intel_crtc->config.pipe_src_h - 1) << 16) |
4584 (intel_crtc->config.pipe_src_w - 1));
4585 I915_WRITE(DSPPOS(plane), 0);
4586
4587 i9xx_set_pipeconf(intel_crtc);
4588
4589 I915_WRITE(DSPCNTR(plane), dspcntr);
4590 POSTING_READ(DSPCNTR(plane));
4591
4592 dev_priv->display.update_primary_plane(crtc, crtc->primary->fb,
4593 crtc->x, crtc->y);
4594
Jesse Barnes89b667f2013-04-18 14:51:36 -07004595 intel_crtc->active = true;
Jesse Barnes89b667f2013-04-18 14:51:36 -07004596
Jesse Barnes89b667f2013-04-18 14:51:36 -07004597 for_each_encoder_on_crtc(dev, crtc, encoder)
4598 if (encoder->pre_pll_enable)
4599 encoder->pre_pll_enable(encoder);
4600
Jani Nikula23538ef2013-08-27 15:12:22 +03004601 is_dsi = intel_pipe_has_type(crtc, INTEL_OUTPUT_DSI);
4602
Chon Ming Lee9d556c92014-05-02 14:27:47 +03004603 if (!is_dsi) {
4604 if (IS_CHERRYVIEW(dev))
4605 chv_enable_pll(intel_crtc);
4606 else
4607 vlv_enable_pll(intel_crtc);
4608 }
Jesse Barnes89b667f2013-04-18 14:51:36 -07004609
4610 for_each_encoder_on_crtc(dev, crtc, encoder)
4611 if (encoder->pre_enable)
4612 encoder->pre_enable(encoder);
4613
Jesse Barnes2dd24552013-04-25 12:55:01 -07004614 i9xx_pfit_enable(intel_crtc);
4615
Ville Syrjälä63cbb072013-06-04 13:48:59 +03004616 intel_crtc_load_lut(crtc);
4617
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03004618 intel_update_watermarks(crtc);
Paulo Zanonie1fdc472014-01-17 13:51:12 -02004619 intel_enable_pipe(intel_crtc);
Ville Syrjälä2d9d2b02014-01-17 11:44:31 +02004620 intel_set_cpu_fifo_underrun_reporting(dev, pipe, true);
Daniel Vetterbe6a6f82014-04-15 18:41:22 +02004621
Jani Nikula50049452013-07-30 12:20:32 +03004622 for_each_encoder_on_crtc(dev, crtc, encoder)
4623 encoder->enable(encoder);
Ville Syrjälä9ab04602014-05-08 19:23:14 +03004624
4625 intel_crtc_enable_planes(crtc);
Jesse Barnes89b667f2013-04-18 14:51:36 -07004626}
4627
Daniel Vetterf13c2ef2014-04-24 23:55:10 +02004628static void i9xx_set_pll_dividers(struct intel_crtc *crtc)
4629{
4630 struct drm_device *dev = crtc->base.dev;
4631 struct drm_i915_private *dev_priv = dev->dev_private;
4632
4633 I915_WRITE(FP0(crtc->pipe), crtc->config.dpll_hw_state.fp0);
4634 I915_WRITE(FP1(crtc->pipe), crtc->config.dpll_hw_state.fp1);
4635}
4636
Jesse Barnes0b8765c62010-09-10 10:31:34 -07004637static void i9xx_crtc_enable(struct drm_crtc *crtc)
Zhenyu Wang2c072452009-06-05 15:38:42 +08004638{
4639 struct drm_device *dev = crtc->dev;
Daniel Vetter5b18e572014-04-24 23:55:06 +02004640 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -08004641 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02004642 struct intel_encoder *encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08004643 int pipe = intel_crtc->pipe;
Daniel Vetter5b18e572014-04-24 23:55:06 +02004644 int plane = intel_crtc->plane;
4645 u32 dspcntr;
Jesse Barnes79e53942008-11-07 14:24:08 -08004646
Daniel Vetter08a48462012-07-02 11:43:47 +02004647 WARN_ON(!crtc->enabled);
4648
Chris Wilsonf7abfe82010-09-13 14:19:16 +01004649 if (intel_crtc->active)
4650 return;
4651
Daniel Vetterf13c2ef2014-04-24 23:55:10 +02004652 i9xx_set_pll_dividers(intel_crtc);
4653
Daniel Vetter5b18e572014-04-24 23:55:06 +02004654 /* Set up the display plane register */
4655 dspcntr = DISPPLANE_GAMMA_ENABLE;
4656
4657 if (pipe == 0)
4658 dspcntr &= ~DISPPLANE_SEL_PIPE_MASK;
4659 else
4660 dspcntr |= DISPPLANE_SEL_PIPE_B;
4661
4662 if (intel_crtc->config.has_dp_encoder)
4663 intel_dp_set_m_n(intel_crtc);
4664
4665 intel_set_pipe_timings(intel_crtc);
4666
4667 /* pipesrc and dspsize control the size that is scaled from,
4668 * which should always be the user's requested size.
4669 */
4670 I915_WRITE(DSPSIZE(plane),
4671 ((intel_crtc->config.pipe_src_h - 1) << 16) |
4672 (intel_crtc->config.pipe_src_w - 1));
4673 I915_WRITE(DSPPOS(plane), 0);
4674
4675 i9xx_set_pipeconf(intel_crtc);
4676
4677 I915_WRITE(DSPCNTR(plane), dspcntr);
4678 POSTING_READ(DSPCNTR(plane));
4679
4680 dev_priv->display.update_primary_plane(crtc, crtc->primary->fb,
4681 crtc->x, crtc->y);
4682
Chris Wilsonf7abfe82010-09-13 14:19:16 +01004683 intel_crtc->active = true;
Chris Wilson6b383a72010-09-13 13:54:26 +01004684
Daniel Vetter66e3d5c2013-06-16 21:24:16 +02004685 for_each_encoder_on_crtc(dev, crtc, encoder)
Mika Kuoppala9d6d9f12013-02-08 16:35:38 +02004686 if (encoder->pre_enable)
4687 encoder->pre_enable(encoder);
4688
Daniel Vetterf6736a12013-06-05 13:34:30 +02004689 i9xx_enable_pll(intel_crtc);
4690
Jesse Barnes2dd24552013-04-25 12:55:01 -07004691 i9xx_pfit_enable(intel_crtc);
4692
Ville Syrjälä63cbb072013-06-04 13:48:59 +03004693 intel_crtc_load_lut(crtc);
4694
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03004695 intel_update_watermarks(crtc);
Paulo Zanonie1fdc472014-01-17 13:51:12 -02004696 intel_enable_pipe(intel_crtc);
Ville Syrjälä2d9d2b02014-01-17 11:44:31 +02004697 intel_set_cpu_fifo_underrun_reporting(dev, pipe, true);
Daniel Vetterbe6a6f82014-04-15 18:41:22 +02004698
Daniel Vetterfa5c73b2012-07-01 23:24:36 +02004699 for_each_encoder_on_crtc(dev, crtc, encoder)
4700 encoder->enable(encoder);
Ville Syrjälä9ab04602014-05-08 19:23:14 +03004701
4702 intel_crtc_enable_planes(crtc);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07004703}
4704
Daniel Vetter87476d62013-04-11 16:29:06 +02004705static void i9xx_pfit_disable(struct intel_crtc *crtc)
4706{
4707 struct drm_device *dev = crtc->base.dev;
4708 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter328d8e82013-05-08 10:36:31 +02004709
4710 if (!crtc->config.gmch_pfit.control)
4711 return;
Daniel Vetter87476d62013-04-11 16:29:06 +02004712
4713 assert_pipe_disabled(dev_priv, crtc->pipe);
4714
Daniel Vetter328d8e82013-05-08 10:36:31 +02004715 DRM_DEBUG_DRIVER("disabling pfit, current: 0x%08x\n",
4716 I915_READ(PFIT_CONTROL));
4717 I915_WRITE(PFIT_CONTROL, 0);
Daniel Vetter87476d62013-04-11 16:29:06 +02004718}
4719
Jesse Barnes0b8765c62010-09-10 10:31:34 -07004720static void i9xx_crtc_disable(struct drm_crtc *crtc)
4721{
4722 struct drm_device *dev = crtc->dev;
4723 struct drm_i915_private *dev_priv = dev->dev_private;
4724 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02004725 struct intel_encoder *encoder;
Jesse Barnes0b8765c62010-09-10 10:31:34 -07004726 int pipe = intel_crtc->pipe;
Daniel Vetteref9c3ae2012-06-29 22:40:09 +02004727
Chris Wilsonf7abfe82010-09-13 14:19:16 +01004728 if (!intel_crtc->active)
4729 return;
4730
Ville Syrjälä9ab04602014-05-08 19:23:14 +03004731 intel_crtc_disable_planes(crtc);
4732
Daniel Vetterea9d7582012-07-10 10:42:52 +02004733 for_each_encoder_on_crtc(dev, crtc, encoder)
4734 encoder->disable(encoder);
4735
Ville Syrjälä2d9d2b02014-01-17 11:44:31 +02004736 intel_set_cpu_fifo_underrun_reporting(dev, pipe, false);
Jesse Barnesb24e7172011-01-04 15:09:30 -08004737 intel_disable_pipe(dev_priv, pipe);
Mika Kuoppala24a1f162013-02-08 16:35:37 +02004738
Daniel Vetter87476d62013-04-11 16:29:06 +02004739 i9xx_pfit_disable(intel_crtc);
Mika Kuoppala24a1f162013-02-08 16:35:37 +02004740
Jesse Barnes89b667f2013-04-18 14:51:36 -07004741 for_each_encoder_on_crtc(dev, crtc, encoder)
4742 if (encoder->post_disable)
4743 encoder->post_disable(encoder);
4744
Chon Ming Lee076ed3b2014-04-09 13:28:17 +03004745 if (!intel_pipe_has_type(crtc, INTEL_OUTPUT_DSI)) {
4746 if (IS_CHERRYVIEW(dev))
4747 chv_disable_pll(dev_priv, pipe);
4748 else if (IS_VALLEYVIEW(dev))
4749 vlv_disable_pll(dev_priv, pipe);
4750 else
4751 i9xx_disable_pll(dev_priv, pipe);
4752 }
Jesse Barnes0b8765c62010-09-10 10:31:34 -07004753
Chris Wilsonf7abfe82010-09-13 14:19:16 +01004754 intel_crtc->active = false;
Ville Syrjälä46ba6142013-09-10 11:40:40 +03004755 intel_update_watermarks(crtc);
Ville Syrjäläf37fcc22013-09-10 11:39:55 +03004756
Daniel Vetterefa96242014-04-24 23:55:02 +02004757 mutex_lock(&dev->struct_mutex);
Chris Wilson6b383a72010-09-13 13:54:26 +01004758 intel_update_fbc(dev);
Daniel Vetter71b1c372014-04-24 23:55:03 +02004759 intel_edp_psr_update(dev);
Daniel Vetterefa96242014-04-24 23:55:02 +02004760 mutex_unlock(&dev->struct_mutex);
Jesse Barnes0b8765c62010-09-10 10:31:34 -07004761}
4762
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004763static void i9xx_crtc_off(struct drm_crtc *crtc)
4764{
4765}
4766
Daniel Vetter976f8a22012-07-08 22:34:21 +02004767static void intel_crtc_update_sarea(struct drm_crtc *crtc,
4768 bool enabled)
Zhenyu Wang2c072452009-06-05 15:38:42 +08004769{
4770 struct drm_device *dev = crtc->dev;
4771 struct drm_i915_master_private *master_priv;
4772 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4773 int pipe = intel_crtc->pipe;
Jesse Barnes79e53942008-11-07 14:24:08 -08004774
4775 if (!dev->primary->master)
4776 return;
4777
4778 master_priv = dev->primary->master->driver_priv;
4779 if (!master_priv->sarea_priv)
4780 return;
4781
Jesse Barnes79e53942008-11-07 14:24:08 -08004782 switch (pipe) {
4783 case 0:
4784 master_priv->sarea_priv->pipeA_w = enabled ? crtc->mode.hdisplay : 0;
4785 master_priv->sarea_priv->pipeA_h = enabled ? crtc->mode.vdisplay : 0;
4786 break;
4787 case 1:
4788 master_priv->sarea_priv->pipeB_w = enabled ? crtc->mode.hdisplay : 0;
4789 master_priv->sarea_priv->pipeB_h = enabled ? crtc->mode.vdisplay : 0;
4790 break;
4791 default:
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08004792 DRM_ERROR("Can't update pipe %c in SAREA\n", pipe_name(pipe));
Jesse Barnes79e53942008-11-07 14:24:08 -08004793 break;
4794 }
Jesse Barnes79e53942008-11-07 14:24:08 -08004795}
4796
Daniel Vetter976f8a22012-07-08 22:34:21 +02004797/**
4798 * Sets the power management mode of the pipe and plane.
4799 */
4800void intel_crtc_update_dpms(struct drm_crtc *crtc)
Chris Wilsoncdd59982010-09-08 16:30:16 +01004801{
Chris Wilsoncdd59982010-09-08 16:30:16 +01004802 struct drm_device *dev = crtc->dev;
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004803 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter976f8a22012-07-08 22:34:21 +02004804 struct intel_encoder *intel_encoder;
4805 bool enable = false;
Chris Wilsoncdd59982010-09-08 16:30:16 +01004806
Daniel Vetter976f8a22012-07-08 22:34:21 +02004807 for_each_encoder_on_crtc(dev, crtc, intel_encoder)
4808 enable |= intel_encoder->connectors_active;
4809
4810 if (enable)
4811 dev_priv->display.crtc_enable(crtc);
4812 else
4813 dev_priv->display.crtc_disable(crtc);
4814
4815 intel_crtc_update_sarea(crtc, enable);
4816}
4817
Daniel Vetter976f8a22012-07-08 22:34:21 +02004818static void intel_crtc_disable(struct drm_crtc *crtc)
4819{
4820 struct drm_device *dev = crtc->dev;
4821 struct drm_connector *connector;
4822 struct drm_i915_private *dev_priv = dev->dev_private;
4823
4824 /* crtc should still be enabled when we disable it. */
4825 WARN_ON(!crtc->enabled);
4826
4827 dev_priv->display.crtc_disable(crtc);
4828 intel_crtc_update_sarea(crtc, false);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01004829 dev_priv->display.off(crtc);
4830
Chris Wilson931872f2012-01-16 23:01:13 +00004831 assert_plane_disabled(dev->dev_private, to_intel_crtc(crtc)->plane);
Jani Nikula93ce0ba2013-09-13 11:03:08 +03004832 assert_cursor_disabled(dev_priv, to_intel_crtc(crtc)->pipe);
Chris Wilson931872f2012-01-16 23:01:13 +00004833 assert_pipe_disabled(dev->dev_private, to_intel_crtc(crtc)->pipe);
Chris Wilsoncdd59982010-09-08 16:30:16 +01004834
Matt Roperf4510a22014-04-01 15:22:40 -07004835 if (crtc->primary->fb) {
Chris Wilsoncdd59982010-09-08 16:30:16 +01004836 mutex_lock(&dev->struct_mutex);
Matt Roperf4510a22014-04-01 15:22:40 -07004837 intel_unpin_fb_obj(to_intel_framebuffer(crtc->primary->fb)->obj);
Chris Wilsoncdd59982010-09-08 16:30:16 +01004838 mutex_unlock(&dev->struct_mutex);
Matt Roperf4510a22014-04-01 15:22:40 -07004839 crtc->primary->fb = NULL;
Daniel Vetter976f8a22012-07-08 22:34:21 +02004840 }
4841
4842 /* Update computed state. */
4843 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
4844 if (!connector->encoder || !connector->encoder->crtc)
4845 continue;
4846
4847 if (connector->encoder->crtc != crtc)
4848 continue;
4849
4850 connector->dpms = DRM_MODE_DPMS_OFF;
4851 to_intel_encoder(connector->encoder)->connectors_active = false;
Chris Wilsoncdd59982010-09-08 16:30:16 +01004852 }
4853}
4854
Chris Wilsonea5b2132010-08-04 13:50:23 +01004855void intel_encoder_destroy(struct drm_encoder *encoder)
4856{
Chris Wilson4ef69c72010-09-09 15:14:28 +01004857 struct intel_encoder *intel_encoder = to_intel_encoder(encoder);
Chris Wilsonea5b2132010-08-04 13:50:23 +01004858
Chris Wilsonea5b2132010-08-04 13:50:23 +01004859 drm_encoder_cleanup(encoder);
4860 kfree(intel_encoder);
4861}
4862
Damien Lespiau92373292013-08-08 22:28:57 +01004863/* Simple dpms helper for encoders with just one connector, no cloning and only
Daniel Vetter5ab432e2012-06-30 08:59:56 +02004864 * one kind of off state. It clamps all !ON modes to fully OFF and changes the
4865 * state of the entire output pipe. */
Damien Lespiau92373292013-08-08 22:28:57 +01004866static void intel_encoder_dpms(struct intel_encoder *encoder, int mode)
Daniel Vetter5ab432e2012-06-30 08:59:56 +02004867{
4868 if (mode == DRM_MODE_DPMS_ON) {
4869 encoder->connectors_active = true;
4870
Daniel Vetterb2cabb02012-07-01 22:42:24 +02004871 intel_crtc_update_dpms(encoder->base.crtc);
Daniel Vetter5ab432e2012-06-30 08:59:56 +02004872 } else {
4873 encoder->connectors_active = false;
4874
Daniel Vetterb2cabb02012-07-01 22:42:24 +02004875 intel_crtc_update_dpms(encoder->base.crtc);
Daniel Vetter5ab432e2012-06-30 08:59:56 +02004876 }
4877}
4878
Daniel Vetter0a91ca22012-07-02 21:54:27 +02004879/* Cross check the actual hw state with our own modeset state tracking (and it's
4880 * internal consistency). */
Daniel Vetterb9805142012-08-31 17:37:33 +02004881static void intel_connector_check_state(struct intel_connector *connector)
Daniel Vetter0a91ca22012-07-02 21:54:27 +02004882{
4883 if (connector->get_hw_state(connector)) {
4884 struct intel_encoder *encoder = connector->encoder;
4885 struct drm_crtc *crtc;
4886 bool encoder_enabled;
4887 enum pipe pipe;
4888
4889 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
4890 connector->base.base.id,
4891 drm_get_connector_name(&connector->base));
4892
4893 WARN(connector->base.dpms == DRM_MODE_DPMS_OFF,
4894 "wrong connector dpms state\n");
4895 WARN(connector->base.encoder != &encoder->base,
4896 "active connector not linked to encoder\n");
4897 WARN(!encoder->connectors_active,
4898 "encoder->connectors_active not set\n");
4899
4900 encoder_enabled = encoder->get_hw_state(encoder, &pipe);
4901 WARN(!encoder_enabled, "encoder not enabled\n");
4902 if (WARN_ON(!encoder->base.crtc))
4903 return;
4904
4905 crtc = encoder->base.crtc;
4906
4907 WARN(!crtc->enabled, "crtc not enabled\n");
4908 WARN(!to_intel_crtc(crtc)->active, "crtc not active\n");
4909 WARN(pipe != to_intel_crtc(crtc)->pipe,
4910 "encoder active on the wrong pipe\n");
4911 }
4912}
4913
Daniel Vetter5ab432e2012-06-30 08:59:56 +02004914/* Even simpler default implementation, if there's really no special case to
4915 * consider. */
4916void intel_connector_dpms(struct drm_connector *connector, int mode)
4917{
Daniel Vetter5ab432e2012-06-30 08:59:56 +02004918 /* All the simple cases only support two dpms states. */
4919 if (mode != DRM_MODE_DPMS_ON)
4920 mode = DRM_MODE_DPMS_OFF;
4921
4922 if (mode == connector->dpms)
4923 return;
4924
4925 connector->dpms = mode;
4926
4927 /* Only need to change hw state when actually enabled */
Chris Wilsonc9976dcf2013-09-29 19:15:07 +01004928 if (connector->encoder)
4929 intel_encoder_dpms(to_intel_encoder(connector->encoder), mode);
Daniel Vetter0a91ca22012-07-02 21:54:27 +02004930
Daniel Vetterb9805142012-08-31 17:37:33 +02004931 intel_modeset_check_state(connector->dev);
Daniel Vetter5ab432e2012-06-30 08:59:56 +02004932}
4933
Daniel Vetterf0947c32012-07-02 13:10:34 +02004934/* Simple connector->get_hw_state implementation for encoders that support only
4935 * one connector and no cloning and hence the encoder state determines the state
4936 * of the connector. */
4937bool intel_connector_get_hw_state(struct intel_connector *connector)
4938{
Daniel Vetter24929352012-07-02 20:28:59 +02004939 enum pipe pipe = 0;
Daniel Vetterf0947c32012-07-02 13:10:34 +02004940 struct intel_encoder *encoder = connector->encoder;
4941
4942 return encoder->get_hw_state(encoder, &pipe);
4943}
4944
Daniel Vetter1857e1d2013-04-29 19:34:16 +02004945static bool ironlake_check_fdi_lanes(struct drm_device *dev, enum pipe pipe,
4946 struct intel_crtc_config *pipe_config)
4947{
4948 struct drm_i915_private *dev_priv = dev->dev_private;
4949 struct intel_crtc *pipe_B_crtc =
4950 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[PIPE_B]);
4951
4952 DRM_DEBUG_KMS("checking fdi config on pipe %c, lanes %i\n",
4953 pipe_name(pipe), pipe_config->fdi_lanes);
4954 if (pipe_config->fdi_lanes > 4) {
4955 DRM_DEBUG_KMS("invalid fdi lane config on pipe %c: %i lanes\n",
4956 pipe_name(pipe), pipe_config->fdi_lanes);
4957 return false;
4958 }
4959
Paulo Zanonibafb6552013-11-02 21:07:44 -07004960 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Daniel Vetter1857e1d2013-04-29 19:34:16 +02004961 if (pipe_config->fdi_lanes > 2) {
4962 DRM_DEBUG_KMS("only 2 lanes on haswell, required: %i lanes\n",
4963 pipe_config->fdi_lanes);
4964 return false;
4965 } else {
4966 return true;
4967 }
4968 }
4969
4970 if (INTEL_INFO(dev)->num_pipes == 2)
4971 return true;
4972
4973 /* Ivybridge 3 pipe is really complicated */
4974 switch (pipe) {
4975 case PIPE_A:
4976 return true;
4977 case PIPE_B:
4978 if (dev_priv->pipe_to_crtc_mapping[PIPE_C]->enabled &&
4979 pipe_config->fdi_lanes > 2) {
4980 DRM_DEBUG_KMS("invalid shared fdi lane config on pipe %c: %i lanes\n",
4981 pipe_name(pipe), pipe_config->fdi_lanes);
4982 return false;
4983 }
4984 return true;
4985 case PIPE_C:
Daniel Vetter1e833f42013-02-19 22:31:57 +01004986 if (!pipe_has_enabled_pch(pipe_B_crtc) ||
Daniel Vetter1857e1d2013-04-29 19:34:16 +02004987 pipe_B_crtc->config.fdi_lanes <= 2) {
4988 if (pipe_config->fdi_lanes > 2) {
4989 DRM_DEBUG_KMS("invalid shared fdi lane config on pipe %c: %i lanes\n",
4990 pipe_name(pipe), pipe_config->fdi_lanes);
4991 return false;
4992 }
4993 } else {
4994 DRM_DEBUG_KMS("fdi link B uses too many lanes to enable link C\n");
4995 return false;
4996 }
4997 return true;
4998 default:
4999 BUG();
5000 }
5001}
5002
Daniel Vettere29c22c2013-02-21 00:00:16 +01005003#define RETRY 1
5004static int ironlake_fdi_compute_config(struct intel_crtc *intel_crtc,
5005 struct intel_crtc_config *pipe_config)
Daniel Vetter877d48d2013-04-19 11:24:43 +02005006{
Daniel Vetter1857e1d2013-04-29 19:34:16 +02005007 struct drm_device *dev = intel_crtc->base.dev;
Daniel Vetter877d48d2013-04-19 11:24:43 +02005008 struct drm_display_mode *adjusted_mode = &pipe_config->adjusted_mode;
Daniel Vetterff9a6752013-06-01 17:16:21 +02005009 int lane, link_bw, fdi_dotclock;
Daniel Vettere29c22c2013-02-21 00:00:16 +01005010 bool setup_ok, needs_recompute = false;
Daniel Vetter877d48d2013-04-19 11:24:43 +02005011
Daniel Vettere29c22c2013-02-21 00:00:16 +01005012retry:
Daniel Vetter877d48d2013-04-19 11:24:43 +02005013 /* FDI is a binary signal running at ~2.7GHz, encoding
5014 * each output octet as 10 bits. The actual frequency
5015 * is stored as a divider into a 100MHz clock, and the
5016 * mode pixel clock is stored in units of 1KHz.
5017 * Hence the bw of each lane in terms of the mode signal
5018 * is:
5019 */
5020 link_bw = intel_fdi_link_freq(dev) * MHz(100)/KHz(1)/10;
5021
Damien Lespiau241bfc32013-09-25 16:45:37 +01005022 fdi_dotclock = adjusted_mode->crtc_clock;
Daniel Vetter877d48d2013-04-19 11:24:43 +02005023
Daniel Vetter2bd89a02013-06-01 17:16:19 +02005024 lane = ironlake_get_lanes_required(fdi_dotclock, link_bw,
Daniel Vetter877d48d2013-04-19 11:24:43 +02005025 pipe_config->pipe_bpp);
5026
5027 pipe_config->fdi_lanes = lane;
5028
Daniel Vetter2bd89a02013-06-01 17:16:19 +02005029 intel_link_compute_m_n(pipe_config->pipe_bpp, lane, fdi_dotclock,
Daniel Vetter877d48d2013-04-19 11:24:43 +02005030 link_bw, &pipe_config->fdi_m_n);
Daniel Vetter1857e1d2013-04-29 19:34:16 +02005031
Daniel Vettere29c22c2013-02-21 00:00:16 +01005032 setup_ok = ironlake_check_fdi_lanes(intel_crtc->base.dev,
5033 intel_crtc->pipe, pipe_config);
5034 if (!setup_ok && pipe_config->pipe_bpp > 6*3) {
5035 pipe_config->pipe_bpp -= 2*3;
5036 DRM_DEBUG_KMS("fdi link bw constraint, reducing pipe bpp to %i\n",
5037 pipe_config->pipe_bpp);
5038 needs_recompute = true;
5039 pipe_config->bw_constrained = true;
5040
5041 goto retry;
5042 }
5043
5044 if (needs_recompute)
5045 return RETRY;
5046
5047 return setup_ok ? 0 : -EINVAL;
Daniel Vetter877d48d2013-04-19 11:24:43 +02005048}
5049
Paulo Zanoni42db64e2013-05-31 16:33:22 -03005050static void hsw_compute_ips_config(struct intel_crtc *crtc,
5051 struct intel_crtc_config *pipe_config)
5052{
Jani Nikulad330a952014-01-21 11:24:25 +02005053 pipe_config->ips_enabled = i915.enable_ips &&
Paulo Zanoni3c4ca582013-05-31 16:33:23 -03005054 hsw_crtc_supports_ips(crtc) &&
Jesse Barnesb6dfdc92013-07-25 10:06:50 -07005055 pipe_config->pipe_bpp <= 24;
Paulo Zanoni42db64e2013-05-31 16:33:22 -03005056}
5057
Daniel Vettera43f6e02013-06-07 23:10:32 +02005058static int intel_crtc_compute_config(struct intel_crtc *crtc,
Daniel Vettere29c22c2013-02-21 00:00:16 +01005059 struct intel_crtc_config *pipe_config)
Jesse Barnes79e53942008-11-07 14:24:08 -08005060{
Daniel Vettera43f6e02013-06-07 23:10:32 +02005061 struct drm_device *dev = crtc->base.dev;
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01005062 struct drm_display_mode *adjusted_mode = &pipe_config->adjusted_mode;
Chris Wilson89749352010-09-12 18:25:19 +01005063
Ville Syrjäläad3a4472013-09-04 18:30:04 +03005064 /* FIXME should check pixel clock limits on all platforms */
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03005065 if (INTEL_INFO(dev)->gen < 4) {
5066 struct drm_i915_private *dev_priv = dev->dev_private;
5067 int clock_limit =
5068 dev_priv->display.get_display_clock_speed(dev);
5069
5070 /*
5071 * Enable pixel doubling when the dot clock
5072 * is > 90% of the (display) core speed.
5073 *
Ville Syrjäläb397c962013-09-04 18:30:06 +03005074 * GDG double wide on either pipe,
5075 * otherwise pipe A only.
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03005076 */
Ville Syrjäläb397c962013-09-04 18:30:06 +03005077 if ((crtc->pipe == PIPE_A || IS_I915G(dev)) &&
Damien Lespiau241bfc32013-09-25 16:45:37 +01005078 adjusted_mode->crtc_clock > clock_limit * 9 / 10) {
Ville Syrjäläad3a4472013-09-04 18:30:04 +03005079 clock_limit *= 2;
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03005080 pipe_config->double_wide = true;
Ville Syrjäläad3a4472013-09-04 18:30:04 +03005081 }
5082
Damien Lespiau241bfc32013-09-25 16:45:37 +01005083 if (adjusted_mode->crtc_clock > clock_limit * 9 / 10)
Daniel Vettere29c22c2013-02-21 00:00:16 +01005084 return -EINVAL;
Zhenyu Wang2c072452009-06-05 15:38:42 +08005085 }
Chris Wilson89749352010-09-12 18:25:19 +01005086
Ville Syrjälä1d1d0e22013-09-04 18:30:05 +03005087 /*
5088 * Pipe horizontal size must be even in:
5089 * - DVO ganged mode
5090 * - LVDS dual channel mode
5091 * - Double wide pipe
5092 */
5093 if ((intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_LVDS) &&
5094 intel_is_dual_link_lvds(dev)) || pipe_config->double_wide)
5095 pipe_config->pipe_src_w &= ~1;
5096
Damien Lespiau8693a822013-05-03 18:48:11 +01005097 /* Cantiga+ cannot handle modes with a hsync front porch of 0.
5098 * WaPruneModeWithIncorrectHsyncOffset:ctg,elk,ilk,snb,ivb,vlv,hsw.
Chris Wilson44f46b422012-06-21 13:19:59 +03005099 */
5100 if ((INTEL_INFO(dev)->gen > 4 || IS_G4X(dev)) &&
5101 adjusted_mode->hsync_start == adjusted_mode->hdisplay)
Daniel Vettere29c22c2013-02-21 00:00:16 +01005102 return -EINVAL;
Chris Wilson44f46b422012-06-21 13:19:59 +03005103
Daniel Vetterbd080ee2013-04-17 20:01:39 +02005104 if ((IS_G4X(dev) || IS_VALLEYVIEW(dev)) && pipe_config->pipe_bpp > 10*3) {
Daniel Vetter5d2d38d2013-03-27 00:45:01 +01005105 pipe_config->pipe_bpp = 10*3; /* 12bpc is gen5+ */
Daniel Vetterbd080ee2013-04-17 20:01:39 +02005106 } else if (INTEL_INFO(dev)->gen <= 4 && pipe_config->pipe_bpp > 8*3) {
Daniel Vetter5d2d38d2013-03-27 00:45:01 +01005107 /* only a 8bpc pipe, with 6bpc dither through the panel fitter
5108 * for lvds. */
5109 pipe_config->pipe_bpp = 8*3;
5110 }
5111
Damien Lespiauf5adf942013-06-24 18:29:34 +01005112 if (HAS_IPS(dev))
Daniel Vettera43f6e02013-06-07 23:10:32 +02005113 hsw_compute_ips_config(crtc, pipe_config);
5114
5115 /* XXX: PCH clock sharing is done in ->mode_set, so make sure the old
5116 * clock survives for now. */
5117 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev))
5118 pipe_config->shared_dpll = crtc->config.shared_dpll;
Paulo Zanoni42db64e2013-05-31 16:33:22 -03005119
Daniel Vetter877d48d2013-04-19 11:24:43 +02005120 if (pipe_config->has_pch_encoder)
Daniel Vettera43f6e02013-06-07 23:10:32 +02005121 return ironlake_fdi_compute_config(crtc, pipe_config);
Daniel Vetter877d48d2013-04-19 11:24:43 +02005122
Daniel Vettere29c22c2013-02-21 00:00:16 +01005123 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08005124}
5125
Jesse Barnes25eb05fc2012-03-28 13:39:23 -07005126static int valleyview_get_display_clock_speed(struct drm_device *dev)
5127{
5128 return 400000; /* FIXME */
5129}
5130
Jesse Barnese70236a2009-09-21 10:42:27 -07005131static int i945_get_display_clock_speed(struct drm_device *dev)
Jesse Barnes79e53942008-11-07 14:24:08 -08005132{
Jesse Barnese70236a2009-09-21 10:42:27 -07005133 return 400000;
5134}
Jesse Barnes79e53942008-11-07 14:24:08 -08005135
Jesse Barnese70236a2009-09-21 10:42:27 -07005136static int i915_get_display_clock_speed(struct drm_device *dev)
5137{
5138 return 333000;
5139}
Jesse Barnes79e53942008-11-07 14:24:08 -08005140
Jesse Barnese70236a2009-09-21 10:42:27 -07005141static int i9xx_misc_get_display_clock_speed(struct drm_device *dev)
5142{
5143 return 200000;
5144}
Jesse Barnes79e53942008-11-07 14:24:08 -08005145
Daniel Vetter257a7ff2013-07-26 08:35:42 +02005146static int pnv_get_display_clock_speed(struct drm_device *dev)
5147{
5148 u16 gcfgc = 0;
5149
5150 pci_read_config_word(dev->pdev, GCFGC, &gcfgc);
5151
5152 switch (gcfgc & GC_DISPLAY_CLOCK_MASK) {
5153 case GC_DISPLAY_CLOCK_267_MHZ_PNV:
5154 return 267000;
5155 case GC_DISPLAY_CLOCK_333_MHZ_PNV:
5156 return 333000;
5157 case GC_DISPLAY_CLOCK_444_MHZ_PNV:
5158 return 444000;
5159 case GC_DISPLAY_CLOCK_200_MHZ_PNV:
5160 return 200000;
5161 default:
5162 DRM_ERROR("Unknown pnv display core clock 0x%04x\n", gcfgc);
5163 case GC_DISPLAY_CLOCK_133_MHZ_PNV:
5164 return 133000;
5165 case GC_DISPLAY_CLOCK_167_MHZ_PNV:
5166 return 167000;
5167 }
5168}
5169
Jesse Barnese70236a2009-09-21 10:42:27 -07005170static int i915gm_get_display_clock_speed(struct drm_device *dev)
5171{
5172 u16 gcfgc = 0;
5173
5174 pci_read_config_word(dev->pdev, GCFGC, &gcfgc);
5175
5176 if (gcfgc & GC_LOW_FREQUENCY_ENABLE)
Jesse Barnes79e53942008-11-07 14:24:08 -08005177 return 133000;
Jesse Barnese70236a2009-09-21 10:42:27 -07005178 else {
5179 switch (gcfgc & GC_DISPLAY_CLOCK_MASK) {
5180 case GC_DISPLAY_CLOCK_333_MHZ:
5181 return 333000;
5182 default:
5183 case GC_DISPLAY_CLOCK_190_200_MHZ:
5184 return 190000;
5185 }
5186 }
5187}
Jesse Barnes79e53942008-11-07 14:24:08 -08005188
Jesse Barnese70236a2009-09-21 10:42:27 -07005189static int i865_get_display_clock_speed(struct drm_device *dev)
5190{
5191 return 266000;
5192}
5193
5194static int i855_get_display_clock_speed(struct drm_device *dev)
5195{
5196 u16 hpllcc = 0;
5197 /* Assume that the hardware is in the high speed state. This
5198 * should be the default.
5199 */
5200 switch (hpllcc & GC_CLOCK_CONTROL_MASK) {
5201 case GC_CLOCK_133_200:
5202 case GC_CLOCK_100_200:
5203 return 200000;
5204 case GC_CLOCK_166_250:
5205 return 250000;
5206 case GC_CLOCK_100_133:
5207 return 133000;
5208 }
5209
5210 /* Shouldn't happen */
5211 return 0;
5212}
5213
5214static int i830_get_display_clock_speed(struct drm_device *dev)
5215{
5216 return 133000;
Jesse Barnes79e53942008-11-07 14:24:08 -08005217}
5218
Zhenyu Wang2c072452009-06-05 15:38:42 +08005219static void
Ville Syrjäläa65851a2013-04-23 15:03:34 +03005220intel_reduce_m_n_ratio(uint32_t *num, uint32_t *den)
Zhenyu Wang2c072452009-06-05 15:38:42 +08005221{
Ville Syrjäläa65851a2013-04-23 15:03:34 +03005222 while (*num > DATA_LINK_M_N_MASK ||
5223 *den > DATA_LINK_M_N_MASK) {
Zhenyu Wang2c072452009-06-05 15:38:42 +08005224 *num >>= 1;
5225 *den >>= 1;
5226 }
5227}
5228
Ville Syrjäläa65851a2013-04-23 15:03:34 +03005229static void compute_m_n(unsigned int m, unsigned int n,
5230 uint32_t *ret_m, uint32_t *ret_n)
5231{
5232 *ret_n = min_t(unsigned int, roundup_pow_of_two(n), DATA_LINK_N_MAX);
5233 *ret_m = div_u64((uint64_t) m * *ret_n, n);
5234 intel_reduce_m_n_ratio(ret_m, ret_n);
5235}
5236
Daniel Vettere69d0bc2012-11-29 15:59:36 +01005237void
5238intel_link_compute_m_n(int bits_per_pixel, int nlanes,
5239 int pixel_clock, int link_clock,
5240 struct intel_link_m_n *m_n)
Zhenyu Wang2c072452009-06-05 15:38:42 +08005241{
Daniel Vettere69d0bc2012-11-29 15:59:36 +01005242 m_n->tu = 64;
Ville Syrjäläa65851a2013-04-23 15:03:34 +03005243
5244 compute_m_n(bits_per_pixel * pixel_clock,
5245 link_clock * nlanes * 8,
5246 &m_n->gmch_m, &m_n->gmch_n);
5247
5248 compute_m_n(pixel_clock, link_clock,
5249 &m_n->link_m, &m_n->link_n);
Zhenyu Wang2c072452009-06-05 15:38:42 +08005250}
5251
Chris Wilsona7615032011-01-12 17:04:08 +00005252static inline bool intel_panel_use_ssc(struct drm_i915_private *dev_priv)
5253{
Jani Nikulad330a952014-01-21 11:24:25 +02005254 if (i915.panel_use_ssc >= 0)
5255 return i915.panel_use_ssc != 0;
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03005256 return dev_priv->vbt.lvds_use_ssc
Keith Packard435793d2011-07-12 14:56:22 -07005257 && !(dev_priv->quirks & QUIRK_LVDS_SSC_DISABLE);
Chris Wilsona7615032011-01-12 17:04:08 +00005258}
5259
Jesse Barnesc65d77d2011-12-15 12:30:36 -08005260static int i9xx_get_refclk(struct drm_crtc *crtc, int num_connectors)
5261{
5262 struct drm_device *dev = crtc->dev;
5263 struct drm_i915_private *dev_priv = dev->dev_private;
5264 int refclk;
5265
Jesse Barnesa0c4da242012-06-15 11:55:13 -07005266 if (IS_VALLEYVIEW(dev)) {
Daniel Vetter9a0ea492013-09-16 11:29:34 +02005267 refclk = 100000;
Jesse Barnesa0c4da242012-06-15 11:55:13 -07005268 } else if (intel_pipe_has_type(crtc, INTEL_OUTPUT_LVDS) &&
Jesse Barnesc65d77d2011-12-15 12:30:36 -08005269 intel_panel_use_ssc(dev_priv) && num_connectors < 2) {
Ville Syrjäläe91e9412013-12-09 18:54:16 +02005270 refclk = dev_priv->vbt.lvds_ssc_freq;
5271 DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n", refclk);
Jesse Barnesc65d77d2011-12-15 12:30:36 -08005272 } else if (!IS_GEN2(dev)) {
5273 refclk = 96000;
5274 } else {
5275 refclk = 48000;
5276 }
5277
5278 return refclk;
5279}
5280
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005281static uint32_t pnv_dpll_compute_fp(struct dpll *dpll)
Jesse Barnesc65d77d2011-12-15 12:30:36 -08005282{
Daniel Vetter7df00d72013-05-21 21:54:55 +02005283 return (1 << dpll->n) << 16 | dpll->m2;
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005284}
Daniel Vetterf47709a2013-03-28 10:42:02 +01005285
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005286static uint32_t i9xx_dpll_compute_fp(struct dpll *dpll)
5287{
5288 return dpll->n << 16 | dpll->m1 << 8 | dpll->m2;
Jesse Barnesc65d77d2011-12-15 12:30:36 -08005289}
5290
Daniel Vetterf47709a2013-03-28 10:42:02 +01005291static void i9xx_update_pll_dividers(struct intel_crtc *crtc,
Jesse Barnesa7516a02011-12-15 12:30:37 -08005292 intel_clock_t *reduced_clock)
5293{
Daniel Vetterf47709a2013-03-28 10:42:02 +01005294 struct drm_device *dev = crtc->base.dev;
Jesse Barnesa7516a02011-12-15 12:30:37 -08005295 u32 fp, fp2 = 0;
5296
5297 if (IS_PINEVIEW(dev)) {
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005298 fp = pnv_dpll_compute_fp(&crtc->config.dpll);
Jesse Barnesa7516a02011-12-15 12:30:37 -08005299 if (reduced_clock)
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005300 fp2 = pnv_dpll_compute_fp(reduced_clock);
Jesse Barnesa7516a02011-12-15 12:30:37 -08005301 } else {
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005302 fp = i9xx_dpll_compute_fp(&crtc->config.dpll);
Jesse Barnesa7516a02011-12-15 12:30:37 -08005303 if (reduced_clock)
Daniel Vetter7429e9d2013-04-20 17:19:46 +02005304 fp2 = i9xx_dpll_compute_fp(reduced_clock);
Jesse Barnesa7516a02011-12-15 12:30:37 -08005305 }
5306
Daniel Vetter8bcc2792013-06-05 13:34:28 +02005307 crtc->config.dpll_hw_state.fp0 = fp;
Jesse Barnesa7516a02011-12-15 12:30:37 -08005308
Daniel Vetterf47709a2013-03-28 10:42:02 +01005309 crtc->lowfreq_avail = false;
5310 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_LVDS) &&
Jani Nikulad330a952014-01-21 11:24:25 +02005311 reduced_clock && i915.powersave) {
Daniel Vetter8bcc2792013-06-05 13:34:28 +02005312 crtc->config.dpll_hw_state.fp1 = fp2;
Daniel Vetterf47709a2013-03-28 10:42:02 +01005313 crtc->lowfreq_avail = true;
Jesse Barnesa7516a02011-12-15 12:30:37 -08005314 } else {
Daniel Vetter8bcc2792013-06-05 13:34:28 +02005315 crtc->config.dpll_hw_state.fp1 = fp;
Jesse Barnesa7516a02011-12-15 12:30:37 -08005316 }
5317}
5318
Chon Ming Lee5e69f972013-09-05 20:41:49 +08005319static void vlv_pllb_recal_opamp(struct drm_i915_private *dev_priv, enum pipe
5320 pipe)
Jesse Barnes89b667f2013-04-18 14:51:36 -07005321{
5322 u32 reg_val;
5323
5324 /*
5325 * PLLB opamp always calibrates to max value of 0x3f, force enable it
5326 * and set it to a reasonable value instead.
5327 */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005328 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW9(1));
Jesse Barnes89b667f2013-04-18 14:51:36 -07005329 reg_val &= 0xffffff00;
5330 reg_val |= 0x00000030;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005331 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9(1), reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005332
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005333 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_REF_DW13);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005334 reg_val &= 0x8cffffff;
5335 reg_val = 0x8c000000;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005336 vlv_dpio_write(dev_priv, pipe, VLV_REF_DW13, reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005337
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005338 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW9(1));
Jesse Barnes89b667f2013-04-18 14:51:36 -07005339 reg_val &= 0xffffff00;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005340 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9(1), reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005341
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005342 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_REF_DW13);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005343 reg_val &= 0x00ffffff;
5344 reg_val |= 0xb0000000;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005345 vlv_dpio_write(dev_priv, pipe, VLV_REF_DW13, reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005346}
5347
Daniel Vetterb5518422013-05-03 11:49:48 +02005348static void intel_pch_transcoder_set_m_n(struct intel_crtc *crtc,
5349 struct intel_link_m_n *m_n)
5350{
5351 struct drm_device *dev = crtc->base.dev;
5352 struct drm_i915_private *dev_priv = dev->dev_private;
5353 int pipe = crtc->pipe;
5354
Daniel Vettere3b95f12013-05-03 11:49:49 +02005355 I915_WRITE(PCH_TRANS_DATA_M1(pipe), TU_SIZE(m_n->tu) | m_n->gmch_m);
5356 I915_WRITE(PCH_TRANS_DATA_N1(pipe), m_n->gmch_n);
5357 I915_WRITE(PCH_TRANS_LINK_M1(pipe), m_n->link_m);
5358 I915_WRITE(PCH_TRANS_LINK_N1(pipe), m_n->link_n);
Daniel Vetterb5518422013-05-03 11:49:48 +02005359}
5360
5361static void intel_cpu_transcoder_set_m_n(struct intel_crtc *crtc,
5362 struct intel_link_m_n *m_n)
5363{
5364 struct drm_device *dev = crtc->base.dev;
5365 struct drm_i915_private *dev_priv = dev->dev_private;
5366 int pipe = crtc->pipe;
5367 enum transcoder transcoder = crtc->config.cpu_transcoder;
5368
5369 if (INTEL_INFO(dev)->gen >= 5) {
5370 I915_WRITE(PIPE_DATA_M1(transcoder), TU_SIZE(m_n->tu) | m_n->gmch_m);
5371 I915_WRITE(PIPE_DATA_N1(transcoder), m_n->gmch_n);
5372 I915_WRITE(PIPE_LINK_M1(transcoder), m_n->link_m);
5373 I915_WRITE(PIPE_LINK_N1(transcoder), m_n->link_n);
5374 } else {
Daniel Vettere3b95f12013-05-03 11:49:49 +02005375 I915_WRITE(PIPE_DATA_M_G4X(pipe), TU_SIZE(m_n->tu) | m_n->gmch_m);
5376 I915_WRITE(PIPE_DATA_N_G4X(pipe), m_n->gmch_n);
5377 I915_WRITE(PIPE_LINK_M_G4X(pipe), m_n->link_m);
5378 I915_WRITE(PIPE_LINK_N_G4X(pipe), m_n->link_n);
Daniel Vetterb5518422013-05-03 11:49:48 +02005379 }
5380}
5381
Daniel Vetter03afc4a2013-04-02 23:42:31 +02005382static void intel_dp_set_m_n(struct intel_crtc *crtc)
5383{
5384 if (crtc->config.has_pch_encoder)
5385 intel_pch_transcoder_set_m_n(crtc, &crtc->config.dp_m_n);
5386 else
5387 intel_cpu_transcoder_set_m_n(crtc, &crtc->config.dp_m_n);
5388}
5389
Daniel Vetterf47709a2013-03-28 10:42:02 +01005390static void vlv_update_pll(struct intel_crtc *crtc)
Jesse Barnesa0c4da242012-06-15 11:55:13 -07005391{
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02005392 u32 dpll, dpll_md;
5393
5394 /*
5395 * Enable DPIO clock input. We should never disable the reference
5396 * clock for pipe B, since VGA hotplug / manual detection depends
5397 * on it.
5398 */
5399 dpll = DPLL_EXT_BUFFER_ENABLE_VLV | DPLL_REFA_CLK_ENABLE_VLV |
5400 DPLL_VGA_MODE_DIS | DPLL_INTEGRATED_CLOCK_VLV;
5401 /* We should never disable this, set it here for state tracking */
5402 if (crtc->pipe == PIPE_B)
5403 dpll |= DPLL_INTEGRATED_CRI_CLK_VLV;
5404 dpll |= DPLL_VCO_ENABLE;
5405 crtc->config.dpll_hw_state.dpll = dpll;
5406
5407 dpll_md = (crtc->config.pixel_multiplier - 1)
5408 << DPLL_MD_UDI_MULTIPLIER_SHIFT;
5409 crtc->config.dpll_hw_state.dpll_md = dpll_md;
5410}
5411
5412static void vlv_prepare_pll(struct intel_crtc *crtc)
5413{
Daniel Vetterf47709a2013-03-28 10:42:02 +01005414 struct drm_device *dev = crtc->base.dev;
Jesse Barnesa0c4da242012-06-15 11:55:13 -07005415 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterf47709a2013-03-28 10:42:02 +01005416 int pipe = crtc->pipe;
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02005417 u32 mdiv;
Jesse Barnesa0c4da242012-06-15 11:55:13 -07005418 u32 bestn, bestm1, bestm2, bestp1, bestp2;
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02005419 u32 coreclk, reg_val;
Jesse Barnesa0c4da242012-06-15 11:55:13 -07005420
Daniel Vetter09153002012-12-12 14:06:44 +01005421 mutex_lock(&dev_priv->dpio_lock);
5422
Daniel Vetterf47709a2013-03-28 10:42:02 +01005423 bestn = crtc->config.dpll.n;
5424 bestm1 = crtc->config.dpll.m1;
5425 bestm2 = crtc->config.dpll.m2;
5426 bestp1 = crtc->config.dpll.p1;
5427 bestp2 = crtc->config.dpll.p2;
Jesse Barnesa0c4da242012-06-15 11:55:13 -07005428
Jesse Barnes89b667f2013-04-18 14:51:36 -07005429 /* See eDP HDMI DPIO driver vbios notes doc */
5430
5431 /* PLL B needs special handling */
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02005432 if (pipe == PIPE_B)
Chon Ming Lee5e69f972013-09-05 20:41:49 +08005433 vlv_pllb_recal_opamp(dev_priv, pipe);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005434
5435 /* Set up Tx target for periodic Rcomp update */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005436 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW9_BCAST, 0x0100000f);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005437
5438 /* Disable target IRef on PLL */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005439 reg_val = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW8(pipe));
Jesse Barnes89b667f2013-04-18 14:51:36 -07005440 reg_val &= 0x00ffffff;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005441 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW8(pipe), reg_val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005442
5443 /* Disable fast lock */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005444 vlv_dpio_write(dev_priv, pipe, VLV_CMN_DW0, 0x610);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005445
5446 /* Set idtafcrecal before PLL is enabled */
Jesse Barnesa0c4da242012-06-15 11:55:13 -07005447 mdiv = ((bestm1 << DPIO_M1DIV_SHIFT) | (bestm2 & DPIO_M2DIV_MASK));
5448 mdiv |= ((bestp1 << DPIO_P1_SHIFT) | (bestp2 << DPIO_P2_SHIFT));
5449 mdiv |= ((bestn << DPIO_N_SHIFT));
Jesse Barnesa0c4da242012-06-15 11:55:13 -07005450 mdiv |= (1 << DPIO_K_SHIFT);
Jesse Barnes7df50802013-05-02 10:48:09 -07005451
5452 /*
5453 * Post divider depends on pixel clock rate, DAC vs digital (and LVDS,
5454 * but we don't support that).
5455 * Note: don't use the DAC post divider as it seems unstable.
5456 */
5457 mdiv |= (DPIO_POST_DIV_HDMIDP << DPIO_POST_DIV_SHIFT);
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005458 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW3(pipe), mdiv);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005459
Jesse Barnesa0c4da242012-06-15 11:55:13 -07005460 mdiv |= DPIO_ENABLE_CALIBRATION;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005461 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW3(pipe), mdiv);
Jesse Barnesa0c4da242012-06-15 11:55:13 -07005462
Jesse Barnes89b667f2013-04-18 14:51:36 -07005463 /* Set HBR and RBR LPF coefficients */
Daniel Vetterff9a6752013-06-01 17:16:21 +02005464 if (crtc->config.port_clock == 162000 ||
Ville Syrjälä99750bd2013-06-14 14:02:52 +03005465 intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_ANALOG) ||
Jesse Barnes89b667f2013-04-18 14:51:36 -07005466 intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_HDMI))
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005467 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW10(pipe),
Ville Syrjälä885b0122013-07-05 19:21:38 +03005468 0x009f0003);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005469 else
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005470 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW10(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07005471 0x00d0000f);
Jesse Barnesa0c4da242012-06-15 11:55:13 -07005472
Jesse Barnes89b667f2013-04-18 14:51:36 -07005473 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_EDP) ||
5474 intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_DISPLAYPORT)) {
5475 /* Use SSC source */
Daniel Vetterbdd4b6a2014-04-24 23:55:11 +02005476 if (pipe == PIPE_A)
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005477 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07005478 0x0df40000);
5479 else
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005480 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW5(pipe),
Jesse Barnes89b667f2013-04-18 14:51:36 -07005481 0x0df70000);
5482 } else { /* HDMI or VGA */
5483 /* Use bend 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 0x0df70000);
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 0x0df40000);
5490 }
Jesse Barnesa0c4da242012-06-15 11:55:13 -07005491
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005492 coreclk = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW7(pipe));
Jesse Barnes89b667f2013-04-18 14:51:36 -07005493 coreclk = (coreclk & 0x0000ff00) | 0x01c00000;
5494 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_DISPLAYPORT) ||
5495 intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_EDP))
5496 coreclk |= 0x01000000;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005497 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW7(pipe), coreclk);
Jesse Barnes89b667f2013-04-18 14:51:36 -07005498
Chon Ming Leeab3c7592013-11-07 10:43:30 +08005499 vlv_dpio_write(dev_priv, pipe, VLV_PLL_DW11(pipe), 0x87871000);
Daniel Vetter09153002012-12-12 14:06:44 +01005500 mutex_unlock(&dev_priv->dpio_lock);
Jesse Barnesa0c4da242012-06-15 11:55:13 -07005501}
5502
Chon Ming Lee9d556c92014-05-02 14:27:47 +03005503static void chv_update_pll(struct intel_crtc *crtc)
5504{
5505 struct drm_device *dev = crtc->base.dev;
5506 struct drm_i915_private *dev_priv = dev->dev_private;
5507 int pipe = crtc->pipe;
5508 int dpll_reg = DPLL(crtc->pipe);
5509 enum dpio_channel port = vlv_pipe_to_channel(pipe);
5510 u32 val, loopfilter, intcoeff;
5511 u32 bestn, bestm1, bestm2, bestp1, bestp2, bestm2_frac;
5512 int refclk;
5513
5514 mutex_lock(&dev_priv->dpio_lock);
5515
5516 bestn = crtc->config.dpll.n;
5517 bestm2_frac = crtc->config.dpll.m2 & 0x3fffff;
5518 bestm1 = crtc->config.dpll.m1;
5519 bestm2 = crtc->config.dpll.m2 >> 22;
5520 bestp1 = crtc->config.dpll.p1;
5521 bestp2 = crtc->config.dpll.p2;
5522
5523 /*
5524 * Enable Refclk and SSC
5525 */
5526 val = I915_READ(dpll_reg);
5527 val |= (DPLL_SSC_REF_CLOCK_CHV | DPLL_REFA_CLK_ENABLE_VLV);
5528 I915_WRITE(dpll_reg, val);
5529
5530 /* Propagate soft reset to data lane reset */
5531 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS_DW0(port));
5532 val &= ~(DPIO_PCS_TX_LANE2_RESET | DPIO_PCS_TX_LANE1_RESET);
5533 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW0(port), val);
5534
5535 /* Disable 10bit clock to display controller */
5536 val = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW14(port));
5537 val &= ~DPIO_DCLKP_EN;
5538 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port), val);
5539
5540 /* p1 and p2 divider */
5541 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW13(port),
5542 5 << DPIO_CHV_S1_DIV_SHIFT |
5543 bestp1 << DPIO_CHV_P1_DIV_SHIFT |
5544 bestp2 << DPIO_CHV_P2_DIV_SHIFT |
5545 1 << DPIO_CHV_K_DIV_SHIFT);
5546
5547 /* Feedback post-divider - m2 */
5548 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW0(port), bestm2);
5549
5550 /* Feedback refclk divider - n and m1 */
5551 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW1(port),
5552 DPIO_CHV_M1_DIV_BY_2 |
5553 1 << DPIO_CHV_N_DIV_SHIFT);
5554
5555 /* M2 fraction division */
5556 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW2(port), bestm2_frac);
5557
5558 /* M2 fraction division enable */
5559 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW3(port),
5560 DPIO_CHV_FRAC_DIV_EN |
5561 (2 << DPIO_CHV_FEEDFWD_GAIN_SHIFT));
5562
5563 /* Loop filter */
5564 refclk = i9xx_get_refclk(&crtc->base, 0);
5565 loopfilter = 5 << DPIO_CHV_PROP_COEFF_SHIFT |
5566 2 << DPIO_CHV_GAIN_CTRL_SHIFT;
5567 if (refclk == 100000)
5568 intcoeff = 11;
5569 else if (refclk == 38400)
5570 intcoeff = 10;
5571 else
5572 intcoeff = 9;
5573 loopfilter |= intcoeff << DPIO_CHV_INT_COEFF_SHIFT;
5574 vlv_dpio_write(dev_priv, pipe, CHV_PLL_DW6(port), loopfilter);
5575
5576 /* AFC Recal */
5577 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW14(port),
5578 vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW14(port)) |
5579 DPIO_AFC_RECAL);
5580
5581 mutex_unlock(&dev_priv->dpio_lock);
5582}
5583
Daniel Vetterf47709a2013-03-28 10:42:02 +01005584static void i9xx_update_pll(struct intel_crtc *crtc,
5585 intel_clock_t *reduced_clock,
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005586 int num_connectors)
5587{
Daniel Vetterf47709a2013-03-28 10:42:02 +01005588 struct drm_device *dev = crtc->base.dev;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005589 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005590 u32 dpll;
5591 bool is_sdvo;
Daniel Vetterf47709a2013-03-28 10:42:02 +01005592 struct dpll *clock = &crtc->config.dpll;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005593
Daniel Vetterf47709a2013-03-28 10:42:02 +01005594 i9xx_update_pll_dividers(crtc, reduced_clock);
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05305595
Daniel Vetterf47709a2013-03-28 10:42:02 +01005596 is_sdvo = intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_SDVO) ||
5597 intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_HDMI);
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005598
5599 dpll = DPLL_VGA_MODE_DIS;
5600
Daniel Vetterf47709a2013-03-28 10:42:02 +01005601 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_LVDS))
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005602 dpll |= DPLLB_MODE_LVDS;
5603 else
5604 dpll |= DPLLB_MODE_DAC_SERIAL;
Daniel Vetter6cc5f342013-03-27 00:44:53 +01005605
Daniel Vetteref1b4602013-06-01 17:17:04 +02005606 if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev)) {
Daniel Vetter198a037f2013-04-19 11:14:37 +02005607 dpll |= (crtc->config.pixel_multiplier - 1)
5608 << SDVO_MULTIPLIER_SHIFT_HIRES;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005609 }
Daniel Vetter198a037f2013-04-19 11:14:37 +02005610
5611 if (is_sdvo)
Daniel Vetter4a33e482013-07-06 12:52:05 +02005612 dpll |= DPLL_SDVO_HIGH_SPEED;
Daniel Vetter198a037f2013-04-19 11:14:37 +02005613
Daniel Vetterf47709a2013-03-28 10:42:02 +01005614 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_DISPLAYPORT))
Daniel Vetter4a33e482013-07-06 12:52:05 +02005615 dpll |= DPLL_SDVO_HIGH_SPEED;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005616
5617 /* compute bitmask from p1 value */
5618 if (IS_PINEVIEW(dev))
5619 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW;
5620 else {
5621 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
5622 if (IS_G4X(dev) && reduced_clock)
5623 dpll |= (1 << (reduced_clock->p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
5624 }
5625 switch (clock->p2) {
5626 case 5:
5627 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
5628 break;
5629 case 7:
5630 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
5631 break;
5632 case 10:
5633 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
5634 break;
5635 case 14:
5636 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
5637 break;
5638 }
5639 if (INTEL_INFO(dev)->gen >= 4)
5640 dpll |= (6 << PLL_LOAD_PULSE_PHASE_SHIFT);
5641
Daniel Vetter09ede542013-04-30 14:01:45 +02005642 if (crtc->config.sdvo_tv_clock)
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005643 dpll |= PLL_REF_INPUT_TVCLKINBC;
Daniel Vetterf47709a2013-03-28 10:42:02 +01005644 else if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_LVDS) &&
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005645 intel_panel_use_ssc(dev_priv) && num_connectors < 2)
5646 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
5647 else
5648 dpll |= PLL_REF_INPUT_DREFCLK;
5649
5650 dpll |= DPLL_VCO_ENABLE;
Daniel Vetter8bcc2792013-06-05 13:34:28 +02005651 crtc->config.dpll_hw_state.dpll = dpll;
5652
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005653 if (INTEL_INFO(dev)->gen >= 4) {
Daniel Vetteref1b4602013-06-01 17:17:04 +02005654 u32 dpll_md = (crtc->config.pixel_multiplier - 1)
5655 << DPLL_MD_UDI_MULTIPLIER_SHIFT;
Daniel Vetter8bcc2792013-06-05 13:34:28 +02005656 crtc->config.dpll_hw_state.dpll_md = dpll_md;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005657 }
5658}
5659
Daniel Vetterf47709a2013-03-28 10:42:02 +01005660static void i8xx_update_pll(struct intel_crtc *crtc,
Daniel Vetterf47709a2013-03-28 10:42:02 +01005661 intel_clock_t *reduced_clock,
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005662 int num_connectors)
5663{
Daniel Vetterf47709a2013-03-28 10:42:02 +01005664 struct drm_device *dev = crtc->base.dev;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005665 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005666 u32 dpll;
Daniel Vetterf47709a2013-03-28 10:42:02 +01005667 struct dpll *clock = &crtc->config.dpll;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005668
Daniel Vetterf47709a2013-03-28 10:42:02 +01005669 i9xx_update_pll_dividers(crtc, reduced_clock);
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05305670
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005671 dpll = DPLL_VGA_MODE_DIS;
5672
Daniel Vetterf47709a2013-03-28 10:42:02 +01005673 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_LVDS)) {
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005674 dpll |= (1 << (clock->p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
5675 } else {
5676 if (clock->p1 == 2)
5677 dpll |= PLL_P1_DIVIDE_BY_TWO;
5678 else
5679 dpll |= (clock->p1 - 2) << DPLL_FPA01_P1_POST_DIV_SHIFT;
5680 if (clock->p2 == 4)
5681 dpll |= PLL_P2_DIVIDE_BY_4;
5682 }
5683
Daniel Vetter4a33e482013-07-06 12:52:05 +02005684 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_DVO))
5685 dpll |= DPLL_DVO_2X_MODE;
5686
Daniel Vetterf47709a2013-03-28 10:42:02 +01005687 if (intel_pipe_has_type(&crtc->base, INTEL_OUTPUT_LVDS) &&
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005688 intel_panel_use_ssc(dev_priv) && num_connectors < 2)
5689 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
5690 else
5691 dpll |= PLL_REF_INPUT_DREFCLK;
5692
5693 dpll |= DPLL_VCO_ENABLE;
Daniel Vetter8bcc2792013-06-05 13:34:28 +02005694 crtc->config.dpll_hw_state.dpll = dpll;
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005695}
5696
Daniel Vetter8a654f32013-06-01 17:16:22 +02005697static void intel_set_pipe_timings(struct intel_crtc *intel_crtc)
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005698{
5699 struct drm_device *dev = intel_crtc->base.dev;
5700 struct drm_i915_private *dev_priv = dev->dev_private;
5701 enum pipe pipe = intel_crtc->pipe;
Daniel Vetter3b117c82013-04-17 20:15:07 +02005702 enum transcoder cpu_transcoder = intel_crtc->config.cpu_transcoder;
Daniel Vetter8a654f32013-06-01 17:16:22 +02005703 struct drm_display_mode *adjusted_mode =
5704 &intel_crtc->config.adjusted_mode;
Ville Syrjälä1caea6e2014-03-28 23:29:32 +02005705 uint32_t crtc_vtotal, crtc_vblank_end;
5706 int vsyncshift = 0;
Daniel Vetter4d8a62e2013-05-03 11:49:51 +02005707
5708 /* We need to be careful not to changed the adjusted mode, for otherwise
5709 * the hw state checker will get angry at the mismatch. */
5710 crtc_vtotal = adjusted_mode->crtc_vtotal;
5711 crtc_vblank_end = adjusted_mode->crtc_vblank_end;
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005712
Ville Syrjälä609aeac2014-03-28 23:29:30 +02005713 if (adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE) {
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005714 /* the chip adds 2 halflines automatically */
Daniel Vetter4d8a62e2013-05-03 11:49:51 +02005715 crtc_vtotal -= 1;
5716 crtc_vblank_end -= 1;
Ville Syrjälä609aeac2014-03-28 23:29:30 +02005717
5718 if (intel_pipe_has_type(&intel_crtc->base, INTEL_OUTPUT_SDVO))
5719 vsyncshift = (adjusted_mode->crtc_htotal - 1) / 2;
5720 else
5721 vsyncshift = adjusted_mode->crtc_hsync_start -
5722 adjusted_mode->crtc_htotal / 2;
Ville Syrjälä1caea6e2014-03-28 23:29:32 +02005723 if (vsyncshift < 0)
5724 vsyncshift += adjusted_mode->crtc_htotal;
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005725 }
5726
5727 if (INTEL_INFO(dev)->gen > 3)
Paulo Zanonife2b8f92012-10-23 18:30:02 -02005728 I915_WRITE(VSYNCSHIFT(cpu_transcoder), vsyncshift);
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005729
Paulo Zanonife2b8f92012-10-23 18:30:02 -02005730 I915_WRITE(HTOTAL(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005731 (adjusted_mode->crtc_hdisplay - 1) |
5732 ((adjusted_mode->crtc_htotal - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02005733 I915_WRITE(HBLANK(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005734 (adjusted_mode->crtc_hblank_start - 1) |
5735 ((adjusted_mode->crtc_hblank_end - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02005736 I915_WRITE(HSYNC(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005737 (adjusted_mode->crtc_hsync_start - 1) |
5738 ((adjusted_mode->crtc_hsync_end - 1) << 16));
5739
Paulo Zanonife2b8f92012-10-23 18:30:02 -02005740 I915_WRITE(VTOTAL(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005741 (adjusted_mode->crtc_vdisplay - 1) |
Daniel Vetter4d8a62e2013-05-03 11:49:51 +02005742 ((crtc_vtotal - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02005743 I915_WRITE(VBLANK(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005744 (adjusted_mode->crtc_vblank_start - 1) |
Daniel Vetter4d8a62e2013-05-03 11:49:51 +02005745 ((crtc_vblank_end - 1) << 16));
Paulo Zanonife2b8f92012-10-23 18:30:02 -02005746 I915_WRITE(VSYNC(cpu_transcoder),
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005747 (adjusted_mode->crtc_vsync_start - 1) |
5748 ((adjusted_mode->crtc_vsync_end - 1) << 16));
5749
Paulo Zanonib5e508d2012-10-24 11:34:43 -02005750 /* Workaround: when the EDP input selection is B, the VTOTAL_B must be
5751 * programmed with the VTOTAL_EDP value. Same for VTOTAL_C. This is
5752 * documented on the DDI_FUNC_CTL register description, EDP Input Select
5753 * bits. */
5754 if (IS_HASWELL(dev) && cpu_transcoder == TRANSCODER_EDP &&
5755 (pipe == PIPE_B || pipe == PIPE_C))
5756 I915_WRITE(VTOTAL(pipe), I915_READ(VTOTAL(cpu_transcoder)));
5757
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005758 /* pipesrc controls the size that is scaled from, which should
5759 * always be the user's requested size.
5760 */
5761 I915_WRITE(PIPESRC(pipe),
Ville Syrjälä37327ab2013-09-04 18:25:28 +03005762 ((intel_crtc->config.pipe_src_w - 1) << 16) |
5763 (intel_crtc->config.pipe_src_h - 1));
Paulo Zanonib0e77b92012-10-01 18:10:53 -03005764}
5765
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02005766static void intel_get_pipe_timings(struct intel_crtc *crtc,
5767 struct intel_crtc_config *pipe_config)
5768{
5769 struct drm_device *dev = crtc->base.dev;
5770 struct drm_i915_private *dev_priv = dev->dev_private;
5771 enum transcoder cpu_transcoder = pipe_config->cpu_transcoder;
5772 uint32_t tmp;
5773
5774 tmp = I915_READ(HTOTAL(cpu_transcoder));
5775 pipe_config->adjusted_mode.crtc_hdisplay = (tmp & 0xffff) + 1;
5776 pipe_config->adjusted_mode.crtc_htotal = ((tmp >> 16) & 0xffff) + 1;
5777 tmp = I915_READ(HBLANK(cpu_transcoder));
5778 pipe_config->adjusted_mode.crtc_hblank_start = (tmp & 0xffff) + 1;
5779 pipe_config->adjusted_mode.crtc_hblank_end = ((tmp >> 16) & 0xffff) + 1;
5780 tmp = I915_READ(HSYNC(cpu_transcoder));
5781 pipe_config->adjusted_mode.crtc_hsync_start = (tmp & 0xffff) + 1;
5782 pipe_config->adjusted_mode.crtc_hsync_end = ((tmp >> 16) & 0xffff) + 1;
5783
5784 tmp = I915_READ(VTOTAL(cpu_transcoder));
5785 pipe_config->adjusted_mode.crtc_vdisplay = (tmp & 0xffff) + 1;
5786 pipe_config->adjusted_mode.crtc_vtotal = ((tmp >> 16) & 0xffff) + 1;
5787 tmp = I915_READ(VBLANK(cpu_transcoder));
5788 pipe_config->adjusted_mode.crtc_vblank_start = (tmp & 0xffff) + 1;
5789 pipe_config->adjusted_mode.crtc_vblank_end = ((tmp >> 16) & 0xffff) + 1;
5790 tmp = I915_READ(VSYNC(cpu_transcoder));
5791 pipe_config->adjusted_mode.crtc_vsync_start = (tmp & 0xffff) + 1;
5792 pipe_config->adjusted_mode.crtc_vsync_end = ((tmp >> 16) & 0xffff) + 1;
5793
5794 if (I915_READ(PIPECONF(cpu_transcoder)) & PIPECONF_INTERLACE_MASK) {
5795 pipe_config->adjusted_mode.flags |= DRM_MODE_FLAG_INTERLACE;
5796 pipe_config->adjusted_mode.crtc_vtotal += 1;
5797 pipe_config->adjusted_mode.crtc_vblank_end += 1;
5798 }
5799
5800 tmp = I915_READ(PIPESRC(crtc->pipe));
Ville Syrjälä37327ab2013-09-04 18:25:28 +03005801 pipe_config->pipe_src_h = (tmp & 0xffff) + 1;
5802 pipe_config->pipe_src_w = ((tmp >> 16) & 0xffff) + 1;
5803
5804 pipe_config->requested_mode.vdisplay = pipe_config->pipe_src_h;
5805 pipe_config->requested_mode.hdisplay = pipe_config->pipe_src_w;
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02005806}
5807
Daniel Vetterf6a83282014-02-11 15:28:57 -08005808void intel_mode_from_pipe_config(struct drm_display_mode *mode,
5809 struct intel_crtc_config *pipe_config)
Jesse Barnesbabea612013-06-26 18:57:38 +03005810{
Daniel Vetterf6a83282014-02-11 15:28:57 -08005811 mode->hdisplay = pipe_config->adjusted_mode.crtc_hdisplay;
5812 mode->htotal = pipe_config->adjusted_mode.crtc_htotal;
5813 mode->hsync_start = pipe_config->adjusted_mode.crtc_hsync_start;
5814 mode->hsync_end = pipe_config->adjusted_mode.crtc_hsync_end;
Jesse Barnesbabea612013-06-26 18:57:38 +03005815
Daniel Vetterf6a83282014-02-11 15:28:57 -08005816 mode->vdisplay = pipe_config->adjusted_mode.crtc_vdisplay;
5817 mode->vtotal = pipe_config->adjusted_mode.crtc_vtotal;
5818 mode->vsync_start = pipe_config->adjusted_mode.crtc_vsync_start;
5819 mode->vsync_end = pipe_config->adjusted_mode.crtc_vsync_end;
Jesse Barnesbabea612013-06-26 18:57:38 +03005820
Daniel Vetterf6a83282014-02-11 15:28:57 -08005821 mode->flags = pipe_config->adjusted_mode.flags;
Jesse Barnesbabea612013-06-26 18:57:38 +03005822
Daniel Vetterf6a83282014-02-11 15:28:57 -08005823 mode->clock = pipe_config->adjusted_mode.crtc_clock;
5824 mode->flags |= pipe_config->adjusted_mode.flags;
Jesse Barnesbabea612013-06-26 18:57:38 +03005825}
5826
Daniel Vetter84b046f2013-02-19 18:48:54 +01005827static void i9xx_set_pipeconf(struct intel_crtc *intel_crtc)
5828{
5829 struct drm_device *dev = intel_crtc->base.dev;
5830 struct drm_i915_private *dev_priv = dev->dev_private;
5831 uint32_t pipeconf;
5832
Daniel Vetter9f11a9e2013-06-13 00:54:58 +02005833 pipeconf = 0;
Daniel Vetter84b046f2013-02-19 18:48:54 +01005834
Daniel Vetter67c72a12013-09-24 11:46:14 +02005835 if (dev_priv->quirks & QUIRK_PIPEA_FORCE &&
5836 I915_READ(PIPECONF(intel_crtc->pipe)) & PIPECONF_ENABLE)
5837 pipeconf |= PIPECONF_ENABLE;
5838
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03005839 if (intel_crtc->config.double_wide)
5840 pipeconf |= PIPECONF_DOUBLE_WIDE;
Daniel Vetter84b046f2013-02-19 18:48:54 +01005841
Daniel Vetterff9ce462013-04-24 14:57:17 +02005842 /* only g4x and later have fancy bpc/dither controls */
5843 if (IS_G4X(dev) || IS_VALLEYVIEW(dev)) {
Daniel Vetterff9ce462013-04-24 14:57:17 +02005844 /* Bspec claims that we can't use dithering for 30bpp pipes. */
5845 if (intel_crtc->config.dither && intel_crtc->config.pipe_bpp != 30)
5846 pipeconf |= PIPECONF_DITHER_EN |
5847 PIPECONF_DITHER_TYPE_SP;
5848
5849 switch (intel_crtc->config.pipe_bpp) {
5850 case 18:
5851 pipeconf |= PIPECONF_6BPC;
5852 break;
5853 case 24:
5854 pipeconf |= PIPECONF_8BPC;
5855 break;
5856 case 30:
5857 pipeconf |= PIPECONF_10BPC;
5858 break;
5859 default:
5860 /* Case prevented by intel_choose_pipe_bpp_dither. */
5861 BUG();
Daniel Vetter84b046f2013-02-19 18:48:54 +01005862 }
5863 }
5864
5865 if (HAS_PIPE_CXSR(dev)) {
5866 if (intel_crtc->lowfreq_avail) {
5867 DRM_DEBUG_KMS("enabling CxSR downclocking\n");
5868 pipeconf |= PIPECONF_CXSR_DOWNCLOCK;
5869 } else {
5870 DRM_DEBUG_KMS("disabling CxSR downclocking\n");
Daniel Vetter84b046f2013-02-19 18:48:54 +01005871 }
5872 }
5873
Ville Syrjäläefc2cff2014-03-28 23:29:31 +02005874 if (intel_crtc->config.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE) {
5875 if (INTEL_INFO(dev)->gen < 4 ||
5876 intel_pipe_has_type(&intel_crtc->base, INTEL_OUTPUT_SDVO))
5877 pipeconf |= PIPECONF_INTERLACE_W_FIELD_INDICATION;
5878 else
5879 pipeconf |= PIPECONF_INTERLACE_W_SYNC_SHIFT;
5880 } else
Daniel Vetter84b046f2013-02-19 18:48:54 +01005881 pipeconf |= PIPECONF_PROGRESSIVE;
5882
Daniel Vetter9f11a9e2013-06-13 00:54:58 +02005883 if (IS_VALLEYVIEW(dev) && intel_crtc->config.limited_color_range)
5884 pipeconf |= PIPECONF_COLOR_RANGE_SELECT;
Ville Syrjälä9c8e09b2013-04-02 16:10:09 +03005885
Daniel Vetter84b046f2013-02-19 18:48:54 +01005886 I915_WRITE(PIPECONF(intel_crtc->pipe), pipeconf);
5887 POSTING_READ(PIPECONF(intel_crtc->pipe));
5888}
5889
Eric Anholtf564048e2011-03-30 13:01:02 -07005890static int i9xx_crtc_mode_set(struct drm_crtc *crtc,
Eric Anholtf564048e2011-03-30 13:01:02 -07005891 int x, int y,
Daniel Vetter94352cf2012-07-05 22:51:56 +02005892 struct drm_framebuffer *fb)
Jesse Barnes79e53942008-11-07 14:24:08 -08005893{
5894 struct drm_device *dev = crtc->dev;
5895 struct drm_i915_private *dev_priv = dev->dev_private;
5896 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Eric Anholtc751ce42010-03-25 11:48:48 -07005897 int refclk, num_connectors = 0;
Jesse Barnes652c3932009-08-17 13:31:43 -07005898 intel_clock_t clock, reduced_clock;
Daniel Vettera16af722013-04-30 14:01:44 +02005899 bool ok, has_reduced_clock = false;
Jani Nikulae9fd1c02013-08-27 15:12:23 +03005900 bool is_lvds = false, is_dsi = false;
Chris Wilson5eddb702010-09-11 13:48:45 +01005901 struct intel_encoder *encoder;
Ma Lingd4906092009-03-18 20:13:27 +08005902 const intel_limit_t *limit;
Jesse Barnes79e53942008-11-07 14:24:08 -08005903
Daniel Vetter6c2b7c12012-07-05 09:50:24 +02005904 for_each_encoder_on_crtc(dev, crtc, encoder) {
Chris Wilson5eddb702010-09-11 13:48:45 +01005905 switch (encoder->type) {
Jesse Barnes79e53942008-11-07 14:24:08 -08005906 case INTEL_OUTPUT_LVDS:
5907 is_lvds = true;
5908 break;
Jani Nikulae9fd1c02013-08-27 15:12:23 +03005909 case INTEL_OUTPUT_DSI:
5910 is_dsi = true;
5911 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08005912 }
Kristian Høgsberg43565a02009-02-13 20:56:52 -05005913
Eric Anholtc751ce42010-03-25 11:48:48 -07005914 num_connectors++;
Jesse Barnes79e53942008-11-07 14:24:08 -08005915 }
5916
Jani Nikulaf2335332013-09-13 11:03:09 +03005917 if (is_dsi)
Daniel Vetter5b18e572014-04-24 23:55:06 +02005918 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08005919
Jani Nikulaf2335332013-09-13 11:03:09 +03005920 if (!intel_crtc->config.clock_set) {
5921 refclk = i9xx_get_refclk(crtc, num_connectors);
5922
Jani Nikulae9fd1c02013-08-27 15:12:23 +03005923 /*
5924 * Returns a set of divisors for the desired target clock with
5925 * the given refclk, or FALSE. The returned values represent
5926 * the clock equation: reflck * (5 * (m1 + 2) + (m2 + 2)) / (n +
5927 * 2) / p1 / p2.
5928 */
5929 limit = intel_limit(crtc, refclk);
5930 ok = dev_priv->display.find_dpll(limit, crtc,
5931 intel_crtc->config.port_clock,
5932 refclk, NULL, &clock);
Jani Nikulaf2335332013-09-13 11:03:09 +03005933 if (!ok) {
Jani Nikulae9fd1c02013-08-27 15:12:23 +03005934 DRM_ERROR("Couldn't find PLL settings for mode!\n");
5935 return -EINVAL;
5936 }
Eric Anholtf564048e2011-03-30 13:01:02 -07005937
Jani Nikulaf2335332013-09-13 11:03:09 +03005938 if (is_lvds && dev_priv->lvds_downclock_avail) {
5939 /*
5940 * Ensure we match the reduced clock's P to the target
5941 * clock. If the clocks don't match, we can't switch
5942 * the display clock by using the FP0/FP1. In such case
5943 * we will disable the LVDS downclock feature.
5944 */
5945 has_reduced_clock =
5946 dev_priv->display.find_dpll(limit, crtc,
5947 dev_priv->lvds_downclock,
5948 refclk, &clock,
5949 &reduced_clock);
5950 }
5951 /* Compat-code for transition, will disappear. */
Daniel Vetterf47709a2013-03-28 10:42:02 +01005952 intel_crtc->config.dpll.n = clock.n;
5953 intel_crtc->config.dpll.m1 = clock.m1;
5954 intel_crtc->config.dpll.m2 = clock.m2;
5955 intel_crtc->config.dpll.p1 = clock.p1;
5956 intel_crtc->config.dpll.p2 = clock.p2;
5957 }
Eric Anholtf564048e2011-03-30 13:01:02 -07005958
Jani Nikulae9fd1c02013-08-27 15:12:23 +03005959 if (IS_GEN2(dev)) {
Daniel Vetter8a654f32013-06-01 17:16:22 +02005960 i8xx_update_pll(intel_crtc,
Vijay Purushothaman2a8f64c2012-09-27 19:13:06 +05305961 has_reduced_clock ? &reduced_clock : NULL,
5962 num_connectors);
Chon Ming Lee9d556c92014-05-02 14:27:47 +03005963 } else if (IS_CHERRYVIEW(dev)) {
5964 chv_update_pll(intel_crtc);
Jani Nikulae9fd1c02013-08-27 15:12:23 +03005965 } else if (IS_VALLEYVIEW(dev)) {
Jani Nikulaf2335332013-09-13 11:03:09 +03005966 vlv_update_pll(intel_crtc);
Jani Nikulae9fd1c02013-08-27 15:12:23 +03005967 } else {
Daniel Vetterf47709a2013-03-28 10:42:02 +01005968 i9xx_update_pll(intel_crtc,
Daniel Vettereb1cbe42012-03-28 23:12:16 +02005969 has_reduced_clock ? &reduced_clock : NULL,
Robin Schroereba905b2014-05-18 02:24:50 +02005970 num_connectors);
Jani Nikulae9fd1c02013-08-27 15:12:23 +03005971 }
Eric Anholtf564048e2011-03-30 13:01:02 -07005972
Daniel Vetterc8f7a0d2014-04-24 23:55:04 +02005973 return 0;
Eric Anholtf564048e2011-03-30 13:01:02 -07005974}
5975
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02005976static void i9xx_get_pfit_config(struct intel_crtc *crtc,
5977 struct intel_crtc_config *pipe_config)
5978{
5979 struct drm_device *dev = crtc->base.dev;
5980 struct drm_i915_private *dev_priv = dev->dev_private;
5981 uint32_t tmp;
5982
Ville Syrjälädc9e7dec2014-01-10 14:06:45 +02005983 if (INTEL_INFO(dev)->gen <= 3 && (IS_I830(dev) || !IS_MOBILE(dev)))
5984 return;
5985
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02005986 tmp = I915_READ(PFIT_CONTROL);
Daniel Vetter06922822013-07-11 13:35:40 +02005987 if (!(tmp & PFIT_ENABLE))
5988 return;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02005989
Daniel Vetter06922822013-07-11 13:35:40 +02005990 /* Check whether the pfit is attached to our pipe. */
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02005991 if (INTEL_INFO(dev)->gen < 4) {
5992 if (crtc->pipe != PIPE_B)
5993 return;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02005994 } else {
5995 if ((tmp & PFIT_PIPE_MASK) != (crtc->pipe << PFIT_PIPE_SHIFT))
5996 return;
5997 }
5998
Daniel Vetter06922822013-07-11 13:35:40 +02005999 pipe_config->gmch_pfit.control = tmp;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02006000 pipe_config->gmch_pfit.pgm_ratios = I915_READ(PFIT_PGM_RATIOS);
6001 if (INTEL_INFO(dev)->gen < 5)
6002 pipe_config->gmch_pfit.lvds_border_bits =
6003 I915_READ(LVDS) & LVDS_BORDER_ENABLE;
6004}
6005
Jesse Barnesacbec812013-09-20 11:29:32 -07006006static void vlv_crtc_clock_get(struct intel_crtc *crtc,
6007 struct intel_crtc_config *pipe_config)
6008{
6009 struct drm_device *dev = crtc->base.dev;
6010 struct drm_i915_private *dev_priv = dev->dev_private;
6011 int pipe = pipe_config->cpu_transcoder;
6012 intel_clock_t clock;
6013 u32 mdiv;
Chris Wilson662c6ec2013-09-25 14:24:01 -07006014 int refclk = 100000;
Jesse Barnesacbec812013-09-20 11:29:32 -07006015
6016 mutex_lock(&dev_priv->dpio_lock);
Chon Ming Leeab3c7592013-11-07 10:43:30 +08006017 mdiv = vlv_dpio_read(dev_priv, pipe, VLV_PLL_DW3(pipe));
Jesse Barnesacbec812013-09-20 11:29:32 -07006018 mutex_unlock(&dev_priv->dpio_lock);
6019
6020 clock.m1 = (mdiv >> DPIO_M1DIV_SHIFT) & 7;
6021 clock.m2 = mdiv & DPIO_M2DIV_MASK;
6022 clock.n = (mdiv >> DPIO_N_SHIFT) & 0xf;
6023 clock.p1 = (mdiv >> DPIO_P1_SHIFT) & 7;
6024 clock.p2 = (mdiv >> DPIO_P2_SHIFT) & 0x1f;
6025
Ville Syrjäläf6466282013-10-14 14:50:31 +03006026 vlv_clock(refclk, &clock);
Jesse Barnesacbec812013-09-20 11:29:32 -07006027
Ville Syrjäläf6466282013-10-14 14:50:31 +03006028 /* clock.dot is the fast clock */
6029 pipe_config->port_clock = clock.dot / 5;
Jesse Barnesacbec812013-09-20 11:29:32 -07006030}
6031
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006032static void i9xx_get_plane_config(struct intel_crtc *crtc,
6033 struct intel_plane_config *plane_config)
6034{
6035 struct drm_device *dev = crtc->base.dev;
6036 struct drm_i915_private *dev_priv = dev->dev_private;
6037 u32 val, base, offset;
6038 int pipe = crtc->pipe, plane = crtc->plane;
6039 int fourcc, pixel_format;
6040 int aligned_height;
6041
Dave Airlie66e514c2014-04-03 07:51:54 +10006042 crtc->base.primary->fb = kzalloc(sizeof(struct intel_framebuffer), GFP_KERNEL);
6043 if (!crtc->base.primary->fb) {
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006044 DRM_DEBUG_KMS("failed to alloc fb\n");
6045 return;
6046 }
6047
6048 val = I915_READ(DSPCNTR(plane));
6049
6050 if (INTEL_INFO(dev)->gen >= 4)
6051 if (val & DISPPLANE_TILED)
6052 plane_config->tiled = true;
6053
6054 pixel_format = val & DISPPLANE_PIXFORMAT_MASK;
6055 fourcc = intel_format_to_fourcc(pixel_format);
Dave Airlie66e514c2014-04-03 07:51:54 +10006056 crtc->base.primary->fb->pixel_format = fourcc;
6057 crtc->base.primary->fb->bits_per_pixel =
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006058 drm_format_plane_cpp(fourcc, 0) * 8;
6059
6060 if (INTEL_INFO(dev)->gen >= 4) {
6061 if (plane_config->tiled)
6062 offset = I915_READ(DSPTILEOFF(plane));
6063 else
6064 offset = I915_READ(DSPLINOFF(plane));
6065 base = I915_READ(DSPSURF(plane)) & 0xfffff000;
6066 } else {
6067 base = I915_READ(DSPADDR(plane));
6068 }
6069 plane_config->base = base;
6070
6071 val = I915_READ(PIPESRC(pipe));
Dave Airlie66e514c2014-04-03 07:51:54 +10006072 crtc->base.primary->fb->width = ((val >> 16) & 0xfff) + 1;
6073 crtc->base.primary->fb->height = ((val >> 0) & 0xfff) + 1;
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006074
6075 val = I915_READ(DSPSTRIDE(pipe));
Dave Airlie66e514c2014-04-03 07:51:54 +10006076 crtc->base.primary->fb->pitches[0] = val & 0xffffff80;
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006077
Dave Airlie66e514c2014-04-03 07:51:54 +10006078 aligned_height = intel_align_height(dev, crtc->base.primary->fb->height,
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006079 plane_config->tiled);
6080
Dave Airlie66e514c2014-04-03 07:51:54 +10006081 plane_config->size = ALIGN(crtc->base.primary->fb->pitches[0] *
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006082 aligned_height, PAGE_SIZE);
6083
6084 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 +10006085 pipe, plane, crtc->base.primary->fb->width,
6086 crtc->base.primary->fb->height,
6087 crtc->base.primary->fb->bits_per_pixel, base,
6088 crtc->base.primary->fb->pitches[0],
Jesse Barnes1ad292b2014-03-07 08:57:49 -08006089 plane_config->size);
6090
6091}
6092
Ville Syrjälä70b23a92014-04-09 13:28:22 +03006093static void chv_crtc_clock_get(struct intel_crtc *crtc,
6094 struct intel_crtc_config *pipe_config)
6095{
6096 struct drm_device *dev = crtc->base.dev;
6097 struct drm_i915_private *dev_priv = dev->dev_private;
6098 int pipe = pipe_config->cpu_transcoder;
6099 enum dpio_channel port = vlv_pipe_to_channel(pipe);
6100 intel_clock_t clock;
6101 u32 cmn_dw13, pll_dw0, pll_dw1, pll_dw2;
6102 int refclk = 100000;
6103
6104 mutex_lock(&dev_priv->dpio_lock);
6105 cmn_dw13 = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW13(port));
6106 pll_dw0 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW0(port));
6107 pll_dw1 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW1(port));
6108 pll_dw2 = vlv_dpio_read(dev_priv, pipe, CHV_PLL_DW2(port));
6109 mutex_unlock(&dev_priv->dpio_lock);
6110
6111 clock.m1 = (pll_dw1 & 0x7) == DPIO_CHV_M1_DIV_BY_2 ? 2 : 0;
6112 clock.m2 = ((pll_dw0 & 0xff) << 22) | (pll_dw2 & 0x3fffff);
6113 clock.n = (pll_dw1 >> DPIO_CHV_N_DIV_SHIFT) & 0xf;
6114 clock.p1 = (cmn_dw13 >> DPIO_CHV_P1_DIV_SHIFT) & 0x7;
6115 clock.p2 = (cmn_dw13 >> DPIO_CHV_P2_DIV_SHIFT) & 0x1f;
6116
6117 chv_clock(refclk, &clock);
6118
6119 /* clock.dot is the fast clock */
6120 pipe_config->port_clock = clock.dot / 5;
6121}
6122
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01006123static bool i9xx_get_pipe_config(struct intel_crtc *crtc,
6124 struct intel_crtc_config *pipe_config)
6125{
6126 struct drm_device *dev = crtc->base.dev;
6127 struct drm_i915_private *dev_priv = dev->dev_private;
6128 uint32_t tmp;
6129
Imre Deakb5482bd2014-03-05 16:20:55 +02006130 if (!intel_display_power_enabled(dev_priv,
6131 POWER_DOMAIN_PIPE(crtc->pipe)))
6132 return false;
6133
Daniel Vettere143a212013-07-04 12:01:15 +02006134 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +02006135 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
Daniel Vettereccb1402013-05-22 00:50:22 +02006136
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01006137 tmp = I915_READ(PIPECONF(crtc->pipe));
6138 if (!(tmp & PIPECONF_ENABLE))
6139 return false;
6140
Ville Syrjälä42571ae2013-09-06 23:29:00 +03006141 if (IS_G4X(dev) || IS_VALLEYVIEW(dev)) {
6142 switch (tmp & PIPECONF_BPC_MASK) {
6143 case PIPECONF_6BPC:
6144 pipe_config->pipe_bpp = 18;
6145 break;
6146 case PIPECONF_8BPC:
6147 pipe_config->pipe_bpp = 24;
6148 break;
6149 case PIPECONF_10BPC:
6150 pipe_config->pipe_bpp = 30;
6151 break;
6152 default:
6153 break;
6154 }
6155 }
6156
Daniel Vetterb5a9fa02014-04-24 23:54:49 +02006157 if (IS_VALLEYVIEW(dev) && (tmp & PIPECONF_COLOR_RANGE_SELECT))
6158 pipe_config->limited_color_range = true;
6159
Ville Syrjälä282740f2013-09-04 18:30:03 +03006160 if (INTEL_INFO(dev)->gen < 4)
6161 pipe_config->double_wide = tmp & PIPECONF_DOUBLE_WIDE;
6162
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02006163 intel_get_pipe_timings(crtc, pipe_config);
6164
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02006165 i9xx_get_pfit_config(crtc, pipe_config);
6166
Daniel Vetter6c49f242013-06-06 12:45:25 +02006167 if (INTEL_INFO(dev)->gen >= 4) {
6168 tmp = I915_READ(DPLL_MD(crtc->pipe));
6169 pipe_config->pixel_multiplier =
6170 ((tmp & DPLL_MD_UDI_MULTIPLIER_MASK)
6171 >> DPLL_MD_UDI_MULTIPLIER_SHIFT) + 1;
Daniel Vetter8bcc2792013-06-05 13:34:28 +02006172 pipe_config->dpll_hw_state.dpll_md = tmp;
Daniel Vetter6c49f242013-06-06 12:45:25 +02006173 } else if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev)) {
6174 tmp = I915_READ(DPLL(crtc->pipe));
6175 pipe_config->pixel_multiplier =
6176 ((tmp & SDVO_MULTIPLIER_MASK)
6177 >> SDVO_MULTIPLIER_SHIFT_HIRES) + 1;
6178 } else {
6179 /* Note that on i915G/GM the pixel multiplier is in the sdvo
6180 * port and will be fixed up in the encoder->get_config
6181 * function. */
6182 pipe_config->pixel_multiplier = 1;
6183 }
Daniel Vetter8bcc2792013-06-05 13:34:28 +02006184 pipe_config->dpll_hw_state.dpll = I915_READ(DPLL(crtc->pipe));
6185 if (!IS_VALLEYVIEW(dev)) {
6186 pipe_config->dpll_hw_state.fp0 = I915_READ(FP0(crtc->pipe));
6187 pipe_config->dpll_hw_state.fp1 = I915_READ(FP1(crtc->pipe));
Ville Syrjälä165e9012013-06-26 17:44:15 +03006188 } else {
6189 /* Mask out read-only status bits. */
6190 pipe_config->dpll_hw_state.dpll &= ~(DPLL_LOCK_VLV |
6191 DPLL_PORTC_READY_MASK |
6192 DPLL_PORTB_READY_MASK);
Daniel Vetter8bcc2792013-06-05 13:34:28 +02006193 }
Daniel Vetter6c49f242013-06-06 12:45:25 +02006194
Ville Syrjälä70b23a92014-04-09 13:28:22 +03006195 if (IS_CHERRYVIEW(dev))
6196 chv_crtc_clock_get(crtc, pipe_config);
6197 else if (IS_VALLEYVIEW(dev))
Jesse Barnesacbec812013-09-20 11:29:32 -07006198 vlv_crtc_clock_get(crtc, pipe_config);
6199 else
6200 i9xx_crtc_clock_get(crtc, pipe_config);
Ville Syrjälä18442d02013-09-13 16:00:08 +03006201
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01006202 return true;
6203}
6204
Paulo Zanonidde86e22012-12-01 12:04:25 -02006205static void ironlake_init_pch_refclk(struct drm_device *dev)
Jesse Barnes13d83a62011-08-03 12:59:20 -07006206{
6207 struct drm_i915_private *dev_priv = dev->dev_private;
6208 struct drm_mode_config *mode_config = &dev->mode_config;
Jesse Barnes13d83a62011-08-03 12:59:20 -07006209 struct intel_encoder *encoder;
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006210 u32 val, final;
Jesse Barnes13d83a62011-08-03 12:59:20 -07006211 bool has_lvds = false;
Keith Packard199e5d72011-09-22 12:01:57 -07006212 bool has_cpu_edp = false;
Keith Packard199e5d72011-09-22 12:01:57 -07006213 bool has_panel = false;
Keith Packard99eb6a02011-09-26 14:29:12 -07006214 bool has_ck505 = false;
6215 bool can_ssc = false;
Jesse Barnes13d83a62011-08-03 12:59:20 -07006216
6217 /* We need to take the global config into account */
Keith Packard199e5d72011-09-22 12:01:57 -07006218 list_for_each_entry(encoder, &mode_config->encoder_list,
6219 base.head) {
6220 switch (encoder->type) {
6221 case INTEL_OUTPUT_LVDS:
6222 has_panel = true;
6223 has_lvds = true;
6224 break;
6225 case INTEL_OUTPUT_EDP:
6226 has_panel = true;
Imre Deak2de69052013-05-08 13:14:04 +03006227 if (enc_to_dig_port(&encoder->base)->port == PORT_A)
Keith Packard199e5d72011-09-22 12:01:57 -07006228 has_cpu_edp = true;
6229 break;
Jesse Barnes13d83a62011-08-03 12:59:20 -07006230 }
6231 }
6232
Keith Packard99eb6a02011-09-26 14:29:12 -07006233 if (HAS_PCH_IBX(dev)) {
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03006234 has_ck505 = dev_priv->vbt.display_clock_mode;
Keith Packard99eb6a02011-09-26 14:29:12 -07006235 can_ssc = has_ck505;
6236 } else {
6237 has_ck505 = false;
6238 can_ssc = true;
6239 }
6240
Imre Deak2de69052013-05-08 13:14:04 +03006241 DRM_DEBUG_KMS("has_panel %d has_lvds %d has_ck505 %d\n",
6242 has_panel, has_lvds, has_ck505);
Jesse Barnes13d83a62011-08-03 12:59:20 -07006243
6244 /* Ironlake: try to setup display ref clock before DPLL
6245 * enabling. This is only under driver's control after
6246 * PCH B stepping, previous chipset stepping should be
6247 * ignoring this setting.
6248 */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006249 val = I915_READ(PCH_DREF_CONTROL);
Jesse Barnes13d83a62011-08-03 12:59:20 -07006250
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006251 /* As we must carefully and slowly disable/enable each source in turn,
6252 * compute the final state we want first and check if we need to
6253 * make any changes at all.
6254 */
6255 final = val;
6256 final &= ~DREF_NONSPREAD_SOURCE_MASK;
Keith Packard99eb6a02011-09-26 14:29:12 -07006257 if (has_ck505)
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006258 final |= DREF_NONSPREAD_CK505_ENABLE;
Keith Packard99eb6a02011-09-26 14:29:12 -07006259 else
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006260 final |= DREF_NONSPREAD_SOURCE_ENABLE;
6261
6262 final &= ~DREF_SSC_SOURCE_MASK;
6263 final &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
6264 final &= ~DREF_SSC1_ENABLE;
Jesse Barnes13d83a62011-08-03 12:59:20 -07006265
Keith Packard199e5d72011-09-22 12:01:57 -07006266 if (has_panel) {
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006267 final |= DREF_SSC_SOURCE_ENABLE;
6268
6269 if (intel_panel_use_ssc(dev_priv) && can_ssc)
6270 final |= DREF_SSC1_ENABLE;
6271
6272 if (has_cpu_edp) {
6273 if (intel_panel_use_ssc(dev_priv) && can_ssc)
6274 final |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD;
6275 else
6276 final |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD;
6277 } else
6278 final |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
6279 } else {
6280 final |= DREF_SSC_SOURCE_DISABLE;
6281 final |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
6282 }
6283
6284 if (final == val)
6285 return;
6286
6287 /* Always enable nonspread source */
6288 val &= ~DREF_NONSPREAD_SOURCE_MASK;
6289
6290 if (has_ck505)
6291 val |= DREF_NONSPREAD_CK505_ENABLE;
6292 else
6293 val |= DREF_NONSPREAD_SOURCE_ENABLE;
6294
6295 if (has_panel) {
6296 val &= ~DREF_SSC_SOURCE_MASK;
6297 val |= DREF_SSC_SOURCE_ENABLE;
Jesse Barnes13d83a62011-08-03 12:59:20 -07006298
Keith Packard199e5d72011-09-22 12:01:57 -07006299 /* SSC must be turned on before enabling the CPU output */
Keith Packard99eb6a02011-09-26 14:29:12 -07006300 if (intel_panel_use_ssc(dev_priv) && can_ssc) {
Keith Packard199e5d72011-09-22 12:01:57 -07006301 DRM_DEBUG_KMS("Using SSC on panel\n");
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006302 val |= DREF_SSC1_ENABLE;
Daniel Vettere77166b2012-03-30 22:14:05 +02006303 } else
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006304 val &= ~DREF_SSC1_ENABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07006305
6306 /* Get SSC going before enabling the outputs */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006307 I915_WRITE(PCH_DREF_CONTROL, val);
Keith Packard199e5d72011-09-22 12:01:57 -07006308 POSTING_READ(PCH_DREF_CONTROL);
6309 udelay(200);
6310
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006311 val &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
Jesse Barnes13d83a62011-08-03 12:59:20 -07006312
6313 /* Enable CPU source on CPU attached eDP */
Keith Packard199e5d72011-09-22 12:01:57 -07006314 if (has_cpu_edp) {
Keith Packard99eb6a02011-09-26 14:29:12 -07006315 if (intel_panel_use_ssc(dev_priv) && can_ssc) {
Keith Packard199e5d72011-09-22 12:01:57 -07006316 DRM_DEBUG_KMS("Using SSC on eDP\n");
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006317 val |= DREF_CPU_SOURCE_OUTPUT_DOWNSPREAD;
Robin Schroereba905b2014-05-18 02:24:50 +02006318 } else
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006319 val |= DREF_CPU_SOURCE_OUTPUT_NONSPREAD;
Keith Packard199e5d72011-09-22 12:01:57 -07006320 } else
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006321 val |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07006322
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006323 I915_WRITE(PCH_DREF_CONTROL, val);
Keith Packard199e5d72011-09-22 12:01:57 -07006324 POSTING_READ(PCH_DREF_CONTROL);
6325 udelay(200);
6326 } else {
6327 DRM_DEBUG_KMS("Disabling SSC entirely\n");
6328
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006329 val &= ~DREF_CPU_SOURCE_OUTPUT_MASK;
Keith Packard199e5d72011-09-22 12:01:57 -07006330
6331 /* Turn off CPU output */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006332 val |= DREF_CPU_SOURCE_OUTPUT_DISABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07006333
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006334 I915_WRITE(PCH_DREF_CONTROL, val);
Keith Packard199e5d72011-09-22 12:01:57 -07006335 POSTING_READ(PCH_DREF_CONTROL);
6336 udelay(200);
6337
6338 /* Turn off the SSC source */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006339 val &= ~DREF_SSC_SOURCE_MASK;
6340 val |= DREF_SSC_SOURCE_DISABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07006341
6342 /* Turn off SSC1 */
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006343 val &= ~DREF_SSC1_ENABLE;
Keith Packard199e5d72011-09-22 12:01:57 -07006344
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006345 I915_WRITE(PCH_DREF_CONTROL, val);
Jesse Barnes13d83a62011-08-03 12:59:20 -07006346 POSTING_READ(PCH_DREF_CONTROL);
6347 udelay(200);
6348 }
Chris Wilson74cfd7a2013-03-26 16:33:04 -07006349
6350 BUG_ON(val != final);
Jesse Barnes13d83a62011-08-03 12:59:20 -07006351}
6352
Paulo Zanonif31f2d52013-07-18 18:51:11 -03006353static void lpt_reset_fdi_mphy(struct drm_i915_private *dev_priv)
Paulo Zanonidde86e22012-12-01 12:04:25 -02006354{
Paulo Zanonif31f2d52013-07-18 18:51:11 -03006355 uint32_t tmp;
Paulo Zanonidde86e22012-12-01 12:04:25 -02006356
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006357 tmp = I915_READ(SOUTH_CHICKEN2);
6358 tmp |= FDI_MPHY_IOSFSB_RESET_CTL;
6359 I915_WRITE(SOUTH_CHICKEN2, tmp);
Paulo Zanonidde86e22012-12-01 12:04:25 -02006360
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006361 if (wait_for_atomic_us(I915_READ(SOUTH_CHICKEN2) &
6362 FDI_MPHY_IOSFSB_RESET_STATUS, 100))
6363 DRM_ERROR("FDI mPHY reset assert timeout\n");
Paulo Zanonidde86e22012-12-01 12:04:25 -02006364
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006365 tmp = I915_READ(SOUTH_CHICKEN2);
6366 tmp &= ~FDI_MPHY_IOSFSB_RESET_CTL;
6367 I915_WRITE(SOUTH_CHICKEN2, tmp);
Paulo Zanonidde86e22012-12-01 12:04:25 -02006368
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006369 if (wait_for_atomic_us((I915_READ(SOUTH_CHICKEN2) &
6370 FDI_MPHY_IOSFSB_RESET_STATUS) == 0, 100))
6371 DRM_ERROR("FDI mPHY reset de-assert timeout\n");
Paulo Zanonif31f2d52013-07-18 18:51:11 -03006372}
6373
6374/* WaMPhyProgramming:hsw */
6375static void lpt_program_fdi_mphy(struct drm_i915_private *dev_priv)
6376{
6377 uint32_t tmp;
Paulo Zanonidde86e22012-12-01 12:04:25 -02006378
6379 tmp = intel_sbi_read(dev_priv, 0x8008, SBI_MPHY);
6380 tmp &= ~(0xFF << 24);
6381 tmp |= (0x12 << 24);
6382 intel_sbi_write(dev_priv, 0x8008, tmp, SBI_MPHY);
6383
Paulo Zanonidde86e22012-12-01 12:04:25 -02006384 tmp = intel_sbi_read(dev_priv, 0x2008, SBI_MPHY);
6385 tmp |= (1 << 11);
6386 intel_sbi_write(dev_priv, 0x2008, tmp, SBI_MPHY);
6387
6388 tmp = intel_sbi_read(dev_priv, 0x2108, SBI_MPHY);
6389 tmp |= (1 << 11);
6390 intel_sbi_write(dev_priv, 0x2108, tmp, SBI_MPHY);
6391
Paulo Zanonidde86e22012-12-01 12:04:25 -02006392 tmp = intel_sbi_read(dev_priv, 0x206C, SBI_MPHY);
6393 tmp |= (1 << 24) | (1 << 21) | (1 << 18);
6394 intel_sbi_write(dev_priv, 0x206C, tmp, SBI_MPHY);
6395
6396 tmp = intel_sbi_read(dev_priv, 0x216C, SBI_MPHY);
6397 tmp |= (1 << 24) | (1 << 21) | (1 << 18);
6398 intel_sbi_write(dev_priv, 0x216C, tmp, SBI_MPHY);
6399
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006400 tmp = intel_sbi_read(dev_priv, 0x2080, SBI_MPHY);
6401 tmp &= ~(7 << 13);
6402 tmp |= (5 << 13);
6403 intel_sbi_write(dev_priv, 0x2080, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02006404
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006405 tmp = intel_sbi_read(dev_priv, 0x2180, SBI_MPHY);
6406 tmp &= ~(7 << 13);
6407 tmp |= (5 << 13);
6408 intel_sbi_write(dev_priv, 0x2180, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02006409
6410 tmp = intel_sbi_read(dev_priv, 0x208C, SBI_MPHY);
6411 tmp &= ~0xFF;
6412 tmp |= 0x1C;
6413 intel_sbi_write(dev_priv, 0x208C, tmp, SBI_MPHY);
6414
6415 tmp = intel_sbi_read(dev_priv, 0x218C, SBI_MPHY);
6416 tmp &= ~0xFF;
6417 tmp |= 0x1C;
6418 intel_sbi_write(dev_priv, 0x218C, tmp, SBI_MPHY);
6419
6420 tmp = intel_sbi_read(dev_priv, 0x2098, SBI_MPHY);
6421 tmp &= ~(0xFF << 16);
6422 tmp |= (0x1C << 16);
6423 intel_sbi_write(dev_priv, 0x2098, tmp, SBI_MPHY);
6424
6425 tmp = intel_sbi_read(dev_priv, 0x2198, SBI_MPHY);
6426 tmp &= ~(0xFF << 16);
6427 tmp |= (0x1C << 16);
6428 intel_sbi_write(dev_priv, 0x2198, tmp, SBI_MPHY);
6429
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006430 tmp = intel_sbi_read(dev_priv, 0x20C4, SBI_MPHY);
6431 tmp |= (1 << 27);
6432 intel_sbi_write(dev_priv, 0x20C4, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02006433
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006434 tmp = intel_sbi_read(dev_priv, 0x21C4, SBI_MPHY);
6435 tmp |= (1 << 27);
6436 intel_sbi_write(dev_priv, 0x21C4, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02006437
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006438 tmp = intel_sbi_read(dev_priv, 0x20EC, SBI_MPHY);
6439 tmp &= ~(0xF << 28);
6440 tmp |= (4 << 28);
6441 intel_sbi_write(dev_priv, 0x20EC, tmp, SBI_MPHY);
Paulo Zanonidde86e22012-12-01 12:04:25 -02006442
Paulo Zanoni0ff066a2013-07-12 14:19:36 -03006443 tmp = intel_sbi_read(dev_priv, 0x21EC, SBI_MPHY);
6444 tmp &= ~(0xF << 28);
6445 tmp |= (4 << 28);
6446 intel_sbi_write(dev_priv, 0x21EC, tmp, SBI_MPHY);
Paulo Zanonif31f2d52013-07-18 18:51:11 -03006447}
6448
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03006449/* Implements 3 different sequences from BSpec chapter "Display iCLK
6450 * Programming" based on the parameters passed:
6451 * - Sequence to enable CLKOUT_DP
6452 * - Sequence to enable CLKOUT_DP without spread
6453 * - Sequence to enable CLKOUT_DP for FDI usage and configure PCH FDI I/O
6454 */
6455static void lpt_enable_clkout_dp(struct drm_device *dev, bool with_spread,
6456 bool with_fdi)
Paulo Zanonif31f2d52013-07-18 18:51:11 -03006457{
6458 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03006459 uint32_t reg, tmp;
6460
6461 if (WARN(with_fdi && !with_spread, "FDI requires downspread\n"))
6462 with_spread = true;
6463 if (WARN(dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE &&
6464 with_fdi, "LP PCH doesn't have FDI\n"))
6465 with_fdi = false;
Paulo Zanonif31f2d52013-07-18 18:51:11 -03006466
6467 mutex_lock(&dev_priv->dpio_lock);
6468
6469 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
6470 tmp &= ~SBI_SSCCTL_DISABLE;
6471 tmp |= SBI_SSCCTL_PATHALT;
6472 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
6473
6474 udelay(24);
6475
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03006476 if (with_spread) {
6477 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
6478 tmp &= ~SBI_SSCCTL_PATHALT;
6479 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
Paulo Zanonif31f2d52013-07-18 18:51:11 -03006480
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03006481 if (with_fdi) {
6482 lpt_reset_fdi_mphy(dev_priv);
6483 lpt_program_fdi_mphy(dev_priv);
6484 }
6485 }
Paulo Zanonidde86e22012-12-01 12:04:25 -02006486
Paulo Zanoni2fa86a12013-07-23 11:19:24 -03006487 reg = (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) ?
6488 SBI_GEN0 : SBI_DBUFF0;
6489 tmp = intel_sbi_read(dev_priv, reg, SBI_ICLK);
6490 tmp |= SBI_GEN0_CFG_BUFFENABLE_DISABLE;
6491 intel_sbi_write(dev_priv, reg, tmp, SBI_ICLK);
Daniel Vetterc00db242013-01-22 15:33:27 +01006492
6493 mutex_unlock(&dev_priv->dpio_lock);
Paulo Zanonidde86e22012-12-01 12:04:25 -02006494}
6495
Paulo Zanoni47701c32013-07-23 11:19:25 -03006496/* Sequence to disable CLKOUT_DP */
6497static void lpt_disable_clkout_dp(struct drm_device *dev)
6498{
6499 struct drm_i915_private *dev_priv = dev->dev_private;
6500 uint32_t reg, tmp;
6501
6502 mutex_lock(&dev_priv->dpio_lock);
6503
6504 reg = (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) ?
6505 SBI_GEN0 : SBI_DBUFF0;
6506 tmp = intel_sbi_read(dev_priv, reg, SBI_ICLK);
6507 tmp &= ~SBI_GEN0_CFG_BUFFENABLE_DISABLE;
6508 intel_sbi_write(dev_priv, reg, tmp, SBI_ICLK);
6509
6510 tmp = intel_sbi_read(dev_priv, SBI_SSCCTL, SBI_ICLK);
6511 if (!(tmp & SBI_SSCCTL_DISABLE)) {
6512 if (!(tmp & SBI_SSCCTL_PATHALT)) {
6513 tmp |= SBI_SSCCTL_PATHALT;
6514 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
6515 udelay(32);
6516 }
6517 tmp |= SBI_SSCCTL_DISABLE;
6518 intel_sbi_write(dev_priv, SBI_SSCCTL, tmp, SBI_ICLK);
6519 }
6520
6521 mutex_unlock(&dev_priv->dpio_lock);
6522}
6523
Paulo Zanonibf8fa3d2013-07-12 14:19:38 -03006524static void lpt_init_pch_refclk(struct drm_device *dev)
6525{
6526 struct drm_mode_config *mode_config = &dev->mode_config;
6527 struct intel_encoder *encoder;
6528 bool has_vga = false;
6529
6530 list_for_each_entry(encoder, &mode_config->encoder_list, base.head) {
6531 switch (encoder->type) {
6532 case INTEL_OUTPUT_ANALOG:
6533 has_vga = true;
6534 break;
6535 }
6536 }
6537
Paulo Zanoni47701c32013-07-23 11:19:25 -03006538 if (has_vga)
6539 lpt_enable_clkout_dp(dev, true, true);
6540 else
6541 lpt_disable_clkout_dp(dev);
Paulo Zanonibf8fa3d2013-07-12 14:19:38 -03006542}
6543
Paulo Zanonidde86e22012-12-01 12:04:25 -02006544/*
6545 * Initialize reference clocks when the driver loads
6546 */
6547void intel_init_pch_refclk(struct drm_device *dev)
6548{
6549 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev))
6550 ironlake_init_pch_refclk(dev);
6551 else if (HAS_PCH_LPT(dev))
6552 lpt_init_pch_refclk(dev);
6553}
6554
Jesse Barnesd9d444c2011-09-02 13:03:05 -07006555static int ironlake_get_refclk(struct drm_crtc *crtc)
6556{
6557 struct drm_device *dev = crtc->dev;
6558 struct drm_i915_private *dev_priv = dev->dev_private;
6559 struct intel_encoder *encoder;
Jesse Barnesd9d444c2011-09-02 13:03:05 -07006560 int num_connectors = 0;
6561 bool is_lvds = false;
6562
Daniel Vetter6c2b7c12012-07-05 09:50:24 +02006563 for_each_encoder_on_crtc(dev, crtc, encoder) {
Jesse Barnesd9d444c2011-09-02 13:03:05 -07006564 switch (encoder->type) {
6565 case INTEL_OUTPUT_LVDS:
6566 is_lvds = true;
6567 break;
Jesse Barnesd9d444c2011-09-02 13:03:05 -07006568 }
6569 num_connectors++;
6570 }
6571
6572 if (is_lvds && intel_panel_use_ssc(dev_priv) && num_connectors < 2) {
Ville Syrjäläe91e9412013-12-09 18:54:16 +02006573 DRM_DEBUG_KMS("using SSC reference clock of %d kHz\n",
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03006574 dev_priv->vbt.lvds_ssc_freq);
Ville Syrjäläe91e9412013-12-09 18:54:16 +02006575 return dev_priv->vbt.lvds_ssc_freq;
Jesse Barnesd9d444c2011-09-02 13:03:05 -07006576 }
6577
6578 return 120000;
6579}
6580
Daniel Vetter6ff93602013-04-19 11:24:36 +02006581static void ironlake_set_pipeconf(struct drm_crtc *crtc)
Paulo Zanonic8203562012-09-12 10:06:29 -03006582{
6583 struct drm_i915_private *dev_priv = crtc->dev->dev_private;
6584 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6585 int pipe = intel_crtc->pipe;
6586 uint32_t val;
6587
Daniel Vetter78114072013-06-13 00:54:57 +02006588 val = 0;
Paulo Zanonic8203562012-09-12 10:06:29 -03006589
Daniel Vetter965e0c42013-03-27 00:44:57 +01006590 switch (intel_crtc->config.pipe_bpp) {
Paulo Zanonic8203562012-09-12 10:06:29 -03006591 case 18:
Daniel Vetterdfd07d72012-12-17 11:21:38 +01006592 val |= PIPECONF_6BPC;
Paulo Zanonic8203562012-09-12 10:06:29 -03006593 break;
6594 case 24:
Daniel Vetterdfd07d72012-12-17 11:21:38 +01006595 val |= PIPECONF_8BPC;
Paulo Zanonic8203562012-09-12 10:06:29 -03006596 break;
6597 case 30:
Daniel Vetterdfd07d72012-12-17 11:21:38 +01006598 val |= PIPECONF_10BPC;
Paulo Zanonic8203562012-09-12 10:06:29 -03006599 break;
6600 case 36:
Daniel Vetterdfd07d72012-12-17 11:21:38 +01006601 val |= PIPECONF_12BPC;
Paulo Zanonic8203562012-09-12 10:06:29 -03006602 break;
6603 default:
Paulo Zanonicc769b62012-09-20 18:36:03 -03006604 /* Case prevented by intel_choose_pipe_bpp_dither. */
6605 BUG();
Paulo Zanonic8203562012-09-12 10:06:29 -03006606 }
6607
Daniel Vetterd8b32242013-04-25 17:54:44 +02006608 if (intel_crtc->config.dither)
Paulo Zanonic8203562012-09-12 10:06:29 -03006609 val |= (PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_SP);
6610
Daniel Vetter6ff93602013-04-19 11:24:36 +02006611 if (intel_crtc->config.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
Paulo Zanonic8203562012-09-12 10:06:29 -03006612 val |= PIPECONF_INTERLACED_ILK;
6613 else
6614 val |= PIPECONF_PROGRESSIVE;
6615
Daniel Vetter50f3b012013-03-27 00:44:56 +01006616 if (intel_crtc->config.limited_color_range)
Ville Syrjälä3685a8f2013-01-17 16:31:28 +02006617 val |= PIPECONF_COLOR_RANGE_SELECT;
Ville Syrjälä3685a8f2013-01-17 16:31:28 +02006618
Paulo Zanonic8203562012-09-12 10:06:29 -03006619 I915_WRITE(PIPECONF(pipe), val);
6620 POSTING_READ(PIPECONF(pipe));
6621}
6622
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02006623/*
6624 * Set up the pipe CSC unit.
6625 *
6626 * Currently only full range RGB to limited range RGB conversion
6627 * is supported, but eventually this should handle various
6628 * RGB<->YCbCr scenarios as well.
6629 */
Daniel Vetter50f3b012013-03-27 00:44:56 +01006630static void intel_set_pipe_csc(struct drm_crtc *crtc)
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02006631{
6632 struct drm_device *dev = crtc->dev;
6633 struct drm_i915_private *dev_priv = dev->dev_private;
6634 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
6635 int pipe = intel_crtc->pipe;
6636 uint16_t coeff = 0x7800; /* 1.0 */
6637
6638 /*
6639 * TODO: Check what kind of values actually come out of the pipe
6640 * with these coeff/postoff values and adjust to get the best
6641 * accuracy. Perhaps we even need to take the bpc value into
6642 * consideration.
6643 */
6644
Daniel Vetter50f3b012013-03-27 00:44:56 +01006645 if (intel_crtc->config.limited_color_range)
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02006646 coeff = ((235 - 16) * (1 << 12) / 255) & 0xff8; /* 0.xxx... */
6647
6648 /*
6649 * GY/GU and RY/RU should be the other way around according
6650 * to BSpec, but reality doesn't agree. Just set them up in
6651 * a way that results in the correct picture.
6652 */
6653 I915_WRITE(PIPE_CSC_COEFF_RY_GY(pipe), coeff << 16);
6654 I915_WRITE(PIPE_CSC_COEFF_BY(pipe), 0);
6655
6656 I915_WRITE(PIPE_CSC_COEFF_RU_GU(pipe), coeff);
6657 I915_WRITE(PIPE_CSC_COEFF_BU(pipe), 0);
6658
6659 I915_WRITE(PIPE_CSC_COEFF_RV_GV(pipe), 0);
6660 I915_WRITE(PIPE_CSC_COEFF_BV(pipe), coeff << 16);
6661
6662 I915_WRITE(PIPE_CSC_PREOFF_HI(pipe), 0);
6663 I915_WRITE(PIPE_CSC_PREOFF_ME(pipe), 0);
6664 I915_WRITE(PIPE_CSC_PREOFF_LO(pipe), 0);
6665
6666 if (INTEL_INFO(dev)->gen > 6) {
6667 uint16_t postoff = 0;
6668
Daniel Vetter50f3b012013-03-27 00:44:56 +01006669 if (intel_crtc->config.limited_color_range)
Ville Syrjälä32cf0cb2013-11-28 22:10:38 +02006670 postoff = (16 * (1 << 12) / 255) & 0x1fff;
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02006671
6672 I915_WRITE(PIPE_CSC_POSTOFF_HI(pipe), postoff);
6673 I915_WRITE(PIPE_CSC_POSTOFF_ME(pipe), postoff);
6674 I915_WRITE(PIPE_CSC_POSTOFF_LO(pipe), postoff);
6675
6676 I915_WRITE(PIPE_CSC_MODE(pipe), 0);
6677 } else {
6678 uint32_t mode = CSC_MODE_YUV_TO_RGB;
6679
Daniel Vetter50f3b012013-03-27 00:44:56 +01006680 if (intel_crtc->config.limited_color_range)
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02006681 mode |= CSC_BLACK_SCREEN_OFFSET;
6682
6683 I915_WRITE(PIPE_CSC_MODE(pipe), mode);
6684 }
6685}
6686
Daniel Vetter6ff93602013-04-19 11:24:36 +02006687static void haswell_set_pipeconf(struct drm_crtc *crtc)
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03006688{
Paulo Zanoni756f85c2013-11-02 21:07:38 -07006689 struct drm_device *dev = crtc->dev;
6690 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03006691 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Paulo Zanoni756f85c2013-11-02 21:07:38 -07006692 enum pipe pipe = intel_crtc->pipe;
Daniel Vetter3b117c82013-04-17 20:15:07 +02006693 enum transcoder cpu_transcoder = intel_crtc->config.cpu_transcoder;
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03006694 uint32_t val;
6695
Daniel Vetter3eff4fa2013-06-13 00:54:59 +02006696 val = 0;
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03006697
Paulo Zanoni756f85c2013-11-02 21:07:38 -07006698 if (IS_HASWELL(dev) && intel_crtc->config.dither)
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03006699 val |= (PIPECONF_DITHER_EN | PIPECONF_DITHER_TYPE_SP);
6700
Daniel Vetter6ff93602013-04-19 11:24:36 +02006701 if (intel_crtc->config.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03006702 val |= PIPECONF_INTERLACED_ILK;
6703 else
6704 val |= PIPECONF_PROGRESSIVE;
6705
Paulo Zanoni702e7a52012-10-23 18:29:59 -02006706 I915_WRITE(PIPECONF(cpu_transcoder), val);
6707 POSTING_READ(PIPECONF(cpu_transcoder));
Daniel Vetter3eff4fa2013-06-13 00:54:59 +02006708
6709 I915_WRITE(GAMMA_MODE(intel_crtc->pipe), GAMMA_MODE_MODE_8BIT);
6710 POSTING_READ(GAMMA_MODE(intel_crtc->pipe));
Paulo Zanoni756f85c2013-11-02 21:07:38 -07006711
6712 if (IS_BROADWELL(dev)) {
6713 val = 0;
6714
6715 switch (intel_crtc->config.pipe_bpp) {
6716 case 18:
6717 val |= PIPEMISC_DITHER_6_BPC;
6718 break;
6719 case 24:
6720 val |= PIPEMISC_DITHER_8_BPC;
6721 break;
6722 case 30:
6723 val |= PIPEMISC_DITHER_10_BPC;
6724 break;
6725 case 36:
6726 val |= PIPEMISC_DITHER_12_BPC;
6727 break;
6728 default:
6729 /* Case prevented by pipe_config_set_bpp. */
6730 BUG();
6731 }
6732
6733 if (intel_crtc->config.dither)
6734 val |= PIPEMISC_DITHER_ENABLE | PIPEMISC_DITHER_TYPE_SP;
6735
6736 I915_WRITE(PIPEMISC(pipe), val);
6737 }
Paulo Zanoniee2b0b32012-10-05 12:05:57 -03006738}
6739
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03006740static bool ironlake_compute_clocks(struct drm_crtc *crtc,
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03006741 intel_clock_t *clock,
6742 bool *has_reduced_clock,
6743 intel_clock_t *reduced_clock)
6744{
6745 struct drm_device *dev = crtc->dev;
6746 struct drm_i915_private *dev_priv = dev->dev_private;
6747 struct intel_encoder *intel_encoder;
6748 int refclk;
6749 const intel_limit_t *limit;
Daniel Vettera16af722013-04-30 14:01:44 +02006750 bool ret, is_lvds = false;
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03006751
6752 for_each_encoder_on_crtc(dev, crtc, intel_encoder) {
6753 switch (intel_encoder->type) {
6754 case INTEL_OUTPUT_LVDS:
6755 is_lvds = true;
6756 break;
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03006757 }
6758 }
6759
6760 refclk = ironlake_get_refclk(crtc);
6761
6762 /*
6763 * Returns a set of divisors for the desired target clock with the given
6764 * refclk, or FALSE. The returned values represent the clock equation:
6765 * reflck * (5 * (m1 + 2) + (m2 + 2)) / (n + 2) / p1 / p2.
6766 */
6767 limit = intel_limit(crtc, refclk);
Daniel Vetterff9a6752013-06-01 17:16:21 +02006768 ret = dev_priv->display.find_dpll(limit, crtc,
6769 to_intel_crtc(crtc)->config.port_clock,
Daniel Vetteree9300b2013-06-03 22:40:22 +02006770 refclk, NULL, clock);
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03006771 if (!ret)
6772 return false;
6773
6774 if (is_lvds && dev_priv->lvds_downclock_avail) {
6775 /*
6776 * Ensure we match the reduced clock's P to the target clock.
6777 * If the clocks don't match, we can't switch the display clock
6778 * by using the FP0/FP1. In such case we will disable the LVDS
6779 * downclock feature.
6780 */
Daniel Vetteree9300b2013-06-03 22:40:22 +02006781 *has_reduced_clock =
6782 dev_priv->display.find_dpll(limit, crtc,
6783 dev_priv->lvds_downclock,
6784 refclk, clock,
6785 reduced_clock);
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03006786 }
6787
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03006788 return true;
6789}
6790
Paulo Zanonid4b19312012-11-29 11:29:32 -02006791int ironlake_get_lanes_required(int target_clock, int link_bw, int bpp)
6792{
6793 /*
6794 * Account for spread spectrum to avoid
6795 * oversubscribing the link. Max center spread
6796 * is 2.5%; use 5% for safety's sake.
6797 */
6798 u32 bps = target_clock * bpp * 21 / 20;
Ville Syrjälä619d4d02014-02-27 14:23:14 +02006799 return DIV_ROUND_UP(bps, link_bw * 8);
Paulo Zanonid4b19312012-11-29 11:29:32 -02006800}
6801
Daniel Vetter7429e9d2013-04-20 17:19:46 +02006802static bool ironlake_needs_fb_cb_tune(struct dpll *dpll, int factor)
Daniel Vetter6cf86a52013-04-02 23:38:10 +02006803{
Daniel Vetter7429e9d2013-04-20 17:19:46 +02006804 return i9xx_dpll_compute_m(dpll) < factor * dpll->n;
Paulo Zanonif48d8f22012-09-20 18:36:04 -03006805}
6806
Paulo Zanonide13a2e2012-09-20 18:36:05 -03006807static uint32_t ironlake_compute_dpll(struct intel_crtc *intel_crtc,
Daniel Vetter7429e9d2013-04-20 17:19:46 +02006808 u32 *fp,
Daniel Vetter9a7c7892013-04-04 22:20:34 +02006809 intel_clock_t *reduced_clock, u32 *fp2)
Paulo Zanonide13a2e2012-09-20 18:36:05 -03006810{
6811 struct drm_crtc *crtc = &intel_crtc->base;
6812 struct drm_device *dev = crtc->dev;
6813 struct drm_i915_private *dev_priv = dev->dev_private;
6814 struct intel_encoder *intel_encoder;
6815 uint32_t dpll;
Daniel Vetter6cc5f342013-03-27 00:44:53 +01006816 int factor, num_connectors = 0;
Daniel Vetter09ede542013-04-30 14:01:45 +02006817 bool is_lvds = false, is_sdvo = false;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03006818
6819 for_each_encoder_on_crtc(dev, crtc, intel_encoder) {
6820 switch (intel_encoder->type) {
6821 case INTEL_OUTPUT_LVDS:
6822 is_lvds = true;
6823 break;
6824 case INTEL_OUTPUT_SDVO:
6825 case INTEL_OUTPUT_HDMI:
6826 is_sdvo = true;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03006827 break;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03006828 }
6829
6830 num_connectors++;
6831 }
Jesse Barnes79e53942008-11-07 14:24:08 -08006832
Chris Wilsonc1858122010-12-03 21:35:48 +00006833 /* Enable autotuning of the PLL clock (if permissible) */
Eric Anholt8febb292011-03-30 13:01:07 -07006834 factor = 21;
6835 if (is_lvds) {
6836 if ((intel_panel_use_ssc(dev_priv) &&
Ville Syrjäläe91e9412013-12-09 18:54:16 +02006837 dev_priv->vbt.lvds_ssc_freq == 100000) ||
Daniel Vetterf0b44052013-04-04 22:20:33 +02006838 (HAS_PCH_IBX(dev) && intel_is_dual_link_lvds(dev)))
Eric Anholt8febb292011-03-30 13:01:07 -07006839 factor = 25;
Daniel Vetter09ede542013-04-30 14:01:45 +02006840 } else if (intel_crtc->config.sdvo_tv_clock)
Eric Anholt8febb292011-03-30 13:01:07 -07006841 factor = 20;
Chris Wilsonc1858122010-12-03 21:35:48 +00006842
Daniel Vetter7429e9d2013-04-20 17:19:46 +02006843 if (ironlake_needs_fb_cb_tune(&intel_crtc->config.dpll, factor))
Daniel Vetter7d0ac5b2013-04-04 22:20:32 +02006844 *fp |= FP_CB_TUNE;
Chris Wilsonc1858122010-12-03 21:35:48 +00006845
Daniel Vetter9a7c7892013-04-04 22:20:34 +02006846 if (fp2 && (reduced_clock->m < factor * reduced_clock->n))
6847 *fp2 |= FP_CB_TUNE;
6848
Chris Wilson5eddb702010-09-11 13:48:45 +01006849 dpll = 0;
Zhenyu Wang2c072452009-06-05 15:38:42 +08006850
Eric Anholta07d6782011-03-30 13:01:08 -07006851 if (is_lvds)
6852 dpll |= DPLLB_MODE_LVDS;
6853 else
6854 dpll |= DPLLB_MODE_DAC_SERIAL;
Daniel Vetter198a037f2013-04-19 11:14:37 +02006855
Daniel Vetteref1b4602013-06-01 17:17:04 +02006856 dpll |= (intel_crtc->config.pixel_multiplier - 1)
6857 << PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT;
Daniel Vetter198a037f2013-04-19 11:14:37 +02006858
6859 if (is_sdvo)
Daniel Vetter4a33e482013-07-06 12:52:05 +02006860 dpll |= DPLL_SDVO_HIGH_SPEED;
Daniel Vetter9566e9a2013-04-19 11:14:36 +02006861 if (intel_crtc->config.has_dp_encoder)
Daniel Vetter4a33e482013-07-06 12:52:05 +02006862 dpll |= DPLL_SDVO_HIGH_SPEED;
Jesse Barnes79e53942008-11-07 14:24:08 -08006863
Eric Anholta07d6782011-03-30 13:01:08 -07006864 /* compute bitmask from p1 value */
Daniel Vetter7429e9d2013-04-20 17:19:46 +02006865 dpll |= (1 << (intel_crtc->config.dpll.p1 - 1)) << DPLL_FPA01_P1_POST_DIV_SHIFT;
Eric Anholta07d6782011-03-30 13:01:08 -07006866 /* also FPA1 */
Daniel Vetter7429e9d2013-04-20 17:19:46 +02006867 dpll |= (1 << (intel_crtc->config.dpll.p1 - 1)) << DPLL_FPA1_P1_POST_DIV_SHIFT;
Eric Anholta07d6782011-03-30 13:01:08 -07006868
Daniel Vetter7429e9d2013-04-20 17:19:46 +02006869 switch (intel_crtc->config.dpll.p2) {
Eric Anholta07d6782011-03-30 13:01:08 -07006870 case 5:
6871 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_5;
6872 break;
6873 case 7:
6874 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_7;
6875 break;
6876 case 10:
6877 dpll |= DPLL_DAC_SERIAL_P2_CLOCK_DIV_10;
6878 break;
6879 case 14:
6880 dpll |= DPLLB_LVDS_P2_CLOCK_DIV_14;
6881 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08006882 }
6883
Daniel Vetterb4c09f32013-04-30 14:01:42 +02006884 if (is_lvds && intel_panel_use_ssc(dev_priv) && num_connectors < 2)
Kristian Høgsberg43565a02009-02-13 20:56:52 -05006885 dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN;
Jesse Barnes79e53942008-11-07 14:24:08 -08006886 else
6887 dpll |= PLL_REF_INPUT_DREFCLK;
6888
Daniel Vetter959e16d2013-06-05 13:34:21 +02006889 return dpll | DPLL_VCO_ENABLE;
Paulo Zanonide13a2e2012-09-20 18:36:05 -03006890}
6891
Jesse Barnes79e53942008-11-07 14:24:08 -08006892static int ironlake_crtc_mode_set(struct drm_crtc *crtc,
Jesse Barnes79e53942008-11-07 14:24:08 -08006893 int x, int y,
Daniel Vetter94352cf2012-07-05 22:51:56 +02006894 struct drm_framebuffer *fb)
Jesse Barnes79e53942008-11-07 14:24:08 -08006895{
6896 struct drm_device *dev = crtc->dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08006897 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03006898 int num_connectors = 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08006899 intel_clock_t clock, reduced_clock;
Daniel Vettercbbab5b2013-04-19 11:14:31 +02006900 u32 dpll = 0, fp = 0, fp2 = 0;
Paulo Zanonie2f12b02012-09-20 18:36:06 -03006901 bool ok, has_reduced_clock = false;
Daniel Vetter8b470472013-03-28 10:41:59 +01006902 bool is_lvds = false;
Paulo Zanonif48d8f22012-09-20 18:36:04 -03006903 struct intel_encoder *encoder;
Daniel Vettere2b78262013-06-07 23:10:03 +02006904 struct intel_shared_dpll *pll;
Jesse Barnes79e53942008-11-07 14:24:08 -08006905
6906 for_each_encoder_on_crtc(dev, crtc, encoder) {
6907 switch (encoder->type) {
6908 case INTEL_OUTPUT_LVDS:
6909 is_lvds = true;
6910 break;
Jesse Barnes79e53942008-11-07 14:24:08 -08006911 }
6912
6913 num_connectors++;
6914 }
6915
Paulo Zanoni5dc52982012-10-05 12:05:56 -03006916 WARN(!(HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev)),
6917 "Unexpected PCH type %d\n", INTEL_PCH_TYPE(dev));
6918
Daniel Vetterff9a6752013-06-01 17:16:21 +02006919 ok = ironlake_compute_clocks(crtc, &clock,
Paulo Zanoni6591c6e2012-09-12 10:06:34 -03006920 &has_reduced_clock, &reduced_clock);
Daniel Vetteree9300b2013-06-03 22:40:22 +02006921 if (!ok && !intel_crtc->config.clock_set) {
Jesse Barnes79e53942008-11-07 14:24:08 -08006922 DRM_ERROR("Couldn't find PLL settings for mode!\n");
6923 return -EINVAL;
6924 }
Daniel Vetterf47709a2013-03-28 10:42:02 +01006925 /* Compat-code for transition, will disappear. */
6926 if (!intel_crtc->config.clock_set) {
6927 intel_crtc->config.dpll.n = clock.n;
6928 intel_crtc->config.dpll.m1 = clock.m1;
6929 intel_crtc->config.dpll.m2 = clock.m2;
6930 intel_crtc->config.dpll.p1 = clock.p1;
6931 intel_crtc->config.dpll.p2 = clock.p2;
6932 }
Jesse Barnes79e53942008-11-07 14:24:08 -08006933
Paulo Zanoni5dc52982012-10-05 12:05:56 -03006934 /* CPU eDP is the only output that doesn't need a PCH PLL of its own. */
Daniel Vetter8b470472013-03-28 10:41:59 +01006935 if (intel_crtc->config.has_pch_encoder) {
Daniel Vetter7429e9d2013-04-20 17:19:46 +02006936 fp = i9xx_dpll_compute_fp(&intel_crtc->config.dpll);
Daniel Vettercbbab5b2013-04-19 11:14:31 +02006937 if (has_reduced_clock)
Daniel Vetter7429e9d2013-04-20 17:19:46 +02006938 fp2 = i9xx_dpll_compute_fp(&reduced_clock);
Daniel Vettercbbab5b2013-04-19 11:14:31 +02006939
Daniel Vetter7429e9d2013-04-20 17:19:46 +02006940 dpll = ironlake_compute_dpll(intel_crtc,
Daniel Vettercbbab5b2013-04-19 11:14:31 +02006941 &fp, &reduced_clock,
6942 has_reduced_clock ? &fp2 : NULL);
6943
Daniel Vetter959e16d2013-06-05 13:34:21 +02006944 intel_crtc->config.dpll_hw_state.dpll = dpll;
Daniel Vetter66e985c2013-06-05 13:34:20 +02006945 intel_crtc->config.dpll_hw_state.fp0 = fp;
6946 if (has_reduced_clock)
6947 intel_crtc->config.dpll_hw_state.fp1 = fp2;
6948 else
6949 intel_crtc->config.dpll_hw_state.fp1 = fp;
6950
Daniel Vetterb89a1d32013-06-05 13:34:24 +02006951 pll = intel_get_shared_dpll(intel_crtc);
Jesse Barnesee7b9f92012-04-20 17:11:53 +01006952 if (pll == NULL) {
Ville Syrjälä84f44ce2013-04-17 17:48:49 +03006953 DRM_DEBUG_DRIVER("failed to find PLL for pipe %c\n",
Daniel Vetter29407aa2014-04-24 23:55:08 +02006954 pipe_name(intel_crtc->pipe));
Jesse Barnes4b645f12011-10-12 09:51:31 -07006955 return -EINVAL;
6956 }
Jesse Barnesee7b9f92012-04-20 17:11:53 +01006957 } else
Daniel Vettere72f9fb2013-06-05 13:34:06 +02006958 intel_put_shared_dpll(intel_crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08006959
Jani Nikulad330a952014-01-21 11:24:25 +02006960 if (is_lvds && has_reduced_clock && i915.powersave)
Daniel Vetterbcd644e2013-06-05 13:34:22 +02006961 intel_crtc->lowfreq_avail = true;
6962 else
6963 intel_crtc->lowfreq_avail = false;
Daniel Vettere2b78262013-06-07 23:10:03 +02006964
Daniel Vetterc8f7a0d2014-04-24 23:55:04 +02006965 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08006966}
6967
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03006968static void intel_pch_transcoder_get_m_n(struct intel_crtc *crtc,
6969 struct intel_link_m_n *m_n)
Daniel Vetter72419202013-04-04 13:28:53 +02006970{
6971 struct drm_device *dev = crtc->base.dev;
6972 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03006973 enum pipe pipe = crtc->pipe;
Daniel Vetter72419202013-04-04 13:28:53 +02006974
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03006975 m_n->link_m = I915_READ(PCH_TRANS_LINK_M1(pipe));
6976 m_n->link_n = I915_READ(PCH_TRANS_LINK_N1(pipe));
6977 m_n->gmch_m = I915_READ(PCH_TRANS_DATA_M1(pipe))
6978 & ~TU_SIZE_MASK;
6979 m_n->gmch_n = I915_READ(PCH_TRANS_DATA_N1(pipe));
6980 m_n->tu = ((I915_READ(PCH_TRANS_DATA_M1(pipe))
6981 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
6982}
6983
6984static void intel_cpu_transcoder_get_m_n(struct intel_crtc *crtc,
6985 enum transcoder transcoder,
6986 struct intel_link_m_n *m_n)
6987{
6988 struct drm_device *dev = crtc->base.dev;
6989 struct drm_i915_private *dev_priv = dev->dev_private;
6990 enum pipe pipe = crtc->pipe;
6991
6992 if (INTEL_INFO(dev)->gen >= 5) {
6993 m_n->link_m = I915_READ(PIPE_LINK_M1(transcoder));
6994 m_n->link_n = I915_READ(PIPE_LINK_N1(transcoder));
6995 m_n->gmch_m = I915_READ(PIPE_DATA_M1(transcoder))
6996 & ~TU_SIZE_MASK;
6997 m_n->gmch_n = I915_READ(PIPE_DATA_N1(transcoder));
6998 m_n->tu = ((I915_READ(PIPE_DATA_M1(transcoder))
6999 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
7000 } else {
7001 m_n->link_m = I915_READ(PIPE_LINK_M_G4X(pipe));
7002 m_n->link_n = I915_READ(PIPE_LINK_N_G4X(pipe));
7003 m_n->gmch_m = I915_READ(PIPE_DATA_M_G4X(pipe))
7004 & ~TU_SIZE_MASK;
7005 m_n->gmch_n = I915_READ(PIPE_DATA_N_G4X(pipe));
7006 m_n->tu = ((I915_READ(PIPE_DATA_M_G4X(pipe))
7007 & TU_SIZE_MASK) >> TU_SIZE_SHIFT) + 1;
7008 }
7009}
7010
7011void intel_dp_get_m_n(struct intel_crtc *crtc,
7012 struct intel_crtc_config *pipe_config)
7013{
7014 if (crtc->config.has_pch_encoder)
7015 intel_pch_transcoder_get_m_n(crtc, &pipe_config->dp_m_n);
7016 else
7017 intel_cpu_transcoder_get_m_n(crtc, pipe_config->cpu_transcoder,
7018 &pipe_config->dp_m_n);
7019}
7020
Daniel Vetter72419202013-04-04 13:28:53 +02007021static void ironlake_get_fdi_m_n_config(struct intel_crtc *crtc,
7022 struct intel_crtc_config *pipe_config)
7023{
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03007024 intel_cpu_transcoder_get_m_n(crtc, pipe_config->cpu_transcoder,
7025 &pipe_config->fdi_m_n);
Daniel Vetter72419202013-04-04 13:28:53 +02007026}
7027
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007028static void ironlake_get_pfit_config(struct intel_crtc *crtc,
7029 struct intel_crtc_config *pipe_config)
7030{
7031 struct drm_device *dev = crtc->base.dev;
7032 struct drm_i915_private *dev_priv = dev->dev_private;
7033 uint32_t tmp;
7034
7035 tmp = I915_READ(PF_CTL(crtc->pipe));
7036
7037 if (tmp & PF_ENABLE) {
Chris Wilsonfd4daa92013-08-27 17:04:17 +01007038 pipe_config->pch_pfit.enabled = true;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007039 pipe_config->pch_pfit.pos = I915_READ(PF_WIN_POS(crtc->pipe));
7040 pipe_config->pch_pfit.size = I915_READ(PF_WIN_SZ(crtc->pipe));
Daniel Vettercb8b2a32013-06-01 17:16:23 +02007041
7042 /* We currently do not free assignements of panel fitters on
7043 * ivb/hsw (since we don't use the higher upscaling modes which
7044 * differentiates them) so just WARN about this case for now. */
7045 if (IS_GEN7(dev)) {
7046 WARN_ON((tmp & PF_PIPE_SEL_MASK_IVB) !=
7047 PF_PIPE_SEL_IVB(crtc->pipe));
7048 }
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007049 }
Jesse Barnes79e53942008-11-07 14:24:08 -08007050}
7051
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007052static void ironlake_get_plane_config(struct intel_crtc *crtc,
7053 struct intel_plane_config *plane_config)
7054{
7055 struct drm_device *dev = crtc->base.dev;
7056 struct drm_i915_private *dev_priv = dev->dev_private;
7057 u32 val, base, offset;
7058 int pipe = crtc->pipe, plane = crtc->plane;
7059 int fourcc, pixel_format;
7060 int aligned_height;
7061
Dave Airlie66e514c2014-04-03 07:51:54 +10007062 crtc->base.primary->fb = kzalloc(sizeof(struct intel_framebuffer), GFP_KERNEL);
7063 if (!crtc->base.primary->fb) {
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007064 DRM_DEBUG_KMS("failed to alloc fb\n");
7065 return;
7066 }
7067
7068 val = I915_READ(DSPCNTR(plane));
7069
7070 if (INTEL_INFO(dev)->gen >= 4)
7071 if (val & DISPPLANE_TILED)
7072 plane_config->tiled = true;
7073
7074 pixel_format = val & DISPPLANE_PIXFORMAT_MASK;
7075 fourcc = intel_format_to_fourcc(pixel_format);
Dave Airlie66e514c2014-04-03 07:51:54 +10007076 crtc->base.primary->fb->pixel_format = fourcc;
7077 crtc->base.primary->fb->bits_per_pixel =
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007078 drm_format_plane_cpp(fourcc, 0) * 8;
7079
7080 base = I915_READ(DSPSURF(plane)) & 0xfffff000;
7081 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
7082 offset = I915_READ(DSPOFFSET(plane));
7083 } else {
7084 if (plane_config->tiled)
7085 offset = I915_READ(DSPTILEOFF(plane));
7086 else
7087 offset = I915_READ(DSPLINOFF(plane));
7088 }
7089 plane_config->base = base;
7090
7091 val = I915_READ(PIPESRC(pipe));
Dave Airlie66e514c2014-04-03 07:51:54 +10007092 crtc->base.primary->fb->width = ((val >> 16) & 0xfff) + 1;
7093 crtc->base.primary->fb->height = ((val >> 0) & 0xfff) + 1;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007094
7095 val = I915_READ(DSPSTRIDE(pipe));
Dave Airlie66e514c2014-04-03 07:51:54 +10007096 crtc->base.primary->fb->pitches[0] = val & 0xffffff80;
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007097
Dave Airlie66e514c2014-04-03 07:51:54 +10007098 aligned_height = intel_align_height(dev, crtc->base.primary->fb->height,
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007099 plane_config->tiled);
7100
Dave Airlie66e514c2014-04-03 07:51:54 +10007101 plane_config->size = ALIGN(crtc->base.primary->fb->pitches[0] *
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007102 aligned_height, PAGE_SIZE);
7103
7104 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 +10007105 pipe, plane, crtc->base.primary->fb->width,
7106 crtc->base.primary->fb->height,
7107 crtc->base.primary->fb->bits_per_pixel, base,
7108 crtc->base.primary->fb->pitches[0],
Jesse Barnes4c6baa52014-03-07 08:57:50 -08007109 plane_config->size);
7110}
7111
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01007112static bool ironlake_get_pipe_config(struct intel_crtc *crtc,
7113 struct intel_crtc_config *pipe_config)
7114{
7115 struct drm_device *dev = crtc->base.dev;
7116 struct drm_i915_private *dev_priv = dev->dev_private;
7117 uint32_t tmp;
7118
Daniel Vettere143a212013-07-04 12:01:15 +02007119 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +02007120 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
Daniel Vettereccb1402013-05-22 00:50:22 +02007121
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01007122 tmp = I915_READ(PIPECONF(crtc->pipe));
7123 if (!(tmp & PIPECONF_ENABLE))
7124 return false;
7125
Ville Syrjälä42571ae2013-09-06 23:29:00 +03007126 switch (tmp & PIPECONF_BPC_MASK) {
7127 case PIPECONF_6BPC:
7128 pipe_config->pipe_bpp = 18;
7129 break;
7130 case PIPECONF_8BPC:
7131 pipe_config->pipe_bpp = 24;
7132 break;
7133 case PIPECONF_10BPC:
7134 pipe_config->pipe_bpp = 30;
7135 break;
7136 case PIPECONF_12BPC:
7137 pipe_config->pipe_bpp = 36;
7138 break;
7139 default:
7140 break;
7141 }
7142
Daniel Vetterb5a9fa02014-04-24 23:54:49 +02007143 if (tmp & PIPECONF_COLOR_RANGE_SELECT)
7144 pipe_config->limited_color_range = true;
7145
Daniel Vetterab9412b2013-05-03 11:49:46 +02007146 if (I915_READ(PCH_TRANSCONF(crtc->pipe)) & TRANS_ENABLE) {
Daniel Vetter66e985c2013-06-05 13:34:20 +02007147 struct intel_shared_dpll *pll;
7148
Daniel Vetter88adfff2013-03-28 10:42:01 +01007149 pipe_config->has_pch_encoder = true;
7150
Daniel Vetter627eb5a2013-04-29 19:33:42 +02007151 tmp = I915_READ(FDI_RX_CTL(crtc->pipe));
7152 pipe_config->fdi_lanes = ((FDI_DP_PORT_WIDTH_MASK & tmp) >>
7153 FDI_DP_PORT_WIDTH_SHIFT) + 1;
Daniel Vetter72419202013-04-04 13:28:53 +02007154
7155 ironlake_get_fdi_m_n_config(crtc, pipe_config);
Daniel Vetter6c49f242013-06-06 12:45:25 +02007156
Daniel Vetterc0d43d62013-06-07 23:11:08 +02007157 if (HAS_PCH_IBX(dev_priv->dev)) {
Daniel Vetterd94ab062013-07-04 12:01:16 +02007158 pipe_config->shared_dpll =
7159 (enum intel_dpll_id) crtc->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +02007160 } else {
7161 tmp = I915_READ(PCH_DPLL_SEL);
7162 if (tmp & TRANS_DPLLB_SEL(crtc->pipe))
7163 pipe_config->shared_dpll = DPLL_ID_PCH_PLL_B;
7164 else
7165 pipe_config->shared_dpll = DPLL_ID_PCH_PLL_A;
7166 }
Daniel Vetter66e985c2013-06-05 13:34:20 +02007167
7168 pll = &dev_priv->shared_dplls[pipe_config->shared_dpll];
7169
7170 WARN_ON(!pll->get_hw_state(dev_priv, pll,
7171 &pipe_config->dpll_hw_state));
Daniel Vetterc93f54c2013-06-27 19:47:19 +02007172
7173 tmp = pipe_config->dpll_hw_state.dpll;
7174 pipe_config->pixel_multiplier =
7175 ((tmp & PLL_REF_SDVO_HDMI_MULTIPLIER_MASK)
7176 >> PLL_REF_SDVO_HDMI_MULTIPLIER_SHIFT) + 1;
Ville Syrjälä18442d02013-09-13 16:00:08 +03007177
7178 ironlake_pch_clock_get(crtc, pipe_config);
Daniel Vetter6c49f242013-06-06 12:45:25 +02007179 } else {
7180 pipe_config->pixel_multiplier = 1;
Daniel Vetter627eb5a2013-04-29 19:33:42 +02007181 }
7182
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02007183 intel_get_pipe_timings(crtc, pipe_config);
7184
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007185 ironlake_get_pfit_config(crtc, pipe_config);
7186
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01007187 return true;
7188}
7189
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007190static void assert_can_disable_lcpll(struct drm_i915_private *dev_priv)
7191{
7192 struct drm_device *dev = dev_priv->dev;
7193 struct intel_ddi_plls *plls = &dev_priv->ddi_plls;
7194 struct intel_crtc *crtc;
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007195
Damien Lespiaud3fcc802014-05-13 23:32:22 +01007196 for_each_intel_crtc(dev, crtc)
Paulo Zanoni798183c2013-12-06 20:29:01 -02007197 WARN(crtc->active, "CRTC for pipe %c enabled\n",
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007198 pipe_name(crtc->pipe));
7199
7200 WARN(I915_READ(HSW_PWR_WELL_DRIVER), "Power well on\n");
7201 WARN(plls->spll_refcount, "SPLL enabled\n");
7202 WARN(plls->wrpll1_refcount, "WRPLL1 enabled\n");
7203 WARN(plls->wrpll2_refcount, "WRPLL2 enabled\n");
7204 WARN(I915_READ(PCH_PP_STATUS) & PP_ON, "Panel power on\n");
7205 WARN(I915_READ(BLC_PWM_CPU_CTL2) & BLM_PWM_ENABLE,
7206 "CPU PWM1 enabled\n");
7207 WARN(I915_READ(HSW_BLC_PWM2_CTL) & BLM_PWM_ENABLE,
7208 "CPU PWM2 enabled\n");
7209 WARN(I915_READ(BLC_PWM_PCH_CTL1) & BLM_PCH_PWM_ENABLE,
7210 "PCH PWM1 enabled\n");
7211 WARN(I915_READ(UTIL_PIN_CTL) & UTIL_PIN_ENABLE,
7212 "Utility pin enabled\n");
7213 WARN(I915_READ(PCH_GTC_CTL) & PCH_GTC_ENABLE, "PCH GTC enabled\n");
7214
Paulo Zanoni9926ada2014-04-01 19:39:47 -03007215 /*
7216 * In theory we can still leave IRQs enabled, as long as only the HPD
7217 * interrupts remain enabled. We used to check for that, but since it's
7218 * gen-specific and since we only disable LCPLL after we fully disable
7219 * the interrupts, the check below should be enough.
7220 */
7221 WARN(!dev_priv->pm.irqs_disabled, "IRQs enabled\n");
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007222}
7223
Paulo Zanoni3c4c9b82014-03-07 20:12:36 -03007224static void hsw_write_dcomp(struct drm_i915_private *dev_priv, uint32_t val)
7225{
7226 struct drm_device *dev = dev_priv->dev;
7227
7228 if (IS_HASWELL(dev)) {
7229 mutex_lock(&dev_priv->rps.hw_lock);
7230 if (sandybridge_pcode_write(dev_priv, GEN6_PCODE_WRITE_D_COMP,
7231 val))
7232 DRM_ERROR("Failed to disable D_COMP\n");
7233 mutex_unlock(&dev_priv->rps.hw_lock);
7234 } else {
7235 I915_WRITE(D_COMP, val);
7236 }
7237 POSTING_READ(D_COMP);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007238}
7239
7240/*
7241 * This function implements pieces of two sequences from BSpec:
7242 * - Sequence for display software to disable LCPLL
7243 * - Sequence for display software to allow package C8+
7244 * The steps implemented here are just the steps that actually touch the LCPLL
7245 * register. Callers should take care of disabling all the display engine
7246 * functions, doing the mode unset, fixing interrupts, etc.
7247 */
Paulo Zanoni6ff58d52013-09-24 13:52:57 -03007248static void hsw_disable_lcpll(struct drm_i915_private *dev_priv,
7249 bool switch_to_fclk, bool allow_power_down)
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007250{
7251 uint32_t val;
7252
7253 assert_can_disable_lcpll(dev_priv);
7254
7255 val = I915_READ(LCPLL_CTL);
7256
7257 if (switch_to_fclk) {
7258 val |= LCPLL_CD_SOURCE_FCLK;
7259 I915_WRITE(LCPLL_CTL, val);
7260
7261 if (wait_for_atomic_us(I915_READ(LCPLL_CTL) &
7262 LCPLL_CD_SOURCE_FCLK_DONE, 1))
7263 DRM_ERROR("Switching to FCLK failed\n");
7264
7265 val = I915_READ(LCPLL_CTL);
7266 }
7267
7268 val |= LCPLL_PLL_DISABLE;
7269 I915_WRITE(LCPLL_CTL, val);
7270 POSTING_READ(LCPLL_CTL);
7271
7272 if (wait_for((I915_READ(LCPLL_CTL) & LCPLL_PLL_LOCK) == 0, 1))
7273 DRM_ERROR("LCPLL still locked\n");
7274
7275 val = I915_READ(D_COMP);
7276 val |= D_COMP_COMP_DISABLE;
Paulo Zanoni3c4c9b82014-03-07 20:12:36 -03007277 hsw_write_dcomp(dev_priv, val);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007278 ndelay(100);
7279
7280 if (wait_for((I915_READ(D_COMP) & D_COMP_RCOMP_IN_PROGRESS) == 0, 1))
7281 DRM_ERROR("D_COMP RCOMP still in progress\n");
7282
7283 if (allow_power_down) {
7284 val = I915_READ(LCPLL_CTL);
7285 val |= LCPLL_POWER_DOWN_ALLOW;
7286 I915_WRITE(LCPLL_CTL, val);
7287 POSTING_READ(LCPLL_CTL);
7288 }
7289}
7290
7291/*
7292 * Fully restores LCPLL, disallowing power down and switching back to LCPLL
7293 * source.
7294 */
Paulo Zanoni6ff58d52013-09-24 13:52:57 -03007295static void hsw_restore_lcpll(struct drm_i915_private *dev_priv)
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007296{
7297 uint32_t val;
Paulo Zanonia8a8bd52014-03-07 20:08:05 -03007298 unsigned long irqflags;
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007299
7300 val = I915_READ(LCPLL_CTL);
7301
7302 if ((val & (LCPLL_PLL_LOCK | LCPLL_PLL_DISABLE | LCPLL_CD_SOURCE_FCLK |
7303 LCPLL_POWER_DOWN_ALLOW)) == LCPLL_PLL_LOCK)
7304 return;
7305
Paulo Zanonia8a8bd52014-03-07 20:08:05 -03007306 /*
7307 * Make sure we're not on PC8 state before disabling PC8, otherwise
7308 * we'll hang the machine. To prevent PC8 state, just enable force_wake.
7309 *
7310 * The other problem is that hsw_restore_lcpll() is called as part of
7311 * the runtime PM resume sequence, so we can't just call
7312 * gen6_gt_force_wake_get() because that function calls
7313 * intel_runtime_pm_get(), and we can't change the runtime PM refcount
7314 * while we are on the resume sequence. So to solve this problem we have
7315 * to call special forcewake code that doesn't touch runtime PM and
7316 * doesn't enable the forcewake delayed work.
7317 */
7318 spin_lock_irqsave(&dev_priv->uncore.lock, irqflags);
7319 if (dev_priv->uncore.forcewake_count++ == 0)
7320 dev_priv->uncore.funcs.force_wake_get(dev_priv, FORCEWAKE_ALL);
7321 spin_unlock_irqrestore(&dev_priv->uncore.lock, irqflags);
Paulo Zanoni215733f2013-08-19 13:18:07 -03007322
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007323 if (val & LCPLL_POWER_DOWN_ALLOW) {
7324 val &= ~LCPLL_POWER_DOWN_ALLOW;
7325 I915_WRITE(LCPLL_CTL, val);
Daniel Vetter35d8f2e2013-08-21 23:38:08 +02007326 POSTING_READ(LCPLL_CTL);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007327 }
7328
7329 val = I915_READ(D_COMP);
7330 val |= D_COMP_COMP_FORCE;
7331 val &= ~D_COMP_COMP_DISABLE;
Paulo Zanoni3c4c9b82014-03-07 20:12:36 -03007332 hsw_write_dcomp(dev_priv, val);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007333
7334 val = I915_READ(LCPLL_CTL);
7335 val &= ~LCPLL_PLL_DISABLE;
7336 I915_WRITE(LCPLL_CTL, val);
7337
7338 if (wait_for(I915_READ(LCPLL_CTL) & LCPLL_PLL_LOCK, 5))
7339 DRM_ERROR("LCPLL not locked yet\n");
7340
7341 if (val & LCPLL_CD_SOURCE_FCLK) {
7342 val = I915_READ(LCPLL_CTL);
7343 val &= ~LCPLL_CD_SOURCE_FCLK;
7344 I915_WRITE(LCPLL_CTL, val);
7345
7346 if (wait_for_atomic_us((I915_READ(LCPLL_CTL) &
7347 LCPLL_CD_SOURCE_FCLK_DONE) == 0, 1))
7348 DRM_ERROR("Switching back to LCPLL failed\n");
7349 }
Paulo Zanoni215733f2013-08-19 13:18:07 -03007350
Paulo Zanonia8a8bd52014-03-07 20:08:05 -03007351 /* See the big comment above. */
7352 spin_lock_irqsave(&dev_priv->uncore.lock, irqflags);
7353 if (--dev_priv->uncore.forcewake_count == 0)
7354 dev_priv->uncore.funcs.force_wake_put(dev_priv, FORCEWAKE_ALL);
7355 spin_unlock_irqrestore(&dev_priv->uncore.lock, irqflags);
Paulo Zanonibe256dc2013-07-23 11:19:26 -03007356}
7357
Paulo Zanoni765dab672014-03-07 20:08:18 -03007358/*
7359 * Package states C8 and deeper are really deep PC states that can only be
7360 * reached when all the devices on the system allow it, so even if the graphics
7361 * device allows PC8+, it doesn't mean the system will actually get to these
7362 * states. Our driver only allows PC8+ when going into runtime PM.
7363 *
7364 * The requirements for PC8+ are that all the outputs are disabled, the power
7365 * well is disabled and most interrupts are disabled, and these are also
7366 * requirements for runtime PM. When these conditions are met, we manually do
7367 * the other conditions: disable the interrupts, clocks and switch LCPLL refclk
7368 * to Fclk. If we're in PC8+ and we get an non-hotplug interrupt, we can hard
7369 * hang the machine.
7370 *
7371 * When we really reach PC8 or deeper states (not just when we allow it) we lose
7372 * the state of some registers, so when we come back from PC8+ we need to
7373 * restore this state. We don't get into PC8+ if we're not in RC6, so we don't
7374 * need to take care of the registers kept by RC6. Notice that this happens even
7375 * if we don't put the device in PCI D3 state (which is what currently happens
7376 * because of the runtime PM support).
7377 *
7378 * For more, read "Display Sequences for Package C8" on the hardware
7379 * documentation.
7380 */
Paulo Zanonia14cb6f2014-03-07 20:08:17 -03007381void hsw_enable_pc8(struct drm_i915_private *dev_priv)
Paulo Zanonic67a4702013-08-19 13:18:09 -03007382{
Paulo Zanonic67a4702013-08-19 13:18:09 -03007383 struct drm_device *dev = dev_priv->dev;
7384 uint32_t val;
7385
Paulo Zanonic67a4702013-08-19 13:18:09 -03007386 DRM_DEBUG_KMS("Enabling package C8+\n");
7387
Paulo Zanonic67a4702013-08-19 13:18:09 -03007388 if (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) {
7389 val = I915_READ(SOUTH_DSPCLK_GATE_D);
7390 val &= ~PCH_LP_PARTITION_LEVEL_DISABLE;
7391 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
7392 }
7393
7394 lpt_disable_clkout_dp(dev);
Paulo Zanonic67a4702013-08-19 13:18:09 -03007395 hsw_disable_lcpll(dev_priv, true, true);
7396}
7397
Paulo Zanonia14cb6f2014-03-07 20:08:17 -03007398void hsw_disable_pc8(struct drm_i915_private *dev_priv)
Paulo Zanonic67a4702013-08-19 13:18:09 -03007399{
7400 struct drm_device *dev = dev_priv->dev;
7401 uint32_t val;
7402
Paulo Zanonic67a4702013-08-19 13:18:09 -03007403 DRM_DEBUG_KMS("Disabling package C8+\n");
7404
7405 hsw_restore_lcpll(dev_priv);
Paulo Zanonic67a4702013-08-19 13:18:09 -03007406 lpt_init_pch_refclk(dev);
7407
7408 if (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) {
7409 val = I915_READ(SOUTH_DSPCLK_GATE_D);
7410 val |= PCH_LP_PARTITION_LEVEL_DISABLE;
7411 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
7412 }
7413
7414 intel_prepare_ddi(dev);
Paulo Zanonic67a4702013-08-19 13:18:09 -03007415}
7416
Paulo Zanoni9a952a02014-03-07 20:12:34 -03007417static void snb_modeset_global_resources(struct drm_device *dev)
7418{
7419 modeset_update_crtc_power_domains(dev);
7420}
7421
Imre Deak4f074122013-10-16 17:25:51 +03007422static void haswell_modeset_global_resources(struct drm_device *dev)
7423{
Paulo Zanonida723562013-12-19 11:54:51 -02007424 modeset_update_crtc_power_domains(dev);
Daniel Vetterd6dd9eb2013-01-29 16:35:20 -02007425}
7426
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03007427static int haswell_crtc_mode_set(struct drm_crtc *crtc,
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03007428 int x, int y,
7429 struct drm_framebuffer *fb)
7430{
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03007431 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -03007432
Paulo Zanoni566b7342013-11-25 15:27:08 -02007433 if (!intel_ddi_pll_select(intel_crtc))
Paulo Zanoni6441ab52012-10-05 12:05:58 -03007434 return -EINVAL;
Paulo Zanoni566b7342013-11-25 15:27:08 -02007435 intel_ddi_pll_enable(intel_crtc);
Paulo Zanoni6441ab52012-10-05 12:05:58 -03007436
Daniel Vetter644cef32014-04-24 23:55:07 +02007437 intel_crtc->lowfreq_avail = false;
7438
Daniel Vetterc8f7a0d2014-04-24 23:55:04 +02007439 return 0;
Jesse Barnes79e53942008-11-07 14:24:08 -08007440}
7441
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01007442static bool haswell_get_pipe_config(struct intel_crtc *crtc,
7443 struct intel_crtc_config *pipe_config)
7444{
7445 struct drm_device *dev = crtc->base.dev;
7446 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007447 enum intel_display_power_domain pfit_domain;
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01007448 uint32_t tmp;
7449
Imre Deakb5482bd2014-03-05 16:20:55 +02007450 if (!intel_display_power_enabled(dev_priv,
7451 POWER_DOMAIN_PIPE(crtc->pipe)))
7452 return false;
7453
Daniel Vettere143a212013-07-04 12:01:15 +02007454 pipe_config->cpu_transcoder = (enum transcoder) crtc->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +02007455 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
7456
Daniel Vettereccb1402013-05-22 00:50:22 +02007457 tmp = I915_READ(TRANS_DDI_FUNC_CTL(TRANSCODER_EDP));
7458 if (tmp & TRANS_DDI_FUNC_ENABLE) {
7459 enum pipe trans_edp_pipe;
7460 switch (tmp & TRANS_DDI_EDP_INPUT_MASK) {
7461 default:
7462 WARN(1, "unknown pipe linked to edp transcoder\n");
7463 case TRANS_DDI_EDP_INPUT_A_ONOFF:
7464 case TRANS_DDI_EDP_INPUT_A_ON:
7465 trans_edp_pipe = PIPE_A;
7466 break;
7467 case TRANS_DDI_EDP_INPUT_B_ONOFF:
7468 trans_edp_pipe = PIPE_B;
7469 break;
7470 case TRANS_DDI_EDP_INPUT_C_ONOFF:
7471 trans_edp_pipe = PIPE_C;
7472 break;
7473 }
7474
7475 if (trans_edp_pipe == crtc->pipe)
7476 pipe_config->cpu_transcoder = TRANSCODER_EDP;
7477 }
7478
Imre Deakda7e29b2014-02-18 00:02:02 +02007479 if (!intel_display_power_enabled(dev_priv,
Daniel Vettereccb1402013-05-22 00:50:22 +02007480 POWER_DOMAIN_TRANSCODER(pipe_config->cpu_transcoder)))
Paulo Zanoni2bfce952013-04-18 16:35:40 -03007481 return false;
7482
Daniel Vettereccb1402013-05-22 00:50:22 +02007483 tmp = I915_READ(PIPECONF(pipe_config->cpu_transcoder));
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01007484 if (!(tmp & PIPECONF_ENABLE))
7485 return false;
7486
Daniel Vetter88adfff2013-03-28 10:42:01 +01007487 /*
Paulo Zanonif196e6b2013-04-18 16:35:41 -03007488 * Haswell has only FDI/PCH transcoder A. It is which is connected to
Daniel Vetter88adfff2013-03-28 10:42:01 +01007489 * DDI E. So just check whether this pipe is wired to DDI E and whether
7490 * the PCH transcoder is on.
7491 */
Daniel Vettereccb1402013-05-22 00:50:22 +02007492 tmp = I915_READ(TRANS_DDI_FUNC_CTL(pipe_config->cpu_transcoder));
Daniel Vetter88adfff2013-03-28 10:42:01 +01007493 if ((tmp & TRANS_DDI_PORT_MASK) == TRANS_DDI_SELECT_PORT(PORT_E) &&
Daniel Vetterab9412b2013-05-03 11:49:46 +02007494 I915_READ(LPT_TRANSCONF) & TRANS_ENABLE) {
Daniel Vetter88adfff2013-03-28 10:42:01 +01007495 pipe_config->has_pch_encoder = true;
7496
Daniel Vetter627eb5a2013-04-29 19:33:42 +02007497 tmp = I915_READ(FDI_RX_CTL(PIPE_A));
7498 pipe_config->fdi_lanes = ((FDI_DP_PORT_WIDTH_MASK & tmp) >>
7499 FDI_DP_PORT_WIDTH_SHIFT) + 1;
Daniel Vetter72419202013-04-04 13:28:53 +02007500
7501 ironlake_get_fdi_m_n_config(crtc, pipe_config);
Daniel Vetter627eb5a2013-04-29 19:33:42 +02007502 }
7503
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02007504 intel_get_pipe_timings(crtc, pipe_config);
7505
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007506 pfit_domain = POWER_DOMAIN_PIPE_PANEL_FITTER(crtc->pipe);
Imre Deakda7e29b2014-02-18 00:02:02 +02007507 if (intel_display_power_enabled(dev_priv, pfit_domain))
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02007508 ironlake_get_pfit_config(crtc, pipe_config);
Daniel Vetter88adfff2013-03-28 10:42:01 +01007509
Jesse Barnese59150d2014-01-07 13:30:45 -08007510 if (IS_HASWELL(dev))
7511 pipe_config->ips_enabled = hsw_crtc_supports_ips(crtc) &&
7512 (I915_READ(IPS_CTL) & IPS_ENABLE);
Paulo Zanoni42db64e2013-05-31 16:33:22 -03007513
Daniel Vetter6c49f242013-06-06 12:45:25 +02007514 pipe_config->pixel_multiplier = 1;
7515
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01007516 return true;
7517}
7518
Jani Nikula1a915102013-10-16 12:34:48 +03007519static struct {
7520 int clock;
7521 u32 config;
7522} hdmi_audio_clock[] = {
7523 { DIV_ROUND_UP(25200 * 1000, 1001), AUD_CONFIG_PIXEL_CLOCK_HDMI_25175 },
7524 { 25200, AUD_CONFIG_PIXEL_CLOCK_HDMI_25200 }, /* default per bspec */
7525 { 27000, AUD_CONFIG_PIXEL_CLOCK_HDMI_27000 },
7526 { 27000 * 1001 / 1000, AUD_CONFIG_PIXEL_CLOCK_HDMI_27027 },
7527 { 54000, AUD_CONFIG_PIXEL_CLOCK_HDMI_54000 },
7528 { 54000 * 1001 / 1000, AUD_CONFIG_PIXEL_CLOCK_HDMI_54054 },
7529 { DIV_ROUND_UP(74250 * 1000, 1001), AUD_CONFIG_PIXEL_CLOCK_HDMI_74176 },
7530 { 74250, AUD_CONFIG_PIXEL_CLOCK_HDMI_74250 },
7531 { DIV_ROUND_UP(148500 * 1000, 1001), AUD_CONFIG_PIXEL_CLOCK_HDMI_148352 },
7532 { 148500, AUD_CONFIG_PIXEL_CLOCK_HDMI_148500 },
7533};
7534
7535/* get AUD_CONFIG_PIXEL_CLOCK_HDMI_* value for mode */
7536static u32 audio_config_hdmi_pixel_clock(struct drm_display_mode *mode)
7537{
7538 int i;
7539
7540 for (i = 0; i < ARRAY_SIZE(hdmi_audio_clock); i++) {
7541 if (mode->clock == hdmi_audio_clock[i].clock)
7542 break;
7543 }
7544
7545 if (i == ARRAY_SIZE(hdmi_audio_clock)) {
7546 DRM_DEBUG_KMS("HDMI audio pixel clock setting for %d not found, falling back to defaults\n", mode->clock);
7547 i = 1;
7548 }
7549
7550 DRM_DEBUG_KMS("Configuring HDMI audio for pixel clock %d (0x%08x)\n",
7551 hdmi_audio_clock[i].clock,
7552 hdmi_audio_clock[i].config);
7553
7554 return hdmi_audio_clock[i].config;
7555}
7556
Wu Fengguang3a9627f2011-12-09 20:42:19 +08007557static bool intel_eld_uptodate(struct drm_connector *connector,
7558 int reg_eldv, uint32_t bits_eldv,
7559 int reg_elda, uint32_t bits_elda,
7560 int reg_edid)
7561{
7562 struct drm_i915_private *dev_priv = connector->dev->dev_private;
7563 uint8_t *eld = connector->eld;
7564 uint32_t i;
7565
7566 i = I915_READ(reg_eldv);
7567 i &= bits_eldv;
7568
7569 if (!eld[0])
7570 return !i;
7571
7572 if (!i)
7573 return false;
7574
7575 i = I915_READ(reg_elda);
7576 i &= ~bits_elda;
7577 I915_WRITE(reg_elda, i);
7578
7579 for (i = 0; i < eld[2]; i++)
7580 if (I915_READ(reg_edid) != *((uint32_t *)eld + i))
7581 return false;
7582
7583 return true;
7584}
7585
Wu Fengguange0dac652011-09-05 14:25:34 +08007586static void g4x_write_eld(struct drm_connector *connector,
Jani Nikula34427052013-10-16 12:34:47 +03007587 struct drm_crtc *crtc,
7588 struct drm_display_mode *mode)
Wu Fengguange0dac652011-09-05 14:25:34 +08007589{
7590 struct drm_i915_private *dev_priv = connector->dev->dev_private;
7591 uint8_t *eld = connector->eld;
7592 uint32_t eldv;
7593 uint32_t len;
7594 uint32_t i;
7595
7596 i = I915_READ(G4X_AUD_VID_DID);
7597
7598 if (i == INTEL_AUDIO_DEVBLC || i == INTEL_AUDIO_DEVCL)
7599 eldv = G4X_ELDV_DEVCL_DEVBLC;
7600 else
7601 eldv = G4X_ELDV_DEVCTG;
7602
Wu Fengguang3a9627f2011-12-09 20:42:19 +08007603 if (intel_eld_uptodate(connector,
7604 G4X_AUD_CNTL_ST, eldv,
7605 G4X_AUD_CNTL_ST, G4X_ELD_ADDR,
7606 G4X_HDMIW_HDMIEDID))
7607 return;
7608
Wu Fengguange0dac652011-09-05 14:25:34 +08007609 i = I915_READ(G4X_AUD_CNTL_ST);
7610 i &= ~(eldv | G4X_ELD_ADDR);
7611 len = (i >> 9) & 0x1f; /* ELD buffer size */
7612 I915_WRITE(G4X_AUD_CNTL_ST, i);
7613
7614 if (!eld[0])
7615 return;
7616
7617 len = min_t(uint8_t, eld[2], len);
7618 DRM_DEBUG_DRIVER("ELD size %d\n", len);
7619 for (i = 0; i < len; i++)
7620 I915_WRITE(G4X_HDMIW_HDMIEDID, *((uint32_t *)eld + i));
7621
7622 i = I915_READ(G4X_AUD_CNTL_ST);
7623 i |= eldv;
7624 I915_WRITE(G4X_AUD_CNTL_ST, i);
7625}
7626
Wang Xingchao83358c852012-08-16 22:43:37 +08007627static void haswell_write_eld(struct drm_connector *connector,
Jani Nikula34427052013-10-16 12:34:47 +03007628 struct drm_crtc *crtc,
7629 struct drm_display_mode *mode)
Wang Xingchao83358c852012-08-16 22:43:37 +08007630{
7631 struct drm_i915_private *dev_priv = connector->dev->dev_private;
7632 uint8_t *eld = connector->eld;
Wang Xingchao83358c852012-08-16 22:43:37 +08007633 uint32_t eldv;
7634 uint32_t i;
7635 int len;
7636 int pipe = to_intel_crtc(crtc)->pipe;
7637 int tmp;
7638
7639 int hdmiw_hdmiedid = HSW_AUD_EDID_DATA(pipe);
7640 int aud_cntl_st = HSW_AUD_DIP_ELD_CTRL(pipe);
7641 int aud_config = HSW_AUD_CFG(pipe);
7642 int aud_cntrl_st2 = HSW_AUD_PIN_ELD_CP_VLD;
7643
Wang Xingchao83358c852012-08-16 22:43:37 +08007644 /* Audio output enable */
7645 DRM_DEBUG_DRIVER("HDMI audio: enable codec\n");
7646 tmp = I915_READ(aud_cntrl_st2);
7647 tmp |= (AUDIO_OUTPUT_ENABLE_A << (pipe * 4));
7648 I915_WRITE(aud_cntrl_st2, tmp);
Daniel Vetterc7905792014-04-16 16:56:09 +02007649 POSTING_READ(aud_cntrl_st2);
Wang Xingchao83358c852012-08-16 22:43:37 +08007650
Daniel Vetterc7905792014-04-16 16:56:09 +02007651 assert_pipe_disabled(dev_priv, to_intel_crtc(crtc)->pipe);
Wang Xingchao83358c852012-08-16 22:43:37 +08007652
7653 /* Set ELD valid state */
7654 tmp = I915_READ(aud_cntrl_st2);
Takashi Iwai7e7cb342013-09-10 07:30:36 +02007655 DRM_DEBUG_DRIVER("HDMI audio: pin eld vld status=0x%08x\n", tmp);
Wang Xingchao83358c852012-08-16 22:43:37 +08007656 tmp |= (AUDIO_ELD_VALID_A << (pipe * 4));
7657 I915_WRITE(aud_cntrl_st2, tmp);
7658 tmp = I915_READ(aud_cntrl_st2);
Takashi Iwai7e7cb342013-09-10 07:30:36 +02007659 DRM_DEBUG_DRIVER("HDMI audio: eld vld status=0x%08x\n", tmp);
Wang Xingchao83358c852012-08-16 22:43:37 +08007660
7661 /* Enable HDMI mode */
7662 tmp = I915_READ(aud_config);
Takashi Iwai7e7cb342013-09-10 07:30:36 +02007663 DRM_DEBUG_DRIVER("HDMI audio: audio conf: 0x%08x\n", tmp);
Wang Xingchao83358c852012-08-16 22:43:37 +08007664 /* clear N_programing_enable and N_value_index */
7665 tmp &= ~(AUD_CONFIG_N_VALUE_INDEX | AUD_CONFIG_N_PROG_ENABLE);
7666 I915_WRITE(aud_config, tmp);
7667
7668 DRM_DEBUG_DRIVER("ELD on pipe %c\n", pipe_name(pipe));
7669
7670 eldv = AUDIO_ELD_VALID_A << (pipe * 4);
7671
7672 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT)) {
7673 DRM_DEBUG_DRIVER("ELD: DisplayPort detected\n");
7674 eld[5] |= (1 << 2); /* Conn_Type, 0x1 = DisplayPort */
7675 I915_WRITE(aud_config, AUD_CONFIG_N_VALUE_INDEX); /* 0x1 = DP */
Jani Nikula1a915102013-10-16 12:34:48 +03007676 } else {
7677 I915_WRITE(aud_config, audio_config_hdmi_pixel_clock(mode));
7678 }
Wang Xingchao83358c852012-08-16 22:43:37 +08007679
7680 if (intel_eld_uptodate(connector,
7681 aud_cntrl_st2, eldv,
7682 aud_cntl_st, IBX_ELD_ADDRESS,
7683 hdmiw_hdmiedid))
7684 return;
7685
7686 i = I915_READ(aud_cntrl_st2);
7687 i &= ~eldv;
7688 I915_WRITE(aud_cntrl_st2, i);
7689
7690 if (!eld[0])
7691 return;
7692
7693 i = I915_READ(aud_cntl_st);
7694 i &= ~IBX_ELD_ADDRESS;
7695 I915_WRITE(aud_cntl_st, i);
7696 i = (i >> 29) & DIP_PORT_SEL_MASK; /* DIP_Port_Select, 0x1 = PortB */
7697 DRM_DEBUG_DRIVER("port num:%d\n", i);
7698
7699 len = min_t(uint8_t, eld[2], 21); /* 84 bytes of hw ELD buffer */
7700 DRM_DEBUG_DRIVER("ELD size %d\n", len);
7701 for (i = 0; i < len; i++)
7702 I915_WRITE(hdmiw_hdmiedid, *((uint32_t *)eld + i));
7703
7704 i = I915_READ(aud_cntrl_st2);
7705 i |= eldv;
7706 I915_WRITE(aud_cntrl_st2, i);
7707
7708}
7709
Wu Fengguange0dac652011-09-05 14:25:34 +08007710static void ironlake_write_eld(struct drm_connector *connector,
Jani Nikula34427052013-10-16 12:34:47 +03007711 struct drm_crtc *crtc,
7712 struct drm_display_mode *mode)
Wu Fengguange0dac652011-09-05 14:25:34 +08007713{
7714 struct drm_i915_private *dev_priv = connector->dev->dev_private;
7715 uint8_t *eld = connector->eld;
7716 uint32_t eldv;
7717 uint32_t i;
7718 int len;
7719 int hdmiw_hdmiedid;
Wu Fengguangb6daa022012-01-06 14:41:31 -06007720 int aud_config;
Wu Fengguange0dac652011-09-05 14:25:34 +08007721 int aud_cntl_st;
7722 int aud_cntrl_st2;
Wang Xingchao9b138a82012-08-09 16:52:18 +08007723 int pipe = to_intel_crtc(crtc)->pipe;
Wu Fengguange0dac652011-09-05 14:25:34 +08007724
Wu Fengguangb3f33cb2011-12-09 20:42:17 +08007725 if (HAS_PCH_IBX(connector->dev)) {
Wang Xingchao9b138a82012-08-09 16:52:18 +08007726 hdmiw_hdmiedid = IBX_HDMIW_HDMIEDID(pipe);
7727 aud_config = IBX_AUD_CFG(pipe);
7728 aud_cntl_st = IBX_AUD_CNTL_ST(pipe);
Wu Fengguang1202b4c62011-12-09 20:42:18 +08007729 aud_cntrl_st2 = IBX_AUD_CNTL_ST2;
Mengdong Lin9ca2fe72013-11-01 00:17:03 -04007730 } else if (IS_VALLEYVIEW(connector->dev)) {
7731 hdmiw_hdmiedid = VLV_HDMIW_HDMIEDID(pipe);
7732 aud_config = VLV_AUD_CFG(pipe);
7733 aud_cntl_st = VLV_AUD_CNTL_ST(pipe);
7734 aud_cntrl_st2 = VLV_AUD_CNTL_ST2;
Wu Fengguange0dac652011-09-05 14:25:34 +08007735 } else {
Wang Xingchao9b138a82012-08-09 16:52:18 +08007736 hdmiw_hdmiedid = CPT_HDMIW_HDMIEDID(pipe);
7737 aud_config = CPT_AUD_CFG(pipe);
7738 aud_cntl_st = CPT_AUD_CNTL_ST(pipe);
Wu Fengguang1202b4c62011-12-09 20:42:18 +08007739 aud_cntrl_st2 = CPT_AUD_CNTRL_ST2;
Wu Fengguange0dac652011-09-05 14:25:34 +08007740 }
7741
Wang Xingchao9b138a82012-08-09 16:52:18 +08007742 DRM_DEBUG_DRIVER("ELD on pipe %c\n", pipe_name(pipe));
Wu Fengguange0dac652011-09-05 14:25:34 +08007743
Mengdong Lin9ca2fe72013-11-01 00:17:03 -04007744 if (IS_VALLEYVIEW(connector->dev)) {
7745 struct intel_encoder *intel_encoder;
7746 struct intel_digital_port *intel_dig_port;
7747
7748 intel_encoder = intel_attached_encoder(connector);
7749 intel_dig_port = enc_to_dig_port(&intel_encoder->base);
7750 i = intel_dig_port->port;
7751 } else {
7752 i = I915_READ(aud_cntl_st);
7753 i = (i >> 29) & DIP_PORT_SEL_MASK;
7754 /* DIP_Port_Select, 0x1 = PortB */
7755 }
7756
Wu Fengguange0dac652011-09-05 14:25:34 +08007757 if (!i) {
7758 DRM_DEBUG_DRIVER("Audio directed to unknown port\n");
7759 /* operate blindly on all ports */
Wu Fengguang1202b4c62011-12-09 20:42:18 +08007760 eldv = IBX_ELD_VALIDB;
7761 eldv |= IBX_ELD_VALIDB << 4;
7762 eldv |= IBX_ELD_VALIDB << 8;
Wu Fengguange0dac652011-09-05 14:25:34 +08007763 } else {
Ville Syrjälä2582a852013-04-17 17:48:47 +03007764 DRM_DEBUG_DRIVER("ELD on port %c\n", port_name(i));
Wu Fengguang1202b4c62011-12-09 20:42:18 +08007765 eldv = IBX_ELD_VALIDB << ((i - 1) * 4);
Wu Fengguange0dac652011-09-05 14:25:34 +08007766 }
7767
Wu Fengguang3a9627f2011-12-09 20:42:19 +08007768 if (intel_pipe_has_type(crtc, INTEL_OUTPUT_DISPLAYPORT)) {
7769 DRM_DEBUG_DRIVER("ELD: DisplayPort detected\n");
7770 eld[5] |= (1 << 2); /* Conn_Type, 0x1 = DisplayPort */
Wu Fengguangb6daa022012-01-06 14:41:31 -06007771 I915_WRITE(aud_config, AUD_CONFIG_N_VALUE_INDEX); /* 0x1 = DP */
Jani Nikula1a915102013-10-16 12:34:48 +03007772 } else {
7773 I915_WRITE(aud_config, audio_config_hdmi_pixel_clock(mode));
7774 }
Wu Fengguang3a9627f2011-12-09 20:42:19 +08007775
7776 if (intel_eld_uptodate(connector,
7777 aud_cntrl_st2, eldv,
7778 aud_cntl_st, IBX_ELD_ADDRESS,
7779 hdmiw_hdmiedid))
7780 return;
7781
Wu Fengguange0dac652011-09-05 14:25:34 +08007782 i = I915_READ(aud_cntrl_st2);
7783 i &= ~eldv;
7784 I915_WRITE(aud_cntrl_st2, i);
7785
7786 if (!eld[0])
7787 return;
7788
Wu Fengguange0dac652011-09-05 14:25:34 +08007789 i = I915_READ(aud_cntl_st);
Wu Fengguang1202b4c62011-12-09 20:42:18 +08007790 i &= ~IBX_ELD_ADDRESS;
Wu Fengguange0dac652011-09-05 14:25:34 +08007791 I915_WRITE(aud_cntl_st, i);
7792
7793 len = min_t(uint8_t, eld[2], 21); /* 84 bytes of hw ELD buffer */
7794 DRM_DEBUG_DRIVER("ELD size %d\n", len);
7795 for (i = 0; i < len; i++)
7796 I915_WRITE(hdmiw_hdmiedid, *((uint32_t *)eld + i));
7797
7798 i = I915_READ(aud_cntrl_st2);
7799 i |= eldv;
7800 I915_WRITE(aud_cntrl_st2, i);
7801}
7802
7803void intel_write_eld(struct drm_encoder *encoder,
7804 struct drm_display_mode *mode)
7805{
7806 struct drm_crtc *crtc = encoder->crtc;
7807 struct drm_connector *connector;
7808 struct drm_device *dev = encoder->dev;
7809 struct drm_i915_private *dev_priv = dev->dev_private;
7810
7811 connector = drm_select_eld(encoder, mode);
7812 if (!connector)
7813 return;
7814
7815 DRM_DEBUG_DRIVER("ELD on [CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
7816 connector->base.id,
7817 drm_get_connector_name(connector),
7818 connector->encoder->base.id,
7819 drm_get_encoder_name(connector->encoder));
7820
7821 connector->eld[6] = drm_av_sync_delay(connector, mode) / 2;
7822
7823 if (dev_priv->display.write_eld)
Jani Nikula34427052013-10-16 12:34:47 +03007824 dev_priv->display.write_eld(connector, crtc, mode);
Wu Fengguange0dac652011-09-05 14:25:34 +08007825}
7826
Chris Wilson560b85b2010-08-07 11:01:38 +01007827static void i845_update_cursor(struct drm_crtc *crtc, u32 base)
7828{
7829 struct drm_device *dev = crtc->dev;
7830 struct drm_i915_private *dev_priv = dev->dev_private;
7831 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
7832 bool visible = base != 0;
7833 u32 cntl;
7834
7835 if (intel_crtc->cursor_visible == visible)
7836 return;
7837
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08007838 cntl = I915_READ(_CURACNTR);
Chris Wilson560b85b2010-08-07 11:01:38 +01007839 if (visible) {
7840 /* On these chipsets we can only modify the base whilst
7841 * the cursor is disabled.
7842 */
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08007843 I915_WRITE(_CURABASE, base);
Chris Wilson560b85b2010-08-07 11:01:38 +01007844
7845 cntl &= ~(CURSOR_FORMAT_MASK);
7846 /* XXX width must be 64, stride 256 => 0x00 << 28 */
7847 cntl |= CURSOR_ENABLE |
7848 CURSOR_GAMMA_ENABLE |
7849 CURSOR_FORMAT_ARGB;
7850 } else
7851 cntl &= ~(CURSOR_ENABLE | CURSOR_GAMMA_ENABLE);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08007852 I915_WRITE(_CURACNTR, cntl);
Chris Wilson560b85b2010-08-07 11:01:38 +01007853
7854 intel_crtc->cursor_visible = visible;
7855}
7856
7857static void i9xx_update_cursor(struct drm_crtc *crtc, u32 base)
7858{
7859 struct drm_device *dev = crtc->dev;
7860 struct drm_i915_private *dev_priv = dev->dev_private;
7861 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
7862 int pipe = intel_crtc->pipe;
7863 bool visible = base != 0;
7864
7865 if (intel_crtc->cursor_visible != visible) {
Sagar Kamble4726e0b2014-03-10 17:06:23 +05307866 int16_t width = intel_crtc->cursor_width;
Jesse Barnes548f2452011-02-17 10:40:53 -08007867 uint32_t cntl = I915_READ(CURCNTR(pipe));
Chris Wilson560b85b2010-08-07 11:01:38 +01007868 if (base) {
7869 cntl &= ~(CURSOR_MODE | MCURSOR_PIPE_SELECT);
Sagar Kamble4726e0b2014-03-10 17:06:23 +05307870 cntl |= MCURSOR_GAMMA_ENABLE;
7871
7872 switch (width) {
7873 case 64:
7874 cntl |= CURSOR_MODE_64_ARGB_AX;
7875 break;
7876 case 128:
7877 cntl |= CURSOR_MODE_128_ARGB_AX;
7878 break;
7879 case 256:
7880 cntl |= CURSOR_MODE_256_ARGB_AX;
7881 break;
7882 default:
7883 WARN_ON(1);
7884 return;
7885 }
Chris Wilson560b85b2010-08-07 11:01:38 +01007886 cntl |= pipe << 28; /* Connect to correct pipe */
7887 } else {
7888 cntl &= ~(CURSOR_MODE | MCURSOR_GAMMA_ENABLE);
7889 cntl |= CURSOR_MODE_DISABLE;
7890 }
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08007891 I915_WRITE(CURCNTR(pipe), cntl);
Chris Wilson560b85b2010-08-07 11:01:38 +01007892
7893 intel_crtc->cursor_visible = visible;
7894 }
7895 /* and commit changes on next vblank */
Daniel Vetterb2ea8ef2013-11-04 08:13:45 +01007896 POSTING_READ(CURCNTR(pipe));
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08007897 I915_WRITE(CURBASE(pipe), base);
Daniel Vetterb2ea8ef2013-11-04 08:13:45 +01007898 POSTING_READ(CURBASE(pipe));
Chris Wilson560b85b2010-08-07 11:01:38 +01007899}
7900
Jesse Barnes65a21cd2011-10-12 11:10:21 -07007901static void ivb_update_cursor(struct drm_crtc *crtc, u32 base)
7902{
7903 struct drm_device *dev = crtc->dev;
7904 struct drm_i915_private *dev_priv = dev->dev_private;
7905 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
7906 int pipe = intel_crtc->pipe;
7907 bool visible = base != 0;
7908
7909 if (intel_crtc->cursor_visible != visible) {
Sagar Kamble4726e0b2014-03-10 17:06:23 +05307910 int16_t width = intel_crtc->cursor_width;
Ville Syrjälä5efb3e22014-04-09 13:28:53 +03007911 uint32_t cntl = I915_READ(CURCNTR(pipe));
Jesse Barnes65a21cd2011-10-12 11:10:21 -07007912 if (base) {
7913 cntl &= ~CURSOR_MODE;
Sagar Kamble4726e0b2014-03-10 17:06:23 +05307914 cntl |= MCURSOR_GAMMA_ENABLE;
7915 switch (width) {
7916 case 64:
7917 cntl |= CURSOR_MODE_64_ARGB_AX;
7918 break;
7919 case 128:
7920 cntl |= CURSOR_MODE_128_ARGB_AX;
7921 break;
7922 case 256:
7923 cntl |= CURSOR_MODE_256_ARGB_AX;
7924 break;
7925 default:
7926 WARN_ON(1);
7927 return;
7928 }
Jesse Barnes65a21cd2011-10-12 11:10:21 -07007929 } else {
7930 cntl &= ~(CURSOR_MODE | MCURSOR_GAMMA_ENABLE);
7931 cntl |= CURSOR_MODE_DISABLE;
7932 }
Ville Syrjälä6bbfa1c2013-11-02 21:07:39 -07007933 if (IS_HASWELL(dev) || IS_BROADWELL(dev)) {
Ville Syrjälä86d3efc2013-01-18 19:11:38 +02007934 cntl |= CURSOR_PIPE_CSC_ENABLE;
Paulo Zanoni1f5d76d2013-08-23 19:51:28 -03007935 cntl &= ~CURSOR_TRICKLE_FEED_DISABLE;
7936 }
Ville Syrjälä5efb3e22014-04-09 13:28:53 +03007937 I915_WRITE(CURCNTR(pipe), cntl);
Jesse Barnes65a21cd2011-10-12 11:10:21 -07007938
7939 intel_crtc->cursor_visible = visible;
7940 }
7941 /* and commit changes on next vblank */
Ville Syrjälä5efb3e22014-04-09 13:28:53 +03007942 POSTING_READ(CURCNTR(pipe));
7943 I915_WRITE(CURBASE(pipe), base);
7944 POSTING_READ(CURBASE(pipe));
Jesse Barnes65a21cd2011-10-12 11:10:21 -07007945}
7946
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01007947/* If no-part of the cursor is visible on the framebuffer, then the GPU may hang... */
Chris Wilson6b383a72010-09-13 13:54:26 +01007948static void intel_crtc_update_cursor(struct drm_crtc *crtc,
7949 bool on)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01007950{
7951 struct drm_device *dev = crtc->dev;
7952 struct drm_i915_private *dev_priv = dev->dev_private;
7953 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
7954 int pipe = intel_crtc->pipe;
7955 int x = intel_crtc->cursor_x;
7956 int y = intel_crtc->cursor_y;
Ville Syrjäläd6e4db12013-09-04 18:25:31 +03007957 u32 base = 0, pos = 0;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01007958 bool visible;
7959
Ville Syrjäläd6e4db12013-09-04 18:25:31 +03007960 if (on)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01007961 base = intel_crtc->cursor_addr;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01007962
Ville Syrjäläd6e4db12013-09-04 18:25:31 +03007963 if (x >= intel_crtc->config.pipe_src_w)
7964 base = 0;
7965
7966 if (y >= intel_crtc->config.pipe_src_h)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01007967 base = 0;
7968
7969 if (x < 0) {
Ville Syrjäläefc90642013-09-04 18:25:30 +03007970 if (x + intel_crtc->cursor_width <= 0)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01007971 base = 0;
7972
7973 pos |= CURSOR_POS_SIGN << CURSOR_X_SHIFT;
7974 x = -x;
7975 }
7976 pos |= x << CURSOR_X_SHIFT;
7977
7978 if (y < 0) {
Ville Syrjäläefc90642013-09-04 18:25:30 +03007979 if (y + intel_crtc->cursor_height <= 0)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01007980 base = 0;
7981
7982 pos |= CURSOR_POS_SIGN << CURSOR_Y_SHIFT;
7983 y = -y;
7984 }
7985 pos |= y << CURSOR_Y_SHIFT;
7986
7987 visible = base != 0;
Chris Wilson560b85b2010-08-07 11:01:38 +01007988 if (!visible && !intel_crtc->cursor_visible)
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01007989 return;
7990
Ville Syrjälä5efb3e22014-04-09 13:28:53 +03007991 I915_WRITE(CURPOS(pipe), pos);
7992
7993 if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev) || IS_BROADWELL(dev))
Jesse Barnes65a21cd2011-10-12 11:10:21 -07007994 ivb_update_cursor(crtc, base);
Ville Syrjälä5efb3e22014-04-09 13:28:53 +03007995 else if (IS_845G(dev) || IS_I865G(dev))
7996 i845_update_cursor(crtc, base);
7997 else
7998 i9xx_update_cursor(crtc, base);
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01007999}
8000
Jesse Barnes79e53942008-11-07 14:24:08 -08008001static int intel_crtc_cursor_set(struct drm_crtc *crtc,
Chris Wilson05394f32010-11-08 19:18:58 +00008002 struct drm_file *file,
Jesse Barnes79e53942008-11-07 14:24:08 -08008003 uint32_t handle,
8004 uint32_t width, uint32_t height)
8005{
8006 struct drm_device *dev = crtc->dev;
8007 struct drm_i915_private *dev_priv = dev->dev_private;
8008 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Chris Wilson05394f32010-11-08 19:18:58 +00008009 struct drm_i915_gem_object *obj;
Chris Wilson64f962e2014-03-26 12:38:15 +00008010 unsigned old_width;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01008011 uint32_t addr;
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05008012 int ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08008013
Jesse Barnes79e53942008-11-07 14:24:08 -08008014 /* if we want to turn off the cursor ignore width and height */
8015 if (!handle) {
Zhao Yakui28c97732009-10-09 11:39:41 +08008016 DRM_DEBUG_KMS("cursor off\n");
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05008017 addr = 0;
Chris Wilson05394f32010-11-08 19:18:58 +00008018 obj = NULL;
Pierre Willenbrock50044172009-02-23 10:12:15 +10008019 mutex_lock(&dev->struct_mutex);
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05008020 goto finish;
Jesse Barnes79e53942008-11-07 14:24:08 -08008021 }
8022
Sagar Kamble4726e0b2014-03-10 17:06:23 +05308023 /* Check for which cursor types we support */
8024 if (!((width == 64 && height == 64) ||
8025 (width == 128 && height == 128 && !IS_GEN2(dev)) ||
8026 (width == 256 && height == 256 && !IS_GEN2(dev)))) {
8027 DRM_DEBUG("Cursor dimension not supported\n");
Jesse Barnes79e53942008-11-07 14:24:08 -08008028 return -EINVAL;
8029 }
8030
Chris Wilson05394f32010-11-08 19:18:58 +00008031 obj = to_intel_bo(drm_gem_object_lookup(dev, file, handle));
Chris Wilsonc8725222011-02-19 11:31:06 +00008032 if (&obj->base == NULL)
Jesse Barnes79e53942008-11-07 14:24:08 -08008033 return -ENOENT;
8034
Chris Wilson05394f32010-11-08 19:18:58 +00008035 if (obj->base.size < width * height * 4) {
Daniel Vetter3b25b312014-02-14 14:06:06 +01008036 DRM_DEBUG_KMS("buffer is to small\n");
Dave Airlie34b8686e2009-01-15 14:03:07 +10008037 ret = -ENOMEM;
8038 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -08008039 }
8040
Dave Airlie71acb5e2008-12-30 20:31:46 +10008041 /* we only need to pin inside GTT if cursor is non-phy */
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05008042 mutex_lock(&dev->struct_mutex);
Damien Lespiau3d13ef22014-02-07 19:12:47 +00008043 if (!INTEL_INFO(dev)->cursor_needs_physical) {
Chris Wilson693db182013-03-05 14:52:39 +00008044 unsigned alignment;
8045
Chris Wilsond9e86c02010-11-10 16:40:20 +00008046 if (obj->tiling_mode) {
Daniel Vetter3b25b312014-02-14 14:06:06 +01008047 DRM_DEBUG_KMS("cursor cannot be tiled\n");
Chris Wilsond9e86c02010-11-10 16:40:20 +00008048 ret = -EINVAL;
8049 goto fail_locked;
8050 }
8051
Chris Wilson693db182013-03-05 14:52:39 +00008052 /* Note that the w/a also requires 2 PTE of padding following
8053 * the bo. We currently fill all unused PTE with the shadow
8054 * page and so we should always have valid PTE following the
8055 * cursor preventing the VT-d warning.
8056 */
8057 alignment = 0;
8058 if (need_vtd_wa(dev))
8059 alignment = 64*1024;
8060
8061 ret = i915_gem_object_pin_to_display_plane(obj, alignment, NULL);
Chris Wilsone7b526b2010-06-02 08:30:48 +01008062 if (ret) {
Daniel Vetter3b25b312014-02-14 14:06:06 +01008063 DRM_DEBUG_KMS("failed to move cursor bo into the GTT\n");
Chris Wilson2da3b9b2011-04-14 09:41:17 +01008064 goto fail_locked;
Chris Wilsone7b526b2010-06-02 08:30:48 +01008065 }
8066
Chris Wilsond9e86c02010-11-10 16:40:20 +00008067 ret = i915_gem_object_put_fence(obj);
8068 if (ret) {
Daniel Vetter3b25b312014-02-14 14:06:06 +01008069 DRM_DEBUG_KMS("failed to release fence for cursor");
Chris Wilsond9e86c02010-11-10 16:40:20 +00008070 goto fail_unpin;
8071 }
8072
Ben Widawskyf343c5f2013-07-05 14:41:04 -07008073 addr = i915_gem_obj_ggtt_offset(obj);
Dave Airlie71acb5e2008-12-30 20:31:46 +10008074 } else {
Chris Wilson6eeefaf2010-08-07 11:01:39 +01008075 int align = IS_I830(dev) ? 16 * 1024 : 256;
Chris Wilson05394f32010-11-08 19:18:58 +00008076 ret = i915_gem_attach_phys_object(dev, obj,
Chris Wilson6eeefaf2010-08-07 11:01:39 +01008077 (intel_crtc->pipe == 0) ? I915_GEM_PHYS_CURSOR_0 : I915_GEM_PHYS_CURSOR_1,
8078 align);
Dave Airlie71acb5e2008-12-30 20:31:46 +10008079 if (ret) {
Daniel Vetter3b25b312014-02-14 14:06:06 +01008080 DRM_DEBUG_KMS("failed to attach phys object\n");
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05008081 goto fail_locked;
Dave Airlie71acb5e2008-12-30 20:31:46 +10008082 }
Chris Wilson05394f32010-11-08 19:18:58 +00008083 addr = obj->phys_obj->handle->busaddr;
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05008084 }
8085
Chris Wilsona6c45cf2010-09-17 00:32:17 +01008086 if (IS_GEN2(dev))
Jesse Barnes14b603912009-05-20 16:47:08 -04008087 I915_WRITE(CURSIZE, (height << 12) | width);
8088
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05008089 finish:
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05008090 if (intel_crtc->cursor_bo) {
Damien Lespiau3d13ef22014-02-07 19:12:47 +00008091 if (INTEL_INFO(dev)->cursor_needs_physical) {
Chris Wilson05394f32010-11-08 19:18:58 +00008092 if (intel_crtc->cursor_bo != obj)
Dave Airlie71acb5e2008-12-30 20:31:46 +10008093 i915_gem_detach_phys_object(dev, intel_crtc->cursor_bo);
8094 } else
Chris Wilsoncc98b412013-08-09 12:25:09 +01008095 i915_gem_object_unpin_from_display_plane(intel_crtc->cursor_bo);
Chris Wilson05394f32010-11-08 19:18:58 +00008096 drm_gem_object_unreference(&intel_crtc->cursor_bo->base);
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05008097 }
Jesse Barnes80824002009-09-10 15:28:06 -07008098
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05008099 mutex_unlock(&dev->struct_mutex);
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05008100
Chris Wilson64f962e2014-03-26 12:38:15 +00008101 old_width = intel_crtc->cursor_width;
8102
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05008103 intel_crtc->cursor_addr = addr;
Chris Wilson05394f32010-11-08 19:18:58 +00008104 intel_crtc->cursor_bo = obj;
Chris Wilsoncda4b7d2010-07-09 08:45:04 +01008105 intel_crtc->cursor_width = width;
8106 intel_crtc->cursor_height = height;
8107
Chris Wilson64f962e2014-03-26 12:38:15 +00008108 if (intel_crtc->active) {
8109 if (old_width != width)
8110 intel_update_watermarks(crtc);
Ville Syrjäläf2f5f7712013-09-17 18:33:44 +03008111 intel_crtc_update_cursor(crtc, intel_crtc->cursor_bo != NULL);
Chris Wilson64f962e2014-03-26 12:38:15 +00008112 }
Kristian Høgsberg3f8bc372008-12-17 22:14:59 -05008113
Jesse Barnes79e53942008-11-07 14:24:08 -08008114 return 0;
Chris Wilsone7b526b2010-06-02 08:30:48 +01008115fail_unpin:
Chris Wilsoncc98b412013-08-09 12:25:09 +01008116 i915_gem_object_unpin_from_display_plane(obj);
Kristian Høgsberg7f9872e2009-02-13 20:56:49 -05008117fail_locked:
Dave Airlie34b8686e2009-01-15 14:03:07 +10008118 mutex_unlock(&dev->struct_mutex);
Luca Barbieribc9025b2010-02-09 05:49:12 +00008119fail:
Chris Wilson05394f32010-11-08 19:18:58 +00008120 drm_gem_object_unreference_unlocked(&obj->base);
Dave Airlie34b8686e2009-01-15 14:03:07 +10008121 return ret;
Jesse Barnes79e53942008-11-07 14:24:08 -08008122}
8123
8124static int intel_crtc_cursor_move(struct drm_crtc *crtc, int x, int y)
8125{
Jesse Barnes79e53942008-11-07 14:24:08 -08008126 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08008127
Ville Syrjälä92e76c82013-10-21 19:01:58 +03008128 intel_crtc->cursor_x = clamp_t(int, x, SHRT_MIN, SHRT_MAX);
8129 intel_crtc->cursor_y = clamp_t(int, y, SHRT_MIN, SHRT_MAX);
Jesse Barnes652c3932009-08-17 13:31:43 -07008130
Ville Syrjäläf2f5f7712013-09-17 18:33:44 +03008131 if (intel_crtc->active)
8132 intel_crtc_update_cursor(crtc, intel_crtc->cursor_bo != NULL);
Jesse Barnes79e53942008-11-07 14:24:08 -08008133
8134 return 0;
8135}
8136
Jesse Barnes79e53942008-11-07 14:24:08 -08008137static void intel_crtc_gamma_set(struct drm_crtc *crtc, u16 *red, u16 *green,
James Simmons72034252010-08-03 01:33:19 +01008138 u16 *blue, uint32_t start, uint32_t size)
Jesse Barnes79e53942008-11-07 14:24:08 -08008139{
James Simmons72034252010-08-03 01:33:19 +01008140 int end = (start + size > 256) ? 256 : start + size, i;
Jesse Barnes79e53942008-11-07 14:24:08 -08008141 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08008142
James Simmons72034252010-08-03 01:33:19 +01008143 for (i = start; i < end; i++) {
Jesse Barnes79e53942008-11-07 14:24:08 -08008144 intel_crtc->lut_r[i] = red[i] >> 8;
8145 intel_crtc->lut_g[i] = green[i] >> 8;
8146 intel_crtc->lut_b[i] = blue[i] >> 8;
8147 }
8148
8149 intel_crtc_load_lut(crtc);
8150}
8151
Jesse Barnes79e53942008-11-07 14:24:08 -08008152/* VESA 640x480x72Hz mode to set on the pipe */
8153static struct drm_display_mode load_detect_mode = {
8154 DRM_MODE("640x480", DRM_MODE_TYPE_DEFAULT, 31500, 640, 664,
8155 704, 832, 0, 480, 489, 491, 520, 0, DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC),
8156};
8157
Daniel Vettera8bb6812014-02-10 18:00:39 +01008158struct drm_framebuffer *
8159__intel_framebuffer_create(struct drm_device *dev,
8160 struct drm_mode_fb_cmd2 *mode_cmd,
8161 struct drm_i915_gem_object *obj)
Chris Wilsond2dff872011-04-19 08:36:26 +01008162{
8163 struct intel_framebuffer *intel_fb;
8164 int ret;
8165
8166 intel_fb = kzalloc(sizeof(*intel_fb), GFP_KERNEL);
8167 if (!intel_fb) {
8168 drm_gem_object_unreference_unlocked(&obj->base);
8169 return ERR_PTR(-ENOMEM);
8170 }
8171
8172 ret = intel_framebuffer_init(dev, intel_fb, mode_cmd, obj);
Daniel Vetterdd4916c2013-10-09 21:23:51 +02008173 if (ret)
8174 goto err;
Chris Wilsond2dff872011-04-19 08:36:26 +01008175
8176 return &intel_fb->base;
Daniel Vetterdd4916c2013-10-09 21:23:51 +02008177err:
8178 drm_gem_object_unreference_unlocked(&obj->base);
8179 kfree(intel_fb);
8180
8181 return ERR_PTR(ret);
Chris Wilsond2dff872011-04-19 08:36:26 +01008182}
8183
Daniel Vetterb5ea6422014-03-02 21:18:00 +01008184static struct drm_framebuffer *
Daniel Vettera8bb6812014-02-10 18:00:39 +01008185intel_framebuffer_create(struct drm_device *dev,
8186 struct drm_mode_fb_cmd2 *mode_cmd,
8187 struct drm_i915_gem_object *obj)
8188{
8189 struct drm_framebuffer *fb;
8190 int ret;
8191
8192 ret = i915_mutex_lock_interruptible(dev);
8193 if (ret)
8194 return ERR_PTR(ret);
8195 fb = __intel_framebuffer_create(dev, mode_cmd, obj);
8196 mutex_unlock(&dev->struct_mutex);
8197
8198 return fb;
8199}
8200
Chris Wilsond2dff872011-04-19 08:36:26 +01008201static u32
8202intel_framebuffer_pitch_for_width(int width, int bpp)
8203{
8204 u32 pitch = DIV_ROUND_UP(width * bpp, 8);
8205 return ALIGN(pitch, 64);
8206}
8207
8208static u32
8209intel_framebuffer_size_for_mode(struct drm_display_mode *mode, int bpp)
8210{
8211 u32 pitch = intel_framebuffer_pitch_for_width(mode->hdisplay, bpp);
8212 return ALIGN(pitch * mode->vdisplay, PAGE_SIZE);
8213}
8214
8215static struct drm_framebuffer *
8216intel_framebuffer_create_for_mode(struct drm_device *dev,
8217 struct drm_display_mode *mode,
8218 int depth, int bpp)
8219{
8220 struct drm_i915_gem_object *obj;
Chris Wilson0fed39b2012-11-05 22:25:07 +00008221 struct drm_mode_fb_cmd2 mode_cmd = { 0 };
Chris Wilsond2dff872011-04-19 08:36:26 +01008222
8223 obj = i915_gem_alloc_object(dev,
8224 intel_framebuffer_size_for_mode(mode, bpp));
8225 if (obj == NULL)
8226 return ERR_PTR(-ENOMEM);
8227
8228 mode_cmd.width = mode->hdisplay;
8229 mode_cmd.height = mode->vdisplay;
Jesse Barnes308e5bc2011-11-14 14:51:28 -08008230 mode_cmd.pitches[0] = intel_framebuffer_pitch_for_width(mode_cmd.width,
8231 bpp);
Dave Airlie5ca0c342012-02-23 15:33:40 +00008232 mode_cmd.pixel_format = drm_mode_legacy_fb_format(bpp, depth);
Chris Wilsond2dff872011-04-19 08:36:26 +01008233
8234 return intel_framebuffer_create(dev, &mode_cmd, obj);
8235}
8236
8237static struct drm_framebuffer *
8238mode_fits_in_fbdev(struct drm_device *dev,
8239 struct drm_display_mode *mode)
8240{
Daniel Vetter4520f532013-10-09 09:18:51 +02008241#ifdef CONFIG_DRM_I915_FBDEV
Chris Wilsond2dff872011-04-19 08:36:26 +01008242 struct drm_i915_private *dev_priv = dev->dev_private;
8243 struct drm_i915_gem_object *obj;
8244 struct drm_framebuffer *fb;
8245
Daniel Vetter4c0e5522014-02-14 16:35:54 +01008246 if (!dev_priv->fbdev)
8247 return NULL;
8248
8249 if (!dev_priv->fbdev->fb)
Chris Wilsond2dff872011-04-19 08:36:26 +01008250 return NULL;
8251
Jesse Barnes8bcd4552014-02-07 12:10:38 -08008252 obj = dev_priv->fbdev->fb->obj;
Daniel Vetter4c0e5522014-02-14 16:35:54 +01008253 BUG_ON(!obj);
Chris Wilsond2dff872011-04-19 08:36:26 +01008254
Jesse Barnes8bcd4552014-02-07 12:10:38 -08008255 fb = &dev_priv->fbdev->fb->base;
Ville Syrjälä01f2c772011-12-20 00:06:49 +02008256 if (fb->pitches[0] < intel_framebuffer_pitch_for_width(mode->hdisplay,
8257 fb->bits_per_pixel))
Chris Wilsond2dff872011-04-19 08:36:26 +01008258 return NULL;
8259
Ville Syrjälä01f2c772011-12-20 00:06:49 +02008260 if (obj->base.size < mode->vdisplay * fb->pitches[0])
Chris Wilsond2dff872011-04-19 08:36:26 +01008261 return NULL;
8262
8263 return fb;
Daniel Vetter4520f532013-10-09 09:18:51 +02008264#else
8265 return NULL;
8266#endif
Chris Wilsond2dff872011-04-19 08:36:26 +01008267}
8268
Daniel Vetterd2434ab2012-08-12 21:20:10 +02008269bool intel_get_load_detect_pipe(struct drm_connector *connector,
Chris Wilson71731882011-04-19 23:10:58 +01008270 struct drm_display_mode *mode,
Chris Wilson8261b192011-04-19 23:18:09 +01008271 struct intel_load_detect_pipe *old)
Jesse Barnes79e53942008-11-07 14:24:08 -08008272{
8273 struct intel_crtc *intel_crtc;
Daniel Vetterd2434ab2012-08-12 21:20:10 +02008274 struct intel_encoder *intel_encoder =
8275 intel_attached_encoder(connector);
Jesse Barnes79e53942008-11-07 14:24:08 -08008276 struct drm_crtc *possible_crtc;
Chris Wilson4ef69c72010-09-09 15:14:28 +01008277 struct drm_encoder *encoder = &intel_encoder->base;
Jesse Barnes79e53942008-11-07 14:24:08 -08008278 struct drm_crtc *crtc = NULL;
8279 struct drm_device *dev = encoder->dev;
Daniel Vetter94352cf2012-07-05 22:51:56 +02008280 struct drm_framebuffer *fb;
Jesse Barnes79e53942008-11-07 14:24:08 -08008281 int i = -1;
8282
Chris Wilsond2dff872011-04-19 08:36:26 +01008283 DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
8284 connector->base.id, drm_get_connector_name(connector),
8285 encoder->base.id, drm_get_encoder_name(encoder));
8286
Jesse Barnes79e53942008-11-07 14:24:08 -08008287 /*
8288 * Algorithm gets a little messy:
Chris Wilson7a5e4802011-04-19 23:21:12 +01008289 *
Jesse Barnes79e53942008-11-07 14:24:08 -08008290 * - if the connector already has an assigned crtc, use it (but make
8291 * sure it's on first)
Chris Wilson7a5e4802011-04-19 23:21:12 +01008292 *
Jesse Barnes79e53942008-11-07 14:24:08 -08008293 * - try to find the first unused crtc that can drive this connector,
8294 * and use that if we find one
Jesse Barnes79e53942008-11-07 14:24:08 -08008295 */
8296
8297 /* See if we already have a CRTC for this connector */
8298 if (encoder->crtc) {
8299 crtc = encoder->crtc;
Chris Wilson8261b192011-04-19 23:18:09 +01008300
Daniel Vetter7b240562012-12-12 00:35:33 +01008301 mutex_lock(&crtc->mutex);
8302
Daniel Vetter24218aa2012-08-12 19:27:11 +02008303 old->dpms_mode = connector->dpms;
Chris Wilson8261b192011-04-19 23:18:09 +01008304 old->load_detect_temp = false;
8305
8306 /* Make sure the crtc and connector are running */
Daniel Vetter24218aa2012-08-12 19:27:11 +02008307 if (connector->dpms != DRM_MODE_DPMS_ON)
8308 connector->funcs->dpms(connector, DRM_MODE_DPMS_ON);
Chris Wilson8261b192011-04-19 23:18:09 +01008309
Chris Wilson71731882011-04-19 23:10:58 +01008310 return true;
Jesse Barnes79e53942008-11-07 14:24:08 -08008311 }
8312
8313 /* Find an unused one (if possible) */
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01008314 for_each_crtc(dev, possible_crtc) {
Jesse Barnes79e53942008-11-07 14:24:08 -08008315 i++;
8316 if (!(encoder->possible_crtcs & (1 << i)))
8317 continue;
8318 if (!possible_crtc->enabled) {
8319 crtc = possible_crtc;
8320 break;
8321 }
Jesse Barnes79e53942008-11-07 14:24:08 -08008322 }
8323
8324 /*
8325 * If we didn't find an unused CRTC, don't use any.
8326 */
8327 if (!crtc) {
Chris Wilson71731882011-04-19 23:10:58 +01008328 DRM_DEBUG_KMS("no pipe available for load-detect\n");
8329 return false;
Jesse Barnes79e53942008-11-07 14:24:08 -08008330 }
8331
Daniel Vetter7b240562012-12-12 00:35:33 +01008332 mutex_lock(&crtc->mutex);
Daniel Vetterfc303102012-07-09 10:40:58 +02008333 intel_encoder->new_crtc = to_intel_crtc(crtc);
8334 to_intel_connector(connector)->new_encoder = intel_encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08008335
8336 intel_crtc = to_intel_crtc(crtc);
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008337 intel_crtc->new_enabled = true;
8338 intel_crtc->new_config = &intel_crtc->config;
Daniel Vetter24218aa2012-08-12 19:27:11 +02008339 old->dpms_mode = connector->dpms;
Chris Wilson8261b192011-04-19 23:18:09 +01008340 old->load_detect_temp = true;
Chris Wilsond2dff872011-04-19 08:36:26 +01008341 old->release_fb = NULL;
Jesse Barnes79e53942008-11-07 14:24:08 -08008342
Chris Wilson64927112011-04-20 07:25:26 +01008343 if (!mode)
8344 mode = &load_detect_mode;
Jesse Barnes79e53942008-11-07 14:24:08 -08008345
Chris Wilsond2dff872011-04-19 08:36:26 +01008346 /* We need a framebuffer large enough to accommodate all accesses
8347 * that the plane may generate whilst we perform load detection.
8348 * We can not rely on the fbcon either being present (we get called
8349 * during its initialisation to detect all boot displays, or it may
8350 * not even exist) or that it is large enough to satisfy the
8351 * requested mode.
8352 */
Daniel Vetter94352cf2012-07-05 22:51:56 +02008353 fb = mode_fits_in_fbdev(dev, mode);
8354 if (fb == NULL) {
Chris Wilsond2dff872011-04-19 08:36:26 +01008355 DRM_DEBUG_KMS("creating tmp fb for load-detection\n");
Daniel Vetter94352cf2012-07-05 22:51:56 +02008356 fb = intel_framebuffer_create_for_mode(dev, mode, 24, 32);
8357 old->release_fb = fb;
Chris Wilsond2dff872011-04-19 08:36:26 +01008358 } else
8359 DRM_DEBUG_KMS("reusing fbdev for load-detection framebuffer\n");
Daniel Vetter94352cf2012-07-05 22:51:56 +02008360 if (IS_ERR(fb)) {
Chris Wilsond2dff872011-04-19 08:36:26 +01008361 DRM_DEBUG_KMS("failed to allocate framebuffer for load-detection\n");
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008362 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -08008363 }
Chris Wilsond2dff872011-04-19 08:36:26 +01008364
Chris Wilsonc0c36b942012-12-19 16:08:43 +00008365 if (intel_set_mode(crtc, mode, 0, 0, fb)) {
Chris Wilson64927112011-04-20 07:25:26 +01008366 DRM_DEBUG_KMS("failed to set mode on load-detect pipe\n");
Chris Wilsond2dff872011-04-19 08:36:26 +01008367 if (old->release_fb)
8368 old->release_fb->funcs->destroy(old->release_fb);
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008369 goto fail;
Jesse Barnes79e53942008-11-07 14:24:08 -08008370 }
Chris Wilson71731882011-04-19 23:10:58 +01008371
Jesse Barnes79e53942008-11-07 14:24:08 -08008372 /* let the connector get through one full cycle before testing */
Jesse Barnes9d0498a2010-08-18 13:20:54 -07008373 intel_wait_for_vblank(dev, intel_crtc->pipe);
Chris Wilson71731882011-04-19 23:10:58 +01008374 return true;
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008375
8376 fail:
8377 intel_crtc->new_enabled = crtc->enabled;
8378 if (intel_crtc->new_enabled)
8379 intel_crtc->new_config = &intel_crtc->config;
8380 else
8381 intel_crtc->new_config = NULL;
8382 mutex_unlock(&crtc->mutex);
8383 return false;
Jesse Barnes79e53942008-11-07 14:24:08 -08008384}
8385
Daniel Vetterd2434ab2012-08-12 21:20:10 +02008386void intel_release_load_detect_pipe(struct drm_connector *connector,
Chris Wilson8261b192011-04-19 23:18:09 +01008387 struct intel_load_detect_pipe *old)
Jesse Barnes79e53942008-11-07 14:24:08 -08008388{
Daniel Vetterd2434ab2012-08-12 21:20:10 +02008389 struct intel_encoder *intel_encoder =
8390 intel_attached_encoder(connector);
Chris Wilson4ef69c72010-09-09 15:14:28 +01008391 struct drm_encoder *encoder = &intel_encoder->base;
Daniel Vetter7b240562012-12-12 00:35:33 +01008392 struct drm_crtc *crtc = encoder->crtc;
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008393 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -08008394
Chris Wilsond2dff872011-04-19 08:36:26 +01008395 DRM_DEBUG_KMS("[CONNECTOR:%d:%s], [ENCODER:%d:%s]\n",
8396 connector->base.id, drm_get_connector_name(connector),
8397 encoder->base.id, drm_get_encoder_name(encoder));
8398
Chris Wilson8261b192011-04-19 23:18:09 +01008399 if (old->load_detect_temp) {
Daniel Vetterfc303102012-07-09 10:40:58 +02008400 to_intel_connector(connector)->new_encoder = NULL;
8401 intel_encoder->new_crtc = NULL;
Ville Syrjälä412b61d2014-01-17 15:59:39 +02008402 intel_crtc->new_enabled = false;
8403 intel_crtc->new_config = NULL;
Daniel Vetterfc303102012-07-09 10:40:58 +02008404 intel_set_mode(crtc, NULL, 0, 0, NULL);
Chris Wilsond2dff872011-04-19 08:36:26 +01008405
Daniel Vetter36206362012-12-10 20:42:17 +01008406 if (old->release_fb) {
8407 drm_framebuffer_unregister_private(old->release_fb);
8408 drm_framebuffer_unreference(old->release_fb);
8409 }
Chris Wilsond2dff872011-04-19 08:36:26 +01008410
Daniel Vetter67c96402013-01-23 16:25:09 +00008411 mutex_unlock(&crtc->mutex);
Chris Wilson0622a532011-04-21 09:32:11 +01008412 return;
Jesse Barnes79e53942008-11-07 14:24:08 -08008413 }
8414
Eric Anholtc751ce42010-03-25 11:48:48 -07008415 /* Switch crtc and encoder back off if necessary */
Daniel Vetter24218aa2012-08-12 19:27:11 +02008416 if (old->dpms_mode != DRM_MODE_DPMS_ON)
8417 connector->funcs->dpms(connector, old->dpms_mode);
Daniel Vetter7b240562012-12-12 00:35:33 +01008418
8419 mutex_unlock(&crtc->mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -08008420}
8421
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +03008422static int i9xx_pll_refclk(struct drm_device *dev,
8423 const struct intel_crtc_config *pipe_config)
8424{
8425 struct drm_i915_private *dev_priv = dev->dev_private;
8426 u32 dpll = pipe_config->dpll_hw_state.dpll;
8427
8428 if ((dpll & PLL_REF_INPUT_MASK) == PLLB_REF_INPUT_SPREADSPECTRUMIN)
Ville Syrjäläe91e9412013-12-09 18:54:16 +02008429 return dev_priv->vbt.lvds_ssc_freq;
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +03008430 else if (HAS_PCH_SPLIT(dev))
8431 return 120000;
8432 else if (!IS_GEN2(dev))
8433 return 96000;
8434 else
8435 return 48000;
8436}
8437
Jesse Barnes79e53942008-11-07 14:24:08 -08008438/* Returns the clock of the currently programmed mode of the given pipe. */
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008439static void i9xx_crtc_clock_get(struct intel_crtc *crtc,
8440 struct intel_crtc_config *pipe_config)
Jesse Barnes79e53942008-11-07 14:24:08 -08008441{
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008442 struct drm_device *dev = crtc->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -08008443 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008444 int pipe = pipe_config->cpu_transcoder;
Ville Syrjälä293623f2013-09-13 16:18:46 +03008445 u32 dpll = pipe_config->dpll_hw_state.dpll;
Jesse Barnes79e53942008-11-07 14:24:08 -08008446 u32 fp;
8447 intel_clock_t clock;
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +03008448 int refclk = i9xx_pll_refclk(dev, pipe_config);
Jesse Barnes79e53942008-11-07 14:24:08 -08008449
8450 if ((dpll & DISPLAY_RATE_SELECT_FPA1) == 0)
Ville Syrjälä293623f2013-09-13 16:18:46 +03008451 fp = pipe_config->dpll_hw_state.fp0;
Jesse Barnes79e53942008-11-07 14:24:08 -08008452 else
Ville Syrjälä293623f2013-09-13 16:18:46 +03008453 fp = pipe_config->dpll_hw_state.fp1;
Jesse Barnes79e53942008-11-07 14:24:08 -08008454
8455 clock.m1 = (fp & FP_M1_DIV_MASK) >> FP_M1_DIV_SHIFT;
Adam Jacksonf2b115e2009-12-03 17:14:42 -05008456 if (IS_PINEVIEW(dev)) {
8457 clock.n = ffs((fp & FP_N_PINEVIEW_DIV_MASK) >> FP_N_DIV_SHIFT) - 1;
8458 clock.m2 = (fp & FP_M2_PINEVIEW_DIV_MASK) >> FP_M2_DIV_SHIFT;
Shaohua Li21778322009-02-23 15:19:16 +08008459 } else {
8460 clock.n = (fp & FP_N_DIV_MASK) >> FP_N_DIV_SHIFT;
8461 clock.m2 = (fp & FP_M2_DIV_MASK) >> FP_M2_DIV_SHIFT;
8462 }
8463
Chris Wilsona6c45cf2010-09-17 00:32:17 +01008464 if (!IS_GEN2(dev)) {
Adam Jacksonf2b115e2009-12-03 17:14:42 -05008465 if (IS_PINEVIEW(dev))
8466 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_PINEVIEW) >>
8467 DPLL_FPA01_P1_POST_DIV_SHIFT_PINEVIEW);
Shaohua Li21778322009-02-23 15:19:16 +08008468 else
8469 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK) >>
Jesse Barnes79e53942008-11-07 14:24:08 -08008470 DPLL_FPA01_P1_POST_DIV_SHIFT);
8471
8472 switch (dpll & DPLL_MODE_MASK) {
8473 case DPLLB_MODE_DAC_SERIAL:
8474 clock.p2 = dpll & DPLL_DAC_SERIAL_P2_CLOCK_DIV_5 ?
8475 5 : 10;
8476 break;
8477 case DPLLB_MODE_LVDS:
8478 clock.p2 = dpll & DPLLB_LVDS_P2_CLOCK_DIV_7 ?
8479 7 : 14;
8480 break;
8481 default:
Zhao Yakui28c97732009-10-09 11:39:41 +08008482 DRM_DEBUG_KMS("Unknown DPLL mode %08x in programmed "
Jesse Barnes79e53942008-11-07 14:24:08 -08008483 "mode\n", (int)(dpll & DPLL_MODE_MASK));
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008484 return;
Jesse Barnes79e53942008-11-07 14:24:08 -08008485 }
8486
Daniel Vetterac58c3f2013-06-01 17:16:17 +02008487 if (IS_PINEVIEW(dev))
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +03008488 pineview_clock(refclk, &clock);
Daniel Vetterac58c3f2013-06-01 17:16:17 +02008489 else
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +03008490 i9xx_clock(refclk, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08008491 } else {
Ville Syrjälä0fb58222014-01-10 14:06:46 +02008492 u32 lvds = IS_I830(dev) ? 0 : I915_READ(LVDS);
Ville Syrjäläb1c560d2013-12-09 18:54:13 +02008493 bool is_lvds = (pipe == 1) && (lvds & LVDS_PORT_EN);
Jesse Barnes79e53942008-11-07 14:24:08 -08008494
8495 if (is_lvds) {
8496 clock.p1 = ffs((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830_LVDS) >>
8497 DPLL_FPA01_P1_POST_DIV_SHIFT);
Ville Syrjäläb1c560d2013-12-09 18:54:13 +02008498
8499 if (lvds & LVDS_CLKB_POWER_UP)
8500 clock.p2 = 7;
8501 else
8502 clock.p2 = 14;
Jesse Barnes79e53942008-11-07 14:24:08 -08008503 } else {
8504 if (dpll & PLL_P1_DIVIDE_BY_TWO)
8505 clock.p1 = 2;
8506 else {
8507 clock.p1 = ((dpll & DPLL_FPA01_P1_POST_DIV_MASK_I830) >>
8508 DPLL_FPA01_P1_POST_DIV_SHIFT) + 2;
8509 }
8510 if (dpll & PLL_P2_DIVIDE_BY_4)
8511 clock.p2 = 4;
8512 else
8513 clock.p2 = 2;
Jesse Barnes79e53942008-11-07 14:24:08 -08008514 }
Ville Syrjäläda4a1ef2013-09-09 14:06:37 +03008515
8516 i9xx_clock(refclk, &clock);
Jesse Barnes79e53942008-11-07 14:24:08 -08008517 }
8518
Ville Syrjälä18442d02013-09-13 16:00:08 +03008519 /*
8520 * This value includes pixel_multiplier. We will use
Damien Lespiau241bfc32013-09-25 16:45:37 +01008521 * port_clock to compute adjusted_mode.crtc_clock in the
Ville Syrjälä18442d02013-09-13 16:00:08 +03008522 * encoder's get_config() function.
8523 */
8524 pipe_config->port_clock = clock.dot;
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008525}
8526
Ville Syrjälä6878da02013-09-13 15:59:11 +03008527int intel_dotclock_calculate(int link_freq,
8528 const struct intel_link_m_n *m_n)
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008529{
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008530 /*
8531 * The calculation for the data clock is:
Ville Syrjälä1041a022013-09-06 23:28:58 +03008532 * pixel_clock = ((m/n)*(link_clock * nr_lanes))/bpp
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008533 * But we want to avoid losing precison if possible, so:
Ville Syrjälä1041a022013-09-06 23:28:58 +03008534 * pixel_clock = ((m * link_clock * nr_lanes)/(n*bpp))
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008535 *
8536 * and the link clock is simpler:
Ville Syrjälä1041a022013-09-06 23:28:58 +03008537 * link_clock = (m * link_clock) / n
Jesse Barnes79e53942008-11-07 14:24:08 -08008538 */
8539
Ville Syrjälä6878da02013-09-13 15:59:11 +03008540 if (!m_n->link_n)
8541 return 0;
8542
8543 return div_u64((u64)m_n->link_m * link_freq, m_n->link_n);
8544}
8545
Ville Syrjälä18442d02013-09-13 16:00:08 +03008546static void ironlake_pch_clock_get(struct intel_crtc *crtc,
8547 struct intel_crtc_config *pipe_config)
Ville Syrjälä6878da02013-09-13 15:59:11 +03008548{
8549 struct drm_device *dev = crtc->base.dev;
Ville Syrjälä18442d02013-09-13 16:00:08 +03008550
8551 /* read out port_clock from the DPLL */
8552 i9xx_crtc_clock_get(crtc, pipe_config);
Ville Syrjälä6878da02013-09-13 15:59:11 +03008553
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008554 /*
Ville Syrjälä18442d02013-09-13 16:00:08 +03008555 * This value does not include pixel_multiplier.
Damien Lespiau241bfc32013-09-25 16:45:37 +01008556 * We will check that port_clock and adjusted_mode.crtc_clock
Ville Syrjälä18442d02013-09-13 16:00:08 +03008557 * agree once we know their relationship in the encoder's
8558 * get_config() function.
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008559 */
Damien Lespiau241bfc32013-09-25 16:45:37 +01008560 pipe_config->adjusted_mode.crtc_clock =
Ville Syrjälä18442d02013-09-13 16:00:08 +03008561 intel_dotclock_calculate(intel_fdi_link_freq(dev) * 10000,
8562 &pipe_config->fdi_m_n);
Jesse Barnes79e53942008-11-07 14:24:08 -08008563}
8564
8565/** Returns the currently programmed mode of the given pipe. */
8566struct drm_display_mode *intel_crtc_mode_get(struct drm_device *dev,
8567 struct drm_crtc *crtc)
8568{
Jesse Barnes548f2452011-02-17 10:40:53 -08008569 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -08008570 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter3b117c82013-04-17 20:15:07 +02008571 enum transcoder cpu_transcoder = intel_crtc->config.cpu_transcoder;
Jesse Barnes79e53942008-11-07 14:24:08 -08008572 struct drm_display_mode *mode;
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008573 struct intel_crtc_config pipe_config;
Paulo Zanonife2b8f92012-10-23 18:30:02 -02008574 int htot = I915_READ(HTOTAL(cpu_transcoder));
8575 int hsync = I915_READ(HSYNC(cpu_transcoder));
8576 int vtot = I915_READ(VTOTAL(cpu_transcoder));
8577 int vsync = I915_READ(VSYNC(cpu_transcoder));
Ville Syrjälä293623f2013-09-13 16:18:46 +03008578 enum pipe pipe = intel_crtc->pipe;
Jesse Barnes79e53942008-11-07 14:24:08 -08008579
8580 mode = kzalloc(sizeof(*mode), GFP_KERNEL);
8581 if (!mode)
8582 return NULL;
8583
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008584 /*
8585 * Construct a pipe_config sufficient for getting the clock info
8586 * back out of crtc_clock_get.
8587 *
8588 * Note, if LVDS ever uses a non-1 pixel multiplier, we'll need
8589 * to use a real value here instead.
8590 */
Ville Syrjälä293623f2013-09-13 16:18:46 +03008591 pipe_config.cpu_transcoder = (enum transcoder) pipe;
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008592 pipe_config.pixel_multiplier = 1;
Ville Syrjälä293623f2013-09-13 16:18:46 +03008593 pipe_config.dpll_hw_state.dpll = I915_READ(DPLL(pipe));
8594 pipe_config.dpll_hw_state.fp0 = I915_READ(FP0(pipe));
8595 pipe_config.dpll_hw_state.fp1 = I915_READ(FP1(pipe));
Jesse Barnesf1f644d2013-06-27 00:39:25 +03008596 i9xx_crtc_clock_get(intel_crtc, &pipe_config);
8597
Ville Syrjälä773ae032013-09-23 17:48:20 +03008598 mode->clock = pipe_config.port_clock / pipe_config.pixel_multiplier;
Jesse Barnes79e53942008-11-07 14:24:08 -08008599 mode->hdisplay = (htot & 0xffff) + 1;
8600 mode->htotal = ((htot & 0xffff0000) >> 16) + 1;
8601 mode->hsync_start = (hsync & 0xffff) + 1;
8602 mode->hsync_end = ((hsync & 0xffff0000) >> 16) + 1;
8603 mode->vdisplay = (vtot & 0xffff) + 1;
8604 mode->vtotal = ((vtot & 0xffff0000) >> 16) + 1;
8605 mode->vsync_start = (vsync & 0xffff) + 1;
8606 mode->vsync_end = ((vsync & 0xffff0000) >> 16) + 1;
8607
8608 drm_mode_set_name(mode);
Jesse Barnes79e53942008-11-07 14:24:08 -08008609
8610 return mode;
8611}
8612
Daniel Vetter3dec0092010-08-20 21:40:52 +02008613static void intel_increase_pllclock(struct drm_crtc *crtc)
Jesse Barnes652c3932009-08-17 13:31:43 -07008614{
8615 struct drm_device *dev = crtc->dev;
Jani Nikulafbee40d2014-03-31 14:27:18 +03008616 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes652c3932009-08-17 13:31:43 -07008617 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
8618 int pipe = intel_crtc->pipe;
Jesse Barnesdbdc6472010-12-30 09:36:39 -08008619 int dpll_reg = DPLL(pipe);
8620 int dpll;
Jesse Barnes652c3932009-08-17 13:31:43 -07008621
Eric Anholtbad720f2009-10-22 16:11:14 -07008622 if (HAS_PCH_SPLIT(dev))
Jesse Barnes652c3932009-08-17 13:31:43 -07008623 return;
8624
8625 if (!dev_priv->lvds_downclock_avail)
8626 return;
8627
Jesse Barnesdbdc6472010-12-30 09:36:39 -08008628 dpll = I915_READ(dpll_reg);
Jesse Barnes652c3932009-08-17 13:31:43 -07008629 if (!HAS_PIPE_CXSR(dev) && (dpll & DISPLAY_RATE_SELECT_FPA1)) {
Zhao Yakui44d98a62009-10-09 11:39:40 +08008630 DRM_DEBUG_DRIVER("upclocking LVDS\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07008631
Sean Paul8ac5a6d2012-02-13 13:14:51 -05008632 assert_panel_unlocked(dev_priv, pipe);
Jesse Barnes652c3932009-08-17 13:31:43 -07008633
8634 dpll &= ~DISPLAY_RATE_SELECT_FPA1;
8635 I915_WRITE(dpll_reg, dpll);
Jesse Barnes9d0498a2010-08-18 13:20:54 -07008636 intel_wait_for_vblank(dev, pipe);
Jesse Barnesdbdc6472010-12-30 09:36:39 -08008637
Jesse Barnes652c3932009-08-17 13:31:43 -07008638 dpll = I915_READ(dpll_reg);
8639 if (dpll & DISPLAY_RATE_SELECT_FPA1)
Zhao Yakui44d98a62009-10-09 11:39:40 +08008640 DRM_DEBUG_DRIVER("failed to upclock LVDS!\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07008641 }
Jesse Barnes652c3932009-08-17 13:31:43 -07008642}
8643
8644static void intel_decrease_pllclock(struct drm_crtc *crtc)
8645{
8646 struct drm_device *dev = crtc->dev;
Jani Nikulafbee40d2014-03-31 14:27:18 +03008647 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes652c3932009-08-17 13:31:43 -07008648 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes652c3932009-08-17 13:31:43 -07008649
Eric Anholtbad720f2009-10-22 16:11:14 -07008650 if (HAS_PCH_SPLIT(dev))
Jesse Barnes652c3932009-08-17 13:31:43 -07008651 return;
8652
8653 if (!dev_priv->lvds_downclock_avail)
8654 return;
8655
8656 /*
8657 * Since this is called by a timer, we should never get here in
8658 * the manual case.
8659 */
8660 if (!HAS_PIPE_CXSR(dev) && intel_crtc->lowfreq_avail) {
Chris Wilson074b5e12012-05-02 12:07:06 +01008661 int pipe = intel_crtc->pipe;
8662 int dpll_reg = DPLL(pipe);
Daniel Vetterdc257cf2012-05-07 11:30:46 +02008663 int dpll;
Chris Wilson074b5e12012-05-02 12:07:06 +01008664
Zhao Yakui44d98a62009-10-09 11:39:40 +08008665 DRM_DEBUG_DRIVER("downclocking LVDS\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07008666
Sean Paul8ac5a6d2012-02-13 13:14:51 -05008667 assert_panel_unlocked(dev_priv, pipe);
Jesse Barnes652c3932009-08-17 13:31:43 -07008668
Chris Wilson074b5e12012-05-02 12:07:06 +01008669 dpll = I915_READ(dpll_reg);
Jesse Barnes652c3932009-08-17 13:31:43 -07008670 dpll |= DISPLAY_RATE_SELECT_FPA1;
8671 I915_WRITE(dpll_reg, dpll);
Jesse Barnes9d0498a2010-08-18 13:20:54 -07008672 intel_wait_for_vblank(dev, pipe);
Jesse Barnes652c3932009-08-17 13:31:43 -07008673 dpll = I915_READ(dpll_reg);
8674 if (!(dpll & DISPLAY_RATE_SELECT_FPA1))
Zhao Yakui44d98a62009-10-09 11:39:40 +08008675 DRM_DEBUG_DRIVER("failed to downclock LVDS!\n");
Jesse Barnes652c3932009-08-17 13:31:43 -07008676 }
8677
8678}
8679
Chris Wilsonf047e392012-07-21 12:31:41 +01008680void intel_mark_busy(struct drm_device *dev)
Jesse Barnes652c3932009-08-17 13:31:43 -07008681{
Paulo Zanonic67a4702013-08-19 13:18:09 -03008682 struct drm_i915_private *dev_priv = dev->dev_private;
8683
Chris Wilsonf62a0072014-02-21 17:55:39 +00008684 if (dev_priv->mm.busy)
8685 return;
8686
Paulo Zanoni43694d62014-03-07 20:08:08 -03008687 intel_runtime_pm_get(dev_priv);
Paulo Zanonic67a4702013-08-19 13:18:09 -03008688 i915_update_gfx_val(dev_priv);
Chris Wilsonf62a0072014-02-21 17:55:39 +00008689 dev_priv->mm.busy = true;
Chris Wilsonf047e392012-07-21 12:31:41 +01008690}
8691
8692void intel_mark_idle(struct drm_device *dev)
8693{
Paulo Zanonic67a4702013-08-19 13:18:09 -03008694 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson725a5b52013-01-08 11:02:57 +00008695 struct drm_crtc *crtc;
8696
Chris Wilsonf62a0072014-02-21 17:55:39 +00008697 if (!dev_priv->mm.busy)
8698 return;
8699
8700 dev_priv->mm.busy = false;
8701
Jani Nikulad330a952014-01-21 11:24:25 +02008702 if (!i915.powersave)
Paulo Zanonibb4cdd52014-02-21 13:52:19 -03008703 goto out;
Chris Wilson725a5b52013-01-08 11:02:57 +00008704
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01008705 for_each_crtc(dev, crtc) {
Matt Roperf4510a22014-04-01 15:22:40 -07008706 if (!crtc->primary->fb)
Chris Wilson725a5b52013-01-08 11:02:57 +00008707 continue;
8708
8709 intel_decrease_pllclock(crtc);
8710 }
Chris Wilsonb29c19b2013-09-25 17:34:56 +01008711
Damien Lespiau3d13ef22014-02-07 19:12:47 +00008712 if (INTEL_INFO(dev)->gen >= 6)
Chris Wilsonb29c19b2013-09-25 17:34:56 +01008713 gen6_rps_idle(dev->dev_private);
Paulo Zanonibb4cdd52014-02-21 13:52:19 -03008714
8715out:
Paulo Zanoni43694d62014-03-07 20:08:08 -03008716 intel_runtime_pm_put(dev_priv);
Chris Wilsonf047e392012-07-21 12:31:41 +01008717}
8718
Chris Wilsonc65355b2013-06-06 16:53:41 -03008719void intel_mark_fb_busy(struct drm_i915_gem_object *obj,
8720 struct intel_ring_buffer *ring)
Chris Wilsonf047e392012-07-21 12:31:41 +01008721{
8722 struct drm_device *dev = obj->base.dev;
Jesse Barnes652c3932009-08-17 13:31:43 -07008723 struct drm_crtc *crtc;
Jesse Barnes652c3932009-08-17 13:31:43 -07008724
Jani Nikulad330a952014-01-21 11:24:25 +02008725 if (!i915.powersave)
Jesse Barnes652c3932009-08-17 13:31:43 -07008726 return;
8727
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01008728 for_each_crtc(dev, crtc) {
Matt Roperf4510a22014-04-01 15:22:40 -07008729 if (!crtc->primary->fb)
Jesse Barnes652c3932009-08-17 13:31:43 -07008730 continue;
8731
Matt Roperf4510a22014-04-01 15:22:40 -07008732 if (to_intel_framebuffer(crtc->primary->fb)->obj != obj)
Chris Wilsonc65355b2013-06-06 16:53:41 -03008733 continue;
8734
8735 intel_increase_pllclock(crtc);
8736 if (ring && intel_fbc_enabled(dev))
8737 ring->fbc_dirty = true;
Jesse Barnes652c3932009-08-17 13:31:43 -07008738 }
Jesse Barnes652c3932009-08-17 13:31:43 -07008739}
8740
Jesse Barnes79e53942008-11-07 14:24:08 -08008741static void intel_crtc_destroy(struct drm_crtc *crtc)
8742{
8743 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter67e77c52010-08-20 22:26:30 +02008744 struct drm_device *dev = crtc->dev;
8745 struct intel_unpin_work *work;
8746 unsigned long flags;
8747
8748 spin_lock_irqsave(&dev->event_lock, flags);
8749 work = intel_crtc->unpin_work;
8750 intel_crtc->unpin_work = NULL;
8751 spin_unlock_irqrestore(&dev->event_lock, flags);
8752
8753 if (work) {
8754 cancel_work_sync(&work->work);
8755 kfree(work);
8756 }
Jesse Barnes79e53942008-11-07 14:24:08 -08008757
Mika Kuoppala40ccc722013-04-23 17:27:08 +03008758 intel_crtc_cursor_set(crtc, NULL, 0, 0, 0);
8759
Jesse Barnes79e53942008-11-07 14:24:08 -08008760 drm_crtc_cleanup(crtc);
Daniel Vetter67e77c52010-08-20 22:26:30 +02008761
Jesse Barnes79e53942008-11-07 14:24:08 -08008762 kfree(intel_crtc);
8763}
8764
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008765static void intel_unpin_work_fn(struct work_struct *__work)
8766{
8767 struct intel_unpin_work *work =
8768 container_of(__work, struct intel_unpin_work, work);
Chris Wilsonb4a98e52012-11-01 09:26:26 +00008769 struct drm_device *dev = work->crtc->dev;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008770
Chris Wilsonb4a98e52012-11-01 09:26:26 +00008771 mutex_lock(&dev->struct_mutex);
Chris Wilson1690e1e2011-12-14 13:57:08 +01008772 intel_unpin_fb_obj(work->old_fb_obj);
Chris Wilson05394f32010-11-08 19:18:58 +00008773 drm_gem_object_unreference(&work->pending_flip_obj->base);
8774 drm_gem_object_unreference(&work->old_fb_obj->base);
Chris Wilsond9e86c02010-11-10 16:40:20 +00008775
Chris Wilsonb4a98e52012-11-01 09:26:26 +00008776 intel_update_fbc(dev);
8777 mutex_unlock(&dev->struct_mutex);
8778
8779 BUG_ON(atomic_read(&to_intel_crtc(work->crtc)->unpin_work_count) == 0);
8780 atomic_dec(&to_intel_crtc(work->crtc)->unpin_work_count);
8781
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008782 kfree(work);
8783}
8784
Jesse Barnes1afe3e92010-03-26 10:35:20 -07008785static void do_intel_finish_page_flip(struct drm_device *dev,
Mario Kleiner49b14a52010-12-09 07:00:07 +01008786 struct drm_crtc *crtc)
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008787{
Jani Nikulafbee40d2014-03-31 14:27:18 +03008788 struct drm_i915_private *dev_priv = dev->dev_private;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008789 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
8790 struct intel_unpin_work *work;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008791 unsigned long flags;
8792
8793 /* Ignore early vblank irqs */
8794 if (intel_crtc == NULL)
8795 return;
8796
8797 spin_lock_irqsave(&dev->event_lock, flags);
8798 work = intel_crtc->unpin_work;
Chris Wilsone7d841c2012-12-03 11:36:30 +00008799
8800 /* Ensure we don't miss a work->pending update ... */
8801 smp_rmb();
8802
8803 if (work == NULL || atomic_read(&work->pending) < INTEL_FLIP_COMPLETE) {
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008804 spin_unlock_irqrestore(&dev->event_lock, flags);
8805 return;
8806 }
8807
Chris Wilsone7d841c2012-12-03 11:36:30 +00008808 /* and that the unpin work is consistent wrt ->pending. */
8809 smp_rmb();
8810
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008811 intel_crtc->unpin_work = NULL;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008812
Rob Clark45a066e2012-10-08 14:50:40 -05008813 if (work->event)
8814 drm_send_vblank_event(dev, intel_crtc->pipe, work->event);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008815
Mario Kleiner0af7e4d2010-12-08 04:07:19 +01008816 drm_vblank_put(dev, intel_crtc->pipe);
8817
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008818 spin_unlock_irqrestore(&dev->event_lock, flags);
8819
Daniel Vetter2c10d572012-12-20 21:24:07 +01008820 wake_up_all(&dev_priv->pending_flip_queue);
Chris Wilsonb4a98e52012-11-01 09:26:26 +00008821
8822 queue_work(dev_priv->wq, &work->work);
Jesse Barnese5510fa2010-07-01 16:48:37 -07008823
8824 trace_i915_flip_complete(intel_crtc->plane, work->pending_flip_obj);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008825}
8826
Jesse Barnes1afe3e92010-03-26 10:35:20 -07008827void intel_finish_page_flip(struct drm_device *dev, int pipe)
8828{
Jani Nikulafbee40d2014-03-31 14:27:18 +03008829 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes1afe3e92010-03-26 10:35:20 -07008830 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
8831
Mario Kleiner49b14a52010-12-09 07:00:07 +01008832 do_intel_finish_page_flip(dev, crtc);
Jesse Barnes1afe3e92010-03-26 10:35:20 -07008833}
8834
8835void intel_finish_page_flip_plane(struct drm_device *dev, int plane)
8836{
Jani Nikulafbee40d2014-03-31 14:27:18 +03008837 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes1afe3e92010-03-26 10:35:20 -07008838 struct drm_crtc *crtc = dev_priv->plane_to_crtc_mapping[plane];
8839
Mario Kleiner49b14a52010-12-09 07:00:07 +01008840 do_intel_finish_page_flip(dev, crtc);
Jesse Barnes1afe3e92010-03-26 10:35:20 -07008841}
8842
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008843void intel_prepare_page_flip(struct drm_device *dev, int plane)
8844{
Jani Nikulafbee40d2014-03-31 14:27:18 +03008845 struct drm_i915_private *dev_priv = dev->dev_private;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008846 struct intel_crtc *intel_crtc =
8847 to_intel_crtc(dev_priv->plane_to_crtc_mapping[plane]);
8848 unsigned long flags;
8849
Chris Wilsone7d841c2012-12-03 11:36:30 +00008850 /* NB: An MMIO update of the plane base pointer will also
8851 * generate a page-flip completion irq, i.e. every modeset
8852 * is also accompanied by a spurious intel_prepare_page_flip().
8853 */
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008854 spin_lock_irqsave(&dev->event_lock, flags);
Chris Wilsone7d841c2012-12-03 11:36:30 +00008855 if (intel_crtc->unpin_work)
8856 atomic_inc_not_zero(&intel_crtc->unpin_work->pending);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05008857 spin_unlock_irqrestore(&dev->event_lock, flags);
8858}
8859
Robin Schroereba905b2014-05-18 02:24:50 +02008860static inline void intel_mark_page_flip_active(struct intel_crtc *intel_crtc)
Chris Wilsone7d841c2012-12-03 11:36:30 +00008861{
8862 /* Ensure that the work item is consistent when activating it ... */
8863 smp_wmb();
8864 atomic_set(&intel_crtc->unpin_work->pending, INTEL_FLIP_PENDING);
8865 /* and that it is marked active as soon as the irq could fire. */
8866 smp_wmb();
8867}
8868
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008869static int intel_gen2_queue_flip(struct drm_device *dev,
8870 struct drm_crtc *crtc,
8871 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07008872 struct drm_i915_gem_object *obj,
8873 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008874{
8875 struct drm_i915_private *dev_priv = dev->dev_private;
8876 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008877 u32 flip_mask;
Daniel Vetter6d90c952012-04-26 23:28:05 +02008878 struct intel_ring_buffer *ring = &dev_priv->ring[RCS];
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008879 int ret;
8880
Daniel Vetter6d90c952012-04-26 23:28:05 +02008881 ret = intel_pin_and_fence_fb_obj(dev, obj, ring);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008882 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01008883 goto err;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008884
Daniel Vetter6d90c952012-04-26 23:28:05 +02008885 ret = intel_ring_begin(ring, 6);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008886 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01008887 goto err_unpin;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008888
8889 /* Can't queue multiple flips, so wait for the previous
8890 * one to finish before executing the next.
8891 */
8892 if (intel_crtc->plane)
8893 flip_mask = MI_WAIT_FOR_PLANE_B_FLIP;
8894 else
8895 flip_mask = MI_WAIT_FOR_PLANE_A_FLIP;
Daniel Vetter6d90c952012-04-26 23:28:05 +02008896 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | flip_mask);
8897 intel_ring_emit(ring, MI_NOOP);
8898 intel_ring_emit(ring, MI_DISPLAY_FLIP |
8899 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
8900 intel_ring_emit(ring, fb->pitches[0]);
Ben Widawskyf343c5f2013-07-05 14:41:04 -07008901 intel_ring_emit(ring, i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset);
Daniel Vetter6d90c952012-04-26 23:28:05 +02008902 intel_ring_emit(ring, 0); /* aux display base address, unused */
Chris Wilsone7d841c2012-12-03 11:36:30 +00008903
8904 intel_mark_page_flip_active(intel_crtc);
Chris Wilson09246732013-08-10 22:16:32 +01008905 __intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01008906 return 0;
8907
8908err_unpin:
8909 intel_unpin_fb_obj(obj);
8910err:
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008911 return ret;
8912}
8913
8914static int intel_gen3_queue_flip(struct drm_device *dev,
8915 struct drm_crtc *crtc,
8916 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07008917 struct drm_i915_gem_object *obj,
8918 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008919{
8920 struct drm_i915_private *dev_priv = dev->dev_private;
8921 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008922 u32 flip_mask;
Daniel Vetter6d90c952012-04-26 23:28:05 +02008923 struct intel_ring_buffer *ring = &dev_priv->ring[RCS];
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008924 int ret;
8925
Daniel Vetter6d90c952012-04-26 23:28:05 +02008926 ret = intel_pin_and_fence_fb_obj(dev, obj, ring);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008927 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01008928 goto err;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008929
Daniel Vetter6d90c952012-04-26 23:28:05 +02008930 ret = intel_ring_begin(ring, 6);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008931 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01008932 goto err_unpin;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008933
8934 if (intel_crtc->plane)
8935 flip_mask = MI_WAIT_FOR_PLANE_B_FLIP;
8936 else
8937 flip_mask = MI_WAIT_FOR_PLANE_A_FLIP;
Daniel Vetter6d90c952012-04-26 23:28:05 +02008938 intel_ring_emit(ring, MI_WAIT_FOR_EVENT | flip_mask);
8939 intel_ring_emit(ring, MI_NOOP);
8940 intel_ring_emit(ring, MI_DISPLAY_FLIP_I915 |
8941 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
8942 intel_ring_emit(ring, fb->pitches[0]);
Ben Widawskyf343c5f2013-07-05 14:41:04 -07008943 intel_ring_emit(ring, i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset);
Daniel Vetter6d90c952012-04-26 23:28:05 +02008944 intel_ring_emit(ring, MI_NOOP);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008945
Chris Wilsone7d841c2012-12-03 11:36:30 +00008946 intel_mark_page_flip_active(intel_crtc);
Chris Wilson09246732013-08-10 22:16:32 +01008947 __intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01008948 return 0;
8949
8950err_unpin:
8951 intel_unpin_fb_obj(obj);
8952err:
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008953 return ret;
8954}
8955
8956static int intel_gen4_queue_flip(struct drm_device *dev,
8957 struct drm_crtc *crtc,
8958 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07008959 struct drm_i915_gem_object *obj,
8960 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008961{
8962 struct drm_i915_private *dev_priv = dev->dev_private;
8963 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
8964 uint32_t pf, pipesrc;
Daniel Vetter6d90c952012-04-26 23:28:05 +02008965 struct intel_ring_buffer *ring = &dev_priv->ring[RCS];
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008966 int ret;
8967
Daniel Vetter6d90c952012-04-26 23:28:05 +02008968 ret = intel_pin_and_fence_fb_obj(dev, obj, ring);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008969 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01008970 goto err;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008971
Daniel Vetter6d90c952012-04-26 23:28:05 +02008972 ret = intel_ring_begin(ring, 4);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008973 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01008974 goto err_unpin;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008975
8976 /* i965+ uses the linear or tiled offsets from the
8977 * Display Registers (which do not change across a page-flip)
8978 * so we need only reprogram the base address.
8979 */
Daniel Vetter6d90c952012-04-26 23:28:05 +02008980 intel_ring_emit(ring, MI_DISPLAY_FLIP |
8981 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
8982 intel_ring_emit(ring, fb->pitches[0]);
Daniel Vetterc2c75132012-07-05 12:17:30 +02008983 intel_ring_emit(ring,
Ben Widawskyf343c5f2013-07-05 14:41:04 -07008984 (i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset) |
Daniel Vetterc2c75132012-07-05 12:17:30 +02008985 obj->tiling_mode);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07008986
8987 /* XXX Enabling the panel-fitter across page-flip is so far
8988 * untested on non-native modes, so ignore it for now.
8989 * pf = I915_READ(pipe == 0 ? PFA_CTL_1 : PFB_CTL_1) & PF_ENABLE;
8990 */
8991 pf = 0;
8992 pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff;
Daniel Vetter6d90c952012-04-26 23:28:05 +02008993 intel_ring_emit(ring, pf | pipesrc);
Chris Wilsone7d841c2012-12-03 11:36:30 +00008994
8995 intel_mark_page_flip_active(intel_crtc);
Chris Wilson09246732013-08-10 22:16:32 +01008996 __intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01008997 return 0;
8998
8999err_unpin:
9000 intel_unpin_fb_obj(obj);
9001err:
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009002 return ret;
9003}
9004
9005static int intel_gen6_queue_flip(struct drm_device *dev,
9006 struct drm_crtc *crtc,
9007 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07009008 struct drm_i915_gem_object *obj,
9009 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009010{
9011 struct drm_i915_private *dev_priv = dev->dev_private;
9012 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter6d90c952012-04-26 23:28:05 +02009013 struct intel_ring_buffer *ring = &dev_priv->ring[RCS];
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009014 uint32_t pf, pipesrc;
9015 int ret;
9016
Daniel Vetter6d90c952012-04-26 23:28:05 +02009017 ret = intel_pin_and_fence_fb_obj(dev, obj, ring);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009018 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01009019 goto err;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009020
Daniel Vetter6d90c952012-04-26 23:28:05 +02009021 ret = intel_ring_begin(ring, 4);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009022 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01009023 goto err_unpin;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009024
Daniel Vetter6d90c952012-04-26 23:28:05 +02009025 intel_ring_emit(ring, MI_DISPLAY_FLIP |
9026 MI_DISPLAY_FLIP_PLANE(intel_crtc->plane));
9027 intel_ring_emit(ring, fb->pitches[0] | obj->tiling_mode);
Ben Widawskyf343c5f2013-07-05 14:41:04 -07009028 intel_ring_emit(ring, i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009029
Chris Wilson99d9acd2012-04-17 20:37:00 +01009030 /* Contrary to the suggestions in the documentation,
9031 * "Enable Panel Fitter" does not seem to be required when page
9032 * flipping with a non-native mode, and worse causes a normal
9033 * modeset to fail.
9034 * pf = I915_READ(PF_CTL(intel_crtc->pipe)) & PF_ENABLE;
9035 */
9036 pf = 0;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009037 pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff;
Daniel Vetter6d90c952012-04-26 23:28:05 +02009038 intel_ring_emit(ring, pf | pipesrc);
Chris Wilsone7d841c2012-12-03 11:36:30 +00009039
9040 intel_mark_page_flip_active(intel_crtc);
Chris Wilson09246732013-08-10 22:16:32 +01009041 __intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01009042 return 0;
9043
9044err_unpin:
9045 intel_unpin_fb_obj(obj);
9046err:
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009047 return ret;
9048}
9049
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009050static int intel_gen7_queue_flip(struct drm_device *dev,
9051 struct drm_crtc *crtc,
9052 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07009053 struct drm_i915_gem_object *obj,
9054 uint32_t flags)
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009055{
9056 struct drm_i915_private *dev_priv = dev->dev_private;
9057 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Chris Wilsonffe74d72013-08-26 20:58:12 +01009058 struct intel_ring_buffer *ring;
Daniel Vettercb05d8d2012-05-23 14:02:00 +02009059 uint32_t plane_bit = 0;
Chris Wilsonffe74d72013-08-26 20:58:12 +01009060 int len, ret;
9061
9062 ring = obj->ring;
Chris Wilson1c5fd082013-09-04 10:54:30 +01009063 if (IS_VALLEYVIEW(dev) || ring == NULL || ring->id != RCS)
Chris Wilsonffe74d72013-08-26 20:58:12 +01009064 ring = &dev_priv->ring[BCS];
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009065
9066 ret = intel_pin_and_fence_fb_obj(dev, obj, ring);
9067 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01009068 goto err;
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009069
Robin Schroereba905b2014-05-18 02:24:50 +02009070 switch (intel_crtc->plane) {
Daniel Vettercb05d8d2012-05-23 14:02:00 +02009071 case PLANE_A:
9072 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_A;
9073 break;
9074 case PLANE_B:
9075 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_B;
9076 break;
9077 case PLANE_C:
9078 plane_bit = MI_DISPLAY_FLIP_IVB_PLANE_C;
9079 break;
9080 default:
9081 WARN_ONCE(1, "unknown plane in flip command\n");
9082 ret = -ENODEV;
Eugeni Dodonovab3951e2012-06-18 19:03:38 -03009083 goto err_unpin;
Daniel Vettercb05d8d2012-05-23 14:02:00 +02009084 }
9085
Chris Wilsonffe74d72013-08-26 20:58:12 +01009086 len = 4;
Damien Lespiauf4768282014-04-07 20:24:34 +01009087 if (ring->id == RCS) {
Chris Wilsonffe74d72013-08-26 20:58:12 +01009088 len += 6;
Damien Lespiauf4768282014-04-07 20:24:34 +01009089 /*
9090 * On Gen 8, SRM is now taking an extra dword to accommodate
9091 * 48bits addresses, and we need a NOOP for the batch size to
9092 * stay even.
9093 */
9094 if (IS_GEN8(dev))
9095 len += 2;
9096 }
Chris Wilsonffe74d72013-08-26 20:58:12 +01009097
Ville Syrjäläf66fab82014-02-11 19:52:06 +02009098 /*
9099 * BSpec MI_DISPLAY_FLIP for IVB:
9100 * "The full packet must be contained within the same cache line."
9101 *
9102 * Currently the LRI+SRM+MI_DISPLAY_FLIP all fit within the same
9103 * cacheline, if we ever start emitting more commands before
9104 * the MI_DISPLAY_FLIP we may need to first emit everything else,
9105 * then do the cacheline alignment, and finally emit the
9106 * MI_DISPLAY_FLIP.
9107 */
9108 ret = intel_ring_cacheline_align(ring);
9109 if (ret)
9110 goto err_unpin;
9111
Chris Wilsonffe74d72013-08-26 20:58:12 +01009112 ret = intel_ring_begin(ring, len);
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009113 if (ret)
Chris Wilson83d40922012-04-17 19:35:53 +01009114 goto err_unpin;
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009115
Chris Wilsonffe74d72013-08-26 20:58:12 +01009116 /* Unmask the flip-done completion message. Note that the bspec says that
9117 * we should do this for both the BCS and RCS, and that we must not unmask
9118 * more than one flip event at any time (or ensure that one flip message
9119 * can be sent by waiting for flip-done prior to queueing new flips).
9120 * Experimentation says that BCS works despite DERRMR masking all
9121 * flip-done completion events and that unmasking all planes at once
9122 * for the RCS also doesn't appear to drop events. Setting the DERRMR
9123 * to zero does lead to lockups within MI_DISPLAY_FLIP.
9124 */
9125 if (ring->id == RCS) {
9126 intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(1));
9127 intel_ring_emit(ring, DERRMR);
9128 intel_ring_emit(ring, ~(DERRMR_PIPEA_PRI_FLIP_DONE |
9129 DERRMR_PIPEB_PRI_FLIP_DONE |
9130 DERRMR_PIPEC_PRI_FLIP_DONE));
Damien Lespiauf4768282014-04-07 20:24:34 +01009131 if (IS_GEN8(dev))
9132 intel_ring_emit(ring, MI_STORE_REGISTER_MEM_GEN8(1) |
9133 MI_SRM_LRM_GLOBAL_GTT);
9134 else
9135 intel_ring_emit(ring, MI_STORE_REGISTER_MEM(1) |
9136 MI_SRM_LRM_GLOBAL_GTT);
Chris Wilsonffe74d72013-08-26 20:58:12 +01009137 intel_ring_emit(ring, DERRMR);
9138 intel_ring_emit(ring, ring->scratch.gtt_offset + 256);
Damien Lespiauf4768282014-04-07 20:24:34 +01009139 if (IS_GEN8(dev)) {
9140 intel_ring_emit(ring, 0);
9141 intel_ring_emit(ring, MI_NOOP);
9142 }
Chris Wilsonffe74d72013-08-26 20:58:12 +01009143 }
9144
Daniel Vettercb05d8d2012-05-23 14:02:00 +02009145 intel_ring_emit(ring, MI_DISPLAY_FLIP_I915 | plane_bit);
Ville Syrjälä01f2c772011-12-20 00:06:49 +02009146 intel_ring_emit(ring, (fb->pitches[0] | obj->tiling_mode));
Ben Widawskyf343c5f2013-07-05 14:41:04 -07009147 intel_ring_emit(ring, i915_gem_obj_ggtt_offset(obj) + intel_crtc->dspaddr_offset);
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009148 intel_ring_emit(ring, (MI_NOOP));
Chris Wilsone7d841c2012-12-03 11:36:30 +00009149
9150 intel_mark_page_flip_active(intel_crtc);
Chris Wilson09246732013-08-10 22:16:32 +01009151 __intel_ring_advance(ring);
Chris Wilson83d40922012-04-17 19:35:53 +01009152 return 0;
9153
9154err_unpin:
9155 intel_unpin_fb_obj(obj);
9156err:
Jesse Barnes7c9017e2011-06-16 12:18:54 -07009157 return ret;
9158}
9159
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009160static int intel_default_queue_flip(struct drm_device *dev,
9161 struct drm_crtc *crtc,
9162 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07009163 struct drm_i915_gem_object *obj,
9164 uint32_t flags)
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009165{
9166 return -ENODEV;
9167}
9168
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009169static int intel_crtc_page_flip(struct drm_crtc *crtc,
9170 struct drm_framebuffer *fb,
Keith Packarded8d1972013-07-22 18:49:58 -07009171 struct drm_pending_vblank_event *event,
9172 uint32_t page_flip_flags)
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009173{
9174 struct drm_device *dev = crtc->dev;
9175 struct drm_i915_private *dev_priv = dev->dev_private;
Matt Roperf4510a22014-04-01 15:22:40 -07009176 struct drm_framebuffer *old_fb = crtc->primary->fb;
Ville Syrjälä4a35f832013-02-22 16:53:38 +02009177 struct drm_i915_gem_object *obj = to_intel_framebuffer(fb)->obj;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009178 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
9179 struct intel_unpin_work *work;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009180 unsigned long flags;
Chris Wilson52e68632010-08-08 10:15:59 +01009181 int ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009182
Ville Syrjäläe6a595d2012-05-24 21:08:59 +03009183 /* Can't change pixel format via MI display flips. */
Matt Roperf4510a22014-04-01 15:22:40 -07009184 if (fb->pixel_format != crtc->primary->fb->pixel_format)
Ville Syrjäläe6a595d2012-05-24 21:08:59 +03009185 return -EINVAL;
9186
9187 /*
9188 * TILEOFF/LINOFF registers can't be changed via MI display flips.
9189 * Note that pitch changes could also affect these register.
9190 */
9191 if (INTEL_INFO(dev)->gen > 3 &&
Matt Roperf4510a22014-04-01 15:22:40 -07009192 (fb->offsets[0] != crtc->primary->fb->offsets[0] ||
9193 fb->pitches[0] != crtc->primary->fb->pitches[0]))
Ville Syrjäläe6a595d2012-05-24 21:08:59 +03009194 return -EINVAL;
9195
Chris Wilsonf900db42014-02-20 09:26:13 +00009196 if (i915_terminally_wedged(&dev_priv->gpu_error))
9197 goto out_hang;
9198
Daniel Vetterb14c5672013-09-19 12:18:32 +02009199 work = kzalloc(sizeof(*work), GFP_KERNEL);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009200 if (work == NULL)
9201 return -ENOMEM;
9202
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009203 work->event = event;
Chris Wilsonb4a98e52012-11-01 09:26:26 +00009204 work->crtc = crtc;
Ville Syrjälä4a35f832013-02-22 16:53:38 +02009205 work->old_fb_obj = to_intel_framebuffer(old_fb)->obj;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009206 INIT_WORK(&work->work, intel_unpin_work_fn);
9207
Jesse Barnes7317c75e62011-08-29 09:45:28 -07009208 ret = drm_vblank_get(dev, intel_crtc->pipe);
9209 if (ret)
9210 goto free_work;
9211
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009212 /* We borrow the event spin lock for protecting unpin_work */
9213 spin_lock_irqsave(&dev->event_lock, flags);
9214 if (intel_crtc->unpin_work) {
9215 spin_unlock_irqrestore(&dev->event_lock, flags);
9216 kfree(work);
Jesse Barnes7317c75e62011-08-29 09:45:28 -07009217 drm_vblank_put(dev, intel_crtc->pipe);
Chris Wilson468f0b42010-05-27 13:18:13 +01009218
9219 DRM_DEBUG_DRIVER("flip queue: crtc already busy\n");
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009220 return -EBUSY;
9221 }
9222 intel_crtc->unpin_work = work;
9223 spin_unlock_irqrestore(&dev->event_lock, flags);
9224
Chris Wilsonb4a98e52012-11-01 09:26:26 +00009225 if (atomic_read(&intel_crtc->unpin_work_count) >= 2)
9226 flush_workqueue(dev_priv->wq);
9227
Chris Wilson79158102012-05-23 11:13:58 +01009228 ret = i915_mutex_lock_interruptible(dev);
9229 if (ret)
9230 goto cleanup;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009231
Jesse Barnes75dfca82010-02-10 15:09:44 -08009232 /* Reference the objects for the scheduled work. */
Chris Wilson05394f32010-11-08 19:18:58 +00009233 drm_gem_object_reference(&work->old_fb_obj->base);
9234 drm_gem_object_reference(&obj->base);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009235
Matt Roperf4510a22014-04-01 15:22:40 -07009236 crtc->primary->fb = fb;
Chris Wilson96b099f2010-06-07 14:03:04 +01009237
Chris Wilsone1f99ce2010-10-27 12:45:26 +01009238 work->pending_flip_obj = obj;
Chris Wilsone1f99ce2010-10-27 12:45:26 +01009239
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01009240 work->enable_stall_check = true;
9241
Chris Wilsonb4a98e52012-11-01 09:26:26 +00009242 atomic_inc(&intel_crtc->unpin_work_count);
Ville Syrjälä10d83732013-01-29 18:13:34 +02009243 intel_crtc->reset_counter = atomic_read(&dev_priv->gpu_error.reset_counter);
Chris Wilsone1f99ce2010-10-27 12:45:26 +01009244
Keith Packarded8d1972013-07-22 18:49:58 -07009245 ret = dev_priv->display.queue_flip(dev, crtc, fb, obj, page_flip_flags);
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009246 if (ret)
9247 goto cleanup_pending;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009248
Chris Wilson7782de32011-07-08 12:22:41 +01009249 intel_disable_fbc(dev);
Chris Wilsonc65355b2013-06-06 16:53:41 -03009250 intel_mark_fb_busy(obj, NULL);
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009251 mutex_unlock(&dev->struct_mutex);
9252
Jesse Barnese5510fa2010-07-01 16:48:37 -07009253 trace_i915_flip_request(intel_crtc->plane, obj);
9254
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009255 return 0;
Chris Wilson96b099f2010-06-07 14:03:04 +01009256
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -07009257cleanup_pending:
Chris Wilsonb4a98e52012-11-01 09:26:26 +00009258 atomic_dec(&intel_crtc->unpin_work_count);
Matt Roperf4510a22014-04-01 15:22:40 -07009259 crtc->primary->fb = old_fb;
Chris Wilson05394f32010-11-08 19:18:58 +00009260 drm_gem_object_unreference(&work->old_fb_obj->base);
9261 drm_gem_object_unreference(&obj->base);
Chris Wilson96b099f2010-06-07 14:03:04 +01009262 mutex_unlock(&dev->struct_mutex);
9263
Chris Wilson79158102012-05-23 11:13:58 +01009264cleanup:
Chris Wilson96b099f2010-06-07 14:03:04 +01009265 spin_lock_irqsave(&dev->event_lock, flags);
9266 intel_crtc->unpin_work = NULL;
9267 spin_unlock_irqrestore(&dev->event_lock, flags);
9268
Jesse Barnes7317c75e62011-08-29 09:45:28 -07009269 drm_vblank_put(dev, intel_crtc->pipe);
9270free_work:
Chris Wilson96b099f2010-06-07 14:03:04 +01009271 kfree(work);
9272
Chris Wilsonf900db42014-02-20 09:26:13 +00009273 if (ret == -EIO) {
9274out_hang:
9275 intel_crtc_wait_for_pending_flips(crtc);
9276 ret = intel_pipe_set_base(crtc, crtc->x, crtc->y, fb);
9277 if (ret == 0 && event)
9278 drm_send_vblank_event(dev, intel_crtc->pipe, event);
9279 }
Chris Wilson96b099f2010-06-07 14:03:04 +01009280 return ret;
Kristian Høgsberg6b95a202009-11-18 11:25:18 -05009281}
9282
Chris Wilsonf6e5b162011-04-12 18:06:51 +01009283static struct drm_crtc_helper_funcs intel_helper_funcs = {
Chris Wilsonf6e5b162011-04-12 18:06:51 +01009284 .mode_set_base_atomic = intel_pipe_set_base_atomic,
9285 .load_lut = intel_crtc_load_lut,
Chris Wilsonf6e5b162011-04-12 18:06:51 +01009286};
9287
Daniel Vetter9a935852012-07-05 22:34:27 +02009288/**
9289 * intel_modeset_update_staged_output_state
9290 *
9291 * Updates the staged output configuration state, e.g. after we've read out the
9292 * current hw state.
9293 */
9294static void intel_modeset_update_staged_output_state(struct drm_device *dev)
9295{
Ville Syrjälä76688512014-01-10 11:28:06 +02009296 struct intel_crtc *crtc;
Daniel Vetter9a935852012-07-05 22:34:27 +02009297 struct intel_encoder *encoder;
9298 struct intel_connector *connector;
9299
9300 list_for_each_entry(connector, &dev->mode_config.connector_list,
9301 base.head) {
9302 connector->new_encoder =
9303 to_intel_encoder(connector->base.encoder);
9304 }
9305
9306 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
9307 base.head) {
9308 encoder->new_crtc =
9309 to_intel_crtc(encoder->base.crtc);
9310 }
Ville Syrjälä76688512014-01-10 11:28:06 +02009311
Damien Lespiaud3fcc802014-05-13 23:32:22 +01009312 for_each_intel_crtc(dev, crtc) {
Ville Syrjälä76688512014-01-10 11:28:06 +02009313 crtc->new_enabled = crtc->base.enabled;
Ville Syrjälä7bd0a8e2014-01-14 14:31:38 +02009314
9315 if (crtc->new_enabled)
9316 crtc->new_config = &crtc->config;
9317 else
9318 crtc->new_config = NULL;
Ville Syrjälä76688512014-01-10 11:28:06 +02009319 }
Daniel Vetter9a935852012-07-05 22:34:27 +02009320}
9321
9322/**
9323 * intel_modeset_commit_output_state
9324 *
9325 * This function copies the stage display pipe configuration to the real one.
9326 */
9327static void intel_modeset_commit_output_state(struct drm_device *dev)
9328{
Ville Syrjälä76688512014-01-10 11:28:06 +02009329 struct intel_crtc *crtc;
Daniel Vetter9a935852012-07-05 22:34:27 +02009330 struct intel_encoder *encoder;
9331 struct intel_connector *connector;
9332
9333 list_for_each_entry(connector, &dev->mode_config.connector_list,
9334 base.head) {
9335 connector->base.encoder = &connector->new_encoder->base;
9336 }
9337
9338 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
9339 base.head) {
9340 encoder->base.crtc = &encoder->new_crtc->base;
9341 }
Ville Syrjälä76688512014-01-10 11:28:06 +02009342
Damien Lespiaud3fcc802014-05-13 23:32:22 +01009343 for_each_intel_crtc(dev, crtc) {
Ville Syrjälä76688512014-01-10 11:28:06 +02009344 crtc->base.enabled = crtc->new_enabled;
9345 }
Daniel Vetter9a935852012-07-05 22:34:27 +02009346}
9347
Daniel Vetter050f7ae2013-06-02 13:26:23 +02009348static void
Robin Schroereba905b2014-05-18 02:24:50 +02009349connected_sink_compute_bpp(struct intel_connector *connector,
Daniel Vetter050f7ae2013-06-02 13:26:23 +02009350 struct intel_crtc_config *pipe_config)
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01009351{
Daniel Vetter050f7ae2013-06-02 13:26:23 +02009352 int bpp = pipe_config->pipe_bpp;
9353
9354 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] checking for sink bpp constrains\n",
9355 connector->base.base.id,
9356 drm_get_connector_name(&connector->base));
9357
9358 /* Don't use an invalid EDID bpc value */
9359 if (connector->base.display_info.bpc &&
9360 connector->base.display_info.bpc * 3 < bpp) {
9361 DRM_DEBUG_KMS("clamping display bpp (was %d) to EDID reported max of %d\n",
9362 bpp, connector->base.display_info.bpc*3);
9363 pipe_config->pipe_bpp = connector->base.display_info.bpc*3;
9364 }
9365
9366 /* Clamp bpp to 8 on screens without EDID 1.4 */
9367 if (connector->base.display_info.bpc == 0 && bpp > 24) {
9368 DRM_DEBUG_KMS("clamping display bpp (was %d) to default limit of 24\n",
9369 bpp);
9370 pipe_config->pipe_bpp = 24;
9371 }
9372}
9373
9374static int
9375compute_baseline_pipe_bpp(struct intel_crtc *crtc,
9376 struct drm_framebuffer *fb,
9377 struct intel_crtc_config *pipe_config)
9378{
9379 struct drm_device *dev = crtc->base.dev;
9380 struct intel_connector *connector;
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01009381 int bpp;
9382
Daniel Vetterd42264b2013-03-28 16:38:08 +01009383 switch (fb->pixel_format) {
9384 case DRM_FORMAT_C8:
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01009385 bpp = 8*3; /* since we go through a colormap */
9386 break;
Daniel Vetterd42264b2013-03-28 16:38:08 +01009387 case DRM_FORMAT_XRGB1555:
9388 case DRM_FORMAT_ARGB1555:
9389 /* checked in intel_framebuffer_init already */
9390 if (WARN_ON(INTEL_INFO(dev)->gen > 3))
9391 return -EINVAL;
9392 case DRM_FORMAT_RGB565:
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01009393 bpp = 6*3; /* min is 18bpp */
9394 break;
Daniel Vetterd42264b2013-03-28 16:38:08 +01009395 case DRM_FORMAT_XBGR8888:
9396 case DRM_FORMAT_ABGR8888:
9397 /* checked in intel_framebuffer_init already */
9398 if (WARN_ON(INTEL_INFO(dev)->gen < 4))
9399 return -EINVAL;
9400 case DRM_FORMAT_XRGB8888:
9401 case DRM_FORMAT_ARGB8888:
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01009402 bpp = 8*3;
9403 break;
Daniel Vetterd42264b2013-03-28 16:38:08 +01009404 case DRM_FORMAT_XRGB2101010:
9405 case DRM_FORMAT_ARGB2101010:
9406 case DRM_FORMAT_XBGR2101010:
9407 case DRM_FORMAT_ABGR2101010:
9408 /* checked in intel_framebuffer_init already */
9409 if (WARN_ON(INTEL_INFO(dev)->gen < 4))
Daniel Vetterbaba1332013-03-27 00:45:00 +01009410 return -EINVAL;
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01009411 bpp = 10*3;
9412 break;
Daniel Vetterbaba1332013-03-27 00:45:00 +01009413 /* TODO: gen4+ supports 16 bpc floating point, too. */
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01009414 default:
9415 DRM_DEBUG_KMS("unsupported depth\n");
9416 return -EINVAL;
9417 }
9418
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01009419 pipe_config->pipe_bpp = bpp;
9420
9421 /* Clamp display bpp to EDID value */
9422 list_for_each_entry(connector, &dev->mode_config.connector_list,
Daniel Vetter050f7ae2013-06-02 13:26:23 +02009423 base.head) {
Daniel Vetter1b829e02013-06-02 13:26:24 +02009424 if (!connector->new_encoder ||
9425 connector->new_encoder->new_crtc != crtc)
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01009426 continue;
9427
Daniel Vetter050f7ae2013-06-02 13:26:23 +02009428 connected_sink_compute_bpp(connector, pipe_config);
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01009429 }
9430
9431 return bpp;
9432}
9433
Daniel Vetter644db712013-09-19 14:53:58 +02009434static void intel_dump_crtc_timings(const struct drm_display_mode *mode)
9435{
9436 DRM_DEBUG_KMS("crtc timings: %d %d %d %d %d %d %d %d %d, "
9437 "type: 0x%x flags: 0x%x\n",
Damien Lespiau13428302013-09-25 16:45:36 +01009438 mode->crtc_clock,
Daniel Vetter644db712013-09-19 14:53:58 +02009439 mode->crtc_hdisplay, mode->crtc_hsync_start,
9440 mode->crtc_hsync_end, mode->crtc_htotal,
9441 mode->crtc_vdisplay, mode->crtc_vsync_start,
9442 mode->crtc_vsync_end, mode->crtc_vtotal, mode->type, mode->flags);
9443}
9444
Daniel Vetterc0b03412013-05-28 12:05:54 +02009445static void intel_dump_pipe_config(struct intel_crtc *crtc,
9446 struct intel_crtc_config *pipe_config,
9447 const char *context)
9448{
9449 DRM_DEBUG_KMS("[CRTC:%d]%s config for pipe %c\n", crtc->base.base.id,
9450 context, pipe_name(crtc->pipe));
9451
9452 DRM_DEBUG_KMS("cpu_transcoder: %c\n", transcoder_name(pipe_config->cpu_transcoder));
9453 DRM_DEBUG_KMS("pipe bpp: %i, dithering: %i\n",
9454 pipe_config->pipe_bpp, pipe_config->dither);
9455 DRM_DEBUG_KMS("fdi/pch: %i, lanes: %i, gmch_m: %u, gmch_n: %u, link_m: %u, link_n: %u, tu: %u\n",
9456 pipe_config->has_pch_encoder,
9457 pipe_config->fdi_lanes,
9458 pipe_config->fdi_m_n.gmch_m, pipe_config->fdi_m_n.gmch_n,
9459 pipe_config->fdi_m_n.link_m, pipe_config->fdi_m_n.link_n,
9460 pipe_config->fdi_m_n.tu);
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03009461 DRM_DEBUG_KMS("dp: %i, gmch_m: %u, gmch_n: %u, link_m: %u, link_n: %u, tu: %u\n",
9462 pipe_config->has_dp_encoder,
9463 pipe_config->dp_m_n.gmch_m, pipe_config->dp_m_n.gmch_n,
9464 pipe_config->dp_m_n.link_m, pipe_config->dp_m_n.link_n,
9465 pipe_config->dp_m_n.tu);
Daniel Vetterc0b03412013-05-28 12:05:54 +02009466 DRM_DEBUG_KMS("requested mode:\n");
9467 drm_mode_debug_printmodeline(&pipe_config->requested_mode);
9468 DRM_DEBUG_KMS("adjusted mode:\n");
9469 drm_mode_debug_printmodeline(&pipe_config->adjusted_mode);
Daniel Vetter644db712013-09-19 14:53:58 +02009470 intel_dump_crtc_timings(&pipe_config->adjusted_mode);
Ville Syrjäläd71b8d42013-09-06 23:29:08 +03009471 DRM_DEBUG_KMS("port clock: %d\n", pipe_config->port_clock);
Ville Syrjälä37327ab2013-09-04 18:25:28 +03009472 DRM_DEBUG_KMS("pipe src size: %dx%d\n",
9473 pipe_config->pipe_src_w, pipe_config->pipe_src_h);
Daniel Vetterc0b03412013-05-28 12:05:54 +02009474 DRM_DEBUG_KMS("gmch pfit: control: 0x%08x, ratios: 0x%08x, lvds border: 0x%08x\n",
9475 pipe_config->gmch_pfit.control,
9476 pipe_config->gmch_pfit.pgm_ratios,
9477 pipe_config->gmch_pfit.lvds_border_bits);
Chris Wilsonfd4daa92013-08-27 17:04:17 +01009478 DRM_DEBUG_KMS("pch pfit: pos: 0x%08x, size: 0x%08x, %s\n",
Daniel Vetterc0b03412013-05-28 12:05:54 +02009479 pipe_config->pch_pfit.pos,
Chris Wilsonfd4daa92013-08-27 17:04:17 +01009480 pipe_config->pch_pfit.size,
9481 pipe_config->pch_pfit.enabled ? "enabled" : "disabled");
Paulo Zanoni42db64e2013-05-31 16:33:22 -03009482 DRM_DEBUG_KMS("ips: %i\n", pipe_config->ips_enabled);
Ville Syrjäläcf532bb2013-09-04 18:30:02 +03009483 DRM_DEBUG_KMS("double wide: %i\n", pipe_config->double_wide);
Daniel Vetterc0b03412013-05-28 12:05:54 +02009484}
9485
Ville Syrjäläbc079e82014-03-03 16:15:28 +02009486static bool encoders_cloneable(const struct intel_encoder *a,
9487 const struct intel_encoder *b)
Daniel Vetteraccfc0c2013-05-30 15:04:25 +02009488{
Ville Syrjäläbc079e82014-03-03 16:15:28 +02009489 /* masks could be asymmetric, so check both ways */
9490 return a == b || (a->cloneable & (1 << b->type) &&
9491 b->cloneable & (1 << a->type));
9492}
Daniel Vetteraccfc0c2013-05-30 15:04:25 +02009493
Ville Syrjäläbc079e82014-03-03 16:15:28 +02009494static bool check_single_encoder_cloning(struct intel_crtc *crtc,
9495 struct intel_encoder *encoder)
9496{
9497 struct drm_device *dev = crtc->base.dev;
9498 struct intel_encoder *source_encoder;
9499
9500 list_for_each_entry(source_encoder,
9501 &dev->mode_config.encoder_list, base.head) {
9502 if (source_encoder->new_crtc != crtc)
Daniel Vetteraccfc0c2013-05-30 15:04:25 +02009503 continue;
9504
Ville Syrjäläbc079e82014-03-03 16:15:28 +02009505 if (!encoders_cloneable(encoder, source_encoder))
9506 return false;
Daniel Vetteraccfc0c2013-05-30 15:04:25 +02009507 }
9508
Ville Syrjäläbc079e82014-03-03 16:15:28 +02009509 return true;
9510}
9511
9512static bool check_encoder_cloning(struct intel_crtc *crtc)
9513{
9514 struct drm_device *dev = crtc->base.dev;
9515 struct intel_encoder *encoder;
9516
9517 list_for_each_entry(encoder,
9518 &dev->mode_config.encoder_list, base.head) {
9519 if (encoder->new_crtc != crtc)
9520 continue;
9521
9522 if (!check_single_encoder_cloning(crtc, encoder))
9523 return false;
9524 }
9525
9526 return true;
Daniel Vetteraccfc0c2013-05-30 15:04:25 +02009527}
9528
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01009529static struct intel_crtc_config *
9530intel_modeset_pipe_config(struct drm_crtc *crtc,
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01009531 struct drm_framebuffer *fb,
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01009532 struct drm_display_mode *mode)
Daniel Vetter7758a112012-07-08 19:40:39 +02009533{
9534 struct drm_device *dev = crtc->dev;
Daniel Vetter7758a112012-07-08 19:40:39 +02009535 struct intel_encoder *encoder;
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01009536 struct intel_crtc_config *pipe_config;
Daniel Vettere29c22c2013-02-21 00:00:16 +01009537 int plane_bpp, ret = -EINVAL;
9538 bool retry = true;
Daniel Vetter7758a112012-07-08 19:40:39 +02009539
Ville Syrjäläbc079e82014-03-03 16:15:28 +02009540 if (!check_encoder_cloning(to_intel_crtc(crtc))) {
Daniel Vetteraccfc0c2013-05-30 15:04:25 +02009541 DRM_DEBUG_KMS("rejecting invalid cloning configuration\n");
9542 return ERR_PTR(-EINVAL);
9543 }
9544
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01009545 pipe_config = kzalloc(sizeof(*pipe_config), GFP_KERNEL);
9546 if (!pipe_config)
Daniel Vetter7758a112012-07-08 19:40:39 +02009547 return ERR_PTR(-ENOMEM);
9548
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01009549 drm_mode_copy(&pipe_config->adjusted_mode, mode);
9550 drm_mode_copy(&pipe_config->requested_mode, mode);
Ville Syrjälä37327ab2013-09-04 18:25:28 +03009551
Daniel Vettere143a212013-07-04 12:01:15 +02009552 pipe_config->cpu_transcoder =
9553 (enum transcoder) to_intel_crtc(crtc)->pipe;
Daniel Vetterc0d43d62013-06-07 23:11:08 +02009554 pipe_config->shared_dpll = DPLL_ID_PRIVATE;
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01009555
Imre Deak2960bc92013-07-30 13:36:32 +03009556 /*
9557 * Sanitize sync polarity flags based on requested ones. If neither
9558 * positive or negative polarity is requested, treat this as meaning
9559 * negative polarity.
9560 */
9561 if (!(pipe_config->adjusted_mode.flags &
9562 (DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_NHSYNC)))
9563 pipe_config->adjusted_mode.flags |= DRM_MODE_FLAG_NHSYNC;
9564
9565 if (!(pipe_config->adjusted_mode.flags &
9566 (DRM_MODE_FLAG_PVSYNC | DRM_MODE_FLAG_NVSYNC)))
9567 pipe_config->adjusted_mode.flags |= DRM_MODE_FLAG_NVSYNC;
9568
Daniel Vetter050f7ae2013-06-02 13:26:23 +02009569 /* Compute a starting value for pipe_config->pipe_bpp taking the source
9570 * plane pixel format and any sink constraints into account. Returns the
9571 * source plane bpp so that dithering can be selected on mismatches
9572 * after encoders and crtc also have had their say. */
9573 plane_bpp = compute_baseline_pipe_bpp(to_intel_crtc(crtc),
9574 fb, pipe_config);
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01009575 if (plane_bpp < 0)
9576 goto fail;
9577
Ville Syrjäläe41a56b2013-10-01 22:52:14 +03009578 /*
9579 * Determine the real pipe dimensions. Note that stereo modes can
9580 * increase the actual pipe size due to the frame doubling and
9581 * insertion of additional space for blanks between the frame. This
9582 * is stored in the crtc timings. We use the requested mode to do this
9583 * computation to clearly distinguish it from the adjusted mode, which
9584 * can be changed by the connectors in the below retry loop.
9585 */
9586 drm_mode_set_crtcinfo(&pipe_config->requested_mode, CRTC_STEREO_DOUBLE);
9587 pipe_config->pipe_src_w = pipe_config->requested_mode.crtc_hdisplay;
9588 pipe_config->pipe_src_h = pipe_config->requested_mode.crtc_vdisplay;
9589
Daniel Vettere29c22c2013-02-21 00:00:16 +01009590encoder_retry:
Daniel Vetteref1b4602013-06-01 17:17:04 +02009591 /* Ensure the port clock defaults are reset when retrying. */
Daniel Vetterff9a6752013-06-01 17:16:21 +02009592 pipe_config->port_clock = 0;
Daniel Vetteref1b4602013-06-01 17:17:04 +02009593 pipe_config->pixel_multiplier = 1;
Daniel Vetterff9a6752013-06-01 17:16:21 +02009594
Daniel Vetter135c81b2013-07-21 21:37:09 +02009595 /* Fill in default crtc timings, allow encoders to overwrite them. */
Damien Lespiau6ce70f52013-09-25 16:45:38 +01009596 drm_mode_set_crtcinfo(&pipe_config->adjusted_mode, CRTC_STEREO_DOUBLE);
Daniel Vetter135c81b2013-07-21 21:37:09 +02009597
Daniel Vetter7758a112012-07-08 19:40:39 +02009598 /* Pass our mode to the connectors and the CRTC to give them a chance to
9599 * adjust it according to limitations or connector properties, and also
9600 * a chance to reject the mode entirely.
9601 */
9602 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
9603 base.head) {
9604
9605 if (&encoder->new_crtc->base != crtc)
9606 continue;
Daniel Vetter7ae89232013-03-27 00:44:52 +01009607
Daniel Vetterefea6e82013-07-21 21:36:59 +02009608 if (!(encoder->compute_config(encoder, pipe_config))) {
9609 DRM_DEBUG_KMS("Encoder config failure\n");
Daniel Vetter7758a112012-07-08 19:40:39 +02009610 goto fail;
9611 }
9612 }
9613
Daniel Vetterff9a6752013-06-01 17:16:21 +02009614 /* Set default port clock if not overwritten by the encoder. Needs to be
9615 * done afterwards in case the encoder adjusts the mode. */
9616 if (!pipe_config->port_clock)
Damien Lespiau241bfc32013-09-25 16:45:37 +01009617 pipe_config->port_clock = pipe_config->adjusted_mode.crtc_clock
9618 * pipe_config->pixel_multiplier;
Daniel Vetterff9a6752013-06-01 17:16:21 +02009619
Daniel Vettera43f6e02013-06-07 23:10:32 +02009620 ret = intel_crtc_compute_config(to_intel_crtc(crtc), pipe_config);
Daniel Vettere29c22c2013-02-21 00:00:16 +01009621 if (ret < 0) {
Daniel Vetter7758a112012-07-08 19:40:39 +02009622 DRM_DEBUG_KMS("CRTC fixup failed\n");
9623 goto fail;
9624 }
Daniel Vettere29c22c2013-02-21 00:00:16 +01009625
9626 if (ret == RETRY) {
9627 if (WARN(!retry, "loop in pipe configuration computation\n")) {
9628 ret = -EINVAL;
9629 goto fail;
9630 }
9631
9632 DRM_DEBUG_KMS("CRTC bw constrained, retrying\n");
9633 retry = false;
9634 goto encoder_retry;
9635 }
9636
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01009637 pipe_config->dither = pipe_config->pipe_bpp != plane_bpp;
9638 DRM_DEBUG_KMS("plane bpp: %i, pipe bpp: %i, dithering: %i\n",
9639 plane_bpp, pipe_config->pipe_bpp, pipe_config->dither);
9640
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01009641 return pipe_config;
Daniel Vetter7758a112012-07-08 19:40:39 +02009642fail:
Daniel Vetterb8cecdf2013-03-27 00:44:50 +01009643 kfree(pipe_config);
Daniel Vettere29c22c2013-02-21 00:00:16 +01009644 return ERR_PTR(ret);
Daniel Vetter7758a112012-07-08 19:40:39 +02009645}
9646
Daniel Vettere2e1ed42012-07-08 21:14:38 +02009647/* Computes which crtcs are affected and sets the relevant bits in the mask. For
9648 * simplicity we use the crtc's pipe number (because it's easier to obtain). */
9649static void
9650intel_modeset_affected_pipes(struct drm_crtc *crtc, unsigned *modeset_pipes,
9651 unsigned *prepare_pipes, unsigned *disable_pipes)
9652{
9653 struct intel_crtc *intel_crtc;
9654 struct drm_device *dev = crtc->dev;
9655 struct intel_encoder *encoder;
9656 struct intel_connector *connector;
9657 struct drm_crtc *tmp_crtc;
9658
9659 *disable_pipes = *modeset_pipes = *prepare_pipes = 0;
9660
9661 /* Check which crtcs have changed outputs connected to them, these need
9662 * to be part of the prepare_pipes mask. We don't (yet) support global
9663 * modeset across multiple crtcs, so modeset_pipes will only have one
9664 * bit set at most. */
9665 list_for_each_entry(connector, &dev->mode_config.connector_list,
9666 base.head) {
9667 if (connector->base.encoder == &connector->new_encoder->base)
9668 continue;
9669
9670 if (connector->base.encoder) {
9671 tmp_crtc = connector->base.encoder->crtc;
9672
9673 *prepare_pipes |= 1 << to_intel_crtc(tmp_crtc)->pipe;
9674 }
9675
9676 if (connector->new_encoder)
9677 *prepare_pipes |=
9678 1 << connector->new_encoder->new_crtc->pipe;
9679 }
9680
9681 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
9682 base.head) {
9683 if (encoder->base.crtc == &encoder->new_crtc->base)
9684 continue;
9685
9686 if (encoder->base.crtc) {
9687 tmp_crtc = encoder->base.crtc;
9688
9689 *prepare_pipes |= 1 << to_intel_crtc(tmp_crtc)->pipe;
9690 }
9691
9692 if (encoder->new_crtc)
9693 *prepare_pipes |= 1 << encoder->new_crtc->pipe;
9694 }
9695
Ville Syrjälä76688512014-01-10 11:28:06 +02009696 /* Check for pipes that will be enabled/disabled ... */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01009697 for_each_intel_crtc(dev, intel_crtc) {
Ville Syrjälä76688512014-01-10 11:28:06 +02009698 if (intel_crtc->base.enabled == intel_crtc->new_enabled)
Daniel Vettere2e1ed42012-07-08 21:14:38 +02009699 continue;
9700
Ville Syrjälä76688512014-01-10 11:28:06 +02009701 if (!intel_crtc->new_enabled)
Daniel Vettere2e1ed42012-07-08 21:14:38 +02009702 *disable_pipes |= 1 << intel_crtc->pipe;
Ville Syrjälä76688512014-01-10 11:28:06 +02009703 else
9704 *prepare_pipes |= 1 << intel_crtc->pipe;
Daniel Vettere2e1ed42012-07-08 21:14:38 +02009705 }
9706
9707
9708 /* set_mode is also used to update properties on life display pipes. */
9709 intel_crtc = to_intel_crtc(crtc);
Ville Syrjälä76688512014-01-10 11:28:06 +02009710 if (intel_crtc->new_enabled)
Daniel Vettere2e1ed42012-07-08 21:14:38 +02009711 *prepare_pipes |= 1 << intel_crtc->pipe;
9712
Daniel Vetterb6c51642013-04-12 18:48:43 +02009713 /*
9714 * For simplicity do a full modeset on any pipe where the output routing
9715 * changed. We could be more clever, but that would require us to be
9716 * more careful with calling the relevant encoder->mode_set functions.
9717 */
Daniel Vettere2e1ed42012-07-08 21:14:38 +02009718 if (*prepare_pipes)
9719 *modeset_pipes = *prepare_pipes;
9720
9721 /* ... and mask these out. */
9722 *modeset_pipes &= ~(*disable_pipes);
9723 *prepare_pipes &= ~(*disable_pipes);
Daniel Vetterb6c51642013-04-12 18:48:43 +02009724
9725 /*
9726 * HACK: We don't (yet) fully support global modesets. intel_set_config
9727 * obies this rule, but the modeset restore mode of
9728 * intel_modeset_setup_hw_state does not.
9729 */
9730 *modeset_pipes &= 1 << intel_crtc->pipe;
9731 *prepare_pipes &= 1 << intel_crtc->pipe;
Daniel Vettere3641d32013-04-11 19:49:07 +02009732
9733 DRM_DEBUG_KMS("set mode pipe masks: modeset: %x, prepare: %x, disable: %x\n",
9734 *modeset_pipes, *prepare_pipes, *disable_pipes);
Daniel Vettere2e1ed42012-07-08 21:14:38 +02009735}
9736
Daniel Vetterea9d7582012-07-10 10:42:52 +02009737static bool intel_crtc_in_use(struct drm_crtc *crtc)
9738{
9739 struct drm_encoder *encoder;
9740 struct drm_device *dev = crtc->dev;
9741
9742 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head)
9743 if (encoder->crtc == crtc)
9744 return true;
9745
9746 return false;
9747}
9748
9749static void
9750intel_modeset_update_state(struct drm_device *dev, unsigned prepare_pipes)
9751{
9752 struct intel_encoder *intel_encoder;
9753 struct intel_crtc *intel_crtc;
9754 struct drm_connector *connector;
9755
9756 list_for_each_entry(intel_encoder, &dev->mode_config.encoder_list,
9757 base.head) {
9758 if (!intel_encoder->base.crtc)
9759 continue;
9760
9761 intel_crtc = to_intel_crtc(intel_encoder->base.crtc);
9762
9763 if (prepare_pipes & (1 << intel_crtc->pipe))
9764 intel_encoder->connectors_active = false;
9765 }
9766
9767 intel_modeset_commit_output_state(dev);
9768
Ville Syrjälä76688512014-01-10 11:28:06 +02009769 /* Double check state. */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01009770 for_each_intel_crtc(dev, intel_crtc) {
Ville Syrjälä76688512014-01-10 11:28:06 +02009771 WARN_ON(intel_crtc->base.enabled != intel_crtc_in_use(&intel_crtc->base));
Ville Syrjälä7bd0a8e2014-01-14 14:31:38 +02009772 WARN_ON(intel_crtc->new_config &&
9773 intel_crtc->new_config != &intel_crtc->config);
9774 WARN_ON(intel_crtc->base.enabled != !!intel_crtc->new_config);
Daniel Vetterea9d7582012-07-10 10:42:52 +02009775 }
9776
9777 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
9778 if (!connector->encoder || !connector->encoder->crtc)
9779 continue;
9780
9781 intel_crtc = to_intel_crtc(connector->encoder->crtc);
9782
9783 if (prepare_pipes & (1 << intel_crtc->pipe)) {
Daniel Vetter68d34722012-09-06 22:08:35 +02009784 struct drm_property *dpms_property =
9785 dev->mode_config.dpms_property;
9786
Daniel Vetterea9d7582012-07-10 10:42:52 +02009787 connector->dpms = DRM_MODE_DPMS_ON;
Rob Clark662595d2012-10-11 20:36:04 -05009788 drm_object_property_set_value(&connector->base,
Daniel Vetter68d34722012-09-06 22:08:35 +02009789 dpms_property,
9790 DRM_MODE_DPMS_ON);
Daniel Vetterea9d7582012-07-10 10:42:52 +02009791
9792 intel_encoder = to_intel_encoder(connector->encoder);
9793 intel_encoder->connectors_active = true;
9794 }
9795 }
9796
9797}
9798
Ville Syrjälä3bd26262013-09-06 23:29:02 +03009799static bool intel_fuzzy_clock_check(int clock1, int clock2)
Jesse Barnesf1f644d2013-06-27 00:39:25 +03009800{
Ville Syrjälä3bd26262013-09-06 23:29:02 +03009801 int diff;
Jesse Barnesf1f644d2013-06-27 00:39:25 +03009802
9803 if (clock1 == clock2)
9804 return true;
9805
9806 if (!clock1 || !clock2)
9807 return false;
9808
9809 diff = abs(clock1 - clock2);
9810
9811 if (((((diff + clock1 + clock2) * 100)) / (clock1 + clock2)) < 105)
9812 return true;
9813
9814 return false;
9815}
9816
Daniel Vetter25c5b262012-07-08 22:08:04 +02009817#define for_each_intel_crtc_masked(dev, mask, intel_crtc) \
9818 list_for_each_entry((intel_crtc), \
9819 &(dev)->mode_config.crtc_list, \
9820 base.head) \
Daniel Vetter0973f182013-04-19 11:25:33 +02009821 if (mask & (1 <<(intel_crtc)->pipe))
Daniel Vetter25c5b262012-07-08 22:08:04 +02009822
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01009823static bool
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02009824intel_pipe_config_compare(struct drm_device *dev,
9825 struct intel_crtc_config *current_config,
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01009826 struct intel_crtc_config *pipe_config)
9827{
Daniel Vetter66e985c2013-06-05 13:34:20 +02009828#define PIPE_CONF_CHECK_X(name) \
9829 if (current_config->name != pipe_config->name) { \
9830 DRM_ERROR("mismatch in " #name " " \
9831 "(expected 0x%08x, found 0x%08x)\n", \
9832 current_config->name, \
9833 pipe_config->name); \
9834 return false; \
9835 }
9836
Daniel Vetter08a24032013-04-19 11:25:34 +02009837#define PIPE_CONF_CHECK_I(name) \
9838 if (current_config->name != pipe_config->name) { \
9839 DRM_ERROR("mismatch in " #name " " \
9840 "(expected %i, found %i)\n", \
9841 current_config->name, \
9842 pipe_config->name); \
9843 return false; \
Daniel Vetter88adfff2013-03-28 10:42:01 +01009844 }
9845
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02009846#define PIPE_CONF_CHECK_FLAGS(name, mask) \
9847 if ((current_config->name ^ pipe_config->name) & (mask)) { \
Jesse Barnes6f024882013-07-01 10:19:09 -07009848 DRM_ERROR("mismatch in " #name "(" #mask ") " \
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02009849 "(expected %i, found %i)\n", \
9850 current_config->name & (mask), \
9851 pipe_config->name & (mask)); \
9852 return false; \
9853 }
9854
Ville Syrjälä5e550652013-09-06 23:29:07 +03009855#define PIPE_CONF_CHECK_CLOCK_FUZZY(name) \
9856 if (!intel_fuzzy_clock_check(current_config->name, pipe_config->name)) { \
9857 DRM_ERROR("mismatch in " #name " " \
9858 "(expected %i, found %i)\n", \
9859 current_config->name, \
9860 pipe_config->name); \
9861 return false; \
9862 }
9863
Daniel Vetterbb760062013-06-06 14:55:52 +02009864#define PIPE_CONF_QUIRK(quirk) \
9865 ((current_config->quirks | pipe_config->quirks) & (quirk))
9866
Daniel Vettereccb1402013-05-22 00:50:22 +02009867 PIPE_CONF_CHECK_I(cpu_transcoder);
9868
Daniel Vetter08a24032013-04-19 11:25:34 +02009869 PIPE_CONF_CHECK_I(has_pch_encoder);
9870 PIPE_CONF_CHECK_I(fdi_lanes);
Daniel Vetter72419202013-04-04 13:28:53 +02009871 PIPE_CONF_CHECK_I(fdi_m_n.gmch_m);
9872 PIPE_CONF_CHECK_I(fdi_m_n.gmch_n);
9873 PIPE_CONF_CHECK_I(fdi_m_n.link_m);
9874 PIPE_CONF_CHECK_I(fdi_m_n.link_n);
9875 PIPE_CONF_CHECK_I(fdi_m_n.tu);
Daniel Vetter08a24032013-04-19 11:25:34 +02009876
Ville Syrjäläeb14cb72013-09-10 17:02:54 +03009877 PIPE_CONF_CHECK_I(has_dp_encoder);
9878 PIPE_CONF_CHECK_I(dp_m_n.gmch_m);
9879 PIPE_CONF_CHECK_I(dp_m_n.gmch_n);
9880 PIPE_CONF_CHECK_I(dp_m_n.link_m);
9881 PIPE_CONF_CHECK_I(dp_m_n.link_n);
9882 PIPE_CONF_CHECK_I(dp_m_n.tu);
9883
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02009884 PIPE_CONF_CHECK_I(adjusted_mode.crtc_hdisplay);
9885 PIPE_CONF_CHECK_I(adjusted_mode.crtc_htotal);
9886 PIPE_CONF_CHECK_I(adjusted_mode.crtc_hblank_start);
9887 PIPE_CONF_CHECK_I(adjusted_mode.crtc_hblank_end);
9888 PIPE_CONF_CHECK_I(adjusted_mode.crtc_hsync_start);
9889 PIPE_CONF_CHECK_I(adjusted_mode.crtc_hsync_end);
9890
9891 PIPE_CONF_CHECK_I(adjusted_mode.crtc_vdisplay);
9892 PIPE_CONF_CHECK_I(adjusted_mode.crtc_vtotal);
9893 PIPE_CONF_CHECK_I(adjusted_mode.crtc_vblank_start);
9894 PIPE_CONF_CHECK_I(adjusted_mode.crtc_vblank_end);
9895 PIPE_CONF_CHECK_I(adjusted_mode.crtc_vsync_start);
9896 PIPE_CONF_CHECK_I(adjusted_mode.crtc_vsync_end);
9897
Daniel Vetterc93f54c2013-06-27 19:47:19 +02009898 PIPE_CONF_CHECK_I(pixel_multiplier);
Daniel Vetter6897b4b2014-04-24 23:54:47 +02009899 PIPE_CONF_CHECK_I(has_hdmi_sink);
Daniel Vetterb5a9fa02014-04-24 23:54:49 +02009900 if ((INTEL_INFO(dev)->gen < 8 && !IS_HASWELL(dev)) ||
9901 IS_VALLEYVIEW(dev))
9902 PIPE_CONF_CHECK_I(limited_color_range);
Daniel Vetter6c49f242013-06-06 12:45:25 +02009903
Daniel Vetter9ed109a2014-04-24 23:54:52 +02009904 PIPE_CONF_CHECK_I(has_audio);
9905
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02009906 PIPE_CONF_CHECK_FLAGS(adjusted_mode.flags,
9907 DRM_MODE_FLAG_INTERLACE);
9908
Daniel Vetterbb760062013-06-06 14:55:52 +02009909 if (!PIPE_CONF_QUIRK(PIPE_CONFIG_QUIRK_MODE_SYNC_FLAGS)) {
9910 PIPE_CONF_CHECK_FLAGS(adjusted_mode.flags,
9911 DRM_MODE_FLAG_PHSYNC);
9912 PIPE_CONF_CHECK_FLAGS(adjusted_mode.flags,
9913 DRM_MODE_FLAG_NHSYNC);
9914 PIPE_CONF_CHECK_FLAGS(adjusted_mode.flags,
9915 DRM_MODE_FLAG_PVSYNC);
9916 PIPE_CONF_CHECK_FLAGS(adjusted_mode.flags,
9917 DRM_MODE_FLAG_NVSYNC);
9918 }
Jesse Barnes045ac3b2013-05-14 17:08:26 -07009919
Ville Syrjälä37327ab2013-09-04 18:25:28 +03009920 PIPE_CONF_CHECK_I(pipe_src_w);
9921 PIPE_CONF_CHECK_I(pipe_src_h);
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02009922
Daniel Vetter99535992014-04-13 12:00:33 +02009923 /*
9924 * FIXME: BIOS likes to set up a cloned config with lvds+external
9925 * screen. Since we don't yet re-compute the pipe config when moving
9926 * just the lvds port away to another pipe the sw tracking won't match.
9927 *
9928 * Proper atomic modesets with recomputed global state will fix this.
9929 * Until then just don't check gmch state for inherited modes.
9930 */
9931 if (!PIPE_CONF_QUIRK(PIPE_CONFIG_QUIRK_INHERITED_MODE)) {
9932 PIPE_CONF_CHECK_I(gmch_pfit.control);
9933 /* pfit ratios are autocomputed by the hw on gen4+ */
9934 if (INTEL_INFO(dev)->gen < 4)
9935 PIPE_CONF_CHECK_I(gmch_pfit.pgm_ratios);
9936 PIPE_CONF_CHECK_I(gmch_pfit.lvds_border_bits);
9937 }
9938
Chris Wilsonfd4daa92013-08-27 17:04:17 +01009939 PIPE_CONF_CHECK_I(pch_pfit.enabled);
9940 if (current_config->pch_pfit.enabled) {
9941 PIPE_CONF_CHECK_I(pch_pfit.pos);
9942 PIPE_CONF_CHECK_I(pch_pfit.size);
9943 }
Daniel Vetter2fa2fe92013-05-07 23:34:16 +02009944
Jesse Barnese59150d2014-01-07 13:30:45 -08009945 /* BDW+ don't expose a synchronous way to read the state */
9946 if (IS_HASWELL(dev))
9947 PIPE_CONF_CHECK_I(ips_enabled);
Paulo Zanoni42db64e2013-05-31 16:33:22 -03009948
Ville Syrjälä282740f2013-09-04 18:30:03 +03009949 PIPE_CONF_CHECK_I(double_wide);
9950
Daniel Vetterc0d43d62013-06-07 23:11:08 +02009951 PIPE_CONF_CHECK_I(shared_dpll);
Daniel Vetter66e985c2013-06-05 13:34:20 +02009952 PIPE_CONF_CHECK_X(dpll_hw_state.dpll);
Daniel Vetter8bcc2792013-06-05 13:34:28 +02009953 PIPE_CONF_CHECK_X(dpll_hw_state.dpll_md);
Daniel Vetter66e985c2013-06-05 13:34:20 +02009954 PIPE_CONF_CHECK_X(dpll_hw_state.fp0);
9955 PIPE_CONF_CHECK_X(dpll_hw_state.fp1);
Daniel Vetterc0d43d62013-06-07 23:11:08 +02009956
Ville Syrjälä42571ae2013-09-06 23:29:00 +03009957 if (IS_G4X(dev) || INTEL_INFO(dev)->gen >= 5)
9958 PIPE_CONF_CHECK_I(pipe_bpp);
9959
Jesse Barnesa9a7e982014-01-20 14:18:04 -08009960 PIPE_CONF_CHECK_CLOCK_FUZZY(adjusted_mode.crtc_clock);
9961 PIPE_CONF_CHECK_CLOCK_FUZZY(port_clock);
Ville Syrjälä5e550652013-09-06 23:29:07 +03009962
Daniel Vetter66e985c2013-06-05 13:34:20 +02009963#undef PIPE_CONF_CHECK_X
Daniel Vetter08a24032013-04-19 11:25:34 +02009964#undef PIPE_CONF_CHECK_I
Daniel Vetter1bd1bd82013-04-29 21:56:12 +02009965#undef PIPE_CONF_CHECK_FLAGS
Ville Syrjälä5e550652013-09-06 23:29:07 +03009966#undef PIPE_CONF_CHECK_CLOCK_FUZZY
Daniel Vetterbb760062013-06-06 14:55:52 +02009967#undef PIPE_CONF_QUIRK
Daniel Vetter627eb5a2013-04-29 19:33:42 +02009968
Daniel Vetter0e8ffe12013-03-28 10:42:00 +01009969 return true;
9970}
9971
Daniel Vetter91d1b4b2013-06-05 13:34:18 +02009972static void
9973check_connector_state(struct drm_device *dev)
Daniel Vetter8af6cf82012-07-10 09:50:11 +02009974{
Daniel Vetter8af6cf82012-07-10 09:50:11 +02009975 struct intel_connector *connector;
9976
9977 list_for_each_entry(connector, &dev->mode_config.connector_list,
9978 base.head) {
9979 /* This also checks the encoder/connector hw state with the
9980 * ->get_hw_state callbacks. */
9981 intel_connector_check_state(connector);
9982
9983 WARN(&connector->new_encoder->base != connector->base.encoder,
9984 "connector's staged encoder doesn't match current encoder\n");
9985 }
Daniel Vetter91d1b4b2013-06-05 13:34:18 +02009986}
9987
9988static void
9989check_encoder_state(struct drm_device *dev)
9990{
9991 struct intel_encoder *encoder;
9992 struct intel_connector *connector;
Daniel Vetter8af6cf82012-07-10 09:50:11 +02009993
9994 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
9995 base.head) {
9996 bool enabled = false;
9997 bool active = false;
9998 enum pipe pipe, tracked_pipe;
9999
10000 DRM_DEBUG_KMS("[ENCODER:%d:%s]\n",
10001 encoder->base.base.id,
10002 drm_get_encoder_name(&encoder->base));
10003
10004 WARN(&encoder->new_crtc->base != encoder->base.crtc,
10005 "encoder's stage crtc doesn't match current crtc\n");
10006 WARN(encoder->connectors_active && !encoder->base.crtc,
10007 "encoder's active_connectors set, but no crtc\n");
10008
10009 list_for_each_entry(connector, &dev->mode_config.connector_list,
10010 base.head) {
10011 if (connector->base.encoder != &encoder->base)
10012 continue;
10013 enabled = true;
10014 if (connector->base.dpms != DRM_MODE_DPMS_OFF)
10015 active = true;
10016 }
10017 WARN(!!encoder->base.crtc != enabled,
10018 "encoder's enabled state mismatch "
10019 "(expected %i, found %i)\n",
10020 !!encoder->base.crtc, enabled);
10021 WARN(active && !encoder->base.crtc,
10022 "active encoder with no crtc\n");
10023
10024 WARN(encoder->connectors_active != active,
10025 "encoder's computed active state doesn't match tracked active state "
10026 "(expected %i, found %i)\n", active, encoder->connectors_active);
10027
10028 active = encoder->get_hw_state(encoder, &pipe);
10029 WARN(active != encoder->connectors_active,
10030 "encoder's hw state doesn't match sw tracking "
10031 "(expected %i, found %i)\n",
10032 encoder->connectors_active, active);
10033
10034 if (!encoder->base.crtc)
10035 continue;
10036
10037 tracked_pipe = to_intel_crtc(encoder->base.crtc)->pipe;
10038 WARN(active && pipe != tracked_pipe,
10039 "active encoder's pipe doesn't match"
10040 "(expected %i, found %i)\n",
10041 tracked_pipe, pipe);
10042
10043 }
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020010044}
10045
10046static void
10047check_crtc_state(struct drm_device *dev)
10048{
Jani Nikulafbee40d2014-03-31 14:27:18 +030010049 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020010050 struct intel_crtc *crtc;
10051 struct intel_encoder *encoder;
10052 struct intel_crtc_config pipe_config;
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010053
Damien Lespiaud3fcc802014-05-13 23:32:22 +010010054 for_each_intel_crtc(dev, crtc) {
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010055 bool enabled = false;
10056 bool active = false;
10057
Jesse Barnes045ac3b2013-05-14 17:08:26 -070010058 memset(&pipe_config, 0, sizeof(pipe_config));
10059
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010060 DRM_DEBUG_KMS("[CRTC:%d]\n",
10061 crtc->base.base.id);
10062
10063 WARN(crtc->active && !crtc->base.enabled,
10064 "active crtc, but not enabled in sw tracking\n");
10065
10066 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
10067 base.head) {
10068 if (encoder->base.crtc != &crtc->base)
10069 continue;
10070 enabled = true;
10071 if (encoder->connectors_active)
10072 active = true;
10073 }
Daniel Vetter6c49f242013-06-06 12:45:25 +020010074
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010075 WARN(active != crtc->active,
10076 "crtc's computed active state doesn't match tracked active state "
10077 "(expected %i, found %i)\n", active, crtc->active);
10078 WARN(enabled != crtc->base.enabled,
10079 "crtc's computed enabled state doesn't match tracked enabled state "
10080 "(expected %i, found %i)\n", enabled, crtc->base.enabled);
10081
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010010082 active = dev_priv->display.get_pipe_config(crtc,
10083 &pipe_config);
Daniel Vetterd62cf622013-05-29 10:41:29 +020010084
10085 /* hw state is inconsistent with the pipe A quirk */
10086 if (crtc->pipe == PIPE_A && dev_priv->quirks & QUIRK_PIPEA_FORCE)
10087 active = crtc->active;
10088
Daniel Vetter6c49f242013-06-06 12:45:25 +020010089 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
10090 base.head) {
Ville Syrjälä3eaba512013-08-05 17:57:48 +030010091 enum pipe pipe;
Daniel Vetter6c49f242013-06-06 12:45:25 +020010092 if (encoder->base.crtc != &crtc->base)
10093 continue;
Daniel Vetter1d37b682013-11-18 09:00:59 +010010094 if (encoder->get_hw_state(encoder, &pipe))
Daniel Vetter6c49f242013-06-06 12:45:25 +020010095 encoder->get_config(encoder, &pipe_config);
10096 }
10097
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010010098 WARN(crtc->active != active,
10099 "crtc active state doesn't match with hw state "
10100 "(expected %i, found %i)\n", crtc->active, active);
10101
Daniel Vetterc0b03412013-05-28 12:05:54 +020010102 if (active &&
10103 !intel_pipe_config_compare(dev, &crtc->config, &pipe_config)) {
10104 WARN(1, "pipe state doesn't match!\n");
10105 intel_dump_pipe_config(crtc, &pipe_config,
10106 "[hw state]");
10107 intel_dump_pipe_config(crtc, &crtc->config,
10108 "[sw state]");
10109 }
Daniel Vetter8af6cf82012-07-10 09:50:11 +020010110 }
10111}
10112
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020010113static void
10114check_shared_dpll_state(struct drm_device *dev)
10115{
Jani Nikulafbee40d2014-03-31 14:27:18 +030010116 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020010117 struct intel_crtc *crtc;
10118 struct intel_dpll_hw_state dpll_hw_state;
10119 int i;
Daniel Vetter53589012013-06-05 13:34:16 +020010120
10121 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
10122 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
10123 int enabled_crtcs = 0, active_crtcs = 0;
10124 bool active;
10125
10126 memset(&dpll_hw_state, 0, sizeof(dpll_hw_state));
10127
10128 DRM_DEBUG_KMS("%s\n", pll->name);
10129
10130 active = pll->get_hw_state(dev_priv, pll, &dpll_hw_state);
10131
10132 WARN(pll->active > pll->refcount,
10133 "more active pll users than references: %i vs %i\n",
10134 pll->active, pll->refcount);
10135 WARN(pll->active && !pll->on,
10136 "pll in active use but not on in sw tracking\n");
Daniel Vetter35c95372013-07-17 06:55:04 +020010137 WARN(pll->on && !pll->active,
10138 "pll in on but not on in use in sw tracking\n");
Daniel Vetter53589012013-06-05 13:34:16 +020010139 WARN(pll->on != active,
10140 "pll on state mismatch (expected %i, found %i)\n",
10141 pll->on, active);
10142
Damien Lespiaud3fcc802014-05-13 23:32:22 +010010143 for_each_intel_crtc(dev, crtc) {
Daniel Vetter53589012013-06-05 13:34:16 +020010144 if (crtc->base.enabled && intel_crtc_to_shared_dpll(crtc) == pll)
10145 enabled_crtcs++;
10146 if (crtc->active && intel_crtc_to_shared_dpll(crtc) == pll)
10147 active_crtcs++;
10148 }
10149 WARN(pll->active != active_crtcs,
10150 "pll active crtcs mismatch (expected %i, found %i)\n",
10151 pll->active, active_crtcs);
10152 WARN(pll->refcount != enabled_crtcs,
10153 "pll enabled crtcs mismatch (expected %i, found %i)\n",
10154 pll->refcount, enabled_crtcs);
Daniel Vetter66e985c2013-06-05 13:34:20 +020010155
10156 WARN(pll->on && memcmp(&pll->hw_state, &dpll_hw_state,
10157 sizeof(dpll_hw_state)),
10158 "pll hw state mismatch\n");
Daniel Vetter53589012013-06-05 13:34:16 +020010159 }
Daniel Vettera6778b32012-07-02 09:56:42 +020010160}
10161
Daniel Vetter91d1b4b2013-06-05 13:34:18 +020010162void
10163intel_modeset_check_state(struct drm_device *dev)
10164{
10165 check_connector_state(dev);
10166 check_encoder_state(dev);
10167 check_crtc_state(dev);
10168 check_shared_dpll_state(dev);
10169}
10170
Ville Syrjälä18442d02013-09-13 16:00:08 +030010171void ironlake_check_encoder_dotclock(const struct intel_crtc_config *pipe_config,
10172 int dotclock)
10173{
10174 /*
10175 * FDI already provided one idea for the dotclock.
10176 * Yell if the encoder disagrees.
10177 */
Damien Lespiau241bfc32013-09-25 16:45:37 +010010178 WARN(!intel_fuzzy_clock_check(pipe_config->adjusted_mode.crtc_clock, dotclock),
Ville Syrjälä18442d02013-09-13 16:00:08 +030010179 "FDI dotclock and encoder dotclock mismatch, fdi: %i, encoder: %i\n",
Damien Lespiau241bfc32013-09-25 16:45:37 +010010180 pipe_config->adjusted_mode.crtc_clock, dotclock);
Ville Syrjälä18442d02013-09-13 16:00:08 +030010181}
10182
Daniel Vetterf30da182013-04-11 20:22:50 +020010183static int __intel_set_mode(struct drm_crtc *crtc,
10184 struct drm_display_mode *mode,
10185 int x, int y, struct drm_framebuffer *fb)
Daniel Vettera6778b32012-07-02 09:56:42 +020010186{
10187 struct drm_device *dev = crtc->dev;
Jani Nikulafbee40d2014-03-31 14:27:18 +030010188 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä4b4b9232013-10-26 17:59:30 +030010189 struct drm_display_mode *saved_mode;
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010010190 struct intel_crtc_config *pipe_config = NULL;
Daniel Vetter25c5b262012-07-08 22:08:04 +020010191 struct intel_crtc *intel_crtc;
10192 unsigned disable_pipes, prepare_pipes, modeset_pipes;
Chris Wilsonc0c36b942012-12-19 16:08:43 +000010193 int ret = 0;
Daniel Vettera6778b32012-07-02 09:56:42 +020010194
Ville Syrjälä4b4b9232013-10-26 17:59:30 +030010195 saved_mode = kmalloc(sizeof(*saved_mode), GFP_KERNEL);
Chris Wilsonc0c36b942012-12-19 16:08:43 +000010196 if (!saved_mode)
10197 return -ENOMEM;
Daniel Vettera6778b32012-07-02 09:56:42 +020010198
Daniel Vettere2e1ed42012-07-08 21:14:38 +020010199 intel_modeset_affected_pipes(crtc, &modeset_pipes,
Daniel Vetter25c5b262012-07-08 22:08:04 +020010200 &prepare_pipes, &disable_pipes);
10201
Tim Gardner3ac18232012-12-07 07:54:26 -070010202 *saved_mode = crtc->mode;
Daniel Vettera6778b32012-07-02 09:56:42 +020010203
Daniel Vetter25c5b262012-07-08 22:08:04 +020010204 /* Hack: Because we don't (yet) support global modeset on multiple
10205 * crtcs, we don't keep track of the new mode for more than one crtc.
10206 * Hence simply check whether any bit is set in modeset_pipes in all the
10207 * pieces of code that are not yet converted to deal with mutliple crtcs
10208 * changing their mode at the same time. */
Daniel Vetter25c5b262012-07-08 22:08:04 +020010209 if (modeset_pipes) {
Daniel Vetter4e53c2e2013-03-27 00:44:58 +010010210 pipe_config = intel_modeset_pipe_config(crtc, fb, mode);
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010010211 if (IS_ERR(pipe_config)) {
10212 ret = PTR_ERR(pipe_config);
10213 pipe_config = NULL;
10214
Tim Gardner3ac18232012-12-07 07:54:26 -070010215 goto out;
Daniel Vetter25c5b262012-07-08 22:08:04 +020010216 }
Daniel Vetterc0b03412013-05-28 12:05:54 +020010217 intel_dump_pipe_config(to_intel_crtc(crtc), pipe_config,
10218 "[modeset]");
Ville Syrjälä50741ab2014-01-10 11:28:07 +020010219 to_intel_crtc(crtc)->new_config = pipe_config;
Daniel Vettera6778b32012-07-02 09:56:42 +020010220 }
10221
Jesse Barnes30a970c2013-11-04 13:48:12 -080010222 /*
10223 * See if the config requires any additional preparation, e.g.
10224 * to adjust global state with pipes off. We need to do this
10225 * here so we can get the modeset_pipe updated config for the new
10226 * mode set on this crtc. For other crtcs we need to use the
10227 * adjusted_mode bits in the crtc directly.
10228 */
Ville Syrjäläc164f832013-11-05 22:34:12 +020010229 if (IS_VALLEYVIEW(dev)) {
Ville Syrjälä2f2d7aa2014-01-10 11:28:08 +020010230 valleyview_modeset_global_pipes(dev, &prepare_pipes);
Jesse Barnes30a970c2013-11-04 13:48:12 -080010231
Ville Syrjäläc164f832013-11-05 22:34:12 +020010232 /* may have added more to prepare_pipes than we should */
10233 prepare_pipes &= ~disable_pipes;
10234 }
10235
Daniel Vetter460da9162013-03-27 00:44:51 +010010236 for_each_intel_crtc_masked(dev, disable_pipes, intel_crtc)
10237 intel_crtc_disable(&intel_crtc->base);
10238
Daniel Vetterea9d7582012-07-10 10:42:52 +020010239 for_each_intel_crtc_masked(dev, prepare_pipes, intel_crtc) {
10240 if (intel_crtc->base.enabled)
10241 dev_priv->display.crtc_disable(&intel_crtc->base);
10242 }
Daniel Vettera6778b32012-07-02 09:56:42 +020010243
Daniel Vetter6c4c86f2012-09-10 21:58:30 +020010244 /* crtc->mode is already used by the ->mode_set callbacks, hence we need
10245 * to set it here already despite that we pass it down the callchain.
10246 */
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010010247 if (modeset_pipes) {
Daniel Vetter25c5b262012-07-08 22:08:04 +020010248 crtc->mode = *mode;
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010010249 /* mode_set/enable/disable functions rely on a correct pipe
10250 * config. */
10251 to_intel_crtc(crtc)->config = *pipe_config;
Ville Syrjälä50741ab2014-01-10 11:28:07 +020010252 to_intel_crtc(crtc)->new_config = &to_intel_crtc(crtc)->config;
Ville Syrjäläc326c0a2013-10-28 12:53:41 +020010253
10254 /*
10255 * Calculate and store various constants which
10256 * are later needed by vblank and swap-completion
10257 * timestamping. They are derived from true hwmode.
10258 */
10259 drm_calc_timestamping_constants(crtc,
10260 &pipe_config->adjusted_mode);
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010010261 }
Daniel Vetter7758a112012-07-08 19:40:39 +020010262
Daniel Vetterea9d7582012-07-10 10:42:52 +020010263 /* Only after disabling all output pipelines that will be changed can we
10264 * update the the output configuration. */
10265 intel_modeset_update_state(dev, prepare_pipes);
10266
Daniel Vetter47fab732012-10-26 10:58:18 +020010267 if (dev_priv->display.modeset_global_resources)
10268 dev_priv->display.modeset_global_resources(dev);
10269
Daniel Vettera6778b32012-07-02 09:56:42 +020010270 /* Set up the DPLL and any encoders state that needs to adjust or depend
10271 * on the DPLL.
10272 */
Daniel Vetter25c5b262012-07-08 22:08:04 +020010273 for_each_intel_crtc_masked(dev, modeset_pipes, intel_crtc) {
Daniel Vetter4c107942014-04-24 23:55:05 +020010274 struct drm_framebuffer *old_fb;
10275
10276 mutex_lock(&dev->struct_mutex);
10277 ret = intel_pin_and_fence_fb_obj(dev,
10278 to_intel_framebuffer(fb)->obj,
10279 NULL);
10280 if (ret != 0) {
10281 DRM_ERROR("pin & fence failed\n");
10282 mutex_unlock(&dev->struct_mutex);
10283 goto done;
10284 }
10285 old_fb = crtc->primary->fb;
10286 if (old_fb)
10287 intel_unpin_fb_obj(to_intel_framebuffer(old_fb)->obj);
10288 mutex_unlock(&dev->struct_mutex);
10289
10290 crtc->primary->fb = fb;
10291 crtc->x = x;
10292 crtc->y = y;
10293
Daniel Vetter4271b752014-04-24 23:55:00 +020010294 ret = dev_priv->display.crtc_mode_set(&intel_crtc->base,
10295 x, y, fb);
Chris Wilsonc0c36b942012-12-19 16:08:43 +000010296 if (ret)
10297 goto done;
Daniel Vettera6778b32012-07-02 09:56:42 +020010298 }
10299
10300 /* Now enable the clocks, plane, pipe, and connectors that we set up. */
Daniel Vetter25c5b262012-07-08 22:08:04 +020010301 for_each_intel_crtc_masked(dev, prepare_pipes, intel_crtc)
10302 dev_priv->display.crtc_enable(&intel_crtc->base);
Daniel Vettera6778b32012-07-02 09:56:42 +020010303
Daniel Vettera6778b32012-07-02 09:56:42 +020010304 /* FIXME: add subpixel order */
10305done:
Ville Syrjälä4b4b9232013-10-26 17:59:30 +030010306 if (ret && crtc->enabled)
Tim Gardner3ac18232012-12-07 07:54:26 -070010307 crtc->mode = *saved_mode;
Daniel Vettera6778b32012-07-02 09:56:42 +020010308
Tim Gardner3ac18232012-12-07 07:54:26 -070010309out:
Daniel Vetterb8cecdf2013-03-27 00:44:50 +010010310 kfree(pipe_config);
Tim Gardner3ac18232012-12-07 07:54:26 -070010311 kfree(saved_mode);
Daniel Vettera6778b32012-07-02 09:56:42 +020010312 return ret;
10313}
10314
Damien Lespiaue7457a92013-08-08 22:28:59 +010010315static int intel_set_mode(struct drm_crtc *crtc,
10316 struct drm_display_mode *mode,
10317 int x, int y, struct drm_framebuffer *fb)
Daniel Vetterf30da182013-04-11 20:22:50 +020010318{
10319 int ret;
10320
10321 ret = __intel_set_mode(crtc, mode, x, y, fb);
10322
10323 if (ret == 0)
10324 intel_modeset_check_state(crtc->dev);
10325
10326 return ret;
10327}
10328
Chris Wilsonc0c36b942012-12-19 16:08:43 +000010329void intel_crtc_restore_mode(struct drm_crtc *crtc)
10330{
Matt Roperf4510a22014-04-01 15:22:40 -070010331 intel_set_mode(crtc, &crtc->mode, crtc->x, crtc->y, crtc->primary->fb);
Chris Wilsonc0c36b942012-12-19 16:08:43 +000010332}
10333
Daniel Vetter25c5b262012-07-08 22:08:04 +020010334#undef for_each_intel_crtc_masked
10335
Daniel Vetterd9e55602012-07-04 22:16:09 +020010336static void intel_set_config_free(struct intel_set_config *config)
10337{
10338 if (!config)
10339 return;
10340
Daniel Vetter1aa4b622012-07-05 16:20:48 +020010341 kfree(config->save_connector_encoders);
10342 kfree(config->save_encoder_crtcs);
Ville Syrjälä76688512014-01-10 11:28:06 +020010343 kfree(config->save_crtc_enabled);
Daniel Vetterd9e55602012-07-04 22:16:09 +020010344 kfree(config);
10345}
10346
Daniel Vetter85f9eb72012-07-04 22:24:08 +020010347static int intel_set_config_save_state(struct drm_device *dev,
10348 struct intel_set_config *config)
10349{
Ville Syrjälä76688512014-01-10 11:28:06 +020010350 struct drm_crtc *crtc;
Daniel Vetter85f9eb72012-07-04 22:24:08 +020010351 struct drm_encoder *encoder;
10352 struct drm_connector *connector;
10353 int count;
10354
Ville Syrjälä76688512014-01-10 11:28:06 +020010355 config->save_crtc_enabled =
10356 kcalloc(dev->mode_config.num_crtc,
10357 sizeof(bool), GFP_KERNEL);
10358 if (!config->save_crtc_enabled)
10359 return -ENOMEM;
10360
Daniel Vetter1aa4b622012-07-05 16:20:48 +020010361 config->save_encoder_crtcs =
10362 kcalloc(dev->mode_config.num_encoder,
10363 sizeof(struct drm_crtc *), GFP_KERNEL);
10364 if (!config->save_encoder_crtcs)
Daniel Vetter85f9eb72012-07-04 22:24:08 +020010365 return -ENOMEM;
10366
Daniel Vetter1aa4b622012-07-05 16:20:48 +020010367 config->save_connector_encoders =
10368 kcalloc(dev->mode_config.num_connector,
10369 sizeof(struct drm_encoder *), GFP_KERNEL);
10370 if (!config->save_connector_encoders)
Daniel Vetter85f9eb72012-07-04 22:24:08 +020010371 return -ENOMEM;
10372
10373 /* Copy data. Note that driver private data is not affected.
10374 * Should anything bad happen only the expected state is
10375 * restored, not the drivers personal bookkeeping.
10376 */
10377 count = 0;
Damien Lespiau70e1e0e2014-05-13 23:32:24 +010010378 for_each_crtc(dev, crtc) {
Ville Syrjälä76688512014-01-10 11:28:06 +020010379 config->save_crtc_enabled[count++] = crtc->enabled;
10380 }
10381
10382 count = 0;
Daniel Vetter85f9eb72012-07-04 22:24:08 +020010383 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
Daniel Vetter1aa4b622012-07-05 16:20:48 +020010384 config->save_encoder_crtcs[count++] = encoder->crtc;
Daniel Vetter85f9eb72012-07-04 22:24:08 +020010385 }
10386
10387 count = 0;
10388 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
Daniel Vetter1aa4b622012-07-05 16:20:48 +020010389 config->save_connector_encoders[count++] = connector->encoder;
Daniel Vetter85f9eb72012-07-04 22:24:08 +020010390 }
10391
10392 return 0;
10393}
10394
10395static void intel_set_config_restore_state(struct drm_device *dev,
10396 struct intel_set_config *config)
10397{
Ville Syrjälä76688512014-01-10 11:28:06 +020010398 struct intel_crtc *crtc;
Daniel Vetter9a935852012-07-05 22:34:27 +020010399 struct intel_encoder *encoder;
10400 struct intel_connector *connector;
Daniel Vetter85f9eb72012-07-04 22:24:08 +020010401 int count;
10402
10403 count = 0;
Damien Lespiaud3fcc802014-05-13 23:32:22 +010010404 for_each_intel_crtc(dev, crtc) {
Ville Syrjälä76688512014-01-10 11:28:06 +020010405 crtc->new_enabled = config->save_crtc_enabled[count++];
Ville Syrjälä7bd0a8e2014-01-14 14:31:38 +020010406
10407 if (crtc->new_enabled)
10408 crtc->new_config = &crtc->config;
10409 else
10410 crtc->new_config = NULL;
Ville Syrjälä76688512014-01-10 11:28:06 +020010411 }
10412
10413 count = 0;
Daniel Vetter9a935852012-07-05 22:34:27 +020010414 list_for_each_entry(encoder, &dev->mode_config.encoder_list, base.head) {
10415 encoder->new_crtc =
10416 to_intel_crtc(config->save_encoder_crtcs[count++]);
Daniel Vetter85f9eb72012-07-04 22:24:08 +020010417 }
10418
10419 count = 0;
Daniel Vetter9a935852012-07-05 22:34:27 +020010420 list_for_each_entry(connector, &dev->mode_config.connector_list, base.head) {
10421 connector->new_encoder =
10422 to_intel_encoder(config->save_connector_encoders[count++]);
Daniel Vetter85f9eb72012-07-04 22:24:08 +020010423 }
10424}
10425
Imre Deake3de42b2013-05-03 19:44:07 +020010426static bool
Chris Wilson2e57f472013-07-17 12:14:40 +010010427is_crtc_connector_off(struct drm_mode_set *set)
Imre Deake3de42b2013-05-03 19:44:07 +020010428{
10429 int i;
10430
Chris Wilson2e57f472013-07-17 12:14:40 +010010431 if (set->num_connectors == 0)
10432 return false;
10433
10434 if (WARN_ON(set->connectors == NULL))
10435 return false;
10436
10437 for (i = 0; i < set->num_connectors; i++)
10438 if (set->connectors[i]->encoder &&
10439 set->connectors[i]->encoder->crtc == set->crtc &&
10440 set->connectors[i]->dpms != DRM_MODE_DPMS_ON)
Imre Deake3de42b2013-05-03 19:44:07 +020010441 return true;
10442
10443 return false;
10444}
10445
Daniel Vetter5e2b5842012-07-04 22:41:29 +020010446static void
10447intel_set_config_compute_mode_changes(struct drm_mode_set *set,
10448 struct intel_set_config *config)
10449{
10450
10451 /* We should be able to check here if the fb has the same properties
10452 * and then just flip_or_move it */
Chris Wilson2e57f472013-07-17 12:14:40 +010010453 if (is_crtc_connector_off(set)) {
10454 config->mode_changed = true;
Matt Roperf4510a22014-04-01 15:22:40 -070010455 } else if (set->crtc->primary->fb != set->fb) {
Daniel Vetter5e2b5842012-07-04 22:41:29 +020010456 /* If we have no fb then treat it as a full mode set */
Matt Roperf4510a22014-04-01 15:22:40 -070010457 if (set->crtc->primary->fb == NULL) {
Jesse Barnes319d9822013-06-26 01:38:19 +030010458 struct intel_crtc *intel_crtc =
10459 to_intel_crtc(set->crtc);
10460
Jani Nikulad330a952014-01-21 11:24:25 +020010461 if (intel_crtc->active && i915.fastboot) {
Jesse Barnes319d9822013-06-26 01:38:19 +030010462 DRM_DEBUG_KMS("crtc has no fb, will flip\n");
10463 config->fb_changed = true;
10464 } else {
10465 DRM_DEBUG_KMS("inactive crtc, full mode set\n");
10466 config->mode_changed = true;
10467 }
Daniel Vetter5e2b5842012-07-04 22:41:29 +020010468 } else if (set->fb == NULL) {
10469 config->mode_changed = true;
Daniel Vetter72f49012013-03-28 16:01:35 +010010470 } else if (set->fb->pixel_format !=
Matt Roperf4510a22014-04-01 15:22:40 -070010471 set->crtc->primary->fb->pixel_format) {
Daniel Vetter5e2b5842012-07-04 22:41:29 +020010472 config->mode_changed = true;
Imre Deake3de42b2013-05-03 19:44:07 +020010473 } else {
Daniel Vetter5e2b5842012-07-04 22:41:29 +020010474 config->fb_changed = true;
Imre Deake3de42b2013-05-03 19:44:07 +020010475 }
Daniel Vetter5e2b5842012-07-04 22:41:29 +020010476 }
10477
Daniel Vetter835c5872012-07-10 18:11:08 +020010478 if (set->fb && (set->x != set->crtc->x || set->y != set->crtc->y))
Daniel Vetter5e2b5842012-07-04 22:41:29 +020010479 config->fb_changed = true;
10480
10481 if (set->mode && !drm_mode_equal(set->mode, &set->crtc->mode)) {
10482 DRM_DEBUG_KMS("modes are different, full mode set\n");
10483 drm_mode_debug_printmodeline(&set->crtc->mode);
10484 drm_mode_debug_printmodeline(set->mode);
10485 config->mode_changed = true;
10486 }
Chris Wilsona1d95702013-08-13 18:48:47 +010010487
10488 DRM_DEBUG_KMS("computed changes for [CRTC:%d], mode_changed=%d, fb_changed=%d\n",
10489 set->crtc->base.id, config->mode_changed, config->fb_changed);
Daniel Vetter5e2b5842012-07-04 22:41:29 +020010490}
10491
Daniel Vetter2e431052012-07-04 22:42:15 +020010492static int
Daniel Vetter9a935852012-07-05 22:34:27 +020010493intel_modeset_stage_output_state(struct drm_device *dev,
10494 struct drm_mode_set *set,
10495 struct intel_set_config *config)
Daniel Vetter50f56112012-07-02 09:35:43 +020010496{
Daniel Vetter9a935852012-07-05 22:34:27 +020010497 struct intel_connector *connector;
10498 struct intel_encoder *encoder;
Ville Syrjälä76688512014-01-10 11:28:06 +020010499 struct intel_crtc *crtc;
Paulo Zanonif3f08572013-08-12 14:56:53 -030010500 int ro;
Daniel Vetter50f56112012-07-02 09:35:43 +020010501
Damien Lespiau9abdda72013-02-13 13:29:23 +000010502 /* The upper layers ensure that we either disable a crtc or have a list
Daniel Vetter9a935852012-07-05 22:34:27 +020010503 * of connectors. For paranoia, double-check this. */
10504 WARN_ON(!set->fb && (set->num_connectors != 0));
10505 WARN_ON(set->fb && (set->num_connectors == 0));
10506
Daniel Vetter9a935852012-07-05 22:34:27 +020010507 list_for_each_entry(connector, &dev->mode_config.connector_list,
10508 base.head) {
10509 /* Otherwise traverse passed in connector list and get encoders
10510 * for them. */
Daniel Vetter50f56112012-07-02 09:35:43 +020010511 for (ro = 0; ro < set->num_connectors; ro++) {
Daniel Vetter9a935852012-07-05 22:34:27 +020010512 if (set->connectors[ro] == &connector->base) {
10513 connector->new_encoder = connector->encoder;
Daniel Vetter50f56112012-07-02 09:35:43 +020010514 break;
10515 }
10516 }
10517
Daniel Vetter9a935852012-07-05 22:34:27 +020010518 /* If we disable the crtc, disable all its connectors. Also, if
10519 * the connector is on the changing crtc but not on the new
10520 * connector list, disable it. */
10521 if ((!set->fb || ro == set->num_connectors) &&
10522 connector->base.encoder &&
10523 connector->base.encoder->crtc == set->crtc) {
10524 connector->new_encoder = NULL;
10525
10526 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] to [NOCRTC]\n",
10527 connector->base.base.id,
10528 drm_get_connector_name(&connector->base));
10529 }
10530
10531
10532 if (&connector->new_encoder->base != connector->base.encoder) {
Daniel Vetter50f56112012-07-02 09:35:43 +020010533 DRM_DEBUG_KMS("encoder changed, full mode switch\n");
Daniel Vetter5e2b5842012-07-04 22:41:29 +020010534 config->mode_changed = true;
Daniel Vetter50f56112012-07-02 09:35:43 +020010535 }
Daniel Vetter9a935852012-07-05 22:34:27 +020010536 }
10537 /* connector->new_encoder is now updated for all connectors. */
10538
10539 /* Update crtc of enabled connectors. */
Daniel Vetter9a935852012-07-05 22:34:27 +020010540 list_for_each_entry(connector, &dev->mode_config.connector_list,
10541 base.head) {
Ville Syrjälä76688512014-01-10 11:28:06 +020010542 struct drm_crtc *new_crtc;
10543
Daniel Vetter9a935852012-07-05 22:34:27 +020010544 if (!connector->new_encoder)
Daniel Vetter50f56112012-07-02 09:35:43 +020010545 continue;
10546
Daniel Vetter9a935852012-07-05 22:34:27 +020010547 new_crtc = connector->new_encoder->base.crtc;
Daniel Vetter50f56112012-07-02 09:35:43 +020010548
10549 for (ro = 0; ro < set->num_connectors; ro++) {
Daniel Vetter9a935852012-07-05 22:34:27 +020010550 if (set->connectors[ro] == &connector->base)
Daniel Vetter50f56112012-07-02 09:35:43 +020010551 new_crtc = set->crtc;
10552 }
10553
10554 /* Make sure the new CRTC will work with the encoder */
Thierry Reding14509912014-01-13 12:00:22 +010010555 if (!drm_encoder_crtc_ok(&connector->new_encoder->base,
10556 new_crtc)) {
Daniel Vetter5e2b5842012-07-04 22:41:29 +020010557 return -EINVAL;
Daniel Vetter50f56112012-07-02 09:35:43 +020010558 }
Daniel Vetter9a935852012-07-05 22:34:27 +020010559 connector->encoder->new_crtc = to_intel_crtc(new_crtc);
10560
10561 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] to [CRTC:%d]\n",
10562 connector->base.base.id,
10563 drm_get_connector_name(&connector->base),
10564 new_crtc->base.id);
10565 }
10566
10567 /* Check for any encoders that needs to be disabled. */
10568 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
10569 base.head) {
Paulo Zanoni5a65f352014-01-07 14:55:53 -020010570 int num_connectors = 0;
Daniel Vetter9a935852012-07-05 22:34:27 +020010571 list_for_each_entry(connector,
10572 &dev->mode_config.connector_list,
10573 base.head) {
10574 if (connector->new_encoder == encoder) {
10575 WARN_ON(!connector->new_encoder->new_crtc);
Paulo Zanoni5a65f352014-01-07 14:55:53 -020010576 num_connectors++;
Daniel Vetter9a935852012-07-05 22:34:27 +020010577 }
10578 }
Paulo Zanoni5a65f352014-01-07 14:55:53 -020010579
10580 if (num_connectors == 0)
10581 encoder->new_crtc = NULL;
10582 else if (num_connectors > 1)
10583 return -EINVAL;
10584
Daniel Vetter9a935852012-07-05 22:34:27 +020010585 /* Only now check for crtc changes so we don't miss encoders
10586 * that will be disabled. */
10587 if (&encoder->new_crtc->base != encoder->base.crtc) {
Daniel Vetter50f56112012-07-02 09:35:43 +020010588 DRM_DEBUG_KMS("crtc changed, full mode switch\n");
Daniel Vetter5e2b5842012-07-04 22:41:29 +020010589 config->mode_changed = true;
Daniel Vetter50f56112012-07-02 09:35:43 +020010590 }
10591 }
Daniel Vetter9a935852012-07-05 22:34:27 +020010592 /* Now we've also updated encoder->new_crtc for all encoders. */
Daniel Vetter50f56112012-07-02 09:35:43 +020010593
Damien Lespiaud3fcc802014-05-13 23:32:22 +010010594 for_each_intel_crtc(dev, crtc) {
Ville Syrjälä76688512014-01-10 11:28:06 +020010595 crtc->new_enabled = false;
10596
10597 list_for_each_entry(encoder,
10598 &dev->mode_config.encoder_list,
10599 base.head) {
10600 if (encoder->new_crtc == crtc) {
10601 crtc->new_enabled = true;
10602 break;
10603 }
10604 }
10605
10606 if (crtc->new_enabled != crtc->base.enabled) {
10607 DRM_DEBUG_KMS("crtc %sabled, full mode switch\n",
10608 crtc->new_enabled ? "en" : "dis");
10609 config->mode_changed = true;
10610 }
Ville Syrjälä7bd0a8e2014-01-14 14:31:38 +020010611
10612 if (crtc->new_enabled)
10613 crtc->new_config = &crtc->config;
10614 else
10615 crtc->new_config = NULL;
Ville Syrjälä76688512014-01-10 11:28:06 +020010616 }
10617
Daniel Vetter2e431052012-07-04 22:42:15 +020010618 return 0;
10619}
10620
Ville Syrjälä7d00a1f2014-01-10 11:28:09 +020010621static void disable_crtc_nofb(struct intel_crtc *crtc)
10622{
10623 struct drm_device *dev = crtc->base.dev;
10624 struct intel_encoder *encoder;
10625 struct intel_connector *connector;
10626
10627 DRM_DEBUG_KMS("Trying to restore without FB -> disabling pipe %c\n",
10628 pipe_name(crtc->pipe));
10629
10630 list_for_each_entry(connector, &dev->mode_config.connector_list, base.head) {
10631 if (connector->new_encoder &&
10632 connector->new_encoder->new_crtc == crtc)
10633 connector->new_encoder = NULL;
10634 }
10635
10636 list_for_each_entry(encoder, &dev->mode_config.encoder_list, base.head) {
10637 if (encoder->new_crtc == crtc)
10638 encoder->new_crtc = NULL;
10639 }
10640
10641 crtc->new_enabled = false;
Ville Syrjälä7bd0a8e2014-01-14 14:31:38 +020010642 crtc->new_config = NULL;
Ville Syrjälä7d00a1f2014-01-10 11:28:09 +020010643}
10644
Daniel Vetter2e431052012-07-04 22:42:15 +020010645static int intel_crtc_set_config(struct drm_mode_set *set)
10646{
10647 struct drm_device *dev;
Daniel Vetter2e431052012-07-04 22:42:15 +020010648 struct drm_mode_set save_set;
10649 struct intel_set_config *config;
10650 int ret;
Daniel Vetter2e431052012-07-04 22:42:15 +020010651
Daniel Vetter8d3e3752012-07-05 16:09:09 +020010652 BUG_ON(!set);
10653 BUG_ON(!set->crtc);
10654 BUG_ON(!set->crtc->helper_private);
Daniel Vetter2e431052012-07-04 22:42:15 +020010655
Daniel Vetter7e53f3a2013-01-21 10:52:17 +010010656 /* Enforce sane interface api - has been abused by the fb helper. */
10657 BUG_ON(!set->mode && set->fb);
10658 BUG_ON(set->fb && set->num_connectors == 0);
Daniel Vetter431e50f2012-07-10 17:53:42 +020010659
Daniel Vetter2e431052012-07-04 22:42:15 +020010660 if (set->fb) {
10661 DRM_DEBUG_KMS("[CRTC:%d] [FB:%d] #connectors=%d (x y) (%i %i)\n",
10662 set->crtc->base.id, set->fb->base.id,
10663 (int)set->num_connectors, set->x, set->y);
10664 } else {
10665 DRM_DEBUG_KMS("[CRTC:%d] [NOFB]\n", set->crtc->base.id);
Daniel Vetter2e431052012-07-04 22:42:15 +020010666 }
10667
10668 dev = set->crtc->dev;
10669
10670 ret = -ENOMEM;
10671 config = kzalloc(sizeof(*config), GFP_KERNEL);
10672 if (!config)
10673 goto out_config;
10674
10675 ret = intel_set_config_save_state(dev, config);
10676 if (ret)
10677 goto out_config;
10678
10679 save_set.crtc = set->crtc;
10680 save_set.mode = &set->crtc->mode;
10681 save_set.x = set->crtc->x;
10682 save_set.y = set->crtc->y;
Matt Roperf4510a22014-04-01 15:22:40 -070010683 save_set.fb = set->crtc->primary->fb;
Daniel Vetter2e431052012-07-04 22:42:15 +020010684
10685 /* Compute whether we need a full modeset, only an fb base update or no
10686 * change at all. In the future we might also check whether only the
10687 * mode changed, e.g. for LVDS where we only change the panel fitter in
10688 * such cases. */
10689 intel_set_config_compute_mode_changes(set, config);
10690
Daniel Vetter9a935852012-07-05 22:34:27 +020010691 ret = intel_modeset_stage_output_state(dev, set, config);
Daniel Vetter2e431052012-07-04 22:42:15 +020010692 if (ret)
10693 goto fail;
10694
Daniel Vetter5e2b5842012-07-04 22:41:29 +020010695 if (config->mode_changed) {
Chris Wilsonc0c36b942012-12-19 16:08:43 +000010696 ret = intel_set_mode(set->crtc, set->mode,
10697 set->x, set->y, set->fb);
Daniel Vetter5e2b5842012-07-04 22:41:29 +020010698 } else if (config->fb_changed) {
Ville Syrjälä4878cae2013-02-18 19:08:48 +020010699 intel_crtc_wait_for_pending_flips(set->crtc);
10700
Daniel Vetter4f660f42012-07-02 09:47:37 +020010701 ret = intel_pipe_set_base(set->crtc,
Daniel Vetter94352cf2012-07-05 22:51:56 +020010702 set->x, set->y, set->fb);
Jesse Barnes7ca51a32014-01-07 13:50:49 -080010703 /*
10704 * In the fastboot case this may be our only check of the
10705 * state after boot. It would be better to only do it on
10706 * the first update, but we don't have a nice way of doing that
10707 * (and really, set_config isn't used much for high freq page
10708 * flipping, so increasing its cost here shouldn't be a big
10709 * deal).
10710 */
Jani Nikulad330a952014-01-21 11:24:25 +020010711 if (i915.fastboot && ret == 0)
Jesse Barnes7ca51a32014-01-07 13:50:49 -080010712 intel_modeset_check_state(set->crtc->dev);
Daniel Vetter50f56112012-07-02 09:35:43 +020010713 }
10714
Chris Wilson2d05eae2013-05-03 17:36:25 +010010715 if (ret) {
Daniel Vetterbf67dfe2013-06-25 11:06:52 +020010716 DRM_DEBUG_KMS("failed to set mode on [CRTC:%d], err = %d\n",
10717 set->crtc->base.id, ret);
Daniel Vetter50f56112012-07-02 09:35:43 +020010718fail:
Chris Wilson2d05eae2013-05-03 17:36:25 +010010719 intel_set_config_restore_state(dev, config);
Daniel Vetter50f56112012-07-02 09:35:43 +020010720
Ville Syrjälä7d00a1f2014-01-10 11:28:09 +020010721 /*
10722 * HACK: if the pipe was on, but we didn't have a framebuffer,
10723 * force the pipe off to avoid oopsing in the modeset code
10724 * due to fb==NULL. This should only happen during boot since
10725 * we don't yet reconstruct the FB from the hardware state.
10726 */
10727 if (to_intel_crtc(save_set.crtc)->new_enabled && !save_set.fb)
10728 disable_crtc_nofb(to_intel_crtc(save_set.crtc));
10729
Chris Wilson2d05eae2013-05-03 17:36:25 +010010730 /* Try to restore the config */
10731 if (config->mode_changed &&
10732 intel_set_mode(save_set.crtc, save_set.mode,
10733 save_set.x, save_set.y, save_set.fb))
10734 DRM_ERROR("failed to restore config after modeset failure\n");
10735 }
Daniel Vetter50f56112012-07-02 09:35:43 +020010736
Daniel Vetterd9e55602012-07-04 22:16:09 +020010737out_config:
10738 intel_set_config_free(config);
Daniel Vetter50f56112012-07-02 09:35:43 +020010739 return ret;
10740}
10741
Chris Wilsonf6e5b162011-04-12 18:06:51 +010010742static const struct drm_crtc_funcs intel_crtc_funcs = {
Chris Wilsonf6e5b162011-04-12 18:06:51 +010010743 .cursor_set = intel_crtc_cursor_set,
10744 .cursor_move = intel_crtc_cursor_move,
10745 .gamma_set = intel_crtc_gamma_set,
Daniel Vetter50f56112012-07-02 09:35:43 +020010746 .set_config = intel_crtc_set_config,
Chris Wilsonf6e5b162011-04-12 18:06:51 +010010747 .destroy = intel_crtc_destroy,
10748 .page_flip = intel_crtc_page_flip,
10749};
10750
Paulo Zanoni79f689a2012-10-05 12:05:52 -030010751static void intel_cpu_pll_init(struct drm_device *dev)
10752{
Paulo Zanoniaffa9352012-11-23 15:30:39 -020010753 if (HAS_DDI(dev))
Paulo Zanoni79f689a2012-10-05 12:05:52 -030010754 intel_ddi_pll_init(dev);
10755}
10756
Daniel Vetter53589012013-06-05 13:34:16 +020010757static bool ibx_pch_dpll_get_hw_state(struct drm_i915_private *dev_priv,
10758 struct intel_shared_dpll *pll,
10759 struct intel_dpll_hw_state *hw_state)
Jesse Barnesee7b9f92012-04-20 17:11:53 +010010760{
Daniel Vetter53589012013-06-05 13:34:16 +020010761 uint32_t val;
10762
10763 val = I915_READ(PCH_DPLL(pll->id));
Daniel Vetter66e985c2013-06-05 13:34:20 +020010764 hw_state->dpll = val;
10765 hw_state->fp0 = I915_READ(PCH_FP0(pll->id));
10766 hw_state->fp1 = I915_READ(PCH_FP1(pll->id));
Daniel Vetter53589012013-06-05 13:34:16 +020010767
10768 return val & DPLL_VCO_ENABLE;
10769}
10770
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020010771static void ibx_pch_dpll_mode_set(struct drm_i915_private *dev_priv,
10772 struct intel_shared_dpll *pll)
10773{
10774 I915_WRITE(PCH_FP0(pll->id), pll->hw_state.fp0);
10775 I915_WRITE(PCH_FP1(pll->id), pll->hw_state.fp1);
10776}
10777
Daniel Vettere7b903d2013-06-05 13:34:14 +020010778static void ibx_pch_dpll_enable(struct drm_i915_private *dev_priv,
10779 struct intel_shared_dpll *pll)
10780{
Daniel Vettere7b903d2013-06-05 13:34:14 +020010781 /* PCH refclock must be enabled first */
Paulo Zanoni89eff4b2014-01-08 11:12:28 -020010782 ibx_assert_pch_refclk_enabled(dev_priv);
Daniel Vettere7b903d2013-06-05 13:34:14 +020010783
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020010784 I915_WRITE(PCH_DPLL(pll->id), pll->hw_state.dpll);
10785
10786 /* Wait for the clocks to stabilize. */
10787 POSTING_READ(PCH_DPLL(pll->id));
10788 udelay(150);
10789
10790 /* The pixel multiplier can only be updated once the
10791 * DPLL is enabled and the clocks are stable.
10792 *
10793 * So write it again.
10794 */
10795 I915_WRITE(PCH_DPLL(pll->id), pll->hw_state.dpll);
10796 POSTING_READ(PCH_DPLL(pll->id));
Daniel Vettere7b903d2013-06-05 13:34:14 +020010797 udelay(200);
10798}
10799
10800static void ibx_pch_dpll_disable(struct drm_i915_private *dev_priv,
10801 struct intel_shared_dpll *pll)
10802{
10803 struct drm_device *dev = dev_priv->dev;
10804 struct intel_crtc *crtc;
Daniel Vettere7b903d2013-06-05 13:34:14 +020010805
10806 /* Make sure no transcoder isn't still depending on us. */
Damien Lespiaud3fcc802014-05-13 23:32:22 +010010807 for_each_intel_crtc(dev, crtc) {
Daniel Vettere7b903d2013-06-05 13:34:14 +020010808 if (intel_crtc_to_shared_dpll(crtc) == pll)
10809 assert_pch_transcoder_disabled(dev_priv, crtc->pipe);
10810 }
10811
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020010812 I915_WRITE(PCH_DPLL(pll->id), 0);
10813 POSTING_READ(PCH_DPLL(pll->id));
Daniel Vettere7b903d2013-06-05 13:34:14 +020010814 udelay(200);
10815}
10816
Daniel Vetter46edb022013-06-05 13:34:12 +020010817static char *ibx_pch_dpll_names[] = {
10818 "PCH DPLL A",
10819 "PCH DPLL B",
10820};
10821
Daniel Vetter7c74ade2013-06-05 13:34:11 +020010822static void ibx_pch_dpll_init(struct drm_device *dev)
Jesse Barnesee7b9f92012-04-20 17:11:53 +010010823{
Daniel Vettere7b903d2013-06-05 13:34:14 +020010824 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesee7b9f92012-04-20 17:11:53 +010010825 int i;
10826
Daniel Vetter7c74ade2013-06-05 13:34:11 +020010827 dev_priv->num_shared_dpll = 2;
Jesse Barnesee7b9f92012-04-20 17:11:53 +010010828
Daniel Vettere72f9fb2013-06-05 13:34:06 +020010829 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
Daniel Vetter46edb022013-06-05 13:34:12 +020010830 dev_priv->shared_dplls[i].id = i;
10831 dev_priv->shared_dplls[i].name = ibx_pch_dpll_names[i];
Daniel Vetter15bdd4c2013-06-05 13:34:23 +020010832 dev_priv->shared_dplls[i].mode_set = ibx_pch_dpll_mode_set;
Daniel Vettere7b903d2013-06-05 13:34:14 +020010833 dev_priv->shared_dplls[i].enable = ibx_pch_dpll_enable;
10834 dev_priv->shared_dplls[i].disable = ibx_pch_dpll_disable;
Daniel Vetter53589012013-06-05 13:34:16 +020010835 dev_priv->shared_dplls[i].get_hw_state =
10836 ibx_pch_dpll_get_hw_state;
Jesse Barnesee7b9f92012-04-20 17:11:53 +010010837 }
10838}
10839
Daniel Vetter7c74ade2013-06-05 13:34:11 +020010840static void intel_shared_dpll_init(struct drm_device *dev)
10841{
Daniel Vettere7b903d2013-06-05 13:34:14 +020010842 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter7c74ade2013-06-05 13:34:11 +020010843
10844 if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev))
10845 ibx_pch_dpll_init(dev);
10846 else
10847 dev_priv->num_shared_dpll = 0;
10848
10849 BUG_ON(dev_priv->num_shared_dpll > I915_NUM_PLLS);
Daniel Vetter7c74ade2013-06-05 13:34:11 +020010850}
10851
Hannes Ederb358d0a2008-12-18 21:18:47 +010010852static void intel_crtc_init(struct drm_device *dev, int pipe)
Jesse Barnes79e53942008-11-07 14:24:08 -080010853{
Jani Nikulafbee40d2014-03-31 14:27:18 +030010854 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -080010855 struct intel_crtc *intel_crtc;
10856 int i;
10857
Daniel Vetter955382f2013-09-19 14:05:45 +020010858 intel_crtc = kzalloc(sizeof(*intel_crtc), GFP_KERNEL);
Jesse Barnes79e53942008-11-07 14:24:08 -080010859 if (intel_crtc == NULL)
10860 return;
10861
10862 drm_crtc_init(dev, &intel_crtc->base, &intel_crtc_funcs);
10863
10864 drm_mode_crtc_set_gamma_size(&intel_crtc->base, 256);
Jesse Barnes79e53942008-11-07 14:24:08 -080010865 for (i = 0; i < 256; i++) {
10866 intel_crtc->lut_r[i] = i;
10867 intel_crtc->lut_g[i] = i;
10868 intel_crtc->lut_b[i] = i;
10869 }
10870
Ville Syrjälä1f1c2e22013-11-28 17:30:01 +020010871 /*
10872 * On gen2/3 only plane A can do fbc, but the panel fitter and lvds port
10873 * is hooked to plane B. Hence we want plane A feeding pipe B.
10874 */
Jesse Barnes80824002009-09-10 15:28:06 -070010875 intel_crtc->pipe = pipe;
10876 intel_crtc->plane = pipe;
Daniel Vetter3a77c4c2014-01-10 08:50:12 +010010877 if (HAS_FBC(dev) && INTEL_INFO(dev)->gen < 4) {
Zhao Yakui28c97732009-10-09 11:39:41 +080010878 DRM_DEBUG_KMS("swapping pipes & planes for FBC\n");
Chris Wilsone2e767a2010-09-13 16:53:12 +010010879 intel_crtc->plane = !pipe;
Jesse Barnes80824002009-09-10 15:28:06 -070010880 }
10881
Ville Syrjälä8d7849d2014-04-29 13:35:46 +030010882 init_waitqueue_head(&intel_crtc->vbl_wait);
10883
Jesse Barnes22fd0fa2009-12-02 13:42:53 -080010884 BUG_ON(pipe >= ARRAY_SIZE(dev_priv->plane_to_crtc_mapping) ||
10885 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] != NULL);
10886 dev_priv->plane_to_crtc_mapping[intel_crtc->plane] = &intel_crtc->base;
10887 dev_priv->pipe_to_crtc_mapping[intel_crtc->pipe] = &intel_crtc->base;
10888
Jesse Barnes79e53942008-11-07 14:24:08 -080010889 drm_crtc_helper_add(&intel_crtc->base, &intel_helper_funcs);
Jesse Barnes79e53942008-11-07 14:24:08 -080010890}
10891
Jesse Barnes752aa882013-10-31 18:55:49 +020010892enum pipe intel_get_pipe_from_connector(struct intel_connector *connector)
10893{
10894 struct drm_encoder *encoder = connector->base.encoder;
10895
10896 WARN_ON(!mutex_is_locked(&connector->base.dev->mode_config.mutex));
10897
10898 if (!encoder)
10899 return INVALID_PIPE;
10900
10901 return to_intel_crtc(encoder->crtc)->pipe;
10902}
10903
Carl Worth08d7b3d2009-04-29 14:43:54 -070010904int intel_get_pipe_from_crtc_id(struct drm_device *dev, void *data,
Chris Wilson05394f32010-11-08 19:18:58 +000010905 struct drm_file *file)
Carl Worth08d7b3d2009-04-29 14:43:54 -070010906{
Carl Worth08d7b3d2009-04-29 14:43:54 -070010907 struct drm_i915_get_pipe_from_crtc_id *pipe_from_crtc_id = data;
Daniel Vetterc05422d2009-08-11 16:05:30 +020010908 struct drm_mode_object *drmmode_obj;
10909 struct intel_crtc *crtc;
Carl Worth08d7b3d2009-04-29 14:43:54 -070010910
Daniel Vetter1cff8f62012-04-24 09:55:08 +020010911 if (!drm_core_check_feature(dev, DRIVER_MODESET))
10912 return -ENODEV;
Carl Worth08d7b3d2009-04-29 14:43:54 -070010913
Daniel Vetterc05422d2009-08-11 16:05:30 +020010914 drmmode_obj = drm_mode_object_find(dev, pipe_from_crtc_id->crtc_id,
10915 DRM_MODE_OBJECT_CRTC);
Carl Worth08d7b3d2009-04-29 14:43:54 -070010916
Daniel Vetterc05422d2009-08-11 16:05:30 +020010917 if (!drmmode_obj) {
Carl Worth08d7b3d2009-04-29 14:43:54 -070010918 DRM_ERROR("no such CRTC id\n");
Ville Syrjälä3f2c2052013-10-17 13:35:03 +030010919 return -ENOENT;
Carl Worth08d7b3d2009-04-29 14:43:54 -070010920 }
10921
Daniel Vetterc05422d2009-08-11 16:05:30 +020010922 crtc = to_intel_crtc(obj_to_crtc(drmmode_obj));
10923 pipe_from_crtc_id->pipe = crtc->pipe;
Carl Worth08d7b3d2009-04-29 14:43:54 -070010924
Daniel Vetterc05422d2009-08-11 16:05:30 +020010925 return 0;
Carl Worth08d7b3d2009-04-29 14:43:54 -070010926}
10927
Daniel Vetter66a92782012-07-12 20:08:18 +020010928static int intel_encoder_clones(struct intel_encoder *encoder)
Jesse Barnes79e53942008-11-07 14:24:08 -080010929{
Daniel Vetter66a92782012-07-12 20:08:18 +020010930 struct drm_device *dev = encoder->base.dev;
10931 struct intel_encoder *source_encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -080010932 int index_mask = 0;
Jesse Barnes79e53942008-11-07 14:24:08 -080010933 int entry = 0;
10934
Daniel Vetter66a92782012-07-12 20:08:18 +020010935 list_for_each_entry(source_encoder,
10936 &dev->mode_config.encoder_list, base.head) {
Ville Syrjäläbc079e82014-03-03 16:15:28 +020010937 if (encoders_cloneable(encoder, source_encoder))
Daniel Vetter66a92782012-07-12 20:08:18 +020010938 index_mask |= (1 << entry);
10939
Jesse Barnes79e53942008-11-07 14:24:08 -080010940 entry++;
10941 }
Chris Wilson4ef69c72010-09-09 15:14:28 +010010942
Jesse Barnes79e53942008-11-07 14:24:08 -080010943 return index_mask;
10944}
10945
Chris Wilson4d302442010-12-14 19:21:29 +000010946static bool has_edp_a(struct drm_device *dev)
10947{
10948 struct drm_i915_private *dev_priv = dev->dev_private;
10949
10950 if (!IS_MOBILE(dev))
10951 return false;
10952
10953 if ((I915_READ(DP_A) & DP_DETECTED) == 0)
10954 return false;
10955
Damien Lespiaue3589902014-02-07 19:12:50 +000010956 if (IS_GEN5(dev) && (I915_READ(FUSE_STRAP) & ILK_eDP_A_DISABLE))
Chris Wilson4d302442010-12-14 19:21:29 +000010957 return false;
10958
10959 return true;
10960}
10961
Damien Lespiauba0fbca2014-01-08 14:18:23 +000010962const char *intel_output_name(int output)
10963{
10964 static const char *names[] = {
10965 [INTEL_OUTPUT_UNUSED] = "Unused",
10966 [INTEL_OUTPUT_ANALOG] = "Analog",
10967 [INTEL_OUTPUT_DVO] = "DVO",
10968 [INTEL_OUTPUT_SDVO] = "SDVO",
10969 [INTEL_OUTPUT_LVDS] = "LVDS",
10970 [INTEL_OUTPUT_TVOUT] = "TV",
10971 [INTEL_OUTPUT_HDMI] = "HDMI",
10972 [INTEL_OUTPUT_DISPLAYPORT] = "DisplayPort",
10973 [INTEL_OUTPUT_EDP] = "eDP",
10974 [INTEL_OUTPUT_DSI] = "DSI",
10975 [INTEL_OUTPUT_UNKNOWN] = "Unknown",
10976 };
10977
10978 if (output < 0 || output >= ARRAY_SIZE(names) || !names[output])
10979 return "Invalid";
10980
10981 return names[output];
10982}
10983
Jesse Barnes79e53942008-11-07 14:24:08 -080010984static void intel_setup_outputs(struct drm_device *dev)
10985{
Eric Anholt725e30a2009-01-22 13:01:02 -080010986 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson4ef69c72010-09-09 15:14:28 +010010987 struct intel_encoder *encoder;
Adam Jacksoncb0953d2010-07-16 14:46:29 -040010988 bool dpd_is_edp = false;
Jesse Barnes79e53942008-11-07 14:24:08 -080010989
Daniel Vetterc9093352013-06-06 22:22:47 +020010990 intel_lvds_init(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -080010991
Ville Syrjälä7895a812014-04-09 13:28:23 +030010992 if (!IS_ULT(dev) && !IS_CHERRYVIEW(dev))
Paulo Zanoni79935fc2012-11-20 13:27:40 -020010993 intel_crt_init(dev);
Adam Jacksoncb0953d2010-07-16 14:46:29 -040010994
Paulo Zanoniaffa9352012-11-23 15:30:39 -020010995 if (HAS_DDI(dev)) {
Eugeni Dodonov0e72a5b2012-05-09 15:37:27 -030010996 int found;
10997
10998 /* Haswell uses DDI functions to detect digital outputs */
10999 found = I915_READ(DDI_BUF_CTL_A) & DDI_INIT_DISPLAY_DETECTED;
11000 /* DDI A only supports eDP */
11001 if (found)
11002 intel_ddi_init(dev, PORT_A);
11003
11004 /* DDI B, C and D detection is indicated by the SFUSE_STRAP
11005 * register */
11006 found = I915_READ(SFUSE_STRAP);
11007
11008 if (found & SFUSE_STRAP_DDIB_DETECTED)
11009 intel_ddi_init(dev, PORT_B);
11010 if (found & SFUSE_STRAP_DDIC_DETECTED)
11011 intel_ddi_init(dev, PORT_C);
11012 if (found & SFUSE_STRAP_DDID_DETECTED)
11013 intel_ddi_init(dev, PORT_D);
11014 } else if (HAS_PCH_SPLIT(dev)) {
Adam Jacksoncb0953d2010-07-16 14:46:29 -040011015 int found;
Ville Syrjälä5d8a7752013-11-01 18:22:39 +020011016 dpd_is_edp = intel_dp_is_edp(dev, PORT_D);
Daniel Vetter270b3042012-10-27 15:52:05 +020011017
11018 if (has_edp_a(dev))
11019 intel_dp_init(dev, DP_A, PORT_A);
Adam Jacksoncb0953d2010-07-16 14:46:29 -040011020
Paulo Zanonidc0fa712013-02-19 16:21:46 -030011021 if (I915_READ(PCH_HDMIB) & SDVO_DETECTED) {
Zhao Yakui461ed3c2010-03-30 15:11:33 +080011022 /* PCH SDVOB multiplex with HDMIB */
Daniel Vettereef4eac2012-03-23 23:43:35 +010011023 found = intel_sdvo_init(dev, PCH_SDVOB, true);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +080011024 if (!found)
Paulo Zanonie2debe92013-02-18 19:00:27 -030011025 intel_hdmi_init(dev, PCH_HDMIB, PORT_B);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +080011026 if (!found && (I915_READ(PCH_DP_B) & DP_DETECTED))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030011027 intel_dp_init(dev, PCH_DP_B, PORT_B);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +080011028 }
11029
Paulo Zanonidc0fa712013-02-19 16:21:46 -030011030 if (I915_READ(PCH_HDMIC) & SDVO_DETECTED)
Paulo Zanonie2debe92013-02-18 19:00:27 -030011031 intel_hdmi_init(dev, PCH_HDMIC, PORT_C);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +080011032
Paulo Zanonidc0fa712013-02-19 16:21:46 -030011033 if (!dpd_is_edp && I915_READ(PCH_HDMID) & SDVO_DETECTED)
Paulo Zanonie2debe92013-02-18 19:00:27 -030011034 intel_hdmi_init(dev, PCH_HDMID, PORT_D);
Zhenyu Wang30ad48b2009-06-05 15:38:43 +080011035
Zhenyu Wang5eb08b62009-07-24 01:00:31 +080011036 if (I915_READ(PCH_DP_C) & DP_DETECTED)
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030011037 intel_dp_init(dev, PCH_DP_C, PORT_C);
Zhenyu Wang5eb08b62009-07-24 01:00:31 +080011038
Daniel Vetter270b3042012-10-27 15:52:05 +020011039 if (I915_READ(PCH_DP_D) & DP_DETECTED)
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030011040 intel_dp_init(dev, PCH_DP_D, PORT_D);
Jesse Barnes4a87d652012-06-15 11:55:16 -070011041 } else if (IS_VALLEYVIEW(dev)) {
Artem Bityutskiy585a94b2013-10-16 18:10:41 +030011042 if (I915_READ(VLV_DISPLAY_BASE + GEN4_HDMIB) & SDVO_DETECTED) {
11043 intel_hdmi_init(dev, VLV_DISPLAY_BASE + GEN4_HDMIB,
11044 PORT_B);
11045 if (I915_READ(VLV_DISPLAY_BASE + DP_B) & DP_DETECTED)
11046 intel_dp_init(dev, VLV_DISPLAY_BASE + DP_B, PORT_B);
11047 }
11048
Jesse Barnes6f6005a2013-08-09 09:34:35 -070011049 if (I915_READ(VLV_DISPLAY_BASE + GEN4_HDMIC) & SDVO_DETECTED) {
11050 intel_hdmi_init(dev, VLV_DISPLAY_BASE + GEN4_HDMIC,
11051 PORT_C);
11052 if (I915_READ(VLV_DISPLAY_BASE + DP_C) & DP_DETECTED)
Ville Syrjälä5d8a7752013-11-01 18:22:39 +020011053 intel_dp_init(dev, VLV_DISPLAY_BASE + DP_C, PORT_C);
Jesse Barnes6f6005a2013-08-09 09:34:35 -070011054 }
Gajanan Bhat19c03922012-09-27 19:13:07 +053011055
Jani Nikula3cfca972013-08-27 15:12:26 +030011056 intel_dsi_init(dev);
Zhenyu Wang103a1962009-11-27 11:44:36 +080011057 } else if (SUPPORTS_DIGITAL_OUTPUTS(dev)) {
Ma Ling27185ae2009-08-24 13:50:23 +080011058 bool found = false;
Eric Anholt7d573822009-01-02 13:33:00 -080011059
Paulo Zanonie2debe92013-02-18 19:00:27 -030011060 if (I915_READ(GEN3_SDVOB) & SDVO_DETECTED) {
Jesse Barnesb01f2c32009-12-11 11:07:17 -080011061 DRM_DEBUG_KMS("probing SDVOB\n");
Paulo Zanonie2debe92013-02-18 19:00:27 -030011062 found = intel_sdvo_init(dev, GEN3_SDVOB, true);
Jesse Barnesb01f2c32009-12-11 11:07:17 -080011063 if (!found && SUPPORTS_INTEGRATED_HDMI(dev)) {
11064 DRM_DEBUG_KMS("probing HDMI on SDVOB\n");
Paulo Zanonie2debe92013-02-18 19:00:27 -030011065 intel_hdmi_init(dev, GEN4_HDMIB, PORT_B);
Jesse Barnesb01f2c32009-12-11 11:07:17 -080011066 }
Ma Ling27185ae2009-08-24 13:50:23 +080011067
Imre Deake7281ea2013-05-08 13:14:08 +030011068 if (!found && SUPPORTS_INTEGRATED_DP(dev))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030011069 intel_dp_init(dev, DP_B, PORT_B);
Eric Anholt725e30a2009-01-22 13:01:02 -080011070 }
Kristian Høgsberg13520b02009-03-13 15:42:14 -040011071
11072 /* Before G4X SDVOC doesn't have its own detect register */
Kristian Høgsberg13520b02009-03-13 15:42:14 -040011073
Paulo Zanonie2debe92013-02-18 19:00:27 -030011074 if (I915_READ(GEN3_SDVOB) & SDVO_DETECTED) {
Jesse Barnesb01f2c32009-12-11 11:07:17 -080011075 DRM_DEBUG_KMS("probing SDVOC\n");
Paulo Zanonie2debe92013-02-18 19:00:27 -030011076 found = intel_sdvo_init(dev, GEN3_SDVOC, false);
Jesse Barnesb01f2c32009-12-11 11:07:17 -080011077 }
Ma Ling27185ae2009-08-24 13:50:23 +080011078
Paulo Zanonie2debe92013-02-18 19:00:27 -030011079 if (!found && (I915_READ(GEN3_SDVOC) & SDVO_DETECTED)) {
Ma Ling27185ae2009-08-24 13:50:23 +080011080
Jesse Barnesb01f2c32009-12-11 11:07:17 -080011081 if (SUPPORTS_INTEGRATED_HDMI(dev)) {
11082 DRM_DEBUG_KMS("probing HDMI on SDVOC\n");
Paulo Zanonie2debe92013-02-18 19:00:27 -030011083 intel_hdmi_init(dev, GEN4_HDMIC, PORT_C);
Jesse Barnesb01f2c32009-12-11 11:07:17 -080011084 }
Imre Deake7281ea2013-05-08 13:14:08 +030011085 if (SUPPORTS_INTEGRATED_DP(dev))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030011086 intel_dp_init(dev, DP_C, PORT_C);
Eric Anholt725e30a2009-01-22 13:01:02 -080011087 }
Ma Ling27185ae2009-08-24 13:50:23 +080011088
Jesse Barnesb01f2c32009-12-11 11:07:17 -080011089 if (SUPPORTS_INTEGRATED_DP(dev) &&
Imre Deake7281ea2013-05-08 13:14:08 +030011090 (I915_READ(DP_D) & DP_DETECTED))
Paulo Zanoniab9d7c32012-07-17 17:53:45 -030011091 intel_dp_init(dev, DP_D, PORT_D);
Eric Anholtbad720f2009-10-22 16:11:14 -070011092 } else if (IS_GEN2(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -080011093 intel_dvo_init(dev);
11094
Zhenyu Wang103a1962009-11-27 11:44:36 +080011095 if (SUPPORTS_TV(dev))
Jesse Barnes79e53942008-11-07 14:24:08 -080011096 intel_tv_init(dev);
11097
Chris Wilson4ef69c72010-09-09 15:14:28 +010011098 list_for_each_entry(encoder, &dev->mode_config.encoder_list, base.head) {
11099 encoder->base.possible_crtcs = encoder->crtc_mask;
11100 encoder->base.possible_clones =
Daniel Vetter66a92782012-07-12 20:08:18 +020011101 intel_encoder_clones(encoder);
Jesse Barnes79e53942008-11-07 14:24:08 -080011102 }
Chris Wilson47356eb2011-01-11 17:06:04 +000011103
Paulo Zanonidde86e22012-12-01 12:04:25 -020011104 intel_init_pch_refclk(dev);
Daniel Vetter270b3042012-10-27 15:52:05 +020011105
11106 drm_helper_move_panel_connectors_to_head(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -080011107}
11108
11109static void intel_user_framebuffer_destroy(struct drm_framebuffer *fb)
11110{
11111 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
Jesse Barnes79e53942008-11-07 14:24:08 -080011112
Daniel Vetteref2d6332014-02-10 18:00:38 +010011113 drm_framebuffer_cleanup(fb);
11114 WARN_ON(!intel_fb->obj->framebuffer_references--);
11115 drm_gem_object_unreference_unlocked(&intel_fb->obj->base);
Jesse Barnes79e53942008-11-07 14:24:08 -080011116 kfree(intel_fb);
11117}
11118
11119static int intel_user_framebuffer_create_handle(struct drm_framebuffer *fb,
Chris Wilson05394f32010-11-08 19:18:58 +000011120 struct drm_file *file,
Jesse Barnes79e53942008-11-07 14:24:08 -080011121 unsigned int *handle)
11122{
11123 struct intel_framebuffer *intel_fb = to_intel_framebuffer(fb);
Chris Wilson05394f32010-11-08 19:18:58 +000011124 struct drm_i915_gem_object *obj = intel_fb->obj;
Jesse Barnes79e53942008-11-07 14:24:08 -080011125
Chris Wilson05394f32010-11-08 19:18:58 +000011126 return drm_gem_handle_create(file, &obj->base, handle);
Jesse Barnes79e53942008-11-07 14:24:08 -080011127}
11128
11129static const struct drm_framebuffer_funcs intel_fb_funcs = {
11130 .destroy = intel_user_framebuffer_destroy,
11131 .create_handle = intel_user_framebuffer_create_handle,
11132};
11133
Daniel Vetterb5ea6422014-03-02 21:18:00 +010011134static int intel_framebuffer_init(struct drm_device *dev,
11135 struct intel_framebuffer *intel_fb,
11136 struct drm_mode_fb_cmd2 *mode_cmd,
11137 struct drm_i915_gem_object *obj)
Jesse Barnes79e53942008-11-07 14:24:08 -080011138{
Jesse Barnesa57ce0b2014-02-07 12:10:35 -080011139 int aligned_height;
Chris Wilsona35cdaa2013-06-25 17:26:45 +010011140 int pitch_limit;
Jesse Barnes79e53942008-11-07 14:24:08 -080011141 int ret;
11142
Daniel Vetterdd4916c2013-10-09 21:23:51 +020011143 WARN_ON(!mutex_is_locked(&dev->struct_mutex));
11144
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000011145 if (obj->tiling_mode == I915_TILING_Y) {
11146 DRM_DEBUG("hardware does not support tiling Y\n");
Chris Wilson57cd6502010-08-08 12:34:44 +010011147 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000011148 }
Chris Wilson57cd6502010-08-08 12:34:44 +010011149
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000011150 if (mode_cmd->pitches[0] & 63) {
11151 DRM_DEBUG("pitch (%d) must be at least 64 byte aligned\n",
11152 mode_cmd->pitches[0]);
Chris Wilson57cd6502010-08-08 12:34:44 +010011153 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000011154 }
Chris Wilson57cd6502010-08-08 12:34:44 +010011155
Chris Wilsona35cdaa2013-06-25 17:26:45 +010011156 if (INTEL_INFO(dev)->gen >= 5 && !IS_VALLEYVIEW(dev)) {
11157 pitch_limit = 32*1024;
11158 } else if (INTEL_INFO(dev)->gen >= 4) {
11159 if (obj->tiling_mode)
11160 pitch_limit = 16*1024;
11161 else
11162 pitch_limit = 32*1024;
11163 } else if (INTEL_INFO(dev)->gen >= 3) {
11164 if (obj->tiling_mode)
11165 pitch_limit = 8*1024;
11166 else
11167 pitch_limit = 16*1024;
11168 } else
11169 /* XXX DSPC is limited to 4k tiled */
11170 pitch_limit = 8*1024;
11171
11172 if (mode_cmd->pitches[0] > pitch_limit) {
11173 DRM_DEBUG("%s pitch (%d) must be at less than %d\n",
11174 obj->tiling_mode ? "tiled" : "linear",
11175 mode_cmd->pitches[0], pitch_limit);
Ville Syrjälä5d7bd702012-10-31 17:50:18 +020011176 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000011177 }
Ville Syrjälä5d7bd702012-10-31 17:50:18 +020011178
11179 if (obj->tiling_mode != I915_TILING_NONE &&
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000011180 mode_cmd->pitches[0] != obj->stride) {
11181 DRM_DEBUG("pitch (%d) must match tiling stride (%d)\n",
11182 mode_cmd->pitches[0], obj->stride);
Ville Syrjälä5d7bd702012-10-31 17:50:18 +020011183 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000011184 }
Ville Syrjälä5d7bd702012-10-31 17:50:18 +020011185
Ville Syrjälä57779d02012-10-31 17:50:14 +020011186 /* Reject formats not supported by any plane early. */
Jesse Barnes308e5bc2011-11-14 14:51:28 -080011187 switch (mode_cmd->pixel_format) {
Ville Syrjälä57779d02012-10-31 17:50:14 +020011188 case DRM_FORMAT_C8:
Ville Syrjälä04b39242011-11-17 18:05:13 +020011189 case DRM_FORMAT_RGB565:
11190 case DRM_FORMAT_XRGB8888:
11191 case DRM_FORMAT_ARGB8888:
Ville Syrjälä57779d02012-10-31 17:50:14 +020011192 break;
11193 case DRM_FORMAT_XRGB1555:
11194 case DRM_FORMAT_ARGB1555:
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000011195 if (INTEL_INFO(dev)->gen > 3) {
Ville Syrjälä4ee62c72013-06-07 15:43:05 +000011196 DRM_DEBUG("unsupported pixel format: %s\n",
11197 drm_get_format_name(mode_cmd->pixel_format));
Ville Syrjälä57779d02012-10-31 17:50:14 +020011198 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000011199 }
Ville Syrjälä57779d02012-10-31 17:50:14 +020011200 break;
11201 case DRM_FORMAT_XBGR8888:
11202 case DRM_FORMAT_ABGR8888:
Ville Syrjälä04b39242011-11-17 18:05:13 +020011203 case DRM_FORMAT_XRGB2101010:
11204 case DRM_FORMAT_ARGB2101010:
Ville Syrjälä57779d02012-10-31 17:50:14 +020011205 case DRM_FORMAT_XBGR2101010:
11206 case DRM_FORMAT_ABGR2101010:
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000011207 if (INTEL_INFO(dev)->gen < 4) {
Ville Syrjälä4ee62c72013-06-07 15:43:05 +000011208 DRM_DEBUG("unsupported pixel format: %s\n",
11209 drm_get_format_name(mode_cmd->pixel_format));
Ville Syrjälä57779d02012-10-31 17:50:14 +020011210 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000011211 }
Jesse Barnesb5626742011-06-24 12:19:27 -070011212 break;
Ville Syrjälä04b39242011-11-17 18:05:13 +020011213 case DRM_FORMAT_YUYV:
11214 case DRM_FORMAT_UYVY:
11215 case DRM_FORMAT_YVYU:
11216 case DRM_FORMAT_VYUY:
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000011217 if (INTEL_INFO(dev)->gen < 5) {
Ville Syrjälä4ee62c72013-06-07 15:43:05 +000011218 DRM_DEBUG("unsupported pixel format: %s\n",
11219 drm_get_format_name(mode_cmd->pixel_format));
Ville Syrjälä57779d02012-10-31 17:50:14 +020011220 return -EINVAL;
Chris Wilsonc16ed4b2012-12-18 22:13:14 +000011221 }
Chris Wilson57cd6502010-08-08 12:34:44 +010011222 break;
11223 default:
Ville Syrjälä4ee62c72013-06-07 15:43:05 +000011224 DRM_DEBUG("unsupported pixel format: %s\n",
11225 drm_get_format_name(mode_cmd->pixel_format));
Chris Wilson57cd6502010-08-08 12:34:44 +010011226 return -EINVAL;
11227 }
11228
Ville Syrjälä90f9a332012-10-31 17:50:19 +020011229 /* FIXME need to adjust LINOFF/TILEOFF accordingly. */
11230 if (mode_cmd->offsets[0] != 0)
11231 return -EINVAL;
11232
Jesse Barnesa57ce0b2014-02-07 12:10:35 -080011233 aligned_height = intel_align_height(dev, mode_cmd->height,
11234 obj->tiling_mode);
Daniel Vetter53155c02013-10-09 21:55:33 +020011235 /* FIXME drm helper for size checks (especially planar formats)? */
11236 if (obj->base.size < aligned_height * mode_cmd->pitches[0])
11237 return -EINVAL;
11238
Daniel Vetterc7d73f62012-12-13 23:38:38 +010011239 drm_helper_mode_fill_fb_struct(&intel_fb->base, mode_cmd);
11240 intel_fb->obj = obj;
Daniel Vetter80075d42013-10-09 21:23:52 +020011241 intel_fb->obj->framebuffer_references++;
Daniel Vetterc7d73f62012-12-13 23:38:38 +010011242
Jesse Barnes79e53942008-11-07 14:24:08 -080011243 ret = drm_framebuffer_init(dev, &intel_fb->base, &intel_fb_funcs);
11244 if (ret) {
11245 DRM_ERROR("framebuffer init failed %d\n", ret);
11246 return ret;
11247 }
11248
Jesse Barnes79e53942008-11-07 14:24:08 -080011249 return 0;
11250}
11251
Jesse Barnes79e53942008-11-07 14:24:08 -080011252static struct drm_framebuffer *
11253intel_user_framebuffer_create(struct drm_device *dev,
11254 struct drm_file *filp,
Jesse Barnes308e5bc2011-11-14 14:51:28 -080011255 struct drm_mode_fb_cmd2 *mode_cmd)
Jesse Barnes79e53942008-11-07 14:24:08 -080011256{
Chris Wilson05394f32010-11-08 19:18:58 +000011257 struct drm_i915_gem_object *obj;
Jesse Barnes79e53942008-11-07 14:24:08 -080011258
Jesse Barnes308e5bc2011-11-14 14:51:28 -080011259 obj = to_intel_bo(drm_gem_object_lookup(dev, filp,
11260 mode_cmd->handles[0]));
Chris Wilsonc8725222011-02-19 11:31:06 +000011261 if (&obj->base == NULL)
Chris Wilsoncce13ff2010-08-08 13:36:38 +010011262 return ERR_PTR(-ENOENT);
Jesse Barnes79e53942008-11-07 14:24:08 -080011263
Chris Wilsond2dff872011-04-19 08:36:26 +010011264 return intel_framebuffer_create(dev, mode_cmd, obj);
Jesse Barnes79e53942008-11-07 14:24:08 -080011265}
11266
Daniel Vetter4520f532013-10-09 09:18:51 +020011267#ifndef CONFIG_DRM_I915_FBDEV
Daniel Vetter0632fef2013-10-08 17:44:49 +020011268static inline void intel_fbdev_output_poll_changed(struct drm_device *dev)
Daniel Vetter4520f532013-10-09 09:18:51 +020011269{
11270}
11271#endif
11272
Jesse Barnes79e53942008-11-07 14:24:08 -080011273static const struct drm_mode_config_funcs intel_mode_funcs = {
Jesse Barnes79e53942008-11-07 14:24:08 -080011274 .fb_create = intel_user_framebuffer_create,
Daniel Vetter0632fef2013-10-08 17:44:49 +020011275 .output_poll_changed = intel_fbdev_output_poll_changed,
Jesse Barnes79e53942008-11-07 14:24:08 -080011276};
11277
Jesse Barnese70236a2009-09-21 10:42:27 -070011278/* Set up chip specific display functions */
11279static void intel_init_display(struct drm_device *dev)
11280{
11281 struct drm_i915_private *dev_priv = dev->dev_private;
11282
Daniel Vetteree9300b2013-06-03 22:40:22 +020011283 if (HAS_PCH_SPLIT(dev) || IS_G4X(dev))
11284 dev_priv->display.find_dpll = g4x_find_best_dpll;
Chon Ming Leeef9348c2014-04-09 13:28:18 +030011285 else if (IS_CHERRYVIEW(dev))
11286 dev_priv->display.find_dpll = chv_find_best_dpll;
Daniel Vetteree9300b2013-06-03 22:40:22 +020011287 else if (IS_VALLEYVIEW(dev))
11288 dev_priv->display.find_dpll = vlv_find_best_dpll;
11289 else if (IS_PINEVIEW(dev))
11290 dev_priv->display.find_dpll = pnv_find_best_dpll;
11291 else
11292 dev_priv->display.find_dpll = i9xx_find_best_dpll;
11293
Paulo Zanoniaffa9352012-11-23 15:30:39 -020011294 if (HAS_DDI(dev)) {
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010011295 dev_priv->display.get_pipe_config = haswell_get_pipe_config;
Jesse Barnes4c6baa52014-03-07 08:57:50 -080011296 dev_priv->display.get_plane_config = ironlake_get_plane_config;
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -030011297 dev_priv->display.crtc_mode_set = haswell_crtc_mode_set;
Paulo Zanoni4f771f12012-10-23 18:29:51 -020011298 dev_priv->display.crtc_enable = haswell_crtc_enable;
11299 dev_priv->display.crtc_disable = haswell_crtc_disable;
Paulo Zanoni6441ab52012-10-05 12:05:58 -030011300 dev_priv->display.off = haswell_crtc_off;
Matt Roper262ca2b2014-03-18 17:22:55 -070011301 dev_priv->display.update_primary_plane =
11302 ironlake_update_primary_plane;
Paulo Zanoni09b4ddf2012-10-05 12:05:55 -030011303 } else if (HAS_PCH_SPLIT(dev)) {
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010011304 dev_priv->display.get_pipe_config = ironlake_get_pipe_config;
Jesse Barnes4c6baa52014-03-07 08:57:50 -080011305 dev_priv->display.get_plane_config = ironlake_get_plane_config;
Eric Anholtf564048e2011-03-30 13:01:02 -070011306 dev_priv->display.crtc_mode_set = ironlake_crtc_mode_set;
Daniel Vetter76e5a892012-06-29 22:39:33 +020011307 dev_priv->display.crtc_enable = ironlake_crtc_enable;
11308 dev_priv->display.crtc_disable = ironlake_crtc_disable;
Jesse Barnesee7b9f92012-04-20 17:11:53 +010011309 dev_priv->display.off = ironlake_crtc_off;
Matt Roper262ca2b2014-03-18 17:22:55 -070011310 dev_priv->display.update_primary_plane =
11311 ironlake_update_primary_plane;
Jesse Barnes89b667f2013-04-18 14:51:36 -070011312 } else if (IS_VALLEYVIEW(dev)) {
11313 dev_priv->display.get_pipe_config = i9xx_get_pipe_config;
Jesse Barnes1ad292b2014-03-07 08:57:49 -080011314 dev_priv->display.get_plane_config = i9xx_get_plane_config;
Jesse Barnes89b667f2013-04-18 14:51:36 -070011315 dev_priv->display.crtc_mode_set = i9xx_crtc_mode_set;
11316 dev_priv->display.crtc_enable = valleyview_crtc_enable;
11317 dev_priv->display.crtc_disable = i9xx_crtc_disable;
11318 dev_priv->display.off = i9xx_crtc_off;
Matt Roper262ca2b2014-03-18 17:22:55 -070011319 dev_priv->display.update_primary_plane =
11320 i9xx_update_primary_plane;
Eric Anholtf564048e2011-03-30 13:01:02 -070011321 } else {
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010011322 dev_priv->display.get_pipe_config = i9xx_get_pipe_config;
Jesse Barnes1ad292b2014-03-07 08:57:49 -080011323 dev_priv->display.get_plane_config = i9xx_get_plane_config;
Eric Anholtf564048e2011-03-30 13:01:02 -070011324 dev_priv->display.crtc_mode_set = i9xx_crtc_mode_set;
Daniel Vetter76e5a892012-06-29 22:39:33 +020011325 dev_priv->display.crtc_enable = i9xx_crtc_enable;
11326 dev_priv->display.crtc_disable = i9xx_crtc_disable;
Jesse Barnesee7b9f92012-04-20 17:11:53 +010011327 dev_priv->display.off = i9xx_crtc_off;
Matt Roper262ca2b2014-03-18 17:22:55 -070011328 dev_priv->display.update_primary_plane =
11329 i9xx_update_primary_plane;
Eric Anholtf564048e2011-03-30 13:01:02 -070011330 }
Jesse Barnese70236a2009-09-21 10:42:27 -070011331
Jesse Barnese70236a2009-09-21 10:42:27 -070011332 /* Returns the core display clock speed */
Jesse Barnes25eb05fc2012-03-28 13:39:23 -070011333 if (IS_VALLEYVIEW(dev))
11334 dev_priv->display.get_display_clock_speed =
11335 valleyview_get_display_clock_speed;
11336 else if (IS_I945G(dev) || (IS_G33(dev) && !IS_PINEVIEW_M(dev)))
Jesse Barnese70236a2009-09-21 10:42:27 -070011337 dev_priv->display.get_display_clock_speed =
11338 i945_get_display_clock_speed;
11339 else if (IS_I915G(dev))
11340 dev_priv->display.get_display_clock_speed =
11341 i915_get_display_clock_speed;
Daniel Vetter257a7ff2013-07-26 08:35:42 +020011342 else if (IS_I945GM(dev) || IS_845G(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -070011343 dev_priv->display.get_display_clock_speed =
11344 i9xx_misc_get_display_clock_speed;
Daniel Vetter257a7ff2013-07-26 08:35:42 +020011345 else if (IS_PINEVIEW(dev))
11346 dev_priv->display.get_display_clock_speed =
11347 pnv_get_display_clock_speed;
Jesse Barnese70236a2009-09-21 10:42:27 -070011348 else if (IS_I915GM(dev))
11349 dev_priv->display.get_display_clock_speed =
11350 i915gm_get_display_clock_speed;
11351 else if (IS_I865G(dev))
11352 dev_priv->display.get_display_clock_speed =
11353 i865_get_display_clock_speed;
Daniel Vetterf0f8a9c2009-09-15 22:57:33 +020011354 else if (IS_I85X(dev))
Jesse Barnese70236a2009-09-21 10:42:27 -070011355 dev_priv->display.get_display_clock_speed =
11356 i855_get_display_clock_speed;
11357 else /* 852, 830 */
11358 dev_priv->display.get_display_clock_speed =
11359 i830_get_display_clock_speed;
11360
Zhenyu Wang7f8a8562010-04-01 13:07:53 +080011361 if (HAS_PCH_SPLIT(dev)) {
Chris Wilsonf00a3dd2010-10-21 14:57:17 +010011362 if (IS_GEN5(dev)) {
Jesse Barnes674cf962011-04-28 14:27:04 -070011363 dev_priv->display.fdi_link_train = ironlake_fdi_link_train;
Wu Fengguange0dac652011-09-05 14:25:34 +080011364 dev_priv->display.write_eld = ironlake_write_eld;
Yuanhan Liu13982612010-12-15 15:42:31 +080011365 } else if (IS_GEN6(dev)) {
Jesse Barnes674cf962011-04-28 14:27:04 -070011366 dev_priv->display.fdi_link_train = gen6_fdi_link_train;
Wu Fengguange0dac652011-09-05 14:25:34 +080011367 dev_priv->display.write_eld = ironlake_write_eld;
Paulo Zanoni9a952a02014-03-07 20:12:34 -030011368 dev_priv->display.modeset_global_resources =
11369 snb_modeset_global_resources;
Jesse Barnes357555c2011-04-28 15:09:55 -070011370 } else if (IS_IVYBRIDGE(dev)) {
11371 /* FIXME: detect B0+ stepping and use auto training */
11372 dev_priv->display.fdi_link_train = ivb_manual_fdi_link_train;
Wu Fengguange0dac652011-09-05 14:25:34 +080011373 dev_priv->display.write_eld = ironlake_write_eld;
Daniel Vetter01a415f2012-10-27 15:58:40 +020011374 dev_priv->display.modeset_global_resources =
11375 ivb_modeset_global_resources;
Ben Widawsky4e0bbc32013-11-02 21:07:07 -070011376 } else if (IS_HASWELL(dev) || IS_GEN8(dev)) {
Eugeni Dodonovc82e4d22012-05-09 15:37:21 -030011377 dev_priv->display.fdi_link_train = hsw_fdi_link_train;
Wang Xingchao83358c852012-08-16 22:43:37 +080011378 dev_priv->display.write_eld = haswell_write_eld;
Daniel Vetterd6dd9eb2013-01-29 16:35:20 -020011379 dev_priv->display.modeset_global_resources =
11380 haswell_modeset_global_resources;
Paulo Zanonia0e63c22012-12-06 11:12:39 -020011381 }
Jesse Barnes6067aae2011-04-28 15:04:31 -070011382 } else if (IS_G4X(dev)) {
Wu Fengguange0dac652011-09-05 14:25:34 +080011383 dev_priv->display.write_eld = g4x_write_eld;
Jesse Barnes30a970c2013-11-04 13:48:12 -080011384 } else if (IS_VALLEYVIEW(dev)) {
11385 dev_priv->display.modeset_global_resources =
11386 valleyview_modeset_global_resources;
Mengdong Lin9ca2fe72013-11-01 00:17:03 -040011387 dev_priv->display.write_eld = ironlake_write_eld;
Jesse Barnese70236a2009-09-21 10:42:27 -070011388 }
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011389
11390 /* Default just returns -ENODEV to indicate unsupported */
11391 dev_priv->display.queue_flip = intel_default_queue_flip;
11392
11393 switch (INTEL_INFO(dev)->gen) {
11394 case 2:
11395 dev_priv->display.queue_flip = intel_gen2_queue_flip;
11396 break;
11397
11398 case 3:
11399 dev_priv->display.queue_flip = intel_gen3_queue_flip;
11400 break;
11401
11402 case 4:
11403 case 5:
11404 dev_priv->display.queue_flip = intel_gen4_queue_flip;
11405 break;
11406
11407 case 6:
11408 dev_priv->display.queue_flip = intel_gen6_queue_flip;
11409 break;
Jesse Barnes7c9017e2011-06-16 12:18:54 -070011410 case 7:
Ben Widawsky4e0bbc32013-11-02 21:07:07 -070011411 case 8: /* FIXME(BDW): Check that the gen8 RCS flip works. */
Jesse Barnes7c9017e2011-06-16 12:18:54 -070011412 dev_priv->display.queue_flip = intel_gen7_queue_flip;
11413 break;
Jesse Barnes8c9f3aa2011-06-16 09:19:13 -070011414 }
Jani Nikula7bd688c2013-11-08 16:48:56 +020011415
11416 intel_panel_init_backlight_funcs(dev);
Jesse Barnese70236a2009-09-21 10:42:27 -070011417}
11418
Jesse Barnesb690e962010-07-19 13:53:12 -070011419/*
11420 * Some BIOSes insist on assuming the GPU's pipe A is enabled at suspend,
11421 * resume, or other times. This quirk makes sure that's the case for
11422 * affected systems.
11423 */
Akshay Joshi0206e352011-08-16 15:34:10 -040011424static void quirk_pipea_force(struct drm_device *dev)
Jesse Barnesb690e962010-07-19 13:53:12 -070011425{
11426 struct drm_i915_private *dev_priv = dev->dev_private;
11427
11428 dev_priv->quirks |= QUIRK_PIPEA_FORCE;
Daniel Vetterbc0daf42012-04-01 13:16:49 +020011429 DRM_INFO("applying pipe a force quirk\n");
Jesse Barnesb690e962010-07-19 13:53:12 -070011430}
11431
Keith Packard435793d2011-07-12 14:56:22 -070011432/*
11433 * Some machines (Lenovo U160) do not work with SSC on LVDS for some reason
11434 */
11435static void quirk_ssc_force_disable(struct drm_device *dev)
11436{
11437 struct drm_i915_private *dev_priv = dev->dev_private;
11438 dev_priv->quirks |= QUIRK_LVDS_SSC_DISABLE;
Daniel Vetterbc0daf42012-04-01 13:16:49 +020011439 DRM_INFO("applying lvds SSC disable quirk\n");
Keith Packard435793d2011-07-12 14:56:22 -070011440}
11441
Carsten Emde4dca20e2012-03-15 15:56:26 +010011442/*
Carsten Emde5a15ab52012-03-15 15:56:27 +010011443 * A machine (e.g. Acer Aspire 5734Z) may need to invert the panel backlight
11444 * brightness value
Carsten Emde4dca20e2012-03-15 15:56:26 +010011445 */
11446static void quirk_invert_brightness(struct drm_device *dev)
11447{
11448 struct drm_i915_private *dev_priv = dev->dev_private;
11449 dev_priv->quirks |= QUIRK_INVERT_BRIGHTNESS;
Daniel Vetterbc0daf42012-04-01 13:16:49 +020011450 DRM_INFO("applying inverted panel brightness quirk\n");
Jesse Barnesb690e962010-07-19 13:53:12 -070011451}
11452
11453struct intel_quirk {
11454 int device;
11455 int subsystem_vendor;
11456 int subsystem_device;
11457 void (*hook)(struct drm_device *dev);
11458};
11459
Egbert Eich5f85f172012-10-14 15:46:38 +020011460/* For systems that don't have a meaningful PCI subdevice/subvendor ID */
11461struct intel_dmi_quirk {
11462 void (*hook)(struct drm_device *dev);
11463 const struct dmi_system_id (*dmi_id_list)[];
11464};
11465
11466static int intel_dmi_reverse_brightness(const struct dmi_system_id *id)
11467{
11468 DRM_INFO("Backlight polarity reversed on %s\n", id->ident);
11469 return 1;
11470}
11471
11472static const struct intel_dmi_quirk intel_dmi_quirks[] = {
11473 {
11474 .dmi_id_list = &(const struct dmi_system_id[]) {
11475 {
11476 .callback = intel_dmi_reverse_brightness,
11477 .ident = "NCR Corporation",
11478 .matches = {DMI_MATCH(DMI_SYS_VENDOR, "NCR Corporation"),
11479 DMI_MATCH(DMI_PRODUCT_NAME, ""),
11480 },
11481 },
11482 { } /* terminating entry */
11483 },
11484 .hook = quirk_invert_brightness,
11485 },
11486};
11487
Ben Widawskyc43b5632012-04-16 14:07:40 -070011488static struct intel_quirk intel_quirks[] = {
Jesse Barnesb690e962010-07-19 13:53:12 -070011489 /* HP Mini needs pipe A force quirk (LP: #322104) */
Akshay Joshi0206e352011-08-16 15:34:10 -040011490 { 0x27ae, 0x103c, 0x361a, quirk_pipea_force },
Jesse Barnesb690e962010-07-19 13:53:12 -070011491
Jesse Barnesb690e962010-07-19 13:53:12 -070011492 /* Toshiba Protege R-205, S-209 needs pipe A force quirk */
11493 { 0x2592, 0x1179, 0x0001, quirk_pipea_force },
11494
Jesse Barnesb690e962010-07-19 13:53:12 -070011495 /* ThinkPad T60 needs pipe A force quirk (bug #16494) */
11496 { 0x2782, 0x17aa, 0x201a, quirk_pipea_force },
11497
Chris Wilsona4945f92013-10-08 11:16:59 +010011498 /* 830 needs to leave pipe A & dpll A up */
Daniel Vetterdcdaed62012-08-12 21:19:34 +020011499 { 0x3577, PCI_ANY_ID, PCI_ANY_ID, quirk_pipea_force },
Keith Packard435793d2011-07-12 14:56:22 -070011500
11501 /* Lenovo U160 cannot use SSC on LVDS */
11502 { 0x0046, 0x17aa, 0x3920, quirk_ssc_force_disable },
Michel Alexandre Salim070d3292011-07-28 18:52:06 +020011503
11504 /* Sony Vaio Y cannot use SSC on LVDS */
11505 { 0x0046, 0x104d, 0x9076, quirk_ssc_force_disable },
Carsten Emde5a15ab52012-03-15 15:56:27 +010011506
Alexander van Heukelumbe505f62013-12-28 21:00:39 +010011507 /* Acer Aspire 5734Z must invert backlight brightness */
11508 { 0x2a42, 0x1025, 0x0459, quirk_invert_brightness },
11509
11510 /* Acer/eMachines G725 */
11511 { 0x2a42, 0x1025, 0x0210, quirk_invert_brightness },
11512
11513 /* Acer/eMachines e725 */
11514 { 0x2a42, 0x1025, 0x0212, quirk_invert_brightness },
11515
11516 /* Acer/Packard Bell NCL20 */
11517 { 0x2a42, 0x1025, 0x034b, quirk_invert_brightness },
11518
11519 /* Acer Aspire 4736Z */
11520 { 0x2a42, 0x1025, 0x0260, quirk_invert_brightness },
Jani Nikula0f540c32014-01-13 17:30:34 +020011521
11522 /* Acer Aspire 5336 */
11523 { 0x2a42, 0x1025, 0x048a, quirk_invert_brightness },
Jesse Barnesb690e962010-07-19 13:53:12 -070011524};
11525
11526static void intel_init_quirks(struct drm_device *dev)
11527{
11528 struct pci_dev *d = dev->pdev;
11529 int i;
11530
11531 for (i = 0; i < ARRAY_SIZE(intel_quirks); i++) {
11532 struct intel_quirk *q = &intel_quirks[i];
11533
11534 if (d->device == q->device &&
11535 (d->subsystem_vendor == q->subsystem_vendor ||
11536 q->subsystem_vendor == PCI_ANY_ID) &&
11537 (d->subsystem_device == q->subsystem_device ||
11538 q->subsystem_device == PCI_ANY_ID))
11539 q->hook(dev);
11540 }
Egbert Eich5f85f172012-10-14 15:46:38 +020011541 for (i = 0; i < ARRAY_SIZE(intel_dmi_quirks); i++) {
11542 if (dmi_check_system(*intel_dmi_quirks[i].dmi_id_list) != 0)
11543 intel_dmi_quirks[i].hook(dev);
11544 }
Jesse Barnesb690e962010-07-19 13:53:12 -070011545}
11546
Jesse Barnes9cce37f2010-08-13 15:11:26 -070011547/* Disable the VGA plane that we never use */
11548static void i915_disable_vga(struct drm_device *dev)
11549{
11550 struct drm_i915_private *dev_priv = dev->dev_private;
11551 u8 sr1;
Ville Syrjälä766aa1c2013-01-25 21:44:46 +020011552 u32 vga_reg = i915_vgacntrl_reg(dev);
Jesse Barnes9cce37f2010-08-13 15:11:26 -070011553
Ville Syrjälä2b37c612014-01-22 21:32:38 +020011554 /* WaEnableVGAAccessThroughIOPort:ctg,elk,ilk,snb,ivb,vlv,hsw */
Jesse Barnes9cce37f2010-08-13 15:11:26 -070011555 vga_get_uninterruptible(dev->pdev, VGA_RSRC_LEGACY_IO);
Jesse Barnes3fdcf432012-04-06 11:46:27 -070011556 outb(SR01, VGA_SR_INDEX);
Jesse Barnes9cce37f2010-08-13 15:11:26 -070011557 sr1 = inb(VGA_SR_DATA);
11558 outb(sr1 | 1<<5, VGA_SR_DATA);
11559 vga_put(dev->pdev, VGA_RSRC_LEGACY_IO);
11560 udelay(300);
11561
11562 I915_WRITE(vga_reg, VGA_DISP_DISABLE);
11563 POSTING_READ(vga_reg);
11564}
11565
Daniel Vetterf8175862012-04-10 15:50:11 +020011566void intel_modeset_init_hw(struct drm_device *dev)
11567{
Eugeni Dodonova8f78b52012-06-28 15:55:35 -030011568 intel_prepare_ddi(dev);
11569
Daniel Vetterf8175862012-04-10 15:50:11 +020011570 intel_init_clock_gating(dev);
11571
Jesse Barnes5382f5f352013-12-16 16:34:24 -080011572 intel_reset_dpio(dev);
Jesse Barnes40e9cf62013-10-03 11:35:46 -070011573
Daniel Vetter8090c6b2012-06-24 16:42:32 +020011574 intel_enable_gt_powersave(dev);
Daniel Vetterf8175862012-04-10 15:50:11 +020011575}
11576
Imre Deak7d708ee2013-04-17 14:04:50 +030011577void intel_modeset_suspend_hw(struct drm_device *dev)
11578{
11579 intel_suspend_hw(dev);
11580}
11581
Jesse Barnes79e53942008-11-07 14:24:08 -080011582void intel_modeset_init(struct drm_device *dev)
11583{
Jesse Barnes652c3932009-08-17 13:31:43 -070011584 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiau1fe47782014-03-03 17:31:47 +000011585 int sprite, ret;
Damien Lespiau8cc87b72014-03-03 17:31:44 +000011586 enum pipe pipe;
Jesse Barnes46f297f2014-03-07 08:57:48 -080011587 struct intel_crtc *crtc;
Jesse Barnes79e53942008-11-07 14:24:08 -080011588
11589 drm_mode_config_init(dev);
11590
11591 dev->mode_config.min_width = 0;
11592 dev->mode_config.min_height = 0;
11593
Dave Airlie019d96c2011-09-29 16:20:42 +010011594 dev->mode_config.preferred_depth = 24;
11595 dev->mode_config.prefer_shadow = 1;
11596
Laurent Pincharte6ecefa2012-05-17 13:27:23 +020011597 dev->mode_config.funcs = &intel_mode_funcs;
Jesse Barnes79e53942008-11-07 14:24:08 -080011598
Jesse Barnesb690e962010-07-19 13:53:12 -070011599 intel_init_quirks(dev);
11600
Eugeni Dodonov1fa61102012-04-18 15:29:26 -030011601 intel_init_pm(dev);
11602
Ben Widawskye3c74752013-04-05 13:12:39 -070011603 if (INTEL_INFO(dev)->num_pipes == 0)
11604 return;
11605
Jesse Barnese70236a2009-09-21 10:42:27 -070011606 intel_init_display(dev);
11607
Chris Wilsona6c45cf2010-09-17 00:32:17 +010011608 if (IS_GEN2(dev)) {
11609 dev->mode_config.max_width = 2048;
11610 dev->mode_config.max_height = 2048;
11611 } else if (IS_GEN3(dev)) {
Keith Packard5e4d6fa2009-07-12 23:53:17 -070011612 dev->mode_config.max_width = 4096;
11613 dev->mode_config.max_height = 4096;
Jesse Barnes79e53942008-11-07 14:24:08 -080011614 } else {
Chris Wilsona6c45cf2010-09-17 00:32:17 +010011615 dev->mode_config.max_width = 8192;
11616 dev->mode_config.max_height = 8192;
Jesse Barnes79e53942008-11-07 14:24:08 -080011617 }
Damien Lespiau068be562014-03-28 14:17:49 +000011618
11619 if (IS_GEN2(dev)) {
11620 dev->mode_config.cursor_width = GEN2_CURSOR_WIDTH;
11621 dev->mode_config.cursor_height = GEN2_CURSOR_HEIGHT;
11622 } else {
11623 dev->mode_config.cursor_width = MAX_CURSOR_WIDTH;
11624 dev->mode_config.cursor_height = MAX_CURSOR_HEIGHT;
11625 }
11626
Ben Widawsky5d4545a2013-01-17 12:45:15 -080011627 dev->mode_config.fb_base = dev_priv->gtt.mappable_base;
Jesse Barnes79e53942008-11-07 14:24:08 -080011628
Zhao Yakui28c97732009-10-09 11:39:41 +080011629 DRM_DEBUG_KMS("%d display pipe%s available.\n",
Ben Widawsky7eb552a2013-03-13 14:05:41 -070011630 INTEL_INFO(dev)->num_pipes,
11631 INTEL_INFO(dev)->num_pipes > 1 ? "s" : "");
Jesse Barnes79e53942008-11-07 14:24:08 -080011632
Damien Lespiau8cc87b72014-03-03 17:31:44 +000011633 for_each_pipe(pipe) {
11634 intel_crtc_init(dev, pipe);
Damien Lespiau1fe47782014-03-03 17:31:47 +000011635 for_each_sprite(pipe, sprite) {
11636 ret = intel_plane_init(dev, pipe, sprite);
Jesse Barnes7f1f3852013-04-02 11:22:20 -070011637 if (ret)
Ville Syrjälä06da8da2013-04-17 17:48:51 +030011638 DRM_DEBUG_KMS("pipe %c sprite %c init failed: %d\n",
Damien Lespiau1fe47782014-03-03 17:31:47 +000011639 pipe_name(pipe), sprite_name(pipe, sprite), ret);
Jesse Barnes7f1f3852013-04-02 11:22:20 -070011640 }
Jesse Barnes79e53942008-11-07 14:24:08 -080011641 }
11642
Jesse Barnesf42bb702013-12-16 16:34:23 -080011643 intel_init_dpio(dev);
Jesse Barnes5382f5f352013-12-16 16:34:24 -080011644 intel_reset_dpio(dev);
Jesse Barnesf42bb702013-12-16 16:34:23 -080011645
Paulo Zanoni79f689a2012-10-05 12:05:52 -030011646 intel_cpu_pll_init(dev);
Daniel Vettere72f9fb2013-06-05 13:34:06 +020011647 intel_shared_dpll_init(dev);
Jesse Barnesee7b9f92012-04-20 17:11:53 +010011648
Jesse Barnes9cce37f2010-08-13 15:11:26 -070011649 /* Just disable it once at startup */
11650 i915_disable_vga(dev);
Jesse Barnes79e53942008-11-07 14:24:08 -080011651 intel_setup_outputs(dev);
Chris Wilson11be49e2012-11-15 11:32:20 +000011652
11653 /* Just in case the BIOS is doing something questionable. */
11654 intel_disable_fbc(dev);
Jesse Barnesfa9fa082014-02-11 15:28:56 -080011655
Jesse Barnes8b687df2014-02-21 13:13:39 -080011656 mutex_lock(&dev->mode_config.mutex);
Jesse Barnesfa9fa082014-02-11 15:28:56 -080011657 intel_modeset_setup_hw_state(dev, false);
Jesse Barnes8b687df2014-02-21 13:13:39 -080011658 mutex_unlock(&dev->mode_config.mutex);
Jesse Barnes46f297f2014-03-07 08:57:48 -080011659
Damien Lespiaud3fcc802014-05-13 23:32:22 +010011660 for_each_intel_crtc(dev, crtc) {
Jesse Barnes46f297f2014-03-07 08:57:48 -080011661 if (!crtc->active)
11662 continue;
11663
Jesse Barnes46f297f2014-03-07 08:57:48 -080011664 /*
Jesse Barnes46f297f2014-03-07 08:57:48 -080011665 * Note that reserving the BIOS fb up front prevents us
11666 * from stuffing other stolen allocations like the ring
11667 * on top. This prevents some ugliness at boot time, and
11668 * can even allow for smooth boot transitions if the BIOS
11669 * fb is large enough for the active pipe configuration.
11670 */
11671 if (dev_priv->display.get_plane_config) {
11672 dev_priv->display.get_plane_config(crtc,
11673 &crtc->plane_config);
11674 /*
11675 * If the fb is shared between multiple heads, we'll
11676 * just get the first one.
11677 */
Jesse Barnes484b41d2014-03-07 08:57:55 -080011678 intel_find_plane_obj(crtc, &crtc->plane_config);
Jesse Barnes46f297f2014-03-07 08:57:48 -080011679 }
Jesse Barnes46f297f2014-03-07 08:57:48 -080011680 }
Chris Wilson2c7111d2011-03-29 10:40:27 +010011681}
Jesse Barnesd5bb0812011-01-05 12:01:26 -080011682
Daniel Vetter24929352012-07-02 20:28:59 +020011683static void
11684intel_connector_break_all_links(struct intel_connector *connector)
11685{
11686 connector->base.dpms = DRM_MODE_DPMS_OFF;
11687 connector->base.encoder = NULL;
11688 connector->encoder->connectors_active = false;
11689 connector->encoder->base.crtc = NULL;
11690}
11691
Daniel Vetter7fad7982012-07-04 17:51:47 +020011692static void intel_enable_pipe_a(struct drm_device *dev)
11693{
11694 struct intel_connector *connector;
11695 struct drm_connector *crt = NULL;
11696 struct intel_load_detect_pipe load_detect_temp;
11697
11698 /* We can't just switch on the pipe A, we need to set things up with a
11699 * proper mode and output configuration. As a gross hack, enable pipe A
11700 * by enabling the load detect pipe once. */
11701 list_for_each_entry(connector,
11702 &dev->mode_config.connector_list,
11703 base.head) {
11704 if (connector->encoder->type == INTEL_OUTPUT_ANALOG) {
11705 crt = &connector->base;
11706 break;
11707 }
11708 }
11709
11710 if (!crt)
11711 return;
11712
11713 if (intel_get_load_detect_pipe(crt, NULL, &load_detect_temp))
11714 intel_release_load_detect_pipe(crt, &load_detect_temp);
11715
11716
11717}
11718
Daniel Vetterfa555832012-10-10 23:14:00 +020011719static bool
11720intel_check_plane_mapping(struct intel_crtc *crtc)
11721{
Ben Widawsky7eb552a2013-03-13 14:05:41 -070011722 struct drm_device *dev = crtc->base.dev;
11723 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterfa555832012-10-10 23:14:00 +020011724 u32 reg, val;
11725
Ben Widawsky7eb552a2013-03-13 14:05:41 -070011726 if (INTEL_INFO(dev)->num_pipes == 1)
Daniel Vetterfa555832012-10-10 23:14:00 +020011727 return true;
11728
11729 reg = DSPCNTR(!crtc->plane);
11730 val = I915_READ(reg);
11731
11732 if ((val & DISPLAY_PLANE_ENABLE) &&
11733 (!!(val & DISPPLANE_SEL_PIPE_MASK) == crtc->pipe))
11734 return false;
11735
11736 return true;
11737}
11738
Daniel Vetter24929352012-07-02 20:28:59 +020011739static void intel_sanitize_crtc(struct intel_crtc *crtc)
11740{
11741 struct drm_device *dev = crtc->base.dev;
11742 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterfa555832012-10-10 23:14:00 +020011743 u32 reg;
Daniel Vetter24929352012-07-02 20:28:59 +020011744
Daniel Vetter24929352012-07-02 20:28:59 +020011745 /* Clear any frame start delays used for debugging left by the BIOS */
Daniel Vetter3b117c82013-04-17 20:15:07 +020011746 reg = PIPECONF(crtc->config.cpu_transcoder);
Daniel Vetter24929352012-07-02 20:28:59 +020011747 I915_WRITE(reg, I915_READ(reg) & ~PIPECONF_FRAME_START_DELAY_MASK);
11748
11749 /* We need to sanitize the plane -> pipe mapping first because this will
Daniel Vetterfa555832012-10-10 23:14:00 +020011750 * disable the crtc (and hence change the state) if it is wrong. Note
11751 * that gen4+ has a fixed plane -> pipe mapping. */
11752 if (INTEL_INFO(dev)->gen < 4 && !intel_check_plane_mapping(crtc)) {
Daniel Vetter24929352012-07-02 20:28:59 +020011753 struct intel_connector *connector;
11754 bool plane;
11755
Daniel Vetter24929352012-07-02 20:28:59 +020011756 DRM_DEBUG_KMS("[CRTC:%d] wrong plane connection detected!\n",
11757 crtc->base.base.id);
11758
11759 /* Pipe has the wrong plane attached and the plane is active.
11760 * Temporarily change the plane mapping and disable everything
11761 * ... */
11762 plane = crtc->plane;
11763 crtc->plane = !plane;
11764 dev_priv->display.crtc_disable(&crtc->base);
11765 crtc->plane = plane;
11766
11767 /* ... and break all links. */
11768 list_for_each_entry(connector, &dev->mode_config.connector_list,
11769 base.head) {
11770 if (connector->encoder->base.crtc != &crtc->base)
11771 continue;
11772
11773 intel_connector_break_all_links(connector);
11774 }
11775
11776 WARN_ON(crtc->active);
11777 crtc->base.enabled = false;
11778 }
Daniel Vetter24929352012-07-02 20:28:59 +020011779
Daniel Vetter7fad7982012-07-04 17:51:47 +020011780 if (dev_priv->quirks & QUIRK_PIPEA_FORCE &&
11781 crtc->pipe == PIPE_A && !crtc->active) {
11782 /* BIOS forgot to enable pipe A, this mostly happens after
11783 * resume. Force-enable the pipe to fix this, the update_dpms
11784 * call below we restore the pipe to the right state, but leave
11785 * the required bits on. */
11786 intel_enable_pipe_a(dev);
11787 }
11788
Daniel Vetter24929352012-07-02 20:28:59 +020011789 /* Adjust the state of the output pipe according to whether we
11790 * have active connectors/encoders. */
11791 intel_crtc_update_dpms(&crtc->base);
11792
11793 if (crtc->active != crtc->base.enabled) {
11794 struct intel_encoder *encoder;
11795
11796 /* This can happen either due to bugs in the get_hw_state
11797 * functions or because the pipe is force-enabled due to the
11798 * pipe A quirk. */
11799 DRM_DEBUG_KMS("[CRTC:%d] hw state adjusted, was %s, now %s\n",
11800 crtc->base.base.id,
11801 crtc->base.enabled ? "enabled" : "disabled",
11802 crtc->active ? "enabled" : "disabled");
11803
11804 crtc->base.enabled = crtc->active;
11805
11806 /* Because we only establish the connector -> encoder ->
11807 * crtc links if something is active, this means the
11808 * crtc is now deactivated. Break the links. connector
11809 * -> encoder links are only establish when things are
11810 * actually up, hence no need to break them. */
11811 WARN_ON(crtc->active);
11812
11813 for_each_encoder_on_crtc(dev, &crtc->base, encoder) {
11814 WARN_ON(encoder->connectors_active);
11815 encoder->base.crtc = NULL;
11816 }
11817 }
Daniel Vetter4cc31482014-03-24 00:01:41 +010011818 if (crtc->active) {
11819 /*
11820 * We start out with underrun reporting disabled to avoid races.
11821 * For correct bookkeeping mark this on active crtcs.
11822 *
11823 * No protection against concurrent access is required - at
11824 * worst a fifo underrun happens which also sets this to false.
11825 */
11826 crtc->cpu_fifo_underrun_disabled = true;
11827 crtc->pch_fifo_underrun_disabled = true;
11828 }
Daniel Vetter24929352012-07-02 20:28:59 +020011829}
11830
11831static void intel_sanitize_encoder(struct intel_encoder *encoder)
11832{
11833 struct intel_connector *connector;
11834 struct drm_device *dev = encoder->base.dev;
11835
11836 /* We need to check both for a crtc link (meaning that the
11837 * encoder is active and trying to read from a pipe) and the
11838 * pipe itself being active. */
11839 bool has_active_crtc = encoder->base.crtc &&
11840 to_intel_crtc(encoder->base.crtc)->active;
11841
11842 if (encoder->connectors_active && !has_active_crtc) {
11843 DRM_DEBUG_KMS("[ENCODER:%d:%s] has active connectors but no active pipe!\n",
11844 encoder->base.base.id,
11845 drm_get_encoder_name(&encoder->base));
11846
11847 /* Connector is active, but has no active pipe. This is
11848 * fallout from our resume register restoring. Disable
11849 * the encoder manually again. */
11850 if (encoder->base.crtc) {
11851 DRM_DEBUG_KMS("[ENCODER:%d:%s] manually disabled\n",
11852 encoder->base.base.id,
11853 drm_get_encoder_name(&encoder->base));
11854 encoder->disable(encoder);
11855 }
11856
11857 /* Inconsistent output/port/pipe state happens presumably due to
11858 * a bug in one of the get_hw_state functions. Or someplace else
11859 * in our code, like the register restore mess on resume. Clamp
11860 * things to off as a safer default. */
11861 list_for_each_entry(connector,
11862 &dev->mode_config.connector_list,
11863 base.head) {
11864 if (connector->encoder != encoder)
11865 continue;
11866
11867 intel_connector_break_all_links(connector);
11868 }
11869 }
11870 /* Enabled encoders without active connectors will be fixed in
11871 * the crtc fixup. */
11872}
11873
Imre Deak04098752014-02-18 00:02:16 +020011874void i915_redisable_vga_power_on(struct drm_device *dev)
Krzysztof Mazur0fde9012012-12-19 11:03:41 +010011875{
11876 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä766aa1c2013-01-25 21:44:46 +020011877 u32 vga_reg = i915_vgacntrl_reg(dev);
Krzysztof Mazur0fde9012012-12-19 11:03:41 +010011878
Imre Deak04098752014-02-18 00:02:16 +020011879 if (!(I915_READ(vga_reg) & VGA_DISP_DISABLE)) {
11880 DRM_DEBUG_KMS("Something enabled VGA plane, disabling it\n");
11881 i915_disable_vga(dev);
11882 }
11883}
11884
11885void i915_redisable_vga(struct drm_device *dev)
11886{
11887 struct drm_i915_private *dev_priv = dev->dev_private;
11888
Paulo Zanoni8dc8a272013-08-02 16:22:24 -030011889 /* This function can be called both from intel_modeset_setup_hw_state or
11890 * at a very early point in our resume sequence, where the power well
11891 * structures are not yet restored. Since this function is at a very
11892 * paranoid "someone might have enabled VGA while we were not looking"
11893 * level, just check if the power well is enabled instead of trying to
11894 * follow the "don't touch the power well if we don't need it" policy
11895 * the rest of the driver uses. */
Imre Deak04098752014-02-18 00:02:16 +020011896 if (!intel_display_power_enabled(dev_priv, POWER_DOMAIN_VGA))
Paulo Zanoni8dc8a272013-08-02 16:22:24 -030011897 return;
11898
Imre Deak04098752014-02-18 00:02:16 +020011899 i915_redisable_vga_power_on(dev);
Krzysztof Mazur0fde9012012-12-19 11:03:41 +010011900}
11901
Ville Syrjälä98ec7732014-04-30 17:43:01 +030011902static bool primary_get_hw_state(struct intel_crtc *crtc)
11903{
11904 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
11905
11906 if (!crtc->active)
11907 return false;
11908
11909 return I915_READ(DSPCNTR(crtc->plane)) & DISPLAY_PLANE_ENABLE;
11910}
11911
Daniel Vetter30e984d2013-06-05 13:34:17 +020011912static void intel_modeset_readout_hw_state(struct drm_device *dev)
Daniel Vetter24929352012-07-02 20:28:59 +020011913{
11914 struct drm_i915_private *dev_priv = dev->dev_private;
11915 enum pipe pipe;
Daniel Vetter24929352012-07-02 20:28:59 +020011916 struct intel_crtc *crtc;
11917 struct intel_encoder *encoder;
11918 struct intel_connector *connector;
Daniel Vetter53589012013-06-05 13:34:16 +020011919 int i;
Daniel Vetter24929352012-07-02 20:28:59 +020011920
Damien Lespiaud3fcc802014-05-13 23:32:22 +010011921 for_each_intel_crtc(dev, crtc) {
Daniel Vetter88adfff2013-03-28 10:42:01 +010011922 memset(&crtc->config, 0, sizeof(crtc->config));
Daniel Vetter3b117c82013-04-17 20:15:07 +020011923
Daniel Vetter99535992014-04-13 12:00:33 +020011924 crtc->config.quirks |= PIPE_CONFIG_QUIRK_INHERITED_MODE;
11925
Daniel Vetter0e8ffe12013-03-28 10:42:00 +010011926 crtc->active = dev_priv->display.get_pipe_config(crtc,
11927 &crtc->config);
Daniel Vetter24929352012-07-02 20:28:59 +020011928
11929 crtc->base.enabled = crtc->active;
Ville Syrjälä98ec7732014-04-30 17:43:01 +030011930 crtc->primary_enabled = primary_get_hw_state(crtc);
Daniel Vetter24929352012-07-02 20:28:59 +020011931
11932 DRM_DEBUG_KMS("[CRTC:%d] hw state readout: %s\n",
11933 crtc->base.base.id,
11934 crtc->active ? "enabled" : "disabled");
11935 }
11936
Daniel Vetter53589012013-06-05 13:34:16 +020011937 /* FIXME: Smash this into the new shared dpll infrastructure. */
Paulo Zanoniaffa9352012-11-23 15:30:39 -020011938 if (HAS_DDI(dev))
Paulo Zanoni6441ab52012-10-05 12:05:58 -030011939 intel_ddi_setup_hw_pll_state(dev);
11940
Daniel Vetter53589012013-06-05 13:34:16 +020011941 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
11942 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
11943
11944 pll->on = pll->get_hw_state(dev_priv, pll, &pll->hw_state);
11945 pll->active = 0;
Damien Lespiaud3fcc802014-05-13 23:32:22 +010011946 for_each_intel_crtc(dev, crtc) {
Daniel Vetter53589012013-06-05 13:34:16 +020011947 if (crtc->active && intel_crtc_to_shared_dpll(crtc) == pll)
11948 pll->active++;
11949 }
11950 pll->refcount = pll->active;
11951
Daniel Vetter35c95372013-07-17 06:55:04 +020011952 DRM_DEBUG_KMS("%s hw state readout: refcount %i, on %i\n",
11953 pll->name, pll->refcount, pll->on);
Daniel Vetter53589012013-06-05 13:34:16 +020011954 }
11955
Daniel Vetter24929352012-07-02 20:28:59 +020011956 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
11957 base.head) {
11958 pipe = 0;
11959
11960 if (encoder->get_hw_state(encoder, &pipe)) {
Jesse Barnes045ac3b2013-05-14 17:08:26 -070011961 crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
11962 encoder->base.crtc = &crtc->base;
Daniel Vetter1d37b682013-11-18 09:00:59 +010011963 encoder->get_config(encoder, &crtc->config);
Daniel Vetter24929352012-07-02 20:28:59 +020011964 } else {
11965 encoder->base.crtc = NULL;
11966 }
11967
11968 encoder->connectors_active = false;
Damien Lespiau6f2bcce2013-10-16 12:29:54 +010011969 DRM_DEBUG_KMS("[ENCODER:%d:%s] hw state readout: %s, pipe %c\n",
Daniel Vetter24929352012-07-02 20:28:59 +020011970 encoder->base.base.id,
11971 drm_get_encoder_name(&encoder->base),
11972 encoder->base.crtc ? "enabled" : "disabled",
Damien Lespiau6f2bcce2013-10-16 12:29:54 +010011973 pipe_name(pipe));
Daniel Vetter24929352012-07-02 20:28:59 +020011974 }
11975
11976 list_for_each_entry(connector, &dev->mode_config.connector_list,
11977 base.head) {
11978 if (connector->get_hw_state(connector)) {
11979 connector->base.dpms = DRM_MODE_DPMS_ON;
11980 connector->encoder->connectors_active = true;
11981 connector->base.encoder = &connector->encoder->base;
11982 } else {
11983 connector->base.dpms = DRM_MODE_DPMS_OFF;
11984 connector->base.encoder = NULL;
11985 }
11986 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] hw state readout: %s\n",
11987 connector->base.base.id,
11988 drm_get_connector_name(&connector->base),
11989 connector->base.encoder ? "enabled" : "disabled");
11990 }
Daniel Vetter30e984d2013-06-05 13:34:17 +020011991}
11992
11993/* Scan out the current hw modeset state, sanitizes it and maps it into the drm
11994 * and i915 state tracking structures. */
11995void intel_modeset_setup_hw_state(struct drm_device *dev,
11996 bool force_restore)
11997{
11998 struct drm_i915_private *dev_priv = dev->dev_private;
11999 enum pipe pipe;
Daniel Vetter30e984d2013-06-05 13:34:17 +020012000 struct intel_crtc *crtc;
12001 struct intel_encoder *encoder;
Daniel Vetter35c95372013-07-17 06:55:04 +020012002 int i;
Daniel Vetter30e984d2013-06-05 13:34:17 +020012003
12004 intel_modeset_readout_hw_state(dev);
Daniel Vetter24929352012-07-02 20:28:59 +020012005
Jesse Barnesbabea612013-06-26 18:57:38 +030012006 /*
12007 * Now that we have the config, copy it to each CRTC struct
12008 * Note that this could go away if we move to using crtc_config
12009 * checking everywhere.
12010 */
Damien Lespiaud3fcc802014-05-13 23:32:22 +010012011 for_each_intel_crtc(dev, crtc) {
Jani Nikulad330a952014-01-21 11:24:25 +020012012 if (crtc->active && i915.fastboot) {
Daniel Vetterf6a83282014-02-11 15:28:57 -080012013 intel_mode_from_pipe_config(&crtc->base.mode, &crtc->config);
Jesse Barnesbabea612013-06-26 18:57:38 +030012014 DRM_DEBUG_KMS("[CRTC:%d] found active mode: ",
12015 crtc->base.base.id);
12016 drm_mode_debug_printmodeline(&crtc->base.mode);
12017 }
12018 }
12019
Daniel Vetter24929352012-07-02 20:28:59 +020012020 /* HW state is read out, now we need to sanitize this mess. */
12021 list_for_each_entry(encoder, &dev->mode_config.encoder_list,
12022 base.head) {
12023 intel_sanitize_encoder(encoder);
12024 }
12025
12026 for_each_pipe(pipe) {
12027 crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
12028 intel_sanitize_crtc(crtc);
Daniel Vetterc0b03412013-05-28 12:05:54 +020012029 intel_dump_pipe_config(crtc, &crtc->config, "[setup_hw_state]");
Daniel Vetter24929352012-07-02 20:28:59 +020012030 }
Daniel Vetter9a935852012-07-05 22:34:27 +020012031
Daniel Vetter35c95372013-07-17 06:55:04 +020012032 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
12033 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
12034
12035 if (!pll->on || pll->active)
12036 continue;
12037
12038 DRM_DEBUG_KMS("%s enabled but not in use, disabling\n", pll->name);
12039
12040 pll->disable(dev_priv, pll);
12041 pll->on = false;
12042 }
12043
Ville Syrjälä96f90c52013-12-05 15:51:38 +020012044 if (HAS_PCH_SPLIT(dev))
Ville Syrjälä243e6a42013-10-14 14:55:24 +030012045 ilk_wm_get_hw_state(dev);
12046
Daniel Vetter45e2b5f2012-11-23 18:16:34 +010012047 if (force_restore) {
Ville Syrjälä7d0bc1e2013-09-16 17:38:33 +030012048 i915_redisable_vga(dev);
12049
Daniel Vetterf30da182013-04-11 20:22:50 +020012050 /*
12051 * We need to use raw interfaces for restoring state to avoid
12052 * checking (bogus) intermediate states.
12053 */
Daniel Vetter45e2b5f2012-11-23 18:16:34 +010012054 for_each_pipe(pipe) {
Jesse Barnesb5644d02013-03-26 13:25:27 -070012055 struct drm_crtc *crtc =
12056 dev_priv->pipe_to_crtc_mapping[pipe];
Daniel Vetterf30da182013-04-11 20:22:50 +020012057
12058 __intel_set_mode(crtc, &crtc->mode, crtc->x, crtc->y,
Matt Roperf4510a22014-04-01 15:22:40 -070012059 crtc->primary->fb);
Daniel Vetter45e2b5f2012-11-23 18:16:34 +010012060 }
12061 } else {
12062 intel_modeset_update_staged_output_state(dev);
12063 }
Daniel Vetter8af6cf82012-07-10 09:50:11 +020012064
12065 intel_modeset_check_state(dev);
Chris Wilson2c7111d2011-03-29 10:40:27 +010012066}
12067
12068void intel_modeset_gem_init(struct drm_device *dev)
12069{
Jesse Barnes484b41d2014-03-07 08:57:55 -080012070 struct drm_crtc *c;
12071 struct intel_framebuffer *fb;
12072
Imre Deakae484342014-03-31 15:10:44 +030012073 mutex_lock(&dev->struct_mutex);
12074 intel_init_gt_powersave(dev);
12075 mutex_unlock(&dev->struct_mutex);
12076
Chris Wilson1833b132012-05-09 11:56:28 +010012077 intel_modeset_init_hw(dev);
Daniel Vetter02e792f2009-09-15 22:57:34 +020012078
12079 intel_setup_overlay(dev);
Jesse Barnes484b41d2014-03-07 08:57:55 -080012080
12081 /*
12082 * Make sure any fbs we allocated at startup are properly
12083 * pinned & fenced. When we do the allocation it's too early
12084 * for this.
12085 */
12086 mutex_lock(&dev->struct_mutex);
Damien Lespiau70e1e0e2014-05-13 23:32:24 +010012087 for_each_crtc(dev, c) {
Dave Airlie66e514c2014-04-03 07:51:54 +100012088 if (!c->primary->fb)
Jesse Barnes484b41d2014-03-07 08:57:55 -080012089 continue;
12090
Dave Airlie66e514c2014-04-03 07:51:54 +100012091 fb = to_intel_framebuffer(c->primary->fb);
Jesse Barnes484b41d2014-03-07 08:57:55 -080012092 if (intel_pin_and_fence_fb_obj(dev, fb->obj, NULL)) {
12093 DRM_ERROR("failed to pin boot fb on pipe %d\n",
12094 to_intel_crtc(c)->pipe);
Dave Airlie66e514c2014-04-03 07:51:54 +100012095 drm_framebuffer_unreference(c->primary->fb);
12096 c->primary->fb = NULL;
Jesse Barnes484b41d2014-03-07 08:57:55 -080012097 }
12098 }
12099 mutex_unlock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -080012100}
12101
Imre Deak4932e2c2014-02-11 17:12:48 +020012102void intel_connector_unregister(struct intel_connector *intel_connector)
12103{
12104 struct drm_connector *connector = &intel_connector->base;
12105
12106 intel_panel_destroy_backlight(connector);
12107 drm_sysfs_connector_remove(connector);
12108}
12109
Jesse Barnes79e53942008-11-07 14:24:08 -080012110void intel_modeset_cleanup(struct drm_device *dev)
12111{
Jesse Barnes652c3932009-08-17 13:31:43 -070012112 struct drm_i915_private *dev_priv = dev->dev_private;
12113 struct drm_crtc *crtc;
Paulo Zanonid9255d52013-09-26 20:05:59 -030012114 struct drm_connector *connector;
Jesse Barnes652c3932009-08-17 13:31:43 -070012115
Daniel Vetterfd0c0642013-04-24 11:13:35 +020012116 /*
12117 * Interrupts and polling as the first thing to avoid creating havoc.
12118 * Too much stuff here (turning of rps, connectors, ...) would
12119 * experience fancy races otherwise.
12120 */
12121 drm_irq_uninstall(dev);
12122 cancel_work_sync(&dev_priv->hotplug_work);
12123 /*
12124 * Due to the hpd irq storm handling the hotplug work can re-arm the
12125 * poll handlers. Hence disable polling after hpd handling is shut down.
12126 */
Keith Packardf87ea762010-10-03 19:36:26 -070012127 drm_kms_helper_poll_fini(dev);
Daniel Vetterfd0c0642013-04-24 11:13:35 +020012128
Jesse Barnes652c3932009-08-17 13:31:43 -070012129 mutex_lock(&dev->struct_mutex);
12130
Jesse Barnes723bfd72010-10-07 16:01:13 -070012131 intel_unregister_dsm_handler();
12132
Damien Lespiau70e1e0e2014-05-13 23:32:24 +010012133 for_each_crtc(dev, crtc) {
Jesse Barnes652c3932009-08-17 13:31:43 -070012134 /* Skip inactive CRTCs */
Matt Roperf4510a22014-04-01 15:22:40 -070012135 if (!crtc->primary->fb)
Jesse Barnes652c3932009-08-17 13:31:43 -070012136 continue;
12137
Daniel Vetter3dec0092010-08-20 21:40:52 +020012138 intel_increase_pllclock(crtc);
Jesse Barnes652c3932009-08-17 13:31:43 -070012139 }
12140
Chris Wilson973d04f2011-07-08 12:22:37 +010012141 intel_disable_fbc(dev);
Jesse Barnese70236a2009-09-21 10:42:27 -070012142
Daniel Vetter8090c6b2012-06-24 16:42:32 +020012143 intel_disable_gt_powersave(dev);
Chris Wilson0cdab212010-12-05 17:27:06 +000012144
Daniel Vetter930ebb42012-06-29 23:32:16 +020012145 ironlake_teardown_rc6(dev);
12146
Kristian Høgsberg69341a52009-11-11 12:19:17 -050012147 mutex_unlock(&dev->struct_mutex);
12148
Chris Wilson1630fe72011-07-08 12:22:42 +010012149 /* flush any delayed tasks or pending work */
12150 flush_scheduled_work();
12151
Jani Nikuladb31af1d2013-11-08 16:48:53 +020012152 /* destroy the backlight and sysfs files before encoders/connectors */
12153 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
Imre Deak4932e2c2014-02-11 17:12:48 +020012154 struct intel_connector *intel_connector;
12155
12156 intel_connector = to_intel_connector(connector);
12157 intel_connector->unregister(intel_connector);
Jani Nikuladb31af1d2013-11-08 16:48:53 +020012158 }
Paulo Zanonid9255d52013-09-26 20:05:59 -030012159
Jesse Barnes79e53942008-11-07 14:24:08 -080012160 drm_mode_config_cleanup(dev);
Daniel Vetter4d7bb012012-12-18 15:24:37 +010012161
12162 intel_cleanup_overlay(dev);
Imre Deakae484342014-03-31 15:10:44 +030012163
12164 mutex_lock(&dev->struct_mutex);
12165 intel_cleanup_gt_powersave(dev);
12166 mutex_unlock(&dev->struct_mutex);
Jesse Barnes79e53942008-11-07 14:24:08 -080012167}
12168
Dave Airlie28d52042009-09-21 14:33:58 +100012169/*
Zhenyu Wangf1c79df2010-03-30 14:39:29 +080012170 * Return which encoder is currently attached for connector.
12171 */
Chris Wilsondf0e9242010-09-09 16:20:55 +010012172struct drm_encoder *intel_best_encoder(struct drm_connector *connector)
Jesse Barnes79e53942008-11-07 14:24:08 -080012173{
Chris Wilsondf0e9242010-09-09 16:20:55 +010012174 return &intel_attached_encoder(connector)->base;
12175}
Jesse Barnes79e53942008-11-07 14:24:08 -080012176
Chris Wilsondf0e9242010-09-09 16:20:55 +010012177void intel_connector_attach_encoder(struct intel_connector *connector,
12178 struct intel_encoder *encoder)
12179{
12180 connector->encoder = encoder;
12181 drm_mode_connector_attach_encoder(&connector->base,
12182 &encoder->base);
Jesse Barnes79e53942008-11-07 14:24:08 -080012183}
Dave Airlie28d52042009-09-21 14:33:58 +100012184
12185/*
12186 * set vga decode state - true == enable VGA decode
12187 */
12188int intel_modeset_vga_set_state(struct drm_device *dev, bool state)
12189{
12190 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsona885b3c2013-12-17 14:34:50 +000012191 unsigned reg = INTEL_INFO(dev)->gen >= 6 ? SNB_GMCH_CTRL : INTEL_GMCH_CTRL;
Dave Airlie28d52042009-09-21 14:33:58 +100012192 u16 gmch_ctrl;
12193
Chris Wilson75fa0412014-02-07 18:37:02 -020012194 if (pci_read_config_word(dev_priv->bridge_dev, reg, &gmch_ctrl)) {
12195 DRM_ERROR("failed to read control word\n");
12196 return -EIO;
12197 }
12198
Chris Wilsonc0cc8a52014-02-07 18:37:03 -020012199 if (!!(gmch_ctrl & INTEL_GMCH_VGA_DISABLE) == !state)
12200 return 0;
12201
Dave Airlie28d52042009-09-21 14:33:58 +100012202 if (state)
12203 gmch_ctrl &= ~INTEL_GMCH_VGA_DISABLE;
12204 else
12205 gmch_ctrl |= INTEL_GMCH_VGA_DISABLE;
Chris Wilson75fa0412014-02-07 18:37:02 -020012206
12207 if (pci_write_config_word(dev_priv->bridge_dev, reg, gmch_ctrl)) {
12208 DRM_ERROR("failed to write control word\n");
12209 return -EIO;
12210 }
12211
Dave Airlie28d52042009-09-21 14:33:58 +100012212 return 0;
12213}
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012214
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012215struct intel_display_error_state {
Paulo Zanoniff57f1b2013-05-03 12:15:37 -030012216
12217 u32 power_well_driver;
12218
Chris Wilson63b66e52013-08-08 15:12:06 +020012219 int num_transcoders;
12220
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012221 struct intel_cursor_error_state {
12222 u32 control;
12223 u32 position;
12224 u32 base;
12225 u32 size;
Damien Lespiau52331302012-08-15 19:23:25 +010012226 } cursor[I915_MAX_PIPES];
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012227
12228 struct intel_pipe_error_state {
Imre Deakddf9c532013-11-27 22:02:02 +020012229 bool power_domain_on;
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012230 u32 source;
Imre Deakf301b1e2014-04-18 15:55:04 +030012231 u32 stat;
Damien Lespiau52331302012-08-15 19:23:25 +010012232 } pipe[I915_MAX_PIPES];
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012233
12234 struct intel_plane_error_state {
12235 u32 control;
12236 u32 stride;
12237 u32 size;
12238 u32 pos;
12239 u32 addr;
12240 u32 surface;
12241 u32 tile_offset;
Damien Lespiau52331302012-08-15 19:23:25 +010012242 } plane[I915_MAX_PIPES];
Chris Wilson63b66e52013-08-08 15:12:06 +020012243
12244 struct intel_transcoder_error_state {
Imre Deakddf9c532013-11-27 22:02:02 +020012245 bool power_domain_on;
Chris Wilson63b66e52013-08-08 15:12:06 +020012246 enum transcoder cpu_transcoder;
12247
12248 u32 conf;
12249
12250 u32 htotal;
12251 u32 hblank;
12252 u32 hsync;
12253 u32 vtotal;
12254 u32 vblank;
12255 u32 vsync;
12256 } transcoder[4];
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012257};
12258
12259struct intel_display_error_state *
12260intel_display_capture_error_state(struct drm_device *dev)
12261{
Jani Nikulafbee40d2014-03-31 14:27:18 +030012262 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012263 struct intel_display_error_state *error;
Chris Wilson63b66e52013-08-08 15:12:06 +020012264 int transcoders[] = {
12265 TRANSCODER_A,
12266 TRANSCODER_B,
12267 TRANSCODER_C,
12268 TRANSCODER_EDP,
12269 };
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012270 int i;
12271
Chris Wilson63b66e52013-08-08 15:12:06 +020012272 if (INTEL_INFO(dev)->num_pipes == 0)
12273 return NULL;
12274
Paulo Zanoni9d1cb912013-11-01 13:32:08 -020012275 error = kzalloc(sizeof(*error), GFP_ATOMIC);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012276 if (error == NULL)
12277 return NULL;
12278
Imre Deak190be112013-11-25 17:15:31 +020012279 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Paulo Zanoniff57f1b2013-05-03 12:15:37 -030012280 error->power_well_driver = I915_READ(HSW_PWR_WELL_DRIVER);
12281
Damien Lespiau52331302012-08-15 19:23:25 +010012282 for_each_pipe(i) {
Imre Deakddf9c532013-11-27 22:02:02 +020012283 error->pipe[i].power_domain_on =
Imre Deakda7e29b2014-02-18 00:02:02 +020012284 intel_display_power_enabled_sw(dev_priv,
12285 POWER_DOMAIN_PIPE(i));
Imre Deakddf9c532013-11-27 22:02:02 +020012286 if (!error->pipe[i].power_domain_on)
Paulo Zanoni9d1cb912013-11-01 13:32:08 -020012287 continue;
12288
Ville Syrjälä5efb3e22014-04-09 13:28:53 +030012289 error->cursor[i].control = I915_READ(CURCNTR(i));
12290 error->cursor[i].position = I915_READ(CURPOS(i));
12291 error->cursor[i].base = I915_READ(CURBASE(i));
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012292
12293 error->plane[i].control = I915_READ(DSPCNTR(i));
12294 error->plane[i].stride = I915_READ(DSPSTRIDE(i));
Paulo Zanoni80ca3782013-03-22 14:20:57 -030012295 if (INTEL_INFO(dev)->gen <= 3) {
Paulo Zanoni51889b32013-03-06 20:03:13 -030012296 error->plane[i].size = I915_READ(DSPSIZE(i));
Paulo Zanoni80ca3782013-03-22 14:20:57 -030012297 error->plane[i].pos = I915_READ(DSPPOS(i));
12298 }
Paulo Zanonica291362013-03-06 20:03:14 -030012299 if (INTEL_INFO(dev)->gen <= 7 && !IS_HASWELL(dev))
12300 error->plane[i].addr = I915_READ(DSPADDR(i));
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012301 if (INTEL_INFO(dev)->gen >= 4) {
12302 error->plane[i].surface = I915_READ(DSPSURF(i));
12303 error->plane[i].tile_offset = I915_READ(DSPTILEOFF(i));
12304 }
12305
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012306 error->pipe[i].source = I915_READ(PIPESRC(i));
Imre Deakf301b1e2014-04-18 15:55:04 +030012307
12308 if (!HAS_PCH_SPLIT(dev))
12309 error->pipe[i].stat = I915_READ(PIPESTAT(i));
Chris Wilson63b66e52013-08-08 15:12:06 +020012310 }
12311
12312 error->num_transcoders = INTEL_INFO(dev)->num_pipes;
12313 if (HAS_DDI(dev_priv->dev))
12314 error->num_transcoders++; /* Account for eDP. */
12315
12316 for (i = 0; i < error->num_transcoders; i++) {
12317 enum transcoder cpu_transcoder = transcoders[i];
12318
Imre Deakddf9c532013-11-27 22:02:02 +020012319 error->transcoder[i].power_domain_on =
Imre Deakda7e29b2014-02-18 00:02:02 +020012320 intel_display_power_enabled_sw(dev_priv,
Paulo Zanoni38cc1da2013-12-20 15:09:41 -020012321 POWER_DOMAIN_TRANSCODER(cpu_transcoder));
Imre Deakddf9c532013-11-27 22:02:02 +020012322 if (!error->transcoder[i].power_domain_on)
Paulo Zanoni9d1cb912013-11-01 13:32:08 -020012323 continue;
12324
Chris Wilson63b66e52013-08-08 15:12:06 +020012325 error->transcoder[i].cpu_transcoder = cpu_transcoder;
12326
12327 error->transcoder[i].conf = I915_READ(PIPECONF(cpu_transcoder));
12328 error->transcoder[i].htotal = I915_READ(HTOTAL(cpu_transcoder));
12329 error->transcoder[i].hblank = I915_READ(HBLANK(cpu_transcoder));
12330 error->transcoder[i].hsync = I915_READ(HSYNC(cpu_transcoder));
12331 error->transcoder[i].vtotal = I915_READ(VTOTAL(cpu_transcoder));
12332 error->transcoder[i].vblank = I915_READ(VBLANK(cpu_transcoder));
12333 error->transcoder[i].vsync = I915_READ(VSYNC(cpu_transcoder));
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012334 }
12335
12336 return error;
12337}
12338
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030012339#define err_printf(e, ...) i915_error_printf(e, __VA_ARGS__)
12340
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012341void
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030012342intel_display_print_error_state(struct drm_i915_error_state_buf *m,
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012343 struct drm_device *dev,
12344 struct intel_display_error_state *error)
12345{
12346 int i;
12347
Chris Wilson63b66e52013-08-08 15:12:06 +020012348 if (!error)
12349 return;
12350
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030012351 err_printf(m, "Num Pipes: %d\n", INTEL_INFO(dev)->num_pipes);
Imre Deak190be112013-11-25 17:15:31 +020012352 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030012353 err_printf(m, "PWR_WELL_CTL2: %08x\n",
Paulo Zanoniff57f1b2013-05-03 12:15:37 -030012354 error->power_well_driver);
Damien Lespiau52331302012-08-15 19:23:25 +010012355 for_each_pipe(i) {
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030012356 err_printf(m, "Pipe [%d]:\n", i);
Imre Deakddf9c532013-11-27 22:02:02 +020012357 err_printf(m, " Power: %s\n",
12358 error->pipe[i].power_domain_on ? "on" : "off");
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030012359 err_printf(m, " SRC: %08x\n", error->pipe[i].source);
Imre Deakf301b1e2014-04-18 15:55:04 +030012360 err_printf(m, " STAT: %08x\n", error->pipe[i].stat);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012361
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030012362 err_printf(m, "Plane [%d]:\n", i);
12363 err_printf(m, " CNTR: %08x\n", error->plane[i].control);
12364 err_printf(m, " STRIDE: %08x\n", error->plane[i].stride);
Paulo Zanoni80ca3782013-03-22 14:20:57 -030012365 if (INTEL_INFO(dev)->gen <= 3) {
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030012366 err_printf(m, " SIZE: %08x\n", error->plane[i].size);
12367 err_printf(m, " POS: %08x\n", error->plane[i].pos);
Paulo Zanoni80ca3782013-03-22 14:20:57 -030012368 }
Paulo Zanoni4b71a572013-03-22 14:19:21 -030012369 if (INTEL_INFO(dev)->gen <= 7 && !IS_HASWELL(dev))
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030012370 err_printf(m, " ADDR: %08x\n", error->plane[i].addr);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012371 if (INTEL_INFO(dev)->gen >= 4) {
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030012372 err_printf(m, " SURF: %08x\n", error->plane[i].surface);
12373 err_printf(m, " TILEOFF: %08x\n", error->plane[i].tile_offset);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012374 }
12375
Mika Kuoppalaedc3d882013-05-23 13:55:35 +030012376 err_printf(m, "Cursor [%d]:\n", i);
12377 err_printf(m, " CNTR: %08x\n", error->cursor[i].control);
12378 err_printf(m, " POS: %08x\n", error->cursor[i].position);
12379 err_printf(m, " BASE: %08x\n", error->cursor[i].base);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012380 }
Chris Wilson63b66e52013-08-08 15:12:06 +020012381
12382 for (i = 0; i < error->num_transcoders; i++) {
Chris Wilson1cf84bb2013-10-21 09:10:33 +010012383 err_printf(m, "CPU transcoder: %c\n",
Chris Wilson63b66e52013-08-08 15:12:06 +020012384 transcoder_name(error->transcoder[i].cpu_transcoder));
Imre Deakddf9c532013-11-27 22:02:02 +020012385 err_printf(m, " Power: %s\n",
12386 error->transcoder[i].power_domain_on ? "on" : "off");
Chris Wilson63b66e52013-08-08 15:12:06 +020012387 err_printf(m, " CONF: %08x\n", error->transcoder[i].conf);
12388 err_printf(m, " HTOTAL: %08x\n", error->transcoder[i].htotal);
12389 err_printf(m, " HBLANK: %08x\n", error->transcoder[i].hblank);
12390 err_printf(m, " HSYNC: %08x\n", error->transcoder[i].hsync);
12391 err_printf(m, " VTOTAL: %08x\n", error->transcoder[i].vtotal);
12392 err_printf(m, " VBLANK: %08x\n", error->transcoder[i].vblank);
12393 err_printf(m, " VSYNC: %08x\n", error->transcoder[i].vsync);
12394 }
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +000012395}